林劭寰

@shaolin5525

Joined on Oct 7, 2017

  • 基礎 selectionSet 若沒有寫任何的方式或是名稱,這樣的描述就是selectionSet { players { playerName playerHeight } }
     Like  Bookmark
  • Journeys of Sacrifice: The Untold Stories of International Migrant Labors | Michael Beltran Event Time: 2025/04/04 19:00 Location: Nowhere BookStore(Near Ximen MRT Station) Entrance Fee: Free Michael Beltran is an independent journalist from the Philippines who's made his mark writing for various news outlets across the Asia-Pacific region. He's also a volunteer with Pinoy Weekly, and his reporting is deeply influenced by his connections with marginalized communities back home.He also covered many covered migration and displacement issue about Oversea Filipino Workers(OFWs) As an independent journalist, Michael covers a wide range of topics - from economic trends and global conflicts to migration, human rights, and occasionally even the local music scene. In this event, he will share his observations of the situation of migrant workers in Taiwan over the past two months. Drawing on his past experience, he will compare Taiwanese migrant workers with those abroad and highlight their challenges.
     Like  Bookmark
  • 議程資訊 點擊獲取 議程 經理人、數位時代 AI 導入旅程- 《經理人》巨思文化股份有限公司 林柏源 AI浪潮下最該擔憂的是知識白領,該怎樣透過AI賦能同事 MVP產品AI podcast=> 國科會比賽AI資料收集(主管比較容易支持)=>Google補助AI整合系統(拿到一年的補助比較容易有資源處理) AI PODCAST
     Like  Bookmark
  • SQL 584. Find Customer Referee (SQL) 1965. Employees With Missing Information (SQL) 1757. Recyclable and Low Fat Products (SQL) 183.Customers Who Never Order(SQL) Python ()
     Like  Bookmark
  • # Write your MySQL query statement below SELECT c.name AS Customers FROM Customers AS c LEFT JOIN Orders AS o ON c.id=o.customerId WHERE o.customerId IS NULL;
     Like  Bookmark
  • Find Customer Referee (SQL) === SELECT name FROM Customer WHERE referee_id <> 2 OR referee_id IS NULL ORDER BY id;
     Like  Bookmark
  • Employees With Missing Information (SQL) === SELECT T.employee_id FROM ( SELECT * FROM Employees
     Like  Bookmark
  • Recyclable and Low Fat Products (SQL) === # Write your MySQL query statement below SELECT product_id FROM Products WHERE low_fats='Y' AND recyclable='Y';
     Like  Bookmark
  • # 介紹頁 location / { root "/home/cashier_intro/cashier_intro/cashier"; index index.html index.htm; set $utm_campaign_value ""; set $gclid_value ""; set $fbclid_value ""; if ($arg_utm_campaign) {
     Like  Bookmark
  • 簡報連結 簡報 目錄 React簡介 元件書本都會做介紹可以在自己看 高階元件HOC 函式是一個元件會回傳一個元件,很像python的decorator。
     Like  Bookmark
  • 主題: 不/存在的家園|Etniko Bandido 資訊站分享會 活動簡介: 在菲律賓馬尼拉大都會的帕西格市(Pasig City),Cris跟Juey 經營Etniko Bandido資訊站與行動中心(Etniko Bandido Infoshop and Activity Center)。Etniko Bandido資訊站與行動中心是一個各種基進與另類訊息匯集、交流的資訊站,人們在此可以找到關於環境、行動、無政府主義等各種議題的書籍或小誌(zine)。Etniko Bandido資訊站與行動中心也是一個交流想法、討論,舉辦放映、讀書會或是烹飪活動的空間。 「Etniko Bandido」是西班牙文,其中「Etniko」即英文之「Ethnic」,意指「原住民族的」,克里斯解釋這代表他的認同,不屬於菲律賓人,因為「菲律賓」是西班牙殖民者對於這塊土地的名稱(註一),但他認為自己是與弱勢族群站在一起的。「Bandido」即英文之「Bandit」,「俠盜」之意,代表自己正在社區裡頭對抗體制。 Cris跟Juey 也是一名積極參與社會、政治,以及環境相關議題的無政府主義者。他們表示自己的理想中的社會,是拒絕國家主義(non-stateism)架構下的社會。他不相信中央集權的社會,傾向人民自決,根據共識決的原則決定自己的政治事務。而無論是個人或是Etniko Bandido資訊站與行動中心的活動,都相當強調與社區民眾的關係
     Like  Bookmark
  • Muki [相關資料」(https://muki.tw/) 簡報連結 目錄 Javascript的全域污染問題 Js的變數跟函數預設為全域作用域 在大型專案中,過多的全域變數會造成命名衝突 需要一種方法來避免全域污染
     Like  Bookmark
  • 創星物聯科技股份有限公司徵才中,技術長歡迎您 簡報連結 ....更新中 目錄 內心預期 團隊協作 作品展示
     Like  Bookmark
  • 目錄 簡報連結 如何用Web Component發大財 徵才 Positive Grid 徵才中 Performance 以往早期的網站都是server side render,也比較有利於SEO。現在多使用virtual dom,但未必有利於seo。蝦皮用react所以會看到js最後載入,因為他最後才會讀到js,所以一開始蝦皮會有一段時間空白,最後才會跑出來。
     Like  Bookmark
  • Ts 是js的一種泛型 我們可以透過下面指令來安裝ts 有時候要注意權限問題,可以前面加上sudo npm install -g typescript 在創建ts檔案的時候,我們常常都要使用tsc來做轉換 去把我們的.ts檔案轉成.js檔案 tsc <file.name> 但後來可以使用tsc --init裡面去設定input跟output的資料夾,這樣可以設定好這些東西
     Like  Bookmark
  • Vue 簡單用法 Props 當我們使用Props的時候都是避免直接把文字寫死在某個元件中,或是單一文字在很多個元件要共用,所以採用這樣的做法,Props可以自定義之後把訊息或是東西送出,可以達到物件可以重複使用的效果 //Modal.vue <script> export default { props: ['heading', 'text', 'theme'], methods: {
     Like  Bookmark
  • 目錄 Syllabus Creating our own objects using object literal notation JS classes and constructors Inheritance Method Chaining Prototype and Prototype inheritance Everything in JS, is an Object
     Like  Bookmark
  • CICD === 章節目錄 一、為甚麼要workflow CICD是一種方式: image
     Like  Bookmark
  • 所有東西都能成為資料庫,不論是白紙、筆記本或是任何東西能夠存取的就可以,但電腦是一個容易存取資料的地方跟方式。 Database Management Systems (DBMS) 大家都是利用DBMS來維護資料庫,不是直接去做的 方便大家使用程式去維護 簡易去維護大量資訊 安全 方便存取備份 輸入輸出資料 同時性
     Like  Bookmark
  • server { listen [::]:443 ssl; # managed by Certbot listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/junlin5525.dev/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/junlin5525.dev/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot server_name junlin5525.dev
     Like  Bookmark