I’ve been writing web applications for more than a decade. From classic ASP to PHP, ASP.Net web forms and the list goes on and on. However, something that’s been common between all those years for me has been to …
Xamarin.Forms & Xamarin.Essentials Go AndroidX Avatar
Last week we released our official stable NuGet packages for AndroidX, which are an exciting replacement for the Android Support Libraries. AndroidX streamlines components into smaller and easier to update libraries for developers to consume. In the post last …
Custom AI-Assisted IntelliSense for your team
As you’ve been editing code, you may have noticed IntelliCode’s starred recommendations in your autocompletion lists. Our previous IntelliCode blog post explains that these smarter suggestions were machine-learned over thousands of open sourced GitHub repos. Using community knowledge is great …
Learn Swift Ternary Conditional Operator (With Examples)
A standard if
/else
statement can get pretty lengthy – at least 5 lines of code. Many developers prefer to keep their code as concise as possible and favor a shorter syntax. Swift allows us to minimize our if
…
Learn Swift Programming Conditional Operator
Introduction to Swift Conditionals
On a daily basis, we’re faced with making decisions based on certain conditions; if the weather is beautiful, we’ll go for a walk, or if it’s rainy, we’ll stay in and code!
In Swift, the …
Best 5 Blockchain Books – You Need To Read in 2020
Best 5 Blockchain Books – You Need To read in 2020
What You’ll Learn & Who This Book Is For
Mastering Bitcoin is your guide through
… CSS Selector Notes and Guidance
Selector
Always keep the CSS selector short and efficient.
Selectors positioned by page element location are not ideal. A selector such as .sidebar h3 span{}
is positioning too dependent on relative positions, making it difficult to maintain its style when …