See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
I hereby claim:
To claim this, I am signing this object:
| /* | |
| * vm.c - Simple X86 interpreter | |
| * | |
| * Copyright (c) 2013, Jeremie Miserez <[email protected]> | |
| */ | |
| /* | |
| * Highlights/Features not specified in assignment | |
| * =============================================== | |
| * - Memory simulation of all 4GB with paging |
| import java.util.Arrays; | |
| import java.util.ArrayList; | |
| enum ChessPiece{ | |
| K(new int[][]{{-1,-1},{-1,0},{-1,1},{0,1},{1,1},{1,0},{1,-1},{0,-1}}), | |
| N(new int[][]{{1,2},{2,1},{2,-1},{1,-2},{-1,-2},{-2,-1},{-2,1},{-1,2}}), | |
| R(new int[][]{{-1,0},{0,1},{1,0},{0,-1}}), | |
| Q(new int[][]{{-1,0},{0,1},{1,0},{0,-1},{-1,-1},{-1,1},{1,1},{1,-1}}), | |
| B(new int[][]{{-1,-1},{-1,1},{1,1},{1,-1}}), | |
| P(new int[][]{{-1,-1},{-1,+1}}); | |
| def GetIPs(iprange): | |
| nets = iprange.split('.')[1:-1] | |
| firstOctet = nets[0].split('-') | |
| secondOctet = nets[1].split('-') | |
| ips = [] | |
| def get_range(r): | |
| l = [] | |
| if len(r) != 2: | |
| l.append(r[0]) |
| // recursive gz, tgz, zip files | |
| // russ cox, march 2010 <[email protected]> | |
| package main | |
| import ( | |
| "bufio" | |
| "bytes" | |
| "compress/flate" | |
| "fmt" |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Net; | |
| using System.Text.RegularExpressions; | |
| using System.IO; | |
| namespace SVN_Archiver { |
| #!/usr/bin/env perl | |
| # | |
| # Author: philsmd | |
| # Released to the public domain | |
| # Special thx to atom for his help | |
| # | |
| use strict; | |
| use warnings; |
| /**********************************************************************/ | |
| /* scrdec.c - Decoder for Microsoft Script Encoder */ | |
| /* Version 1.8 */ | |
| /* */ | |
| /* COPYRIGHT: */ | |
| /* (c)2000-2005 MrBrownstone, mrbrownstone@ virtualconspiracy.com */ | |
| /* v1.8 Now correctly decodes characters 0x00-0x1F, thanks to 'Zed' */ | |
| /* v1.7 Bypassed new HTMLGuardian protection and added -dumb switch */ | |
| /* to disable this */ | |
| /* v1.6 Added HTML Decode option (-htmldec) */ |