Featured Post
Welcome to Scriptopia!
Nord VPN – Python location switcher
The following script will take a specified location as input and then attempt to connect a Nord VPN server in the location entered. The prerequisite of this script is Nord VPN must be installed on your machine; the script will check your machine automatically for the Nord program files. This script is especially ideal forContinue reading “Nord VPN – Python location switcher”
Work Automation – Bulk email send out via Python (Gmail Servers)
This project has been done before on this site, the only difference here is we’ll be making use of Gmail servers to send our bulk instead. Before we start ensure that you have a list of recipients saved to an xlsx file containing the names and email addresses of our recipients. we begin by openingContinue reading “Work Automation – Bulk email send out via Python (Gmail Servers)”
Work Automation – Bulk email send out via Python
As part of this project we will be creating a Python script that will make use of an Excel spreadsheet containing a list of recipients i.e. their names and emails. The script will fetch this data and use it to carry out a bulk email send out. Before we start ensure that you have aContinue reading “Work Automation – Bulk email send out via Python”
Work Automation – Stop your machine idling, Working from home
If you work from home, you may need to sometimes get away without anyone realising. If your job is anything like mine, you’ll have applications that track your idleness. Ever turned to an orange status on Microsoft Teams? Or on the Spark messenger application? In this post using AutoIt we create a script that willContinue reading “Work Automation – Stop your machine idling, Working from home”
C# Application to Firebase – Inserting Data
Inserting data within Firebase database through use of a C# application. In this post we’ll be going through the inserting of data via a C# application to Googles firebase database. Before you start, ensure you have created a project within Firebase. We will be connecting to the Firebase database through use of web requests. ToContinue reading “C# Application to Firebase – Inserting Data”
C# Application to Firebase – Updating Data
Updating data within Firebase database through use of a C# application. In this post we will cover updating data in Firebase using a C# application. Do ensure you have created a database project within Firebase and have the link to your database ready. A web request will be used to carry out the functionality andContinue reading “C# Application to Firebase – Updating Data”
C# Application to Firebase – Deleting Data
Deleting data within Firebase database through use of a C# application In this post we will go through deleting data in Firebase using C#, the following will flush the entire database project of all its data. A way in which this could be implemented would be a reset for an application. To begin with weContinue reading “C# Application to Firebase – Deleting Data”
C# Application to Firebase – Working with Authentication
Authenticating a connection to the Firebase database through use of a C# application. Keep your project safe and allow only those you want to have permission to access data within your database. In this post we will be going through one of the ways we can have some form authentication implemented in to any project.Continue reading “C# Application to Firebase – Working with Authentication”
C# Application to Firebase – Retrieving Updated Data
Retrieving data from Firebase database through use of a C# application. In this post we will be going through the way in which you can go about retrieving updated data in Googles Firebase database using a C# application. Retrieving data has been an extremely large request and so its finally here. Please note that ifContinue reading “C# Application to Firebase – Retrieving Updated Data”
C# Application to Firebase – Retrieving the Entire JSON tree
Retrieving the entire JSON tree from a Firebase database through use of a C# application. In this article we will go through how to retrieve all data from Googles Firebase database using a C# application. To begin with we will look at the namespaces being used within this example of code. The first header weContinue reading “C# Application to Firebase – Retrieving the Entire JSON tree”
C# Application to Firebase – Retrieving parent and individual child nodes
Retrieving parent and child nodes from a Firebase database through use of a C# application. Here we will be going through the process of retrieving parent and child nodes from the Firebase database using a C# application. The aim of this project was to allow for the ability to retrieve the child nodes of anyContinue reading “C# Application to Firebase – Retrieving parent and individual child nodes”
C# Application to Firebase – Inserting Data (No Base 64 Keys)
Inserting data within Firebase database through use of a C# application with no base 64 keys. In this post we will be going through the adding of child nodes to the firebase database as well as declaring a parent. This has been a huge request and is an effective way of structuring multiple pieces ofContinue reading “C# Application to Firebase – Inserting Data (No Base 64 Keys)”
