Skip to content

Instantly share code, notes, and snippets.

View ridingwolf's full-sized avatar

Wouter De Rijck ridingwolf

View GitHub Profile

Keybase proof

I hereby claim:

  • I am ridingwolf on github.
  • I am wolfcraft_io (https://keybase.io/wolfcraft_io) on keybase.
  • I have a public key ASDHMR1SunzNJVR91dNy_PNscWr-hkBs_fpsGAc8N_QuOQo

To claim this, I am signing this object:

found: D:\repositories\paket-issue\paket.dependencies
Parsing D:\repositories\paket-issue\paket.dependencies
Resolving packages for group Main:
0 packages in resolution.
1 requirements left
- AWSSDK.Core, 3.3.25.2 (from D:\repositories\paket-issue\paket.dependencies)
Trying to resolve AWSSDK.Core 3.3.25.2 (from D:\repositories\paket-issue\paket.dependencies)
Starting request to 'https://informatievlaanderen.myget.org/F/nuget-mirror/api/v3/index.json'
Starting request to 'https://informatievlaanderen.myget.org/F/nuget-mirror/api/v3/flatcontainer/awssdk.core/index.json?semVerLevel=2.0.0'
@ridingwolf
ridingwolf / install_fish.msys2
Last active April 14, 2018 00:16
fishshell setup on windows
#!/bin/bash
pacman -Syu --noconfirm
pacman -S fish --noconfirm
echo "if [ -x /bin/fish ]; then exec fish; fi" > ~/.bashrc
source ~/.bashrc
@ridingwolf
ridingwolf / react native shake devices
Created December 27, 2017 14:45
React native helpers
function shake -d "shake connected mobile device"
# android, add ios at some point if possible
for deviceInfo in (adb devices -l)
set device (string split " " $deviceInfo)[1]
if [ $device ]; and not string match -a -i -q "list" $device
echo "shaking: $deviceInfo"
adb -s $device shell input keyevent 82
end
end
@ridingwolf
ridingwolf / TryParse.cs
Created August 26, 2016 10:06
Wrap Object.TryParse
public static class TryParse
{
public static ParsedValue<Int32> ToInt32(String str)
{
Int32 parsedValue;
return CreateParseresult(Int32.TryParse(str, out parsedValue), parsedValue);
}
public static ParsedValue<Int64> ToInt64(String str)
{