Scripted Harmony: Automating File Sorting into Named Folders

By |March 5, 2024|Blogging, Computer Programming Languages, Tech News|

To use the "Scripted Harmony: Automating File Sorting into Named Folders" program, start by placing the batch script in the folder containing the files you wish to organize. This script is designed to be flexible, allowing you to either organize all files within the directory or focus specifically on files with a particular [...]

Comments Off on Scripted Harmony: Automating File Sorting into Named Folders

Designing an app in Pseudo code

By |June 25, 2018|Computer Programming Languages, Programming Concepts|

Lesson: Designing an App in Pseudo Code What is Pseudo Code? Pseudo code is a high-level description of a computer program or algorithm that uses natural language or structured conventions to represent the logic of the program. It's used as a planning tool before coding to outline the steps and structure of the [...]

Comments Off on Designing an app in Pseudo code

Python Glossary

By |April 25, 2018|Computer Programming Languages, Python|

Python Glossary A programming glossary for Python for the beginner. If you want a more in-depth glossary, visit the Official Python Documentation. Class Python is a Language that supports the Object Oriented Programming paradigm. Like other OOP languages, Python has classes which are defined wireframes of objects. Python supports class inheritance. A class [...]

Comments Off on Python Glossary

Introduction to JavaScript – Properties

By |April 23, 2018|Computer Programming Languages, JavaScript|

Introduction to JavaScript - Properties Understanding Instances and Properties When you introduce a new piece of data into a JavaScript program, the browser saves it as an instance of a data type. An instance is an individual case (or object) of a data type. For example, when you create a string like "Hello", [...]

Comments Off on Introduction to JavaScript – Properties
Go to Top