This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CURPATH=$(pwd) | |
dir="/" | |
file="" | |
FILECHANGE=${dir}${file} | |
# convert absolute path to relative | |
FILECHANGEREL=$(echo "$FILECHANGE" | sed 's_'$CURPATH'/__') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Sum a set of arrays and assign the result indirectly, also printing each intermediary result (without portability workarounds) | |
# sum name arrname [ arrname ... ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
incrontab -l | { cat; echo '/watchme/path IN_CLOSE_WRITE /bin/whatever $@/$#'; } | incrontab - | |
incrontab -l | { cat; echo '/mnt/sites/test/BO/mfs_merged/public/lookupImg/BO/carousel IN_CLOSE_WRITE /home/multicore/bin/t.bash $@/$#,$%'; } | incrontab - | |
Refs: | |
http://linuxaria.com/article/incron-cron-inotify | |
http://stackoverflow.com/questions/878600/how-to-create-cronjob-using-bash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Taken from here: http://stackoverflow.com/questions/13015206/variables-validation-name-and-ip-address-in-bash | |
#!/bin/bash | |
read name | |
name=${name// /_} | |
read ip | |
if [[ "$ip" =~ ^([0-9]{1,3})[.]([0-9]{1,3})[.]([0-9]{1,3})[.]([0-9]{1,3})$ ]] | |
then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am msx on github. | |
* I am msx (https://keybase.io/msx) on keybase. | |
* I have a public key whose fingerprint is 2E77 84B6 9333 E6F0 0D33 50F1 AEB7 1E8D E492 A3FF | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -x | |
DBUS_NAME="org.freedesktop.login1" | |
DBUS_PATH="/org/freedesktop/login1" | |
DBUS_INTERFACE="org.freedesktop.login1.Manager" | |
DBUS_SIGNAL="PrepareForSleep" | |
INHIBITOR_PID= | |
install_background_inhibitor() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Me pongo en contacto con vos en esta oportunidad porque estoy buscando incorporar un System Administrator para las oficinas de Playtika (www.playtika.com) en Buenos Aires. Veo que estas en Mar del Plata, no sé si estas evaluando la posibilidad de relocarte. | |
Me gustaría saber si te interesa que conversemos y te comente un poco de que se trata la posición y la compañía. Si tienes disponibilidad para hablar por Skype esta semana, indícame en que día/horario te es conveniente. Gracias. | |
Saludos! | |
Victoria Nini |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cómo estás? me contacto con vos ya que en Taringa! (la plataforma social más grande de Latinoamérica), estamos sumando un DevOps al equipo y creo que tu perfil es interesante para la posición. | |
El trabajo es en Cap fed, no se dónde estás viviendo, pero podríamos llegar a incorporar de manera remota. | |
Contame si es de tu interés y te sumo a nuestro proceso de selección. Para más info de la búsqueda podés ingresar a www.taringaempleo.net | |
Te dejo un saludo y te agradezco la rta. | |
Romina Labaton Responsable de RRHH |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Te estamos contactando por una propuesta laboral para Argentina. Vi en tus datos que estás en Mar del Plata, la búsqueda sería para CABA. Te envio el perfil del puesto, si estás interesado te agradezco enviarme tu CV actualizado indicando en que nivel se encuentra tu pretensión salarial en valor bruto para la posición. | |
Espero tu respuesta. | |
System Engineer | |
para Cia. Multinacional líder E-commerce | |
Requisitos: | |
Ing. en Sistemas, Cs, de la Computación o afines. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Restore last frame size on startup | |
(defun save-framegeometry () | |
"Gets the current frame's geometry and saves to ~/.emacs.d/framegeometry." | |
(let ( | |
(framegeometry-left (frame-parameter (selected-frame) 'left)) | |
(framegeometry-top (frame-parameter (selected-frame) 'top)) | |
(framegeometry-width (frame-parameter (selected-frame) 'width)) | |
(framegeometry-height (frame-parameter (selected-frame) 'height)) | |
(framegeometry-file (expand-file-name "~/.emacs.d/framegeometry")) | |
) |
OlderNewer