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
import pandas as pd | |
# Assuming your CSV file is named 'wikiusers.csv' | |
file_path = 'wikiusers.csv' | |
# Read the CSV file into a DataFrame | |
df = pd.read_csv(file_path) | |
# Extract the first column, which are the user names, into a Python array | |
names_list = df.iloc[:, 0].values |
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
#include <Dhcp.h> | |
#include <Dns.h> | |
#include <SPI.h> | |
#include <EthernetClient.h> | |
#include <EtherCard.h> | |
#include <Wire.h> | |
#include "Adafruit_MCP23017.h" | |
/* |
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
' die Kommentare sind die Taktzahlen | |
tune 1, 7, (%11010000) '1 | |
tune 1, 10, (%11010000) | |
tune 1, 7, (%00010000, %00010000, %00010000) '2 | |
tune 1, 10, (%00010100) '3 | |
tune 1, 7, (%01010010, %11010000) | |
tune 1, 10, (%00000100) '4 | |
tune 1, 7, (%01000101) | |
tune 1, 10, (%00000111) | |
tune 1, 7, (%01001001) |
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
tune 1, 8, (%11000001) 'bin | |
tune 1, 8, (%11000010) 'ich | |
tune 1, 8, (%11000100) 'gleich | |
tune 1, 8, (%11000100) 'von | |
tune 1, 8, (%11000010) 'dir | |
tune 1, 8, (%11000001) 'ge- | |
tune 1, 8, (%11101011) 'wi- | |
tune 1, 8, (%11101011) 'chen |
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
gosub TeilA | |
gosub TeilB | |
gosub TeilA | |
end | |
TeilA: | |
tune 1, 8, (%00010100, %01001011, %01010000, %00010010, %01010000, %01001011) | |
tune 1, 8, (%00001001, %01001001, %01010000, %00010100, %01010010, %01010000) | |
tune 1, 12, (%00001011) | |
tune 1, 8, (%01010000, %00010010, %00010100) |