Hopefully the redesign won't give us light gray text on a white background, which seems to the rage these days. :) I had zero problems reading the print version.
To me, it seems to be the same as the Norvig algorithm, except that only deletes are considered. Which allows them to pre-calculate misspellings with modest storage cost. Am I mistaken?
How long ago did you buy your house? If a person bought the house today, would they still pay only $640/mo?
Been in a few orgs. I now think "no rewrites" is a good policy for all but a few orgs. Few orgs have the (1) business luxury (time and money) or, (2) the caliber of people and, (3) team motivation (few teams people even…
I like functions that return a value to be written in the guard-clause style. [In C++, that's probably better for efficiency since the compiler optimizer doesn't have to remove temporaries by converting the code to…
Don't do this. The whole thing gave off a bad smell on first reading so I would never have done this. Thank you vinkelhake for nailing the the real problem (exceptions) and bothering to check whether the stack overhead…
How? How can DRM force me to display the iframe containing an ad.
No story here. No budget provider I've looked at says they will help you withstand a DDoS attack. [Thanks to the commenter who says OVH does, I will look into them closely.] I did this due diligence for a 10-user app.…
Multiple file attachments in entries. I think 1.x only supports one attachment per entry.
Crockford's "Javascript: the Good Parts" is a very good book.
This is probably what the parent meant: >>> 'truthy' if None else 'falsy' 'falsy' >>> 'truthy' if False else 'falsy' 'falsy' >>> 'truthy' if 0 else 'falsy' 'falsy'
Yeah, I know this is just an Internet forum so who cares what's said right? But ... But Ask the Korean made an excellent point about culturalism: "The term "culturalism" is my coinage ... is the unwarranted impulse to…
OK, I see why a downvoter downvoted it. I meant to write: "Yep, I know why the Mac's text looks blurrier" i.e., I meant to agree with 'coldtea' and add to the discussion. The way I've written it now makes it sound like…
Yep, I know the Mac's text looks blurrier: Link for anybody else interested: http://www.codinghorror.com/blog/2007/06/font-rendering-resp... (linked articles are good too)
> what more do you need? (don't say photoshop :@) In my case it's Lightroom. :) Longtime Ubuntu user here. Bought a Mac mini as my desktop replacement on the off-chance that I might write an iOS app. I'm actually…
Sort of off-topic question. :) Is it still the case that updates from Apple will randomly break a Hackintosh? It used to be the case a few years ago. Has it gotten easier to update a Hackintosh these days?
Thanks for the response. I get the A+ site when I directly visit via IP. I went through the delta between the reports with a fine-toothed comb and discovered that SNI wasn't the problem. It was a biggie: looks like HSTS…
I host two sites on the same IP. The first site declared in my nginx conf file got A+. The second one got A with a note that it doesn't work in browsers without SNI. Identical SSL configurations otherwise. Is this…
> everything-is-string semantics make programming an exercise in quoting. Is your code filled with literal strings? Otherwise why your code be "an exercise in quoting"? re Python: Remember that EDA tools aren't…
This is a relatively obscure feature of Tcl, but it has some great ideas on how to safely execute user-supplied scripts in a sandbox. Pretty cool. http://www.tcl.tk/man/tcl8.5/TclCmd/interp.htm
Base64 can maybe result in strings unsuitable for pasting as-is into bad HTTP servers' URLs (the default character set include '/' and '+'). Using only the uppercase letters lets them worry less about whether the string…
Fair enough. I now see that speed limits are set differently in different parts of the US. My driving has been mostly in the western and southwestern states.
> It causes the speed limit on a majority of roads to be set to a level that is well below a safe speed to drive, instead of setting reasonable limits in most places and then carving out exceptions in places that are…
Interesting. Even compared to the hallowed Thinkpad?
"Practical Cryptography" is a good book.
Hopefully the redesign won't give us light gray text on a white background, which seems to the rage these days. :) I had zero problems reading the print version.
To me, it seems to be the same as the Norvig algorithm, except that only deletes are considered. Which allows them to pre-calculate misspellings with modest storage cost. Am I mistaken?
How long ago did you buy your house? If a person bought the house today, would they still pay only $640/mo?
Been in a few orgs. I now think "no rewrites" is a good policy for all but a few orgs. Few orgs have the (1) business luxury (time and money) or, (2) the caliber of people and, (3) team motivation (few teams people even…
I like functions that return a value to be written in the guard-clause style. [In C++, that's probably better for efficiency since the compiler optimizer doesn't have to remove temporaries by converting the code to…
Don't do this. The whole thing gave off a bad smell on first reading so I would never have done this. Thank you vinkelhake for nailing the the real problem (exceptions) and bothering to check whether the stack overhead…
How? How can DRM force me to display the iframe containing an ad.
No story here. No budget provider I've looked at says they will help you withstand a DDoS attack. [Thanks to the commenter who says OVH does, I will look into them closely.] I did this due diligence for a 10-user app.…
Multiple file attachments in entries. I think 1.x only supports one attachment per entry.
Crockford's "Javascript: the Good Parts" is a very good book.
This is probably what the parent meant: >>> 'truthy' if None else 'falsy' 'falsy' >>> 'truthy' if False else 'falsy' 'falsy' >>> 'truthy' if 0 else 'falsy' 'falsy'
Yeah, I know this is just an Internet forum so who cares what's said right? But ... But Ask the Korean made an excellent point about culturalism: "The term "culturalism" is my coinage ... is the unwarranted impulse to…
OK, I see why a downvoter downvoted it. I meant to write: "Yep, I know why the Mac's text looks blurrier" i.e., I meant to agree with 'coldtea' and add to the discussion. The way I've written it now makes it sound like…
Yep, I know the Mac's text looks blurrier: Link for anybody else interested: http://www.codinghorror.com/blog/2007/06/font-rendering-resp... (linked articles are good too)
> what more do you need? (don't say photoshop :@) In my case it's Lightroom. :) Longtime Ubuntu user here. Bought a Mac mini as my desktop replacement on the off-chance that I might write an iOS app. I'm actually…
Sort of off-topic question. :) Is it still the case that updates from Apple will randomly break a Hackintosh? It used to be the case a few years ago. Has it gotten easier to update a Hackintosh these days?
Thanks for the response. I get the A+ site when I directly visit via IP. I went through the delta between the reports with a fine-toothed comb and discovered that SNI wasn't the problem. It was a biggie: looks like HSTS…
I host two sites on the same IP. The first site declared in my nginx conf file got A+. The second one got A with a note that it doesn't work in browsers without SNI. Identical SSL configurations otherwise. Is this…
> everything-is-string semantics make programming an exercise in quoting. Is your code filled with literal strings? Otherwise why your code be "an exercise in quoting"? re Python: Remember that EDA tools aren't…
This is a relatively obscure feature of Tcl, but it has some great ideas on how to safely execute user-supplied scripts in a sandbox. Pretty cool. http://www.tcl.tk/man/tcl8.5/TclCmd/interp.htm
Base64 can maybe result in strings unsuitable for pasting as-is into bad HTTP servers' URLs (the default character set include '/' and '+'). Using only the uppercase letters lets them worry less about whether the string…
Fair enough. I now see that speed limits are set differently in different parts of the US. My driving has been mostly in the western and southwestern states.
> It causes the speed limit on a majority of roads to be set to a level that is well below a safe speed to drive, instead of setting reasonable limits in most places and then carving out exceptions in places that are…
Interesting. Even compared to the hallowed Thinkpad?
"Practical Cryptography" is a good book.