Skip to content

Instantly share code, notes, and snippets.

View rmorenobello's full-sized avatar

Raúl Moreno Bello rmorenobello

View GitHub Profile
@karimkhanp
karimkhanp / bigdata_resource
Last active April 6, 2022 13:48
Bigdata resources - Do I miss something. Add and make it richer
Bigdata is like combination of bunch of subjects. Mainly require programming, analysis, nlp, MLP, mathematics.
To see links, Go : http://www.quora.com/What-are-some-good-sources-to-learn-big-data
Here are bunch of courses I came accross:
Introduction to CS Course
Notes: Introduction to Computer Science Course that provides instructions on coding.
Online Resources:
Udacity - intro to CS course,
Coursera - Computer Science 101
@PascalSchumacher
PascalSchumacher / settings.gradle
Created October 23, 2013 16:39
with this modification we could still build groovy with java 5/6 and add the nio support (https://github.com/groovy/groovy-core/pull/260)
def subprojects = ['groovy-ant',
'groovy-bsf',
'groovy-console',
'groovy-docgenerator',
'groovy-groovydoc',
'groovy-groovysh',
'groovy-jmx',
'groovy-json',
'groovy-jsr223',
'groovy-servlet',
@kellyrob99
kellyrob99 / OutputTransforms.groovy
Created September 22, 2012 20:01
GroovyConsole transforms file with the standard Map example and sortable JTable support for List/Set return values
import javax.swing.*
import javax.swing.table.*
transforms << { result ->
if (result instanceof Map) {
def table = new JTable(
result.collect { k, v ->
[k, v?.inspect()] as Object[]
} as Object[][],
['Key', 'Value'] as Object[])
@kellyrob99
kellyrob99 / openCsv.groovy
Created December 4, 2011 18:35
OpenCSV in a groovy script to read in a file, filter the content and write out the result
@Grab(group = 'net.sf.opencsv', module = 'opencsv', version = '2.3')
import au.com.bytecode.opencsv.CSVReader
import au.com.bytecode.opencsv.CSVParser
import au.com.bytecode.opencsv.CSVWriter
def TEST_FILE_NAME = 'test.csv'
def TEST_OUTPUT_FILE_NAME = 'testOut.csv'
List<String[]> rows = new CSVReader(new FileReader(new File(TEST_FILE_NAME)), CSVParser.DEFAULT_SEPARATOR, CSVParser.DEFAULT_ESCAPE_CHARACTER, CSVParser.DEFAULT_QUOTE_CHARACTER, 1).readAll()
def rowsOver100 = rows.findAll {it[1].toInteger() > 100}
@jaseemabid
jaseemabid / git tutorials.md
Last active May 9, 2025 01:01 — forked from netroy/git tutorials.md
Awesome git tutorials I am finding here and there
#!/usr/bin/env groovy
import groovy.grape.Grape
import groovy.sql.Sql
import groovy.swing.SwingBuilder
import java.awt.event.*
import javax.swing.*
import javax.swing.table.*
Grape.grab(group:'org.apache.derby', module:'derby', version:'10.4.2.0', classLoader:this.class.classLoader.rootLoader)