Configurar conexão como "privada": https://tinkertry.com/how-to-change-windows-10-network-type-from-public-to-private
winrm quickconfig
vagrant package --base --output .box
#https://docs.microsoft.com/pt-br/dotnet/core/install/linux-debian | |
# add packages | |
wget https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb | |
sudo dpkg -i packages-microsoft-prod.deb | |
rm packages-microsoft-prod.deb | |
# install SDK |
class Pessoa | |
{ | |
public int Id { get; set; } | |
public string Nome { get; set; } | |
public string Email { get; set; } | |
public void Salvar() { /*...*/ } | |
public void ValidarEmail() { /*...*/ } | |
public void EnviarEmail() { /*...*/ } | |
} |
OldStyle := GetWindowLong(Edit.Handle, GWL_STYLE); | |
NewStyle := (OldStyle and not(ES_LEFT or ES_CENTER or ES_RIGHT)) or ES_RIGHT; | |
SetWindowLong(Edit.Handle, GWL_STYLE, NewStyle); |
Configurar conexão como "privada": https://tinkertry.com/how-to-change-windows-10-network-type-from-public-to-private
winrm quickconfig
vagrant package --base --output .box
# Installing | |
sudo apt-get install -y mongodb-org | |
# Running | |
mkdir data | |
echo 'mongod --bind_ip=$IP --dbpath=data --nojournal --rest "$@"' > mongod | |
chmod a+x mongod | |
./mongod |
SET UTF-8 | |
TRY áàãâéêíóõôúüçesianrtolcdugmphbyfvkwjqxz | |
# Copyright (C) 2006 - 2010 por Raimundo Santos Moura | |
# <[email protected]> | |
# Colaboradores deste projeto: http://www.openoffice.org.br/?q=creditos | |
# Brasil - Setembro 2010 | |
# Este é um dicionário para correção ortográfica da língua Portuguesa | |
# para o Hunspell. |
$(document).ready(function () { | |
GetLatestReleaseInfo(); | |
}); | |
function GetLatestReleaseInfo() { | |
$.getJSON("https://api.github.com/repos/ShareX/ShareX/releases/latest").done(function (release) { | |
var asset = release.assets[0]; | |
var downloadCount = 0; | |
for (var i = 0; i < release.assets.length; i++) { | |
downloadCount += release.assets[i].download_count; |
cinst GoogleChrome | |
cinst skype | |
cinst k-litecodecpackfull | |
cinst vlc | |
cinst peazip | |
cinst pdfcreator | |
cinst libreoffice | |
cinst malwarebytes | |
cinst avgantivirusfree |
# START iexplore.exe http://boxstarter.org/package/nr/url?https://gist.githubusercontent.com/evandroamparo/d2a88ed2196d3bbe7aa3/raw/boxstarter_test.ps1 | |
reg add HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /d 0 /t REG_DWORD /f /reg:64 | |
winrm quickconfig -q | |
winrm quickconfig -transport:http | |
winrm set winrm/config '@{MaxTimeoutms="7200000"}' | |
winrm set winrm/config/winrs '@{MaxMemoryPerShellMB="0"}' | |
winrm set winrm/config/winrs '@{MaxProcessesPerShell="0"}' | |
winrm set winrm/config/winrs '@{MaxShellsPerUser="0"}' |