Skip to content

Instantly share code, notes, and snippets.

@wendreof
wendreof / gist:f01314d9bb555f7fc8886674837d46be
Created July 30, 2019 13:24
Política de Privacidade - Hashi Sushi Delivery
## Privacy Policy
WM Digital Techs built the Hashi Sushi Delivery app as a Free app. This SERVICE is provided by WM Digital Techs at no cost and is intended for use as is.
This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service.
If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. we will not use or share your information with anyone except as described in this Privacy Policy.
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Hashi Sushi Delivery unless otherwise defined in this Privacy Policy.
@wendreof
wendreof / gist:d69b35c45b035dfc552cf73be19f1303
Last active August 7, 2019 17:30
Com o Docker devidamente instalado, faça o pull da imagem oficial
docker pull mcr.microsoft.com/mssql/server:2017-latest
@wendreof
wendreof / gist:f7cd9115aecceae29820701c6f355eb8
Last active August 7, 2019 17:30
Crie e execute o container
docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=ruby>java" -p 1433:1433 -d mcr.microsoft.com/mssql/server:2017-latest
docker start fb8bc6b068d1
CREATE DATABASE Linguagens
GO
USE Linguagens
GO
CREATE TABLE dbo.Linguagens
(
Codigo char(3) NOT NULL,
Nome varchar(30) NOT NULL,
@wendreof
wendreof / config.vmoptions
Last active August 8, 2019 13:03
Android Studio Low Ram Config
-Xmx512m
@wendreof
wendreof / removingDocker.yml
Last active August 8, 2019 14:08
Removing other Docker installations
sudo apt-get remove docker docker-engine
@wendreof
wendreof / installDependecies.yml
Last active August 8, 2019 14:07
Install Docker keys
sudo apt-get install apt-transport-https ca-certificates curl python-software-properties software-properties-common