Skip to content

Instantly share code, notes, and snippets.

View rbatinov's full-sized avatar

rbatinov

View GitHub Profile
@bradtraversy
bradtraversy / terminal-commands.md
Last active July 26, 2024 01:59
Common Terminal Commands

Common Terminal Commands

Key Commands & Navigation

Before we look at some common commands, I just want to note a few keyboard commands that are very helpful:

  • Up Arrow: Will show your last command
  • Down Arrow: Will show your next command
  • Tab: Will auto-complete your command
  • Ctrl + L: Will clear the screen
{
// Place your snippets for html here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
"slim4 skeleton Twig template": {
"prefix": "extends",
"body": [
"{% extends \"layout/${1|layout-empty,layout|}.twig\" %}",
"",
@DarkGhostHunter
DarkGhostHunter / collections.md
Last active December 19, 2023 08:23
Laravel Collection Methods order by Purpose

Collection methods

This is a list of Collection methods, ordered by purpose, instead of just an alphabetical order.

This allows you to quickly find the methods for the action you want to do, instead of checking the list one by one.


@pmeszaros
pmeszaros / docker-compose.yaml
Created November 8, 2017 19:50
docker-compose.yaml for Slim Framework Skeleton with MySQL and phpMyAdmin
version: '2'
volumes:
logs:
driver: local
services:
mysql:
image: mysql:5.7
volumes:
@erezsob
erezsob / language-culture-names-list.json
Last active January 8, 2024 09:00
List of language culture names and their display names as one level object in one JSON file
[
{
"country": "Afghanistan",
"language": "Pashto",
"twoLetter LangCode": "ps",
"threeLetterLangCode": "pus",
"cultureInfoCode": "ps-AF"
},
{
"country": "Afghanistan",
@hsquareweb
hsquareweb / header.html
Created March 26, 2012 22:03
Apple Touch Icons, Windows Icons, and Splash Screens
<link rel="shortcut icon" href="/images/favicon.ico"/>
<!-- Apple Touch Icons -->
<link rel="apple-touch-icon" href="/images/touch-icon-57.png" sizes="57x57"/>
<link rel="apple-touch-icon" href="/images/touch-icon-72.png" sizes="72x72"/>
<link rel="apple-touch-icon" href="/images/touch-icon-76.png" sizes="76x76"/>
<link rel="apple-touch-icon" href="/images/touch-icon-114.png" sizes="114x114"/>
<link rel="apple-touch-icon" href="/images/touch-icon-120.png" sizes="120x120"/>
<link rel="apple-touch-icon" href="/images/touch-icon-144.png" sizes="144x144"/>
<link rel="apple-touch-icon" href="/images/touch-icon-152.png" sizes="152x152"/>