Skip to content

Instantly share code, notes, and snippets.

View seniorpreacher's full-sized avatar
🚧

Daniel Salamon seniorpreacher

🚧
  • Budapest, Hungary
View GitHub Profile
@seniorpreacher
seniorpreacher / CCNA-solver.js
Created November 21, 2012 10:36
This little code just answers every questions you have in a Cisco CCNA test... (Please don't use it, until your final desperation!)
/*
* Hi, this is a little code, that you can run on a Cisco CCNA test and it will pick the right answers for you.
* Please, learn the lecture!
*
* I can't garantee anything! If you use this and you fail... Well, it's your falt.
* Cisco used to change a bit in the texts of the questions, so I can't garantee that this code will even work after some weeks, but I hope ;)
*
*
*
* To run it, just simply:
@seniorpreacher
seniorpreacher / grid.shorthands.scss
Created June 1, 2013 17:47
This gist contains some shorthands for Foundation 4's grid system. Feel free to expand it ;)
//large
.l1 {@extend .large-1;}
.l2 {@extend .large-2;}
.l3 {@extend .large-3;}
.l4 {@extend .large-4;}
.l5 {@extend .large-5;}
.l6 {@extend .large-6;}
.l7 {@extend .large-7;}
.l8 {@extend .large-8;}
.l9 {@extend .large-9;}
@seniorpreacher
seniorpreacher / updateIndentationFrom2SpaceToTab.sublime-macro
Created October 26, 2013 17:18
This macro updates the file from 2 SPACE indentation to TAB indentation.
[
{
"args": {
"setting": "tab_size",
"value": 2
},
"command": "set_setting"
},
{
"args":
@seniorpreacher
seniorpreacher / CCNA-solverV5.js
Last active December 28, 2015 16:49
This is a modified version of my CCNA solver from last year. Since Cisco changed the whole test structure in the new V5.0, I had to change in the methodology of this script. Now it writes the correct answers after the question. You have to specify a chapter number in the last line of the code! There are 2 parameters for the main function: chapte…
/*
* Hi, this is a little code, that you can run on a Cisco CCNA test and it will answer every question for you.
* Please, learn the lecture!
*
* I can't garantee anything! If you use this and you fail... Well, it's your falt.
* Cisco used to change a bit in the texts of the questions, so I can't garantee that this code will even work after some weeks, but I hope ;)
*
*
*
* To run it, just simply:
var x,u=((x)+[]),f=![]+[],c=String.fromCharCode;u[2]+f[1]+u[1]+u[5]+f[4]+f[2]+f[3]+f[1]+f[2]+f[1]+c(u[1].charCodeAt(0)-1)+c(u[1].charCodeAt(0)^1)+u[1]
@seniorpreacher
seniorpreacher / signature.html
Last active April 22, 2020 09:49
cc.tools.signature
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Codecool e-mail signature generator</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.6/sandstone/bootstrap.min.css" rel="stylesheet" integrity="sha384-QqZs0aSOGFan3GWVdP4PyCBp6icaF/4n8Q+wsmZUTiiVIqE4r4tFYcb8Osf+8y45" crossorigin="anonymous">
</head>
@seniorpreacher
seniorpreacher / fibonacci_list.py
Created April 28, 2016 09:21
Python - Fibonacci examples
number_count = 30
list = [0, 1]
for i in range(0, number_count - 2):
list.append(list[-1] + list[-2])
for j in list:
print j
@seniorpreacher
seniorpreacher / str_rename_after_episode.py
Last active October 31, 2016 18:34
A short script to find and rename .str (subtitle) files after it's movie or episode file.
import os
import re
import time
print(os.getcwd())
def get_part(filename, part):
season = re.search(r"" + part + "\d{2}", filename.lower())
if season:
season = season.start()
alias ls="ls -hal "
# Fix wifi problem on Ubuntu
alias fixwifi="sudo service network-manager restart && sudo ifconfig wlo1 up"
alias wifix="fixwifi"
# Set screen rotation to normal
alias fixscreen="xrandr -o normal"
# Stop all docker containers that are running
@seniorpreacher
seniorpreacher / ncore-rss-for-sonarr.py
Last active November 24, 2020 13:12
ncore-rss-for-sonarr
import requests
import sys
import xml.etree.ElementTree as XmlElement
from flask import Flask, Response
if len(sys.argv) == 1:
raise Exception('Provide nCore key as the first argument!')
NCORE_URL = 'https://ncore.cc/rss.php?key=' + sys.argv[1]