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
| _ _ _ ____ _ _ | |
| | | | | __ _ ___| | __ | __ ) __ _ ___| | _| | | |
| | |_| |/ _` |/ __| |/ / | _ \ / _` |/ __| |/ / | | |
| | _ | (_| | (__| < | |_) | (_| | (__| <|_| | |
| |_| |_|\__,_|\___|_|\_\ |____/ \__,_|\___|_|\_(_) | |
| A DIY Guide | |
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
| name: Send email on pipeline completion | |
| on: | |
| # Trigger this workflow when the pipeline is completed | |
| pipeline: | |
| completed: true | |
| jobs: | |
| send-email: | |
| runs-on: ubuntu-latest |
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
| <?php | |
| //Clean previous built files | |
| array_map('unlink', glob(__DIR__ . '/public/*.html')); | |
| array_map('unlink', glob(__DIR__ . '/public/pt-br/*.html')); | |
| array_map('unlink', glob(__DIR__ . '/public/de/*.html')); | |
| array_map('unlink', glob(__DIR__ . '/public/jp/*.html')); | |
| //Scan for all templates | |
| $templates = glob(__DIR__ . '/renderer/templates/*.php');; | |
| $locales = glob(__DIR__ . '/renderer/locales/*.php');; |
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 amp lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script async src="https://cdn.ampproject.org/v0.js"></script> | |
| <title>Hello, AMPs</title> | |
| <link rel="canonical" href="http://example.ampproject.org/article-metadata.html"> | |
| <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> | |
| <script type="application/ld+json"> | |
| { |
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 amp lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <script async src="https://cdn.ampproject.org/v0.js"></script> | |
| <title>Hello, AMPs</title> | |
| <link rel="canonical" href="http://example.ampproject.org/article-metadata.html"> | |
| <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> | |
| <script type="application/ld+json"> | |
| { |
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
| { | |
| "message": "successful operation", | |
| "content": [ | |
| { | |
| "id": 1234, | |
| "campsite_id": 1234, | |
| "categories": [ | |
| { | |
| "name": "Pitch", | |
| "slug": "pitch" |
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
| /* | |
| * To change this license header, choose License Headers in Project Properties. | |
| * To change this template file, choose Tools | Templates | |
| * and open the template in the editor. | |
| */ | |
| package br.com.umbernardo.calories.controller; | |
| import br.com.umbernardo.calories.dao.DiarioDAO; | |
| import br.com.umbernardo.calories.model.Diario; | |
| import java.util.List; |
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/sh | |
| ## Checa se o servidor brasileiro de Pokemon Go esta online | |
| while true | |
| do | |
| if (curl -s 'http://www.mmoserverstatus.com/pokemon_go' | grep 'Brazil<span><i class="fa fa-check green') | |
| then | |
| spd-say 'pokemon no brazil' | |
| else | |
| echo 'Offline' | |
| fi |
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
| <nav class="menu"> | |
| <ul> | |
| <li class="<?= $this->uri('/home', 'selected') ?><?= $this->uri('/', 'selected') ?>"> | |
| <a href="#"> | |
| <i class="icon icon-home"></i> | |
| </a> | |
| </li> | |
| <li><a href="#">Institucional</a></li> | |
| </ul> | |
| </nav> |
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
| Cyclobras Pedidos is a online web app for Hospitals used to order oncology supplies in order to diagnose cancer in patients. My contribution to this project was the Software Engineering and Development from scratch. |
NewerOlder