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
| /** | |
| Full Stack PHP Developer Console CSS | |
| */ | |
| @import url('https://fonts.googleapis.com/css?family=Open+sans|Source+Code+Pro'); | |
| :root { | |
| --fsphp: #1F2026; | |
| --fsline: #475163; | |
| --green: #35ba9b; | |
| --blue: #3aadd9; |
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 | |
| # Colors | |
| IRed='\e[0;91m'; | |
| BWhi='\e[1;37m'; | |
| # Variáveis | |
| VHOST=$1 | |
| PATH=$2 |
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 React from 'react'; | |
| import ApiCep from '../Services/ApiCep'; | |
| class BuscaCep extends React.Component { | |
| constructor() { | |
| super(); | |
| this.state = { |
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
| // My configs |
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
| const gulp = require('gulp') | |
| , harp = require('harp') | |
| , browserSync = require('browser-sync').create() | |
| , stylus = require('gulp-stylus') | |
| , htmlmin = require('gulp-htmlmin') | |
| , concat = require('gulp-concat') | |
| , uglify = require('gulp-uglify') | |
| , imagemin = require('gulp-imagemin'); | |
| let reload = browserSync.reload; |
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
| <!DOCTYPE html> | |
| <html data-ng-app="BeMEAN"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Curso de AngularJS - Webschool.io</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.8/css/materialize.min.css"> | |
| <style> | |
| .wrapper { | |
| max-width: 600px; | |
| margin: 0 auto; |
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
| // Criando um filtro // | |
| Vue.filter('upper', (value) => value.toUpperCase()); | |
| // Filtro para adicionar ... quando o limite de caracteres | |
| Vue.filter('limit', (value) => { | |
| const length = value.length; | |
| if(length <= 15) { | |
| return value; | |
| } |
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
| <!DOCTYPE html> | |
| <html lang="pt-BR"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Exercicio Aula1 | AngularJS</title> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> | |
| <script src="angular.min.js"></script> | |
| <script> | |
| angular.module('aula1', []) | |
| </script> |