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
530070000 | |
600195000 | |
098000060 | |
800060003 | |
400803001 | |
700020006 | |
060000280 | |
000419005 | |
000080079 |
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
## PARTE 0: Pacotes basicos | |
sudo apt-get install sshfs tmux fonts-firacode | |
## Parte 1: | |
# configuracao do editor de texto vim | |
git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime |
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
import Control.Applicative | |
import Control.Monad | |
fixLine [] = Nothing | |
fixLine (l:ls) = case l of | |
['O','O', _ , _ , _ ] -> Just $ ("++"++ drop 2 l) : ls | |
[ _ , _ , _ ,'O','O'] -> Just $ (take 3 l ++"++") : ls | |
_ -> (l:) <$> (fixLine ls) | |
main = do |
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
import matplotlib.pyplot as plt | |
import pandas as pd | |
import numpy as np | |
data = pd.read_csv("Censo /r/brasilivre 2018.csv") | |
# | |
# print(data.columns) | |
# | |
# data['Idade'] | |
# |
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
module circuito1( | |
input b3, | |
input b2, | |
input b1, | |
input b0, | |
output s0); | |
wire [3:0] entrada = {b3, b2, b1, b0}; | |
/* |
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
package com.ew.spellbook.myapplication; | |
import org.jsoup.Jsoup; | |
import org.jsoup.nodes.Document; | |
import org.jsoup.nodes.Element; | |
import org.jsoup.select.Elements; | |
import java.io.IOException; | |
/** |
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
package com.example.aluno_uffs.pdfviewerteste; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import org.jsoup.Jsoup; | |
import org.jsoup.nodes.Document; | |
import org.jsoup.nodes.Element; | |
import org.jsoup.select.Elements; |
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
#include <iostream> | |
#include <vector> | |
#include <algorithm> | |
using namespace std; | |
struct C { | |
int x, y; | |
bool operator<(const C & o) const { |
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
import math | |
import timeit | |
n = 1000000 | |
def primes(): | |
mark = n * [False] | |
ps = [2] | |
mark[2] = True |
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
package com.example.aluno_uffs.myapplication; | |
import android.content.Intent; | |
import android.support.annotation.NonNull; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.view.View; | |
import android.widget.ArrayAdapter; | |
import android.widget.Button; | |
import android.widget.EditText; |
NewerOlder