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
Option Explicit | |
Private Function GetRow(name As String) | |
Select Case name | |
Case "Forester": GetRow = 22: Exit Function | |
Case "WoodCutter": GetRow = 25: Exit Function | |
Case "Sawmill": GetRow = 28: Exit Function | |
Case "Mason": GetRow = 31: Exit Function | |
Case "Fisher": GetRow = 34: Exit Function | |
Case "CoalMine": GetRow = 37: Exit Function | |
Case "CokingPlant": GetRow = 40: Exit Function |
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
Die Linux-Kompatibilität ist momentan noch in Bearbeitung. | |
Da ich auf meinem PC nur Linux in einer äußerst langsamen VM habe, konnte ich das Programm nur bedingt testen. | |
(Bis zur kompletten ausführung bin ich jedoch immer gescheitert, da die VM schlicht zu langsam ist und firefox sich aufhängt) | |
Folgendes muss auf dem System bereits installiert sein: | |
*mono | |
*libodbc | |
*libsqliteodbc | |
Folgendes muss vorher gemacht werden: | |
*/usr/lib/libodbc.so muss existieren ... ansonsten "ln -s /usr/lib/libodbc.so.1 /usr/lib/libodbc.so" versuchen |
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
Nadelholzforsthütte,135 | |
Nadelholzfällerhütte,90 | |
Nadelholzsägemühle,180 | |
Steinbruch,300 | |
Fischerhütte,180 | |
Kupfermine,180 | |
Köhlerei,180 | |
Kupferschmelze,360 | |
Werkzeugschmiede,360 | |
Bronzewaffenschmiede,360 |
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
#!/usr/bin/python | |
import socket, ssl, select, time, re | |
from thread import start_new_thread | |
from struct import pack | |
TYPE_ENUM = 0 | |
TYPE_STRING = 2 | |
TYPE_BYTES = TYPE_STRING | |
def clean(s): |
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
/* | |
atmega48_i2ctest.c | |
Copyright 2008-2011 Michel Pollet <[email protected]> | |
This file is part of simavr. | |
simavr is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by | |
the Free Software Foundation, either version 3 of the License, or |
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
#docker build -t archtest . | |
#docker run -ti archtest | |
FROM base/arch | |
RUN pacman-key --populate archlinux | |
RUN pacman-key --refresh-keys | |
RUN pacman -Syu --noconfirm | |
RUN pacman-db-upgrade | |
RUN pacman -S --noconfirm elfutils | |
RUN pacman -S --noconfirm avr-libc | |
RUN pacman -S --noconfirm git |
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
#include <SPI.h> | |
void setup() { | |
Serial.begin(115200); | |
Serial.println("Test1"); | |
pinMode(MISO, OUTPUT); | |
pinMode(SS, INPUT); | |
pinMode(SCK, INPUT); | |
pinMode(MOSI, INPUT); |
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
//------------------------------------------------ | |
//--- 010 Editor v8.0.1 Binary Template | |
// | |
// File: | |
// Authors: CrazyT | |
// Version: | |
// Purpose: | |
// Category: | |
// File Mask: *.gui | |
// ID Bytes: |
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
diff --git a/src/SlimShader.Studio/Modules/Startup/Module.cs b/src/SlimShader.Studio/Modules/Startup/Module.cs | |
index cc8b2fd..69a6880 100644 | |
--- a/src/SlimShader.Studio/Modules/Startup/Module.cs | |
+++ b/src/SlimShader.Studio/Modules/Startup/Module.cs | |
@@ -1,5 +1,7 @@ | |
using System.ComponentModel.Composition; | |
+using System.IO; | |
using System.Reflection; | |
+using System.Text; | |
using Caliburn.Micro; |
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
# Modified code by CrazyT | |
# | |
# For orginal view notes below: | |
# | |
# Proof-of-concept code for reading data from a Wifi microscope. | |
# See https://www.chzsoft.de/site/hardware/reverse-engineering-a-wifi-microscope/. | |
# Copyright (c) 2020, Christian Zietz <[email protected]> | |
# | |
# Redistribution and use in source and binary forms, with or without |
OlderNewer