This file contains hidden or 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
| cd /ruta/a/wp-content/themes | |
| cd que_rollo_banda-theme/ && git pull && cd .. && zip -r que_rollo_banda-theme.zip que_rollo_banda-theme/ && mv que_rollo_banda-theme.zip ~/html | |
| rm ~/html/que_rollo_banda-theme.zip |
This file contains hidden or 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
| $embed = get_post_meta(get_the_ID(), 'listado-embed-' . $i, true ); |
This file contains hidden or 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
| var sintes; | |
| sintes = []; | |
| sintes.add(\sinte1); | |
| sintes.add(\sinte2); | |
| // al recibir mensaje | |
| { msg, bla, bla, ... |
This file contains hidden or 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
| s.boot; | |
| ( | |
| ~num_outs = 8; | |
| ~num_synths = 6; | |
| n = NetAddr("127.0.0.1", NetAddr.langPort); // local machine | |
| m = NetAddr("127.0.0.1", NetAddr.langPort); // loopback |
This file contains hidden or 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
| s.boot; | |
| ~lastTime = Array.fill(3,0); | |
| ( | |
| ~pis = [1,2,3]; |
This file contains hidden or 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
| git submodule update --init --recursive |
This file contains hidden or 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
| // comentario simple | |
| /* | |
| comentario | |
| multilínea | |
| */ | |
This file contains hidden or 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
| SynthDef(\test_1, {|freq=1,gate=1| | |
| var sig, env; | |
| sig = MoogFF.ar( WhiteNoise.ar(), 100+(freq*1000),3.75); | |
| env = Decay2.kr(Impulse.kr(freq*8), 1/100,1) * EnvGen.kr( Env.perc(2,2),gate,doneAction:2 ); | |
| Out.ar( 0, Pan2.ar( sig * env ) / 4 ); |
This file contains hidden or 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
| /* ALTURAS */ | |
| .h-a { | |
| /*ha*/ | |
| height: auto; | |
| } | |
| .h-100-v { | |
| height: 100vh; |
This file contains hidden or 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
| $(document).ready(function(){ | |
| squareH(); | |
| verticalCenter(); | |
| }) | |
| verticalCenter = function( selector ) { | |
| if (typeof(selector)==='undefined') |