Skip to content

Instantly share code, notes, and snippets.

View fusion809's full-sized avatar
💭
I may be slow to respond.

Brenton Horne fusion809

💭
I may be slow to respond.
View GitHub Profile
The next patch would create the file packaging/linux/restore-environment.sh,
which already exists! Skipping patch.
1 out of 1 hunk ignored
System.Net.Sockets.SocketOptionName 0x17 is not supported at IP level
System.Net.Sockets.SocketOptionName 0x17 is not supported at IP level
exception inside UnhandledException handler: (null) assembly:/tmp/.mount_OpenRAiGeQlg/usr/lib/mono/4.5/mscorlib.dll type:BadImageFormatException member:(null)
[ERROR] FATAL UNHANDLED EXCEPTION: System.BadImageFormatException: Could not resolve field token 0x0400035d, due to: Could not load type of field 'OpenRA.Network.OrderManager:AddChatLine' (21) due to: Could not load file or assembly 'System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. assembly:/tmp/.mount_OpenRAA6Tzg4/usr/lib/openra/OpenRA.Game.exe type:OrderManager member:(null)
File name: 'OpenRA.Game'
at OpenRA.Program.Main (System.String[] args) [0x0005d] in <f69fafde25414782b71cd55dd1b3d620>:0
AL lib: FreeContext: (0x2fe3950) Deleting 32 Source(s)
#!/bin/bash
CURRENT_VERSION=$(~/Downloads/waterfox/waterfox --version | cut -d ' ' -f 3)
LATEST_VERSION=$(wget -cqO- https://www.waterfox.net/ | grep linux64 | head -n 1 | cut -d '-' -f 4 | sed 's/.en//g')
if [[ ${CURRENT_VERSION} == ${LATEST_VERSION} ]]; then
printf "Waterfox is up to date at version ${CURRENT_VERSION}.\n"
else
rm -rf ~/Downloads/waterfox*
wget -cqO- https://storage-waterfox.netdna-ssl.com/releases/linux64/installer/waterfox-${LATEST_VERSION}.en-US.linux-x86_64.tar.bz2 | tar xj
fi
@fusion809
fusion809 / log
Created September 16, 2019 16:00
OpenRA engine version 9f49d94 is required.
Downloading engine...
Compiling engine...
make[1]: Entering directory '/data/GitHub/others/Romanovs-Vengeance/engine'
make[1]: Leaving directory '/data/GitHub/others/Romanovs-Vengeance/engine'
make[1]: Entering directory '/data/GitHub/others/Romanovs-Vengeance/engine'
Fetching ICSharpCode.SharpZipLib from NuGet
Fetching MaxMind.Db from NuGet
Fetching NUnit from NuGet
Fetching NUnit.Console from NuGet
This file has been truncated, but you can view the full file.
make[1]: Entering directory '/data/GitHub/others/Yuris-Revenge/engine'
make[1]: Leaving directory '/data/GitHub/others/Yuris-Revenge/engine'
make[1]: Entering directory '/data/GitHub/others/Yuris-Revenge/engine'
You are using a preview version of .NET Core. See: https://aka.ms/dotnet-core-preview
OpenRA.PostProcess -> /data/GitHub/others/Yuris-Revenge/engine/OpenRA.PostProcess.exe
OpenRA.Game -> /data/GitHub/others/Yuris-Revenge/engine/OpenRA.Game.exe
OpenRA.Mods.Common -> /data/GitHub/others/Yuris-Revenge/engine/mods/common/OpenRA.Mods.Common.dll
OpenRA.Mods.Cnc -> /data/GitHub/others/Yuris-Revenge/engine/mods/common/OpenRA.Mods.Cnc.dll
OpenRA.Utility -> /data/GitHub/others/Yuris-Revenge/engine/OpenRA.Utility.exe
OpenRA.Server -> /data/GitHub/others/Yuris-Revenge/engine/OpenRA.Server.exe
:: Checking for conflicts...
:: Checking for inner conflicts...
[Aur: 1] openra-d2-git-166.git.0a74333-1
1 openra-d2-git (Installed) (Build Files Exist)
==> Packages to cleanBuild?
==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4)
==>
:: PKGBUILD up to date, Skipping (1/1): openra-d2-git
1 openra-d2-git (Installed) (Build Files Exist)
:: Synchronizing package databases...
core is up to date
extra is up to date
community is up to date
multilib is up to date
:: Starting full system upgrade...
there is nothing to do
:: Searching databases for updates...
:: Searching AUR for updates...
-> efl: local (1.22.3-1) is newer than extra (1.22.2-1)
Couldn't start kglobalaccel from org.kde.kglobalaccel.service: QDBusError("org.freedesktop.DBus.Error.Spawn.ExecFailed", "Failed to execute program org.kde.kglobalaccel: No such file or directory")
Invalid Context= "Apps" line for icon theme: "/home/fusion809/.local/share/icons/Mint-Y/apps/16/"
Invalid Context= "Apps" line for icon theme: "/usr/share/icons/Mint-Y/apps/16/"
Invalid Context= "Apps" line for icon theme: "/home/fusion809/.local/share/icons/Mint-Y/apps/16@2x/"
Invalid Context= "Apps" line for icon theme: "/usr/share/icons/Mint-Y/apps/16@2x/"
Invalid Context= "Mimetypes" line for icon theme: "/home/fusion809/.local/share/icons/Mint-Y/mimetypes/16/"
Invalid Context= "Mimetypes" line for icon theme: "/usr/share/icons/Mint-Y/mimetypes/16/"
Invalid Context= "Mimetypes" line for icon theme: "/home/fusion809/.local/share/icons/Mint-Y/mimetypes/16@2x/"
Invalid Context= "Mimetypes" line for icon theme: "/usr/share/icons/Mint-Y/mimetypes/16@2x/"
Invalid Context= "Apps" line for icon theme: "/home/f
y=function("y")
var("lambda_")
E=diff(y(x),x,2)-x*y(x)==lambda_*y(x)
S=desolve(E,y(x),ivar=x, contrib_ode=True, ics=[0,0,+Infinity,0]);
@fusion809
fusion809 / lorenz.m
Created January 5, 2016 02:22
Lorenz function for GNU Octave
function dy = lorenz(y,t)
dy = zeros(3,1);
P = 10;
r = 28;
b = 8/3;
dy(1) = P*(y(2) - y(1));
dy(2) = -y(1)*y(3) + r*y(1) - y(2);
dy(3) = y(1)*y(2) - b*y(3);