Skip to content

Instantly share code, notes, and snippets.

@jpluimers
jpluimers / ideas.md
Last active November 10, 2019 00:34
Ideas/inspiration for writing a proper WayBack archive.org bookmarklet

http://www.bookmarklets.com/tools/new.html

  • go-wayback:

    javascript:location.href='http://web.archive.org/web/*/'+location.href.replace(/res:[^#]*#/,'');void(null)
    
  • wayback-undo:

    javascript:location.href=location.href.replace(/http:\/\/web.archive.org\/web\/[^/]*\//,'http://');void(null)
    
@nullrndtx
nullrndtx / dirc
Created February 10, 2016 16:18
DIRC - DracOS Irc Client
#!/bin/bash
# dirc - DracOS IRc Client
# Copyright (c) 2016 - randalltux
###################################
##### HOW TO #####
##### -h: hostname #####
##### -p: port #####
##### -n: nick #####
##### -k: password #####
##### -c: config #####
@toobeetootee
toobeetootee / 2b2t_Media.md
Last active June 24, 2024 15:10
Curated list of 2b2t media from across the web

Header Hausemaster Approved

⌚ Updated 4 July 2016
💀 I collect 2b2t resources. I am not responsible for the content/language of external links.
2b2t Websites
@TheFrostlixen
TheFrostlixen / Bookmarklets.MD
Last active October 1, 2024 04:46
Bookmarklets - JavaScript apps for your web browser

Bookmarklets

A bookmarklet is a javascript app that you save in your web browser as a bookmark. You simply click it and it will perform a task on that webpage.

My Bookmarklets

  • CleanReddit.js Removes the header and side panel from Reddit pages. Makes it look a little more clean (and less like you're not working at your desk).
  • QRthis.js Use Google's API to generate a QR code for the website you're on.
@edouard-lopez
edouard-lopez / slides.md
Last active January 15, 2018 22:38
IPFS: InterPlanetary File System presentation http://slides.com/edouard-lopez/ipfs
@apperceive
apperceive / ia-urls.md
Last active November 12, 2015 15:56
My archive.org reading list
@lbrenman
lbrenman / README.md
Last active March 15, 2017 16:28
Arrow Web Scraping Example using x-ray

Arrow Web Scraping

Web scraping is technique of extracting information from websites. For mobile applications, it should be considered a last resort. Instead try to get access to the inderlying data via a documented REST web service API.

However, you may find that an REST or SOAP API is not available and you may need to web scrape in order to get the web site data into your mobile application.

If you are going web scrape, then don't do it in the mobile app. Instead, use a microservices platform, like Arrow. By implementing the screen scraping in an Arrow middle tier server, then when the web site changes, you can change your scraping algorithm without needing to publish a new mobile application.

This blog post will show a simple example of using Arrow Builder to build an API that utilizes web scraping.

@yoshuawuyts
yoshuawuyts / overview.md
Last active November 30, 2015 16:13
events.toml

Project planning, notes, time schemas and more need a consolidated data format. This is that format.

possible applications

  • bookmarking
  • note taking
  • project planning
  • calendars

features

  • bare minimum required properties (name only)
@nepsilon
nepsilon / 3-handy-wget-tips.md
Last active February 19, 2017 12:41
3 handy wget tips — First published in fullweb.io issue #14

3 handy Wget tips

GNU’s wget is a command line tool to download files over HTTP(S) and FTP. While curl is great to send custom requests, it lacks a recursive mode to download all the resources linked to a page or domain. This is where wget is much useful.

1. Copy a whole site locally, including images, css, js and converting links:

$ wget -p -m -k fullweb.io