Skip to content

Instantly share code, notes, and snippets.

@bcamargogui
bcamargogui / install_oci8_ubuntu_16.04_php7.1.md
Created January 9, 2019 10:57 — forked from hewerthomn/install_oci8_ubuntu_16.04_php7.1.md
How to install OCI8 on Ubuntu 16.04 and PHP 7.1
@bcamargogui
bcamargogui / postman_install.sh
Created September 10, 2018 15:01 — forked from posemon/postman_install.sh
Postman install Ubuntu 18.04
#!/bin/bash
# Get postman app
wget https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
sudo tar -xzf postman.tar.gz -C /opt
sudo ln -s /opt/Postman/Postman /usr/bin/postman
#Create a Desktop Entry
cat > ~/.local/share/applications/postman.desktop <<EOL
[Desktop Entry]
Encoding=UTF-8
<?php
$str_conn="firebird:host=localhost;dbname=/var/lib/firebird/2.5/data/employee.fdb;charset=UTF8";
$dbh = new PDO($str_conn, "sysdba", "masterkey");
?>
@bcamargogui
bcamargogui / gist:5eb6519747a2ac6bb0cc613d0c921bd0
Last active April 2, 2018 12:44 — forked from michelbrito/gist:1083205
Lista de estados em HTML
<select>
<option value="">Selecione seu estado</option>
<option value="AC">Acre</option>
<option value="AL">Alagoas</option>
<option value="AP">Amapá</option>
<option value="AM">Amazonas</option>
<option value="BA">Bahia</option>
<option value="CE">Ceará</option>
<option value="DF">Distrito Federal</option>
<option value="ES">Espirito Santo</option>