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
<select name="country" class="form-control"> | |
<option value="">Country</option> | |
<option value="AF">Afghanistan</option> | |
<option value="AL">Albania</option> | |
<option value="DZ">Algeria</option> | |
<option value="AS">American Samoa</option> | |
<option value="AD">Andorra</option> | |
<option value="AO">Angola</option> | |
<option value="AI">Anguilla</option> | |
<option value="AR">Argentina</option> |
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
<?php | |
$countries = array( | |
'AF'=>'Afghanistan', | |
'AL'=>'Albania', | |
'DZ'=>'Algeria', | |
'AS'=>'American Samoa', | |
'AD'=>'Andorra', | |
'AO'=>'Angola', | |
'AI'=>'Anguilla', | |
'AR'=>'Argentina', |
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
[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion | |
. /usr/share/git/completion/git-completion.bash | |
. /usr/share/git/completion/git-prompt.sh | |
export GIT_PS1_SHOWDIRTYSTATE=1 | |
PS1='\[\033[01;32m\][\u@\h\[\033[01;37m\] \W\[\033[01;32m\]]\[\033[01;37m\]$(__git_ps1 "(%s)")\[\033[01;32m\]\$\[\033[00m\] ' | |
#PS1='\u@\h \W $(__git_ps1 " (%s)")\$ ' |
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
<?php | |
App::uses('Component', 'Controller'); | |
class ImgMinComponent extends Component { | |
public $settings = array( | |
'min_ancho_max' => 198, | |
'min_alto_max' => 100, | |
'min_nombre' => 'min', | |
'tipo_nombre'=>'back', // front, back | |
'tipo'=>'proporcion', // proporcion,estrechar,corte |
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
<select name="codes"> | |
<option value="as">ActionScript</option> | |
<option value="ada">Ada</option> | |
<option value="apacheconf">Apache config</option> | |
<option value="apl">APL</option> | |
<option value="applescript">AppleScript</option> | |
<option value="awk">Awk</option> | |
<option value="bash">Bash</option> | |
<option value="console">Bash session</option> | |
<option value="bat">Batchfile</option> |
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
############################################# | |
# Push de la rama actual | |
git push origin $rama_actual | |
############################################# | |
# Volver a un commit anterior, descartando los cambios | |
git reset --HARD $SHA1 | |
############################################# | |
# Ver y descargar Ramas remotas |
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
<select name="timezone"> | |
<option value="Pacific/Midway">(UTC-11:00) Midway Island, American Samoa</option> | |
<option value="Pacific/Honolulu">(UTC-10:00) Hawaii</option> | |
<option value="America/Anchorage">(UTC-08:00) Alaska</option> | |
<option value="America/Tijuana">(UTC-07:00) Baja California</option> | |
<option value="America/Los_Angeles">(UTC-07:00) Pacific Time (US and Canada)</option> | |
<option value="America/Phoenix">(UTC-07:00) Arizona</option> | |
<option value="America/Chihuahua">(UTC-06:00) Chihuahua, La Paz, Mazatlan</option> | |
<option value="America/Denver">(UTC-06:00) Mountain Time (US and Canada)</option> | |
<option value="America/Belize">(UTC-06:00) Central America</option> |
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
TimeZone | UTC offset | name | |
---|---|---|---|
Pacific/Midway | UTC-11:00 | Midway Island, American Samoa | |
Pacific/Honolulu | UTC-10:00 | Hawaii | |
America/Anchorage | UTC-08:00 | Alaska | |
America/Tijuana | UTC-07:00 | Baja California | |
America/Los_Angeles | UTC-07:00 | Pacific Time US and Canada) | |
America/Phoenix | UTC-07:00 | Arizona | |
America/Chihuahua | UTC-06:00 | Chihuahua, La Paz, Mazatlan | |
America/Denver | UTC-06:00 | Mountain Time US and Canada) | |
America/Belize | UTC-06:00 | Central America |
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
<div class="pagination pagination-large"> | |
<ul class="pagination"> | |
<?php | |
echo $this->Paginator->prev(__('prev'), array('tag' => 'li'), null, array('tag' => 'li','class' => 'disabled','disabledTag' => 'a')); | |
echo $this->Paginator->numbers(array('separator' => '','currentTag' => 'a', 'currentClass' => 'active','tag' => 'li','first' => 1)); | |
echo $this->Paginator->next(__('next'), array('tag' => 'li','currentClass' => 'disabled'), null, array('tag' => 'li','class' => 'disabled','disabledTag' => 'a')); | |
?> | |
</ul> | |
</div> |
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
th a.asc:after { | |
content: ' ⇣'; | |
} | |
th a.desc:after { | |
content: ' ⇡'; | |
} |
OlderNewer