Skip to content

Instantly share code, notes, and snippets.

View SebRut's full-sized avatar
💭
I may be slow to respond.

Sebastian Rutofski SebRut

💭
I may be slow to respond.
View GitHub Profile
@SebRut
SebRut / resume.json
Last active January 17, 2022 09:55
registry.jsonresume.org/sebrut
{
"basics": {
"name": "Sebastian Rutofski",
"url": "https://sebastian-rutofski.de",
"location": {
"countryCode": "DE"
},
"profiles": [
{
"network": "GitHub",
@SebRut
SebRut / main.dart
Last active January 9, 2020 10:18
subway calc mock
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
@SebRut
SebRut / familynfriends.ps1
Last active May 8, 2019 10:15
Boxstarter Windows Setups
#### install critical windows updates
Install-WindowsUpdate -acceptEula true -SupressReboots true -criteria IsHidden=0 and IsInstalled=0 and Type='Software' and BrowseOnly=0
#### configure windows
Set-WindowsExplorerOptions -EnableShowFileExtensions
Disable-GameBarTips
Disable-BingSearch
#### install common programs
cinst unchecky

Keybase proof

I hereby claim:

  • I am sebrut on github.
  • I am sebrut (https://keybase.io/sebrut) on keybase.
  • I have a public key ASCYBSBpE9ueW9wbbt8COpFfZXl4S2K2VrRPQTv-NNqiOAo

To claim this, I am signing this object:

@SebRut
SebRut / analysis.R
Created September 5, 2016 05:27
imgur bench
library(ggplot2)
require(stringr)
library(RColorBrewer)
log <- read.csv("D:/Programming/Python/imgurbench/log.csv")
log$datetime <- strptime(log$datetime, "%Y-%m-%d %H:%M:%S")
log$loadingtime[log$loadingtime == -1] <- NA
ggplot(data = log) +
geom_line(mapping = aes(x = datetime, y = loadingtime), color="#99FF99", size=1.25) +
@SebRut
SebRut / .travis.yml
Last active August 29, 2015 14:09
Travis CI Mono
language: c
install:
- sudo apt-get install mono-devel mono-gmcs nunit-console
script:
- xbuild /*Solution file/.proj config(see CI.proj)*/
- nunit-console /*nunit test dll*/
@SebRut
SebRut / GetStringBetween
Created June 9, 2013 11:04
returns the string between two identifiers
private static string GetStringBetween(string source, string start, string end)
{
int startIndex = source.IndexOf(start, StringComparison.Ordinal) + start.Length;
int endIndex = source.IndexOf(end, startIndex, StringComparison.Ordinal);
int length = endIndex - startIndex;
return source.Substring(startIndex, length);
}