Skip to content

Instantly share code, notes, and snippets.

View igorshubovych's full-sized avatar
💭
I may be slow to respond.

Igor Shubovych igorshubovych

💭
I may be slow to respond.
View GitHub Profile
@igorshubovych
igorshubovych / TLDR_Pages.md
Last active December 13, 2015 08:20
Pages for TLDR

Many standard Unix utils

  • bc
  • test
  • look
  • netstat
  • uptime
  • vi
  • expr
  • hostname
@igorshubovych
igorshubovych / index.json
Created December 8, 2015 16:15
Short index for TLDR project
{
"commands": [
{
"name": "ab",
"platform": [
"common"
]
},
{
"name": "ack",
@igorshubovych
igorshubovych / Plans.md
Last active December 12, 2015 20:47
TLDR pages plan

Plans for TLDR

  • More pages: see Pages.md
  • Simplify Readme.md and CONTRIBUTING.md. Only important text, more examples. Contribution has to become damn simple.
  • Improvements on static site: more appealing design and better contributing guidelines.
  • No dependencies client, which can be simply installed on servers.
  • Windows support (?)
@igorshubovych
igorshubovych / gist:253748dcbb77312784ed
Created June 3, 2015 11:22
Cumulative AngularJS changelog from 1.2.8 to 1.2.28

1.2.9 enchanted-articulacy (2014-01-15)

Bug Fixes

  • $animate:
    • ensure the final closing timeout respects staggering animations (ed53100a)
  • prevent race conditions for class-based animations when animating on the same CSS class
# encoding: utf-8
# Capistrano 2
before "deploy", "friday:good_luck"
namespace :friday do
friday_jumper = %{
┓┏┓┏┓┃
┛┗┛┗┛┃⟍ ○⟋
┓┏┓┏┓┃ ∕ Friday
@igorshubovych
igorshubovych / chmod.md
Last active March 26, 2019 13:48
Documentation for chmod

chmod

Change the permission of a file or directory

  • Syntax

chmod {{who}} {{operation}} {{perm}} {{file}}

{{who}} is any combination of u (user), g (group), o (owner) or a (all)

@igorshubovych
igorshubovych / gist:8fb6a9add2a41cf7a197
Last active August 29, 2015 14:01
Fixes of rwprecise64
@igorshubovych
igorshubovych / gist:3524989
Created August 30, 2012 09:45
Rules for logging
// #1
// When you use Zend_Log class to log errors,
// please NEVER do this:
catch (Exception $e) {
Log::err($e->getMessage()); // WRONG!
// Lost stacktrace here
}
// Instead do:
catch (Exception $e) {