Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
# List of all uploaded videos and playlists on a YouTube Channel | |
# Note that YouTube API v3 requires a key. Create a browser API key with a referer at https://console.developers.google.com. | |
# | |
# Here are the steps using "curl" that matches the Ruby code below: | |
# | |
# Get channel information. | |
# curl --referer "YOUR_REFERER" "https://www.googleapis.com/youtube/v3/channels?part=snippet,contentDetails,statistics,status&maxResults=50&forUsername=YOUR_USERNAME&key=YOUR_KEY" | |
# Find "Uploads" playlist ID at items => contentDetails => relatedPlaylists => uploads. | |
# Find Channel ID at items => id. | |
# |
require 'nokogiri' | |
require 'open-uri' | |
MARK_FILE = "mark.dat" | |
def wait_for_threads(threads) | |
print "Waiting for downloads to finish..." | |
threads.each { |t| t.join } | |
puts " ok" | |
end |
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'open-uri' | |
require 'nokogiri' | |
require 'net/http' | |
url = 'http://hewgill.com/~greg/stackoverflow/ebooks/' | |
root = uri.parse(url) |
Trochę darmowych książek z programowania i szeroko rozumianego IT:
Wszystkie znajdziesz tutaj: https://www.syncfusion.com/resources/techportal/ebooks
By ściągnąć trzeba się zalogować/założyć darmowe konto (działa rejestracja z emaila tymczasowego)
Możecie użyć do logowania danych - email: [email protected], hasło: wykop14k
A tutaj lista poszczególnych tytułów (83):
{ | |
"manifest_version": 2, | |
"name": "Syncfusion e-book links", | |
"description": "Replace DOWNLOAD buttons by convenient links", | |
"version": "1.0", | |
"content_scripts": [ { | |
"js": [ "jquery-1.11.1.min.js", "script.js" ], | |
"matches": [ "https://www.syncfusion.com/resources/techportal/ebooks" ] | |
} ] |