Skip to content

Instantly share code, notes, and snippets.

View jokercom's full-sized avatar

gisouk, woo jokercom

  • freemos.kr
  • kr, inchen-si
View GitHub Profile
@jokercom
jokercom / vyos-optimisations
Created January 2, 2022 02:57 — forked from RafPe/vyos-optimisations
vyos throughput optimizations
Server 2 sockets,6 cores each, 2.4ghz
# Set ixgbe options
# Limit RSS queues to the number of physical cores per cpu
# Disable offload
# When you change this, you need to run the command and reboot for it to take.
echo "options ixgbe LRO=0,0 MQ=1,1 RSS=6,6 VMDQ=0,0 vxlan_rx=0,0" > /etc/modprobe.d/ixgbe.conf
# Shut down HT cores
for i in $(seq 1 2 23); do
@jokercom
jokercom / DigiKeyboard.h
Created June 24, 2021 07:43 — forked from sidward35/DigiKeyboard.h
Digispark USB Keyboard & Mouse
/*
* Based on Obdev's AVRUSB code and under the same license.
*
* TODO: Make a proper file header. :-)
* Modified for Digispark by Digistump
*/
#ifndef __DigiKeyboard_h__
#define __DigiKeyboard_h__
#include <Arduino.h>