Skip to content

Instantly share code, notes, and snippets.

View eltonvs's full-sized avatar
🏠
Working from Home

Elton Viana eltonvs

🏠
Working from Home
View GitHub Profile
$ sudo add-apt-repository ppa:webupd8team/sublime-text-3
$ sudo apt-get update
$ sudo apt-get install sublime-text-installer
# -*- coding: utf-8 -*-
from instagram.client import InstagramAPI
def connect_api(token):
return InstagramAPI(access_token=token)
def show_recent_profiles_liked(api):
recent_likes, next_ = api.user_liked_media(count=10)
names = [likes.user.full_name for likes in recent_likes]
/*
* jogo_sudoku.c
*
* Author: Elton Viana
* E-mail: [email protected]
*
*/
#include <stdio.h>
/*
* quadrado_latino.c
*
* Author: Elton Viana
* E-mail: [email protected]
*
*/
#include <stdio.h>
/*
* quadrado_magico.c
*
* Author: Elton Viana
* E-mail: [email protected]
*
*/
#include <stdio.h>