Refresh & New Post are coming!
Let’s take some times to refresh with dark mode! Update the site & new Post Stay Tune! Author & Editor
Let’s take some times to refresh with dark mode! Update the site & new Post Stay Tune! Author & Editor
Be part of « Hour of CODE » A good Way to start coding is to find some inspiring sites.Leaning the programming basis. Go to this site for a first starthttps://hourofcode.com
GitHub Find Exchange Share code … Share code is one of the most important and powerfull feature.Develop a project with more than one person by working all together at the same time. Branch is a fonction that let you work from the office or home.Work on your part and than merge it all together…
Switching the site to Dark Mode. Light is getting hard on eyes. Long days, long time in front of the computer. Let’s make something soft … for reading! The Editor
If your now at a level of development where your looking a new way to code and develop Hybrid App. Work’s on iOS ans Androïde. Look at those cies. Combo that work’s together Ionic (FrameWork) http://ionic.io Cordova (HTML, CSS, JavaScript)https://cordova.apache.org (Adobe PhoneGap) NodeJS (Programming Interface) (open source libraries)https://nodejs.org/en/ Angular JS (Java Script open…
Here is a constraint problem on the Bousolle App in an iPhone 4S. With iOS 8.2 – I’ve made a bug report. The Longitude and Latitude are not completely shown. With iOS 8.3 – Here’s the bug fix. Here you can see that they have fix it Happy to know that I’m not alone…
Small Bussiness and Indoor – a tool from Apple. Apple Map is now editable from every one using Small Business. iBeacon has now a place to publish it’s location using Indoor. Those services are not Apps.
[vc_row][vc_column][vc_column_text] Swift Code work’s fine with a dot (.) decimal. The problem is when your using a comma (,) in your variables. Origin of the problem: Usually, the origin of the problem is from the Decimal Keyboard that use a comma (,) instead of a dot (.) Like the French Decimal Keyboard The result: The reality is that you are loosing…
If you want to force a number to change or keep it positive. Here is the way: abs() for int fabs() for double fabsf() for float If you want more info, you can look here: http://stackoverflow.com/
Witch one to use: String () or String? Depends … on how you do things! But! For my part, I’ve reduce bug crashing App when using: String () How? String? make’s it wait for a value from the user (problematic). String () set’s a nil value. Why! If using String? and the user skip…