2025年9月30日 星期二

2025 All In Summit感想

2025 All-In Summit.

活動費用:7500鎂
活動日期:2025/9/7 12pm - 2025/9/9
活動地點:Shrine Auditorium and Expo Hall
額外費用:來回機票約 150 ( SJC - LAX ), 飯店四天三夜約 650

活動期間,主辦方有提供早午晚餐,七點以後,會提供許多不同的活動項目,例如撲克,脫口秀,高檔餐廳聚餐,最後一天晚上包場環球影城,酒水食物全部免費。由於有特約的飯店,所以在特約飯店門口,會有免費搭乘的專車送成員到會場。

活動詳細行程:
9/7  12pm - 5pm:報到,領取名牌,現場有提供撲克活動。
       7pm - 10pm:晚餐,每個餐廳約可容納一百多人,每個餐廳都有各自的主題,我參加的是關於 AI Infrastructure 相關主題的,與我同桌的都是對這主題有興趣,所以很好聊天。
9/8    8am - 9am:會場提供早餐
       9am - 12:15:訪問許多的講者,每個講者約 30分鐘到 45分鐘的時間。
      12:15 - 1:15:用餐時間
        1:15 - 5:15:第二階段訪問講者
      7pm - 11pm: 脫口秀,撲克牌活動,高檔餐廳用餐(只能擇一項參加)
9/9   8am - 9am:會場提供早餐
      9am - 12:15:訪問許多的講者,每個講者約 30分鐘到 45分鐘的時間。
      12:15 - 1:15:用餐時間
        1:15 - 5:15:第二階段訪問講者
      7pm - 11pm:環球影城包場


會場:


 







第一天(9/8)的講者:























第二日(9/9)講者:














環球影城:





















2011年10月22日 星期六

Generate the social network button.

[Facebook button]
http://developers.facebook.com/docs/reference/plugins/like/

[Google+]
http://www.google.com/intl/en/webmasters/+1/button/index.html

[Twitter button]
http://twitter.com/about/resources/tweetbutton

2011年2月15日 星期二

Debian / Ubuntu Linux 網路設定範例

Debian / Ubuntu Linux 網路設定範例: "

Debian / Ubuntu Linux 的網路設定, 若不使用 NetworkManager 的話, 就是要手動設定 /etc/network/interfaces.

網路設定範例

/etc/network/interfaces 有哪些參數可以設定? 下面把常用的都列出來.

  • DHCP (自動取得 IP)
    auto eth0

    iface eth0 inet dhcp
  • Static IP (固定/靜態 IP)
    iface eth0 inet static

    address 192.168.0.7

    netmask 255.255.255.0

    gateway 192.168.0.254
  • PPPoE
    auto dsl-provider

    iface dsl-provider inet ppp

    pre-up /sbin/ifconfig eth0 up # line maintained by pppoeconf

    provider dsl-provider

    auto eth0

    iface eth0 inet manual
  • 更多設定
    auto eth0

    iface eth0 inet static

    address 192.168.1.2

    netmask 255.255.255.0

    gateway 192.168.1.254

    network 192.168.1.0

    broadcast 192.168.1.255

    gateway 192.168.1.254

    # dns-* options are implemented by the resolvconf package, if installed

    dns-nameservers 168.95.1.1 168.95.192.1 8.8.8.8 8.8.4.4

    dns-search longwin.com.tw

    auto eth0

    iface eth0:0 inet static

    address 192.168.1.41

    netmask 255.255.255.0

    broadcast 192.168.1.255

除此之外, 還想要做些進階設定, 例如下述:

相關網頁

"

2010年1月26日 星期二

[程式]:Javascript Charts plugin.

這網站是我從Flash高手:高見龍的噗浪上看到的。

繪圖是常常再工作上需要使用的,所以做個紀錄。
[Javascript Charts]
http://highcharts.com

而下面利用Flash來繪圖,則是我已經使用過的Library,
還不錯用。
推荐給大家。
[Flash]
http://teethgrinder.co.uk/open-flash-chart-2

2009年11月19日 星期四

Bash Shell下String變數的Substring

在Shell下如果要取字串中的一部份字串可用以下的寫法,

假設一字串為
kk1=abcde
如果要將bcd取出, 從a開始為第0個, b為第1個, 取三位.

echo ${kk1:1:3}

畫面就會出現
bcd

2009年1月19日 星期一

jQuery Plugin

Jquery 250個套件

http://www.codeindex.cn/tag/jqueryjQuery plugin list.

多到數不完的plugin
http://www.open-open.com/ajax/jQuery.htm

17 個優秀的jQuery plugin(附圖)
http://ka-yue.com/blog/useful-jquery-plugin

也是多到數不完的plugin
http://www.codeindex.cn/tag/jquery

2009年1月14日 星期三

[ 程式 ] - User Friendly Statistic Graph in PHP.

這是我看過最好看的畫統計圖程式
目前有兩個版本,
站長說,OFC的頁面會持續存在且運作,但可能會有不維護的一天.
至於第二版,使用了JSON,讓更多的程式能夠使用.
[OFC] http://teethgrinder.co.uk/open-flash-chart/gallery-data.php
更重要的是,這是免費的.