My Two Cents About IOTA
And Why I Don’t Like ItThey’re essentially a centralized tech, pretending to be decentralized. They have failed to solve the theoretical problems, patchworking it with a central server (“the...
View ArticleA Coding Interview With GPT-3
Could a newest AI get a job at Google? Let’s find out!GPT-3, a newest and biggest OpenAI’s language model is all the hype right now. If you have missed the train, here’s a list of cool demos that...
View ArticleШкола, которой нет
Я знаю людей, которые закончили ДМШ, отучившись по 5 лет, и с тех пор они никогда не притрагивались к инструменту — и вообще, стараются об этом не вспоминать, судя по всему. Невероятно……невероятно, как...
View ArticleHot Reloading for Chrome Extensions
github.com/xpl/crx-hotreloadFinally, someone did it ;)Drop hot-reload.js to your extension's directory.Add it to your background scripts section in the manifest.json file:"background": { "scripts":...
View ArticleJavaScript: Did you know about the comma operator?
return (a, b, …, z)It will return z, evaluating a, b, ... first. At first it seems not very useful, but consider this example:const fun = x => x + 1What if you want to add a console.log call before...
View ArticleProtecting Python Sources With Cython
Distributing Python Programs As Compiled Binaries: How-ToProtecting your Python sources from unwanted readers is easier said than done, because .pyc bytecode is decompileable and the obfuscation is...
View ArticleA Curious Case Of .length == 2
I was debugging a very strange case with one of my Node.js projects recently. It prints my output formatted (with the as-table module) into a nicely-looking ASCII table layout:For the sake of even...
View ArticleJavaScript: Creating Custom Error Classes That Work After Transpiling To ES5
TL/DR: here’s a nice hack that we use in CCXT:class MyError extends Error { constructor (message) { super (message) this.constructor = MyError this.__proto__ = MyError.prototype this.message = message...
View ArticleFucking Insane
This was supposed to be a blog about programming, but fuck programming. The war was disgusting from the very start. But what happened in Bucha is fucking insane, it’s unspeakable. I cried yesterday...
View ArticleEverything Will Change
In my field, many people are wondering what the future of the software development will be — arguing about whether AI will replace engineers and to what extent.But why just “software development”?...
View Article