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
;; This should fix the clipboard | |
(setq x-select-enable-clipboard t) | |
(global-set-key "\C-w" 'clipboard-kill-region) | |
(global-set-key "\M-w" 'clipboard-kill-ring-save) | |
(global-set-key "\C-y" 'clipboard-yank) |
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
segment .data | |
c: dd 5 | |
format: db "%d \x0",0AH,0 | |
fill: db 4 * 0 | |
msg: db "Entre un numero entre 0 y 255 ",0AH,0 | |
msg2: db "El resultado es %d.",0AH,0 | |
msge: db "Valor invalido.",0AH,0 | |
segment .bss | |
x: resd 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
es-MX: | |
# Spanish as spoken in Colombia (es-CO) translations for Rails | |
# by Christian A. Rojas G ([email protected]) | |
# taken from http://github.com/svenfuchs/rails-i18n/blob/master/rails/locale/es-CO.yml | |
number: | |
percentage: | |
format: | |
delimiter: "," | |
currency: | |
format: # Pesos Colombianos |
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
es-MX: | |
# Spanish as spoken in Colombia (es-CO) translations for Rails | |
# by Christian A. Rojas G ([email protected]) | |
# taken from http://github.com/svenfuchs/rails-i18n/blob/master/rails/locale/es-CO.yml | |
number: | |
percentage: | |
format: | |
delimiter: "," | |
currency: | |
format: # Pesos Colombianos |
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
segment .data | |
c: dd 5 | |
format: db "%d \x0",0AH,0 | |
fill: db 4 * 0 | |
msg: db "Entre un numero entre 0 y 255 ",0AH,0 | |
msg2: db "El resultado es %d.",0AH,0 | |
msge: db "Valor invalido.",0AH,0 | |
segment .bss | |
x: resd 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
segment .data | |
valores: dw 5,4,3,2,1,-5,-4,-3,-2,-1 | |
cont1: dw -1 | |
cont2: dw -2 | |
msg2: db " %d ,.",0AH,0 | |
segment .bss | |
i: resw 1 | |
j: resw 1 |
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
matriz morfológica | |
matriz de seleccion | |
Vista de despliegue del producto ? -- esto ya esta ? | |
vista de modulos de software | |
modelo conceptual | |
Definicion de servicios | |
Planos de circuitos :S | |
Plan de reuso de elementos :S | |
Gestion de riesgo... -> mierda! |
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
<td align="left" valign="top"><%= link_to_function(image_tag('content/enviaraunamigo.jpg', :alt => "Enviar a un amigo"),"showSendTo_friend(); return false;") %></td> |
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
global smupltiplicacion: | |
smultiplicacion: | |
push ebp | |
mov ebp,esp | |
mov edx, 0 | |
mov dword eax,[numN] | |
mul dword [numM] | |
mov dword [n],eax | |
mov dword ecx,[n] | |
mov ebx,[numConstante] |
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
nasm -f elf matrix.asm -g | |
gcc -shared matrix.o -o libmatrix.so | |
sudo rm /usr/local/lib/libmatrix.so | |
sudo rm /usr/lib/libmatrix.so | |
sudo rm /usr/include/matrix.h | |
sudo cp libmatrix.so /usr/local/lib/ | |
sudo cp libmatrix.so /usr/lib/ | |
sudo cp matrix.h /usr/include/ | |
gcc operaciones.c -lmatrix -std=c99 |