knife solo bootstrap [email protected] knife solo cook [email protected] | tee log.log
This file contains 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
MY_BASH_BLUE="\033[0;34m" #Blue | |
MY_BASH_NOCOLOR="\033[0m" | |
HISTTIMEFORMAT=`echo -e ${MY_BASH_BLUE}[%F %T] $MY_BASH_NOCOLOR ` | |
HISTSIZE=20000 | |
HISTFILESIZE=20000 |
This file contains 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
Handy one-liners for SED | |
HANDY ONE-LINERS FOR SED (Unix stream editor) Mar. 23, 2001 | |
compiled by Eric Pement <[email protected]> version 5.1 | |
Latest version of this file is usually at: | |
http://www.student.northpark.edu/pemente/sed/sed1line.txt | |
http://www.cornerstonemag.com/sed/sed1line.txt | |
This file is also available in Portuguese at: | |
http://www.lrv.ufsc.br/wmaker/sed_ptBR.html |
This file contains 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
// DAM settings | |
t3lib_div::loadTCA('tx_dam'); | |
t3lib_div::loadTCA('tx_dam_cat'); | |
//Disable DAM versioning | |
$TCA['tx_dam']['ctrl']['versioningWS'] = 0; | |
$TCA['tx_dam_cat']['ctrl']['versioningWS'] = 0; | |
$TCA['tx_dam']['ctrl']['versioningWS_alwaysAllowLiveEdit'] = 1; | |
$TCA['tx_dam_cat']['ctrl']['versioningWS_alwaysAllowLiveEdit'] = 1; |
This file contains 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
[miscellany] | |
global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store build dist target | |
enable-auto-props = yes | |
[auto-props] | |
*.c = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL | |
*.cpp = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL | |
*.h = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL | |
*.dsp = svn:eol-style=CRLF | |
*.dsw = svn:eol-style=CRLF |
In the Google Summer of Code Project "TYPO3 Flow meets Ember.js" we are trying to make the server-side framework TYPO3 Flow and the client-side framework Ember.js (using Ember Data as the persistence layer) work together easily through conventions and a powerful scaffolding mechanism. You can visit our website to see a more detailed concept.
This document gives a short introduction of:
- how domain models look like in Flow and Ember Data,
- how the REST JSON API is expected to look like (to follow Ember Data conventions),
- for which models REST APIs are provided and how.
This file contains 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
export XDEBUG_CONFIG="idekey=PHPSTORM remote_port=9000" | |
export SERVER_NAME=sandbox |
This file contains 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
curl http://localhost:8095/solr/test/update --data-binary '<add><doc><field name="id">1</field><field name="type">website</field><field name="appKey">indexer</field><field name="title">My product</field><field name="price_mz_f">49.99</field><field name="price_fr_f">43.99</field><field name="price_st_f">23.99</field></doc></add>' -H 'Content-type:text/xml; charset=utf-8' |
NewerOlder