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
From: Derek Moore <derek.p.moore@...> | |
To: [email protected] | |
Subject: Re: .info sites | |
Also, I can't help but notice that http://natsios-young.com/ is down | |
with a rather ominous message & even has embedded | |
click-tracking/redirect code to 800paydayloans.com! | |
Please advise, |
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
const Lang = imports.lang; | |
const Gtk = imports.gi.Gtk; | |
const GMenu = imports.gi.GMenu; | |
const ExtensionUtils = imports.misc.extensionUtils; | |
const Me = ExtensionUtils.getCurrentExtension(); | |
var bldr; | |
var pane; | |
var tree; |
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
import re | |
import bs4 | |
import urllib2 | |
root = "http://www.ted.com" | |
req = urllib2.Request(root + "/talks/quick-list") | |
html = urllib2.urlopen(req).read() | |
while html: | |
talks = bs4.BeautifulSoup(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
StreamConfiguration streamConfig = StreamConfiguration.builder() | |
.scalingPolicy(ScalingPolicy.fixed(1)) | |
.build(); |