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
sudo apt-get install python-software-properties python g++ make | |
sudo add-apt-repository ppa:chris-lea/node.js | |
sudo apt-get update | |
sudo apt-get dist-upgrade -y | |
sudo apt-get install nodejs | |
# | |
# npm can install npm | |
# | |
sudo npm install -g npm |
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
mkdir /tmp/adodefont | |
cd /tmp/adodefont | |
wget http://downloads.sourceforge.net/project/sourcecodepro.adobe/SourceCodePro_FontsOnly-1.017.zip | |
unzip SourceCodePro_FontsOnly-1.017.zip | |
sudo mkdir -p /usr/share/fonts/opentype | |
sudo cp SourceCodePro_FontsOnly-1.017/OTF/*.otf /usr/share/fonts/opentype | |
sudo fc-cache -f -v |
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
! clean most of the modifiers | |
clear control | |
clear mod4 | |
clear mod1 | |
! gt, lt | |
keycode 49 = less greater less greater bar brokenbar bar | |
keycode 94 = dead_circumflex degree dead_circumflex degree U2032 U2033 U2032 | |
! ----------------- |
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 | |
# | |
# see https://github.com/iverberk/docker-spy | |
# | |
boot2docker up | |
BOOT2DOCKER_IP="$(boot2docker ip)" | |
DOCKER_IP_BRIDGE="172.17.42.1" | |
DNS_DOMAIN="local-dev.leanix.net" | |
mkdir -p /etc/resolver |
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/sh | |
branch=$(git rev-parse --abbrev-ref HEAD) | |
if [ "gh-pages" == "$branch" ]; then | |
exit | |
fi | |
echo Updating gh-pages for branch $branch | |
git checkout gh-pages | |
git checkout $branch -- dist |
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
[12:11:50] [Render thread/WARN]: Mixin apply for mod improvedmobs failed improvedmobs.mixins.compat.json:pathfinding.performance.WalkNodeStaticMixin from mod improvedmobs -> net.minecraft.class_14: org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException @At("INVOKE") on net/minecraft/class_14::stop with priority 1000 cannot inject into net/minecraft/class_14::method_59(Lnet/minecraft/class_1922;Lnet/minecraft/class_2338$class_2339;Lnet/minecraft/class_7;)Lnet/minecraft/class_7; merged by me.jellysquid.mods.lithium.mixin.ai.pathing.LandPathNodeMakerMixin with priority 1000 [ -> redirect$bgo000$stop(Lnet/minecraft/class_1922;Lnet/minecraft/class_2338;)Lnet/minecraft/class_3610; -> Prepare] | |
org.spongepowered.asm.mixin.injection.throwables.InvalidInjectionException: @At("INVOKE") on net/minecraft/class_14::stop with priority 1000 cannot inject into net/minecraft/class_14::method_59(Lnet/minecraft/class_1922;Lnet/minecraft/class_2338$class_2339;Lnet/minecraft/class_7;)Lnet/minecraft/class_7; mer |