ginaz5

@ginaz5

Gina Lin

Joined on Mar 31, 2019

  • 2019 Coding-X 作業&筆記 === ###### tags: `Coding X` `Python` `programming` `學習筆記` `Java` > [name=Gina Lin] 只學過理論(因為要考研究所),但零程式實作背景。 所以來到成大資工所辦理的課程 Coding X,將自己的基礎打好。 ### 在此記錄我所完成的作業(含Source code)及課堂相關內容 URLs --- :::info - [Android 課程](https://hackmd.io/@tsaimh/r19PvZumS) - [Java 課程投影片](https://drive.google.com/drive/folders/171lyS4griTR4iYOni6FB2rY5YPlG4qtt) - [商業專案-文章參考](https://hackmd.io/@sky/rysztRI8X) - [2018 Python課程PPT](https://github.com/x-village/python-course) - [2019 Python課程PPT](https
     Like  Bookmark
  • 7/31 & 9/6 專案報告/業師選組 === ###### tags: `Coding X` `Project` [TOC] :::info [**新創定位營** - 了解創業的基本要素,一起讓夢想從、無、到、有](http://startup.ncku.edu.tw/news/108%E5%B9%B4%E5%BA%A6%E7%AC%AC%E4%B8%80%E5%AD%B8%E6%9C%9F-%E7%B2%BE%E5%AF%A6%E5%89%B5%E6%A5%AD%E8%AA%B2%E7%A8%8B%E6%8B%9B%E7%94%9F%E9%96%8B%E5%A7%8B%E5%9B%89%EF%BC%81%EF%BC%81/) [教育部U-star創業創新計畫](https://ustart.yda.gov.tw/bin/home.php) ::: ## 1. 樂齡 learning:提供老年人分享技藝的平台 - 學習與分享(樂活) - 實體課程報名平台 - 目標族群:中老年人 困難: 語音辨識,台語怎麼辦? 影片審查,是否合乎社會倫理 8.23 用戶不會花錢,實用性不高
     Like  Bookmark
  • 來點正經的 = ###### tags: `Coding X` # Library Genesis 找原文書 - [Library Genesis](https://www.libgen.is) # Sci hub - [SCI-HUB](https://sci-hub.tw/) # 論壇資訊 週六(8/24,00:00)將正式開放系統報名 論壇時間9/21 10:00~16:30 (會卡到FutureX課程 這次是學長姊分享論壇不是人資長論壇喔~ 因為名額有限,請留意報名時間唷 [成大人資長論壇](https://m.facebook.com/story.php?story_fbid=751368435285861&id=358829324539776)
     Like  Bookmark
  • 7/9 Python Day 2 簡介+練習 === ###### tags: `Coding X` `Java` `programming` `學習筆記` > [time=Tue, Jul 9, 2019 9:27 AM] ### What can you do with python? - 資料探勘、分析 - 科學運算 - 機器學習 - Web網頁 - 遊戲 - GUI [實作練習](https://hackmd.io/@BDh7WDr4SoWSb5iOsd8uSw/wiasliawCodingX) ### Exercises 1 ```python= # Hi this is comment for this file # 該程式的問題是如果score大於70的話 # 就會永遠印出C 因為它符合elif之後就不會繼續往下執行 score = int(input("Please input score: ")) if score < 70: print('D') elif score >= 70: print('C') elif score >=80:
     Like  Bookmark
  • 8/5 DS 二元樹 === ###### tags: `Coding X` `DS` [TOC] ## Lab Challenage ![image alt](https://i.imgur.com/GyfIZ6R.png) ![image alt](https://imgur.com/RbGfxJs.png) ![image alt](https://imgur.com/fkKKmVI.png) ### Lab 5 build a Binary Tree ```java= package tree; import java.util.ArrayList; import java.util.Scanner; import java.lang.Math; public class Tree { public static int log2(int x) { return (int)(Math.log(x) / Math.log(2)); } public static int pow(int x, int y) { int res =1; for
     Like  Bookmark
  • 8/2 DS & 講座 === ###### tags: `Coding X` `DS` [TOC] ## AI and Big Data > [name=精誠科技 蔣居裕 (Fred Chiang)] > [time=Fri, Aug 2, 2019 2:00 PM] > [李飛飛 - AI界女神](https://www.ted.com/talks/fei_fei_li_how_we_re_teaching_computers_to_understand_pictures?language=zh-tw) [開源知識平台工具包](http://blog.jason.tools/2018/03/bookstackapp-useful.html) [OpenSource](https://blog.capterra.com/5-free-knowledge-management-software-solutions/) [開源知識平台](https://www.getapp.com/collaboration-software/knowledge-management/p/open-
     Like  Bookmark
  • 8/1 Data Structure = ###### tags: `Coding X` `DS` 規格(Specification): 只知道樣貌 實作(Implementation): coding 效能分析(Performance analysis): Big O notation and time complexity ## Lab ### Lab 2-1 求最大公因數 GCD ```Java= package rec; import java.util.Scanner; public class rec { public static void main(String[] args) { Scanner input = new Scanner(System.in); int m = input.nextInt(); int n = input.nextInt(); System.out.println(gcd(m, n)); } public static int gcd(int m, int n) { if (n == 0) {
     Like  Bookmark