This repository contains automated scripts to install MinGW-w64 (g++) compiler on Windows systems.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| The name Wendy was made up for the book 'Peter Pan.' | |
| Barbie's full name is Barbara Millicent Roberts. | |
| Every time you lick a stamp, you consume 1/10 of a calorie. | |
| The average person falls asleep in seven minutes. | |
| Studies show that if a cat falls off the seventh floor of a building it has about thirty percent less chance of surviving than a cat that falls off the twentieth floor. It supposedly takes about eight floors for the cat to realize what is occurring, relax and correct itself. | |
| Your stomach has to produce a new layer of mucus every 2 weeks otherwise it will digest itself. | |
| The citrus soda 7-UP was created in 1929; '7' was selected after the original 7-ounce containers and 'UP' for the direction of the bubbles. | |
| 101 Dalmatians, Peter Pan, Lady and the Tramp, and Mulan are the only Disney cartoons where both parents are present and don't die throughout the movie. | |
| A pig's orgasm lasts for 30 minutes. | |
| 'Stewardesses' is the longest word that is typed with only the left hand. |
Basically a combination of Installing Mirth on Ubuntu - A How To and Run Mirth service manually works, running from systemd errs with "No suitable JVM...".
This will create a Mirth Connect 4.5.0 service for a user and group mirth running on OpenJDK 21.
- Install JRE:
sudo apt install openjdk-21-jre-headless - Create user mirth:
sudo adduser mirth
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace ComponentModelEx | |
| { | |
| public delegate void PropertyChangedExEventHandler(object sender, PropertyChangedExEventArgs e); | |
| public interface INotifyPropertyChangedEx | |
| { | |
| event PropertyChangedExEventHandler PropertyChangedEx; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Extended Steam Guide Tools | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1.3 | |
| // @description Adds extra functionalities to Steam Guides. | |
| // @author lylat | |
| // @match https://steamcommunity.com/sharedfiles/editguidesubsection/?* | |
| // @icon https://cdn.discordapp.com/avatars/749437490883985499/7c4053deed909ec48be2656da4b12b76.png | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Download Achievement Images | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1.4 | |
| // @description Button to mass download achievement images | |
| // @author lylat | |
| // @match https://steamcommunity.com/stats/*/achievements* | |
| // @icon https://cdn.discordapp.com/avatars/749437490883985499/7c4053deed909ec48be2656da4b12b76.png | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.5/jszip.min.js | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/2.0.0/FileSaver.min.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Based on https://stackoverflow.com/a/41966914 | |
| public static class ExtensionMethods | |
| { | |
| public static string ToHumanReadable(this TimeSpan timeSpan) | |
| { | |
| Func<Tuple<int, string>, string> tupleFormatter = t => $"{t.Item1} {t.Item2}{(t.Item1 == 1 ? string.Empty : "s")}"; | |
| var components = new List<Tuple<int, string>> | |
| { | |
| Tuple.Create((int) timeSpan.TotalDays, "day"), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Gorillas can catch human colds and other illnesses. | |
| A newborn Chinese water deer is so small it can almost be held in the palm of the hand. | |
| Ostriches can run faster than horses, and the males can roar like lions. | |
| A lion in the wild usually makes no more than twenty kills a year. | |
| The female lion does ninety percent of the hunting. | |
| The world's smallest dog was a Yorkshire Terrier, which weighed just four ounces. | |
| Turtles, water snakes, crocodiles, alligators, dolphins, whales, and other water going creatures will drown if kept underwater too long. | |
| Almost half the pigs in the world are kept by farmers in China. | |
| On average, dogs have better eyesight than humans, although not as colorful. | |
| Deer have no gall bladders. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| using System.Collections; | |
| using System.Linq; | |
| namespace ExtensionMethods | |
| { | |
| static class ElevenStringHelpers | |
| { | |
| // called as shown below |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// <summary> | |
| /// Requires the BCrypt nuget package. Available here: https://www.nuget.org/packages/BCrypt.Net-Next | |
| /// </summary> | |
| public static class PasswordHashing | |
| { | |
| public static string HashPassword(string password, int workFactor) | |
| { | |
| return BCrypt.Net.BCrypt.HashPassword(password, workFactor); | |
| } |
NewerOlder