Time | Activity | Description |
---|---|---|
Friday | ||
1830 | Registration | Arrive at the venue and get checked in |
1900 | Dinner & Networking | Eat food, share ideas, practice pitches, get to know fellow participants |
1920 | Welcome & Speakers | Review agenda for the weekend and introduce speakers, coaches, and community leaders |
1930 | Pitches Start | Optionally line up to give your pitch |
2100 | Voting | Attendees vote for the top pitches |
2115 | Form Teams | Teams start forming and discussing ideas |
2200 | Begin Work | Start to formalize teams and take an inventory of skills. Be honest, and direct about what resources and skills are needed for the weekend. You may stay and work as late as the venue will allow |
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
<?php | |
// GET | |
$request = $client->get($url, array('Accept' => 'application/json')); | |
$response = $request->send(); | |
if ($response->getStatusCode() < 200 || $response->getStatusCode() >= 300) { | |
// 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
-------- Overflow #1 [Seats(-100)]-------- | |
9 Uhr:Comics enterprise -- [Verena, Herbert] NEED:Beamer Seats(10) -- COST: 1320 | |
10 Uhr:Startups for startups -- [Walter, Yves] NEED:Seats(20) -- COST: 1220 | |
11 Uhr:UX basics -- [Quentin] NEED:Beamer Seats(10) -- COST: 1320 | |
12 Uhr:Java for nerds -- [Olga] NEED:Beamer Seats(10) FD: 12WD: (50) - 10 11 13 -- COST: 1320 | |
13 Uhr:RM rocks for nerds -- [Rainer, Hannah] NEED:Beamer Seats(10) -- COST: 1320 | |
14 Uhr:------- FREI ------- | |
-------- M nchen [Beamer Seats(40)]-------- | |
9 Uhr:UX hardcore -- [Sandra] NEED:Beamer Seats(20) -- COST: -20 |
- Produkt- und Provisionstransparenz auf www.clark.de
- Berater empfehlen ohne Provisionsanreiz
- Niedrige Kosten sollen an Kunden weitergegeben werden
- Erfahrenes Gründerteam um Wimdu-Mitgründer Christopher Oster
Berlin, 15. Juni 2015 - Mit Clark startet in Deutschland der erste Online- Versicherungsmakler, der modernste Internet-Technologie mit Produkt- und Kostentransparenz sowie einer bedarfsorientierten Beratung vereint. „Clark ist
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
// services/calculator.js | |
// contains a plain javascript object, which can be tested directly with mocha | |
var calculateResult = function (interest, duration, amount) { | |
return … | |
}; | |
module.exports = { | |
calculateResult: calculateResult | |
}; |
Time | Agenda |
---|---|
18:00 | Presentations Intro |
18:20 | Announcement of Jurors |
18:30 | Pitches start |
EDUVEST | |
FOUNDERS | |
Fastinline | |
EMOTION CUBE | |
ZEPHYRION WIND ENERGY |
- Disable Secure Boot in BIOS, enable Boot of Ubuntu
- Boot this ISO via USB stick: https://plus.google.com/+IanMORRISON/posts/igAkD5j3MAq
- Use arch-bootstrap to install Arch Linux on the stick: https://github.com/tokland/arch-bootstrap
- aloso install the wifi driver https://aur.archlinux.org/packages/rtl8723bs-dkms-git/
- Copy Firmware
rtl8723bs_nic.bin
for Wifi from https://github.com/hadess/rtl8723bs - Update Compute Stick Firmware (to make headless work): https://communities.intel.com/message/347428#347428 https://downloadcenter.intel.com/download/25506
- To boot headless: add kernel parameters
text
(maybe not needed anymore)
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/bash | |
# Use pin.sh to prevent accidently repeating of dangerous commands | |
# Usage: | |
# $ pin.sh rm -rf / | |
# $ Please type the PIN 7945 to continue: 1234 | |
# $ Sorry :-( | |
PIN="$(((RANDOM % 9)+1))$(((RANDOM % 9)+1))$(((RANDOM % 9)+1))$(((RANDOM % 9)+1))" | |
echo -n "Please type the PIN $PIN to continue: " |
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/bash | |
IN=$1 | |
OUT="`echo "$IN" | cut -d'.' -f1`-web" | |
rm -f ffmpeg2pass* | |
# 1/3 of 1920x1090 | |
WIDTH=1280 | |
HEIGHT=720 |