Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View stve's full-sized avatar

Steve Agalloco stve

View GitHub Profile
@stve
stve / README.md
Created May 10, 2020 03:58 — forked from astamicu/Remove videos from Youtube Watch Later playlist.md
Script to remove all videos from Youtube Watch Later playlist

UPDATE 17.10.2019

Only works on old youtube skin.

//added "&disable_polymer=true" after playlist link

Also, saw this now, there is a "remove watched" button.

  1. Open your watch later playlist on youtube.
  2. Open the development console for your browser ( Ctrl+Shift+J for chrome, Ctrl+Shift+K for firefox )
› traceroute johnnunemaker.com
traceroute to johnnunemaker.com (206.51.242.1), 64 hops max, 52 byte packets
1 10.100.1.1 (10.100.1.1) 28.033 ms 28.327 ms 42.747 ms
2 207-67-35-121.static.twtelecom.net (207.67.35.121) 22.383 ms 26.416 ms 52.875 ms
3 * * *
4 * * *
5 ntt-level3-20g.atlanta4.level3.net (4.68.110.218) 31.806 ms 35.000 ms 32.365 ms
6 ae-2.r03.atlnga05.us.bb.gin.ntt.net (129.250.4.221) 37.657 ms 36.317 ms 39.668 ms
7 ae-5.r20.atlnga05.us.bb.gin.ntt.net (129.250.5.213) 34.823 ms
ae-4.r20.atlnga05.us.bb.gin.ntt.net (129.250.5.209) 39.690 ms 66.231 ms

Keybase proof

I hereby claim:

  • I am stve on github.
  • I am stve (https://keybase.io/stve) on keybase.
  • I have a public key ASBPGsXbfB78K50x3Yjhdck7fWIW6kWqGbQsMNb0w4VVRgo

To claim this, I am signing this object:

! java.lang.NoSuchMethodError: com.fasterxml.jackson.jaxrs.cfg.EndpointConfigBase.<init>(Lcom/fasterxml/jackson/databind/cfg/MapperConfig;)V
! at com.fasterxml.jackson.jaxrs.json.JsonEndpointConfig.<init>(JsonEndpointConfig.java:30) ~[development-be-acctrest.jar:na]
! at com.fasterxml.jackson.jaxrs.json.JsonEndpointConfig.forWriting(JsonEndpointConfig.java:45) ~[development-be-acctrest.jar:na]
! at com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider._configForWriting(JacksonJsonProvider.java:223) ~[development-be-acctrest.jar:na]
! at com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider._configForWriting(JacksonJsonProvider.java:45) ~[development-be-acctrest.jar:na]
! at com.fasterxml.jackson.jaxrs.base.ProviderBase._configForWriting(ProviderBase.java:480) ~[development-be-acctrest.jar:na]
! at com.fasterxml.jackson.jaxrs.base.ProviderBase.writeTo(ProviderBase.java:588) ~[development-be-acctrest.jar:na]
! at org.glassfish.jersey.message.internal.WriterInterceptorExecutor$TerminalWriterInterceptor.invokeWrite
{
"time_zone": {
"name": "Eastern Time (US & Canada)",
"utc_offset": -14400,
"tzinfo_name": "America/New_York"
},
"protected": false,
"screen_name": "anno",
"always_use_https": true,
"use_cookie_personalization": true,
{
"metadata": {
"iso_language_code": "en",
"result_type": "recent"
},
"created_at": "Wed Oct 07 14:29:04 +0000 2015",
"id": 651766193477550100,
"id_str": "651766193477550080",
"text": "First #twittervideo http://t.co/knbnmENGSH",
"source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>",
#
# Recommended minimum configuration:
#
# Example rule allowing access from your local networks.
# Adapt to list your (internal) IP networks from where browsing
# should be allowed
acl localnet src 10.0.0.0/8 # RFC1918 possible internal network
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network
{
"created_at": "Wed Feb 04 06:07:23 +0000 2015",
"id": 562854913135607800,
"id_str": "562854913135607808",
"text": "RT @Miru3192: 본격 시간낭비시키는 움짤 http://t.co/tRrBKRwPWU\"",
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"truncated": false,
"in_reply_to_status_id": null,
"in_reply_to_status_id_str": null,
"in_reply_to_user_id": null,
{
"created_at": "Wed Feb 04 02:49:10 +0000 2015",
"id": 562805030382993400,
"id_str": "562805030382993408",
"text": "너무 뚝뚝끊겨서 움짤이.....큽..... 프레임이......... http://t.co/fp2oOWsB2z",
"source": "<a href=\"http://twitter.com\" rel=\"nofollow\">Twitter Web Client</a>",
"truncated": false,
"in_reply_to_status_id": null,
"in_reply_to_status_id_str": null,
"in_reply_to_user_id": null,
@stve
stve / DeleteItemsMarkAsRead
Created January 5, 2015 03:27
mark deleted items as read in Microsoft Outlook
if application "Microsoft Outlook" is running then
tell application "Microsoft Outlook"
set deletedMessages to messages of deleted items
repeat with aMessage in deletedMessages
if is read of aMessage is not true then
set aMessage's is read to true
end if
end repeat
end tell
end if