for f in *.zip; do zipgrep textToQuery $f && echo $f; done
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
<?xml version="1.0" encoding="UTF-8"?> | |
<tt xmlns="http://www.w3.org/ns/ttml"> | |
<head> | |
<metadata xmlns:ttm="http://www.w3.org/ns/ttml#metadata"> | |
<ttm:title>Sample</ttm:title> | |
</metadata> | |
<styling xmlns:tts="http://www.w3.org/ns/ttml#styling"> | |
<style xml:id="s1" | |
tts:color="white" | |
tts:fontFamily="proportionalSansSerif" |
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
WEBVTT | |
00:01.000 --> 00:04.000 | |
- Never drink liquid nitrogen. | |
00:05.000 --> 00:09.000 | |
- It will perforate your stomach. | |
- You could die. |
aif aiff au avi bin bmp bz2 cab carb cct
application/javascript application/json application/vnd.ms-fontobject application/x-font-opentype application/x-font-truetype application/x-font-ttf application/x-javascript application/xml font/eot font/opentype
Find out everything about a particular Linux process...
/proc/<pid>/<type>
- eg. sudo cat
/proc/1234/environ
http://www.tldp.org/LDP/Linux-Filesystem-Hierarchy/html/proc.html
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
package main | |
import ( | |
"crypto/rand" | |
"crypto/rsa" | |
"fmt" | |
"io/ioutil" | |
"golang.org/x/crypto/pkcs12" | |
) |
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
User-agent: * | |
Disallow: |
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.addEventListener("visibilitychange", function() { | |
console.log(document.hidden); | |
}); | |
window.addEventListener("focus", function() { | |
console.log("focus"); | |
}); | |
window.addEventListener("blur", function() { | |
console.log("blur"); | |
}); |
NewerOlder