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
-(id)initWithNumberOfSegments(NSUInteger):numberOfSegments andSizeArray(NSArray *):sizeArray andTitleArray(NSArray * ):titleArray | |
{ | |
self = [super init]; | |
if(self) { | |
self.numOfSeg = numberOfSegments; | |
self.sizeArray = _sizeArray; | |
self.titleArray = _titleArray; | |
} | |
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
root@debian:/home/pawel/Documents/cordova-android/bin# apt-cache policy | |
Package files: | |
100 /var/lib/dpkg/status | |
release a=now | |
500 http://dl.google.com/linux/talkplugin/deb/ stable/main i386 Packages | |
release v=1.0,o=Google, Inc.,a=stable,n=stable,l=Google,c=main | |
origin dl.google.com | |
500 http://dl.google.com/linux/chrome/deb/ stable/main i386 Packages | |
release v=1.0,o=Google, Inc.,a=stable,n=stable,l=Google,c=main | |
origin dl.google.com |
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
pawel@debian:~/gitDirectory/gitInit$ git init | |
Initialized empty Git repository in /home/pawel/gitDirectory/gitInit/.git/ | |
pawel@debian:~/gitDirectory/gitInit$ git branch | |
pawel@debian:~/gitDirectory/gitInit$ |
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
root@debian:/home/pawel# hcitool scan | |
Scanning ... | |
20:00:00:00:0D:20 Bluetooth 3.0 Keyboard | |
root@debian:/home/pawel# |
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
make[1]: Entering directory `/home/pawel/git/git-1.8.4.2/Documentation' | |
make[2]: Entering directory `/home/pawel/git/git-1.8.4.2' | |
make[2]: `GIT-VERSION-FILE' is up to date. | |
make[2]: Leaving directory `/home/pawel/git/git-1.8.4.2' | |
ASCIIDOC git-add.xml | |
/bin/sh: 2: asciidoc: not found | |
make[1]: *** [git-add.xml] Error 127 | |
make[1]: Leaving directory `/home/pawel/git/git-1.8.4.2/Documentation' | |
make: *** [man] Error 2 |
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
root@debian:/home/pawel/bash/wildcardTest# ls | |
root@debian:/home/pawel/bash/wildcardTest# * | |
bash: *: command not found | |
root@debian:/home/pawel/bash/wildcardTest# echo * | |
* | |
root@debian:/home/pawel/bash/wildcardTest# ls | |
root@debian:/home/pawel/bash/wildcardTest# touch someFile | |
root@debian:/home/pawel/bash/wildcardTest# touch otherFile | |
root@debian:/home/pawel/bash/wildcardTest# ls | |
otherFile someFile |
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
pawel@debian:~/gitFromBottomUp$ find .git/objects -type f | |
.git/objects/af/5626b4a114abcb82d63db7c8082c3c4756e51b | |
.git/objects/47/78adb7ec4957eee9a1ad28dd878e22ab0830f1 | |
.git/objects/05/63f77d884e4f79ce95117e2d686d7d6e282887 | |
pawel@debian:~/gitFromBottomUp$ git cat-file -t af5626b4 | |
blob | |
pawel@debian:~/gitFromBottomUp$ git cat-file -t 4778adb7 | |
commit | |
pawel@debian:~/gitFromBottomUp$ git cat-file -t 0563f77d | |
tree |
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
pawel@debian:~/symbolicLinkTest$ git init | |
Initialized empty Git repository in /home/pawel/symbolicLinkTest/.git/ | |
pawel@debian:~/symbolicLinkTest$ echo 'Hello world' > greeting | |
pawel@debian:~/symbolicLinkTest$ ls | |
greeting | |
pawel@debian:~/symbolicLinkTest$ git add greeting | |
pawel@debian:~/symbolicLinkTest$ git log | |
fatal: bad default revision 'HEAD' | |
pawel@debian:~/symbolicLinkTest$ git write-tree | |
870e3f1f32de1e81e954dadc36bd60f9ce0d3cd0 |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ERConsole.Menu | |
{ | |
class MenuCollectionController | |
{ |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ERConsole.Menu | |
{ | |
class MenuCollectionController | |
{ |