Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Samuel-Bie's full-sized avatar
🏠
Put God first

Samuel Bie Samuel-Bie

🏠
Put God first
View GitHub Profile
@Samuel-Bie
Samuel-Bie / code-review-checklist.md
Created November 29, 2023 00:08 — forked from nerandell/code-review-checklist.md
PHP Code Review Guidelines

Make sure these boxes are checked before submitting/approving the PR

General

  • The code works
  • The code is easy to understand
  • Follows coding conventions
  • Names are simple and if possible short
  • Names are spelt correctly
  • Names contain units where applicable
  • There are no usages of magic numbers
@Samuel-Bie
Samuel-Bie / Dockerfile
Created September 11, 2020 16:50 — forked from wwarodom/Dockerfile
php-fpm Dockerfile with Java
# To edit the 'php-fpm' base Image, visit its repository on Github
# https://github.com/Laradock/php-fpm
# To change its version, see the available Tags on the Docker Hub:
# https://hub.docker.com/r/laradock/php-fpm/tags/
# Note: Base Image name format {image-tag}-{php-version}
ARG LARADOCK_PHP_VERSION
FROM laradock/php-fpm:2.2-${LARADOCK_PHP_VERSION}
@Samuel-Bie
Samuel-Bie / add_columns_py
Created July 31, 2020 01:16
Add columns to mysql workbench
# -*- coding: utf-8 -*-
# MySQL Workbench Python script
# <description>
# Written in MySQL Workbench 8.0.18
import grt
#import mforms
#define your columns and types here
#columns_types = {"created_at" : "DATETIME", "updated_at" : "DATETIME"}
@Samuel-Bie
Samuel-Bie / index.html
Created June 29, 2018 11:22 — forked from CodeMyUI/index.html
UI with UX improvements with only CSS
<input type="checkbox" id="navcheck" role="button" title="menu">
<label for="navcheck" aria-hidden="true" title="menu">
<span class="burger">
<span class="bar">
<span class="visuallyhidden">Menu</span>
</span>
</span>
</label>
<nav id="menu">
<a href="#">Lorem.</a>