Skip to content

Instantly share code, notes, and snippets.

@eltonplima
eltonplima / bobp-python.md
Last active July 18, 2017 19:51 — forked from sloria/bobp-python.md
A "Best of the Best Practices" (BOBP) guide to developing in Python.

Guia das melhores das melhores práticas para Python

A versão original(em inglês) pode ser encontrada aqui

Um guia com as "melhores das melhores práticas" (BOBP) para o desenvolvimento em Python.

Geral

Valores

@eltonplima
eltonplima / basic-list-functions.sml
Created November 25, 2017 11:08 — forked from edalorzo/basic-list-functions.sml
Learning SML - Basic List Functions
(* Returns the head of a list. *)
fun head(xs) =
case xs of
[] => raise List.Empty
| (x::_) => x
(* Returns the tail of a list. *)
fun tail(xs) =
case xs of
[] => raise List.Empty
@eltonplima
eltonplima / bumpme
Last active July 20, 2018 21:10
bumpme
Fri Jul 20 21:10:07 UTC 2018

To install Pulse Secure for Ubuntu 20.04, it is a bit complicated since the support isn't great.

First, we'll want to go through the form at https://www.pulsesecure.net/trynow/client-download/. You'll get an email with download links to the latest versions of pulse secure. Download the Linux one with the deb file and then you can install it using dpkg from your downloads folder.

$ cd ~/Downloads
$ sudo dpkg -i ps-pulse-linux-[your-pulse-version]-ubuntu-debian-64-bit-installer.deb