Skip to content

Instantly share code, notes, and snippets.

View atomsfat's full-sized avatar
🏠
Working from home

Tomás atomsfat

🏠
Working from home
View GitHub Profile
@atomsfat
atomsfat / Media.groovy
Created January 28, 2014 18:36
Fat grails domain class with custom marshaller
package atoms.fat.media
import grails.converters.JSON
import org.joda.time.DateTime
class Media implements Serializable {
String url
String name
DateTime dateCreated
@atomsfat
atomsfat / 2roman.groovy
Created December 20, 2013 18:20
cardinal to roman
def cardinalToRoman( int num){
def TreeMap map = [1:"I", 5: "V", 10 : "X", 100 :"C"]
def getLatestKey = {int nu ->
def val = null
for (Map.Entry entry : map.descendingMap().entrySet()) {
def residuo = nu % entry.key;
@atomsfat
atomsfat / copy certificate
Created October 15, 2013 20:29
certficate jenkins
def command = """cat /var/lib/jenkins/.ssh/id_rsa.pub"""// Create the String
def proc = command.execute() // Call *execute* on the string
proc.waitFor() // Wait for the command to finish
// Obtain status and output
println "return code: ${ proc.exitValue()}"
println "stderr: ${proc.err.text}"
println "stdout: ${proc.in.text}" // *out* from the external program is *in* for groovy
@atomsfat
atomsfat / backup.sh
Last active December 21, 2015 00:18
Mysql backup shell
#!/bin/bash
fecha=$(date +%Y%m%d_%H%M)
echo "ready to dump database"
mysqldump -u root database --ignore-table=logs > /tmp/dump-$fecha.sql
echo "comprimiendo"
pbzip2 /tmp/dump-$fecha.sql
@atomsfat
atomsfat / switchWorkspace.sh
Last active December 19, 2015 00:39
Switch workspace every certain time, util for DIY dashboard
#!/bin/bash
NUMBER_DESkTOP="$(xdotool get_num_desktops)"
CURRENT="0"
echo "Press [CTRL+C] to stop.."
while :
do
xdotool set_desktop $CURRENT
#echo $CURRENT
CURRENT="$(expr $CURRENT + '1')"
if [ "$CURRENT" -gt $NUMBER_DESkTOP ]; then
@atomsfat
atomsfat / gist:5659302
Created May 27, 2013 22:03
smart command to troubleshoot permission on directories
dir=/tmp/level1/level2/level3/level4/level5/level6; while [ "$dir" != "/" ]; do ls -ald $dir; dir=`dirname $dir`; done
@atomsfat
atomsfat / server.xml
Created January 17, 2012 17:04
Basic tomcat configuration for load balancing
<?xml version='1.0' encoding='utf-8'?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
@atomsfat
atomsfat / basic_load_balancer_apache
Created January 17, 2012 16:50
Basic load balancer Apache
############################
# Load Balancer
############################
<VirtualHost *:80>
ServerName atomsfat.net
<Location "/manage-balancer">
SetHandler balancer-manager
AuthType Basic
AuthName "System challenge"
@atomsfat
atomsfat / git_tips.txt
Last active September 29, 2015 11:48
Git tips and trips
#ignore changes:
git reset --hard
#delete remote branch
git push origin :newfeature
#delete local branch
git branch -d the_local_branch
@atomsfat
atomsfat / grails_tips.txt
Last active September 29, 2015 11:48
Graiis tips and tricks
#switch config:
grails -Dgrails.env=development switch-config clickonmx
#make war:
grails -Dgrails.env=development war target/cooldeals-lat-0.3.2.war
#running test:
grails test-app class-name -integration
#no interactive console
grails run-app --non-interactive