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:
I hereby claim:
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' |
| #!/bin/bash | |
| pacman -Syu --noconfirm | |
| pacman -S fish --noconfirm | |
| echo "if [ -x /bin/fish ]; then exec fish; fi" > ~/.bashrc | |
| source ~/.bashrc |
| 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 |
| 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) | |
| { |