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
Function New-RandomFile_Fast { | |
Param( | |
$Path = (Resolve-Path '.').Path, | |
$FileSize = 1mb, | |
$FileName = [guid]::NewGuid().Guid + '.txt' | |
) | |
$Chunk = { [guid]::NewGuid().Guid + [guid]::NewGuid().Guid + [guid]::NewGuid().Guid + [guid]::NewGuid().Guid + | |
[guid]::NewGuid().Guid + [guid]::NewGuid().Guid + [guid]::NewGuid().Guid + [guid]::NewGuid().Guid + | |
[guid]::NewGuid().Guid + [guid]::NewGuid().Guid + [guid]::NewGuid().Guid + [guid]::NewGuid().Guid + |
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
Windows Registry Editor Version 5.00 | |
[-HKEY_CLASSES_ROOT\ms-msdt] |
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
{ | |
// El número de espacios a los que equivale una tabulación. Este valor se invalida según el contenido del archivo cuando `editor.detectIndentation` está activado. | |
"editor.tabSize": 2, | |
// Ajuste el nivel de zoom de la ventana. El tamaño original es 0 y cada incremento (por ejemplo, 1) o disminución (por ejemplo, -1) representa una aplicación de zoom un 20 % más grande o más pequeño. También puede especificar decimales para ajustar el nivel de zoom con una granularidad más precisa. | |
"window.zoomLevel": 0, | |
// Controla cómo debe representar el editor los espacios en blanco. Las posibilidades son "none", "boundary" y "all". La opción "boundary" no representa los espacios individuales entre palabras. | |
"editor.renderWhitespace": "all", |
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
code --install-extension abusaidm.html-snippets | |
code --install-extension Angular.ng-template | |
code --install-extension capaj.vscode-standardjs-snippets | |
code --install-extension chenxsan.vscode-standardjs | |
code --install-extension christian-kohler.npm-intellisense | |
code --install-extension cipchk.ng-zorro-vscode | |
code --install-extension CoenraadS.bracket-pair-colorizer | |
code --install-extension dtsvet.vscode-wasm | |
code --install-extension dzhavat.css-flexbox-cheatsheet | |
code --install-extension EditorConfig.EditorConfig |
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
$include '\pemicro\ics08jlz\jl3regs.inc' | |
ram_start equ $0080 | |
rom_start equ $EC00 | |
vec_tsc equ $FFF2 | |
reset_vect equ $FFFE | |
org vec_tsc | |
dw DISPLAYENT | |
org reset_vect |
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
$include '\pemicro\ics08jlz\jl3regs.inc' | |
ram_start equ $0080 | |
rom_start equ $EC00 | |
vec_tsc equ $FFF2 | |
reset_vect equ $FFFE | |
org ram_start | |
contador db 0 ;Variable Contador | |
flagincdec db 0 ;Bandera para saber si incrementar o decrementar | |
auxiliar rmb 1 ;Variable auxiliar |
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
$include 'jl3regs.inc' | |
ram_start equ $0080 | |
rom_start equ $ec00 | |
reset_vect equ $fffe | |
org ram_start | |
cont1 db 9 | |
cont2 db 9 | |
aux1 db 0 | |
aux2 db 0 |
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
; TP 1 - Técnicas Digitales II | |
data segment | |
count dw 11 | |
array db 11 dup(0) | |
msgo db 'e' | |
diez db 10 | |
msgi db "In",10,13,"$" | |
aux db 0 | |
data ends |
NewerOlder