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
Show hidden characters
{ | |
"extends": "eslint:recommended", | |
"env": {}, | |
"parserOptions": { | |
"ecmaVersion": 2018, | |
"sourceType": "module" | |
}, | |
"rules": { | |
"semi": [ | |
"error", |
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
{ | |
"extends": "eslint:recommended", | |
"rules": { | |
"prefer-arrow-callback": "off", | |
"no-const-assign": "warn", | |
"no-this-before-super": "warn", | |
"no-undef": "error", | |
"no-unreachable": "error", | |
"no-unused-vars": "warn", | |
"constructor-super": "warn", |
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
// Materialize your Bootstrap 3.* project simply by addding .material to the body tag! | |
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,700); | |
body.material { | |
font-family: 'Roboto', sans-serif; | |
h1, h2, h3, h4, h5, h6{ | |
font-family: 'Roboto', sans-serif; | |
} | |
p, div{ | |
font-family: 'Roboto', sans-serif; |
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
/* | |
-inpired by html5up template.- | |
by andruschka 2015 | |
*/ | |
@import url("http://fonts.googleapis.com/css?family=Roboto:100,300,100italic,300italic"); | |
body{ | |
background-color:#1c1d26; | |
color:#fff; | |
color: rgba(255, 255, 255, 0.75); | |
font-weight: 100; |
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
/* NICER NAVBAR TOGGLE */ | |
.navbar-toggle { | |
border:0px; | |
} | |
.navbar-toggle:hover, .navbar-toggle:focus { | |
background-color:transparent!important; | |
} | |
.navbar-nav .divider-vertical { | |
height: 50px; | |
margin: 0 9px; |
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
textarea:hover, | |
input:hover, | |
textarea:active, | |
input:active, | |
textarea:focus, | |
input:focus, | |
button:focus, | |
button:active, | |
button:hover | |
{ |
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
// Attribute | |
private static long nNextKontoNummer; | |
private long nKontoNummer; | |
private double dKontoStand; | |
// Konstruktor | |
public GiroKonto() | |
{} | |
// Statische Methoden | |
public static void setNextKontoNummer(long nr) | |
{ |
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
grunt.registerTask('createWindowsApp', 'Create windows distribution.', function () { | |
var done = this.async(); | |
var childProcess = require('child_process'); | |
var exec = childProcess.exec; | |
exec('cat tmp/nw.exe tmp/app.nw > tmp/QuickQuestion.exe && rm -rf tmp/app.nw tmp/nw.exe', function (error, stdout, stderr) { | |
var result = true; | |
if (stdout) { | |
grunt.log.write(stdout); | |
} | |
if (stderr) { |
NewerOlder