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
| #! /bin/bash | |
| # ESTE ES UN SCRIPT PARA PONER 75 Hz AL MONITOR DE UNA LAPTOP Lenovo IdeaPad 320-15ABR EN LINUX | |
| # en Linux con Kernel 5.10 (puede que funcione en Kernel 6) en x11 (no funciona en Wayland) | |
| # Probado en Debian 12 de 64 y 32 bit | |
| # Probado en MX Linux 23 y 21 de 64 y 32 bit | |
| # Nota: Este script usted lo puede usar como base para poder ponerle 75 Hz en algún monitor |
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
| #! /bin/bash | |
| # ESTE ES UN SCRIPT PARA PONER 75 Hz AL MONITOR EXTERNO emachines E202HL EN LINUX | |
| # en Linux con Kernel 5.10 (puede que funcione en Kernel 6) en x11 (no funciona en Wayland) | |
| # Probado en Debian 12 de 64 y 32 bit | |
| # Probado en MX Linux 23 y 21 de 64 y 32 bit | |
| # Probado en antiX 23 y 21 de 32 bit | |
| # Nota: Este script usted lo puede usar como base para poder ponerle 75 Hz en algún monitor |
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
| #! /bin/bash | |
| # ESTE ES UN SCRIPT PARA PONER 75 Hz AL MONITOR TELEVISOR EXTERNO LG LCD 37" (del 2012) EN LINUX | |
| # en Linux con Kernel 5.10 (puede que funcione en Kernel 6) en x11 (no funciona en Wayland) | |
| # Probado en Debian 12 de 64 y 32 bit | |
| # Probado en MX Linux 23 y 21 de 64 y 32 bit | |
| # Nota: Este script usted lo puede usar como base para poder ponerle 75 Hz en algún monitor |
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
| #! /bin/bash | |
| # ESTE ES UN SCRIPT PARA PONER 75 Hz AL MONITOR DE UNA LAPTOP Lenovo IdeaPad 320-15ABR EN LINUX | |
| # en Linux con Kernel 5.10 (puede que funcione en Kernel 6) en x11 (no funciona en Wayland) | |
| # Probado en Debian 12 de 64 y 32 bit | |
| # Probado en MX Linux 23 y 21 de 64 y 32 bit | |
| # Nota: Este script usted lo puede usar como base para poder ponerle 75 Hz en algún monitor |
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
| #! /bin/bash | |
| # Cómo crear Script para añadir 75Hz en Monitor Externo en Linux | |
| # Debemos saber cuales son las resoluciones que soporta el monitor, y esto solo se puede saber por el fabricante del mismo | |
| # Para el monitor emachines E202HL |
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
| Menos de 16 MB acepta WhatsApp en un video, y para poderlos compartir a ese tamaño he hecho los siguientes | |
| calculos para comprimir videos | |
| Cualquiera de las líneas ejemplo: | |
| -vf "scale=512:288" -b:v 220k -r 15 -ac 1 -b:a 30k -ar 44100 | |
| hay que colocarla en FFmulticonverter en: | |
| Comando: |
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
| #!/bin/bash | |
| ## Script to merge all mp4 videos in current directory (recursively 2 levels) | |
| ## And update chapter marks to retain the folder/filename | |
| ## Script for merging videos | |
| filename=`basename pwd` | |
| current=`pwd` |
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
| [Control Panel\\Colors] 1491939580 | |
| #time=1d2b2fb5c69191c | |
| "ActiveBorder"="49 54 58" | |
| "ActiveTitle"="49 54 58" | |
| "AppWorkSpace"="60 64 72" | |
| "Background"="49 54 58" | |
| "ButtonAlternativeFace"="200 0 0" | |
| "ButtonDkShadow"="154 154 154" | |
| "ButtonFace"="49 54 58" | |
| "ButtonHilight"="119 126 140" |
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
| Unicode table - List of most common Unicode characters * | |
| * This summary list contains about 2000 characters for most common ocidental/latin languages and most printable symbols but not chinese, japanese, arab, archaic and some unprintable. | |
| Contains character codes in HEX (hexadecimal), decimal number, name/description and corresponding printable symbol. | |
| What is Unicode? | |
| Unicode is a standard created to define letters of all languages and characters such as punctuation and technical symbols. Today, UNICODE (UTF-8) is the most used character set encoding (used by almost 70% of websites, in 2013). The second most used character set is ISO-8859-1 (about 20% of websites), but this old encoding format is being replaced by Unicode. | |
| How to identify the Unicode number for a character? | |
| Type or paste a character: |
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
| #!/bin/sh | |
| repo_name=$1 | |
| test -z $repo_name && echo "Repo name required." 1>&2 && exit 1 | |
| curl -u '[username]:[password]' https://api.github.com/user/repos -d "{\"name\":\"$repo_name\"}" | |
| git init | |
| git add . | |
| git commit -m "initial commit" | |
| git remote add origin "https://github.com/[username]/$repo_name.git" | |
| git push -u origin master |
NewerOlder