Monday, March 28, 2016
Saturday, March 19, 2016
Wednesday, March 16, 2016
CLOC -> Count lines of Code , Concat Source code
Output all source to a single file
find . "(" -name "*.js" -or -name "*.css" -or -name "*.ts" -or -name "*.less" ")" -exec cat {} + >> web.output.file
iOS
find . "(" -name "*.m" -or -name "*.mm" -or -name "*.cpp" -or -name "*.swift" ")" -exec cat {} + >> ios.output.file
find . "(" -name "*.m" -or -name "*.mm" -or -name "*.cpp" -or -name "*.swift" ")" -print0 | xargs -0 wc -l
Java
find . "(" -name "*.java" -or -name "*.kt" ")" -exec cat {} + >> android.output.file
web/typescript
find . "(" -name "*.js" -or -name "*.css" -or -name "*.ts" -or -name "*.less" ")" -print0 | xargs -0 wc -l
Sunday, March 13, 2016
iOS Developement
http://www.thomashanning.com/how-to-stay-up-to-date-on-ios-development/
https://github.com/vsouza/awesome-ios
https://github.com/matteocrippa/awesome-swift
https://medium.com/ios-os-x-development/things-i-wish-i-had-known-before-starting-ios-development-part-1-421a05e8447e#.gb2daogj5
https://medium.com/app-coder-io/27-ios-open-source-libraries-to-skyrocket-your-development-301b67d3124c#.rizr6jopu
Java-style interfaces are called protocols in Objective-C and are declared using the
@protocol
directiveThe
@interface
in Objective-C has nothing to do with Java interfaces. It simply declares a public interface of a class, its public API.Delegate
http://www.tutorialspoint.com/ios/ios_delegates.htm
Subscribe to:
Posts (Atom)