Skip to content

Instantly share code, notes, and snippets.

View geritwo's full-sized avatar
:octocat:
i don't update this

Gergő Vámosi geritwo

:octocat:
i don't update this
View GitHub Profile
@geritwo
geritwo / interview.py
Created November 20, 2022 09:07
My son's first Python program - work of 2 hours to troll u :)
import time
messages_printer = ["Project started sucessfully..."]
print(messages_printer)
name = input("What is you're username? ")
time.sleep(1)
print(name)
time.sleep(0.5)
print("Okay great...")
@geritwo
geritwo / subtitles-renamer.sh
Created October 22, 2017 18:04 — forked from colinux/subtitles-renamer.sh
Rename subtitles files according to tv shows names found in a directory
#!/bin/bash
# Renames subtitles files according to tv shows names found in a directory
# Acceped syntaxes for season/episode are: 304, s3e04, s03e04, 3x04 (case insensitive)
#
# Usage:
# Put this gist somewhere in your $PATH, like /usr/local/bin/subtitles-renamer
# Chmod +x it
# cd ~/YourHolidaysTvShowsWithSubtitles
# subtitles-renamer
@geritwo
geritwo / subtitles-renamer.sh
Created October 22, 2017 18:04 — forked from colinux/subtitles-renamer.sh
Rename subtitles files according to tv shows names found in a directory
#!/bin/bash
# Renames subtitles files according to tv shows names found in a directory
# Acceped syntaxes for season/episode are: 304, s3e04, s03e04, 3x04 (case insensitive)
#
# Usage:
# Put this gist somewhere in your $PATH, like /usr/local/bin/subtitles-renamer
# Chmod +x it
# cd ~/YourHolidaysTvShowsWithSubtitles
# subtitles-renamer
@geritwo
geritwo / keybase.md
Created April 18, 2017 19:40
Keybase verification

Keybase proof

I hereby claim:

  • I am geritwo on github.
  • I am geritwo (https://keybase.io/geritwo) on keybase.
  • I have a public key ASAPTmIgK6JxYO787rWGLewkvwRoZYhM8NMbEYk1vhR7cQo

To claim this, I am signing this object:

@geritwo
geritwo / app.js
Created February 2, 2017 13:49 — forked from thofnar/app.js
// General Requires
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
// Database Requires
var mongo = require('mongodb');
var monk = require('monk');
var dbConfig = require('./db.js');