Skip to content

Instantly share code, notes, and snippets.

View skarabasakis's full-sized avatar

Stelios Karabasakis skarabasakis

View GitHub Profile
@skarabasakis
skarabasakis / README.md
Created January 5, 2023 10:13
Example of a gist

Hello World

@skarabasakis
skarabasakis / paxmod.css
Last active June 4, 2022 15:08
paxmod.css
#TabsToolbar #tabbrowser-tabs .tabbrowser-tab:not([pinned]) .tab-close-button {
visibility: hidden !important;
display: block !important;
opacity: 0 !important;
-moz-margin-end: -16px !important;
}
#TabsToolbar #tabbrowser-tabs .tabbrowser-tab[pinned] .tab-close-button {
visibility: hidden !important;
display: block !important;
@skarabasakis
skarabasakis / pronoms.ipynb
Created January 24, 2021 17:05
conjugaison
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@skarabasakis
skarabasakis / authors
Last active August 2, 2020 12:51
lists
AUTHOR,LANGUAGE,GENRE,BOOKS
William Shakespeare,English,Plays,42
Agatha Christie,English,Mystery,85
Barbara Cartland,English,Romance,723
Danielle Steel,English,Romance,179
Harold Robbins,English,Adventure,23
Georges Simenon,French,Mystery,570
Enid Blyton,English,Children's Literature,800
Sidney Sheldon,English,Thriller,21
J. K. Rowling,English,Children's Literature,15
@skarabasakis
skarabasakis / routes
Last active July 30, 2020 16:20
Eurail map routes
Berlin;Hamburg;1:35
Bialystok;Vilnius;7:30
Munich;Prague;6:05
Berlin;Munich;5:45
Frankfurt;Munich;3:10
Berlin;Prague;4:35
Amsterdam;Brussels;1:53
Brussels;Cologne;1:47
Amsterdam;Cologne;2:38
Amsterdam;Berlin;6:10
@skarabasakis
skarabasakis / input
Last active July 29, 2020 17:48
histogram
How would you rate your experience with our site?
excellent
good
good
excellent
poor
excellent
good
excellent
A crisis is when you can't say "Let's just forget the whole thing."
-- Ferguson
%
A professional programmer is an amateur who never quit.
%
A real person has two reasons for doing anything... a good reason and the real reason.
%
A student who changes the course of history is probably taking an exam.
%
Advertising may be described as the science of arresting the human intelligence long enough to get money from it.
# GIT WORKFLOW
# Initialize:
git init
# Check Out:
git clone username@host:/path/to/repository
@skarabasakis
skarabasakis / Learn git branching.md
Last active August 29, 2015 14:21
Git Training

Introduction

git commit - Commit under HEAD and make HEAD point to the new commit

git branch <branchname> - Point to HEAD
git branch <branchname> <commit> - Point to
If <branchname> already points somewhere, use -f to force moving the pointer

git checkout <branchname> - Attach HEAD to
When HEAD is attached to , they move together. In this case we call `` the active branch.

@skarabasakis
skarabasakis / ruby_syntax.md
Last active August 29, 2015 14:20
Ruby Syntax Basics

Ruby Syntax Basics

General

  • Line endings separate statements. Semicolons optional.
  • Line comments begin with #
  • Block comments enclosed by =begin and =end

Operators