I hereby claim:
- I am lee8oi on github.
- I am leeforest (https://keybase.io/leeforest) on keybase.
- I have a public key ASDAu1202M0wTBJSghLPrN0_zgrs5DLhYx-HeeREsovbJAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# This script downloads the autoupdate archive for Albion Online. Useful if you | |
# have had problems running the game after using the official installer. | |
# | |
# If the game mentions the client is out of date just run this script again | |
# to get the latest version. | |
rm albiononline*.zip manifest.xml* &> /dev/null # cleanup | |
wget http://live.albiononline.com/autoupdate/manifest.xml | |
filename=`cat manifest.xml | grep -Po '(albiononline-linux-full.*.zip)'` | |
wget http://live.albiononline.com/autoupdate/$filename |
package main | |
import ( | |
"os" | |
"os/exec" | |
) | |
func Start(args ...string) (p *os.Process, err error) { | |
if args[0], err = exec.LookPath(args[0]); err == nil { | |
var procAttr os.ProcAttr |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE language SYSTEM "language.dtd"> | |
<!-- | |
This file is part of KDE's Kate project | |
GO.XML supports syntax highlighting for the Go programming language | |
under Kate. Go is a compiled, garbage-collected, concurrent programming | |
language developed by Google Inc. |
package main | |
import ( | |
"os" | |
"os/exec" | |
) | |
func Command(args ...string) { | |
cmd := exec.Command(args[0], args[1:]...) | |
cmd.Stdin, cmd.Stdout, cmd.Stderr = os.Stdin, os.Stdout, os.Stderr |
package main | |
import ( | |
"archive/tar" | |
"compress/bzip2" | |
"io" | |
"log" | |
"net/http" | |
"os" | |
) |