Skip to content

Instantly share code, notes, and snippets.

View hamidazimy's full-sized avatar

Hamid hamidazimy

View GitHub Profile
@hamidazimy
hamidazimy / rtl_jira.user.js
Last active November 13, 2015 08:22
Tiny script to add RTL support to JIRA (can be used everywhere with a little modification)
// ==UserScript==
// @name RTL Jira
// @namespace medianesh.com:9090
// @include http://medianesh.com:9090/*
// @version 0.2
// @grant none
// ==/UserScript==
function isRTL(text) {
if (text !== "") {
@hamidazimy
hamidazimy / rtl_slack.user.js
Last active August 26, 2018 15:30
Tiny script to add RTL support to slack.com (can be used everywhere with a little modification)
// ==UserScript==
// @name RTL Slack
// @namespace slask.com
// @include https://*.slack.com/*
// @version 1.2.2
// @grant none
// ==/UserScript==
function isRTL(text) {
if (text !== "") {
@hamidazimy
hamidazimy / .bashrc
Last active November 28, 2018 02:15
My .bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoredups:ignorespace