Content :
This worked on 14/May/23. The instructions will probably require updating in the future.
llama is a text prediction model similar to GPT-2, and the version of GPT-3 that has not been fine tuned yet. It is also possible to run fine tuned versions (like alpaca or vicuna with this. I think. Those versions are more focused on answering questions)
Note: I have been told that this does not support multiple GPUs. It can only use a single GPU.
It is possible to run LLama 13B with a 6GB graphics card now! (e.g. a RTX 2060). Thanks to the amazing work involved in llama.cpp. The latest change is CUDA/cuBLAS which allows you pick an arbitrary number of the transformer layers to be run on the GPU. This is perfect for low VRAM.
- Clone llama.cpp from git, I am on commit
08737ef720f0510c7ec2aa84d7f70c691073c35d.
| // ==UserScript== | |
| // @name Keygenmusic.tk Improvements | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.3.1 | |
| // @downloadURL https://gist.githubusercontent.com/Lordmau5/f9fbf60651c765fc61a50a27ebcf7d4a/raw/userscript.js | |
| // @updateURL https://gist.githubusercontent.com/Lordmau5/f9fbf60651c765fc61a50a27ebcf7d4a/raw/userscript.js | |
| // @description Various extra functionality and fixes for the amazing site Keygenmusic.tk (Volume slider, Seekbar, Loop toggle, List fixes) | |
| // @author Lordmau5 | |
| // @match https://keygenmusic.tk/ | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=keygenmusic.tk |
If you're encountering ping github.com failing inside WSL with a Temporary failure in name resolution, you're not alone — this has been a long-standing issue, especially when using VPNs or corporate networks.
This issue is now fixed robustly with DNS tunneling, which preserves dynamic DNS behavior and avoids limitations like WSL’s former hard cap of 3 DNS servers in /etc/resolv.conf.
DNS tunneling is enabled by default in WSL version 2.2.1 and later, meaning that if you're still seeing DNS resolution issues, the first and most effective fix is simply to upgrade WSL. Upgrading WSL updates the WSL platform itself, but does not affect your installed Linux distributions, apps, or files.
To upgrade WSL, follow these steps,
Past August 2024, Authy stopped supported the desktop version of their apps:
See Authy is shutting down its desktop app | The 2FA app Authy will only be available on Android and iOS starting in August for details.
And indeed, after a while, Authy changed something in their backend which now prevents the old desktop app from logging in. If you are already logged in, then you are in luck, and you can follow the instructions below to export your tokens.
If you are not logged in anymore, but can find a backup of the necessary files, then restore those files, and re-install Authy 2.2.3 following the instructions below, and it should work as expected.
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # | |
| # This is how I used it: | |
| # $ cat ~/.bash_history | python bash-to-zsh-hist.py >> ~/.zsh_history | |
| import sys | |
| import time |
| /* MIT License | |
| * | |
| * Copyright (c) 2017 Roland Singer [[email protected]] | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights | |
| * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| * copies of the Software, and to permit persons to whom the Software is | |
| * furnished to do so, subject to the following conditions: |
| ; AutoHotkey Media Keys | |
| ^!Space::Send {Media_Play_Pause} | |
| ^!Left::Send {Media_Prev} | |
| ^!Right::Send {Media_Next} | |
| ^!NumpadMult::Send {Volume_Mute} | |
| ^!NumpadAdd::Send {Volume_Up} | |
| ^!NumpadSub::Send {Volume_Down} |
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "io" | |
| "log" | |
| "os" | |
| "time" |
| #!/usr/bin/bash | |
| nano sub-extractor.sh | |
| ###paste the following | |
| filename="$1" | |
| if [[ $filename ]] | |
| then | |
| m=$(mkvinfo $filename|grep 'No EBML head found'); | |
| if [[ $m ]]; | |
| then echo "This is not a valid mkv file"; | |
| else |