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 migración desde Fontawesome v4 a Fontawesome v5 | |
# | |
# Modo de uso | |
# ./fontawesome4to5.sh [-d DIRECTORIO] [-e EXTENSION] [-v] | |
# | |
# Si no se especifica DIRECTORIO, se hará el reemplazo en el directorio actual | |
# Si no se especifica EXTENSION, se buscarán por defecto archivos "php" | |
# Opción -v mostrará los archivos que se van modificando |
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
New-Item -Path "C:\Temp" -Type Directory | |
Dism /Mount-Image /ImageFile:"E:\sources\boot.wim" /Index:2 /MountDir:"C:\Temp" | |
$cabs = Get-ChildItem "*.cab" -Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs" | |
foreach($cab in $cabs) { | |
Dism /Add-Package /Image:"C:\Temp" /PackagePath:"$($cab.VersionInfo.FileName)" | |
} | |
$cabs = Get-ChildItem "*.cab" -Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us" | |
foreach($cab in $cabs) { |
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
get_code() | |
{ | |
folder="$1" | |
branch_name="$2" | |
cd $folder | |
git reset --hard HEAD | |
git clean . -fdx | |
git fetch | |
git checkout -b $branch_name origin/$branch_name | |
git checkout $branch_name |
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
-- T r u e S h a d e -- | |
-- set( "sim/private/controls/caps/dynamic_shadow", 1.00) | |
set( "sim/private/controls/clouds/cloud_shadow_lighten_ratio", 1.00) | |
set( "sim/private/controls/clouds/shad_alpha_dry", 0.9 ) | |
set( "sim/private/controls/clouds/shad_alpha_wet", 1.90 ) | |
set( "sim/private/controls/clouds/shad_radius", 0.70 ) | |
set( "sim/private/controls/clouds/shadow_size", 2048.0 ) |
OlderNewer