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

I was listening to the audiobook for “Questions Are the Answer” by Hal Gregerson and it mentioned an approach used by the X lab at Alphabet nicknamed “MonkeyFirst”.

I was listening to the audiobook for “Questions Are the Answer” by Hal Gregerson and it mentioned an approach used by the X lab at Alphabet nicknamed “MonkeyFirst”.




We are pretty excited to share that last week Snyk was recognized as a ‘Next European Unicorn’ at the 2019 Vivatech Awards.

Here are my notes to install Arch on a Rock64 and boot on USB first. Warning, you can brick your device (but can unbrick it), you are on your own. Follow Arch Instructions to Install on an SD Card Boot on it Insert your USB device and follow the exact same installation but this time to the /dev/sdadevice At the end Mount / into root again Run blkid to grab the UUID of your /

Can you design iOS with Microsoft Word? Well maybe you never thought it was possible, have a look at the video and then let’s talk… When you know what you want to create, when you have a clear vision of the result then tools are merely a way to get there and you will get to the result you want. In the video above, you can see a perfect execution of someone executing the iOS design into Microsoft Word.

Can you design iOS with Microsoft Word? Well maybe you never thought it was possible, have a look at the video and then let’s talk… When you know what you want to create, when you have a clear vision of the result then tools are merely a way to get there and you will get to the result you want. In the video above, you can see a perfect execution of someone executing the iOS design into Microsoft Word.

Via Minko Gechev's tweet . Saving in an org block, just because… changeMAC() { local mac=$(openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//') ifconfig en0 ether $mac ifconfig en0 down ifconfig en0 up echo "Your new physical address is $mac" } changeMAC #+RESULTS: Your new physical address is b4:b2:f8:77:bb:87 ps. Also see Execute org blocks as root .

Better yet, take a look at this post walking through emulating x86 ELF binaries in Go: Emulating linux/AMD64 userland: interpreting an ELF binary Next up in emulator basics: 2. system calls In this post we'll create a small virtual machine in JavaScript and use it to run a simple C program compiled with GCC for an x86_64 (or AMD64) CPU running Linux. All source code is available on Github. Virtual machine data sto....

Time tracker - ciesie.com - 7 years ago - eng
THIS IS A WORK IN PROGRESS < Below you will find log entries that describe the design/thinking process. Idea < The goal is to build a device that could allow me to comfortably measure time spent on a project. I want to have a full history of the time spent on particular project. The time log needs to be plain text, easily queried and human readable. Process < 2023-08-23 And here we go with another attempt at prototyping..

If you're unable to create a new vdisk on Dell raid, and are getting something like the following omconfig storage controller action = createvdisk controller = 0 raid = r0 pdisks = 0 : 1 : 25 size = max The virtual disk cannot be created on the physical disks you selected . Possible reasons include : Insufficient disk space , available disks are not initialized , incor....

These are my notes from attending the Consensus 2019 conference in New York - there is a good chance that some of the notes I made are incorrect.

These are my notes from attending the Consensus 2019 conference in New York - there is a good chance that some of the notes I made are incorrect.

I have talked about arguments for and against Huawei before, as well as the challenge of judging risk in this space. Many of those in favor of Huawei cite a lack of concrete evidence against the company, but as James Vincent reports at The Verge , it appears US intelligence agencies have begun providing that evidence . The new law requiring them to cut ties with Huawei of course explains why US tech companies have done so , but perha..

The privileged don’t need DAOs As someone who’s spent months thinking about DAOs and governance, I knew there was a problem when I asked myself “Do I, personally, have need for a DAO today?” and answered “No”. To me, DAOs, or Decentralized Autonomous Organizations, are tools for collaboratively producing work. For instance, a software development startup could set up a DAO to handle its finances and decision making, in place of a corpora..

Another month, another dollar, another blog stat report. It’s May 2019, and I’m once again going to play it lazy and just dump the numbers.



Or: World Wide Web for a collaborative economy 1. Intro Decentralized Autonomous Organizations (DAOs) are organizations where members collaborate through a smart contract enabled blockchain. Compared to traditional organizations, DAOs are much cheaper to create, their immutability and transparency makes them more trustworthy, and their programmability enables a wide variety of features. It is possible that DAOs are the next evolut..

Experts say cryptocurrencies (such as Bitcoin, Monero, and Ethereum) will be the protagonists of the future decentralized and distributed economic system. If this is true then one of the most debated topics in the field of cryptocurrency, how to verify payments while spending as little as possible in terms of resources, is especially important for cryptosecurity. -Continue to read the article on SerHack.me


Charting bookmarks - xenodium.com - 7 years ago - eng
asciichart: Nice-looking lightweight console ASCII line charts ╭┈╯ for NodeJS and browsers with no dependencies . asciigraph: Go package to make lightweight ASCII line graph . Termgraph: a python command-line tool which draws basic graphs in the terminal .



WeBull is a zero-commission brokerage app - a competitor to Robinhood . One of the things that sets WeBull apart from Robinhood is the ability to paper trade.

Snyk’s goal is to help you use open source in a secure way. Vulnerabilities are one indicator that a dependency is unhealthy, but there are other risk factors at play as well. For that reason, we have a whole team working on making Snyk the go-to destination for information about your dependencies – from Security to License information, and now to Health.

When working with a traditional database inside of a monolith application, we don't usually need to think too much about how transactions…

One of FIRST’s initiatives is a Special Interest Group (SIG) that is responsible for developing and maintaining the Common Vulnerability Scoring System (CVSS) specification in an effort to help teams understand and prioritize the severity of a security vulnerability.

I fancy myself a technical guy. I got into web development at a young age, learned to write Python, Perl, C, and a handful of other languages in high school, and got a degree in Computer Science in college. Although I work in an organization not known for its technical prowess, it has worked hard to change that: today, Army Cyber matches industry on the defensive side, and — by law — has far more experience on the offense. I bring all this ..

Suppose you have a text file and you need to remove all of its duplicate lines. TL;DR To remove the duplicate lines preserving their order in the file use: awk '!visited[$0]++' your_file > deduplicated_file How it works The script keeps an associative array with indices equal to the unique lines of the file and values equal to their occurrences. For each line of the file, if the line occurrences are zero then it increas....

Suppose you have a text file and you need to remove all of its duplicate lines. TL;DR To remove the duplicate lines preserving their order in the file use: awk '!visited[$0]++' your_file > deduplicated_file How it works The script keeps an associative array with indices equal to the unique lines of the file and values equal to their occurrences. For each line of the file, if the line occurrences are zero then it increas....

Suppose you have a text file and you need to remove all of its duplicate lines. TL;DR To remove the duplicate lines preserving their order in the file use: awk '!visited[$0]++' your_file > deduplicated_file How it works The script keeps an associative array with indices equal to the unique lines of the file and values equal to their occurrences. For each line of the file, if the line occurrences are zero then it increas....

The matter of time() - serce.me - 7 years ago - eng
This article explores the different ways to obtain the current time in programs and the potential consequences of incorrect usage, as our intuitions and expectations of time from these clocks may lead to misleading results or catastrophic failures.

I wanted to set up a high available nats-streaming-server cluster, but couldn’t find a “quick” guide on how to do it.

This post discusses the CRLF injection vulnerability recently discovered in a popular Python library and provides guidance on how you can protect your Python project.

Vim Tricks - www.256kilobytes.com - 7 years ago - eng
I try to keep my machine as close to stock as possible. This makes setup a breeze, helps it stay fast, and means I have less to check when something goes wrong. Although I have gotten away from that , I have plans to re-work my setup soon. I appreciate posts like this one , from August Garcia at 256 Kilobytes, that remind me of these powerful built-in tools, and that I may not need a bunch of flashy third-party apps after all. Permalin..

Can I get an encore, do you want more” - Jay-Z I recently read Ben Horowitz’s book, The Hard Thing about Hard Things . It’s really eye opening and creates a level of empathy in the reader for leaders that make hard decisions every day. It covers everything from how to know your company is toxic to how to do layoffs. Ben starts each chapter with a rap quote so as did I above ;) obviously I chose Jay-Z but I also love Tupac, as is shown....

For almost 20 years I’ve been generating books with various pieces of software. I’ve published most of these as short run paperback books as Intermedia Writing Systems, a very small press in Iowa City. From Babble! to Open Wound, it’s been fun to see the mangled hodge·podge of text in these books. In February of […]

hey, there nice article on python vs java. we have a blog in favor of python, check it out...


My Evening Reads - zacs.site - 7 years ago - eng
I follow a lot of websites. In Keeping Up with Current Events , I list the handful I use to start my day. These get regular updates and help me stay up on current events. I also follow a lot of websites run by independent writers and small shops. These cover many of the same topics, but due to their size, they do not get updated as often. The unique perspective they bring to the table, though, makes for some of the most interesting readi..

Google AdSense. It seems like Google's AdSense advertising platform is the default mechanism that bloggers use to make money from their sites. It's an easy system to get into, but that is also a considerable part of the problem. It's too easy. Today, we're going to talk about some AdSense alternatives.

48 visitors online