One person like that
1 Shares
Learn Clojure - Projects with Leiningen https://youtu.be/FLqJNdAMVY8
#Clojure #Programming #computers #Learn #Tutorial #Code #Coding #leiningen
Learn Clojure - Projects with Leiningen https://youtu.be/FLqJNdAMVY8
#Clojure #Programming #computers #Learn #Tutorial #Code #Coding #leiningen
Learn Clojure – Testing
#Programming #Clojure #Software #Engineering #Programming #Code #Coding #Tutorial #Learn
Hey everyone, I’m #newhere. I’m interested in #coding, #computers, #gaming, #guitar, and #highschool.
Learn Clojure – Extend Protocol https://youtu.be/UMFpLWjpC-I
#Clojure #Programming #Computers #Software #Code #Coding #Learn #Tutorial
Learn Clojure – Protocol https://youtu.be/iRGHsVHNlx0
#Clojure #Programming #Computers #Software #Code #Coding #Learn #Tutorial
source: https://shiftmag.dev/unhappy-developers-stack-overflow-survey-3896/
According to the #Workplace Satisfaction Survey, 80% of professional programmers are unhappy. One in three respondents actively hates their #job, while almost half survive in survival mode. This leaves only 20% of those who claim to be somewhat happy. Although programmers are well-paid and often able to work remotely, many are still dissatisfied. Why is that so?
#economy #development #software #program #news #survey #system #technology #ai #coder
Freshers should not hesitate to take jobs that pay ₹55+ LPA. IT companies do make high profits & they desperately need talent.
#India #IT #InformationTechnologyIndustry #InformationTechnology #Programming #Coding #Software
Packaging Clojure app for Mac https://youtu.be/N0pxjHgNUxs
#Clojure #Programming #Coding #Software #Mac #Apple
Coding brain is so different from talking brain, just a meeting is enough to mess things up. Talkers will never understand us.
#Programming #Coding #Software #ProjectManagement #Standup #Scrum #Agile
Interessant! Aber unbedingt auf min. 1.25x Geschwindigkeit hören, die Erklärfrau spricht sehr langsam.
https://media.ccc.de/v/37c3-57974-klnge-coden-eine-einfhrung-in-supercollider
#supercollider #coding #musik #synthesizer
In-Depth #Analysis of July 2023 #Exploit Chain Featuring #CVE-2023-36884 and #CVE-2023-36584
https://unit42.paloaltonetworks.com/new-cve-2023-36584-discovered-in-attack-chain-used-by-russian-apt/
Why should you care?
* Get a peek into #malware reverse engeneering
* Learn about weaponizing #attack chaining and other evils of a succesful attack
* Understand #Windows client leaks
* Exposure to #Wireshark, #pcap, #procom, ...
* Relevance for Windows #Security Zones, Mark of the Web (MotW)
* ...
There is a way to get rid of the last, and only the last, newline in a file, if it exists. xxd
, in case you don't use it often, reads stdin
and shows you what was read, in hex.
printf "one\ntwo\nthree\n" > test.txt
cat test.txt | xxd
00000000: 6f6e 650a 7477 6f0a 7468 7265 650a one.two.three.
printf "%s" "$(cat test.txt)" | xxd
00000000: 6f6e 650a 7477 6f0a 7468 7265 65 one.two.three
This won't work with DOS-style newlines (\r\n
). The last \r
won't be eliminated. That would need a tr -d "\r"
, but that would eliminate all the \r
s.
If you knew for certain that there was a newline at the end, you could measure the length of the file with wc -c
and use head -c
to eliminate it. But this trick is so simple, I think I'd use it anyway with BASH and DASH.
I don't know if this trick works with any shells other than BASH and DASH. I think printf
is always a built-in command, so it would depend on the shell.
BTW, DASH is the variant form of BASH that Debian and Debian derivatives use. With Mint, commands you type from the command line, by default, use BASH, but scripts, by default, use DASH. This matters because echo
works slightly different with DASH and BASH. That's why some people use printf "%s\n" "whatever"
instead of echo "whatever"
in scripts.
#newline #newlines #bash #dash #shell #shell-script #trick #hack #programming #coding