See this? This hand grenade I'm leaving in the schoolyard? This is about better games of hot potato.
HN user
notaboutdave
no
Setting up your own git remote takes minutes. Github is just a pretty interface with bells and whistles. I think more people should go self hosted. It's cheaper, and none of the features are truly needed.
They'll bang it out in a week without a hitch. Just like every sizable migration.
Google's massive browser market share has opened the door to some ugly things. I can't help but shake my head whenever I come across a "Chrome only" SaaS startup.
I practice ruthless minimalism in everything. Having zero irrelevant things in my world leaves little room for distraction.
Journaling. It feels like modding life with extra memory and save states. I made a tool for it. Thinking about doing a "Show HN" some time.
This seems like it might be frustrating to manage. Instead of one or two memorable addresses, you now have two hundred hard-to-memorize ones.
It also might get awkward at the cash register :)
Does the book cover anything on rendering with OpenGL or graphics libraries?
How is this browsing a "remote" git repository? In the example he clones the remote to a local bare repo first. Am I missing something?
For those of you about to click: it's a visual interactive guide, and it's excellent. This guide is way too easy to not just learn it right now.
Here's a Henry Rollins anecdote on how throwing money at tent cities might not be the best idea:
People didn't vote for our person! Change the algorithms!
This is so corrupt and manipulative it makes me sad.
Is it just me, or does .app look great in the address bar? Feels more official and communicable than .io or .ai in my opinion.
Machine learning has been overcrowded with copycat projects like image processors and game bots.
I think I just felt my mind expand a little.
Brilliant work, Ariel!
You have no idea how much time you just saved me.
Where's the donate button?
Be careful if you're browsing fullscreen.
Here I am casually clicking HN posts when suddenly my brain thinks it's the 90s.
It's more about who you know than what you know.
Invest some time in exploring your existing relationships and building new ones with like minds. Some actionable steps might be:
- Explore Facebook for friends in the industry (or a friend of a friend) and ask for an introduction
- Attend relevant Meetup groups and events
- Contribute to an open source project that you find interesting
- Get a non-programming job and pivot within the company
Thousands of people like yourself are all trying to do the same thing right now, so the "who you know" is becoming increasingly important.
Cross-browser support for WebAssembly was the death knell for ad blockers.
No program for you until you make up your mind about what you want
This is more or less the HN response to questions like this every time they come up.
You can't fully automate programming because it is the very act of communication that defines the program. Without some type of brain-computer interface that could download your mind and "execute" it, you still have to communicate. Programming is the most direct and precise way to do this.
The Kevin Rose Show (https://www.kevinrose.com/)
I've never subscribed, but I always find myself listening because there's always something interesting going on (which says a lot IMO).
From the site: Kevin interviews authors, technologists, scientists, meditators, self-experimenters, and productivity hackers to explore how to reach peak personal and professional performance while living a minimal and balanced life.
Best takeaways from the article (no particular order):
- Retool ads as a way to test for and identify demand.
- Bait people with truly useful content where they're already looking, and then direct them to your app.
- Simple changes in wording or flow of UX can increase shares dramatically.
- Get featured in app stores. How?
- Integrate with latest device features being pushed
- Adhere to vendor design standards
- Email is still very effective, so use it.
- Have 10 enthusiastic users that will spread their enthusiasm before you start.
That last point is good to know, and perhaps the most important, but it's way easier said than done. Especially if you aren't a social butterfly.Also, the "don't use cross platform" preached in the article isn't very convincing. You can get excellent performance with well-coded cross-platform build tools, and in far less time.
Any good time management tools out there? What do you guys use?
Rollup is great. Smaller bundle sizes and no mystery meat. It takes a little more time to configure but it's worth it in some cases.
Exactly what I'm doing right now. Money doesn't change anything.
This would make "Satoshi Nakamoto" a criminal for not declaring the genesis block on his taxes.
Here's a psuedocode rundown of exactly what it does:
network = new NeuralNetwork()
targetOutput = readFile('./images/zebra-500x500-corrupted.jpg')
input = generateNoise(500, 500)
while(iterationCount < overfitThreshold) {
networkOutput = network.getOutput(input)
loss = getLoss(targetOutput, networkOutput)
network.backPropogate(loss)
iterationCount++
}
writeFile('./images/zebra-500x500-denoised.jpg', networkOutput)Is this corporate greed or is the value of unskilled labor quickly approaching zero?
I mostly agree, but now they're building cities. How will we compete with companies that encompass our entire lives, digital and physical?
Today we are stuck with Google search, tomorrow we will be trapped in off-white Google apartments in Google city, and DuckDuckGo will still only be a search engine.
The problem never was that they can't be beaten. The problem is that they buy all the competition. Great if you're being bought, not so much if you're a part of society.
First of all, thanks for sharing your great work.
The support for non-Gregorian output is interesting. Are there any plans to extend full support beyond Gregorian? For example, something like:
dt.plus({months: 7, calendar: 'hebrew'})