Location: TX, USA Remote: Yes Willing to relocate: Yes, to MX, CL, or AR. Technologies: Linux, C++, Python, TCP/IP, 3G/4G networks, PostgreSQL Résumé/CV: Not published to the world. I will provide to inquirers. Email:…
The doomsday title reminded me of the world's last C bug: while (1) { status = GetRadarInfo(); if (status = 1) LaunchMissiles(); }
The GCC Atomic Builtins mentioned in the article are not specific to Unix. They are compiler constructs, and depend on specific architecture hardware support. All x86 CPUs have such support for some years now. So these…
> The world is not run by mustache twirling villains who get sustenance from the tears of "the people." Actually, yes, about half of it is. Cuba, China, North Korea, Viet Nam, almost all the Middle East, two thirds of…
> I'm not saying github will be around forever, but I highly doubt they'll make the same mistake sourceforge is making now. Github could be sold, just like Sourceforge was sold, and the new owners could behave very…
Every SoC has a different kernel, heavily patched, with drivers specific to the SoC. The SoC vendor has an army of paid programmers developing this software for every SoC they make. These Soc vendors have to start…
> That's not how the internet works. Nobody PUSHES data. People PULL data. There's more to "the Internet" than just "the WWW". While HTTP could be considered a "pull data" protocol, there's plenty of application…
I find par to be very useful. http://www.nicemice.net/par/ Works great for re-wrapping code comments too. It's been packaged in Debian for ages.
> In general you should prefer crypto constructions which are a result of global competitions. For example AES and SHA3. The judges who chose AES and SHA-3 as the "winners" of the global competitions are the NSA. > You…
My for-real-not-humor implementation: def fizzbuzz(i, n): while i <= n: yield i%15 and (i%5 and (i%3 and i or 'fizz') or 'buzz') or 'fizzbuzz' i += 1 for x in fizzbuzz(1, 100): print x
See David Wheeler's page, The Most Important Software Innovations <http://www.dwheeler.com/innovation/innovation.html>. The page has been online and refined for 12 years. It lists things such as the Stack,…
It's not surprising, and it is not peculiar to FNV-1a. Most of these hashes will exhibit this same behavior. Since the hash iterates over the characters in the string, once you find two colliding strings S and T, if you…
Samsung's customers are the carriers. The carrier asks Samsung for specific features or changes in the firmware build for the phones they buy from Samsung. Samsung satisfies their customer by giving them what they want.…
> most [email] users have no idea what HTML even is. For most users email is something you do in a web browser. They've never used it any other way.
> Django ... it is wrong to expect a CMS to be built using them. Django was originally developed to build a CMS, for the Lawrence Journal-World
wow, this page sets 20 cookies, loads 16 external javascripts, and has a 280kB image file in the banner. Just to deliver 7 paragraphs of text.
I think part of the problem is that many, if not most people using email don't have a good understanding of what email is and is not. Email is not a reliable messaging system. It gives enough of an appearance of…
Matt Dillon, Linus Torvalds, Theo De Raadt, Jony Ives, Zed Shaw, John Gruber One of these guys is not like the others.
So what the researchers did, apparently, was to gather all the RSA public keys they could find (6 million or so) and then calculate the gcds of all pairs of keys. Apparently not. The number of unique pairings among 6…
> Google has mentioned they're working on the content farm problem. The irony is that is Google's own AdSense program is the incentive for the creation of airburger web sites, which otherwise have no reason to exist.
Someone here derided the idea of declining to do business with people you don't trust: "...modern financial and legal infra-structure is designed so that we can make business with people we don't trust." Since the…
I read > ... if you want a subdomain of ww.com... and naturally understood "subdomain" to mean "subdomain". Perhaps what you meant to write was "... if you want a hostname in ww.com..." ww.com is a nice 2nd level…
The stated offer is for a subdomain of ww.com. but all the transactions here appear to be just for A or CNAME records in the ww.com. zone. Are you offering a subdomain with delegated DNS? If so, I would be interested.
I just block that entire Microsoft subnet at the firewall (using pf): microsoft = "65.52.0.0/14" block in on $ext_if proto tcp from $microsoft to any port { http, https }
Location: TX, USA Remote: Yes Willing to relocate: Yes, to MX, CL, or AR. Technologies: Linux, C++, Python, TCP/IP, 3G/4G networks, PostgreSQL Résumé/CV: Not published to the world. I will provide to inquirers. Email:…
The doomsday title reminded me of the world's last C bug: while (1) { status = GetRadarInfo(); if (status = 1) LaunchMissiles(); }
The GCC Atomic Builtins mentioned in the article are not specific to Unix. They are compiler constructs, and depend on specific architecture hardware support. All x86 CPUs have such support for some years now. So these…
> The world is not run by mustache twirling villains who get sustenance from the tears of "the people." Actually, yes, about half of it is. Cuba, China, North Korea, Viet Nam, almost all the Middle East, two thirds of…
> I'm not saying github will be around forever, but I highly doubt they'll make the same mistake sourceforge is making now. Github could be sold, just like Sourceforge was sold, and the new owners could behave very…
Every SoC has a different kernel, heavily patched, with drivers specific to the SoC. The SoC vendor has an army of paid programmers developing this software for every SoC they make. These Soc vendors have to start…
> That's not how the internet works. Nobody PUSHES data. People PULL data. There's more to "the Internet" than just "the WWW". While HTTP could be considered a "pull data" protocol, there's plenty of application…
I find par to be very useful. http://www.nicemice.net/par/ Works great for re-wrapping code comments too. It's been packaged in Debian for ages.
> In general you should prefer crypto constructions which are a result of global competitions. For example AES and SHA3. The judges who chose AES and SHA-3 as the "winners" of the global competitions are the NSA. > You…
My for-real-not-humor implementation: def fizzbuzz(i, n): while i <= n: yield i%15 and (i%5 and (i%3 and i or 'fizz') or 'buzz') or 'fizzbuzz' i += 1 for x in fizzbuzz(1, 100): print x
See David Wheeler's page, The Most Important Software Innovations <http://www.dwheeler.com/innovation/innovation.html>. The page has been online and refined for 12 years. It lists things such as the Stack,…
It's not surprising, and it is not peculiar to FNV-1a. Most of these hashes will exhibit this same behavior. Since the hash iterates over the characters in the string, once you find two colliding strings S and T, if you…
Samsung's customers are the carriers. The carrier asks Samsung for specific features or changes in the firmware build for the phones they buy from Samsung. Samsung satisfies their customer by giving them what they want.…
> most [email] users have no idea what HTML even is. For most users email is something you do in a web browser. They've never used it any other way.
> Django ... it is wrong to expect a CMS to be built using them. Django was originally developed to build a CMS, for the Lawrence Journal-World
wow, this page sets 20 cookies, loads 16 external javascripts, and has a 280kB image file in the banner. Just to deliver 7 paragraphs of text.
I think part of the problem is that many, if not most people using email don't have a good understanding of what email is and is not. Email is not a reliable messaging system. It gives enough of an appearance of…
Matt Dillon, Linus Torvalds, Theo De Raadt, Jony Ives, Zed Shaw, John Gruber One of these guys is not like the others.
So what the researchers did, apparently, was to gather all the RSA public keys they could find (6 million or so) and then calculate the gcds of all pairs of keys. Apparently not. The number of unique pairings among 6…
> Google has mentioned they're working on the content farm problem. The irony is that is Google's own AdSense program is the incentive for the creation of airburger web sites, which otherwise have no reason to exist.
Someone here derided the idea of declining to do business with people you don't trust: "...modern financial and legal infra-structure is designed so that we can make business with people we don't trust." Since the…
I read > ... if you want a subdomain of ww.com... and naturally understood "subdomain" to mean "subdomain". Perhaps what you meant to write was "... if you want a hostname in ww.com..." ww.com is a nice 2nd level…
The stated offer is for a subdomain of ww.com. but all the transactions here appear to be just for A or CNAME records in the ww.com. zone. Are you offering a subdomain with delegated DNS? If so, I would be interested.
I just block that entire Microsoft subnet at the firewall (using pf): microsoft = "65.52.0.0/14" block in on $ext_if proto tcp from $microsoft to any port { http, https }