Hacker Newsnew | past | comments | ask | show | jobs | submit | erkmene's commentslogin

This is an exceptionally profound observation. IMO not having a strong ego helps and if it goes right, everyone benefits from this.


I have a small nitpick with the video you shared: unfortunately that one and most others on YouTube are “talkie” CD versions which replaced the amazing MIDI music with rather uninspired symphonized CD tracks. Here’s a different longplay with the MIDI soundtrack:

https://youtu.be/iSwYY2eoKhQ


Me too! I definitely remember seeing that thank you note. Mandela Effect comes to mind of course but the memory is so vivid it’s creepy.


I haven’t seen this before. There’s also a bit (relatively) updated version which I prefer: https://youtu.be/8d4RtvMQp10


Gateway AnyKey keyboard with diagonal arrow keys.


I worked tech support for gateway way back in the day.

The reset programming for the AnyKey was a very common call, many people didn’t even know they had an AnyKey keyboard and would accidentally remap keys.


My first PC was a Gateway 2000 (in 1991). The provided Anykey keyboard was awesome. I loved its ability to record and playback macros.


I had it for a while and mapped Ctrl+Alt+P to my password + Enter. This made the Unix guy at work groan audibly when I told him. :D


Ha yes it is. And the two sets of function keys. I loved the Anykey keyboard.


I remember the old one but I've never seen that one. That's great.


What is the appeal of either of these?

For young children, what's the developmental impact?


It's a recurring vignette where two Martians go around-- often carrying their own guidebook-- and mis-categorize Earth things:

https://www.youtube.com/watch?v=KTc3PsW5ghQ

The one with Bob's computer is a bit less clear. It seems the orange Martian falls in love with an Apple II(e?) and beams back in to bring it a rose.

> For young children, what's the developmental impact?

Kids get to practice talking about and describing what's silly about the behavior they see in the vignette. In the process, children usually end up properly categorizing various Earth objects, gaining valuable experience points which they will later exchange for increased attack and magic-conjuring abilities.

Additionally, the kids learn coping strategies to deal with the idea that creatures can teleport without warning to any location in the show and are never, ever noticed by any of the characters on the show. IIRC these characters scared the ever-living bejeezus out of a lot of kids.

Most important HN edit I've ever made: correct "everlasting bejeezus" to "ever-living bejeezus"


My little sister was TERRIFIED of them. Thanks for sharing this, she will be interested to know that she was not alone!


It's a harmless bit. The joke (if I remember correctly) is that these two creatures are aliens that pop up and don't know what the thing in front of them is. For children (and adults) it is silly because, of course, we know what a computer is – we've seen one dozens of hundreds of times! Compound that confusion with a silly way of speaking to reaffirm that they're not from earth and it makes you giggle.

As for the developmental impact, I think it's quite positive. Sesame Street has been and continues to be a great source of knowledge and useful lessons & morals for children. Adding in some silly situations like this helps keep them engaged and develop their sense of humor.


It doesn't show the year; but assuming this was about 1980, home computers were only just starting to appear - many kids wouldn't have seen them; and you've just told taught them computers do what you tell them to do, and not by themselves and also told them what the flashing thing is. For Sesame street that's more than enough for a little sketch. (And that the computer guy fixes everything....)


The machine depicted in the clip is an Apple IIe, which first came out in 1983. But this might not be a 1983 model, because the monitor depicted with the machine is the ColorMonitor IIe, which came out in 1985. Because it's a computer used on a set for a TV show, it's possibly a loan machine, perhaps from Apple themselves, so it was likely supplied as a new computer + new monitor combination. So I'd hazard a guess and say this setup is from 1985 or later.

If we take my previous assumption further, the Platinum IIe was released in 1987, which came with a numerical keypad built in, and looks distinctly different from the IIe. Even though this Youtube clip is 240p, you can distinctly see that there is no "divide" in the keyboard, so this is definitely not a Platinum IIe.

I would say this machine was manufactured between 1985 and 1987.


Introducing children to the concept of computers.

Keep in mind that Sesame Street basically pioneered children's educational programming.


watched these as a kid, and was highly impacted for some reason by the "yep" aliens over much other sesame street content I believe because they were sort of dropped into a random situation and had to suss out how everything worked.


It doesn’t seem to exactly fit your description but Python Challenge (http://www.pythonchallenge.com/) has been incredibly fun and rewarding for me back in the day.

It’s a series of riddles that are meant to be solved using the python language. It’s really old now but I’m hoping that some library specific riddles are still relevant. Apart from those few, most of them should be language agnostic as well.

I’ve always wanted to create a similar thing to replicate the experience in JS but never gotten around to it.

Edit: oh also completely agree with most of the recommendations here. Particularly with TIS-100, Factorio and Human Resource Machine.


Okay, I've been nerd-sniped, there goes my Sunday night.

Counter-snipe: https://challenge.synacor.com


I can second the Synacor challenge. After writing the VM and completing the challenge, I ended up writing my own assembler and small compiler for it. Very fun.


Jabra Elite 65t does that and they are absolutely amazing.


React-Redux complements React in some great ways. It has been my state storage of choice from the beginning. IMO, it would be better to start react with it rather than changing habits later. The go-to tutorial series is here: https://egghead.io/courses/getting-started-with-redux

And definitely use typescript if you value good code quality (and your sanity). The advanced type system and compile time type checking is really a boon to the JS ecosystem. https://www.typescriptlang.org

You'd like to get comfortable with the latest tools that compile, transpile and pack the code for you (you might be familiar with that already.) Here might be a good start: https://medium.com/@fay_jai/getting-started-with-reactjs-typ...

Have fun!


Typescript works fine even with all the libs written in js/es6 from npm ?


Most popular libraries these days either include their own typescript definitions, or the definitions are available vie @types (it is as easy as npm install --save-dev @types/library-name)

If on the off chance that no typings are available, you just write a simple namespace declaration (usually a one liner) and start using the library right away, albeit without smart code sensing / completion. See https://stackoverflow.com/questions/22842389/how-to-import-a...


It may be obvious for electric and electronics engineers, but thank you for introducing me to this concept. Through Wikipedia, I found some very interesting applications. 1-bit camera ( http://dsp.rice.edu/cscamera ) particularly.


It is not at all obvious how compressive sensing works! Even if you have a background in signal processing or linear algebra. Most people approach linear algebra to solve over-determined systems of equations, not under-determined systems. But it turns out you can validly pose the problem if you have some a priori knowledge of the structure of your signal.

Actually, the camera uses a single pixel, not a single bit. The measurements from pixel are from a 16-bit ADC so we get pretty good grayscale information. There are some single bit compressive sensing implementations, often used for radar where the SNR is low.

There's even a startup that is building commercial implementations of single pixel cameras. We work with the Rice researchers you linked to. http://www.inviewcorp.com/


The fact that this is accomplished in a language where whitespace really matters impressed me the most.


Whitespace can matter, but ; counts as a newline and you can have any whitespace inside an expression that you want. Typically you'll write something like:

   some_function( with, lots,
                  of args )
but you can also use that flexibility to make your source code look like a badass fucking fractal too.


> badass fucking fractal

Ok, I haven't actually logged in for over 12 months and kept to pure occasional lurking, but you made me do it just to vote up your JoCo reference.

Look what you've done.


Thanks! That song is up there among my favorites, but it does make me sad every time I listen to it. "Mandelbrot's in heaven" indeed...


Welcome back. Hope to see you around more!


two incredibly useful tools that will make finding a good .com name less of a hassle:

http://www.wordoids.com

http://www.domize.com

be sure to double check wordoids' results, as it sometimes report taken domains as free.

good luck!


wordoids.com appears to be a parked seo page. Don't go there.


He must have meant http://wordoid.com/

Of course, here's a perfect example of a novelty-name recollection failure.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: