Hacker Newsnew | past | comments | ask | show | jobs | submitlogin
What to do with the one-shot scripts (balazspocze.me)
2 points by banyek on Feb 24, 2018 | hide | past | favorite | 5 comments


If potential employers rate my skill based on one-off scripts I should probably stay away anyway.

Just add a README that the repo contains that kind of stuff.

We have a tools repo at work with this kind of random stuff. We use internal gits but if we're using public repository I would put it up there without blinking..


Exactly. I'd comb the script a bit (since it will probably share some traits with the rest of them), but other than that, don't worry.


> Yes, I know, civilized people don’t use ‘sleep’, because that is a waste of CPU

I'm not sure what language the example is in and don't really understand the script.

That being said: In most languages sleep just is a wrapper around the system call with the same name. Again for most current and common operating systems this doesn't waste CPU cycles because it just puts your thread of process in an inactive state. Other threads or processes can use the CPU during that time.

That doesn't mean calling sleep with a small argument repeatedly is a good idea because it causes two context switches per call which might be an indirect waste of CPU cycles.


Yea, you have right (https://stackoverflow.com/questions/17075788/python-is-time-...), but this was only an example.


I am really curious what is your solution?




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

Search: