1 minute read

Tags: , ,

無論你喜不喜歡,科技會改變我們的生活,而且想躲都躲不掉。

未來人類技能侷限在 3 C 上

  • the Creatives
  • the Carers
    • 不只是照顧需要幫助的人,在商店、學校、監獄、醫院任何觀照我們需求的人
  • the Custodians
    • 努力穩住局面的人,政府部門主管

時代改變,我們也跟著改變

Everything must change so that everything can stay the same

Portfolio life 組合式生活

  • 集合許多小型工作,有的領得到報酬,有的無酬但有用。(或許我給自己的挑戰 or side project 也是組合式生活的一種?)

:sunglasses: :star: :heart: :innocent: :sunny: :whale: :crescent_moon: :bulb: :computer: :strawberry: :watermelon: :rocket: :blush: :sunglasses: :star: :heart: :innocent: :sunny: :whale: :crescent_moon: :bulb: :computer: :strawberry: :watermelon: :rocket: :blush: :sunglasses: :star: :heart: :innocent: :sunny: :whale: :crescent_moon: :bulb: :computer: :strawberry: :watermelon: :rocket: :blush: :sunglasses: :star: :heart: :innocent: :sunny: :whale: :crescent_moon: :bulb: :computer: :strawberry: :watermelon: :rocket: :blush: :sunglasses: :star: :heart: :innocent: :sunny: :whale: :crescent_moon: :bulb:

碼農小園地

  • javascript:

    • 在開發 Excel 上傳遇到的小故事
* convert data to binary string */
 var data = new Uint8Array(arraybuffer);
 var arr = new Array();
 for(var i = 0; i != data.length; ++i) arr[i] = String.fromCharCode(data[i]);
 var bstr = arr.join("");
  • Uint8Array:

    • The Uint8Array typed array represents an array of 8-bit unsigned integers. The contents are initialized to 0. Once established, you can reference elements in the array using the object’s methods, or using standard array index syntax (that is, using bracket notation).
  • fromCharCode:

    • The static String.fromCharCode() method returns a string created from the specified sequence of UTF-16 code units.

    • ex:

      console.log(String.fromCharCode(0x5433));
      //  吳
      

Reference