Skip to content

Instantly share code, notes, and snippets.

View jeffersonchaves's full-sized avatar
😎
Focusing

Jefferson Chaves jeffersonchaves

😎
Focusing
  • Instituto Federal do Paraná - IFPR
  • Foz do Iguaçu - PR
View GitHub Profile
@jeffersonchaves
jeffersonchaves / gist:b7876c39240b062e5fc0749609e74141
Created March 15, 2023 02:28 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@jeffersonchaves
jeffersonchaves / curl.md
Created September 2, 2021 13:12 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@jeffersonchaves
jeffersonchaves / fileUpload.vue
Created July 16, 2020 15:12 — forked from raisiqueira/fileUpload.vue
Simple file upload with Vue and Axios
<style>
input[type="file"]{
position: absolute;
top: -500px;
}
div.file-listing{
width: 200px;
}
@jeffersonchaves
jeffersonchaves / print-timestamp-arduino
Created July 9, 2018 22:50 — forked from dhhagan/print-timestamp-arduino
Print a timestamp to SD card on Arduino
/*
print_time() returns a string in the format mm-dd-yyyy hh:mm:ss
*/
#include "RTClib.h"
#include <SD.h>
#include <SPI.h>
RTC_DS1307 rtc;
const int chipSelect = 10;
@jeffersonchaves
jeffersonchaves / fibonacci.php
Created September 23, 2016 13:52 — forked from renatorib/fibonacci.php
Função em php que gera a Sequência de Fibonacci
<?php
/**
* Sequência de Fibonacci em PHP
* @author Renato Ribeiro <renato@lugri.com>
*
*/
//função que gera a sequência de fibonacci e retorna em array
function fibonacci($q, $zero = false){
if($q >= 2){