My article in newest Paged Out! about everyone's favorite Python party trick:
pagedout.institute/webview.php?...
#python #goingtoapythonprogrammersparty #pythonprogramminglanguagethemedparty #whatispythonsis
My article in newest Paged Out! about everyone's favorite Python party trick:
pagedout.institute/webview.php?...
#python #goingtoapythonprogrammersparty #pythonprogramminglanguagethemedparty #whatispythonsis
Guess what's out :)
19.02.2026 14:10 — 👍 5 🔁 3 💬 0 📌 0Just got this link on my discord - www.kickstarter.com/projects/bit... - passing it along because this book looks fun!
16.02.2026 10:11 — 👍 4 🔁 2 💬 0 📌 0
We are excited to announce the CFP for the next tmp.0ut Volume 5!
tmpout.sh/blog/vol5-cf...
A useful chart on what type to use for flags in C/C++ depending on your D&D alignment:
11.01.2026 13:22 — 👍 11 🔁 1 💬 0 📌 0
Glitches in games, especially used for speedrunning, are one of the most fun aspects of hacking to watch!
As an example, check out this video "How Speedrunners BEAT Hollow Knight Silksong In 10 Minutes!" by Abyssoft
www.youtube.com/watch?v=M6Jn...
Ah Saturday morning! What a great time to...
...write a 1-page article for Paged Out! zine!
Deadline is 4th Jan - just a week away.
CFP: pagedout.institute?page=cfp.php
𝙿𝙰𝙶𝙴𝙳 𝙾𝚄𝚃! #𝟾 𝙳𝙴𝙰𝙳𝙻𝙸𝙽𝙴: 𝟺 𝙹𝚊𝚗𝚞𝚊𝚛𝚢 𝟸𝟶𝟸𝟼 𝙴𝚘𝙳 𝙴𝚘𝙰
Save the date if you're planning to write an article or showcase your digital art in the next issue of our magazine.
pagedout.institute
P.S. We're looking for sponsors for issue #8 as well.
One of my favorite projects just hit a HUGE milestone of 1 million downloads!
Kudos to the team and everyone who supported us!
You can write '2' (0x32) anywhere in the filesystem of a Linux-based network switch. How do you get root?
That's basically what my talk at GreHack conference was about - enjoy!
youtu.be/F4CudbWHZ7Y?...
youtu.be/X-ZJH4d2tuE?...
Btw, you can get Paged Out! either at events (pagedout.institute?page=event-p...) or, if you want to buy one, we have #6 and #7 available on lulu: www.lulu.com/spotlight/pa...
And if you want Paged Out! at your event - or you want to sponsor Paged Out! prints for events, get in touch with us :)
9 printed magazines lined up; the side one is visibly matte, next ones are glossy, apart from two last ones which seem to be in-between. There's issue 1, issue 5, 3 times issue 6, and 4 times issue 7. As per text on the photo, they are either from print series for various conferences, or just test-prints ordered at lulu.
With the newest Black Alps 2025 and GreHack 2025 additions, my printed Paged Out! collection is slowly growing!
29.11.2025 09:05 — 👍 9 🔁 0 💬 2 📌 0pagedout.institute ← Call for articles & art for issue #8 of this technical IT zine is open! As usual, we accept 1-page articles about everything interesting in IT and related fields (be it programming, cybersec, AI, demoscene, retro, electronics, etc).
24.11.2025 09:23 — 👍 6 🔁 5 💬 0 📌 0Exactly this!
13.11.2025 10:49 — 👍 0 🔁 0 💬 1 📌 0
Yup! It's called Hash flooding / HashDoS (en.wikipedia.org/wiki/Collisi...)
They can collide due to the pigeon hole principle of course.
True - but why does it have to be random? There's a cool reason ;)
13.11.2025 10:06 — 👍 0 🔁 0 💬 1 📌 0Agreed! Also, the reason why the effective order is different in every run is pretty interesting ;)
13.11.2025 09:31 — 👍 0 🔁 0 💬 1 📌 0Ah, but this isn't just about the order - it's about why it's non-deterministic! There's an interesting story and reason behind that :)
13.11.2025 09:31 — 👍 0 🔁 0 💬 1 📌 0First run: has alice a cat Second run: a cat alice has Third run: has alice a cat Fourth run: alice a cat has
Here's some blursed Python code for you:
a, b, c = {"alice", "has", "a cat"}
print(a, b, c)
Yup. To be more exact, cPython's compiler does constant deduplication inside a compilation unit (i.e. a single "code" object). If it compiles lines separately like in normal REPL use, it won't deduplicate 257. If it would compile them at the same time (like in that py file), they get deduplicated.
09.11.2025 09:30 — 👍 1 🔁 0 💬 0 📌 0Source: a question asked by an attentive attendee at my Python workshop yesterday.
08.11.2025 10:01 — 👍 1 🔁 0 💬 0 📌 0Left side: in Python Repl: Line 1: a = 257. Line 2: b = 257. Line 3: a is b. Result: False. Now right side: a python source file called is.py has the following content: Line 1: a = 257. Line 2: b = 257. Line 3: print(a is b). When running this code with python the result is: True Left side had result False. Right side has result True. Code looks identical.
Here's a Saturday Python 3 Puzzle for you:
08.11.2025 09:59 — 👍 7 🔁 0 💬 4 📌 0If you've liked my "Linux Terminal: CTRL+D is like pressing ENTER" article (hackarcana.com/article/ctrl...), be sure to checkout @mina86.com's "Is Ctrl+D really like Enter?" (mina86.com/2025/is-ctrl...) :)
05.11.2025 11:41 — 👍 3 🔁 0 💬 0 📌 0
Heeey, ncurses/terminfo has a small virtual machine! And if there's a VM, there are CTF challenges :)
hackarcana.com/public-exerc...
hackarcana.com/public-exerc...
(third one coming next week, will be a bit harder)
We've received 50 required articles for issue #7 of
@pagedout.bsky.social - this means we're publishing the issue in the few next weeks.
1. Want to get an article in #7? You should write it now and send it in in the next few days.
2. We're still looking for more issue sponsors!
OK, ChatGPT 5 admittedly surprised me in a positive way. I threw a PNG with a (small) Python AST graph at it and told it to reverse it to Python code, and it successfully did that. I have expected it to fail hard, but here we are 🤷.
02.09.2025 08:40 — 👍 8 🔁 1 💬 0 📌 0Python: 20000000000000000000.0 + 1337.0 - 20000000000000000000.0 is 0, but same numbers, with addition of 1337 moved after subtraction results in 1337.
Friendly reminder that order of operations makes a difference... more so than you think ;)
11.08.2025 10:06 — 👍 6 🔁 0 💬 2 📌 0Lulu (print on demand) is increasing prices by 5% from Aug 1st, so if you were thinking of getting @pagedout.bsky.social #6 there, do it now: www.lulu.com/search?page=...
10.07.2025 06:49 — 👍 3 🔁 1 💬 0 📌 0
[Please share with people outside of cybersec]
Do you have a horror story when you had to deal with cybersecurity companies / people? This is your chance to vent! → forms.gle/9aX24HrfnEQm...
I'm running an anonymous survey to listen to stories and look into the disconnect we sometimes have.
Yet another ZIP trick...
hackarcana.com/article/yet-...
+ a hands on exercise if you want to try this yourself:
hackarcana.com/article/yet-...