Skip to content

Instantly share code, notes, and snippets.

View ChaitanyaPramod's full-sized avatar

Chaitanya Pramod ChaitanyaPramod

View GitHub Profile
def toCamelCase(String string) {
String result = ""
string.findAll("[^\\W]+") { String word ->
result += word.capitalize()
}
return result
}
afterEvaluate { project ->
Configuration runtimeConfiguration = project.configurations.getByName('compile')
@ChaitanyaPramod
ChaitanyaPramod / index.html
Created July 3, 2013 10:01
Gist to test the bug due to which node-webkit 0.6.1 doesn't show tooltip popup with the content of the `title` attribute
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Title test</title>
<style>
#block {
background-color: lightblue;
height: 200px;
width: 200px;