Skip to content

Instantly share code, notes, and snippets.

@rabisg
rabisg / merge_junit_results.py
Created March 10, 2021 10:36 — forked from cgoldberg/merge_junit_results.py
Merge multiple JUnit XML results files into a single results file.
#!/usr/bin/env python
"""Merge multiple JUnit XML results files into a single results file."""
# MIT License
#
# Copyright (c) 2012 Corey Goldberg
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
@rabisg
rabisg / keybase.md
Created October 24, 2014 18:23
Keybase

Keybase proof

I hereby claim:

  • I am rabisg on github.
  • I am rabisg (https://keybase.io/rabisg) on keybase.
  • I have a public key whose fingerprint is 6146 1BE7 4E16 2CA1 05F5 2B85 B69F 9A6F C3F1 D5B9

To claim this, I am signing this object:

@rabisg
rabisg / aim.hs
Last active December 22, 2015 06:59
First attempt at writing the assembler
data Asm = Asm String
| Null
deriving (Show)
data Instruction arch = Instruction Asm deriving Show
data Operand = Reg Int
|StackOffset Int
deriving (Show, Eq, Ord)
class (Show arch) => InstructionSet arch where
@rabisg
rabisg / scrapper.py
Created July 12, 2012 15:51
Web Scrapper in Python
import urllib2
import shutil
import urlparse
import os
from HTMLParser import HTMLParser
base_url = ''
def download(url, fileName=None):
def getFileName(url,openUrl):
if 'Content-Disposition' in openUrl.info():