Skip to content

Instantly share code, notes, and snippets.

View Pysis868's full-sized avatar
💭
everything at once

Pysis Pysis868

💭
everything at once
View GitHub Profile
@yeahunter
yeahunter / grub.cfg
Created May 24, 2014 18:59
usb-re grubnak
set timeout=10
set default=0
menuentry "Ubuntu 14.04 server x64" {
loopback loop /ubuntu.iso
linux (loop)/install/vmlinuz file=/cdrom/preseed/ubuntu-server.seed quiet --
initrd (loop)/install/initrd.gz
}
## Teszt szekció
@samdoran
samdoran / grub.cfg
Created July 31, 2014 05:06
Grub 2 USB Drive
# Original grub.cfg and instructions from Lance at Pendrivelinux
# http://www.pendrivelinux.com/install-grub2-on-usb-from-ubuntu-linux/
#set timeout=0
set default=0
set isopath="/iso"
menuentry "Ubuntu 12 64-bit" {
set isofile="$isopath/ubuntu-12.iso"
set gfxpayload=keep
@noisufnoc
noisufnoc / grub.cfg
Last active August 29, 2015 14:08
usb stick grub
# Config for GNU GRand Unified Bootloader (GRUB)
# /boot/grub/grub.cfg
# Timeout for menu
set timeout=30
# Default boot entry
set default=0
# Menu Colours
@barrucadu
barrucadu / xkcd.c
Last active December 15, 2015 16:19
HackSoc's attempt on the XKCD challenge
/* This needs the Skein functions from the NIST distribution. You can
* get the zip file from http://www.schneier.com/skein.html ("Source
* code and test vectors for Skein and Threefish (12 MB)"), and then
* you need to stick the contents of NIST/CD/Reference_Implementation
* in the same directory as this file.
*
* Compile with clang -std=c99 *.c -lcurl -lpthread -O3 -o xkcd-skein
*/
#include <time.h>
@Pysis868
Pysis868 / QuakeConsole.ahk
Last active April 16, 2016 16:29 — forked from program247365/QuakeConsole.ahk
Console 2 Settings File and Quake Awesomeness
; Change your hotkey here
^1::
DetectHiddenWindows, on
IfWinExist ahk_class Console_2_Main
{
IfWinActive ahk_class Console_2_Main
{
WinHide ahk_class Console_2_Main
WinActivate ahk_class Shell_TrayWnd
@program247365
program247365 / QuakeConsole.ahk
Created March 11, 2012 03:59
Console 2 Settings File and Quake Awesomeness
; Change your hotkey here
^1::
DetectHiddenWindows, on
IfWinExist ahk_class Console_2_Main
{
IfWinActive ahk_class Console_2_Main
{
WinHide ahk_clasas Console_2_Main
WinActivate ahk_class Shell_TrayWnd
@atshane253
atshane253 / ALTTP Randomizer HUD.lua
Last active October 4, 2017 15:58
ALTTP Randomizer HUD Watcher lua script
local timer = 15 * 60
-- sram trace
local address = 0x1E00
local range = 0x01E0
-- private
local old
local log = {}
local _timer = timer
@scpike
scpike / open_cookie.rb
Created June 28, 2012 00:04
Rails 3 cookie decode
baslist
baiprog
bmaptex
bstftex
beffect
brecipe
agstats
bphyssb
hkt
@timlinux
timlinux / gist:3bbabf96779906d746ff
Last active January 21, 2020 17:14
Setup procedure for a new Fedora workstation
#!/bin/bash
##########################################################
# Updated 3 July 2015 to use dnf and tweaks for Fedora 22
##########################################################
# Change below to whichever host is running apt cacher
# setup apt-cacher - do this after lxc docker as ssl sources are not configured for cacher by me
dnf install -y apt-cacher-ng
systemctl start apt-cacher-ng.service