Skip to content

Instantly share code, notes, and snippets.

View vasigorc's full-sized avatar
🇨🇦
Working from home

Vasile Gorcinschi vasigorc

🇨🇦
Working from home
View GitHub Profile
@cagcak
cagcak / postman_install.sh
Created July 26, 2018 06:20 — 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
@diegopacheco
diegopacheco / build.gradle.md
Created January 11, 2016 19:38
How main class in Scala with Gradle?

[build.gradle]

apply plugin: 'scala'

repositories{
    mavenCentral()
    mavenLocal()
}

dependencies{
@tijptjik
tijptjik / .bashrc
Created February 22, 2012 05:25
mTypeHK .bashrc with Fedora // Git aliases . Put it in your home directory
#!/bin/bash
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
PS1='\[\e[1;34m\]\u\[\e[m\] \[\e[0;32m\]\w\[\e[m\] $(parse_git_branch) \[\e[1;34m\]\$ \[\e[m\]\[\e[0;37m\]'
#PS1='\[\e[1;34m\]\u\[\e[m\] \[\e[0;32m\]\w\[\e[m\] \[\e[1;34m\]\$ \[\e[m\]\[\e[0;37m\]'
# If not running interactively, don't do anything