Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
jdunck
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
jdunck
8y ago
It's worth noting that since the collateralized housing debt scandal of the Global Financial Crisis, approximately nothing changed in regulation, and credit card and auto debt securitization has taken off in its place. Investors still
2.
▲
by
jdunck
9y ago
And what if the battery weight is nearer axle centerline than an ICE?
3.
▲
by
jdunck
11y ago
If Google (or any other crawler) wanted to play nice with paywalls, they could issue a public key for their bot, and put a signature in their User Agent string that the domain could then verify. Those signatures could obviously leak, but on
4.
▲
by
jdunck
11y ago
As a general rule, I don't use public wifi and council people to use VPN if they must. No flash, disable java in the browser, prefer chrome to safari, AdBlock and NoScript if you don't need JS.
5.
▲
by
jdunck
12y ago
Could you provide a citation for "automatically jailed for not handing over your encryption keys" - I have not heard that before.
6.
▲
by
jdunck
12y ago
Pre-commit hook should address your concern?
7.
▲
by
jdunck
12y ago
I agree with the premise of judging based on both action and context, power and relationship. I agree that hackers aren't the nerd-revenge underdogs (if we ever really were). I agree that we have power to do good, and we mostly piss
8.
▲
by
jdunck
13y ago
Thanks for showing your confirmation bias. Keep asking questions you don't want to think about.
9.
▲
by
jdunck
13y ago
Because software is eating the world. Because entrepreneurship creates jobs. Because software is the new means of production. Because people different than you have problems which are different than yours. Because dog-fooding is a great way
10.
▲
by
jdunck
13y ago
That people are reading this subthread and finding common cause with this right here... Do you realize how ridiculous you are? If you would like to know what racism is and why criticism of a dominant group on the basis of race isn't in
11.
▲
by
jdunck
13y ago
I think there's some amount of aptitude, but mostly it's just applying effort over time. Keep going.
12.
▲
by
jdunck
13y ago
I mentor Ingrid through Hackbright, and she's great to work with. In general I find it really inspiring to be involved with an organization that introduces so many smart and motivated women to the field of software. Think back to the f
13.
▲
by
jdunck
13y ago
That commit was made in response to this incident. No commit process was previously documented.
14.
▲
by
jdunck
13y ago
If we're just plugging useful packages, I'd suggest these as useful and broadly applicable: * django-debug-toolbar * django-secure * django-celery * django_compressor
15.
▲
by
jdunck
13y ago
(django core feedback): Django is not perfect, and will never be. It's now a fairly large codebase, and though there are a bunch of committers, people often feel it's easier to write their own library than push things into core. S
16.
▲
by
jdunck
13y ago
django core here, some feedback on -annoying: It'd be nice if you were clear about what versions of django and python are supported. From django-annoying's feature list: * render_to - seems to be roughly equivalent to django
17.
▲
by
jdunck
13y ago
By "ID", I don't mean government-issued photo ID, necessarily - just the ability to know how a person is will do. It may be that the person is a repeat user so that the staff recognizes them, or it may be that someone else can vouch for the
18.
▲
by
jdunck
13y ago
Lava Mae is not yet operational but I think it's pretty likely that Doniece will use the scheme. If so, I'd be happy to do a follow-up with how it actually worked.
19.
▲
by
jdunck
13y ago
> Do homeless people have a single canonical name that they will use consistently? They have an identity. > Is it fair to request that they structure their day around a hashing algorithm that they don't understand? It is not fair th
20.
▲
by
jdunck
13y ago
OK, I misremembered, it's a queue, not a deque. Still: http://imgur.com/a/Yujev#0 Also kinda random since we don't use much Java here. I do like that people debugged it, though.
21.
▲
by
jdunck
13y ago
A fair number of homeless have mental conditions, but not nearly all. In any case, the hashing approach doesn't manifest as complicated: What's your name? OK, come at 10:15 on Wednesday. That's all.
22.
▲
by
jdunck
13y ago
You won't believe this, but we actually have a soda fridge here that has a deque implementation on the door with a note that cold ones will be at the back. I'll provide a pic if demanded. ;)
23.
▲
by
jdunck
13y ago
Well that is super-annoying. I'll tweak the template.
24.
▲
by
jdunck
13y ago
Author here if people have feedback.
25.
▲
Hashing for the Homeless
(causes.github.io)
13 points
by
jdunck
13y ago
|
19 comments
26.
▲
by
jdunck
13y ago
Or not sharing passwords between services.
27.
▲
by
jdunck
13y ago
Redis does OK as a queue, but not as well as rabbit. For a start, rabbit handles OOM better. It has lower per-message overhead. It has a more flexible queueing model in general so that you can use it for both work queue-y stuff and other
28.
▲
by
jdunck
13y ago
My recc after a lot of heavy use is: RabbitMQ for the queue, Redis for the result store. RabbitMQ for the result store is madness.
29.
▲
by
jdunck
13y ago
> I'd kill for a solution Would you code for one? I, too, am sorry that we don't have a thing like asset pipeline. I'm pretty sure it would be welcome...
30.
▲
by
jdunck
13y ago
Regarding 15 - if you want that behavior, you'd be better off with using your own model subclass: class ValidatingModel(Model): def save(self, *args, **kwargs): self.full_clean() super(ValidatingModel, self).save(*args,
More ›