Skip to content

Instantly share code, notes, and snippets.

View 183amir's full-sized avatar

Amir Mohammadi 183amir

View GitHub Profile
@mariozig
mariozig / migrate_repo.sh
Last active December 22, 2022 08:32
Migrate repo from GitLab to GitHub Full blog post @ http://ruby.zigzo.com/2015/03/23/moving-from-gitlab-to-github/
# Assume we are in your home directory
cd ~/
# Clone the repo from GitLab using the `--mirror` option
$ git clone --mirror git@your-gitlab-site.com:mario/my-repo.git
# Change into newly created repo directory
$ cd ~/my-repo.git
# Push to GitHub using the `--mirror` option. The `--no-verify` option skips any hooks.
@kochol
kochol / PKGBUILD
Last active August 29, 2015 14:08
PKGBUILD for easy install of kge on archlinux
# Maintainer: kochol <kocholsoft@yahoo.com>
pkgname=kge-git
pkgver=04b8627
pkgrel=1
pkgdesc="Kochol Game Engine"
arch=('i686' 'x86_64')
url="http://www.kge3d.org"
license=('zlib')
depends=('sdl2' 'glew' 'devil' 'nvidia-cg-toolkit' 'ncurses')
@edobashira
edobashira / Makefile
Created June 19, 2013 05:53
Simple tool to convert Kaldi lattice to HTK SLF format using Kaldi and OpenLat
KALDI_ROOT=
OPENLAT_ROOT=
all: lattice-to-htk
ifndef KALDI_ROOT
$(error KALDI_ROOT is not set)
endif
ifndef OPENLAT_ROOT