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 / .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 / 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 */