Skip to content

Instantly share code, notes, and snippets.

View paulosevero's full-sized avatar

Paulo Silas Severo de Souza paulosevero

View GitHub Profile
@paulosevero
paulosevero / xploreapi.py
Created December 31, 2020 21:35
IEEE Xplore API with some modifications
import math
import requests
from urllib.parse import quote
from urllib.request import urlopen
import xml.etree.ElementTree as ET
import json
class XPLORE:
@paulosevero
paulosevero / bootstrap.sh
Last active January 16, 2020 16:23
Installing and Configuring Ruby on Rails
# Dependencies
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev nodejs yarn
# Configuring RBENV for ruby versions management
# Installing RBENV
@paulosevero
paulosevero / compile.sh
Created August 10, 2018 13:42
NAS Parallel Benchmark setup script on Ubuntu 14.04
#!/bin/bash
# compile_bench(bench, nprocs, class)
compile_bench() {
local bench="${1}"
local nprocs="${2}"
local class="${3}"
make "${bench}" NPROCS="${nprocs}" CLASS="${class}"
}