Skip to content

Instantly share code, notes, and snippets.

@haloless
haloless / fasterWsdlToJava.groovy
Created July 16, 2018 10:47 — forked from nilsmagnus/fasterWsdlToJava.groovy
Fast wsdl2java with gradle and many wsdl files.
buildscript {
repositories {
mavenCentral()
}
}
project.ext {
wsdlDir = file("wsdl")
generatedWsdlDir = file("build/generated-sources")
@haloless
haloless / LICENSE
Created June 14, 2018 13:41 — forked from justjkk/LICENSE
Parsing JSON with lex and yacc
The MIT License (MIT)
Copyright (c) 2015 J Kishore Kumar
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@haloless
haloless / dummy-web-server.py
Created April 6, 2018 14:54 — forked from bradmontgomery/dummy-web-server.py
a minimal http server in python. Responds to GET, HEAD, POST requests, but will fail on anything else.
#!/usr/bin/env python
"""
Very simple HTTP server in python.
Usage::
./dummy-web-server.py [<port>]
Send a GET request::
curl http://localhost

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream