Hi there! Continuing series of posts about automating some things 🙂 Today’s post will be about private keys and adding needed permissions. In cryptography, a private key (secret key) is a variable that is used with an algorithm to encrypt and decrypt code. Quality encryption always follows a fundamental rule: the algorithm doesn’t need to […]
Month: October 2016
Notification Resender. Part 4

Hi there! I’m continuing my series of posts about creating Android application for resending notifications. Previous parts you can find here: http://dbondarchuk.com/tag/notification-resender/ So, we’ve already created our main activity, helper for working with database and now, we need to create an activity for adding/editing setting. Let’s start! 🙂 We need to create a new Empty Activity. […]
Check .Net Framework version using Powershell

Hi again! In my tasks, I often face up with problem to determine latest version of the .Net Framework, which is installed on the machine. This problem could be resolved very easily using Powershell. The main idea is to check Windows Registry – .Net Framework writes own info to the special folder there. Knowing where located […]
Notification Resender. Part 3

Hi again! Today I will continue my series of posts about creating Android app for resending notifications. First part you can read here:  http://dbondarchuk.com/2016/09/22/notification-resender-part-1/. Second – http://dbondarchuk.com/2016/09/26/notification-resender-part-2/ Today’s post will be about working with databases in Android app. Why we need database in our mobile app? We need to store information that we need from launch to […]