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
{ | |
"toggles": { | |
"foo": "bar" | |
}, | |
"availableLanguages": ["de", "en", "jp"] | |
} |
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
/* | |
|------------------------------------------------------------------------------- | |
| Colors https://tailwindcss.com/docs/colors | |
|------------------------------------------------------------------------------- | |
| | |
| Here you can specify the colors used in your project. To get you started, | |
| we've provided a generous palette of great looking colors that are perfect | |
| for prototyping, but don't hesitate to change them for your project. You | |
| own these colors, nothing will break if you change everything about them. | |
| |
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
#!/bin/sh | |
### # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ### | |
### Script to download all available NodeJS Packages for all plattforms ### | |
### # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # ### | |
# Which Node version should be downloaded? | |
NODE_VERSION="v8.9.1" |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> | |
<display-name>Web-Fonts</display-name> | |
<!-- web fonts --> | |
<mime-mapping> | |
<extension>eot</extension> | |
<mime-type>application/vnd.ms-fontobject</mime-type> | |
</mime-mapping> | |
<mime-mapping> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> | |
<display-name>Web-Fonts</display-name> | |
<!-- web fonts --> | |
<mime-mapping> | |
<extension>eot</extension> | |
<mime-type>application/vnd.ms-fontobject</mime-type> | |
</mime-mapping> | |
<mime-mapping> |
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
<div class="off-canvas-wrap" data-offcanvas> | |
<div class="inner-wrap"> | |
<nav class="tab-bar"> | |
<section class="left-small"> | |
<a class="left-off-canvas-toggle menu-icon" href="#"><span></span></a> | |
</section> | |
<section class="middle tab-bar-section"> | |
<h1 class="title">Offcanvas example</h1> | |
</section> |
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
public final class MyUtil { | |
private static final String MY_CONST = "HalloWelt"; | |
private MyUtil() { | |
throw new AssertionError("Suppress default constructor for non instantiability"); | |
} | |
public static int foo() { | |
return -1; |
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
(function($, _super){ | |
$.widget('bartels.myDialog', $.ui.dialog, { | |
options: { | |
someKey: undefined | |
}, | |
_create: function () { | |
_super._create.call(this); | |
this.updateSomeKey(this.options.someKey); |