View connect.funet.fi-example.html
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
<html xmlns:xxt="http://www.jclark.com/xt/java/com.macromedia.airspeed.servlet.ui.XSLTExtensions"> | |
<head> | |
<title>THA_250117</title> | |
<script type="text/javascript" src="/common/scripts/s_code.js?ver=9.5.3"></script><script type="text/javascript" src="/common/scripts/OmnitureTracker.js?ver=9.5.3"></script><script type="text/javascript" src="/common/scripts/modalDialog/jquery-1.7.1.js?ver=9.5.3" charset="utf-8"></script><script type="text/javascript"> | |
var useUASniffing = false; | |
function setUASniffing(value) { | |
useUASniffing = value; | |
} | |
</script><script> | |
var isReview = 'false'; |
View pidgin-telegram-crash
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
$ pidgin -d | |
(10:10:41) prefs: Reading /home/federico/.purple/prefs.xml | |
(10:10:41) prefs: Finished reading /home/federico/.purple/prefs.xml | |
(10:10:41) prefs: purple_prefs_get_path: Unknown pref /pidgin/browsers/command | |
(10:10:41) dbus: okkk | |
(10:10:41) plugins: probing /usr/lib64/pidgin/timestamp_format.so | |
(10:10:41) plugins: probing /usr/lib64/pidgin/spellchk.so | |
(10:10:41) plugins: probing /usr/lib64/pidgin/sendbutton.so | |
(10:10:41) plugins: probing /usr/lib64/pidgin/vvconfig.so | |
(10:10:41) plugins: probing /usr/lib64/pidgin/timestamp.so |
View test.log
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
https-everywhere]$ ./test.sh | |
+++ readlink -f ./test.sh | |
++ dirname /home/federico/mw/https-everywhere/test.sh | |
+ cd /home/federico/mw/https-everywhere | |
+ TEST_ADDON_PATH=./https-everywhere-tests/ | |
++ mktemp -d | |
+ PROFILE_DIRECTORY=/tmp/tmp.tL3sul3IMu | |
+ trap 'rm -r "$PROFILE_DIRECTORY"' EXIT | |
+ HTTPSE_INSTALL_DIRECTORY=/tmp/tmp.tL3sul3IMu/extensions/https-everywhere@eff.org | |
+ ./makexpi.sh |
View HTTPS-Everywhere-broken-domains.txt
This file has been truncated, but you can view the full file.
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
01.org | |
curl: (28) SSL connection timeout | |
0nl1ne.at | |
curl: (51) SSL peer certificate or SSH remote key was not OK | |
0x539.de | |
curl: (6) Couldn't resolve host '0x539.de' | |
0xbadc0de.be | |
curl: (51) SSL peer certificate or SSH remote key was not OK | |
100-gute-gruende.de | |
curl: (22) The requested URL returned error: 405 |
View 39bei_digitool4783627.pnx.xml
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
<?xml version="1.0" encoding="UTF-8"?> | |
<record> | |
<control> | |
<sourcerecordid>4783627</sourcerecordid> | |
<sourceid>39bei_digitool</sourceid> | |
<recordid>39bei_digitool4783627</recordid> | |
<sourceformat>Digital Entity</sourceformat> | |
<sourcesystem>Digitool</sourcesystem> | |
</control> | |
<display> |
View commonscheck-2013-04.txt
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
######################################################################### | |
# Welcome to CommonsChecker 0.1 by WikiTeam (GPL v3) # | |
# More info at: http://code.google.com/p/wikiteam/ # | |
######################################################################### | |
######################################################################### | |
# Copyright (C) 2011-2012 WikiTeam # | |
# This program is free software: you can redistribute it and/or modify # | |
# it under the terms of the GNU General Public License as published by # | |
# the Free Software Foundation, either version 3 of the License, or # |
View wiki-scraper.rb
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 ruby | |
# encoding: utf-8 | |
################################################################################## | |
# Google search scraper to list all results likely to be MediaWiki installations # | |
# # | |
# CC-0, ArchiveTeam/WikiTeam, 2013 # | |
# # | |
################################################################################## | |
require 'rubygems' |
View commons-interlace-exiftool.sh
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 | |
# commons-interlace-exiftool.sh: silly script to find interlaced images on Commons | |
cat jpgcommons.txt | # Take list of filenames, one per line | |
while read line # As long as there is another line to read ... | |
do | |
URL=$(curl "http://commons.wikimedia.org/w/api.php?action=query&prop=imageinfo&iiprop=url&titles=File:$line&format=xml" | grep -oE 'http://upload.wikimedia.org[^"]+'); | |
echo "URL is $URL" | |
IDEN=$(curl $URL | exiftool -fast2 - | grep -i "Encoding Process") | |
# "Baseline DCT" only safe JPEG SOF tag, many less common ones are uncertain |
View commons-interlace.sh
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 | |
# commons-interlace.sh: silly script to find interlaced images on Commons | |
cat jpgcommons.txt | # Take list of filenames, one per line | |
while read line # As long as there is another line to read ... | |
do | |
URL=$(curl "http://commons.wikimedia.org/w/api.php?action=query&prop=imageinfo&iiprop=url&titles=File:$line&format=xml" | grep -oE 'http://upload.wikimedia.org[^"]+'); | |
echo "URL is $URL" | |
IDEN=$(curl $URL | identify -verbose -) | |
if grep -qi "Interlace: None" <<< $IDEN; then |
View gist:2011077
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
ar.wikipedia: Of the last 2,639 actions, 0 (0.00%) have reached the condition limit of 1,000, and 153 (5.80%) have matched one of the filters currently enabled. | |
cs.wikipedia: Of the last 1,644 actions, 0 (0.00%) have reached the condition limit of 1,000, and 11 (0.67%) have matched one of the filters currently enabled. | |
da.wikipedia: Of the last 1,593 actions, 0 (0.00%) have reached the condition limit of 1,000, and 12 (0.75%) have matched one of the filters currently enabled. | |
de.wikipedia: Of the last 8,063 actions, 0 (0.00%) have reached the condition limit of 1,000, and 20 (0.25%) have matched one of the filters currently enabled. | |
el.wikipedia: Of the last 1,665 actions, 0 (0.00%) have reached the condition limit of 1,000, and 37 (2.22%) have matched one of the filters currently enabled. | |
en.wikipedia: Of the last 2,133 actions, 11 (0.52%) have reached the condition limit of 1,000, and 35 (1.64%) have matched one of the filters currently enabled.<table class="plainlinks ombox ombox-notice" style="text-align: |
NewerOlder