Live data from Hacker News

Show HN: Print a WiFi Login Card

wificard.io

171–180 of 347 posts

Re: Show HN: Print a WiFi Login Card

#171

Love the source code, so clean. First time I see a makefile used like that with Docker and front commands.

I like to use make as it's available everywhere. I use Makefiles with podman to create images, containers, pods, start, stop them and display logs. With the alias 'm' for make I can execute complex actions with very few keystrokes. Also variables in Makefiles make it easy to updates labels, volumes, etc. But I would not use make for very complex projects.

Re: Show HN: Print a WiFi Login Card

#172
post #34

qrencode -t utf8 'WIFI:T:WPA;S:network;P:password;;'

wow ok, so you expect me to have a computer (?!) with: - a keyboard? - access to a terminal??!?!?! - ability to install qrencode??? - knowledge of copy and paste!?!?! - some way to edit the command you posted to my specific username and password?! franky this is ridiculous when i could just make a repo that uses make, docker, yarn, npx, nginx, react, and jest /s

And access to Linux. Which most of non-tech people are not going to have.

Re: Show HN: Print a WiFi Login Card

#173
post #76

Earlier quoted context omitted.

A lot of developers only know the new, needlessly complicated ways of doing things. I have met professional software engineers who have never heard of shared web hosting, for example. It's also surprisingly possible to learn enough about programming to get a job without understanding basic computing concepts. I've met professional software engineers, with multiple years of experience and promotions under their belt,…

I thought that was crazy, but reflecting over my CS education they haven’t gone over the difference between disk space and RAM. I suppose they figure everyone already knows?

It could be meant not in a way of "this is ram vs this is disk", but "we have a 1tb dataset, what kind of a server do we need?", and the person not knowing enough about databases to think they need 1tb of ram to be able to run it.

Re: Show HN: Print a WiFi Login Card

#179
post #170
post #105

Earlier quoted context omitted.

To be fair it’s fairly easy to check that it didn’t send any data over the wire

> To be fair it’s fairly easy to check that it didn’t send any data over the wire ... after the fact ... ... for a user of the web app who watches the network panel from their browser's developer tools

You just send false info first.

Re: Show HN: Print a WiFi Login Card

#180
post #67

Asking as a person who understands the fundamentals of all of the technologies involved but is horrified by much of what goes on in the minds of today's web developers and designers, what motivates the decision to make this repo use make, docker, yarn, npx, nginx, react, and jest rather than a bit of static HTML and css and something like qrjs2.js or VanillaQR.js with a simple canvas or datauri update in onInput?

Answering as the author who also understands the fundamentals of all of the technologies involved and questions much of what goes on in the minds of today's web developers and designers-- I use Make as the standard way to interact with every repo I own. This allows me to type `make build` instead of `$some-language-specific-command-I-forget-in-2-weeks`. I use Docker for distributing every app I build. If the app is a…

make all and make run would be more standard, no?
Post reply on HN