View ncore_thumbnail_preview.js
const setupStyle = () => { | |
document.querySelector('#main_all').style.margin = 'inherit'; | |
document.querySelector('#main_all').style.width = '100%'; | |
document.querySelector('#main_all .lista_all').style.margin = '0 10px 0 auto'; | |
const style = document.createElement("style"); | |
document.head.appendChild(style); | |
const sheet = style.sheet; | |
sheet.insertRule('.cover-img {position: relative; width: 109px; height: 160px; box-shadow: #00000050 0 0 15px; transition: all .8s ease}'); |
View ncore-rss-for-sonarr.py
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] |
View .bash_aliases
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 |
View str_rename_after_episode.py
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() |
View fibonacci_list.py
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 |
View signature.html
<!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> |
View myname.js
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] |
View CCNA-solverV5.js
/* | |
* 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: |
View updateIndentationFrom2SpaceToTab.sublime-macro
[ | |
{ | |
"args": { | |
"setting": "tab_size", | |
"value": 2 | |
}, | |
"command": "set_setting" | |
}, | |
{ | |
"args": |
View grid.shorthands.scss
//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;} |
NewerOlder