A dialog/modal service written in AngularJS, creates predefined easy to use dialogs (error,wait,notify,confirm,create) with Angular UI and Bootstrap 3
A Pen by Michael E Conroy on CodePen.
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
A dialog/modal service written in AngularJS, creates predefined easy to use dialogs (error,wait,notify,confirm,create) with Angular UI and Bootstrap 3
A Pen by Michael E Conroy on CodePen.
Often in set ups that use version control the project.pbxproj can be merged in such a way that two CODE_SIGN_IDENTITY lines can be inserted. This seems to cause Xcode problems under certain situations (like command-line builds or archiving).
A tell-tail sign is lines similar to this in the project.pbxproj file (right-click on the project and select "Show Package Contents…")
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; CODE_SIGN_IDENTITY = "iPhone Distribution"; Deleting one of these lines will let you select the correct value in Build Settings and the project should once again build correctly.
I have created simple script to help diagnose this issue it can be found here: https://gist.github.com/4339226
http://swiftstub.com/ |
I released a new template. You can install it on your Android Studio to create Material Design applications easier than ever. Check it out here: https://github.com/kanytu/Android-studio-material-template
DEPRECATED I'm not currently supporting this repository. Please check Android Studio template for an updated material template for Android Studio.
Privacy policy | |
1. Introductory | |
1) Please read this Privacy Policy carefully. This Privacy Policy constitutes the integral part of the agreement between you (also, the 'User') and the individual mobile application developer (also, the 'Developer'). | |
2) This Privacy Policy describes the Developer's privacy practices with regard to your Personal Data. Personal Data includes any data about you that specifically identifies you as an individual and information about your activities, such as information about your use of the mobile application created by the Developer (also, the 'Application'), when directly linked to personally identifiable information. | |
3) By using the Application, you accept this Privacy Policy and consent to the collection, storage, use, and disclosure of your Personal Data in accordance with this Privacy Policy and applicable legislation. You may not withdraw your consent and/or require removal of your Personal Data at any time. | |
2. Collection |
Privacy policy | |
1. Introductory | |
1) Please read this Privacy Policy carefully. This Privacy Policy constitutes the integral part of the agreement between you (also, the 'User') and the individual mobile application developer (also, the 'Developer'). | |
2) This Privacy Policy describes the Developer's privacy practices with regard to your Personal Data. Personal Data includes any data about you that specifically identifies you as an individual and information about your activities, such as information about your use of the mobile application created by the Developer (also, the 'Application'), when directly linked to personally identifiable information. | |
3) By using the Application, you accept this Privacy Policy and consent to the collection, storage, use, and disclosure of your Personal Data in accordance with this Privacy Policy and applicable legislation. You may not withdraw your consent and/or require removal of your Personal Data at any time. | |
2. Collection |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
class SmartPhone( | |
val manufacture: String?, | |
val model: String?, | |
val storage: String?, | |
val screenSize: String?) { | |
data class Builder( | |
var manufacture: String? = null, | |
var model: String? = null, | |
var storage: String? = null, |