A simple JavaScript script that adds a floating "Archive" button to specific news websites, allowing quick archiving via archive.md.


A simple JavaScript script that adds a floating "Archive" button to specific news websites, allowing quick archiving via archive.md.
This script attaches a stopwatch into the toolbar of Leetcode's problem page.
The feature is simple:
Use this script with any browser extension allowing attaching JS to the page. (I use User JavaScript and CSS)
5-minute before an online meeting is the hard time because we need to separate our mind both for checking the clock and keeping working on what we are doing. This does not guaratee we won't miss 1, or 2, or sometimes 10 minutes.
This simple script is to help us early register online meeting, then it will open the link on time.
Let's assume that we set alias to the file as zoomin
alias zoomin="sh /path/to/zoomin.sh"
This gist intends to capture the tools suggested in this thread : https://twitter.com/davidfowl/status/1252684476125044736
Captured by @maxslug
import android.content.pm.PackageManager; | |
import android.os.Build; | |
import android.support.annotation.NonNull; | |
import android.support.v4.app.ActivityCompat; | |
import android.support.v4.content.ContextCompat; | |
import android.support.v7.app.AppCompatActivity; | |
import android.util.SparseArray; | |
import java.util.ArrayList; |
/* | |
* Copyright (C) 2015 Tuan Chau (tuanchauict) | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
import java.util.Arrays; | |
import java.util.List; | |
public class IpRange { | |
//region BlackListIpRanges | |
public static final List<IpRange> blacklistIpRanges = Arrays.asList( | |
new IpRange("104.132.0.0 - 104.135.255.255"), | |
new IpRange("104.154.0.0 - 104.155.255.255"), | |
new IpRange("104.196.0.0 - 104.199.255.255"), |
package sudoku | |
/** | |
* Algorithm from http://norvig.com/sudoku.html | |
*/ | |
import ( | |
"fmt" | |
"strings" | |
) |