Skip to content

Instantly share code, notes, and snippets.

View weslleycsil's full-sized avatar

Weslley Silva weslleycsil

View GitHub Profile
{
"swagger": "2.0",
"info": {
"version": "1.0.0",
"title": "UFSCApp",
"description": "Rotas da Aplicacao",
"contact": {
"email": "[email protected]"
}
},
@weslleycsil
weslleycsil / kiosk.sh
Created February 19, 2020 20:11
kiosk install
#!/bin/bash
# be new
apt-get update
apt-get install --no-install-recommends \
xserver-xorg \
x11-xserver-utils \
openbox \
xorg \
@weslleycsil
weslleycsil / selinux.txt
Created July 10, 2018 18:04
Enable SELinux on Vultr CentOS 7
yum install selinux-policy-targeted
setenforce 1
touch /.autorelabel
reboot
@weslleycsil
weslleycsil / install_docker.sh
Created July 5, 2018 02:55
Instalação do Docker e Docker Compose
# Ask for the user password
# Script only works if sudo caches the password for a few minutes
sudo true
# Install kernel extra's to enable docker aufs support
# sudo apt-get -y install linux-image-extra-$(uname -r)
# Add Docker PPA and install latest version
# sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
# sudo sh -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
# sudo apt-get update
@weslleycsil
weslleycsil / app.component.ts
Created November 5, 2017 02:39
Config OneSignal Push Ionic2
platform.ready().then(() => {
// Okay, so the platform is ready and our plugins are available.
// Here you can do any higher level native things you might need.
statusBar.styleDefault();
splashScreen.hide();
Push.init();
});
@weslleycsil
weslleycsil / app.module.ts
Created November 4, 2017 00:54
Config IMG_View Ionic
import { IonicImageViewerModule } from 'ionic-img-viewer';
{
....
}
imports: [
BrowserModule,
IonicModule.forRoot(MyApp),
IonicImageViewerModule
],