kolar
|
3 years ago
|
on: Show HN: Death by AI
I can't agree more with this. Maybe 1 song out of 30 in Discover Weekly is worth to be marked as liked.
kolar
|
3 years ago
|
on: Just use Postgres for everything
Also Postgres is too slow for large analytical databases. You need columnar database to make fast queries on >1Tb of data.
kolar
|
3 years ago
|
on: Just use Postgres for everything
Be careful when using Postgres as queue with priorites, especially if your messages are large. Removing rows doesn't free up the memory in Postgres and vacuum could remove rows only from the end of a 'page'. As a result of that queue will require enormous amount of space to work. The only way to free up space is to use VACUUM FULL which rewrites whole database and will lock queue for long time. I've had a lot of headaches when we've tried 'use Postgres for everything' on production :)
kolar
|
6 years ago
|
on: Exploring Weight Agnostic Neural Networks
Genetic Programming tries to do almost the same: ie. generate random programs/expression trees etc and then select the best one. NN gives you two adventages over that: you can optimize weights and do it at scale with current hardware - without those two I can't see the difference.
kolar
|
6 years ago
|
on: Exploring Weight Agnostic Neural Networks
How is this different from genetic programming?
kolar
|
8 years ago
|
on: Announcing Dart 2: Optimized for Client-Side Development
Dart as a language is great. My biggest complaint for dart team is that they have abandoned Polymer Dart. For web we have now Angular which is overkill for small to medium non-CRUD apps or dart:html which is like jQuery with types, just a little bit to low level.
kolar
|
8 years ago
|
on: Shitcoin vs. buttcoin: a dummies guide to cryptocurrency manipulation
Monero is definetely not the only one in this club. For example: there is Numeraire which is actively used by data scientist on numer.ai. NMR has true value as long as Numerai hedge fund is using it.
kolar
|
8 years ago
|
on: Show HN: Byte Arena – Code Your Fighter Bot
Games like this one seems to be soo fun but when I'm back home after a whole day of coding I just can't find energy to write any more. I thought: why not create a game where you show examples of 'good' moves to your bot instead of coding them? So I've implemented my idea in
https://top-tactic.com/en where you can teach bots to play soccer just by showing examples of good moves. Noone plays it, but it was fun to create :) and great way to gain some experience with neural networks.
kolar
|
9 years ago
|
on: If TypeScript is so great, how come all notable ReactJS projects use Babel?
It puzzles me also. Dart is solid language with great libraries, good tooling and still it is ignored by most developers. The truth is people from JS world seems to like 'cool' languages, but the one who want to be productive just uses boring Java/Dart etc.
kolar
|
9 years ago
|
on: Show HN: I built my wedding website using Polymer
I can recommend Polymer.dart, static typing + webcomponent encapsulation + polymer elements gives really good framework for webapps. It's still not in 1.0 but it's quite stable now.
kolar
|
10 years ago
|
on: Ask HN: What are the cons of Google Polymer?
I've used Polymer.dart for browser game consiting mainly of simple windows. From that I can say the most important downside is the poor performance on mobile (even with shady DOM). Despite that I'd probably still choose Polymer if I need browser framework because webcomponents encapsulation feels great from developer perspective.