HackerTrans
TopNewTrendsCommentsPastAskShowJobs

code4money

no profile record

Submissions

The Strange World of Quine Algorithms

youtube.com
2 points·by code4money·4 года назад·0 comments

How to Write a Best-Selling Technical Book

youtube.com
3 points·by code4money·5 лет назад·0 comments

comments

code4money
·4 года назад·discuss
Great video, here are the steps to add custom content to a game boy cartridge based off what the author did (might be an easier way):

1. Map the pins on the cartridge and create custom hardware to rip the game from ROM over USB

2. Disassemble the ROM into gbZ80 assembly code

3. Add custom assembly code to ROM, making use of the weird memory bank allocation rules for the GBA.

4. Compile and flash back onto the GBA cartridge

What’s most interesting to me is the section on space saving hacks used in the Pokémon yellow code, for example each Pokémon image is only 4 colors: white black and two shades of grey. The game has a file to map the greys to other colors and applies the coloration in real time at render instead of storing the colors in the image file.
code4money
·5 лет назад·discuss
Not recognized in the USA as a DSM disorder. Probably because insurance companies don’t want to pay for treatment for that many affected.
code4money
·5 лет назад·discuss
summary: train wheels use the physical shape of the wheel to turn, and the stopper is only for emergencies. very cool!
code4money
·5 лет назад·discuss
"Compared with a baseline of 1-foot separation with no masks employed, particle count was reduced by 84% at 3 feet of separation and 97% at 6 feet. A modest decrease in particle count was observed when only the receiver was masked. The most substantial exposure reduction occurred when the aerosol source was masked (or both parties were masked). When both the source and target were masked, particle count was reduced by more than 99.5% of baseline, regardless of separation distance or which type of mask was employed."

https://www.sciencedirect.com/science/article/abs/pii/S00256...
code4money
·5 лет назад·discuss
Releasing more energy is good, but is it enough of a difference that the delta can be captured (assuming imperfect capture process) + is it able to offset the cost of the expensive laser setup (maintenance)?
code4money
·5 лет назад·discuss
What happens when a package gets lost that contains an animal?
code4money
·5 лет назад·discuss
Will bypass a few validations if server accepts as param from client:

Number(Infinity) -> Infinity

Infinity < 5000 -> will return false even though Infinity is acting as a 0 here