I'm a fucking webmaster (2016)
141–150 of 229 posts
Re: I'm a fucking webmaster (2016)
#142The “webmaster” designation probably came from the “webmaster@domain” functional email addresses, which in turn were modeled after the existing “postmaster@domain” convention for contacting the email admin(s) of a domain. Does anyone know if there were other *masters?
Re: I'm a fucking webmaster (2016)
#143Earlier quoted context omitted.
Testing whether a number is odd is done in 3 characters: n % 2 if you don't like the % you can also do it using a bitwise AND, this also handles negative numbers: n & 1 this is equal to 1 if the number is odd, 0 if it is even, and will be converted to true or false in a if statement. You don't need a library for this. And you should not need a library to handle string conversions, you should be aware of the types you…
You don't have to tell me how to calculate if a number is odd or even, that's not my point. The thing is, n % 2, i need to do mental gymnastics do comprehend whats going on. Even if your function is just one line, I rather read isOdd or isEven instead of n % 1 of n % 2, remembering when 1 or 2 stand for even or odd is something I could have trouble with.
n % 2 or n & 1 is something you likely get used to if you encounter it frequently enough, and at least something you should recognize after the first time you encounter it. And most people should have encountered it at least once because that's one of the things we learn to do when learning programming (but I guess Ten Thousand [1] can apply). If you don't encounter it enough to be used to it, then the rare gymnastic should not be a big issue neither. You need to be able to recognize it because it's in the wild.
If having an isOdd or isEven function around makes the code more readable for you anyway it's fine, especially if the function can be inlined, but pulling an external dependency for this is overkill.
Re: I'm a fucking webmaster (2016)
#144Earlier quoted context omitted.
This sort of opaqueness: Many people hail it as the next big thing since sliced bread, but when you actually spend the effort digging in you realize its barely good for anything except money laundering and tax evasion. Give me some bitcoin and i would not know what to do with them except changing them back into money.
Cryptocurrency is also good for evading national capital controls. Wealthy Chinese can purchase mining hardware and electricity using the local "funny money" currency, generate coins, and then sell those in another country for real money.
Sounds like tax evasion/money laundering with extra steps to me.
You could call it justified tax evasion, maybe. If I'm being generous.
Re: I'm a fucking webmaster (2016)
#145Does anyone remember the early anime community of those days, by chance? It was such a vibrant community of builders and "webmasters".
Re: I'm a fucking webmaster (2016)
#146Earlier quoted context omitted.
This sort of opaqueness: Many people hail it as the next big thing since sliced bread, but when you actually spend the effort digging in you realize its barely good for anything except money laundering and tax evasion. Give me some bitcoin and i would not know what to do with them except changing them back into money.
> its barely good for anything except money laundering and tax evasion You can’t think of any situation where you would want to share access to and control of data with multiple untrusted third parties, where you would need to guarantee not only that data modifications are only executed in an authorized fashion, but also that no previous modifications have been reversed? The list of use cases for that capability is n…
Every single concrete example I can think of personally would work better with a normal database and some kind of Auth scheme which does not involve Blockchain, but maybe I'm just thinking of the wrong usecases?
Re: I'm a fucking webmaster (2016)
#147Earlier quoted context omitted.
Cryptocurrency is also good for evading national capital controls. Wealthy Chinese can purchase mining hardware and electricity using the local "funny money" currency, generate coins, and then sell those in another country for real money.
So you want to avoid fiscal regulations of a oppressive regime? Sounds like tax evasion/money laundering with extra steps to me. You could call it justified tax evasion, maybe. If I'm being generous.
Re: I'm a fucking webmaster (2016)
#148Back in the early 2000's, I taught "computers" to a bunch of kids in DC. I first started off with how a computer work; IO, CPU, storage and their eyes glazed over. I quickly ditched that topic and went right to building a web page. Taught them a few HTML tags and they instantly became "webmasters". They were so thrilled. They could create blinking text, could make all the fonts pink. All just by moving around some si…
I can't answer that for a 13 year old, but I can for an 8 year old. Minecraft. The elaborate stuff my daughter built at that age is way more gratifying than anything I could have built as an 8 year old.
Re: I'm a fucking webmaster (2016)
#149Earlier quoted context omitted.
You can still just use HTML.
This does indeed work fine. The major problem is still finding somewhere to host it, and incurring the still non-trivial risks thereto, since among the many things students want to do with free web space, hosting warez and other things that will get you in trouble quickly is still pretty far up the list. Plus someone has to pay for a domain name or something. If you can get a modern text editor that can use SSH or so…
Re: I'm a fucking webmaster (2016)
#150Earlier quoted context omitted.
Testing whether a number is odd is done in 3 characters: n % 2 if you don't like the % you can also do it using a bitwise AND, this also handles negative numbers: n & 1 this is equal to 1 if the number is odd, 0 if it is even, and will be converted to true or false in a if statement. You don't need a library for this. And you should not need a library to handle string conversions, you should be aware of the types you…
You don't have to tell me how to calculate if a number is odd or even, that's not my point. The thing is, n % 2, i need to do mental gymnastics do comprehend whats going on. Even if your function is just one line, I rather read isOdd or isEven instead of n % 1 of n % 2, remembering when 1 or 2 stand for even or odd is something I could have trouble with.