Last version of my home WORKSPACE
A pair of themes for ExtJS
I’m a ExtJS JavaScript framework believer, but there other interesting and famous JavaScript frameworks like Bootstrap and jQuery. IMHO ExtJS is more focused on web applications than public web. In this post I want to share two ExtJS themes that helps to improve UI look and feel.
The first one is a bootstrap look and feel for ExtJS:
if you want to test it take a look to demo site. The theme is opensource and you can find the source in github.
The second and last one is Clifton theme.
IMHO is a nice theme although it’s not really free. It costs around 320€, but in some professional projects it could be a really low price if you consider the effort to get a professional look and feel . You can try it in demo page.
36è aniversari
Avui fa 36 anys que vaig neixer a Martorell, tot i que des d’aquell dia potser podriem dir que no hi he tornat a anar més a aquesta vila.
Quan arriben aquests moments sempre ens dona per fer balanç, doncs bé, avui he començat la jornada molt aviat tan aviat que encara faltaven quasi 2h perquè sortís el sol. A més, l’agenda que tinc per davant segurament no em permetrà aprofitar el dia per celebrar l’aniversari tan com m’agradaria. Això si, el soparet amb Estefania no m’el treu ningú.
Com que no disposo de massa estona ara mateix aprofitaré per donar la meva gratitut a tot i a tothom per permetrem arribar fins al dia d’avui i per haver pogut creixer fins on ho he arribat a fer. El millor de tot plegat és saber que avui és el millor dia de la meva vida i que només ara és el moment en que puc ser feliç i sentir-me una persona afoturnada. Per tot això i molt més GRÀCIES.
En tot aquest temps he après que la gratitud mai és suficient, per això ma’grada repetir-ho cada matí, cada nit i cada moment que en tinc ocasió, hi ha tantes coses per les que he d’estar agraït que no acabaria mai.
Així doncs, ho deixo aquí i de ben segur aviat seguiré compartint amb tots plegats tot això que tinc dintre.
UPDATE: no ús perdeu el pastis que em va fer l’Estefania, mmmmmhhh:
10 anys des de que el món em va donar una nova oportunitat
Com cada any m’agrada recordar aquest dia com si fos el meu segon aniversari. De fet, tota la setmana és molt especial perquè avui es celebren 10 anys des de que per algún motiu l’univers va decidir que no havia de morir en aquell accident de cotxe, demà és el dia que varem casar-nos legalment més enllà de la cel·lebració amb els amics i la família i demà passat compliré 36 anys.
Tot plegat només són simbolismes que donem a les dates, però trobo que és una costum a mantenir ja que t’ajuda a valorar el que realment és important i no oblidar almenys un cop a l’any la gran sort que tinc.
Bé doncs, un altre any per dir: GRÀCIES!
Send email notifications from supervisord
There is a package called superlance which listens supervisord events. If you install it with:
pip install superlance
Then it’s very easy to setup supervisord to send emails when a daemon changes the state because of a crash or something else.
Lines to add to supervisord configuration file:
[eventlistener:crashmail]
command=/usr/local/bin/crashmail -a -m email1@example.com
events=PROCESS_STATE
if you want to send notifications only for some applications:
[eventlistener:crashmail]
command=/usr/local/bin/crashmail -p program1 -p group1:program2 -m email1@example.com
events=PROCESS_STATE
Of course, superlance can listen many different event signals from supervisor and can take different actions like call to HTTP URL or send SMS. I want to recommend you to take look to the package documentation it could be useful to understand all the superlance power.