This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# May the fork be with your lang | |
wget -U 'Mozilla/5.0' -qO- "http://translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=ru&dt=t&q=`telnet towel.blinkenlights.nl 666 2>/dev/null|tail -2`" | awk -F'"' '{print $2}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
## Oriented for Hubzilla hub bbcode | |
## https://gist.github.com/Flashwalker/360e8615bff1b9b322e0096fe92680ab | |
## Origin: https://gist.github.com/RogerDodger/4405595 | |
## Dependencies: | |
## sudo apt-get install libtext-markdown-perl libtext-typography-perl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
=skin= | |
@name Terminum | |
@author Flashwalker | |
@homepage https://flashwalker.bitbucket.io | |
@email flashwalker[at]freeside.ru | |
@license WTFPL2 http://wtfpl2.com/ | |
=/skin= | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Responsive stepper - JS Bin</title> | |
<style id="jsbin-css"> | |
.t-body { | |
margin: 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
::Set firewall on | |
netsh advfirewall set currentprofile state on | |
::Block in connections from all | |
netsh advfirewall firewall add rule name="blockSMBforeign_TCP-139" action=block protocol=TCP dir=in localport=139 remoteip=any | |
netsh advfirewall firewall add rule name="blockSMBforeign_TCP-445" action=block protocol=TCP dir=in localport=445 remoteip=any | |
::Allow only local connections from 192.16.0.0/16 subnet | |
netsh advfirewall firewall add rule name="allowSMB_0_0_16_TCP-139" action=allow protocol=TCP dir=in localport=139 remoteip=192.168.0.0/16 | |
netsh advfirewall firewall add rule name="allowSMB_0_0_16_TCP-445" action=allow protocol=TCP dir=in localport=445 remoteip=192.168.0.0/16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: Replace all 11.2.0.9967 with yours installed version | |
netsh advfirewall firewall add rule name="WPS Office" dir=in action=block program="C:\Program Files\WPS Office\11.2.0.9967\utility\config.exe" enable=yes | |
netsh advfirewall firewall add rule name="WPS Office" dir=in action=block program="C:\Program Files\WPS Office\11.2.0.9967\office6\mui\default\resource\ksee\EqnEdit.exe" enable=yes | |
netsh advfirewall firewall add rule name="WPS Office" dir=in action=block program="C:\Program Files\WPS Office\11.2.0.9967\office6\et.exe" enable=yes | |
netsh advfirewall firewall add rule name="WPS Office" dir=in action=block program="C:\Program Files\WPS Office\11.2.0.9967\office6\kcrashdumper.exe" enable=yes | |
netsh advfirewall firewall add rule name="WPS Office" dir=in action=block program="C:\Program Files\WPS Office\11.2.0.9967\office6\kcrashdumper64.exe" enable=yes | |
netsh advfirewall firewall add rule name="WPS Office" dir=in action=block program="C:\Program Files\WPS Office\11.2.0.9967\office6\ksolaunch.exe" enable=yes | |
net |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Listen Lo-Fi redio from YouTube Music in Chromium fullscreen popup window on Linux | |
-------------------------------------------------------------------------------------- | |
Run install.sh in terminal to install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Wrap image with svg and output the svg file | |
#### Options | |
svgwidth='' | |
svgheight='' | |
imgwidth='' | |
imgheight='' | |
############ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Send selected content to Obsidian as markdown | |
// @version 0.6.8 | |
// @match *://*/* | |
// @author Flashwalker | |
// @description Gareth Stretton https://medium.com/@gareth.stretton/obsidian-create-your-own-web-clipper-add83c7662d0 + StackOverflow https://stackoverflow.com/questions/4176923/html-of-selected-text/4177234#4177234 | |
// @updateURL https://gist.github.com/Flashwalker/40f23e01942cc72a47df61bb86821714/raw/obsidian-webclip-as-markdown.user.js | |
// @downloadURL https://gist.github.com/Flashwalker/40f23e01942cc72a47df61bb86821714/raw/obsidian-webclip-as-markdown.user.js | |
// @homepage https://gist.github.com/Flashwalker/40f23e01942cc72a47df61bb86821714 | |
// @require https://unpkg.com/turndown/dist/turndown.js |
OlderNewer