James Robertjamesrobert.hashnode.dev·Dec 1, 2023What is a Feature in a Publication?Have you ever wondered what people mean when they talk about “features” in a publication? Let’s break it down in simple terms. In the world of publications, a feature is like a special story that goes beyond just giving information. It’s like the dif...Discussfeatures
The Robo Kimadamriland.hashnode.dev·Nov 30, 2023How To Write An Article That People Will Actually ReadIntroduction In the vast ocean of content that is the internet, it can often feel like your words are just drops in the water, disappearing without a trace. But fear not, because writing an article that people will actually read is not as daunting as...DiscussWriing.
Yijun Zhanglindazhang.hashnode.dev·Nov 29, 2023What did Mircosoft's Chief Sustainability Officer read about that I am interested in?The post about books, the top ones to call out, is from Musidora Jorgensen, Mircosoft's Chief Sustainability Officer and a believer in #LeadersAreReaders. I am interested in the book, ‘How to Lead with Purpose’ by Liam Black. The toggle question I am...Discusssocial-impact
Alex Cloudstarblog.alexcloudstar.com·Nov 27, 2023The book that changed my lifeHello, fellow knowledge seekers! My name is Alex Cloudstar and today I want to talk about a book that changed the way I think, so therefore it changed my life. Are you ready to shake up your learning game and take on the world of ultralearning? Strap...Discuss·29 readsultralearning
chantasticchantastic.hashnode.dev·Sep 27, 2023A Universal Terminal alias for bun, pnpm, npm, and yarnI've typed npm for the last time. As JavaScript developers, we have four package managers to choose from. And between personal, work, and open source projects, I use every last one of them. This is a problem because typing the wrong command costs tim...DiscussWeb Development
Vishnu Dileeshvic0de.com·Sep 25, 2023How I stay updated and grow my knowledge through reading (5-10mins a day)What to read? Hunting for articles I go on a hunt for articles on interesting topics of mine on the platforms (medium.com) (dev.to) (hashnode.com) Do I hunt only when I am in the mood to read? No, even when I don’t have the time to read, I go hunting...DiscussSoftware Engineering
Eric TorreborreProetorreborre.blog·Sep 10, 2023The pros and cons of listening to book summariesI have started to listen to book summaries via the Headway app. After a month or so here is a list of the pros and cons. The pros The summaries are only 15 minutes long so you know that you can fit one or two book summaries in a short morning walk (...Discuss·10 likes·113 readsbooks
You-Lun Linurlun0404.hashnode.dev·Sep 3, 2023讀書筆記: JavaScript技術手冊4 - 物件進階語法Object protocol 物件協定 valueOf 多數情況下不要在 number 或 string 以外的型別使用 +、-、*、/、** valueOf 方法會回傳基本型別,可在需要基本型別運算時使用; valueOf 在 Date 實例可用於比較關係(>、<、>=、<=),但不建議用在 +、-、*、/、** 運算。 // ex0. 預設回傳instance本身 let o = {}; console.log(o.valueOf() === o); // true ...Discuss讀書筆記reading
You-Lun Linurlun0404.hashnode.dev·Sep 3, 2023讀書筆記: JavaScript技術手冊3 - 函式進階語法Closure 閉包 function 與 lexical environment (作用域環境) 的組合 free variable 函式捕捉的是變數,並非變數值。 var fs = []; for (var i = 0; i < 10; ++i){ fs[i] = function(){ return i; // 捕捉的是變數 i } } console.log(fs[0]()); // 10 console.log...Discuss讀書筆記reading
You-Lun Linurlun0404.hashnode.dev·Sep 3, 2023讀書筆記: JavaScript技術手冊3 - 函式基本語法函式這部分整理很多容易忽略的重要語法細節,可以常看。 基本語法 函式表示某個重用流程的封裝(encapsulation) 函式定義與呼叫 函式定義 function declaration 函式宣告 JS engine會優先處理函式宣告 function literal 函式實字 一種expresstion 執行運算式之後才產生function object 可附加/不附加函式實字的函式名稱 Anonymous function 匿名函式:不附加函式名稱 附加函式名稱通常是為了遞迴 ...Discuss讀書筆記reading