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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
/** | |
* Account Machine | |
* --- | |
* | |
* Type: Backend | |
* | |
*/ | |
if (console) { | |
console.clear() |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
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
/* | |
* Adds a computed property name to your component which uses the specified getter and actionName for reactivity. | |
* Afterwards you can bind the property name to e.g. form elements like any other property via `v-model`. | |
* See https://vuejs.org/v2/guide/forms.html for more details | |
* | |
* import addVuexModel from './utils/addVuexModel' | |
* { | |
* computed: { | |
* ...addVuexModel({ | |
* name: 'propertyName', |
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
extracted from http://chris.com/ascii/index.php?art=holiday/christmas/other | |
-=[ snowflakes ]=- 1/97 | |
* . * | |
. _\/ \/_ . | |
\ \ / / | |
-==>: X :<==- | |
/ _/ \_ \ |
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 java.io.File; | |
import java.io.FilenameFilter; | |
// returns all filenames | |
String[] processFolder(String path) { | |
return processFolder(path, null); | |
} | |
// returns all filenames filtered by extension | |
String[] processFolder(String path, final String ext) { | |
java.io.File folder = new java.io.File(path); |
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 java.awt.Robot; | |
import java.awt.Rectangle; | |
import java.awt.AWTException; | |
class SimpleScreenCapture { | |
Robot robot; | |
PImage screenshot; | |
SimpleScreenCapture() { |
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
Screens | |
- Titel screen? | |
- Intrografiken/ Vergleich (Daten von Pressestelle) | |
- Linkliste Unis / Screens | |
- Stockfotoalumni | |
- Plakat Slawek / Website Alumniprojekt | |
- Kontakt (?) |
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
// class pattern helpers | |
// | |
// @see https://stackoverflow.com/questions/1595611/how-to-properly-create-a-custom-object-in-javascript | |
// | |
Function.prototype.makeSubclass= function() { | |
function Class() { | |
if ('_init' in this) | |
this._init.apply(this, arguments); | |
} | |
Function.prototype.makeSubclass.nonconstructor.prototype= this.prototype; |
NewerOlder