Skip to content

Instantly share code, notes, and snippets.

View beamop's full-sized avatar
:shipit:
~/dev/null

Marwâne beamop

:shipit:
~/dev/null
View GitHub Profile
### Keybase proof
I hereby claim:
* I am beamop on github.
* I am beamop (https://keybase.io/beamop) on keybase.
* I have a public key whose fingerprint is 4273 DA96 C532 E1F8 7DCD 14BD 9CC9 C5B6 E5A2 9CBD
To claim this, I am signing this object:
A Statement from Philip R. Zimmermann
Senior Fellow, Network Associates
Founder, PGP Inc.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I'd like to address the rumors concerning the cryptographic
integrity of PGP, including recent versions made by Network
Associates, as well as recent freeware versions built and
@beamop
beamop / README-Template.md
Created September 4, 2018 00:03 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@beamop
beamop / git-commit-log-stats.md
Created November 24, 2018 19:02 — forked from eyecatchup/git-commit-log-stats.md
Some commands to get git commit log statistics for a repository on the command line.

git commit stats

Commands to get commit statistics for a Git repository from the command line -
using git log, git shortlog and friends.




@beamop
beamop / Procfile
Created December 31, 2018 00:28
heroku nginx config for symfony
web: vendor/bin/heroku-php-nginx -C nginx_app.conf web/
/**
* @Route("/app/links/export.csv", name="app_export_links")
*/
public function exportLinksAction()
{
$em = $this->getDoctrine()->getManager();
$links = $em
->getRepository(Links::class)
->findAll();
@beamop
beamop / tmux-cheatsheet.markdown
Created April 22, 2019 14:56 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@beamop
beamop / .tmux.conf
Last active June 9, 2019 18:52 — forked from gblmarquez/.tmux.conf
.tmux.conf with fish as default shell
# Default termtype. If the rcfile sets $TERM, that overrides this value.
set -g default-terminal screen-256color
# support logging out and back in
set -g update-environment "SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION"
# pbcopy support
set-option -g default-command "reattach-to-user-namespace -l bash"
# vi mode
@beamop
beamop / docker-help.md
Created December 25, 2019 17:31 — forked from bradtraversy/docker-help.md
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@beamop
beamop / docker-compose.yml
Created December 25, 2019 17:42
WordPress on Docker
version: '3'
services:
# Database
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment: