Author: Nic Raboy
Solar Flare For Cloudflare Released On Android And iOS
I am pleased to announce that Solar Flare for Cloudflare, my first mobile development project in a long time, has been published to the iTunes App Store and Google Play!
So what is Solar Flare and who is it designed for? This is a free application for managing data stored in Cloudflare on iOS and Android. If you’re unfamiliar, Cloudflare is an amazing service that acts as a content delivery network (CDN), among other things related to web performance and security.
Read MoreBuild A Full Stack Movie Database With NoSQL, Node.js, And Angular
Not too long ago you’ll remember I wrote a full stack tutorial on developing a full stack movie database with the Go programming language. In that tutorial we made use of NoSQL as the database, Golang as the backend, and Angular as the client frontend. However, I realize that not everyone is a Go developer.
This time around we’re going to take a look at developing the same full stack movie database application, but using Node.js instead of Golang. It is a good example to show that elements in the stack are modular and each element is replaceable with another technology.
Read MoreUnit Testing A Golang Application That Includes HTTP
When building a great application, it is a good idea to plan for proper testing of each of the components that make the application tick. Through unit testing, we can test each function within the application as a separate entity, to make sure it performs based on our testing criteria.
But how do you do this in a Golang application? What if you need to test endpoints that were created using the Gorilla mux package?
We’re going to see how to develop unit tests for our functions as well as HTTP endpoints in a Golang application using the available Go testing framework.
Read MoreUse The Native Device Clipboard In A NativeScript Angular Application
Back when I had just started to learn NativeScript I had created a tutorial for using the native device clipboard for copying and pasting. The previous tutorial demonstrated this functionality in a vanilla JavaScript application. In an effort to clean up any loose ends, I figured it would be a good idea to convert this tutorial into an Angular equivalent. While nothing has really changed in the clipboard functionality, Angular is a very different animal.
We’re going to see how to copy and paste directly within an application built with Angular, TypeScript, and NativeScript.
Read MoreUse Visually Appealing Fancy Alerts In A NativeScript Angular Application
In pretty much every mobile application that I’ve ever made, I’ve had a need to use some form of alert dialog. The problem with this is that standard alert dialogs are boring and can actually make your application less attractive. This is where Fancy Alerts come in.
In NativeScript, there is a plugin called Fancy Alerts that can display visually appealing alerts with nice animations. These alerts have smooth color schemes and can make your application that much more important. We’re going to see how to include such alerts in our NativeScript Angular application.
Read MoreUsing A Raspberry Pi For Distributed Object Storage With Minio
So I was researching object storage and I came across the open source distributed object storage software, Minio. This lightweight software was written with Golang and accomplishes similar things to that of Amazon S3. After all they are both object storage solutions. The difference here is that Minio can be deployed on your own hardware.
Being that Minio was written with Golang, it is cross platform for different computing architectures, ARM included. This means that the server software can be installed on Raspberry Pi micro computing devices. Object storage is great for data backups so it gave me the idea to turn my Raspberry Pi into an object storage backup solution.
Read MoreTPDP Episode #12: Getting the Developer Help You Need, Online
I am pleased to announce that the latest episode of The Polyglot Developer Podcast has been released to popular podcasting networks such as, but not limited to, iTunes and Pocket Casts. In this episode titled, Getting the Help You Need on Stack Overflow, Blogs, and Forum Boards, I revisit something I had discussed on this blog a few years back. The subject is on getting developer help, online.
Back in 2015 I wrote about the best ways to seek help on The Polyglot Developer. Both the podcast episode and blog post were inspired by a common set of questions that I would receive in the comments section of the blog. The common set of questions lack important information required to give a quality response.
Read MoreSearch
Recent Posts
- Test Password Strength and Password History with TypeScript and MongoDB
- Extract Text from Your PDF and Image Files with Apache Tika
- How to Install MongoDB on Ubuntu: A Step-by-Step Guide for Beginners
- Running MongoDB in Docker - A Complete Guide with Examples
- How to Design Nested Documents for a Blogging App