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
set -gx PATH /Users/rotvulpix/.rvm/bin $PATH | |
set -gx LDFLAGS $LDFLAGS "-L/usr/local/opt/zlib/lib" | |
set -gx CPPFLAGS $CPPFLAGS "-I/usr/local/opt/zlib/include" | |
# For pkg-config to find zlib you may need to set: | |
set -gx PKG_CONFIG_PATH $PKG_CONFIG_PATH "/usr/local/opt/zlib/lib/pkgconfig" | |
# GIT | |
# Aliases | |
alias git=hub |
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
Private Sub Worksheet_Change(ByVal Target As Range) | |
Dim rango_a_calcular As Range | |
Set rango_a_calcular = Range("D3:F12") | |
If Not Application.Intersect(rango_a_calcular, Range(Target.Address)) Is Nothing Then | |
For i = 1 To rango_a_calcular.Rows.Count | |
Dim fila_actual As Integer | |
Dim medida_2 As Integer | |
Dim medida_3 As Integer |
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
set -gx PATH $HOME/.composer/vendor/bin $PATH | |
# GIT | |
# Aliases | |
alias ll='ls -la' | |
alias g='git' | |
alias gst='git status' | |
alias gd='git diff' | |
alias gdc='git diff --cached' | |
alias gl='git pull' | |
alias gup='git pull --rebase' |
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
server | |
{ | |
error_log %s/logs/%s debug; | |
listen 80; | |
server_name %s; | |
root %s/%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
rtsp://200.29.30.2:554/encoder/copera.rm | |
--stop-- | |
pnm://200.29.30.2:7070/encoder/copera.rm |
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
server { | |
listen 80; | |
server_name localhost; | |
root /Users/rotvulpix/Source/Lab/front; | |
access_log /var/nginx/logs/front.dev.log main; | |
error_log /var/nginx/logs/front.dev.error.log; | |
location / { | |
try_files $uri $uri/ /index.php?$query_string; |
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
--- /usr/local/etc/apache2/2.2/original/httpd.conf 2014-12-05 20:14:50.000000000 -0500 | |
+++ /usr/local/etc/apache2/2.2/httpd.conf 2014-12-05 20:16:46.000000000 -0500 | |
@@ -38,7 +38,7 @@ | |
# prevent Apache from glomming onto all bound IP addresses. | |
# | |
#Listen 12.34.56.78:80 | |
-Listen 8080 | |
+Listen 8000 | |
# |
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 | |
class BaseController extends Controller { | |
/** | |
* Setup the layout used by the controller. | |
* | |
* @return void | |
*/ | |
protected function setupLayout() |
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 | |
shell_exec('rm -rf ../app/cache/*'); | |
shell_exec('chmod -R 777 ../app/cache/*'); | |
shell_exec('rm -rf ../app/logs/*'); | |
shell_exec('chmod -R 777 ../app/logs/*'); |
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
<!-- RadioButtons, about them the Dropdown will be filled --> | |
<input type="radio" name="ambito" class="selectable" value="1" data-caption="Ámbito 1"> | |
<input type="radio" name="ambito" class="selectable" value="2" data-caption="Ámbito 2"> | |
<input type="radio" name="ambito" class="selectable" value="3" data-caption="Ámbito 3"> | |
<!-- Bootstrap Dropdown - empty --> | |
<div class="btn-group radio-selectable" data-radio="ambito"> | |
<button type="button" class="btn btn-default dropdown-toggle btn-info" data-toggle="dropdown"> | |
Seleccione <span class="caret"></span> | |
</button> |