KKojiinblog.kojikanao.gq·Jun 3, 2021 · 2 min read9 Shorthands We Need to Know for Writing JavaScript1 if..else const x = 100 if(x>100) { console.log('over 100!'); } else { console.log('OK'); } console.log((x>100) ? 'over 100!' : 'OK'); // output OK let result = 0; if(result ===0) { result = 10; } else { result = 100; } let result =0; re...00
KKojiinblog.kojikanao.gq·May 28, 2021 · 4 min readCreate Simple Crypto Bot with TwilioIn this post, I'll show you how to create a super simple crypto bot with Twilio API and cryptocompare python package. I'm using poetry for a python project but it's not necessary to use it. What you need is to have python3 and pip. [Requirements] Tw...00
KKojiinblog.kojikanao.gq·Feb 22, 2021 · 13 min readWe Should ❤️ curl 18 things We Can Do with curl!!!get ipinfo $ curl ipinfo.io { "ip": "xxx.xxx.xxx.xxx", "hostname": "cpe-xxx-xxx-xxx-xxx.xxs.sss.sss.com", "city": "Brooklyn", "region": "New York", "country": "US", "loc": "xx.aaaa,yy.bbbb", "org": "TTTTT Inc", "postal": "xxxxx", "t...00
KKojiinblog.kojikanao.gq·Feb 14, 2021 · 1 min readOpen source Clubhouse AlternativesAs you know Clubhouse is very popular right now, but there are some issues such as privacy, server performance, and etc. Then, 2 open-source software shows up. To use them you don't need to install any application on your smartphone. Jam https://www...00
KKojiinblog.kojikanao.gq·Jan 27, 2021 · 8 min readCreate an npm package template with TypeScript and rollup.jsHere is my repo for this article.https://github.com/koji/npm-package-template What is npm? npm is a package manager for the JavaScript programming language. npm, Inc. is a subsidiary of GitHub, that provides hosting for software development and vers...00