Ask HN: What do you do with your Raspberry Pi?
841–850 of 1001 posts
Re: Ask HN: What do you do with your Raspberry Pi?
#842Re: Ask HN: What do you do with your Raspberry Pi?
#843Re: Ask HN: What do you do with your Raspberry Pi?
#844There's a bus station across from my studio / coworking space. I can see people waiting for the bus and doing either: 1) staring into the void 2) looking at their watches 3) desperately glancing in the direction where the bus is coming from. I figured that it'd be nice to let people know when the bus is supposed to be there. So, I installed a 28" display on a monitor stand, installed the stand on my window frame, tur…
I live nearby and often use this when catching the 55! Sort of surreal to start reading your post and immediately recognize it's something from just a block away!
Re: Ask HN: What do you do with your Raspberry Pi?
#845Re: Ask HN: What do you do with your Raspberry Pi?
#846Earlier quoted context omitted.
I could actually use exactly that. Do you have a blog outlining how you did it, or the code on github by any chance?
No sadly not. I'd love to write about it but my English is just not good enough to write a compelling story. Writing it in German and then having it translated is always a bit of a hassle. But I may consider it. At the moment I have an offer of the door drive manufacturer for doing a "home story" about the solution. If that will happen, it will definitely be released in English. I will open source everything once I'm…
Reads like a monty python sketch.
Re: Ask HN: What do you do with your Raspberry Pi?
#847I built a very simple circuit to listen to 5V pin of HDMI and I hid RPi and the circuit under the desk of a colleague after work and turned off video output of RPi. Colleague's laptop -HDMI> RPi -HDMI> external display. when the colleague comes to work and turn on the laptop, my RPi turned on its video output and external display showed the website I made for the occasion.
Re: Ask HN: What do you do with your Raspberry Pi?
#848Every now and then we play "Daddy's games", so he has NES megadrive, and MAME (PacMan mainly). As he starts to master those, I'll add the next generation to it. If we've played some of the same games, hopefully it gives us some form of common framework, and him an interest in how he could code something similar i.e. a gateway in to computers. If he decides he doesn't like it, that's fine too.
So far it's goign well - we set off on the adventure 6 months ago when he was 4. I'll also get another microUSB card and try trhe same with my daughter when she's a bit older (currently she's 2).
Re: Ask HN: What do you do with your Raspberry Pi?
#849A device that waits for the SSID of my Olympus WiFi-enabled camera to show up and then sync all new photos: https://github.com/gvalkov/olympus-photosync-server https://github.com/gvalkov/olympus-photosync
Re: Ask HN: What do you do with your Raspberry Pi?
#850Earlier quoted context omitted.
If you use MITMProxy or Charles you can easily intercept the traffic on 99% of all iPhone/Android apps (bit harder if pinned-sertificate). These API’s are often stable because a lot of users don’t update their apps that often.
For newer android apps this is no longer true. By default, apps only trust system CA's. User added System CA's are not trusted by apps. I believe only the browser uses the user added CA's.
For MITMProxy you can visit http://mimt.it when the setup is running.
A bit more difficult with “pinned-setificate” where you have to:
1) Decompile the app (easy if you search for the online APK-download and APK-decompile tools)
2) Move the certificate out of the APK and use it for the traffic between MITMProxy/Charles and the server
3) Replace the certificate in the APK with one generated for MITMProxy/Charles, or just delete it if that works for the app (most likely not)
4) Re-compile the APK and install on your device
5) Run MITMProxy/Charles as before, just with some parameters to load the “pinned-certificate”
(There is also a lot of guides for this. Maybe not for pinned-certificate.)