HN user

Xeoncross

4,672 karma

Avid code mill

http://github.com/xeoncross http://davidpennington.me

Posts26
Comments1,179
View on HN
github.com 7y ago

Show HN: AskThe.Host – Open Source platform for audience interaction over SMS

Xeoncross
4pts0
phys.org 8y ago

Gene survey reveals new facets of genetic diversity

Xeoncross
3pts0
news.ycombinator.com 8y ago

Show HN: Block Stackoverflows “Hot Network Questions”

Xeoncross
3pts0
news.ycombinator.com 8y ago

Ask HN: Intellectual property lawyers by state for hire by individuals

Xeoncross
1pts0
xlm.party 8y ago

Show HN: Live Stellar Lumens Donation Platform (XLM)

Xeoncross
2pts1
www.geekwire.com 8y ago

IBM sues Expedia alleging patent infringement

Xeoncross
1pts0
imgur.com 8y ago

Amazon HNews

Xeoncross
2pts1
www.kickstarter.com 9y ago

MovieSlice Automatic Video Editor

Xeoncross
1pts0
news.ycombinator.com 9y ago

Ask HN: Tools for turning DB records into graphs

Xeoncross
1pts0
news.ycombinator.com 9y ago

Ask HN: Storing and Searching Volumes of Text

Xeoncross
4pts4
github.com 9y ago

Show HN: Secured Default HTTP(S) Server for Go

Xeoncross
26pts0
github.com 9y ago

Show HN: Super Simple Worker Queue in Go

Xeoncross
6pts7
askthe.host 9y ago

Show HN: Interactive Talks via AskThe.Host

Xeoncross
4pts2
images.jw.com 10y ago

Intellectual Property Basics [pdf]

Xeoncross
4pts0
news.ycombinator.com 11y ago

Ask HN: Finding useful relationships in a collection of documents?

Xeoncross
1pts0
extremeinstability.com 11y ago

HD Looping Storm Gifs

Xeoncross
1pts0
gist.github.com 11y ago

Simple Vagrant Developer Box Setup

Xeoncross
2pts0
github.com 11y ago

Open source todo app by Zach Holman

Xeoncross
3pts0
github.com 12y ago

English Script – Natural Language Programming

Xeoncross
1pts0
github.com 12y ago

Show HN: The static, static site generator

Xeoncross
187pts96
gist.github.com 12y ago

Composer - the missing quick-start guide

Xeoncross
2pts0
www.getsoloapp.com 12y ago

Project Management for Freelancers (Free App)

Xeoncross
1pts0
themattwalshblog.com 12y ago

Kids, go to college or you’ll die alone in misery | The Matt Walsh Blog

Xeoncross
2pts0
www.kickstarter.com 12y ago

Mailelf - simple encrypted email for everyone

Xeoncross
5pts9
www.kickstarter.com 12y ago

Mailelf Kickstarter - A Simple Encrypted Email App written in Go

Xeoncross
2pts0
www.kickstarter.com 13y ago

Omni: Move Naturally in Your Favorite Game

Xeoncross
7pts2

Moving away from the technical solution space - I'm curious, have their been any games (or communities) with a high entry fee/deposit (e.g. $500 USD) to join kept in escrow and lost in the event you're discovered to be cheating?

There are plenty more questions like paying for mods/review, securing the money, paying for servers, etc.. but my basic question is if cost of entry exceeds cost of reward from cheating has ever been attempted in a game.

Apparently buying a new copy of a $10-20 game isn't enough to keep people away from cheats. Less so when there is prize money on the line or skins (e.g. CS2) worth $100k.

I'm really looking forward to the next generation of languages. Not only are the old 90's languages like Java, PHP, and JavaScript now actually doing things correctly. The new languages like Zig, Go, Swift and Rust continue to figure out new ways of trying things like generics. Spinoffs like V, Ante, and others are perfect testing grounds.

The Corporations Won, because it turns out software engineers turned into IP maximalists

Yeah, it's always bothered me that developers are eager to get legal to patent something they were involved in at Company™ put their name on patents so they can include them in their promotion docs.

It's like we're slowly defrauding ourselves and ensuring companies have the maximum legal standing against individual makers. Almost like a prisoner's dilemma where we're building the things that will/have be used against it us and those that come after in exchange for a little personal gain.

I Fired Google 1 month ago

Considering the decade of poor results from doing anything other than music, weather and alarms I think we've all learned to avoid using them for anything else.

Honestly, we're at a point where AI can write better software than some devs and answer medical questions with more knowledge than some doctors.

Likewise, AI is oblivious to it's own mistakes, much like said professionals can be at times.

Not that AI is actually thinking, but rather the collective corpus of text yields greater insights (knowledge of the crowd, not wisdom of the crowd) than a lower-average person in that same industry.

I would love to have a more detailed write up on development while mobile. Seems like an ideal way to pass the time vs doom scrolling when on the go.

Just how many lunch lines does it take to program a GB game?

I've never liked token buckets (vs sliding window counters) due to the extra work CPU cycles required to "fill" them. It seems like doing an atomic incr on a key based on a `time % 1 minute` or something would be more efficient and then let that key TTL expire X duration later. This results in zero work for rate limiters not in use and only a single push change -> resulting count for ones in use. Nothing but setting the TTL extra is required.

Thanks for the links, I'll checkout the Generic Cell Rate Algorithm!

I would rather my kid was in a group of 10 students than 30. I remember very little time actually left for a teacher to help an individual child with all the kids to manage. Most people are scared to watch three kids at a time.

I'll take 1-on-1 mentoring over better computers, books, clubs, sports, or anything else the budget is spent on.

Please hire more teachers.

or (more pointedly) that brain activity could not possibly implement cognition because it can be described as a collection of neural firings.

This sounds like a dismissal of the argument through a characterized straw man.

That is, it seems that reducing the complexity of the brain to "collection of neural firings" is not being honest about everything involved to a much greater degree than saying neural networks are a "collection of statistical calculations".

I too believe LLM's will grow in complexity, but presently I can not even fathom how they can be compared to the complexity of a system such as the human brain.

They are still there either way. They don't suddenly become smarter and/or hard working because we pretend.

If anything, it simply increases the pool of people who realize you don't need to try.

Nice! Tracking connection reuse is really important if you are running any kind of benchmarks or comparisons both as the author of a new tool / service and as the person evaluating different options or client libraries.

I've hit a lot of walls not ensuring I was using connection pools correctly even when the service I'm calling was local/docker. File descriptor exhaustion happens often if you're not careful.

Thank you for sharing, if you don't mind can you share some Go+SQLite leanings as someone actually pulling this off?

1) How do you do backups? Do you use github.com/benbjohnson/litestream? CRON job backup with rsync?

2) Any issues with large databases and many clients? Is there a TPS or DB size where SQLite becomes problematic?

3) How do you deploy new binaries and safely shutdown the old instance? Caddy change to route to new binary + Go's HTTP server graceful-shutdown on old instance?

4) Do you use a pure-Go SQLite lib or one of the CGO libs?

Ah, but it's cheaper. Replace "AI" with "auto parts" or "store food" and you see the same thing. Replace "AI" with "police force" or "contractors" and it's the same thing.

Why is everyone and everything getting worse? A sort of "Prisoner's dilemma" I suppose: no one wants to take a stand and lose their business edge just for principles sake.

As an aside, class-action lawsuits seem less than ideal for the public. The awards benefit the lawyers and perhaps a small handful, but the actual plaintiffs only get $0.05. In addition, successful class-action suits prevent further litigation from being allowed for the same issue.

Individuals bringing their own lawsuits seems like it would affect better change as 1) the award money would be better distributed instead of concentrated and 2) the amounts levied against the companies would be higher and more of concern than the class-action slap-on-the-wrist they currently get.