Problem My goal is to implement a method, which finds a list of Windows Services that match given set of […]
Tag: windows
Getting Windows User Info From The Active Directory
Problem I took some boilerplate code that I have been using for determining an active windows user’s info to either […]
Printing a string in NASM Win16 Assembly
Problem A small script that simply prints a given string. It’s an improved snippet that combines some recommendations given in […]
File path unified in Windows/MacOS/Linux
Problem We are all tremendously happy about back slashes in Windows file systems and do not think that their sole […]
Is my WriteConsole solution correct?
Problem Here is the book question: Modify the CatFile function in the program so that it uses WriteConsole rather than […]
Haskell program to turn off computer
Problem This a program I wrote to execute various power-related function on my computer. It accepts one command-line argument that […]
Quadratic equation solver in C++
Problem // ConsoleApplication1.cpp : Defines the entry point for the console application. // #include “stdafx.h” #include <cstdlib> #include <iostream> #include […]
Minimal colored write
Problem I remembered a cwrite application that I used in the good old DOS times. Basically it took a color […]
Visualization of bubble sort in progress
Problem I’ve written a program showing the process of bubble sort arithmetic in C. I need some suggestions on improving […]
Cross-platform MySQL database backup using mysqldump
Problem In a Laravel (PHP framework) project, we implemented a backup feature – backing up user-generated files and database tables. […]