Skip to content

Instantly share code, notes, and snippets.

View marisusis's full-sized avatar
🎹
vibing

Maris Usis marisusis

🎹
vibing
View GitHub Profile
anonymous
anonymous / BkpE-1.lol
Created February 8, 2016 17:21
https://repl.it/BkpE/1 created by anonymous
I HAS A CHZBRGR ITZ "HOT"
HOW DUZ I NOM YR FUD
VISIBLE "I NOMD YR " FUD
VISIBLE "I CAN HAZ :{CHZBRGR} BRGR NAO"
IF U SAY SO
NOM "COOKIE"
CHZBRGR R "COLD"
NOM "CHOKLET"
anonymous
anonymous / BkpE-0.lol
Created February 8, 2016 17:13
https://repl.it/BkpE/0 created by anonymous
I HAS A CHZBRGR ITZ "HOT"
HOW DUZ I NOM YR FUD
VISIBLE "I NOMD YR " FUD
VISIBLE "I CAN HAZ :{CHZBRGR} BRGR NAO"
IF U SAY SO
NOM "COOKIE"
CHZBRGR R "COLD"
NOM "CHOKLET"
@fernandezpablo85
fernandezpablo85 / git-maven-howto.md
Last active September 22, 2024 11:36
how to create your own maven repository on github

How to create a maven repository for your github project step by step

Clone your project in a separate folder

(note: replace ORGANIZATION and PROJECT)

git clone git clone [email protected]:ORGANIZATION/PROJECT.git my-repository

Cd into it

@ScRaizer
ScRaizer / MultipleDataFiles.java
Last active November 27, 2016 19:53
Example java class in creating multiple config files on bukkit.
package me.ruptur.multipledatafiles;
import java.io.File;
import java.io.IOException;
import java.util.logging.Level;
import org.bukkit.Bukkit;
import org.bukkit.configuration.file.FileConfiguration;
import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.entity.Player;
@toxicFork
toxicFork / TextureAtlasSlicer.cs
Last active November 24, 2019 08:28
TextureAtlasSlicer.cs
using System;
using System.Collections.Generic;
using System.Xml;
using UnityEditor;
using UnityEngine;
public class TextureAtlasSlicer : EditorWindow {
[MenuItem("CONTEXT/TextureImporter/Slice Sprite Using XML")]
public static void SliceUsingXML(MenuCommand command)
{
@cfstras
cfstras / status.html
Last active February 6, 2023 03:24
Simple Minecraft Server status box using http://api.syfaro.net/
<script src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<script>
var rq = '//api.syfaro.net/server/status';
var error = 'unknown';
var classes = {
error: "fa-question",
false: "fa-times",
true: "fa-check",
};
@joshrobb
joshrobb / passwd.js
Last active January 19, 2016 23:32
Password validation by hashing difficulty
String.prototype.hackability = function() {
var toppasswords = /password|123456|12345678|1234|qwerty|12345|dragon|pussy|baseball|football|letmein|monkey|696969|abc123|mustang|michael|shadow|master|jennifer|111111|2000|jordan|superman|harley|1234567|fuckme|hunter|fuckyou|trustno1|ranger|buster|thomas|tigger|robert|soccer|fuck|batman|test|pass|killer|hockey|george|charlie|andrew|michelle|love|sunshine|jessica|asshole|6969|pepper|daniel|access|123456789|654321|joshua|maggie|starwars|silver|william|dallas|yankees|123123|ashley|666666|hello|amanda|orange|biteme|freedom|computer|sexy|thunder|nicole|ginger|heather|hammer|summer|corvette|taylor|fucker|austin|1111|merlin|matthew|121212|golfer|cheese|princess|martin|chelsea|patrick|richard|diamond|yellow|bigdog|secret|asdfgh|sparky|cowboy|camaro|anthony|matrix|falcon|iloveyou|bailey|guitar|jackson|purple|scooter|phoenix|aaaaaa|morgan|tigers|porsche|mickey|maverick|cookie|nascar|peanut|justin|131313|money|horny|samantha|panties|steelers|joseph|snoopy|boomer|whatever|
@auscompgeek
auscompgeek / minecraft.sh
Created January 3, 2012 00:43
VERY simple Bash launcher for Minecraft client
#!/bin/bash
# MIIIINECRAFT!!! (No authentication :p)
# Configuration section:
mc_dl_path="https://s3.amazonaws.com/MinecraftDownload/" #where all minecraft downloads are
lwjgl_version="2.8.1" #which version of LWJGL you wish to update to by default
cmd_get="wget" #what command you use to GET files
HOME="." #path where you want .minecraft
cd