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
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Tobias Graf", | |
"label": "Software Developer", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "0174 4847548", | |
"summary": "I am a software developer from Hannover, Germany who is highly interested in current web development trends. As someone who is constantly seeking to improve my skills and knowledge, I am always exploring new technologies and techniques that can help me to create innovative software solutions.", | |
"location": { |
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] | |
tool = vscode | |
[difftool] | |
prompt = false | |
[difftool "vscode"] | |
cmd = \"C:\\Program Files\\Microsoft VS Code\\Code.exe\" \"$LOCAL\" \"$REMOTE\" --diff --wait | |
trustExitCode = false |
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
{"lastUpload":"2018-11-26T13:51:58.803Z","extensionVersion":"v3.2.2"} |
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
const Alphabet = `ABCDEFGHIJKLMNOPQRSTUVWXYZ`.split(""); | |
const isEqualWith = key => v => key === v; | |
const matchKeyWithText = (key, text) => | |
text | |
.split("") | |
.map((_, i) => key[i % key.length]) | |
.join(""); | |
const decode = key => text => { |
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
{ | |
"pro": true, | |
"plugins": ["jsdom-quokka-plugin"], | |
"babel": { | |
"presets": ["@babel/preset-env"], | |
"plugins": [ | |
"@babel/plugin-proposal-function-bind", | |
"@babel/plugin-proposal-export-default-from", | |
"@babel/plugin-proposal-logical-assignment-operators", |
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
import text from "./decryptext"; | |
import chalk from "chalk"; | |
const isAscii = x => { | |
if (x.match(/[a-zA-Z0-9]/)) return true; | |
return false; | |
}; | |
//calculate Average character frequency | |
const frequency = {}; | |
const strippedText = text.split("").filter(isAscii); | |
strippedText.map(x => { |
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
module.exports = function (wallaby) { | |
return { | |
files: [ | |
{ pattern: 'node_modules/babel-polyfill/dist/polyfill.js', instrument: false }, | |
'config/jest.setup.js', | |
'src/**/*.js', | |
'package.json', | |
'!**/*[sS]pec.js', | |
'!**/*[tT]est.js', | |
'!node_modules/**/*.*', |