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

pfxsigner v0.4.0 - nadh.in - 6 years ago - eng
Repository: @knadh/pfxsigner GitHub release page: v0.4.0 Changelog 6d4dea7 Add support for multi-page signature stamping Docker images docker pull kailashnadh/pfxsigner:latest docker pull kailashnadh/pfxsigner:v0.4.0

I remember when I started at my current company there was a departing employee who had a reputation for being exceptionally talented but also quite difficult to work with. This was so pervasive that virtually every person I spoke with had the same thing to say about them. It became very clear when they left how much of a hole they left because of their prowess.

I've switched from Linux Mint to Arch Linux on both my work and personal setups now. The main motivating factors were roughly So many more packages were available in the Arch User Repository On Ubuntu/Mint I had accumulated ~100 custom installation scripts for new or obscure packages from git and assorted random web sites. With Arch the number of packages I have to script installation for is much smaller (a handful at most). Plus keeping....

There are typically two types of folks that want to have their own startup: Engineers / Technical folk who have the ability to create their own products / services / mobile apps / SAAS apps Business Folk who have a concept but don't have the ability to create their own technology There are exceptions to the rule – sometimes you will see someone who straddles these lines (I do; I'm both more than business savvy and I write code like demo....


A couple of days ago, when hooking up my laptop to my PC’s line input, I was met with an unacceptable noise that I found was coming from a ground...

Tailwind is a CSS grid library that is an alternative to Bootstrap and, well, something I'm increasingly using. Here are some handy, dandy Tailwind tools: Tailwind Home Page Tailwind Tutorial Tailwind Button Generator (written in Elm !!!!) Tailwind Grid Generator Tailwind Toolbox Tailwind Builder



Well it's the roaring 20's at last and here's the blogpost where I look back on the annual output of a machine I call "me". I spend a lot of time berating myself for the things I didn't do, so it's pretty odd to look back and see that a lot of things did get out the door. Numbers in parens, e.g. "(3,2,1)", are the figures from last year, the year before that and the year before that. 1 new product launched TimeSnapper for Mac . Jon ....

Well it's the roaring 20's at last and here's the blogpost where I look back on the annual output of a machine I call "me". I spend a lot of time berating myself for the things I didn't do, so it's pretty odd to look back and see that a lot of things did get out the door. Numbers in parens, e.g. "(3,2,1)", are the figures from last year, the year before that and the year before that. 1 new product launched TimeSnapper for Mac . Jon ....

Well it's the roaring 20's at last and here's the blogpost where I look back on the annual output of a machine I call "me". I spend a lot of time berating myself for the things I didn't do, so it's pretty odd to look back and see that a lot of things did get out the door. Numbers in parens, e.g. "(3,2,1)", are the figures from last year, the year before that and the year before that. 1 new product launched TimeSnapper for Mac . Jon ....

I am spending much of my time these days in the world of machine learning and I'm finding that it is profoundly interesting . One of the most interesting aspects of machine learning, for me, is the black box nature of machine learning's output. What we typically get from a machine learning model what the model thinks but not how it arrived at that result. And this lack of explainability is true for machine learning whether the underly....

Plants bookmarks - xenodium.com - 6 years ago - eng
Aechmea 'Blue Rain' Blue rain Bromeliad | House of Plants . Air-purifying Plants – Bakker.com . Citronella Mosquito Plant . Elm plants . Farm Hack . Guerilla Gardening (2015) | Hacker News . The Gardening Club® - Crews Hill, Enfield .

2019 in Review - una.im - 6 years ago - eng

Collapse, the word that is on everyone's lips in Lebanon. What does it mean, will Lebanon fall or survive, and what does the future have in store? "We can predict everything, except the future", I hear someone say, but can we at least get some possibilities.

Proponents of modern bible translations and the critical text in general argue that the KJV should be abandoned for ecclesiastical use. The two main arguments are (1) its archaic language, and (2) inferior Greek text. Firstly, biblical doctrine is complex, and if we want to reach the world, we should endeavor to remove as many obstacles as possible. The lowest hanging fruit appears to be the translation of the bible. We want it to be a....

Proponents of modern bible translations and the critical text in general argue that the KJV should be abandoned for ecclesiastical use. The two main arguments are (1) its archaic language, and (2) inferior Greek text. Firstly, biblical doctrine is complex, and if we want to reach the world, we should endeavor to remove as many obstacles as possible. The lowest hanging fruit appears to be the translation of the bible. We want it to be a....

I have uploaded the 3 hour hacking session video about Oracle instance state objects and how to read Oracle systemstate dumps to my YouTube channel: Note that as I just uploaded the video, you may want to wait for a few hours until YouTube publishes HD version (currently it’s available only at 360p, but that should change soon). The slides are in Slideshare: https://www.slideshare.net/tanelp/oracle-state-objects-and-system-..

I have uploaded the 3 hour hacking session video about Oracle instance state objects and how to read Oracle systemstate dumps to my YouTube channel: Note that as I just uploaded the video, you may want to wait for a few hours until YouTube publishes HD version (currently it’s available only at 360p, but that should change soon). The slides are in Slideshare: https://www.slideshare.net/tanelp/oracle-state-objects-and-system-..

I have been mentoring a person new to Rails for the past several weeks and it is always instructive to see where someone new to the platform has issues. This blog post walks through the commands we used today and explains them. If you're an old hat at this, just move on but if you're starting out, I suspect this may be quite helpful. Navigate to the Right Starting Directory cd /Users/sjohnson/Sync/coding/rails/ Make Sure Rails is Ok....


As the field of SE/CS is getting more press, graduates are flooding the market. Yet, the curriculum given in many universities still seems barren when it comes to professionalism, forcing newcomers to learn via unpolished street creds. Not only is it leading to mysticism about what skills are required but is also leading to a lack of discipline, duty, and craftsmanship.

A fully automated cleanup strategy. This is a comparison of different programming idioms for performing cleanup work. Common use cases where this is used include: Locking and unlocking synchronization locks. Opening and closing files. Canceling asynchronous operations that aren’t needed any more. Allocation and deallocation. A naive solution: Cluttered cleanups int frobnicate() { set_up(); int err = foo(); if (err) { clean_up();....

A fully automated cleanup strategy. This is a comparison of different programming idioms for performing cleanup work. Common use cases where this is used include: Locking and unlocking synchronization locks. Opening and closing files. Canceling asynchronous operations that aren’t needed any more. Allocation and deallocation. A naive solution: Cluttered cleanups int frobnicate() { set_up(); int err = foo(); if (err) { clean_up();....

A fully automated cleanup strategy. This is a comparison of different programming idioms for performing cleanup work. Common use cases where this is used include: Locking and unlocking synchronization locks. Opening and closing files. Canceling asynchronous operations that aren’t needed any more. Allocation and deallocation. A naive solution: Cluttered cleanups int frobnicate() { set_up(); int err = foo(); if (err) { clean_up();....

Rivian's Real Edge - zacs.site - 6 years ago - eng
James Temple, writing for MIT Technology Review in The Rivian pickup’s real edge over Tesla’s Cybertruck isn’t its battery , emphasis mine: Permalink.

Denver Skyline from a Remote Worker's Office; Photo Credit - Kim Corbett; Thank You) I have been, with one 9 month exception, a fully remote worker since 1999 and a manager of remote workers since 1996. Heading into 2020 that puts me at over 20 years of solid, day in and day out remote work so, I'll admit, that I know a thing or two about remote work. I've both been a remote worker, managed remote workers and I think all possible perm....

VWO puts a lot of focus on ensuring websites remain performant enough while using VWO. We have been increasing the efforts in this area and…

pfxsigner v0.1.0 - nadh.in - 6 years ago - eng

pfxsigner v0.2.0 - nadh.in - 6 years ago - eng
Repository: @knadh/pfxsigner GitHub release page: v0.2.0 Changelog f8bb4b9 Merge pull request #1 from mr-karan/docker 5608a6b feat: Add github actions 79b9368 feat: Dockerize pfxsigner 79156c7 feat: Add healthcheck and index handler in server.go 925cd92 feat: Remove repetitive usage of PHONY in Makefile e5de425 feat: Add .gitignore to project Docker images docker pull kailashnadh/pfxsigner:latest docker pull kailas..


On the 11th of December, 2019 a security vulnerability which extends to all major JavaScript package managers (npm, yarn and pnpm) was publicly disclosed. This vulnerability, discovered by security researcher Daniel Ruf, allows malicious actors to apply varied tactics of arbitrary file overwrites.

Nikita Prokopov, on the growing complexity of software and the shrinking number of people who understand it: “In programming, we are developing abstractions at an alarming rate. When enough of those are stacked, it becomes impossible to figure out or control what’s going on down the stack. ... Docker and Electron are the most hyped new technologies of the last five years. Both are not about improving things, figuring out complexity or r....

Photo Credit - Lisa Meece ; Thank You) Hi Bob , I strongly doubt you remember but I met you years ago as part of the Boston Blogging group that Dave Winer used to organize. About the same time I also met Dan Bricklin . I wanted to make a suggestion to you. I've been subscribed to you in my aggregator for a long time but due to the design of aggregators, it isn't clear if a post in the aggregator is full content or summary. Her....





I took some time to update Keeping Up with Current Events and My Evening Reads over the holidays, which involved adding Matt Stoller’s excellent newsletter BIG to the list of sources that help me stay informed. His most recent issue, Trump’s Surprising Embrace of Industrial Policy to Fight China , is a prime example of the shrewd analysis that makes it so interesting. This issue is a great way to start the new year, and new s..

I’m setting up my old laptop next to my desktop. Currently my desktop, running Windows 10, is connected to an old Creative X-Fi USB sound card that’s no longer supported....

In 2020, I want to give a talk a month about random security topics. Not extreme detail in either, but scratching the surface of many.

As I write this it is 3:45 am and I am playing with Python. I have a small script that looks like this: import pandas as pd DATA_PATH = "data/" filename = "file.json" train_sample_size = 45000 dataset = pd . read_json ( os . path . join ( DATA_PATH , filename ), lines = True ) dataset_test = dataset . copy (). sample ( train_sample_size ). reset_index () dataset_head ....


3 visitors online