# /etc/ssd/sshd_config
ClientAliveInterval 30
ClientAliveCountMax 99999
GatewayPorts yes
AllowTcpForwarding yes
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
| call plug#begin('~/.vim/plugged') | |
| " visuals | |
| Plug 'yggdroot/indentline' | |
| " formatting | |
| Plug 'jiangmiao/auto-pairs' | |
| Plug 'junegunn/vim-easy-align' | |
| " file finders |
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
| <html> | |
| <head> | |
| <title>COFFEE</title> | |
| <meta name="mobile-web-app-capable" content="yes"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> | |
| <link rel="shortcut icon" type="image/png" href="http://auvi.tibyte.net/favicon.png"> | |
| </head> | |
| <body> | |
| <style> | |
| body { |
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
| package main | |
| import ( | |
| "fmt" | |
| "github.com/stianeikeland/go-rpio" | |
| "net/http" | |
| "os" | |
| "strings" | |
| "time" | |
| ) |
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
| package main | |
| import ( | |
| "fmt" | |
| "github.com/stianeikeland/go-rpio" | |
| "net/http" | |
| "strings" | |
| "time" | |
| ) |
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
| <html> | |
| <head> | |
| <title>Start Page</title> | |
| <meta charset="utf-8"> | |
| </head> | |
| <body onload="cstart()"> | |
| <style> | |
| body { | |
| color: #333333; | |
| font-family: "Terminus (TTF)"; |
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
| def rff(l, mi, ma): | |
| i = [] | |
| for x in range(l): | |
| i.append(mi) | |
| while True: | |
| # intentionally not touching i[0] | |
| i[l-1] += 1 | |
| for x in range(l-1, 0, -1): | |
| if i[x] == ma+1: | |
| i[x] = mi |
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
| fib2 :: Int -> (Integer, Integer) | |
| fib2 1 = (0, 1) | |
| fib2 x = (snd las, fst las + snd las) | |
| where las = fib2 (x-1) | |
| main = do | |
| putStrLn . show $ fib2 10 |
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 Data.List | |
| import Data.Maybe | |
| wieVieleGleiche :: Eq a => a -> a -> a -> a -> [Int] | |
| wieVieleGleiche a b c d = [ n + 1 | n <- (numv [] a [b, c, d] [])] | |
| numv :: Eq a => [a] -> a -> [a] -> [Int] -> [Int] | |
| numv _ _ [] numbers = numbers | |
| numv pairs le ll numbers | |
| | elem le ll = if elem le pairs |