Classic. I haven’t seen that one in about 20 years. 💟 FreeBSD
Sinthesis
- 0 Posts
- 5 Comments
Joined 1 year ago
Cake day: December 10th, 2024
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
Sinthesis@lemmy.todayto
linuxmemes@lemmy.world•Probably a good idea to go see how much storage will be necessary...English
12·4 months agoYou only need 20 watts of power. One of those dinky fold up solar panels would work. Add a USB power brick for cloudy days.
Sinthesis@lemmy.todayto
Programmer Humor@programming.dev•I'm new to using Ruby and this tickled me pinkEnglish
2·6 months agoYou probably use it everyday and didn’t know it https://github.blog/engineering/architecture-optimization/building-github-with-ruby-and-rails/
Sinthesis@lemmy.todayto
Programmer Humor@programming.dev•Python needs an actual default functionEnglish
12·8 months agoI use if__name__main__ often when working with AWS Lambda, but I also want to run it locally. Lambda wants to call a function with the params
eventandcontext. So I would do something like this:def handler(event, context): things return { 'statusCode': 200, 'body': 'Hello from Lambda!' } if __name__ == '__main__': event = {} context = {} response = handler(event, context) print(response)
That’s where it shot itself in the foot.
s/UNIX/Linux/g
https://www.cyberciti.biz/humour/terry-lambert-quote-it-is-not-unixs-job-to-stop-you/