Skip to content

Instantly share code, notes, and snippets.

@tuklusan
tuklusan / PDP-10_TOPS-20_TWENEX_INSTALL.LOG
Last active July 1, 2024 04:47
Complete session log of installing and configuring Panda TOPS-20 distribution, including DECnet Phase IV, on KLH10 PDP-10. Details: https://supratim-sanyal.blogspot.com/2019/03/visiting-fountain-of-computing-folklore.html
Complete session log of installing and configuring Panda TOPS-20 distribution, including DECnet Phase IV, on KLH10 PDP-10.
Details: https://supratim-sanyal.blogspot.com/2019/03/visiting-fountain-of-computing-folklore.html
localuser@opensuse:~/PDP-10.TOPS-20/KLH10> ls -l panda-dist.tar.gz
-rw-r--r-- 1 localuser users 221145391 Jun 24 2006 panda-dist.tar.gz
localuser@opensuse:~/PDP-10.TOPS-20/KLH10>
localuser@opensuse:~/PDP-10.TOPS-20/KLH10> tar xvzf panda-dist.tar.gz
panda-dist/
panda-dist/RH20.RP07.1
panda-dist/README
@yougg
yougg / proxy.md
Last active May 19, 2025 14:26
complete ways to set http/socks/ssh proxy environment variables

set http or socks proxy environment variables

# set http proxy
export http_proxy=http://PROXYHOST:PROXYPORT

# set http proxy with user and password
export http_proxy=http://USERNAME:PASSWORD@PROXYHOST:PROXYPORT

# set http proxy with user and password (with special characters)
<html>
<head>
<title>Step progress bar</title>
<style type="text/css">
.container {
width: 100%;
}
.progressbar {
counter-reset: step;
}
@developius
developius / README.md
Last active May 20, 2025 11:20
Setup SSH keys for use with GitHub/GitLab/BitBucket etc
@Surzhko
Surzhko / toggletp
Last active November 4, 2017 15:51
Touchpad Toggle, window tilling and lock session key bindings for Lubuntu
#!/bin/bash
synclient TouchpadOff=$(synclient -l | grep -c 'TouchpadOff.*=.*0')
@giannitedesco
giannitedesco / rxring.c
Created June 26, 2013 00:20
TPACKET_V3 mmap packet sockets, showing off flexible frame sizes and multi-process hash fanout
/* Copyright (c) 2013 Gianni Tedesco
* Released under the terms of the GNU GPL version 3
* mmap() packet socket transmission
*/
#ifndef __linux__
#error "Are you loco? This is Linux only!"
#endif
#include <stdio.h>