Skip to content

Instantly share code, notes, and snippets.

View jniltinho's full-sized avatar
🏠
Working from home

Nilton Oliveira jniltinho

🏠
Working from home
View GitHub Profile
@jniltinho
jniltinho / perl-oracle-install-debian-12.sh
Last active April 18, 2024 19:49 — forked from gongo/dbd-oracle-install-on-ubuntu1204.org
Install document of DBD::Oracle on Debian 12
#!/bin/bash
## Install DBD::Oracle on Debian 12
## DBD::Oracle on Debian 12
## Link on http://www.oracle.com/technetwork/topics/linuxsoft-082809.html
## https://www.oracle.com/database/technologies/instant-client/linux-x86-64-downloads.html
## https://yum.oracle.com/repo/OracleLinux/OL7/oracle/instantclient/x86_64/index.html
## 2024/04/18, version *19.23.0.0.0-1*
## Install require package
@jniltinho
jniltinho / Install-goland.sh
Last active April 7, 2024 23:13 — forked from andreshincapier/Install_goland.md
Install Goland On Ubuntu
#!/bin/bash
## Install Goland 2024.1 on Ubuntu 22.04
wget https://download.jetbrains.com/go/goland-2024.1.tar.gz
tar xvz goland-2024.1.tar.gz
mv GoLand-2024.1 /opt/GoLand
cat <<'EOF' >/usr/share/applications/goland.desktop
[Desktop Entry]
Encoding=UTF-8
@jniltinho
jniltinho / Install-Oracle-InstantClient.sh.md
Last active December 7, 2023 13:42 — forked from rutcreate/README.md
Install Oracle InstantClient and SQL*Plus from source on Ubuntu 20.04

Download InstantClient

mkdir -p /opt/oracle
cd /opt/oracle
wget https://download.oracle.com/otn_software/linux/instantclient/218000/instantclient-basic-linux.x64-21.8.0.0.0dbru.zip
unzip instantclient-basic-linux.x64-21.8.0.0.0dbru.zip

Download SQLPlus

Install RabbitMQ on CentOS 7

sudo yum -y install epel-release
sudo yum -y update

Install Erlang

Download repository

@jniltinho
jniltinho / ssh_client.go
Created October 30, 2015 19:58 — forked from iamralch/ssh_client.go
SSH client in GO
package main
import (
"fmt"
"io"
"io/ioutil"
"net"
"os"
"strings"