Site uses cookies to provide basic functionality.
Javascript rendering is set to off by default when visiting the site via .onion and .i2p domains. It can be enabled back again in user's settings section. Javascript rendering set to off means, that you can disable javascript in your browser now and the site will remain functional.
There is also IRC server now available via native IRC clients or non javascript web based one.
Fonts can be adjusted in user's settings section as well.
Check FAQ for more.

OK

No more school - ilearnt.com - 3 years ago - eng
Today is my daughter’s last official day at school - they have a party for about an hour tomorrow so that doesn’t count.

No more school - ilearnt.com - 3 years ago - eng
Today is my daughter’s last official day at school - they have a party for about an hour tomorrow so that doesn’t count.

I read a well-researched story about Redis and its creator Salvatore Sanfilippo, also known as antirez. I was already familiar with many details as I have been following him since OKNotizie and Segnalo, of which I was a user. At the time, as a user, I exchanged a few emails with Salvatore, whom years later I had the pleasure of meeting in person, as we were both speakers at several conferences.

While using a tool that unexpectedly was running part of its build using the docker daemon on Linux. I need to quickly come up with a workaround. Most Linux distributions have natively moved away from Docker in favor of the more secure and community maintained "podman" project. The specific error I was seeing was: 1 requests.exceptions.ConnectionError: ('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))..

Box-poppers, shell-getters and potentates of the packet - we have great news! The stalwart humans of the Nautilus Institute have opened the registration for the DEF CON 31 CTF Quals. Your destiny’s door stands open before you. Will you enter? Get your bid in at quals.2023.nautilus.institute . Qualifications begin May 26, so don’t delay. Good luck to all those who dare.


A post describing the certificate authority I use to issue client and server TLS certificates for use in my home lab.

Yesterday I had the fortune to attend the RustNL conference in Amsterdam. It was incredibly energizing and reminded me of my fascination for the language, when I started contributing back in 2014. On the train back home this post was born, as a way to put this fascination into words. About the title If you are one of today’s lucky 10000 who haven’t heard of the meme before, it seems to have originated when the iPhone 4 was released with ant..

You can now use dwim-shell-command on Windows. Shoutout to Kartik Saranathan, who sent a pull request to get rid of ls usage. Also thanks to Bram for sharing his upload to 0x0.st implementation . I'd been wanting to do something similar for imgur , but 0x0.st is a much better alternative! dwim-shell-commands-upload-to-0x0 is now part of dwim-shell-commands.el (the optional part of the package). It has a couple of additional....


I believe computer science plays as integral of a part to a well-rounded liberal arts education as does mathematics and linguistics. Why? A liberal arts education is designed to help you think in new and better ways. Computer science teaches novel ways of thinking, reasoning, and approaching problems that are hard to get anywhere else. I took a class on pedagogy when I encountered this puzzle. I answered the question easily, and I caught ....

Checked in code and commits are highly static artifacts intended for reliability. Engineers are told to make small commits so that they are easy to reason about (e.g., tests should pass before and after the commit). Notebooks, on the other hand, are intended to be inherently flexible. They are a space for thinking and exploring. I probably share 5% of the notebooks I make (and those might need a different scheme than described here). As a....

This is probably an idea familiar to most researchers (and really anyone who produces written output for their job), but writing it up as you go has huge advantages over writing it up at the end. This isn't just a time-management tactic, but a thinking tool. I learned this from feedback during my first job, but the short summary is: if you write down your results as you go, you don't yet know what's relevant or important. That leaves orga....

Recently, while working on a problem from the CSES Problem Set known as #1071: “Number Spiral” , I accidentally misread the problem description and instead of finding N for a given [ y , x ] , solved the inverse by finding [ y , x ] for a given N . This problem turned out to have an interesting solution based on simple mathematical reasoning and as I couldn’t find any other solutions for ....

A post describing the certificate authority I use to issue client and server TLS certificates for use in my home lab.

Popovers are everywhere on the web platform. Learn how to use the new web platform primitives to take advantage of them today.

Last night my wife asked me to edit some random PDF that has bunch of car logos on it. It seems she wanted to make a car logo quiz for her MOPS group .

I believe computer science plays as integral of a part to a well-rounded liberal arts education as does mathematics and linguistics. Why? A liberal arts education is designed to help you think in new and better ways. Computer science teaches novel ways of thinking, reasoning, and approaching problems that are hard to get anywhere else. I took a class on pedagogy when I encountered this puzzle. I answered the question easily, and I caught ....

AWS SES is used in multiple ways - automated reminders, marketing emails, security automation & alerts, etc. There’s a risk with the domain verified on SES; often overlooked. A risk that falls at the intersection of Cloud and Enterprise risk.

This is less of a “Today I learned” article, but more like a Unix trick that took me too long to realize. Create a new directory with a hello world C program: $ ls $ cat > hello.c #include int main() { puts("Hello, world!"); return 0; } 💡 The empty or non-existent Makefile is a valid makefile for this C program: $ make hello # build "hello" cc hello.c -o hello $ ./hello Hello, world!

This is less of a “Today I learned” article, but more like a Unix trick that took me too long to realize. Create a new directory with a hello world C program: $ ls $ cat > hello.c #include int main() { puts("Hello, world!"); return 0; } 💡 The empty or non-existent Makefile is a valid makefile for this C program: $ make hello # build "hello" cc hello.c -o hello $ ./hello Hello, world!

This is less of a “Today I learned” article, but more like a Unix trick that took me too long to realize. Create a new directory with a hello world C program: $ ls $ cat > hello.c #include int main() { puts("Hello, world!"); return 0; } 💡 The empty or non-existent Makefile is a valid makefile for this C program: $ make hello # build "hello" cc hello.c -o hello $ ./hello Hello, world!


Part of my current role is prototyping new features and algorithms to determine if and how they will work. It’s nice to do some hands on coding still.

Part of my current role is prototyping new features and algorithms to determine if and how they will work. It’s nice to do some hands on coding still.

In this article, we’ll explore XML vulnerabilities and learn how to prevent them from compromising application data.

This list prioritizes quality and volume of work over album sales or historic impact. MCs with smaller discographies, or those who were involved primarily in groups, are disadvantaged. And as all lists include bias so does mine towards not only my taste but to what I have been exposed to. Certain artists may have had less of an impact on my music taste, and are therefore pushed down the list. #1 - Lil Wayne This man has so many bars h....

Type-safe tensors - sebinsua.com - 3 years ago - eng
Recently, Ben Newhouse released a TypeScript-based implementation of GPT called potatogpt. Although the performance may be slow, it contains a very interesting approach to type-checking tensor arithmetic . This approach eliminates the need to run your code to verify whether operations are allowed or to keep track of the sizes of tensors in your head. The implementation is quite complex, employing several advanced TypeScript techniques.....

Are you tired of dealing with multiple function arguments in your JavaScript code? Currying is here to simplify your life! Learn how to use this powerful technique to create reusable and flexible functions in JavaScript.

Are you tired of dealing with multiple function arguments in your JavaScript code? Currying is here to simplify your life! Learn how to use this powerful technique to create reusable and flexible functions in JavaScript.

Yes, we’re building a 3D Printed Newtonian Telescope called Hadley. It’s being printed in PETG and in the video below, I give a quick tour. My build isn’t done yet, but it’s darn close. In the next video I’ll be discussing aligning (collimating) the optics and hopefully have some first impressions to share. More info … Continue reading The post 3D Printing The Hadley 114mm Newtonian Telescope appeared first on MiscDotGeek .


Published in English 21.04.13 under a CC BY-NC-ND 3.0 DE license on superlevel.de , this article has been republished - without edits - here, for posterity. This is the first part of an Analysis of Kentucky Route Zero Original by Magnus Hildebrandt, translation by Dennis Kogel Kentucky Route Zero , the Kickstarter funded adventure about a delivery driver searching for an unknown address in a surrealist Kentucky, is an exceptio..

At our April SnykLaunch event, we debuted our newest capability using AI to provide a fix right in the IDE so a developer can simply click the suggestion and automatically implement the fix in their code. Today, we’re happy to announce that this AI-powered fix functionality is now available in open beta!


The future of coding will just be telling a computer what to do in plain English (or whatever language you speak). Prompting will become the new coding, and hand coding will only only be used to intervene when the AI fails. We’re currently at the stage in the AI cycle where AI is becoming pretty … Continue reading When AI Can Execute, Your Job Will No Longer Be Necessary

We are honored and humbled to announce Snyk has been named to the CNBC 2023 Disruptor 50 List, following our debut on the Disruptor List in 2021 and our listing as a Top Startup for the Enterprise in 2022.



I've spent a lot of time building and maintaining React applications. React, with Typescript, is fine, but I keep coming back to the same realisation: it's not Rust. Over the past few years I've been learning Rust, and it has transformed how I write

Last weekend I attended Eroica 2023 , a motorcycling event organized by the Italian branch of the Triumph Owners Motorcycle Club I currently preside. We rode the Eroica route, a legendary gravel bicycle race that runs through the most beautiful territories of the Tuscan Chianti region. It was glorious. The weather was perfect, the food was incredible, and the close-knit party of thirty T.O.M.C.C. bikers had great fun. We all ended up c..

Values - lagomor.ph - 3 years ago - eng
Inspired by evy’s ever-changing manifesto , this evolving document helps guide me towards the life I want to live. Responsibility Responsibility is the willingness to take ownership of one’s actions and obligations. It reflects a strong sense of duty and the ability to fulfill commitments with diligence and integrity. I embrace responsibility when I consider the impact of my choices and strive to make positive contributions throughout ..

When developers need to handle URLs, we often turn to Java. However, its frequent use motivates attackers to exploit its vulnerabilities. This risk of exploitation is why we must implement URL validation in our JavaScript applications.

GitHub - mgolub2/iatodng_rs: IAtoDNG, now in 100% Rust! IAtoDNG, now in 100% Rust! . Contribute to mgolub2/iatodng_rs development by creating an account on GitHub. GitHub mgolub2 A new way to convert Sinar IA RAW files from the Emotion digital back series! The utility is CLI only for

4 visitors online