Links
Add
Broken
Yann LeCun Has Been Right About AI for 40 Years. Now He Thinks Everyone Is Wrong. - WSJ
https://www.wsj.com/tech/ai/yann-lecun-ai-meta-0058b13c
Added 5 months ago
Building a WordPress virtualization solution using LXD/LXC containers - Bobcares
https://bobcares.com/blog/wordpress-hosting-using-lxd-lxc-server-virtualization-solution/
Server virtualization solution like LXC/LXD gives you a great way to easily provision high performance, secure, SEO friendly WordPress websites.
Added 9 years ago
Broken
NH_shitbags (u/NH_shitbags) - Reddit
https://www.reddit.com/user/NH_shitbags/
Added 9 months ago
Pomodoro Technique® Considered Harmful (don’t worry: you are not using it) | Arialdo Martini
https://arialdomartini.wordpress.com/2014/05/19/pomodoro-technique-considered-harmful-dont-worry-you-are-not-using-it/
So, you have your shining, ticketing, tomato-shaped timer on your desk and you are a proud practitioner of the Pomodoro Technique®. I've got bad news and good news. The bad news is the Pomodoro Technique® can seriously damage your team's productivity. The good news is that it's very likely that you are not practicing the…
Added 10 years ago
Researching your MySQL table sizes - MySQL Performance Blog
https://www.percona.com/blog/2008/03/17/researching-your-mysql-table-sizes/
a simple INFORMATION_SCHEMA query to find largest MySQL tables
Added 10 years ago
nabla-c0d3/ssl-kill-switch2: Blackbox tool to disable SSL certificate validation - including certificate pinning - within iOS and macOS applications.
https://github.com/nabla-c0d3/ssl-kill-switch2
Blackbox tool to disable SSL certificate validation - including certificate pinning - within iOS and macOS applications. - nabla-c0d3/ssl-kill-switch2
modernc.org/sqlite with Go - The IT Solutions
https://theitsolutions.io/blog/modernc.org-sqlite-with-go
I had long been aware of the [effort of cznic](https://gitlab.com/cznic/sqlite) to automatically translate the C source of SQLite to Go while avoiding the complexity CGo would introduce. SQLite was always meant to be a database you embed into your application, and I was curious what tradeoffs that meant, if any, and just generally how it differed from the usual suspects (PostgreSQL, etc.).
To explore these trade-offs and differences, I decided to dive deeper into the usage of this library.
SQLite is a single-writer multiple-reader database. Using just a single instance of database/sql.DB will not work well with this, because it will make it hard to avoid receiving SQLITE_BUSY errors when multiple writers try to run at the same time (because sql.DB is a connection pool). So we will need to separate readers from writers by making two instances of database/sql.DB and limiting the writer to a single [MaxOpenConn](https://pkg.go.dev/database/sql#DB.SetMaxOpenConns) and the reader to as many as you require.
So far, SQLite is behaving remarkably like other databases apart from the single-writer gotcha; we still have connections and per-connection settings. The usual way to pass these settings is usually in the DSN you pass to [sql.Open](https://pkg.go.dev/database/sql#Open) and this is [definitely possible](https://pkg.go.dev/modernc.org/sqlite#Driver.Open), but I find that it would be more straightforward if I could just run my custom SQL when a new connection is made[1]. We can do that with [sqlite.RegisterConnectionHook](https://pkg.go.dev/modernc.org/sqlite#RegisterConnectionHook).
Now the question is what settings to use, because [there are quite a few of them](https://www.sqlite.org/pragma.html). These are the ones I am using personally:
- `PRAGMA journal_mode = WAL;`
Use write-ahead-logging. Better concurrency, but with an edge-case: with heavy writers, the wal can grow idefinitely ([see for more](https://www.sqlite.org/cgi/src/doc/wal2/doc/wal2.md)). I don't expect this will happen in my use-case. For a good description on the various jornal modes, [see this blogpost](https://www.mycelial.com/learn/sqlite-journal-mode-options).
- `PRAGMA synchronous = NORMAL;`
Since with the WAL journal mode, this is safe, there is no reason to use FULL.
- `PRAGMA temp_store = MEMORY;`
Let's store temporary indices, tables, etc. in memory, my use-case is not very resource-constrained to require using the filesystem (also, [this is a fun read](https://www.sqlite.org/fasterthanfs.html) if we are talking about additional syscalls to the kernel)
- `PRAGMA mmap_size = 30000000000; -- 30GB`
Just making sure, access to my database is always done with memory-mapped I/O.
- `PRAGMA busy_timeout = 5000;`
How much time to wait in milliseconds after which SQLITE_BUSY is returned when waiting for the db to unlock.
- `PRAGMA automatic_index = true;`
Make sure [automatic indexing](https://www.sqlite.org/optoverview.html#autoindex) is enabled, it can only help, and is a great way to get warnings about indexes that should be created.
- `PRAGMA foreign_keys = ON;`
Make sure foreign key enforcement is enabled.
- `PRAGMA analysis_limit = 1000;`
Make sure [ANALYZE](https://www.sqlite.org/lang_analyze.html#approx) returns quickly in case the DB gets large.
- `PRAGMA trusted_schema = OFF;`
No idea what security audited functions are, but this setting makes sure only those can be run. The manual page tells me to turn it off anyway, so let's do that.
Not all of these settings are per-connection settings, but it doesn't hurt to always run all of these on every connection, and having a single "Init SQL" makes things simpler.
Let's deal with explicit transactions next. The default transaction mode is DEFERRED, meaning that it depends on the next statement what type of transaction is started (if a SELECT statement comes first, a read transaction is started, with the possibility of upgrading it to a write transaction depending on the statements that follow). With our setup, there should never be multiple writers concurrently, so making all transactions write transactions from the get-go (with BEGIN IMMEDIATE) can only help us show if this invariant is violated.
Putting this all together, this is the code we arrive at:
```go
package main
import (
"bytes"
"context"
"crypto/sha1"
"database/sql"
"database/sql/driver"
"encoding/hex"
"fmt"
"time"
"modernc.org/sqlite"
)
type DB struct {
dbPath string
Read *sql.DB
Write *sql.DB
}
const initSQL = `
PRAGMA journal_mode = WAL;
PRAGMA synchronous = NORMAL;
PRAGMA temp_store = MEMORY;
PRAGMA mmap_size = 30000000000; -- 30GB
PRAGMA busy_timeout = 5000;
PRAGMA automatic_index = true;
PRAGMA foreign_keys = ON;
PRAGMA analysis_limit = 1000;
PRAGMA trusted_schema = OFF;
`
func New(ctx context.Context, dbPath string) (db *DB, err error) {
db = &DB{
dbPath: dbPath,
}
// make sure every opened connection has the settings we expect
sqlite.RegisterConnectionHook(func(conn sqlite.ExecQuerierContext, _ string) error {
_, err = conn.ExecContext(ctx, initSQL, nil)
return err
})
write, err := sql.Open("sqlite", "file:"+db.dbPath)
if err != nil {
return
}
// only a single writer ever, no concurrency
write.SetMaxOpenConns(1)
write.SetConnMaxIdleTime(time.Minute)
if err != nil {
return
}
read, err := sql.Open("sqlite", "file:"+db.dbPath)
if err != nil {
return
}
// readers can be concurrent
read.SetMaxOpenConns(100)
read.SetConnMaxIdleTime(time.Minute)
db.Read = read
db.Write = write
return
}
func (db *DB) InTransaction(ctx context.Context, tx func(context.Context, *sql.Conn) error) (err error) {
// cancel anything that takes longer than 5 seconds
var cancel func()
ctx, cancel = context.WithTimeout(ctx, time.Duration(5*time.Second))
defer cancel()
// separate conn thats just for us
// so that the transactions queries are executed together
conn, err := db.Write.Conn(ctx)
if err != nil {
return
}
defer conn.Close()
_, err = conn.ExecContext(ctx, "BEGIN IMMEDIATE TRANSACTION")
if err != nil {
return
}
defer func() {
if r := recover(); r != nil || err != nil {
if _, err = conn.ExecContext(ctx, "ROLLBACK"); err != nil {
return
}
}
}()
err = tx(ctx, conn)
if err != nil {
return
}
_, err = conn.ExecContext(ctx, "COMMIT")
return
}
```
Just as a small added bonus, it's also very easy to register our own go functions that we can then call from SQL. In this example, we define the sha1 function, receiving and returning a single argument, and always returning the same output for the same input (thus the deterministic). For more information, [see the docs](https://www.sqlite.org/appfunc.html)
```go
func registerFuncs() {
// lets add our own sha1 hash function usable from SQL
sqlite.MustRegisterDeterministicScalarFunction(
"sha1",
1,
func(ctx *sqlite.FunctionContext, args []driver.Value) (driver.Value, error) {
var arg *bytes.Buffer
switch argTyped := args[0].(type) {
case string:
arg = bytes.NewBuffer([]byte(argTyped))
case []byte:
arg = bytes.NewBuffer(argTyped)
default:
return nil, fmt.Errorf("expected argument to be a string, got: %T", argTyped)
}
h := sha1.Sum(arg.Bytes())
return hex.EncodeToString(h), nil
},
)
}
```
In conclusion, this solution works perfectly well for most of the usage scenarios out there where immense scaling is neither expected nor needed. There are faster ways to use SQLite with Go (see the [excellent cvilsmeier benchmarks](https://github.com/cvilsmeier/go-sqlite-bench)), but its still plenty-fast enough, and avoiding CGo makes it very convenient also.
[1]: This is another thing that database/sql.DB being a connection pool makes harder.
Added 10 months ago
Join Our Team - Rocky Mountain Tech Team
https://www.rmtechteam.com/jobs/
RMTT serves small and medium business with all technology related needs—a one stop shop for IT needs. We are a growing company with a relaxed work environment that encourages implementation of new technology and creativity. We've been successful because we encourage and appreciate customer service and being nice to people.
Apply Online
Chris's Wiki :: blog/unix/OpenBSDPfRedirIssue
https://utcc.utoronto.ca/~cks/space/blog/unix/OpenBSDPfRedirIssue?showcomments#comments
Added 7 months ago
A Nickel's Worth: A Guide to Naming Variables
https://a-nickels-worth.blogspot.com/2016/04/a-guide-to-naming-variables.html?m=1
Added 2 years ago
Simple Lives Thursday #211 - Homespun Oasis
http://homespunoasis.com/simple-lives-thursday-211/
This page may contain affiliate links. As an Amazon Affiliate, I earn on qualifying purchases. Please see our disclaimer for more information. Welcome back to Simple Lives Thursday! Each week we enjoy reading through all of the wonderful tips, ideas and recipes for simple living. If you are new here, Hello! And enjoy the Simple […]
Added 8 years ago
Using a Yubikey as a touchless, magic unlock key for Linux | Kevin Liu
https://kliu.io/post/yubico-magic-unlock/
Yubikeys are great for security, but their benefits decrease somewhat when you leave them in your computer unattended. I also have login passwords that are way too long. How to solve these problems? Use a Yubikey to unlock your computer!
Added 10 months ago
Asterisk – SIP + TLS – Stuff I'm Up To
https://warlord0blog.wordpress.com/2020/04/13/asterisk-sip-tls/
Given that the SIP credentials passed by Asterisks real-time backends are stored as either MD5 or plain-text It's best that we think about securing the communication over TLS. Modify the pjsip.conf to point to your certificates. I got mine using certbot and Lets Encrypt, then copied them into the etc/asterisk/keys folder as this seems to…
Added 4 years ago
memoryleak (Haydar Ciftci)
https://github.com/memoryleak
Software Engineering Manager interested in all kinds of development related topics. Strong focus on automating workflows and lean development processes. - memoryleak
Added 1 year ago
Dartmouth College Applicant Portal | Home
https://searchjobs.dartmouth.edu/
Wesley David SysAdmin Consultant | The Nubby Admin
http://thenubbyadmin.com/about/
Added 10 years ago
Fascinating vintage promo film on the making of Stanley Kubrick’s ‘2001: A Space Odyssey’ | Dangerous Minds
http://dangerousminds.net/comments/fascinating_vintage_promo_film_on_the_making_of_stanley_kubricks_2001_a_spa
In 1964, Stanley Kubrick wrote to Arthur C. Clarke. He told the science fiction author he was a “a great admirer” of his books, and “had always wanted to discuss with [him] the possibility of doing the proverbial really good science-fiction movie.”
Kubrick briefly outlined his ideas:
My main interest lies along these broad areas, naturally assuming great plot and character:
The reasons for believing in the existence of intelligent extra-terrestrial life.
The impact (and perhaps even lack of impact in some quarters) such discovery would have on Earth in the near future.
A space probe with a landing...
Added 10 years ago
9 Tips for Going in Production with Galera Cluster for MySQL | Severalnines
http://www.severalnines.com/blog/9-tips-going-production-galera-cluster-mysql
Are you going in production with Galera Cluster for MySQL? Here are 9 tips to consider before going live. These are applicable to all 3 Galera versions (Codership, Percona XtraDB Cluster and MariaDB Galera Cluster).
Added 10 years ago
Pirate Radio Stations Broadcasting On Shortwave Radio
http://freeradiocafe.com/
Things to do after installing Debian Jessie - Daily Linux News
http://www.dailylinuxnews.com/blog/2014/09/things-to-do-after-installing-debian-jessie/
Added 10 years ago
Blog - Sam Stelfox - Software Engineer & Linux Gubernāre
https://stelfox.net/blog/
I periodically post various thoughts, tips, and frustrations with software. My writing style has changed over time, for the better I believe, so please forgive my younger self. Frequently the topics are related to errors that may no longer be present in the software that provoked my ire so I recommend double checking the content with official documentation where possible.
Added 9 years ago
jh00nbr/Routerhunter-2.0 - Python - GitHub
https://github.com/jh00nbr/Routerhunter-2.0
Added 10 years ago
Hatnote Recent Changes Map
http://rcmap.hatnote.com/#en
A map of recent contributions to Wikipedia from unregistered users.
Added 10 years ago
Simple FLAC implementation
https://www.nayuki.io/page/simple-flac-implementation
Koko's Farewell to Mister Rogers | koko.org
http://www.koko.org/node/1894
Ndume always keeps a protective eye out for Koko, especially when they"re in the yard together. Here, he stands guard while Koko looks for food.
Added 10 years ago
The ultimate OpenBSD router | Hacker News
https://news.ycombinator.com/item?id=9482696
Added 10 years ago
Using sudo in Fabric | Lauri Soivi
https://soivi.net/2013/using-sudo-in-fabric/
I’m using Xubuntu 12.04.03 32bit
Added 10 years ago
GitHub - klaussilveira/gitlist: An elegant and modern git repository viewer
https://github.com/klaussilveira/gitlist?tab=readme-ov-file
An elegant and modern git repository viewer. Contribute to klaussilveira/gitlist development by creating an account on GitHub.
How to love your job and avoid burnout — Quartz at Work
https://qz.com/work/1571065/how-to-love-your-job-and-avoid-burnout/
Meaning is not found, but made.
Added 7 years ago
Impossible to use shared CARP WAN IP for outbound traffic | Netgate Forum
https://forum.netgate.com/topic/93831/impossible-to-use-shared-carp-wan-ip-for-outbound-traffic/18
So, thanks to everyone!! Was an issue related to the specific IP. In love with Pfsense again :)
Added 7 years ago
Tim Wise - Wikipedia, the free encyclopedia
https://en.wikipedia.org/wiki/Tim_Wise
Added 10 years ago
Understanding PDF Generation with Headless Chrome | Grio Blog
https://blog.grio.com/2020/08/understanding-pdf-generation-with-headless-chrome.html
Headless browsers are currently gaining popularity as an efficient way to test web applications because they do not affect the user interface. In this post, I am going to discuss the benefits of Headless Chrome and two approaches for using Headless Chrome to automatically create PDF reports. What is Headless Chrome? Headless Chrome is a…
Added 10 months ago
GitHub - peelman/redmine_departments: Departments Plugin for Redmine
https://github.com/peelman/redmine_departments
Departments Plugin for Redmine. Contribute to peelman/redmine_departments development by creating an account on GitHub.
Added 4 years ago
How To Install and Configure Postfix as a Send-Only SMTP Server on Ubuntu 14.04 | DigitalOcean
https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-postfix-as-a-send-only-smtp-server-on-ubuntu-14-04
Postfix is an MTA (Mail Transfer Agent), an application used to send and receive email. In this tutorial, we will install and configure Postfix so that it ca…
Added 10 years ago
SublimeLinter - Packages - Package Control
https://packagecontrol.io/packages/SublimeLinter
Added 1 year ago
2025-05-11 air traffic control
https://computer.rip/2025-05-11-air-traffic-control.html
Added 11 months ago
USB-WiFi/home/The_Short_List.md at main · morrownr/USB-WiFi · GitHub
https://github.com/morrownr/USB-WiFi/blob/main/home/The_Short_List.md
USB WiFi Adapter Information for Linux. Contribute to morrownr/USB-WiFi development by creating an account on GitHub.
GitHub - mollyim/mollyim-android: Enhanced and security-focused fork of Signal.
https://github.com/mollyim/mollyim-android
Enhanced and security-focused fork of Signal. Contribute to mollyim/mollyim-android development by creating an account on GitHub.
Added 5 months ago
GitHub - evolvingweb/redmine_slack
https://github.com/evolvingweb/redmine_slack
Contribute to evolvingweb/redmine_slack development by creating an account on GitHub.
Added 10 months ago
ASCII Art Generator - Online "HD" Color Image to Text Converter ▄▀▄▀█▓▒░
https://asciiart.club/
High-def online color ascii art generator! Easily convert pictures to text art and share easier than ever! Supports many character sets...
Added 9 months ago
Audio Data Analysis
https://apmonitor.com/dde/index.php/Main/AudioAnalysis
High School Coding - Computer Programming Courses
http://precollege.flatironschool.com/
Added 10 years ago
ubuntu - how to configure asterisk instant messaging - Stack Overflow
https://stackoverflow.com/questions/23108706/how-to-configure-asterisk-instant-messaging
Added 8 years ago
Overview | PyPortal Roku Remote | Adafruit Learning System
https://learn.adafruit.com/pyportal-roku-remote/overview
This project lets you use a PyPortal to control a Roku media device
How I ported pigz from Unix to Windows
https://blog.kowalczyk.info/article/4/how-i-ported-pigz-from-unix-to-windows.html
Added 10 months ago
Job Application for General Application at GreyNoise Intelligence
https://boards.greenhouse.io/greynoiseintelligence/jobs/4100492005?gh_jid=4100492005
United States or Remote
Keybase
https://keybase.io/
Keybase is for keeping everyone's chats and files safe, from families to communities to companies. MacOS, Windows, Linux, iPhone, and Android.
Added 10 months ago
Feeds I read... | Mohammed Sameer's Online Aggregator
http://aggregator.foolab.org/feeds
Added 9 years ago
Perfect Workflow in Sublime Text: Free Course! - Tuts+ Code Article
http://code.tutsplus.com/articles/perfect-workflow-in-sublime-text-free-course--net-27293
Added 10 years ago
Whitelisting IPs in OSSEC | Geek Cabinet
https://geekcabi.net/posts/ossec-whitelisting/
All of this was prior to the latest versions of Security Onion which now run inside docker instances. I’ve not yet looked to see how this would be replicated there. But I’m leaving this up for historical purposes.
Another tool in the arsenal of Security Onion is OSSEC, a “scalable, multi-platform, open source Host-based Intrusion Detection System (HIDS).” OSSEC examines log and alert events and correlates them against pre-built (or custom) rules and sends alerts as configured. When installed on the Security Onion server, OSSEC alerts are logged in the sguil database and managed alongside alerts from the network IDS.
ESP8266 + ds18b20 + thingspeak+ nodemcu | Vaasa Hacklab
http://vaasa.hacklab.fi/2015/01/12/esp8266-ds18b20-thingspeak-nodemcu/
Update: 2016-02-06.
New greatly updated tutorial in new post with NodeMCU dev board and ArduinoIDE. A lot simpler approach.
Update: 2015-04-11.
Update with deep sleep now in new post. Testing the battery operation time in progress.
Update: 2015-03-18.
Updated the connection drawing with upda
Added 10 years ago
cldrn (Paulino Calderon) · GitHub
https://github.com/cldrn
Network/Application security specialist | Open Source contributor | @nmap NSE developer | websec.mx & websec.ca | @pwnlabmx - cldrn
Added 1 year ago
Set up Windows 11 without internet - oobe\bypassnro - Microsoft Q&A
https://learn.microsoft.com/en-us/answers/questions/2350856/set-up-windows-11-without-internet-oobebypassnro?forum=insider-all&referrer=answers
Ok, now on Insider builds you can't get it past anymore by killing OOBE Connection Flow. This is just nonsense.
How are we supposed to set up PCs that don't have any Wi-Fi/Ethernet drivers in the first place?
When killing Connection Flow you just get…
Added 5 months ago
Caller ID in SIP and Asterisk – Part 2 – The Smartvox Knowledgebase
http://kb.smartvox.co.uk/asterisk/how-it-works/caller-id-in-sip-and-asterisk-part-2/
Added 10 years ago
SoundPoint® IP 335 - Support - Polycom
http://support.polycom.com/PolycomService/support/apac/support/voice/soundpoint_ip/soundpoint_ip335.html
Added 10 years ago
Slide 1
https://www.bicsi.org/uploadedFiles/BICSI_Website/Global_Community/Presentations_and_Photos/Caribbean/2012_Fall/3.0%20Nextar%20Network%20Design.pdf
Added 8 years ago
Major Lazer & DJ Snake - Lean On (feat. MØ) [1 Hour] - YouTube
https://www.youtube.com/watch?v=x0xWoK5QEBQ
Auf YouTube findest du die angesagtesten Videos und Tracks. Außerdem kannst du eigene Inhalte hochladen und mit Freunden oder gleich der ganzen Welt teilen.
Added 10 years ago
SSH Agent Forwarding considered harmful
https://heipei.github.io/2015/02/26/SSH-Agent-Forwarding-considered-harmful/
Added 10 years ago
Quand les attitudes deviennent forme - Studio XX
http://dev.studioxx.org/events/performance-3/
Added 10 years ago
Netgate SG-1000 microFirewall Appliance
https://www.netgate.com/solutions/pfsense/sg-1000.html
Added 8 years ago
GitHub - turtle0x1/LxdMosaic: Web interface to manage multiple instance of lxd
https://github.com/turtle0x1/LxdMosaic
Web interface to manage multiple instance of lxd. Contribute to turtle0x1/LxdMosaic development by creating an account on GitHub.
Added 8 months ago
LAN Turtle – HakShop
https://hakshop.myshopify.com/collections/lan-turtle/products/lan-turtle
Drop a LAN Turtle. Get a Shell. The LAN Turtle is a covert Systems Administration and Penetration Testing tool providing stealth remote access, network intelligence gathering, and man-in-the-middle surveillance capabilities through a simple graphic shell. Housed within a generic "USB Ethernet Adapter" case, the LAN Tur
Added 10 years ago
Hillary's sysadmin left VNC, RDP exposed to the internet - report • The Register
http://www.theregister.co.uk/2015/10/14/hillarys_sysadmin_next_to_the_pillory/
Presidential candidate's email server wasn't very private after all ...
Added 10 years ago
62 Best Cabin Plans with Detailed Instructions - Log Cabin Hub
https://www.logcabinhub.com/cabin-plans/
When it comes to building your dream log cabin, the design of your cabin plan is an ess
Added 7 years ago
RetroStrange TV
https://live.retrostrange.com/
A community-supported 24/7 streaming TV channel based on public domain media and original content. Support us at http://patreon.com/philnelson
Grafana - Beautiful Metrics, Analytics, dashboards and monitoring!
http://grafana.org/
Grafana is the open source analytics & monitoring solution for every database.
Added 9 years ago
Logging nginx to remote loghost with syslog-ng. - shell script - nginx, loghost, remote logging, syslog-ng
http://snippets.aktagon.com/snippets/247-logging-nginx-to-remote-loghost-with-syslog-ng-
Added 10 years ago
VoIP: SIP-over-TLS and sRTP: Grandstream
https://www.traud.de/voip/grandstream.htm
Added 4 years ago
Rubble Trench Foundation
http://naturalhomes.org/permahome/rubble-trench-foundation.htm
The Rubble Trench Foundation is cheap, simple, effective and a favourite among natural builders.
Added 10 years ago
Researching The FAX Machine Attack Surface | X41 D-SEC GmbH
https://www.x41-dsec.de/lab/blog/fax/
X41 Researched into the security of FAX machines and identified remotely exploitable vulnerabilities.
Added 7 years ago
Snow Pond Technology Group | Providing technology solutions to Maine businesses since 2004.
https://snowpondtech.com/
Providing technology solutions to Maine businesses since 2004.
Broken
Capturing LLDP Packets Using tcpdump | Baeldung on Linux
https://www.baeldung.com/linux/tcpdump-lldp-packets-cli
Added 1 year ago
Suprême NTM - Qu'est-ce Qu'on Attend - Uncensored - YouTube
https://www.youtube.com/watch?v=Fk3I7SL6Vek
Auf YouTube findest du die angesagtesten Videos und Tracks. Außerdem kannst du eigene Inhalte hochladen und mit Freunden oder gleich der ganzen Welt teilen.
Added 9 years ago
Salt Typhoon Hack Keeps Getting Worse, Telecoms Tell Employees To Stop Looking For Evidence Of Intrusion | Techdirt
https://www.techdirt.com/2025/06/20/salt-typhoon-hack-keeps-getting-worse-telecoms-tell-employees-to-stop-looking-for-evidence-of-intrusion/
Late last year, eight major U.S. telecoms were the victim of a massive intrusion by Chinese hackers who managed to spy on public U.S. officials for more than a year. The “Salt Typhoon” hack was so severe, the intruders spent a year rooting around the ISP networks even after discovery. AT&T and Verizon, two of the compromised companies,…
Added 10 months ago
Crackjet | Simplified, Magnified, Futurified
http://www.crackjet.com/
Notebooks for the future references
Added 10 years ago
Every Default macOS Wallpaper – in Glorious 5K Resolution – 512 Pixels
https://512pixels.net/projects/default-mac-wallpapers-in-5k/
Every major version of Mac OS X macOS has come with a new default wallpaper. As you can see, I have collected them all here. While great in their day, the early wallpapers are now quite small in the world of 5K and 6K displays. If you want to see detailed screenshots of every release […]
Added 6 years ago
How do I install and run a TFTP server? - Ask Ubuntu
https://askubuntu.com/questions/201505/how-do-i-install-and-run-a-tftp-server
Added 9 years ago
OpenProject - Open Source Project Management Software
https://www.openproject.org/
Open source project management software for classic, agile or hybrid project management: task management✓ Gantt charts✓ boards✓ team collaboration✓ time and cost reporting✓ FREE trial!
Added 10 months ago
Automatic tmux titles - Arabesque
http://blog.sanctum.geek.nz/automatic-tmux-titles/
Added 10 years ago
Broken
Making a bootable Windows 10 ISO within Linux by using wimlib tool - Windows 10 Forums
https://www.tenforums.com/installation-upgrade/207565-making-bootable-windows-10-iso-within-linux-using-wimlib-tool.html
Added 10 months ago
Icecast HTTPS/SSL with Let's Encrypt: Setup Guide - Media Realm
https://www.mediarealm.com.au/articles/icecast-https-ssl-setup-lets-encrypt/
Ubuntu 14.04 LXC Setup with Unprivileged Containers | Nick's Blog
http://blog.lifebloodnetworks.com/?p=2118
Added 10 years ago
William Bilancio - System Administration, Blogging, Conference Organizing, LOPSA, Cooking, BBQ
https://bilancio.org/
Radio DJ and Owner, Antiques Dealer, Comic Book Collector, Writer, Philosopher, Photographer, Traveler, Foodie, Cook, BBQ Pitmaster and Judge
Added 10 years ago
CAIDA: Center for Applied Internet Data Analysis
http://www.caida.org/home/
CAIDA conducts network research and builds research infrastructure to support large-scale data collection, curation, and data distribution to the scientific research community.
Added 8 years ago
wow! so remote! such jobs! wow!
https://remotive.com/
Find the best remote job, working as a developer, customer support rep, product or sales professional... See openings in our categories. All jobs are hand curated and allow remote work. We serve the best work from home jobs in popular categories. Talent is everywhere, work remotely today!
Independent Consultants, On-Demand Experts - Business Talent Group
https://businesstalentgroup.com/
Need independent consultants, on-demand experts, consulting teams, or project leaders for project-based work? Access Business Talent Group’s marketplace of high-end management consultants, subject matter experts, boutiques, and executives today!
Let’s encrypt Postfix and Dovecot – Skippy's Random Ramblings
https://skippy.org.uk/lets-encrypt-postfix-and-dovecot/
Added 9 years ago
CBS News investigation of Jeffrey Epstein jail video reveals new discrepancies - CBS News
https://www.cbsnews.com/news/jeffrey-epstein-jail-video-investigation/
A CBS News investigation found discrepancies between the government's description of the Jeffrey Epstein jail video and what the video shows.
Added 9 months ago
VLAN numbering | IT Help and Support
https://help.uis.cam.ac.uk/service/network-services/techref/vlan-numbering
Jump to: Scheme details, VLANs 1-999, VLANs 1000-4094 VLANs using IEEE 802.1Q are given tags/IDs between 1 and 4094. These tags can be used on links between the University Data Network (UDN - the University backbone network) and institutional networks and must match at both ends.
Added 9 months ago
$25 NanoPi R3S LTS Router Board Adds HDMI and Speaker Support in Updated Design $25 NanoPi R3S LTS Router Board Adds HDMI and Speaker Support in Updated Design
https://linuxgizmos.com/25-nanopi-r3s-lts-router-board-adds-hdmi-and-speaker-support-in-updated-design/
FriendlyElec has released the NanoPi R3S LTS, an updated version of its compact single-board network platform based on the Rockchip RK3566. This revision introduces key hardware changes, including HDMI 2.0 video output, a repositioned USB 3.0 Type-A port, and a more refined peripheral layout, while retaining dual gigabit Ethernet and broad software support.
Added 10 months ago
Basic Woodworking Methods
http://www-personal.umich.edu/~mrwizard/wkshps/gen/horses.html
Added 7 years ago
Bringing A Legacy Pager Network Back to Life | Hackaday
http://hackaday.com/2014/12/30/bringing-a-legacy-pager-network-back-to-life/
[Jelmer] recently found his old pager in the middle of a move, and decided to fire it up to relive his fond memories of receiving a page. He soon discovered that the pager’s number was no lon…
Added 10 years ago
www.sunbiz.org - Department of State
http://www.sunbiz.org/scripts/ficidet.exe?action=DETREG&docnum=G09000158184&rdocnum=G09000158184
Added 10 years ago
Implementing IPsec Transport Mode
http://andersonfam.org/2014/04/02/ipsec-transport-mode/
Added 7 years ago
myPlanetGanja.com • View topic - Joined 6 years, 3 months, 4 weeks, 1 day, and 8 hours ago.
http://www.myplanetganja.com/viewtopic.php?f=13&t=11022&start=240
Added 10 years ago
Tesla’s Cybertruck flop is historic. The brand collapse is even worse
https://www.dailykos.com/stories/2025/7/3/2331384/-Tesla-s-Cybertruck-flop-is-historic-The-brand-collapse-is-even-worse
Elon Musk bet big on the Cybertruck.
It didn’t emerge from focus groups, mimic successful truck models, or even resemble Tesla’s own—at the time—successful S, X, 3, and Y lines. It was an ...
Added 10 months ago
Grateful Dead Symbols De-Coded part 3: The Terrapin | Grateful Dead Music
https://gratefuldead-music.com/?q=article/grateful-dead-symbols-de-coded-part-3-terrapin
Added 6 years ago
virtualization - What range of MAC addresses can I safely use for my virtual machines? - Server Fault
https://serverfault.com/questions/40712/what-range-of-mac-addresses-can-i-safely-use-for-my-virtual-machines
Added 10 years ago
GitHub - pepe2k/u-boot_mod: U-Boot 1.1.4 modification for routers
https://github.com/pepe2k/u-boot_mod
U-Boot 1.1.4 modification for routers. Contribute to pepe2k/u-boot_mod development by creating an account on GitHub.
Added 9 years ago
Garthwaite.org // Salient Dev and Salty Ops
https://garthwaite.org/
Garthwaite.org, Salient Dev and Salty Ops