Skip to content

Instantly share code, notes, and snippets.

View ErickGiffoni's full-sized avatar
🎯
...

ErickGiffoni

🎯
...
View GitHub Profile
@ErickGiffoni
ErickGiffoni / insertionSort.c
Created August 27, 2020 17:58
Using Insertion Sort algorithm to order an array. The numbers are read from stdin while EOF is not reached and the output is put in stdout.
/*
* University of Brasilia - Brazil, UnB
* Software Engineering
* Created by Erick Giffoni in 2020 .
* Copyright © 2020 Erick Giffoni . All rights reserved.
*/
#include <stdio.h>
#define tamanho 50000
@ErickGiffoni
ErickGiffoni / fibonacci.c
Last active August 27, 2020 18:00
How to calculate Fibonacci's sequence using recursion ? I'll show you! This program shows a specified number of Fibonacci's sequence, based on the input from the user, which is that number's position.
#include <stdio.h>
/* This program shows a specified number of Fibonacci's sequence,
out of the input from the user, which is that number's position.
*/
// Code made by Erick Giffoni
// contact : [email protected]
// github : https://github.com/ErickGiffoni
// linkedin : https://www.linkedin.com/in/erick-giffoni-022565167/
// Copyright © 2018 Erick Giffoni . All rights reserved.

Aligning images

This is a guide for aligning images.

See the full Advanced Markdown doc for more tips and tricks

left alignment

@subfuzion
subfuzion / curl.md
Last active August 18, 2025 23:06
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.