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
<widget> | |
<gap:splash src="www/res/splash/android/res-long-port-ldpi/default.png" density="port-ldpi"/> | |
<gap:splash src="www/res/splash/android/res-long-port-mdpi/default.png" density="port-mdpi"/> | |
<gap:splash src="www/res/splash/android/res-long-port-hdpi/default.png" density="port-hdpi"/> | |
<gap:splash src="www/res/splash/android/res-long-port-xhdpi/default.png" density="port-xhdpi"/> | |
<gap:splash src="www/res/splash/android/res-long-port-xxhdpi/default.png" density="port-xxhdpi"/> | |
<gap:splash src="www/res/splash/android/res-long-port-xxxhdpi/default.png" density="port-xxxhdpi"/> | |
<gap:splash gap:platform="ios" height="480" width="320" src="www/res/splash/ios/Default.png" /> | |
<gap:splash gap:platform="ios" height="960" width="640" src="www/res/splash/ios/[email protected]" /> |
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
<widget> | |
<icon gap:platform="android" gap:qualifier="ldpi" src="www/res/icon/android/drawable-ldpi/ic_launcher.png" /> | |
<icon gap:platform="android" gap:qualifier="mdpi" src="www/res/icon/android/drawable-mdpi/ic_launcher.png" /> | |
<icon gap:platform="android" gap:qualifier="hdpi" src="www/res/icon/android/drawable-hdpi/ic_launcher.png" /> | |
<icon gap:platform="android" gap:qualifier="xhdpi" src="www/res/icon/android/drawable-xhdpi/ic_launcher.png" /> | |
<icon gap:platform="android" gap:qualifier="xxhdpi" src="www/res/icon/android/drawable-xxhdpi/ic_launcher.png" /> | |
<icon gap:platform="android" gap:qualifier="xxxhdpi" src="www/res/icon/android/drawable-xxxhdpi/ic_launcher.png" /> | |
<icon gap:platform="ios" height="29" src="www/res/icon/ios/Icon-Small.png" width="29" /> | |
<icon gap:platform="ios" height="58" src="www/res/icon/ios/[email protected]" width="58" /> |
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
Storage.prototype.setObject = function(key, value, ttl) { | |
this.setItem(key, JSON.stringify(value)); | |
if(ttl) { | |
this.setItem(key + "~ttl", moment.utc().add(ttl, "seconds").format("X")); | |
} | |
}; | |
Storage.prototype.getObject = function(key) { | |
var value = this.getItem(key); |
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
- (void)scrollViewDidScroll:(UIScrollView *)sender | |
{ | |
if (sender.contentOffset.y >= 0) | |
{ | |
self.inZero = YES; | |
} | |
// if the user pulled into abyss ... | |
if (sender.contentOffset.y <= -80 && inZero == YES) | |
{ |
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
% ... | |
% Literaturverzeichnis | |
\usepackage[ | |
bibstyle=authortitle, % in Verzeichnis das Jahr nicht hinter Autoren anzeigen | |
citestyle=authoryear, % in Fussnote das Jahr mit anzeigen | |
isbn=false, % keine ISBN-Nummer | |
url=false, % keine URLs | |
doi=false, % keine DOI | |
maxcitenames=1, % nur einen Autor in Fussnote anzeigen |
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
<? | |
$to = "[email protected]"; | |
$from = "[email protected]"; | |
$subject = "Hallo Test"; | |
$message = "<html>...</html>"; | |
// to send the HTML mail, set the Content-type header | |
$headers = "From: $from\r\n"; | |
$headers .= "Content-type: text/html\r\n"; | |
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
from datetime import datetime | |
import math, time | |
# | |
# SINUS SLEEPER | |
# | |
# max_time: maximum seconds to sleep at the zenith hour | |
# zenith : hour (0-23) of day at which the max_time value is reached | |
# | |
def sinus_sleeper(max_time=120, zenith=0): |
NewerOlder