No information is ever collected by this app, personal or otherwise.
This file contains hidden or 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
rv32ui-p-srl | |
rv64ui-v-simple | |
rv64ui-v-ori | |
rv64ua-p-lrsc | |
rv64uf-p-fmin | |
rv64ui-v-srlw | |
rv32uzfh | |
rv32uf-p-fcvt_w | |
rv32si-p-ma_fetch | |
rv64mi-p-access |
This file contains hidden or 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
GNUMAKEFLAGS : | |
.SHELLFLAGS : | |
COMPILER_SUPPORTS_rv64uzfh : | |
COMPILER_SUPPORTS_rv32uf : | |
CURDIR : | |
COMPILER_SUPPORTS_rv32si : | |
COMPILER_SUPPORTS_rv64ua : | |
$$($(1)_p_tests): $(1)-p-%: | |
$$($(1)_v_tests): $(1)-v-%: | |
.PHONY: |
This file contains hidden or 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
// AppleScript to reload a Chrome tab. | |
function run(argv) { | |
if (argv.length !== 1) { | |
console.log("Please supply a (partial) URL to reload"); | |
return; | |
} | |
console.log("Trying to reload: " + argv[0]); | |
let a = Application("Google Chrome"); | |
for (let i = 0; i < a.windows.length; i++) { |
This file contains hidden or 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
/** | |
* Copyright 2016 Alex Yanchenko | |
* | |
* Extracted from DroidParts by Tim Hutt, 1/8/2016. | |
* | |
* 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 |
This page describes how to install Tomato on an Asus RT-N16 router (and possibly others) in Linux.
Note that the original Tomato is no longer developed. There are two maintained mods, as of 2016 - Toastman and Shibby.
There are loads of different version to download. The information about which to choose isn't very clear. There is some information here, here, here and here.
This file contains hidden or 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
// An SSH and SFTP server. It doesn't support 'exec' commands yet (WIP). | |
package main | |
import ( | |
"crypto/rand" | |
"crypto/rsa" | |
"encoding/binary" | |
"fmt" | |
"io" | |
"io/ioutil" |
This file contains hidden or 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
#!/usr/bin/env python | |
# Lastfm loved tracks to Google Music All Access playlist. As noted in the comments you do need the All Access subscription thing otherwise it will always find 0 songs. | |
# | |
# Written by Tim Hutt, [email protected], based on this script: | |
# | |
# https://gist.github.com/oquno/3664731 | |
# | |
# Today is the 15th of September 2013. | |
# |