Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
using System; | |
using ScrollsModLoader.Interfaces; | |
using UnityEngine; | |
using Mono.Cecil; | |
namespace Template.mod | |
{ | |
public class MyMod : BaseMod, IOkCancelCallback | |
{ |
This file contains hidden or 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
-- Chest Setup: | |
-- Top = Output Chest. Crafted Items Go here | |
-- Front = Buffer Chest. Turtle will store items there, that it can not yet craft. | |
-- Below = Input Chest. Put 2x2 Craftable Stuff there. | |
-- Assumes that One Stack of Input will yield less than one stack. | |
bufferCell = 13 | |
craftingCell = 16 | |
-- Drop any items not yet crafted down. | |
for k,i in pairs({1,2,5,6,bufferCell, (bufferCell + 1)}) do |
This file contains hidden or 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
{ | |
"comment": "/neircollect collect appeng.integration.modules.NEIHelpers.NEIAEShapedRecipeHandler si\u003d1 oredict\n/neircollect collect appeng.integration.modules.NEIHelpers.NEIAEShapelessRecipeHandler oredict si\u003d1\n/neircollect collect appeng.integration.modules.NEIHelpers.NEIInscriberRecipeHandler oredict si\u003d1", | |
"groups": { | |
"appeng.integration.modules.NEIHelpers.NEIInscriberRecipeHandler": { | |
"comment": "Generated with /neircollect collect appeng.integration.modules.NEIHelpers.NEIInscriberRecipeHandler oredict si\u003d1", | |
"conversions": [ | |
{ | |
"count": 1, | |
"output": "appliedenergistics2:item.ItemMultiMaterial|15", | |
"ingredients": { |
This file contains hidden or 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
{ | |
"comment": "/neircollect collect codechicken.nei.recipe.BrewingRecipeHandler some\n/neircollect collect codechicken.nei.recipe.BrewingRecipeHandler s1=3 so=3\n/neircollect collect codechicken.nei.recipe.BrewingRecipeHandler s1=3 so=3 some", | |
"groups": { | |
"codechicken.nei.recipe.BrewingRecipeHandler": { | |
"comment": "Generated with /neircollect collect codechicken.nei.recipe.BrewingRecipeHandler s1=3 so=3 some", | |
"conversions": [ | |
{ | |
"count": 3, | |
"output": "minecraft:potion|8198", | |
"ingredients": { |
This file contains hidden or 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
wget -O- http://$1/printers/ | sed -E 's@<TR><TD><A HREF="/printers/([[:alnum:]]+)">\1</A></TD><TD>([^<]+)</TD><TD>([^<]+)</TD>.+$@echo Installing printer "\1"\nwget http://'$1'/printers/\1.ppd\nlpadmin -p \1 -E -v ipp://'$1'/printers/\1 -D "\2" -L "\3" -P \1.ppd@;tx;d;:x' |
This file contains hidden or 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
{ | |
"name": "MediathekSpacePause", | |
"version": "1.0", | |
"description": "In der ZDF Mediathek Videos mit Leertaste pausieren", | |
"permissions": [], | |
"content_scripts" : [{ | |
"matches" : [ "http://www.zdf.de/*", "https://www.zdf.de/*"], | |
"js" : ["mediathekSpacePause.js"] | |
}], | |
"manifest_version": 2 |
This file contains hidden or 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
diff --git a/libavfilter/Makefile b/libavfilter/Makefile | |
index 0dc74f8b70..18ac1d989f 100644 | |
--- a/libavfilter/Makefile | |
+++ b/libavfilter/Makefile | |
@@ -133,6 +133,7 @@ OBJS-$(CONFIG_SIDECHAINCOMPRESS_FILTER) += af_sidechaincompress.o | |
OBJS-$(CONFIG_SIDECHAINGATE_FILTER) += af_agate.o | |
OBJS-$(CONFIG_SILENCEDETECT_FILTER) += af_silencedetect.o | |
OBJS-$(CONFIG_SILENCEREMOVE_FILTER) += af_silenceremove.o | |
+OBJS-$(CONFIG_SILENCETRIM_FILTER) += af_silenceremove.o | |
OBJS-$(CONFIG_SOFALIZER_FILTER) += af_sofalizer.o |
This file contains hidden or 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
# -*- coding: utf-8 -*- | |
import pandas as pd | |
import geopandas as gpd | |
import geoplot as gplt | |
import numpy as np | |
f = gpd.read_file('./gadm36_DEU_shp/gadm36_DEU_2.shp') |
This file contains hidden or 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
# -*- coding: utf-8 -*- | |
import pandas as pd | |
import numpy as np | |
import datetime | |
columns = [ | |
'IdBundesland', |
OlderNewer