Skip to content

Instantly share code, notes, and snippets.

@tuklusan
tuklusan / PDP-10_TOPS-20_TWENEX_INSTALL.LOG
Last active June 28, 2022 23:28
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 April 7, 2024 04:02
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)
@kuznero
kuznero / WinUSBFromLinux.md
Last active August 23, 2021 13:20
How to make Windows 7 USB flash install media from Linux?

How to make Windows 7 USB flash install media from Linux?

StackOverflow

  • Install ms-sys - if it is not in your repositories, get it here. Or alternatively, make sure lilo is installed (but do not run the liloconfig step on your local box if e.g. Grub is installed there!)
  • Check what device your USB media is assigned - here we will assume it is /dev/sdb. Delete all partitions, create a new one taking up all the space, set type to NTFS (7), and remember to set it bootable:
# cfdisk /dev/sdb
or fdisk /dev/sdb (partition type 7, and bootable flag)
<html>
<head>
<title>Step progress bar</title>
<style type="text/css">
.container {
width: 100%;
}
.progressbar {
counter-reset: step;
}
@developius
developius / README.md
Last active April 25, 2024 22:15
Setup SSH keys for use with GitHub/GitLab/BitBucket etc

Create a new repository, or reuse an existing one.

Generate a new SSH key:

ssh-keygen -t rsa -C "your_email@example.com"

Copy the contents of the file ~/.ssh/id_rsa.pub to your SSH keys in your GitHub account settings (https://github.com/settings/keys).

Test SSH key:

@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>