Tuesday, February 9, 2016
Monday, February 8, 2016
WEB AUDIO - short example of WEB Audio API use (link)
http://gonehybrid.com/how-to-add-sound-effects-to-your-ionic-app-with-native-audio/
https://www.airpair.com/ionic-framework/posts/using-web-audio-api-for-precision-audio-in-ionic
Io.sound (a plugin based on WEB Audio API) - a good examples of its use:
http://ionden.com/a/plugins/ion.sound/en.html
https://blog.nraboy.com/2014/11/playing-audio-android-ios-ionicframework-app/
http://stackoverflow.com/questions/32507229/saving-web-audio-api-output-to-local-file-in-ionic
https://www.airpair.com/ionic-framework/posts/using-web-audio-api-for-precision-audio-in-ionic
Io.sound (a plugin based on WEB Audio API) - a good examples of its use:
http://ionden.com/a/plugins/ion.sound/en.html
https://blog.nraboy.com/2014/11/playing-audio-android-ios-ionicframework-app/
http://stackoverflow.com/questions/32507229/saving-web-audio-api-output-to-local-file-in-ionic
Saturday, February 6, 2016
IONIC - resources, links
The Ionic View App - http://blog.ionic.io/view-app-is-alive/
Ionic cheatsheet: https://devdactic.com/ionic-cheatsheet/
Comparision natiove iOS, Android and Ionic https://www.airpair.com/javascript/posts/switching-from-ios-to-ionic
Automating Icons and Splash Screens http://blog.ionic.io/automating-icons-and-splash-screens/
Android version s that will be supported - ^4.1.* http://blog.ionic.io/market-share-movement-android/ (Android dashboard for 01.2016 http://developer.android.com/about/dashboards/index.html)
Codepen Ionic examples - http://codepen.io/ionic/
Ionic Tips and Tris - http://www.sitepoint.com/5-ionic-app-development-tips-tricks/
Ionic cheatsheet: https://devdactic.com/ionic-cheatsheet/
Comparision natiove iOS, Android and Ionic https://www.airpair.com/javascript/posts/switching-from-ios-to-ionic
Automating Icons and Splash Screens http://blog.ionic.io/automating-icons-and-splash-screens/
Android version s that will be supported - ^4.1.* http://blog.ionic.io/market-share-movement-android/ (Android dashboard for 01.2016 http://developer.android.com/about/dashboards/index.html)
Codepen Ionic examples - http://codepen.io/ionic/
Ionic Tips and Tris - http://www.sitepoint.com/5-ionic-app-development-tips-tricks/
Friday, February 5, 2016
Wednesday, February 3, 2016
ANGULARJS - angular + breeze application with saving data into Local Storage
Angular application could save Work In Process files (WIP) in Local Storage. The Breeze framework is widely used for this purpose. John Papa gives good explanation how it works:
https://www.youtube.com/watch?v=JLij19xbefI
https://www.youtube.com/watch?v=JLij19xbefI
Tuesday, February 2, 2016
COUCHBASE - how to create primary index for N1QL
C:\Users\andriypa>cbq
Couchbase query shell connected to http://localhost:8093/ . Type Ctrl-D to exit.
cbq> CREATE PRIMARY INDEX ON `default`;
{
"requestID": "65230d77-9d8f-4f13-9590-776ad6309f9c",
"signature": null,
"results": [
],
"status": "success",
"metrics": {
"elapsedTime": "3.1251858s",
"executionTime": "3.1241875s",
"resultCount": 0,
"resultSize": 0
}
}
Couchbase query shell connected to http://localhost:8093/ . Type Ctrl-D to exit.
cbq> CREATE PRIMARY INDEX ON `default`;
{
"requestID": "65230d77-9d8f-4f13-9590-776ad6309f9c",
"signature": null,
"results": [
],
"status": "success",
"metrics": {
"elapsedTime": "3.1251858s",
"executionTime": "3.1241875s",
"resultCount": 0,
"resultSize": 0
}
}
GIT - create a new remote branch from the local one
First, you must create your branch locally
git checkout -b your_branch
After that, you can work locally in your branch, when you are ready to share the branch, push it. The next command push the branch to the remote repository origin and tracks it
git push -u origin your_branch
Teammates can reach your branch, by doing:
git fetch
git checkout origin/your_branch
http://stackoverflow.com/questions/1519006/how-do-you-create-a-remote-git-branch
HTTP 2 - Chrome dev tools settings for view live HTTP/2 sessions
In order to capture HTTP/2 sessions in Chrome for live view enter this url in Chrome and choose HTTP/2 option:
chrome://net-internals/#http2
chrome://net-internals/#http2
Subscribe to:
Posts (Atom)