Skip to content

Instantly share code, notes, and snippets.

View goupviet's full-sized avatar

GoUP goupviet

View GitHub Profile
@goupviet
goupviet / windows-keys.md
Created December 18, 2024 09:23 — forked from rvrsh3ll/windows-keys.md
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@goupviet
goupviet / XMLMinifier.cs
Created November 7, 2015 02:27 — forked from frankmeola/XMLMinifier.cs
A simple XML minifier in C#.
using System.IO;
using System.Text;
using System.Xml;
namespace XMLMinifier
{
/// <summary>
/// Config object for the XML minifier.
/// </summary>
public class XMLMinifierSettings
@goupviet
goupviet / jquery.connect.js
Last active August 29, 2015 14:26 — forked from zulfajuniadi/jquery.connect.js
jQuery Connect JS - A small script to make connections between two elements.
// jQuery Connect v0.0.1
// (c) Zulfa Juniadi <http://zulfait.blogspot.com/>
// Usage : var connection = $.connect('#elem1', '#elem2', {options});
// Documentation : http://zulfait.blogspot.com/2013/07/jquery-connect.html
// Source : https://gist.github.com/zulfajuniadi/5928559#file-jquery-connect-js
// Requires : jQuery v1.9+ (Older versions may work, but not tested)
// Suggests : jQuery UI (It works with draggable elements!)
// MIT License
;(function($) {