SSH Is Magic, But Tunnels Are Even Better
https://hackaday.com/2022/04/24/ssh-is-magic-but-tunnels-are-even-better/
https://hackaday.com/2022/04/24/ssh-is-magic-but-tunnels-are-even-better/
Hackaday
SSH Is Magic, But Tunnels Are Even Better
Once upon a time, I was doing on-site support for a hardware install at a hotel a few years ago. The remote tech’s remote desktop software didn’t want to play with my Linux laptop, so h…
Useful tricks with pip install URL and GitHub
https://simonwillison.net/2022/Apr/24/pip-install-github/
https://simonwillison.net/2022/Apr/24/pip-install-github/
simonwillison.net
Useful tricks with pip install URL and GitHub
The pip install command can accept a URL to a zip file or tarball. GitHub provides URLs that can create a zip file of any branch, tag or commit in …
How to Read Data From a Socket in Bash on Linux
https://www.howtogeek.com/787892/how-to-read-data-from-a-socket-in-bash-on-linux/
https://www.howtogeek.com/787892/how-to-read-data-from-a-socket-in-bash-on-linux/
How-To Geek
How to Read Data From a Socket in Bash on Linux
The Linux command line lets you retrieve data by either listening on a socket or connecting to a socket. The data can be captured in a text file. We show you how.
How to Extract Text from PDF Files with Google Apps Script
https://www.labnol.org/extract-text-from-pdf-220422
https://www.labnol.org/extract-text-from-pdf-220422
Digital Inspiration
How to Extract Text from PDF Files with Google Apps Script
This tutorial explains how you can parse and extract text elements from invoices, expense receipts and other PDF documents with the help of Apps Script.
Parallelizing in Bash and Python
https://0xdf.gitlab.io/2022/04/24/parallelizing-in-bash-and-python.html
https://0xdf.gitlab.io/2022/04/24/parallelizing-in-bash-and-python.html
0xdf hacks stuff
Parallelizing in Bash and Python
To solve the Backdoor box from HackTheBox, I used a Bash script to loop over 2000 pids using a directory traversal / local file read vulnerability and pull their command lines. I wanted to play with parallelizing that attack, both in Bash and Python. I’ll…
Heresy: Hare programming language an alternative to C • The Register
https://www.theregister.com/2022/04/26/hare_c_software/
https://www.theregister.com/2022/04/26/hare_c_software/
The Register
Heresy: Hare programming language an alternative to C
Hare-brained. Bad Hare day. Hare no evil, say no evil ... At least it'll be a pun goldmine
How to Use the pmap Command on Linux
https://www.howtogeek.com/792783/how-to-use-the-pmap-command-on-linux/
https://www.howtogeek.com/792783/how-to-use-the-pmap-command-on-linux/
How-To Geek
How to Use the pmap Command on Linux
Finding out how much RAM a Linux process uses isn’t a simple matter—especially when shared memory needs to be considered. Thankfully, the pmap command helps you make sense of it all.
A Master List of 1700 Free Courses From Top Universities: A ...
https://www.openculture.com/2022/04/a-master-list-of-1700-free-courses-from-top-universities-a-lifetime-of-learning-on-one-page.html
https://www.openculture.com/2022/04/a-master-list-of-1700-free-courses-from-top-universities-a-lifetime-of-learning-on-one-page.html
Open Culture
A Master List of 1,700 Free Courses From Top Universities: A Lifetime of Learning on One Page
For the past 15 years, we've been busy rummaging around the internet and adding courses to an ever-growing list of Free Online Courses, which now features 1,700 courses from top universities. Let's give you the quick overview:
❤1
How to use 'daily quadrants' to get more done each day
https://www.fastcompany.com/90742937/how-to-use-daily-quadrants-to-get-more-done-each-day
https://www.fastcompany.com/90742937/how-to-use-daily-quadrants-to-get-more-done-each-day
Fast Company
How to use ‘daily quadrants’ to get more done each day
It’s worth considering your natural rhythms when writing your to-do list.
Why Is It Important to Close Files in Python? – Real Python
https://realpython.com/why-close-file-python/
https://realpython.com/why-close-file-python/
Realpython
Why Is It Important to Close Files in Python? – Real Python
Model citizens use context managers to open and close file resources in Python, but have you ever wondered why it's important to close files? In this tutorial, you'll take a deep dive into the reasons why it's important to close files and what can happen…
👍1
Create Your Own VPN Server with Vultr & OpenVPN
https://www.sitepoint.com/create-your-own-vpn-server/
https://www.sitepoint.com/create-your-own-vpn-server/
Sitepoint
Create Your Own VPN Server with Vultr & OpenVPN — SitePoint
Create your own VPN server with Vultr and OpenVPN. Learn to set up a new virtual machine, configure OpenVPN, and test your new setup.
Best practices to keep your projects secure on GitHub
https://github.blog/2022-04-28-best-practices-to-keep-your-projects-secure-on-github/
https://github.blog/2022-04-28-best-practices-to-keep-your-projects-secure-on-github/
The GitHub Blog
Best practices to keep your projects secure on GitHub
These days software is subject to an ever-changing threat landscape. Check out the many ways you can keep your projects secure on GitHub today.
When Python can't thread: a deep-dive into the GIL's impact
https://pythonspeed.com/articles/python-gil/
https://pythonspeed.com/articles/python-gil/
Python⇒Speed
When Python can’t thread: a deep-dive into the GIL’s impact
Python’s Global Interpreter Lock (GIL) stops threads from running in parallel or concurrently. Learn how to determine impact of the GIL on your code.
Artificially intelligent algorithms for optimization in Python
https://www.supplychaindataanalytics.com/artificially-intelligent-algorithms-for-optimization-in-python/
https://www.supplychaindataanalytics.com/artificially-intelligent-algorithms-for-optimization-in-python/
SCDA
Heuristic optimization in Python
In this article, I introduce artificially intelligent (heuristic) optimization algorithms and implement them via interfaces in Python.