Skip to content

Instantly share code, notes, and snippets.

View tmli3b3rm4n's full-sized avatar
:octocat:
Working from home

Tim Lieberman tmli3b3rm4n

:octocat:
Working from home
  • Remote from Atlanta
View GitHub Profile
@tmli3b3rm4n
tmli3b3rm4n / GitCommitEmoji.md
Created January 1, 2023 03:40 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji
@tmli3b3rm4n
tmli3b3rm4n / .vimrc
Created June 28, 2022 21:18 — forked from napcs/.vimrc
Set up Vim on Mac, Linux, or Windows. For Mac and Linux: sh <(curl -s https://gist.githubusercontent.com/napcs/532968/raw/vim.sh)
if has('win32') || has ('win64')
let $VIMHOME = $HOME."/Dropbox/dotfiles/.vim"
if !empty($CONEMUBUILD)
set term=xterm
set t_Co=256
let &t_AB="\e[48;5;%dm"
let &t_AF="\e[38;5;%dm"
endif
@tmli3b3rm4n
tmli3b3rm4n / most toxic OBUOBISA, SAMUEL
Last active February 19, 2020 17:38
Most difficult person I've ever had to work with.
My list isn't long. I've worked beside great people some very smart. But this dude was by far the worst most
toxic coworker i've ever had the displeasure of working with.
#1. Onyekwelu Obukwelu aka OBUOBISA, SAMUEL manipulative, spiteful, obstructive, mental state (12 year old),
no computer science background, impossible to get rid of, impossible to work with. He's the reason your project fails.
@tmli3b3rm4n
tmli3b3rm4n / .bash_profile
Created November 6, 2019 15:55 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@tmli3b3rm4n
tmli3b3rm4n / gists.js
Last active May 7, 2019 14:37
how to component
/// How to access multiple
class Menu extends React.Component {
constructor(){
super()
this.state = {
items: ['Hello', 'world', 'it', 'is', 'me'],
active: 0
}
}
click(index){
@tmli3b3rm4n
tmli3b3rm4n / mergeSortAsync.go
Created April 5, 2019 11:22
GO concurrency with merge sort
func mergeSortAsync(l []int, c chan []int) {
if len(l) < 2 {
c <- l
return
}
if len(l) < 500 { //THIS NUMBER IS CONFIGURABLE.
c <- merge_sort(l)
return
}
mid := len(l) / 2
@tmli3b3rm4n
tmli3b3rm4n / phpunit_sample.php
Created March 13, 2018 15:55 — forked from h4cc/phpunit_sample.php
A few examples how to use PHPUnit. Covering Mock Objects, setUp Method, MockBuilder, @ExpectedException, @dataProvider
<?php
namespace Silpion\ExampleBundle\Tests\Listener\Serialization;
use Silpion\ExampleBundle\Entity\TextBlock;
use Silpion\ExampleBundle\Listener\Serialization\SerializationListener;
class SerializationListenerTest extends \PHPUnit_Framework_TestCase
{
/** @var SerializationListener */
@tmli3b3rm4n
tmli3b3rm4n / phpunit_sample.php
Created March 13, 2018 15:55 — forked from h4cc/phpunit_sample.php
A few examples how to use PHPUnit. Covering Mock Objects, setUp Method, MockBuilder, @ExpectedException, @dataProvider
<?php
namespace Silpion\ExampleBundle\Tests\Listener\Serialization;
use Silpion\ExampleBundle\Entity\TextBlock;
use Silpion\ExampleBundle\Listener\Serialization\SerializationListener;
class SerializationListenerTest extends \PHPUnit_Framework_TestCase
{
/** @var SerializationListener */