Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
pipeep
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
pipeep
5y ago
What's more concerning IMO is that despite the fact that I can't find a CLA, their pricing page claims that if you buy their support contract that they'll give you the software under a "Commercial" license: https:&
2.
▲
by
pipeep
5y ago
> Rust could add a `#![forbid(alloc)]` declaration and achieve the same effect. Isn't that pretty much what `#![no_std]` is for? You can still use an allocator with no_std, but you have to explicitly import it. https://do
3.
▲
by
pipeep
6y ago
I worked on this while on the Instagram Server Framework team to leverage LibCST and solve some of Instagram's own problems. We took a lot of inspiration from other lint frameworks (notably, Flake8 and ESLint). I left the team before m
4.
▲
by
pipeep
6y ago
I'm with you, and I prefer "dumb" devices, but you can still buy these blu-ray players and not connect them to the internet. The internet connectivity is sold as an additional feature so that you can use your blu-ray player t
5.
▲
by
pipeep
6y ago
Sure, there's probably less exposure from nuking the profiles directory, but I don't think you're being fair to containers: - Containers are a feature built into Firefox, these extensions just expose a UI for it. The Multi-Ac
6.
▲
by
pipeep
6y ago
See if your preferred distribution has a kernel backport available. Most have backports of the kernel because it has relatively few dependencies and is backwards compatible, making it easy to backport. E.g. Debian currently has a 5.5 kernel
7.
▲
by
pipeep
7y ago
If the data structure has a reference count of one, you can safely mutate the data structure instead. Many persistent immutable data structure libraries use this as an additional optimization.
8.
▲
by
pipeep
7y ago
> I'm surprised that smaller companies have not moved away from static pricing yet. The physical server has a fixed set of resources. If you let customers pick what resource they want to buy, you'll run out of one resource befo
9.
▲
A Deep Dive into Python's Tokenizer
(benjam.info)
3 points
by
pipeep
7y ago
|
0 comments
10.
▲
LibCST: A Concrete Syntax Tree Parser and Serializer Library for Python
(github.com)
16 points
by
pipeep
7y ago
|
0 comments
11.
▲
by
pipeep
9y ago
The flexbox implementation that react native uses for layout.
12.
▲
by
pipeep
9y ago
> What is the alternative to using Virtualbox Any other hypervisor. QEMU/KVM, Xen, VMWare, and Parallels all have good track records.
13.
▲
by
pipeep
9y ago
As others have mentioned, Digital Ocean and Linode would probably be good options here. If you're looking for something even smaller and cheaper than $5/mo, I've had luck with BuyVM. They've very cheap, have good custo
14.
▲
by
pipeep
9y ago
A large amount of that 1.5 MB of code is to shim around the incompatibilities between different versions of the shared libraries that ship with Android. The root of the problem is that not everyone is on the same version of Android.
15.
▲
by
pipeep
9y ago
I've got an old 2013 Moto X, and I've recently started using Messenger Lite on it. You'll likely need to manually install the APK, because it's not available in the Play store for the US market, but it's definitely
16.
▲
by
pipeep
9y ago
Blockchains likely scale closer to O(n log n): http://spectrum.ieee.org/computing/networks/metcalfes-law-is... The value of the network does go up the more people use it, and therefore, there are more transactions
17.
▲
by
pipeep
9y ago
https://en.wikipedia.org/wiki/List_of_mergers_and_acquisitio... Web search engines: - Outride (2001) - Kaltix (2003) - Akwan Information Technologies (2005) - Orion (2006) - Aardvark (2010) - PlinkArt (2010) - Metaweb
18.
▲
by
pipeep
9y ago
I used to work at Amazon, and I liked their leadership principles. They're intentionally contradictory, but that's just an acknowledgement that perfection is impossible. When you choose to focus on one aspect of your career, that&
19.
▲
by
pipeep
10y ago
You can figure out what add-ons are compatible by cross-referencing http://www.arewee10syet.com/
20.
▲
by
pipeep
10y ago
Regarding D2: If you're going to go with bcache, make sure you're using a kernel >= 4.5, since that's when a bunch of stability patches landed ( https://lkml.org/lkml/2015/12/5/38 ). Alte
21.
▲
by
pipeep
10y ago
Engineers are expensive. Google's research blog probably isn't a very high-traffic surface, and most visitors are probably on modern machines and fast networks. It doesn't make sense to spend a bunch of engineering resources
22.
▲
by
pipeep
10y ago
Babel can parse Flow, which is similar to Typescript. However, Babel doesn't have any built-in support for inferring or analyzing flow types. However, some of this type information might be useful in building a more advanced closure-li
23.
▲
by
pipeep
10y ago
> Automatic parallelisation is a bad idea because the overhead caused by synchronisation is bigger than the gain. A sufficiently intelligent compiler would be able to heuristically determine if the synchronization overhead for a program
24.
▲
by
pipeep
10y ago
It's much less polished, but instead of using pcap, I just configure dnsmasq on openwrt to call a shell script that uses wget to call an http endpoint on my computer: https://github.com/bgw/dash-button/blob&#x
25.
▲
by
pipeep
10y ago
I think employer provided food isn't currently taxed, which is a huge benefit. http://www.wsj.com/articles/silicon-valley-cafeterias-whet-a...
26.
▲
by
pipeep
10y ago
OS X isn't getting Vulkan (as far as I can tell). Apple's pushing Metal instead.
27.
▲
by
pipeep
11y ago
It's a common scam to sell flash drives with modified firmware that causes it to report a larger size than the underlying flash chips provide. Usually once you write past that point, the writes will loop around or drop the data entirel
28.
▲
by
pipeep
11y ago
There's a "Features and comparison" section on the linked page that addresses exactly this.
29.
▲
by
pipeep
11y ago
The term blog is derived from the concatenation of "web log".
30.
▲
by
pipeep
11y ago
If you intercept every MemberExpression on every object, you can solve this (with the exception of eval), but as I said, it would be incredibly slow.
More ›