Links
Add
magnolia1234/magnolia1234: Bypass Paywalls Clean extension
https://gitflic.ru/project/magnolia1234/magnolia1234
Bypass Paywalls Clean extension
Added 1 month ago
making the ubnt wifi awesome (uap ac lite) w/ openwrt
https://gist.github.com/lg/998d3e908d547bd9972a6bb604df377b
making the ubnt wifi awesome (uap ac lite) w/ openwrt - uap-ac-lite-openwrt.txt
Added 7 years ago
manubot/rootstock: Clone me to create your Manubot manuscript
https://github.com/manubot/rootstock
Clone me to create your Manubot manuscript. Contribute to manubot/rootstock development by creating an account on GitHub.
Added 10 months ago
manuel-freire/ac2: Source code plagiarism detection tool
https://github.com/manuel-freire/ac2
Source code plagiarism detection tool. Contribute to manuel-freire/ac2 development by creating an account on GitHub.
Added 9 months ago
marcoschuh.de » Let (Open)solaris (neta)talk to Lion about TimeMachine
http://marcoschuh.de/wp/?p=839
Added 9 years ago
markasoftware’s gists
https://gist.github.com/markasoftware
GitHub Gist: star and fork markasoftware's gists by creating an account on GitHub.
Added 4 months ago
matthiasbock/dymo-cups-drivers: Inofficial repository for Dymo's offical FOSS CUPS printer drivers for Linux
https://github.com/matthiasbock/dymo-cups-drivers
Inofficial repository for Dymo's offical FOSS CUPS printer drivers for Linux - matthiasbock/dymo-cups-drivers
Added 4 months ago
media.ccc.de - Forging the USB armory
https://media.ccc.de/v/31c3_-_6541_-_en_-_saal_2_-_201412281730_-_forging_the_usb_armory_-_andrea_barisani#t=308
Added 7 years ago
mediafile – Grateful Dead streaming vault
https://gratefuldeadvault.wordpress.com/mediafile/
(~)};) jerryradio.com/downloads GDead & Jerry Garcia Band mp3bretmiller.com/downloads GDead & Jerry Garcia Band mp3 mediafire.com/Grateful Dead SBDs shared by sgrmag741974-05-21 Edmundson Pavilion, University of Washington1976-06-14 Beacon Theatre, New YorkFall 1979 Road Trips 1.1 + Bonus Fall 1979 East Coast 'RT 1.1'1990-03-14/16 Capital Centre Landover, MD mediafire.com/Grateful_Dead SBDs shared by CandymanDick's Picks 1-36,Dave's Picks 1-22,Dave's Picks Bonus 2012-2016 (2012 7/29/74,2013…
mediafile – Grateful Dead streaming vault
https://gratefuldeadvault.wordpress.com/mediafile/
(~)};) jerryradio.com/downloads GDead & Jerry Garcia Band mp3bretmiller.com/downloads GDead & Jerry Garcia Band mp3 mediafire.com/Grateful Dead SBDs shared by sgrmag741974-05-21 Edmundson Pavilion, University of Washington1976-06-14 Beacon Theatre, New YorkFall 1979 Road Trips 1.1 + Bonus Fall 1979 East Coast 'RT 1.1'1990-03-14/16 Capital Centre Landover, MD mediafire.com/Grateful_Dead SBDs shared by CandymanDick's Picks 1-36,Dave's Picks 1-22,Dave's Picks Bonus 2012-2016 (2012 7/29/74,2013…
melvin seals and jgb members - Google Search
https://www.google.com/search?sxsrf=ACYBGNTn_OOXTIRSRlKdP7g2WpAwBCS1Pw:1571681836761&q=melvin+seals+and+jgb+members&sa=X&ved=2ahUKEwjl0dGM-63lAhUIJt8KHVBfDBIQ1QIoAHoECAsQAQ
Added 6 years ago
Broken
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 10 months ago
Broken
memoryleak (Haydar Ciftci) · GitHub
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 2 years ago
metadata matters – MetaBrainz Blog
https://blog.metabrainz.org/tag/metadata-matters/
Posts about metadata matters written by ruaok
mgostkiewicz@gmail.com – Tri Gable Lea Farm LLC
https://trigablelea.com/
Teaching online gardening classes worldwide & building coops & beehives locally!
Added 6 years ago
micheal-donald/ATS-BEATER
https://github.com/micheal-donald/ATS-BEATER
Contribute to micheal-donald/ATS-BEATER development by creating an account on GitHub.
micropython-deauth/main.py at master · PakchoiFood/micropython-deauth · GitHub
https://github.com/PakchoiFood/micropython-deauth/blob/master/main.py
使用micropython实现MAC 管理帧的发送. Contribute to LinJing517/micropython-deauth development by creating an account on GitHub.
Added 7 years ago
mjg59 | I stayed in a hotel with Android lightswitches and it was just as bad as you'd imagine
http://mjg59.dreamwidth.org/40505.html
Added 9 years ago
modelling magazine torrent
https://btdig.com/search?q=modelling+magazine&order=0
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 6 months ago
most controversial links : bertstrips
https://www.reddit.com/r/bertstrips/controversial/
Added 9 years ago
mount - Use systemd to run script when usb drive is unmounted - Unix & Linux Stack Exchange
https://unix.stackexchange.com/questions/631454/use-systemd-to-run-script-when-usb-drive-is-unmounted
Added 1 year ago
mount: unknown filesystem type ‘zfs_member’ - SvennD
https://svennd.be/mount-unknown-filesystem-type-zfs_member/
After mounting a NTFS partiton in read/write, a NFS partition and just last week a LVM2_member partition. Its time for a new episode in the series: How to mount an unknown file-type in Linux. As they say, the saga continues.
Note that I use proxmox (Debian spin) on this machines, this makes that ZFS was already installed. Installing ZFS is easy, and I done it before on Mint, the official ZFS (on linux) information is also a huge help, so head over there if you wan’t up-to-date install & configuration help.
Added 7 months ago
mrlesmithjr/ansible-netplan: Ansible role to manage Netplan
https://github.com/mrlesmithjr/ansible-netplan
Ansible role to manage Netplan. Contribute to mrlesmithjr/ansible-netplan development by creating an account on GitHub.
Added 4 months ago
multiOTP/multiotp: multiOTP open source strong two factor authentication PHP library, OATH certified, with TOTP, HOTP, Mobile-OTP, YubiKey, SMS, QRcode provisioning, etc.
https://github.com/multiOTP/multiotp
multiOTP open source strong two factor authentication PHP library, OATH certified, with TOTP, HOTP, Mobile-OTP, YubiKey, SMS, QRcode provisioning, etc. - multiOTP/multiotp
Added 3 months ago
mwop.net :: Fixing issues with Yubico's PAM U2F bindings in version 1.3.1
https://mwop.net/blog/2025-01-15-pam-yubikey-1.3.1-fix.html
Added 5 months ago
my notes: OSSEC Rules 101
http://ddpbsd.blogspot.com/2010/10/ossec-rules-101.html
Added 10 years ago
myNoise Backstage | The Blog of myNoise ®
https://mynoise.net/blog.php
Behind the scenes of myNoise. Personal notes from the Stéphane, the creator of myNoise.
Added 5 months 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
mysql - MariaDB won't start for my MariaDB Galera Cluster node - Stack Overflow
https://stackoverflow.com/questions/26727127/mariadb-wont-start-for-my-mariadb-galera-cluster-node
Added 10 years ago
n1trux/awesome-sysadmin · GitHub
https://github.com/n1trux/awesome-sysadmin
A curated list of amazingly awesome open-source sysadmin resources. - awesome-foss/awesome-sysadmin
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
nathom/streamrip: A scriptable music downloader for Qobuz, Tidal, SoundCloud, and Deezer
https://github.com/nathom/streamrip
A scriptable music downloader for Qobuz, Tidal, SoundCloud, and Deezer - nathom/streamrip
navidrome/navidrome: 🎧☁️ Modern Music Server and Streamer compatible with Subsonic/Airsonic
https://github.com/navidrome/navidrome/
🎧☁️ Your Personal Streaming Service. Contribute to navidrome/navidrome development by creating an account on GitHub.
ndom91/briefkasten: 📮 Self hosted bookmarking app
https://github.com/ndom91/briefkasten?tab=readme-ov-file
📮 Self hosted bookmarking app. Contribute to ndom91/briefkasten development by creating an account on GitHub.
Added 3 months ago
netbox-community/devicetype-library: A collection of community-sourced DeviceType definitions for import to NetBox
https://github.com/netbox-community/devicetype-library/tree/master
A collection of community-sourced DeviceType definitions for import to NetBox - netbox-community/devicetype-library
Added 10 months ago
netbox-plugin-dns/docs/using_netbox_dns.md at main · peteeckel/netbox-plugin-dns · GitHub
https://github.com/peteeckel/netbox-plugin-dns/blob/main/docs/using_netbox_dns.md#ipam-dnssync
NetBox DNS is a NetBox plugin for managing DNS data. - netbox-plugin-dns/docs/using_netbox_dns.md at main · peteeckel/netbox-plugin-dns
Added 5 months ago
netbox-plugin-dns/examples/ansible/using_netbox_dns_with_ansible.md at main · peteeckel/netbox-plugin-dns
https://github.com/peteeckel/netbox-plugin-dns/blob/main/examples/ansible/using_netbox_dns_with_ansible.md
NetBox DNS is a NetBox plugin for managing DNS data. - netbox-plugin-dns/examples/ansible/using_netbox_dns_with_ansible.md at main · peteeckel/netbox-plugin-dns
Added 4 months ago
netbox-zero-to-hero/custom_scripts/SiteStatusBulkUpdater.py at main · netbox-community/netbox-zero-to-hero
https://github.com/netbox-community/netbox-zero-to-hero/blob/main/custom_scripts/SiteStatusBulkUpdater.py
A short course designed to take new NetBox users from ‘Zero to Hero’. - netbox-zero-to-hero/custom_scripts/SiteStatusBulkUpdater.py at main · netbox-community/netbox-zero-to-hero
Added 8 months ago
netbox.py · main · Pet Projects / netbox-kea-dhcpv4-server · GitLab
https://gitlab.com/pet-projects26/netbox-kea-dhcpv4-server/-/blob/main/netbox.py?ref_type=heads
Added 4 months ago
netenglabs/suzieq: Using network observability to operate and design healthier networks
https://github.com/netenglabs/suzieq/?tab=readme-ov-file
Using network observability to operate and design healthier networks - netenglabs/suzieq
Added 9 months ago
netlab: a Virtual Networking Labbing Tool — netlab documentation
https://netlab.tools/
Added 4 months ago
Broken
netrixtardis (u/netrixtardis) - Reddit
https://www.reddit.com/user/netrixtardis/
Added 2 months ago
network services troubleshooting - Glee
https://glee.thias.es/network_services_troubleshooting
Added 6 months ago
network | John's Musings
http://www.hagensieker.com/blog/page/?post_id=73&title=reading-other-peoples-pager-traffic-and-shit
Added 7 years ago
networking - After starting a particular LXC container with a static IP, no default gateway route is configured - Ask Ubuntu
https://askubuntu.com/questions/277758/after-starting-a-particular-lxc-container-with-a-static-ip-no-default-gateway-r
Added 10 years ago
networking - Sharing Printer with CUPS - Ask Ubuntu
https://askubuntu.com/questions/100528/sharing-printer-with-cups
Added 4 months ago
networking:dns:unbound:local_data [Wiki]
https://wiki.sharewiz.net/doku.php?id=networking:dns:unbound:local_data
Added 4 months ago
netxms/netxms: NetXMS - Open Source network and infrastructure monitoring and management
https://github.com/netxms/netxms
NetXMS - Open Source network and infrastructure monitoring and management - netxms/netxms
Added 10 months ago
nf-HiPAC: High Performance Firewall for Linux Netfilter
http://www.hipac.org/index.html
nf-HiPAC: High Performance Firewall for Linux Netfilter
Added 9 months ago
nginx-config-snippets/mounted-run-extra.conf at master · danielrichman/nginx-config-snippets
https://github.com/danielrichman/nginx-config-snippets/blob/master/ubuntu/etc/init/mounted-run-extra.conf
nginx config snippets: gzip, catchall, domain c14n, ssl, uwsgi, php, wordpress - nginx-config-snippets/ubuntu/etc/init/mounted-run-extra.conf at master · danielrichman/nginx-config-snippets
Added 9 years ago
ngosang/trackerslist: Updated list of public BitTorrent trackers
https://github.com/ngosang/trackerslist
Updated list of public BitTorrent trackers. Contribute to ngosang/trackerslist development by creating an account on GitHub.
nickjj (Nick Janetakis) · GitHub
https://github.com/nickjj
Currently a self employed freelance developer & teacher. I mainly work with Flask, Rails, Bash, Docker, Kubernetes, Ansible & Terraform. Also a @docker captain. - nickjj
nikdoof.com - A Terrible User Experience
https://nikdoof.com/posts/2023/a-terrible-user-experience/
This is a bit of a vent, I may be wrong, I may be a little caught up in the moment, but a simple task should not be this difficult.
I’m currently trying to setup a Kiosk-mode Raspberry Pi for Leigh Hackspace to act as a ‘Hackspace Status’ screen, showing some stats and a rotating list of artwork to show upcoming events.
I decided to just try and build something myself, but while I was using the Raspberry Pi Imager I spotted a section for purpose-specific OS installations, and within there was Anthias. “Hey, that looks good, Web UI and does what I need it to do” I thought to myself. Anthias is the rebadged Screenly OSE, as to avoid confusion they renamed it to split it away from the commercial Screenly option. Open source versions of commercial products never really work well, but maybe it’ll do the bare minimum I need.
Added 4 months ago
Broken
nmapAutomator: Installation, Usage, and Examples
https://securitytrails.com/blog/nmapautomator
Added 9 months ago
noahbailey/ansible-router: Simple Linux router implementation for Debian + Netfilter/IPtables
https://github.com/noahbailey/ansible-router
Simple Linux router implementation for Debian + Netfilter/IPtables - noahbailey/ansible-router
Added 4 months ago
node-xmpp/send_message.js at master · node-xmpp/node-xmpp · GitHub
https://github.com/node-xmpp/node-xmpp/blob/master/packages/node-xmpp-client/examples/send_message.js
Added 9 years ago
nu774/qaac: CLI QuickTime AAC/ALAC encoder
https://github.com/nu774/qaac
CLI QuickTime AAC/ALAC encoder. Contribute to nu774/qaac development by creating an account on GitHub.
oerdnj (Ondřej Surý) · GitHub
https://github.com/oerdnj
Director of DNS Engineering @ ISC. oerdnj has 129 repositories available. Follow their code on GitHub.
openbsd user - misc - IKEv2 (iked) VPN with Windows 10 clients
http://openbsd-archive.7691.n7.nabble.com/IKEv2-iked-VPN-with-Windows-10-clients-td314534.html
Added 7 years ago
openbsd | It needs more code
https://morecode.wordpress.com/tag/openbsd/
Posts about openbsd written by morecode
Added 10 years ago
openbsd-captive-portal/index.cgi at master · overrider/openbsd-captive-portal
https://github.com/overrider/openbsd-captive-portal/blob/master/var/www/htdocs/index.cgi
a simple captive Portal using OpenBSD. Contribute to overrider/openbsd-captive-portal development by creating an account on GitHub.
Added 10 years ago
opencats/OpenCATS: Applicant Tracking System (maintained code base)
https://github.com/opencats/OpenCATS/tree/master
Applicant Tracking System (maintained code base). Contribute to opencats/OpenCATS development by creating an account on GitHub.
openiked-asiabsdcon2013.pdf
http://openbsd.fries.net/papers/openiked-asiabsdcon2013.pdf
Added 7 years ago
operation atlas (@operation_atlas) • Instagram photos and videos
https://www.instagram.com/operation_atlas/
Added 8 years ago
optimization - Nginx "ssl_stapling" ignored, no OCSP responder URL in the certificate - Server Fault
https://serverfault.com/questions/567124/nginx-ssl-stapling-ignored-no-ocsp-responder-url-in-the-certificate
Added 10 years ago
orangepipcplus.jpg (1100×1700)
http://www.orangepi.org/orangepipcplus/orangepipcplus.jpg
Added 7 years ago
oss-security - backdoor in upstream xz/liblzma leading to ssh server compromise
https://www.openwall.com/lists/oss-security/2024/03/29/4
Added 7 months ago
oss.segetech.com/intra/srv/dnsmasq.conf
http://oss.segetech.com/intra/srv/dnsmasq.conf
Added 8 years ago
ossec-tools/README.md at master · ncsa/ossec-tools · GitHub
https://github.com/ncsa/ossec-tools/blob/master/README.md
Scripts and integrations for OSSEC. Contribute to ncsa/ossec-tools development by creating an account on GitHub.
outdoor enclosure for RPi + camera? - Raspberry Pi Forums
https://forums.raspberrypi.com/viewtopic.php?t=51187
ownCloud Forums • View topic - [Solved]Owncloud subdirectory : This content failed to load.
https://forum.owncloud.org/viewtopic.php?f=31&t=27661
ownCloud Central: Discuss - Learn - Ask
Added 10 years ago
pager-parser/mods.py at master · vincecoppola/pager-parser · GitHub
https://github.com/vincecoppola/pager-parser/blob/master/mods.py
A Python script that parses regional 911 pager traffic in order to extract useful data. - pager-parser/mods.py at master · vinsidious/pager-parser
Added 7 years ago
paper.ijcsns.org/07_book/201609/20160919.pdf
http://paper.ijcsns.org/07_book/201609/20160919.pdf
Added 7 years ago
parker higgins dot net
http://parkerhiggins.net/
parker higgins is an artist and activist in brooklyn, new york
Added 10 years ago
parseablehq/parseable: ParseableDB is a disk less, cloud native database for observability and security. Parseable is the Observability platform built with ParseableDB
https://github.com/parseablehq/parseable
ParseableDB is a disk less, cloud native database for observability and security. Parseable is the Observability platform built with ParseableDB - parseablehq/parseable
Added 9 months ago
password - Adding NOPASSWD in /etc/sudoers doesn't work - Ask Ubuntu
https://askubuntu.com/questions/504652/adding-nopasswd-in-etc-sudoers-doesnt-work
Added 10 years ago
perusio/redmine-nginx
https://github.com/perusio/redmine-nginx
A opinionated config for running Redmine with Nginx and thin. - perusio/redmine-nginx
Added 10 years ago
perusio/redmine-nginx: A opinionated config for running Redmine with Nginx and thin.
https://github.com/perusio/redmine-nginx
A opinionated config for running Redmine with Nginx and thin. - perusio/redmine-nginx
Added 6 years ago
peterbaumert/netbox-device-view
https://github.com/peterbaumert/netbox-device-view
Contribute to peterbaumert/netbox-device-view development by creating an account on GitHub.
Added 10 months ago
phamm/main.cf at master · lota/phamm · GitHub
https://github.com/lota/phamm/blob/master/examples/conf/postfix/main.cf
PHP LDAP Virtual Hosting Manager. Contribute to lota/phamm development by creating an account on GitHub.
Added 10 years ago
phansible · GitHub
https://github.com/phansible
Phansible lets you easily generate Ansible provisions for PHP web servers - phansible
Added 9 years ago
php - Fastest hash for non-cryptographic uses? - Stack Overflow
https://stackoverflow.com/questions/3665247/fastest-hash-for-non-cryptographic-uses
Added 10 years ago
php - WordPress WPML permalink error in admin - Stack Overflow
https://stackoverflow.com/questions/31086468/wordpress-wpml-permalink-error-in-admin
Added 9 years ago
plutoprint/plutoprint: A Python Library for Generating PDFs and Images from HTML, powered by PlutoBook
https://github.com/plutoprint/plutoprint
A Python Library for Generating PDFs and Images from HTML, powered by PlutoBook - plutoprint/plutoprint
Added 4 months ago
poh the dog (@pohthedogsbigadventure) • Instagram photos and videos
https://instagram.com/pohthedogsbigadventure/
Added 10 years ago
Broken
postfix-grok-patterns/postfix.grok at main · whyscream/postfix-grok-patterns · GitHub
https://github.com/whyscream/postfix-grok-patterns/blob/main/postfix.grok
Logstash configuration and grok patterns for parsing postfix logging - postfix-grok-patterns/postfix.grok at main · whyscream/postfix-grok-patterns
Added 2 years ago
postfixadminAwesome/INSTALL.TXT at master · subutux/postfixadminAwesome · GitHub
https://github.com/subutux/postfixadminAwesome/blob/master/VIRTUAL_VACATION/INSTALL.TXT
Revamped postfixadmin. Contribute to subutux/postfixadminAwesome development by creating an account on GitHub.
Added 10 years ago
prog rock - Original recording of Traffic's The low spark of high heeled boys — good sound quality? - Music Fans Stack Exchange
https://musicfans.stackexchange.com/questions/12545/original-recording-of-traffics-the-low-spark-of-high-heeled-boys-good-sound-q
ps/2 to USB adapter converter for keyboards
http://www.clickykeyboards.com/index.cfm/fa/items.main/parentcat/11298/subcatid/0/id/124184
Added 10 years ago
public key infrastructure - How long do keys stay on keyservers? - Information Security Stack Exchange
https://security.stackexchange.com/questions/67633/how-long-do-keys-stay-on-keyservers/67636#67636
python-keylogger1/pyvirustest.pyw at master · bluedangerforyou/python-keylogger1 · GitHub
https://github.com/bluedangerforyou/python-keylogger1/blob/master/pyvirustest.pyw
Simple Python Keylogger. Contribute to bluedangerforyou/python-keylogger1 development by creating an account on GitHub.
Added 7 years ago
python-sec-tools/chromedome.py at master · bluedangerforyou/python-sec-tools · GitHub
https://github.com/bluedangerforyou/python-sec-tools/blob/master/chromedome.py
Penetration Testing tools written in python! Contribute to bluedangerforyou/python-sec-tools development by creating an account on GitHub.
Added 7 years ago
quickbooks_integration_methods [ConsoliBYTE Wiki]
http://wiki.consolibyte.com/wiki/doku.php/quickbooks_integration_methods
Added 7 years ago
rdesktop(1): Remote Desktop Protocol client - Linux man page
http://linux.die.net/man/1/rdesktop
Added 10 years ago
renatoalmeidaoliveira/nbrisk: NIST 800-30 Risk Management for Netbox
https://github.com/renatoalmeidaoliveira/nbrisk
NIST 800-30 Risk Management for Netbox. Contribute to renatoalmeidaoliveira/nbrisk development by creating an account on GitHub.
Added 9 months ago
renderorange (Blaine Motsinger)
https://github.com/renderorange
renderorange has 35 repositories available. Follow their code on GitHub.
renderorange (Blaine Motsinger)
https://github.com/renderorange
renderorange has 35 repositories available. Follow their code on GitHub.