Category Archives: Code Snippets

Code Snippets (C/C++, shell scripts, etc.)

Dynamic Quote-of-the-day in Outlook signature

Outlook 2016 has the ability to run macros just before an email is sent. Here is a quick macro, that can be added to your Outlook, which will replace a text in your email message with a random quote from … Continue reading

Posted in Code Snippets, Tech | Leave a comment

Starting with Bootstrap

The first step in starting with bootstrap, is to include the following header/template page. Note that the bootstrap.js entry must be after the jqeury.js entry. <!DOCTYPE html> <html> <head> <link href=”https://stackpath.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css” rel=”stylesheet”> <script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js”></script> <script src=”https://stackpath.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js”></script> </head> <body> </body> </html> … Continue reading

Posted in Code Snippets, Tech, WebApps | Leave a comment

Integer to Binary Representation (C/C++)

/* ** filename: hextobin.c **/ Click for entire code snippet Integer to Binary Representation (C/C++) …

Posted in Code Snippets | Leave a comment