As your keybase user run:
$ keybase bot token create > /tmp/bot-token
You'll get back a base64 token, like: 6C37sjCBgMNf06Z6oTgixIxHJpja8G-Qp
. This is your bot token that allows you to sign up bots.
packages.objectbox-c = with pkgs; let | |
pname = "objectbox-c"; | |
version = "0.18.1"; | |
src = fetchurl { | |
url = "https://github.com/objectbox/${pname}/releases/download/v${version}/objectbox-linux-x64.tar.gz"; | |
hash = "sha256-oYz8ZBNdoTG3NDOuiu0JbmiAmSg4jQf9DQQIMZaNfNQ="; | |
}; | |
in | |
stdenv.mkDerivation rec { | |
inherit pname version src; |
Short description on how to build LuneOS with Halium 7.1/9.0: | |
1. Build Halium as per guide on: | |
http://docs.halium.org/en/latest/ | |
Basically the parts "Get Halium Source": https://docs.halium.org/en/latest/porting/get-sources.html | |
And https://docs.halium.org/en/latest/porting/build-sources.html#initialize | |
In general LuneOS only needs the system.img (and vendor.img for Halium 9.0 where available) created and archived, so the following commands will suffice: |
Intel i7-8750H nVidia GTX 1050 Ti
Summary of my findings (Please comment if you can get further than me) :
edit: 06/2019 guys in the comments have found workarounds and new solutions !
Most importantly : Lenovo refuses to provide any kind of support for their product on Linux, even though the computer is sold without an OS
// ==UserScript== | |
// @name Quizlet Match Hack | |
// @namespace Gabe B. Talafous | |
// @version 1.6 | |
// @description The time will freeze at 0.5 and the answers will be the same color | |
// @author You | |
// @match https://quizlet.com/*/* | |
// @grant none | |
// @license MIT | |
// ==/UserScript== |
// ==UserScript== | |
// @name moomoo auto aim / aimbot and auto heal, working after patch | |
// @namespace - | |
// @version 1.2 | |
// @description aims at nearest player and heals when you're hurt (Toggle key: I) | |
// @author H4ck3rsTeam | |
// @match *://moomoo.io/* | |
// @grant none | |
// ==/UserScript== |
Gets the website
wget -nH --reject-regex 'Especial|Special|Ayuda|Help|action|printable|Archivo:' --recursive --page-requisites --html-extension --convert-links --restrict-file-names=windows --domains domain.com --no-parent http://domain.com/wiki
Remove external links regexp
Find: (<a[^>]*href="http)[^"]*("[^>]*>)([^"]*)(</a>)
Replace: $3
<!doctype html> | |
<title>Site Maintenance</title> | |
<style> | |
body { text-align: center; padding: 150px; } | |
h1 { font-size: 50px; } | |
body { font: 20px Helvetica, sans-serif; color: #333; } | |
article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
a { color: #dc8100; text-decoration: none; } | |
a:hover { color: #333; text-decoration: none; } | |
</style> |