Skip to content

Instantly share code, notes, and snippets.

View CodeMouse92's full-sized avatar
Sipping coffee at my local café.

Jason C. McDonald CodeMouse92

Sipping coffee at my local café.
View GitHub Profile
@CodeMouse92
CodeMouse92 / beginners-tag.md
Last active March 6, 2024 06:03
DEV.to Moderation Comments and Messages

MOVED TO https://github.com/CodeMouse92/DEVModInACan

#BEGINNERS TAG REMOVALS

Non-Beginner Article

All articles on #beginners should be written for those new to programming, development, networking, or to a particular language. These posts should also require little to no prerequisite knowledge. If you wish, you may rewrite your post to meet these requirements, at which point you may request that the tag be added back. Otherwise, just use the appropriate technology tags. (Read more about the tag rules here.)

Non-Beginner Question

@CodeMouse92
CodeMouse92 / project_wishlist.md
Last active January 23, 2020 20:15
2020 Coding Project Wishlist

2020 Coding Project Wishlist

These are (mostly) personal projects I want to try and release a functional version of in 2020.

Timecard 2.0

Timecard allows tracking and logging time spent on various tasks. This new version will also have tools for the Pomodoro technique built in.

This is a re-creation of the first working software project I ever created.

@CodeMouse92
CodeMouse92 / useful_regexes.txt
Created February 24, 2021 01:54
Useful Search Regexes
# Replace all instances of string with std::string,
# without clobbering include statements, names, or anything with "string" in the name.
FIND ((?<!#include )[^\w>:\.])(string)([^\w])
REPLACE $1std::$2$3
# Do you keep forgetting about long-running processes on your machine,
# and you wind up stuck on something else while waiting?
# This bash function will remind you when your long-running process is done.
# 1. Ensure zenity is installed on your system (or modify the script below)
# 2. Add the following bash function to your shell profile (e.g. .bashrc)
hey() {
$@
using System.IO;
using System.Text;
using CliWrap;
namespace Corgibytes.Freshli.Cli.Functionality;
public static class InvokeCommand
{
public static string InvokeFreshli(string arguments)
{