Attending:
- knatten
- baggers
- trond
Suggestions for talks:
| 0:00:00 Three Drives - Greece 2000 | |
| 0:07:11 Energy 52 - Café del Mar | |
| 0:11:56 The Quest - C Sharp | |
| 0:17:22 Miss Thunderpussy - The Ride | |
| 0:21:21 Apoptygma Berzerk - Kathy's Song (Ferry Corsten Remix) | |
| 0:27:06 Binary Finary - 1998 Gouryella Remix | |
| 0:31:47 The Morrighan - Remember (To The Millennium) (Lange remix) | |
| 0:38:36 Kamaya Painters - Cryptomnesia (Original Mix) | |
| 0:43:58 Kamaya Painters - Endless Wave | |
| 0:47:28 Chakra - Love Shines Through |
| using System; | |
| using System.Diagnostics; | |
| using System.Threading; | |
| namespace ConsoleApplication18 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { |
| StopWatch : 0,2 DateTime : 1,0 Diff : 0,81 | |
| StopWatch : 10000,5 DateTime : 10002,6 Diff : 2,04 | |
| StopWatch : 20000,5 DateTime : 20003,1 Diff : 2,61 | |
| StopWatch : 30000,5 DateTime : 30003,7 Diff : 3,18 | |
| StopWatch : 40000,4 DateTime : 40004,3 Diff : 3,91 | |
| StopWatch : 50000,3 DateTime : 50004,9 Diff : 4,52 | |
| StopWatch : 60000,4 DateTime : 60005,4 Diff : 5,00 | |
| StopWatch : 70000,2 DateTime : 70006,0 Diff : 5,78 | |
| StopWatch : 80000,2 DateTime : 80006,6 Diff : 6,36 | |
| StopWatch : 90000,2 DateTime : 90007,1 Diff : 6,98 |
| #!/bin/bash | |
| function list { | |
| for branch in `git branch --remote | awk '{print $1}'`; do | |
| last=`git log $branch | grep Author | head -1 | awk '{print $NF}'` | |
| echo $last $branch | |
| done | |
| } | |
| list | sort |
| #include <stdio.h> | |
| void foo(signed int v) | |
| { | |
| printf("signed int: %x\n", v); | |
| } | |
| void foo(unsigned int v) | |
| { | |
| printf("unsigned int: %x\n", v); |
| alias pushb="GIT_BRANCH_STACK=\"\$(git rev-parse --abbrev-ref HEAD);\"\$GIT_BRANCH_STACK && git checkout" | |
| alias popb="git checkout \$(echo \$GIT_BRANCH_STACK | tr \";\" \"\n\" | head -1);GIT_BRANCH_STACK=\$(echo \$GIT_BRANCH_STACK|sed 's/[^;]*;//')" |
Attending:
Suggestions for talks:
| ckarmy [3:19 PM] | |
| @bondehagen: @knatten: Push notifications work great now! But on IOS I receive all the time `2015-12-23 11:20:32.955 deem[755:264867] Received memory warning.`(edited) | |
| [3:19] | |
| and the app crash sometimes | |
| [3:20] | |
| In a Iphone 6 and Ipad 3! |