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
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
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 | |
# O comando deve ser executado pelo administrador (sudo) | |
# Aqui coloca-se o diretório onde está o arquivo de configuração da vpn | |
cd /Exemplo/De/Path | |
# A variável $ENTRY recebe o primeiro parâmetro enviado pelo usuário | |
ENTRY=$1 | |
STOP="stop" |
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 | |
# Discussion, issues and change requests at: | |
# https://github.com/nodesource/distributions | |
# | |
# Script to install the NodeSource Node.js 10.x repo onto a | |
# Debian or Ubuntu system. | |
# | |
# Run as root or insert `sudo -E` before `bash`: | |
# |
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
import random | |
entrys = [[0, 0], [0, 1], [1, 0], [1, 1]] | |
intended = [0, 0, 0, 1] # Para alterar o tipo de porta, basta alterar a saída esperada | |
alpha = 0.7 | |
w = [] | |
for x in range(3): |
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
@extends('layouts.email') | |
@section('content') | |
<tbody> | |
<tr> | |
<td style="font-size: 18px; color: #fff; font-weight: 500; padding: 20px; text-align: center; border-radius: 3px 3px 0 0; background: #265876;"> | |
Seu cadastro foi aprovado | |
</td> | |
</tr> | |
<tr> |
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
#include <Servo.h> | |
Servo servo1, servo2,servo3, servo4, servo5; | |
int posicao, posicao_base, posicao_braco = 0; | |
int val = 0; | |
int var = 3; | |
int degree, degree_base, degree_braco = 0; | |
void setup() { |