This file contains hidden or 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
#Filter by StartingWord | |
#Cut 8 first letters | |
for i in StartingWord*; mv $i $(echo $i|cut -c 8-) |
This file contains hidden or 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
// Jei selektoriuje yra "zodis" selektorius bus pakeistas į *** | |
function keitimoFj() { | |
if ($(this).text().indexOf('zodis') != - 1) { | |
return '<p><b> ***b></p>'; | |
} | |
} | |
$("selektorius").replaceWith(keitimoFj) |
This file contains hidden or 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 | |
# NAME: WebmPart 0.1 | |
# DESCRIPTIOM: Converts video files to .webm | |
# LICENSE GNU GPL v3 (http://www.gnu.org/licenses/gpl.html) | |
# DEPENDENCIES: libav-tools, notify-osd | |
time=$(zenity --forms \ | |
--title="Webm convert" --text="EXAMPLE: start-time-> 00:00:00 Duraction-> 5" \ | |
--add-entry="Start-time" \ |
This file contains hidden or 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
*** Targets *** | |
probe = FPing | |
menu = Top | |
title = Network Latency Grapher | |
remark = Welcome to this SmokePing website. | |
# Ping Tests | |
+ PING | |
probe = FPing |
This file contains hidden or 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 | |
#: Title: seach | |
#: Date: 2015-09-29 | |
#: Author: "sup" <[email protected]> | |
#: Version: 1.1 | |
#: Options: None | |
#Tikrina ar ivestas bent vienas argumentas | |
DATA="/bin/kontaktai.txt" |
This file contains hidden or 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
#Test for less than 1 parameter | |
if (( $# < 1));then | |
echo "Usage $0 <name>" | |
exit 1 | |
fi | |
echo "Hello $1" | |
exit 0 | |
###################################################### |
This file contains hidden or 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 | |
#function to convert youtube clip to .webm | |
youtubewebm(){ | |
avconv -i $1 -acodec libvorbis -aq 5 -ac 2 -qmax 25 -threads 2 $2.webm | |
} |
This file contains hidden or 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
function onOpen() { | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
ss.addMenu("STATUSAS", [ | |
{name : "DATA", functionName : "statusasAtlikta"}, | |
]); | |
} | |
function statusasAtlikta() { |
This file contains hidden or 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
@ECHO OFF | |
REM.-- Prepare the Command Processor | |
SETLOCAL ENABLEEXTENSIONS | |
SETLOCAL ENABLEDELAYEDEXPANSION | |
set psexec="\\192.168.22.252\tmp\psexec.exe" | |
set nircmd="\\192.168.22.252\tmp\nircmd.exe" | |
set user=administrator | |
set pass=password | |
set savedir="\\192.168.22.252\tmp\test.png" |
This file contains hidden or 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 | |
sort /home/user/Documents/randomq/quotes | uniq -u| shuf -n 1 |
OlderNewer