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
var now = new Date(), | |
hour, min; | |
if (this.data.time.format === "24") { | |
hour = now.getHours() + ""; | |
min = now.getMinutes() + ""; | |
if (hour.length === 1) { | |
hour = "0" + hour; | |
} |
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
var humanize = function(ms) { | |
var sec = 1000 | |
, min = 60 * 1000 | |
, hour = 60 * min; | |
if (ms >= hour) return (ms / hour).toFixed(1) + 'h'; | |
if (ms >= min) return (ms / min).toFixed(1) + 'm'; | |
if (ms >= sec) return (ms / sec | 0) + 's'; | |
return ms + 'ms'; | |
}; |
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
# What is your company going to make? | |
A digital signage system that is build on top of the webstack. Digital signs can be found in public places, retail stores or hotels lobbies. With different Widgets, our plattform allows the easy integration of any information which is available on the web for example weather forecast, news, twitter feeds etc.. The Display content is controlled by a web interface,which includes an graphical-editor to design each slide. Different Slides are packed in schedule able timelines. Digital signage players are rendering the content to the customer screen. Player and Webinterface always stays connected so changes and content are pushed in realtime to the customer screen. | |
# For each founder, please list: YC username; name; age; year, school, degree, and subject for each degree; email address; personal url (if any); and present employer and title (if any). Put unfinished degrees in parens. List the main contact first. Separate founders with blank lines. Put an asterisk before t |
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
if($User == "Buzz" && $_SERVER['PHP_AUTH_PW'] == "Lightyear" ) { | |
$UserRole = "Student"; | |
} | |
else if (($_SERVER['PHP_AUTH_PW'] == "**") && ($User == "Utah")) { | |
$UserRole = "Betreuer"; | |
} |
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
(function Aufgabe_4_1(){ | |
var args = toArray(arguments), | |
ele, attrs; | |
if(!(console && console.log)){ | |
return alert("Open Developer Console or Firebug and reload"); | |
} | |
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
NSDate *now = [NSDate date]; | |
int day = [[[NSCalendar currentCalendar] components:NSWeekdayCalendarUnit | |
fromDate:now] weekday]; | |
if (day == 1) { //sunday | |
NSDate *dayToFetch = [now addTimeInterval:60*60*24]; | |
} else { | |
NSDate *dayToFetch = now; | |
} |
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
try { | |
if(css && css !== ""){ | |
parser.parse(css); | |
} | |
for( var rule in builded ){ | |
string += rule + '{'; | |
for( var property in builded[rule]){ | |
string += property + ':' + builded[rule][property] + ';' | |
} |
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
Meet Now! ist eine App für iPhone und Android. Sie ermöglicht es Kontaktdaten mittels RF-ID Tags auf schnellstem Wege auszutauschen. Dieser Clip dient als Promo für die App. Im Clip soll möglichst keine direkte Rede verwendet werden. | |
1. Szene: Studentenwohnung | |
Der Student "Ben" wird geweckt, da MeetNow einen neuen Tag meldet. Der Student steht auf und geht in die Küche. Trinkt Orangensaft. Er macht sich etwas zu essen. Er zieht sich die Schuhe an und verlässt das Haus alleine. Weitwinkel szene CUT | |
2. Szene: Cafete | |
Ben betritt Cafete, holt sich einen Kaffee und hält einem Mädchen "Mia" die Türe auf. Dabei kommt der erste Blickkontakt zustande, sie lächeln sich an und ihre Augen funkeln. An einem Tisch trifft sie ihre Freundin, mit ihr unbekannten Personen. Diese tagged sie. CUT | |
3. Szene: Vorlesungssaal | |
Der Student kommt im Vorlesungssaal an und sucht sich einen Platz [füllt sich im Zeitraffer]. Man sieht ihn von hinten (und von vorne), er sitzt allein. Ein anderer Student kommt zu ihm und g |
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
var link; | |
link = document.createElement("a"); | |
link.setAttribute("href", "http://hs-furtwangen.de"); | |
link.innerHTML = "Text der verlinkt wird"; | |
var para = document.getElementById("ende"); | |
para.appendChild(link); |
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
CORE.Scripts.register('/widget/weather/0.01/js/input.js', { | |
widget : { | |
resize : { | |
aspectRatio : true | |
} | |
}, | |
onresize : function(){ |