I hereby claim:
- I am danielestevez on github.
- I am destevez (https://keybase.io/destevez) on keybase.
- I have a public key whose fingerprint is D643 2F6B 354B B8A3 5A62 9875 4A38 23E7 0D46 E466
To claim this, I am signing this object:
| pager less -SFX | |
| select * from table; |
I hereby claim:
To claim this, I am signing this object:
| #[user] | |
| # signingkey = xxxxx | |
| # email = [email protected] | |
| # name = Dani Estevez | |
| [user] | |
| name = daniel.estevez |
| alias mvi='mvn clean install -Dtest.suite=none -Dit.suite=none -fae -T1C' | |
| alias mvall='mvn clean install -Dtest.suite=all -Dit.suite=all -fae -T1C' | |
| alias mvallf='mvan clean install -Dtest.suite=all -Dit.suite=all -ff -T1C' | |
| alias mvndep='mvn cargo:deployer-redeploy' | |
| alias psg='ps -ef | grep $1' | |
| alias sk='sudo kill -9 $1' | |
| alias sshi='ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null' |
| DROP TABLE IF EXISTS `kinton`.`debug_msg`; | |
| CREATE TABLE `debug_msg` ( | |
| `msg` varchar(255) NOT NULL | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ; | |
| INSERT INTO debug_msg (msg) VALUES (CONCAT('message: ',IFNULL(variable, 'NULL'))); |
| private static void printXML(final Document responseDoc) throws Exception | |
| { | |
| DOMSource domSource = new DOMSource(responseDoc); | |
| StringWriter stringWriter = new StringWriter(); | |
| StreamResult streamResult = new StreamResult(stringWriter); | |
| TransformerFactory transformerFactory = TransformerFactory.newInstance(); | |
| Transformer transformer; | |
| transformer = transformerFactory.newTransformer(); | |
| transformer.transform(domSource, streamResult); | |
| System.out.println(stringWriter.toString()); |
| CREATE TRIGGER complex_constraint BEFORE INSERT ON my_table | |
| FOR EACH ROW | |
| BEGIN | |
| IF /*complex constraint*/(NEW.field1 IS NOT NULL AND NEW.field2 IS NOT NULL) OR (NEW.field1 IS NULL AND NEW.field2 IS NULL) THEN | |
| SIGNAL SQLSTATE '45000' | |
| SET MESSAGE_TEXT = 'complex constraint exception message'; | |
| END IF; | |
| END |
| function newbranch() { | |
| git submodule foreach git checkout ${1} | |
| git submodule foreach git pull origin ${1} | |
| git submodule foreach git co -b ${2} | |
| git submodule foreach git push origin ${2} | |
| git status | |
| } | |
| # newbranch master newbranchname |
| # .bash_aliases | |
| alias mvi='mvn clean install -Dtest.suite=none -Dit.suite=none -o -fae' | |
| alias psg='ps -ef | grep $1' | |
| alias sk='sudo kill -9 $1' | |
| alias sshi='ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null' |
| 1) Create a branch with the tag | |
| git branch {tagname}-branch {tagname} | |
| git checkout {tagname}-branch | |
| 2) Include the fix manually if it's just a change .... | |
| git add . | |
| git ci -m "Fix included" | |
| or cherry-pick the commit, whatever is easier | |
| git cherry-pick {num_commit} | |