Skip to content

Instantly share code, notes, and snippets.

View Walkman100's full-sized avatar

░▒▓█│【Walkman】│█▓▒░ Walkman100

View GitHub Profile
public (bool, string) Validate(string idNumber) {
if (!long.TryParse(idNumber, out _))
return (false, "Not a number");
if (idNumber.Length != 13)
return (false, "Must be 13 digits long");
int month = int.Parse($"{idNumber[2]}{idNumber[3]}");
if (month < 1 || month > 12)
return (false, "Incorrect Month Number");
int day = int.Parse($"{idNumber[4]}{idNumber[5]}");
if (day < 1 || day > 31)
@Walkman100
Walkman100 / 2018-10-11-4.log
Last active October 11, 2018 19:03
SevTech logs
This file has been truncated, but you can view the full file.
[13:06:10] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[13:06:10] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[13:06:10] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[13:06:10] [main/INFO] [FML]: Forge Mod Loader version 14.23.4.2707 for Minecraft 1.12.2 loading
[13:06:10] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_181, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_181
[13:06:10] [main/INFO] [FML]: Searching C:\Program Files\Games\Minecraft\Environments\MultiMC\SevTech+Ages-3.0.8\minecraft\mods for mods
[13:06:10] [main/INFO] [FML]: Searching C:\Program Files\Games\Minecraft\Environments\MultiMC\SevTech+Ages-3.0.8\minecraft\mods\1.12.2 for mods
[13:06:10] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in AppleCore-mc1.12.2-3.1.1.jar. This is not recommende

Keybase proof

I hereby claim:

  • I am walkman100 on github.
  • I am walkman100 (https://keybase.io/walkman100) on keybase.
  • I have a public key ASD_BbkDX9umy0MTxpgShN2FyxWWvPA7ujRTtvZQzEObXwo

To claim this, I am signing this object:

@Walkman100
Walkman100 / GetVBVariableInfo-compile.bat
Last active February 26, 2018 22:13
VB.Net variable types
@echo off
set VBC="%WinDir%\Microsoft.NET\Framework64\v4.0.30319\vbc.exe"
set VBCFLAGS=-nologo -quiet -utf8output -rootnamespace:GetVBVariableInfo -target:exe
set VBFILES=GetVBVariableInfo.vb
%VBC% %VBCFLAGS% -out:GetVBVariableInfo.exe %VBFILES%
if Not ERRORLEVEL==1 goto EOF
echo VBC command failed, trying again in 32-bit folder...
set VBC="%WinDir%\Microsoft.NET\Framework\v4.0.30319\vbc.exe"
@Walkman100
Walkman100 / Autorun.inf Commands.md
Last active August 31, 2023 05:11
Autorun.inf Commands (Windows)

OUTDATED. PLEASE SEE gists/Autorun.inf Commands.md

The Autorun script file at [DeviceLetter]\Autorun.inf can be used to do a variety of things.

Valid line entries are:

  • [autorun]
    • Required Header
  • Label=
    • Name of device as shown in Computer.
OUTDATED. PLEASE SEE https://walkman100.github.io/formatting
<text>
```java
<code>
```
(Documentation [here](https://guides.github.com/features/mastering-markdown/#GitHub-flavored-markdown))
@Walkman100
Walkman100 / Caching credentials for command line.bat
Last active August 29, 2015 14:08
Caching credentials for command line
Following commands at https://help.github.com/articles/caching-your-github-password-in-git/#platform-all
========================================================================================================
C:\Users\Matthew\Documents\GitHub>git config --global credential.helper cache
C:\Users\Matthew\Documents\GitHub>git config --global credential.helper 'cache --timeout=9999999999999999'
C:\Users\Matthew\Documents\GitHub>cd gitupdater
C:\Users\Matthew\Documents\GitHub\GitUpdater>git push
@Walkman100
Walkman100 / ProjectsAndFeatures.md
Last active August 1, 2016 16:29
Projects and upcoming features

OUTDATED. PLEASE SEE gists/ProjectsAndFeatures.md

A list of all projects is available here.

  • Command line flags
  • Update checker
  • More buttons
  • Open Deturl download links page
  • Display thumbnail button
  • Release v1.4.2 (Waiting for @Deavmi to look at the thumbnail viewer)