Pretty everything can be reverse engineered.
Pretty everything can be reverse engineered. You can only complicate the efforts required to reverse your program to an extent that makes the reversing pointless from an economic standpoint. In theory,...
View ArticleAfter the .so
After the .so files are created, you can simply delete the .py files. Python loads these .so files instead of .py, when it sees an import directive.For example, in this case you can import...
View ArticleCrunk Ambassadeur Thank you for this information, I updated the article with...
Crunk Ambassadeur Thank you for this information, I updated the article with a note about the file extensions on Windows!
View ArticleMy 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 ArticleNo worries, I gave you some claps back! Moon, bro.
No worries, I gave you some claps back! Moon, bro.
View ArticleYou need to realize that nobody would open-source a working (profitable)...
You need to realize that nobody would open-source a working (profitable) trading bot. Never. Ever.But the good thing is that you can find publicly available tools for constructing one. For example,...
View ArticleI am not familiar with NANO but it would be interesting to see their approach.
I am not familiar with NANO but it would be interesting to see their approach. Many teams claim that they have solved the scalability, but I haven’t yet seen a rigorously defined proof of these claims...
View ArticleThanks for the article, Vitalik!
Thanks for the article, Vitalik! I have made an interactive visualization of Lagrange Intepolation. You can drag the points around and see how the curve bends:Lagrange Interpolation (interactive)
View ArticleThanks for the article, truly enjoyed reading it!
Thanks for the article, truly enjoyed reading it!
View Articlehttps://en.wikipedia.org/wiki/Black_hole_electron
https://en.wikipedia.org/wiki/Black_hole_electron
View ArticleAnd if you miss the error overlay from create-react-app (a thing that pops up...
And if you miss the error overlay from create-react-app (a thing that pops up whenever a JS error occurs), take a look at this project: https://github.com/xpl/panic-overlayIt works well with Parcel and...
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 ArticleWiring ES7 decorators to Chai Spies for declarative contracts on class methods
A metaprogramming case studyWhat spies are forSpies allow probing functions for specific call patterns, for example, given an instance of a class:const foo = new (class Foo { bar () { }})We can hook...
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 Article