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

Introduction Ben Hoyt wrote an excellent blog post comparing programming languages with a non-trivial program: counting the number of words in a text file. You can find his repo here . Of all of the languages, only C did not provide a hashmap out of the box, so Ben wrote a simple linearly probed map with a simple hash function for his version. As it turns out, I have already written what is supposed to be a production-ready ..

Introduction Ben Hoyt wrote an excellent blog post comparing programming languages with a non-trivial program: counting the number of words in a text file. You can find his repo here . Of all of the languages, only C did not provide a hashmap out of the box, so Ben wrote a simple linearly probed map with a simple hash function for his version. As it turns out, I have already written what is supposed to be a production-ready ..

We’re pleased to announce our new plugin for JetBrains IDEs, making it easier for developers to find and fix security issues as they code!

I did a recent AMA on Clubhouse and there were a lot of awesome, hard-hitting questions on the panel. So for the next several weeks, I’m going to write out my thoughts to each of the questions and how I answered them.

Here is a simple question. Given the lisp function below (and that the function is not advised) what will the output be of (foo)? (defun foo () "foo") Seems pretty simple right? How could the answer be anything other then "foo"? It is just returning a constant string. Or is it? The real answer to this question is… We have no idea. It can could be any string of length 3.


View a complete picture of the open issues across your application, covering vulnerabilities from open source libraries and container images, licenses, and now configuration issues from your Kubernetes and Terraform files.

This is an open engineering question at June . If you want to solve problems like this one, please reach out - we’re hiring June allows you to add dynamic traits to your users. For example, if you want to run an analysis only on users that are on your pro plan , you can do that by adding a “plan” trait to your users. The value of these properties is mutable and has no relationship with time. We’re thinking about making it immutabl..

I never see my macOS desktop. It’s always cluttered with way too many open windows. When I spot those fantastic, tidy and clean Desktops on the internet, I envy their owners. I wonder if and how they manage to keep those desktops tidy like that the whole workday. It must feel so good. I try to keep my windows well arranged. The typical setup might be two windows, from two different apps, tiled side by side. Maybe the browser, or Postman, ..

Learn some best practices for keeping your Node.js and JavaScript projects safe from code injection attacks.


In previous posts, I suggested two modifications of the Harrell-Davis quantile estimator: winsorized and trimmed . Both modifications have a higher level of robustness in comparison to the original estimator. Also, I discussed the efficiency of the Harrell-Davis quantile estimator. In this post, I’m going to continue numerical simulation and estimate the efficiency of the winsorized and trimmed modifications.

In previous posts, I suggested two modifications of the Harrell-Davis quantile estimator: winsorized and trimmed . Both modifications have a higher level of robustness in comparison to the original estimator. Also, I discussed the efficiency of the Harrell-Davis quantile estimator. In this post, I’m going to continue numerical simulation and estimate the efficiency of the winsorized and trimmed modifications.


Recently, I set up unit and integration tests for a Node API in TypeScript, and I couldn't find a lot of resources for setting up and…

What is a Bloom Filter? A Bloom filter is a probabilistic data structure. It tells you if an element is in a set or not in a very fast and memory-efficient way. A Bloom filter can tell if an element is not in the set (“being 100% sure”) or that it may be in the set, but not “being 100% sure”. It only has 2 operations: add, to add an element, and query, to check if an element exists in the set or not.

Since ancient times, nations have tried to write history from their own point of view. As they say, history is written by the victors. Today, the speed of the internet allows rewriting the narrative in real-time, and state actors will certainly take advantage of this. Namely, there are two ways, or generations, of state information-control practices, an information scarcity approach, aka censorship, and an embracing of information approach,..

Giulia got an exciting assignment from her teacher: Write a C program that simulates (a simplified version of) COVID outbreak spreading across a population of 200 people. When a healthy person comes into contact with a sick person, the healthy person becomes ill, too. After some time, a sick person will recover. A recovered person cannot infect a healthy person nor become sick again after coming in contact with a sick person.

Photo by Kai Pilger / Unsplash  I've been working remote for now a year and counting due to the global pandemic and one thing that has increased is my amount of orders to delivery services like Uber Eats. I've been noticing something lately that has required

From a reference photo by Ioannis Moutsatsos . Original photograph of the Tufted Titmouse by Ioannis Moutsatsos Painted using recently learned techniques after watching a video by Sarah Burns Studio , and also other mixed media technique from a Domestika course by Maru Godas .

An open-source example repository and technical deep-dive on using AWS SAM, Golang, CodePipeline and CloudFormation to automate continuous delivery.

Assembly program creation The process of creating an Assembly program goes through the following steps: Writing one or more ASCII files (extension .s) containing the source program, using an ordinary text editor. Assembly of the source files, and generation of the object files (extension .o), using an assembler. Creation, of the executable file, via a linker. Verification of operation and correction of any errors, via a debugger. Assembler ..

From a reference photo by Ioannis Moutsatsos . Original photograph of the Tufted Titmouse by Ioannis Moutsatsos Painted using recently learned techniques after watching a video by Sarah Burns Studio , and also other mixed media technique from a Domestika course by Maru Godas .

Research published - rybakov.com - 5 years ago - eng
ZKM, the german media art museum, published my research on Strategies of Arrival , done under guidance of Bruno Latour. It’s made up of three parts: Inhabiting a map How to enter a space and Instruments of reation The first one is the most spectacular I guess, but make sure to check out the others too. And, once the museums reopen, check out my piece at the current ZKM exhibition Critical Zones .

Zdravotní sestra v práci tajně vyfotila výtěrové špejle používané na testy, u nichž je předem dán výsledek: Zdroj:  http://stateofthenation.co/?p=59033 P.S.Orgonet:  Už loni (téměř před rokem) se psalo o tom, že v Německu si lze obstarat testy podle požadovaného výsledku: chcete zůstat doma, koupíte si pozitivní. Chcete do práce, koupíte negativní. Nedávné a stále probíhající "plošné testování ve firmách" ukazuje nepatrný podíl..




I have never contributed to nginx. My C skills are 1/10. But downloading the source, hacking it up, compiling it, and running it doesn't scare me. This post is to help you overcome your own fears about doing so. Not necessarily because you should be running out-of-tree diffs in production but because I see a lot of developers never even consider looking at the source of a big tool or dependency they use. Most of all, studying mature softw....




Introduction In my last post , I mentioned the first program I ever wrote. That, plus thinking about the calculators where I learned the basics of programming, made me feel nostalgic. So if you don’t mind, I would like to take a walk down memory lane. These programs were written by a teenager who was just learning how to program. Please don’t judge. The Calculator All of my first programs were written on a TI-84 Plus Silver Ed..

Introduction In my last post , I mentioned the first program I ever wrote. That, plus thinking about the calculators where I learned the basics of programming, made me feel nostalgic. So if you don’t mind, I would like to take a walk down memory lane. These programs were written by a teenager who was just learning how to program. Please don’t judge. The Calculator All of my first programs were written on a TI-84 Plus Silver Ed..

Introduction In my last post , I mentioned the first program I ever wrote. That, plus thinking about the calculators where I learned the basics of programming, made me feel nostalgic. So if you don’t mind, I would like to take a walk down memory lane. These programs were written by a teenager who was just learning how to program. Please don’t judge. The Calculator All of my first programs were written on a TI-84 Plus Silver Ed..

Introduction In my last post , I mentioned the first program I ever wrote. That, plus thinking about the calculators where I learned the basics of programming, made me feel nostalgic. So if you don’t mind, I would like to take a walk down memory lane. These programs were written by a teenager who was just learning how to program. Please don’t judge. The Calculator All of my first programs were written on a TI-84 Plus Silver Ed..

Introduction In my last post , I mentioned the first program I ever wrote. That, plus thinking about the calculators where I learned the basics of programming, made me feel nostalgic. So if you don’t mind, I would like to take a walk down memory lane. These programs were written by a teenager who was just learning how to program. Please don’t judge. The Calculator All of my first programs were written on a TI-84 Plus Silver Ed..

Introduction In my last post , I mentioned the first program I ever wrote. That, plus thinking about the calculators where I learned the basics of programming, made me feel nostalgic. So if you don’t mind, I would like to take a walk down memory lane. These programs were written by a teenager who was just learning how to program. Please don’t judge. The Calculator All of my first programs were written on a TI-84 Plus Silver Ed..

Introduction In my last post , I mentioned the first program I ever wrote. That, plus thinking about the calculators where I learned the basics of programming, made me feel nostalgic. So if you don’t mind, I would like to take a walk down memory lane. These programs were written by a teenager who was just learning how to program. Please don’t judge. The Calculator All of my first programs were written on a TI-84 Plus Silver Ed..

Introduction In my last post , I mentioned the first program I ever wrote. That, plus thinking about the calculators where I learned the basics of programming, made me feel nostalgic. So if you don’t mind, I would like to take a walk down memory lane. These programs were written by a teenager who was just learning how to program. Please don’t judge. The Calculator All of my first programs were written on a TI-84 Plus Silver Ed..

Introduction Oh, the irony! Merely hours after I posted my last post , in which I said, “I have found more bugs than users have,” I got an email from a FreeBSD user (where my bc and dc are default) reporting a bug in my dc. What I claimed in my previous post is still true; I found and fixed two bugs in the past two weeks after a month of inactivity. The Script The bug was found by running the following script (found here ) ..

Introduction Oh, the irony! Merely hours after I posted my last post , in which I said, “I have found more bugs than users have,” I got an email from a FreeBSD user (where my bc and dc are default) reporting a bug in my dc. What I claimed in my previous post is still true; I found and fixed two bugs in the past two weeks after a month of inactivity. The Script The bug was found by running the following script (found here ) ..

Introduction Oh, the irony! Merely hours after I posted my last post , in which I said, “I have found more bugs than users have,” I got an email from a FreeBSD user (where my bc and dc are default) reporting a bug in my dc. What I claimed in my previous post is still true; I found and fixed two bugs in the past two weeks after a month of inactivity. The Script The bug was found by running the following script (found here ) ..

Introduction Oh, the irony! Merely hours after I posted my last post , in which I said, “I have found more bugs than users have,” I got an email from a FreeBSD user (where my bc and dc are default) reporting a bug in my dc. What I claimed in my previous post is still true; I found and fixed two bugs in the past two weeks after a month of inactivity. The Script The bug was found by running the following script (found here ) ..

46 visitors online