Skip to content

Instantly share code, notes, and snippets.

View uialberto's full-sized avatar

Alberto Baigorria uialberto

View GitHub Profile
@uialberto
uialberto / ReactNative-instalaciones.md
Created March 5, 2024 01:13 — forked from Klerith/ReactNative-instalaciones.md
Instalaciones recomendadas para el curso de React Native

React Logo

Instalaciones - Curso de React Native

Esta es la lista de instalaciones recomendadas para el curso de React Native, si encuentran enlaces adicionales o cambios en esta hoja, pueden hacerlos.

@uialberto
uialberto / instalaciones-node.md
Created November 25, 2023 02:01 — forked from Klerith/instalaciones-node.md
Instalaciones recomendadas - Curso de Node de cero a experto
@uialberto
uialberto / plugins-flutter.md
Created July 9, 2022 11:08 — forked from Klerith/plugins.md
Flutter: Curso de Flutter - Instalaciones recomendadas

Programas

git config --global user.name "Tu nombre"
git config --global user.email "Tu correo"
@uialberto
uialberto / verify-iis-config.ps1
Created May 30, 2020 16:26
Verificación IIS Server Configuracion - Windows PowerShell ISE
$configSection = Get-IISConfigSection -SectionPath "system.applicationHost/sites"
$state = Get-IISConfigCollection $configSection | Get-IISConfigCollectionElement -ConfigAttribute @{"Name"="Default Web Site"} | Get-IISConfigAttributeValue -AttributeName "State"
if($state -eq "Started")
{
Write-Host "Default Web Site esta iniciado" -ForegroundColor Green
}else
{
Write-Host "Default Web Site no esta iniciado" -ForegroundColor Red
}
@uialberto
uialberto / verify-iis.ps1
Created May 30, 2020 16:24
Verificación IIS Server Modulos - Windows PowerShell ISE
$goodmodules = @(
"Web-Server",
"Web-WebServer",
"Web-Common-Http",
"Web-Default-Doc",
"Web-Default-Doc"
)
$badmodules = @(
"Web-DAV-Publishing",
@uialberto
uialberto / install-iis.ps1
Created May 30, 2020 16:22
Instalacion IIS Web Server por PowerShell
Write-Host "Instalacion IIS Server Script V1"
Import-Module servermanager
Remove-WindowsFeature Web-ASP, Web-CGI,Web-Ftp-Server
Add-WindowsFeature Web-WebServer, Web-Common-Http, Web-Asp-Net45, Web-Static-Content
@uialberto
uialberto / web-install-iis2.bat
Created May 30, 2020 16:20
Instalacion IIS Web Server por Console
@echo off
REM Install IIS-WebServer
dism /online /get-featureinfo /featurename:IIS-WebServer | find "Deshabilitado" > nul
if %ERRORLEVEL% == 0 (
echo "IIS Web Server no esta instalado. Instalando..."
dism /online /enable-feature /featurename:IIS-WebServer /all
)
REM Install IIS-ASPNET45
@uialberto
uialberto / web-install-iis.bat
Created May 30, 2020 16:18
Instalacion IIS Web Server por Console
@echo off
dism /online /get-featureinfo /featurename:IIS-WebServer | find "Deshabilitado" > nul
if %ERRORLEVEL% == 0 (
echo "IIS Web Server no esta instalado. Deberia ser instalado."
dism /online /enable-feature /featurename:IIS-WebServer /all
)
@uialberto
uialberto / IoCUnityMicrosoft.cs
Last active September 17, 2016 03:01
Contenedor de inversion de control Unity
public class Bootstrapper
{
private IUnityContainer unityContainer;
public Bootstrapper()
{
unityContainer = new UnityContainer();
unityContainer.RegisterType<IPasswordCipher, Pbkdf2PasswordCipher>(new ContainerControlledLifetimeManager());
unityContainer.RegisterType<IPasswordCipherFactory, Pbkdf2PasswordCipherFactory>(new ContainerControlledLifetimeManager());
var cipherPassword = unityContainer.Resolve<IPasswordCipher>();
var cipherPasswordFactory = unityContainer.Resolve<IPasswordCipherFactory>();