Skip to content

Instantly share code, notes, and snippets.

View viegasfh's full-sized avatar

Fidel H Viegas viegasfh

View GitHub Profile
@derick-montague
derick-montague / sync-github-to-bitbucket.md
Last active May 6, 2025 07:39
Sync github repo to bitbucket repo

Set up remotes

setup local repo

mkdir myrepository
cd myrepository
git init

add bitbucket remote as "origin"

@sevko
sevko / README.md
Last active December 27, 2024 09:19
Compile a full-featured Vim (w/ Python, Ruby, etc.).

compile full Vim

The default Vim installed on most Linux distros lacks a number of vital features, like xterm_clipboard (allows copy-and-pasting to the system clipboard) and python (on which certain plugins rely). The compile_full_vim.sh shell script removes the currently installed Vim and compiles a full-featured version; it's based entirely off Valloric's YouCompleteMe walkthrough, which it bundles into a simple script for convenience. Vim will be compiled with the following feature flags:

  • --with-features=huge
  • --enable-multibyte
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using Irony.Parsing;
namespace FreeActionScript
{
[Language ("ActionScript", "3.0-", "ActionScript pseudo grammar")]
public class ActionScriptGrammar : Grammar