Keybase proof
I hereby claim:
- I am diogocapela on github.
- I am diogocapela (https://keybase.io/diogocapela) on keybase.
- I have a public key ASDq9CGecwsL3cNrUS3gOKPYdlW1lUoMWbFmSE1bSSyo6go
To claim this, I am signing this object:
Africa/Abidjan | |
Africa/Accra | |
Africa/Addis_Ababa | |
Africa/Algiers | |
Africa/Asmara | |
Africa/Asmera | |
Africa/Bamako | |
Africa/Bangui | |
Africa/Banjul | |
Africa/Bissau |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<title>Starter Template</title> | |
<meta name="description" content=""> |
[ | |
{ "name": "Afghanistan", "iso": "AF", "flag": "🇦🇫", "dialCode": "+93" }, | |
{ "name": "Aland Islands", "iso": "AX", "flag": "🇦🇽", "dialCode": "+358-18" }, | |
{ "name": "Albania", "iso": "AL", "flag": "🇦🇱", "dialCode": "+355" }, | |
{ "name": "Algeria", "iso": "DZ", "flag": "🇩🇿", "dialCode": "+213" }, | |
{ "name": "American Samoa", "iso": "AS", "flag": "🇦🇸", "dialCode": "+1-684" }, | |
{ "name": "Andorra", "iso": "AD", "flag": "🇦🇩", "dialCode": "+376" }, | |
{ "name": "Angola", "iso": "AO", "flag": "🇦🇴", "dialCode": "+244" }, | |
{ "name": "Anguilla", "iso": "AI", "flag": "🇦🇮", "dialCode": "+1264" }, | |
{ "name": "Antarctica", "iso": "AQ", "flag": "🇦🇶", "dialCode": "+672" }, |
ab | |
ad | |
an | |
ante | |
anti | |
auto | |
be | |
bi | |
centi | |
circum |
I hereby claim:
To claim this, I am signing this object:
scrollbar-width: none; | |
overflow: -moz-scrollbars-none; | |
-ms-overflow-style: none; | |
&::-webkit-scrollbar { | |
display: none; | |
width: 0; | |
height: 0; | |
} |
#include <errno.h> | |
#include <fcntl.h> | |
#include <pthread.h> | |
#include <semaphore.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/mman.h> | |
#include <sys/stat.h> | |
#include <sys/types.h> |
#include <errno.h> | |
#include <fcntl.h> | |
#include <semaphore.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/mman.h> | |
#include <sys/stat.h> | |
#include <sys/types.h> | |
#include <sys/wait.h> |
int getRandomIntBetween(int min, int max) { | |
srand(time(NULL) * getpid() << 16); | |
int randomNumber = (rand() % max) + min; | |
return randomNumber; | |
} |
# Makefile for using flex with bison | |
# | |
# The executable receives the name of the current folder | |
# Do not use spaces in the name of the folder | |
# | |
# The .lex and .y files used are the first ones found by ls | |
# | |
# If there is a .txt file, it will be used as the input of the executable | |
# | |
# This Makefile works on Linux and on OSX |