This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# checkout | |
git fetch origin refs/meta/config:refs/remotes/origin/meta/config | |
git checkout meta/config | |
#directly: | |
git push origin meta/config:meta/config | |
#via review: | |
git push origin meta/config:refs/for/refs/meta/config |
In /etc/default/grub
, modify:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash noibrs noibpb nopti nospectre_v2 nospectre_v1 l1tf=off nospec_store_bypass_disable no_stf_barrier mds=off tsx=on tsx_async_abort=off mitigations=off"
Then sudo update-grub
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
# Upgrade the instance on first boot | |
# (ie run apt-get upgrade) | |
# | |
# Default: false | |
# Aliases: apt_upgrade | |
package_upgrade: true | |
# Install additional packages on first boot |
This guide is adapted from http://reboot.pro/topic/14547-linux-load-your-root-partition-to-ram-and-boot-it/
What you need:
- lots of RAM
- Debian based distribution or any that supports booting from initramfs
- mkinitramfs or a tool to build a new initramfs
- some linux knowledge
- no need to create an image
- no need for Grub4Dos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# resize - cheap bash implementation of the X11 resize command to avoid installing all the X11 stuff for one command | |
# | |
# Author: Karl Bunch <[email protected]> | |
# | |
# Created: Sat Sep 2 08:30:14 EDT 2017 | |
# | |
if [ "X$1" = "X-s" -a -n "$2" -a -n "$3" ]; then | |
echo -ne "\033[8;$2;$3t" |
I hereby claim:
- I am karlbunch on github.
- I am karlbunch (https://keybase.io/karlbunch) on keybase.
- I have a public key ASCoSLZN0yITsCEVolBDol4-YvF8Ht6j74H1MsBZtyBJTQo
To claim this, I am signing this object:
I hereby claim:
- I am karlbunch on github.
- I am karlbunch (https://keybase.io/karlbunch) on keybase.
- I have a public key ASAigm7tkOrtPXPAmmw06cITx2iGPZymQpZNqTaYsGUcYAo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- BEGIN CURRENCY CONVERSION | |
-- Convert character tokens/currencies from 3.x to 4.x | |
-- http://web.archive.org/web/20100918101232/http://forums.worldofwarcraft.com/thread.html?topicId=26850245012&sid=1&pageNo=10 | |
SET @HONOR_RATE = 0.024; | |
SET @ARENA_RATE = 0.85; | |
SET @HONOR_HARDCAP = 4000; | |
SET @HONOR_TO_MONEY = 35; | |
SET @JUSTICE_HARDCAP = 4000; | |
SET @JUSTICE_TO_MONEY = 20000; | |
SET @MAX_MONEY_AMOUNT = 9999999999; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- BEGIN CURRENCY CONVERSION | |
-- Convert character tokens/currencies from 3.x to 4.x | |
-- http://web.archive.org/web/20100918101232/http://forums.worldofwarcraft.com/thread.html?topicId=26850245012&sid=1&pageNo=10 | |
SET @HONOR_RATE = 0.024; | |
SET @ARENA_RATE = 0.85; | |
SET @HONOR_HARDCAP = 4000; | |
SET @HONOR_TO_MONEY = 35; | |
SET @JUSTICE_HARDCAP = 4000; | |
SET @JUSTICE_TO_MONEY = 20000; | |
SET @MAX_MONEY_AMOUNT = 9999999999; |
NewerOlder