#TIL:

prompt injection, which is a form of cyberattack that exploits [an AI's] natural language processing abilities.
Bing: “I will not harm you unless you harm me first”
Last week, Microsoft announced the new AI-powered Bing: a search interface that incorporates a language model powered chatbot that can run searches for you and summarize the results, plus do …simonwillison.net
PrivateBin 1.5.1 released - Filesystem purge lookup change & administration script
Release v1.5.1 - Filesystem purge lookup change & administration script - PrivateBin
This release reverts a filesystem purge lookup change and adds a script for administrative tasks.privatebin.info
PrivateBin 1.5.0 released - Adding S3 Storage backend, storage migration script & 4 new translations
https://privatebin.info/news/v1.5.0-release.html
https://privatebin.info/news/v1.5.0-release.html
Error | OPNsense
This minor release adds support for Simple Storage Service (S3), a storage migration script, adds four new languages to the translations and includes updated libraries.privatebin.info
PrivateBin 1.4.0 released - Hardening the attachment preview, Google Cloud Storage and Oracle database support & adding new translations
Error | OPNsense
This release improves the safety of the SVG attachment preview, adds Google Cloud Storage and Oracle database support, and new translations.privatebin.info
My team at LzLabs GmbH in Wallisellen, Switzerland, is looking for a 4th DevOps Engineer. You'd be working primarily with a CloudBees (Jenkins) cluster of around 90 blades for build & testing, for several software stacks that targets RHEL, but hopefully soon™ also other platforms. And of course there are also a lot of build and deployment related projects to be spice things up on the side, like maintaining and developing a test statistics database, code coverage reporting, change log and other automation projects, all in a mostly ansible-ized environment. The companies main language is English, living in or moving to the vicinity of Zürich would certainly be advantageous.
#followerpower #Stellenangebote #jobs #jeRecrute
#followerpower #Stellenangebote #jobs #jeRecrute
DevOps Engineer
As one of our DevOps engineers you will join a team who lead the way for our CI/CD environment. The ideal engineer will bring experience, best practices, and a collaborative attitude to help drive Linux based CI/CD initiatives.lzlabs.peoplehr.net
My employer is looking for a Junior and a Senior Web Developer in Wallisellen, Switzerland. Please feel free to share and/or message me privately or publicly, if you want to know more about the company.
https://lzlabs.peoplehr.net/Pages/JobBoard/Opening.aspx?v=286d1604-0dd9-4068-9ca4-4927773aea80
https://lzlabs.peoplehr.net/Pages/JobBoard/Opening.aspx?v=d74084e2-926b-4863-bf1c-505043c0f111
#hiring #jobs #JeRecrute (pas moi)
https://lzlabs.peoplehr.net/Pages/JobBoard/Opening.aspx?v=286d1604-0dd9-4068-9ca4-4927773aea80
https://lzlabs.peoplehr.net/Pages/JobBoard/Opening.aspx?v=d74084e2-926b-4863-bf1c-505043c0f111
#hiring #jobs #JeRecrute (pas moi)
Good morning, currently reading a book called:
The book's title and subject is the one liner that produces a maze on the Commodore 64 BASIC V2. In one of the chapters the books authors consider ports to other 8 bit systems, as well as modern scripting languages, using unicode characters. Here is their port to perl:
Got me inspired, here are my attempts for python (the second one cheats a bit, as it uses POSIX shell to format the script):
and php (still no native unicode support, so have to build the 3 bytes for the utf-8 symbol one by one):
10 PRINT CHR$(205.5+RND(1)); : GOTO 10
The book's title and subject is the one liner that produces a maze on the Commodore 64 BASIC V2. In one of the chapters the books authors consider ports to other 8 bit systems, as well as modern scripting languages, using unicode characters. Here is their port to perl:
perl -e 'binmode STDOUT,"utf8";{print chr(9585.5+rand);redo}'
Got me inspired, here are my attempts for python (the second one cheats a bit, as it uses POSIX shell to format the script):
python3 -c 'import random;exec("while True:\n\tprint(chr(int(9585.5+random.random())),end=\"\");")'
printf "import random\nwhile True:\n\tprint(chr(int(9585.5+random.random())),end='')" | python3 -
and php (still no native unicode support, so have to build the 3 bytes for the utf-8 symbol one by one):
php -r 'while(1){echo chr(226),chr(149),chr(177.5+rand(0,1));}'
Shell parsing is hard.
Yes, shell parsing is non-obvious - it does help enormously to understand that the shell takes what you type on the command line after you hit enter, parses it, replacing variables, expanding globs (wildcards) and other language constructs in the process and only then issues a system call, passing the resulting argv structure to the kernel for execution.
Exhibit A (source of the above quote): How the local shell ssh and the remote shell interact, in unexpected ways
Exhibit B: skarnet's introduction to the execline language design and grammar goes into further details of the argv structure
Exhibit C: How to use execlineb for nginx to wait for up to 10s on the startup of php-fpm, avoiding involvment of a shell process
PrivateBin 1.3.5 released - Fixing several smaller issues, adding new translations https://privatebin.info/news/v1.3.5-release.html
Many folks don't know that the Unicode standard is actually much older then they think. Here's the spec as of 1889 


"Unicode", 1889: The Universal Telegraphic Phrase-book. A Code of Cypher Words for Commercial ... : Free Download, Borrow, and Streaming : Internet Archive
Book digitized by Google from the library of the University of Michigan and uploaded to the Internet Archive by user tpb.archive.org
Started looking into gemini space. Love how it feels - it's like the web ca. mid-90s. UI is back under your control and you can focus on reading the content instead of getting the site to work (because either you have issues with noscript turned on and sites requiring JS to display text or you have it disabled and have to click through modal windows informing you of cookie settings, sign up for that newsletter, etc. to get to the content).
I'm using Castor and wanted to merry it to my Gnome desktop, so clicking links in Firefox/Chromium opens them in Castor. Oh, and I got a gopher client for free with it as well. Was bummed when Firefox dropped gopher support. Here's how to register the gemini protocol in Gnome (and build castor):
I'm using Castor and wanted to merry it to my Gnome desktop, so clicking links in Firefox/Chromium opens them in Castor. Oh, and I got a gopher client for free with it as well. Was bummed when Firefox dropped gopher support. Here's how to register the gemini protocol in Gnome (and build castor):
Setting up castor as handler for gemini URLs on a Gnome desktop
While grep and sed are commoly used, awk fills a valuable niche when processing structured text, avoiding multiple pipes or more complicated regex extractions. Here is a handy flowchart to pick the ideal tool for your text processing task:

A plaintext chart and a simple example making use of several awk features can be found here:
A plaintext chart and a simple example making use of several awk features can be found here:
Small tools to use as (non-sharable) sketchpads - if you need a quick spreadsheet calculation or text editor and are to lazy to open a terminal. Good example of #minimalism and very #privacy minded.
Maybe a concept we could evaluate for use in our fediverse software as well:
This forms a relative reputation system. As uncomfortable as it may be, one man’s terrorist is another man’s freedom fighter, and different jurisdictions have different laws - and it’s not up to the Matrix.org Foundation to play God and adjudicate. Each user/moderator/admin should be free to make up their own mind and decide which reputation feeds to align themselves with.
Everything you always wanted to know about punch card data encoding, but were afraid to ask:
@Retrocomputing Forum #RetroComputing
@Retrocomputing Forum #RetroComputing
What did code on punch cards do with the other six bits per column?
In the fifties and sixties, program source code was typically stored on punch cards, one card per line. The most common card format was the IBM 80 column by 12 row. For source code, this was commonlyretrocomputing.stackexchange.com
Das Gerät (32620) hinter dem Zahlensender
Having fun learning how to use flex box CSS rules by playing this tower defense game:
Flexbox Defense
Your job is to stop the incoming enemies from getting past your defenses. Unlike other tower defense games, you must position your towers using CSS!www.flexboxdefense.com
Für mein erstes Projekt in Rust suche ich noch eine geeignete freie Lizenz. Da es sich um einen Dienst handelt, welcher hauptsächlich als Webseite genutzt wird, hatte ich an die AGPL gedacht. Mir fiel aber auf, das die meisten darin verwendeten Bibliotheken MIT und Apache lizenziert sind, was ich eher von Software kenne, die auch kommerziell genutzt werden soll. Für Empfehlungen die für oder gegen eine der genannten Lizenzen sprechen bin ich dankbar. #FollowerPower
Technology Holy Wars are Coordination Problems
Flamewars over platforms & upgrades are so bitter not because people are jerks but because the choice will influence entire ecosystems, benefiting one platform through network effects & avoiding 'bitrot' while subtly sabotaging the rest through 'bitc…www.gwern.net
Spass am weniger bekannten 8-Bit-Gerät - BASIC-Labyrinth auf den KC 85/4 portieren

Duff's device (ca. 1984)
Via jargon file, Kommentar von Tom Duff
register n = (count + 7) / 8; /* count > 0 assumed */
switch (count % 8)
{
case 0: do { *to = *from++;
case 7: *to = *from++;
case 6: *to = *from++;
case 5: *to = *from++;
case 4: *to = *from++;
case 3: *to = *from++;
case 2: *to = *from++;
case 1: *to = *from++;
} while (--n > 0);
}
Via jargon file, Kommentar von Tom Duff
Der wahrscheinlich kleinste SMS gateway der Welt: VoCore2 + OpenWRT + smstools + USB-GSM-Modem

@ripper: "Ortsnamen fangen immer mit Buchstaben an." https://de.wikipedia.org/wiki/%E2%80%99s-Hertogenbosch
elrido likes this.
Seien wir froh, müssen wir uns nur mit den modernen Datums- & Zeit-Problemen herumschlagen. Hier hat jemand eine ähnliche Liste mit Ausnahmen in alt-römischen Kalender-Problemen zusammengetragen:
Dealing with Time in the Roman Calendar
Dealing with Time in the Roman Calendar
PrivateBin v1.3.4 released - Fixing HTML entities, custom expiration, pasting into password field
https://privatebin.info/news/v1.3.4-release.html
https://privatebin.info/news/v1.3.4-release.html
Question to PrivateBin users - Should we change the term "paste" to something else?
https://www.systemli.org/poll/#/poll/WO1PEAFQ5K/participation?encryptionKey=hEbthZLaLJupBHwsAKJoUIVLMWzSF6ozcHSDb2yl
#followerpower #poll
https://www.systemli.org/poll/#/poll/WO1PEAFQ5K/participation?encryptionKey=hEbthZLaLJupBHwsAKJoUIVLMWzSF6ozcHSDb2yl
#followerpower #poll
PrivateBin v1.3.3 & v1.2.3 - Fixing HTML entity double encoding issues introduced in 1.3.2 & 1.2.2 https://privatebin.info/news/v1.3.3-v1.2.3-release.html
PrivateBin 1.3.2 & 1.2.2 released - Fix for persistent XSS vulnerability in filenames of attached files
https://privatebin.info/news/v1.3.2-v1.2.2-release.html
https://privatebin.info/news/v1.3.2-v1.2.2-release.html
This entry was edited (3 years ago)
Ross Andersons presentation at the #36C3 introduced me to the concept of security economics: "If Alice guards a system, but Bobs bears the cost of it failing, expect trouble." (quoting from memory)
PrivateBin 1.3 released - Fixing mangled URLs, switching encryption & compression libraries https://privatebin.info/news/v1.3-release.html
This entry was edited (3 years ago)
Sehr schön: PHP 7.3 ist endlich wieder so schnell wie 7.0. Habe ich bemerkt als ich 7.3 zur unit test suite von PrivateBin in TravisCI hinzugefügt habe https://travis-ci.org/PrivateBin/PrivateBin/builds/497382696 - Somit habe ich nun auch das unit test docker image auf 7.3 ge-upgraded https://github.com/PrivateBin/docker-unit-testing/commit/b42a19bd01215d169bcbeb0033d2160e1c4c4808
PrivateBin 1.2.1 released
Release v1.2.1 - Fix for low entropy key vulnerability in legacy browsers - PrivateBin
This release fixes a low entropy key vulnerability in PrivateBin affecting legacy browsers.privatebin.info
PrivateBin 1.2 released - QR codes, inline media display, 6 new languages & JS refactoring
Release v1.2 - QR codes, inline media display, 6 new languages & JS refactoring - PrivateBin
This release adds QR code generation, inline display of video, audio, PDF and new translations to PrivateBin and a large refactoring of the JavaScript code.privatebin.info
PrivateBin 1.1.1 released - fixing a data leak vulnerability
Release v1.1.1 - Fix for data leak vulnerability - PrivateBin
This release addresses a data leak vulnerability in PrivateBin.privatebin.info
Man könnte statt von einer "Vireninfektion", auch von einem „Systembrand" sprechen:

Manchmal frage ich mich, wie sehr Sprache unser Denken wirklich beeinflusst. Können Franzosen wegen Ihrer Sprache wirklich schlechter Rechnen? Könnte eine neue Sprache kulturelle Differenzen überwinden und den "Weltfrieden" bringen?
elrido