We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
"Was versteht man unter der Klassischen Testtheorie (KTT)?";"Lineares Modell von Wahrem Wert und Messfehler" | |
"Wie wird ein beobachteter Wert in der KTT zerlegt?";"Wahrer Wert plus Zufallsfehler" | |
"Welche Grundannahme trifft die KTT über den Mittelwert des Messfehlers?";"Er ist gleich Null" | |
"Was ist der Wahre Wert laut KTT?";"Erwartungswert des beobachteten Werts" | |
"Was bedeutet Messfehlerunabhängigkeit in der KTT?";"Fehler sind unabhängig vom Wahren Wert" | |
"Wofür steht die Fehlervarianz in der KTT?";"Varianz der Zufallskomponente" | |
"Warum kann man die KTT auch 'Teilungsmodell' nennen?";"Weil der Messwert in zwei Komponenten zerlegt wird" | |
"Welche Rolle spielt die Reliabilität in der KTT?";"Sie misst die Genauigkeit eines Tests" | |
"Wie wird Reliabilität formal definiert?";"Varianz Wahrer Wert / Varianz beobachteter Wert" | |
"Welchen Wertebereich kann Reliabilität annehmen?";"Zwischen 0 und 1" |
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
require 'find' | |
def remove_trailing_whitespaces(directory) | |
Find.find(directory) do |path| | |
next unless File.file?(path) # Skip directories | |
next if path =~ /\.\/\.git/ | |
begin | |
text = File.open(path, "r:UTF-8") do |file| | |
file.read.encode("UTF-8", invalid: :replace, undef: :replace, replace: "") |
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/env ruby | |
require "pp" | |
module M | |
def self.run(arg) | |
r = `#{arg} 2>&1` | |
return r | |
end |
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
{-# OPTIONS_GHC -Wno-deprecations #-} | |
import XMonad | |
import System.IO | |
import XMonad.Actions.CycleWS | |
import XMonad.Actions.FloatKeys | |
import XMonad.Actions.SpawnOn | |
import XMonad.Config.Gnome | |
import XMonad.Hooks.DynamicLog | |
import XMonad.Hooks.ManageDocks |
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
// This file is the input config save. It is applied on top of the default values, so | |
// to reset to defaults simply delete the file. There are two main sections, | |
// The `settings` part, containing key-value pairs for the settings you can adjust, | |
// and the mappings groups, which map to the in-game menues for the input groups & bindings. | |
// The available settings values are (and defaults): | |
// { | |
// Number of frames over which to smooth mouse input (zero means no smoothing). Note that this applies to the _movement_, not the position! | |
// mouse_smoothing_frames = 3 | |
// | |
// If set (per axis) the look axis is inverted _when aiming down sights_ for gamepads. |
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/env ruby | |
# this scripts acts as a wrapper for a little daemon that reads a fifo; | |
# | |
# If called without allready running it starts a background daemon and | |
# downloads the argument, then proceeds to watch the fifo for more. | |
# | |
# We esnure that the script is only running once and only one dl at a time. | |
FIFO = "/home/ha/.ytfifo" |
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/ruby | |
# ruby 404grep.rb /path/to/apache/logfile | |
require "pp" | |
LOGFILE = ARGV.join | |
resH = Hash.new{ |h,k| h[k] = 0 } |
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
/* | |
Add a link to the sidebar to any path in Home Assistant | |
Put this file in <config>/www/panel-redirect.js | |
In configuration.yaml: | |
panel_custom: | |
- name: panel-redirect | |
# url_path needs to be unique for each panel_custom config |
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
#m:: | |
Input, char, L1 T0.5 ;wait for 1 character, for 0.5 seconds and stores it in char | |
if (ErrorLevel = "TimeOut") ;time limit exceeded | |
return | |
if (char = "n") | |
Send, {Media_Next} | |
else if (char = "q") { | |
;Run C:\Program Files\nircmd.exe mutesysvolume 2 "2- USB Audio CODEC" | |
Run C:\Program Files\SoundVolumeView.exe /Switch "mmic" |
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
path: cabinet | |
icon: 'mdi:flower-tulip' | |
panel: false | |
header: | |
type: picture | |
image: 'https://www.home-assistant.io/images/lovelace/header-footer/balloons-header.png' | |
cards: | |
- type: grid | |
square: false |
NewerOlder