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
| #!/usr/bin/env bash | |
| notify-send --icon=info "$(xsel -o)" "$(wget -U "Mozilla/5.0" -qO - "http://translate.googleapis.com/translate_a/single?client=gtx&sl=auto&tl=pl&dt=t&q=$(xsel -o | sed "s/[\"'<>]//g")" | sed "s/,,,0]],,.*//g" | awk -F'"' '{print $2, $6}')" |
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
| document.body.addEventListener('keydown', (event) => { | |
| if(event.key === "Enter" && (event.metaKey || event.ctrlKey)) { | |
| event.target.form?.submit(); | |
| } | |
| }); |
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
| <a href="http://allegro.pl/my_page.php?uid=0000000000000">O firmie</a> | |
| <a href="http://allegro.pl/show_user.php?uid=0000000000000">Komentarze</a> | |
| <a href="http://allegro.pl/listing/user/listing.php?us_id=0000000000000">Aukcje</a> | |
| <a href="http://allegro.pl/myaccount/favourites/favourites_sellers.php/addNew/?userId=0000000000000">Dodaj do ulubionych</a> | |
| <a href="http://allegro.pl/email_to_user.php?uid=0000000000000">Kontakt</a> |
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 | |
| if [ -e $1 ] | |
| then | |
| echo "Podaj rozmiar jako pierwszy argument" | |
| else | |
| if [ -e $2 ] | |
| then |
NewerOlder