I hereby claim:
- I am skolima on github.
- I am skolima (https://keybase.io/skolima) on keybase.
- I have a public key ASA_cfIuSKZt9qKX1oNj3oUFu9RZjyvU-29je0blhI_5GQo
To claim this, I am signing this object:
| diff --git a/gendarme/rules/Gendarme.Rules.Correctness/Test/DisposableFieldsShouldBeDisposedTest.cs b/gendarme/rules/Gendarme.Rules.Correctness/Test/DisposableFieldsShouldBeDisposedTest.cs | |
| index 7ff3543..3f049e9 100644 | |
| --- a/gendarme/rules/Gendarme.Rules.Correctness/Test/DisposableFieldsShouldBeDisposedTest.cs | |
| +++ b/gendarme/rules/Gendarme.Rules.Correctness/Test/DisposableFieldsShouldBeDisposedTest.cs | |
| @@ -30,6 +30,7 @@ | |
| using System; | |
| using System.ComponentModel; | |
| using System.Runtime.CompilerServices; | |
| using System; | |
| using System.ComponentModel; | |
| using System.Diagnostics; | |
| using System.Runtime.InteropServices; | |
| namespace JobObjectSpike | |
| { | |
| internal sealed class JobObject : IDisposable | |
| { | |
| private readonly IntPtr _jobObjectHandle; |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| using System.IO; | |
| using System.Linq; | |
| using Amazon; | |
| using Amazon.S3; | |
| using Amazon.S3.Model; | |
| namespace GetAmazonBucketContents | |
| { | |
| // uses AWSSDK NuGet package |
| 10-07 21:28:55.858 1915 3327 I ActivityManager: Start proc 27228:com.grazerss/u0a95 for activity com.grazerss/.DashboardListActivity | |
| 10-07 21:28:55.971 2568 2568 V PhoneStatusBar: setLightsOn(true) | |
| 10-07 21:28:55.975 27228 27228 W System : ClassLoader referenced unknown path: /data/app/com.grazerss-1/lib/arm | |
| 10-07 21:28:55.979 2915 3036 E Surface : getSlotFromBufferLocked: unknown buffer: 0x972f8260 | |
| 10-07 21:28:56.058 27228 27228 D com.grazerss.AssetContentProvider: onCreate() | |
| 10-07 21:28:56.098 27228 27228 W NewsRob : No debug properties loaded. | |
| 10-07 21:28:56.161 27228 27228 D com.grazerss.storage.SdCardStorageAdapter: setupMedium status=mounted mounted false->true, read-only false->false, shared false -> false. | |
| 10-07 21:28:56.195 27228 27228 D NewsRob : NewsRob.onCreate() | |
| 10-07 21:28:56.210 27228 27228 D NewsRob : NewsRob Default Exception handler installed already? false | |
| 10-07 21:28:56.210 27228 27228 D NewsRobDefaultExceptionHandler: Default Exception Handler=com.android.internal.os.RuntimeInit$Un |
| <?xml version="1.0" encoding="utf-8"?> | |
| <root> | |
| <!-- | |
| Microsoft ResX Schema | |
| Version 2.0 | |
| The primary goals of this format is to allow a simple XML format | |
| that is mostly human readable. The generation and parsing of the | |
| various data types are done through the TypeConverter classes |
| <?xml version="1.0" encoding="utf-8"?> | |
| <root> | |
| <!-- | |
| Microsoft ResX Schema | |
| Version 2.0 | |
| The primary goals of this format is to allow a simple XML format | |
| that is mostly human readable. The generation and parsing of the | |
| various data types are done through the TypeConverter classes |
| <Project><!-- all the other bits removed --> | |
| <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
| <!-- add this as part of your BeforeBuild target --> | |
| <Target Name="BeforeBuild"> | |
| <ItemGroup> | |
| <ResXCodeSources Include=".\defaultResourceFile.resx" /> | |
| <ResXCodeSources Include=".\anotherDefaultTranslation.resx" /> | |
| <ResXCodeSources Include=".\youGetTheIdea.resx" /> | |
| </ItemGroup> | |
| <MakeDir Directories=".\bin\Debug\" /> |
| using System; | |
| using System.Net; | |
| namespace ConsoleApp1 | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Console.WriteLine("ServicePointManager.SecurityProtocol, default after startup"); |
| namespace System.Collections.Generic | |
| { | |
| using Collections; | |
| using Linq; | |
| public static class EnumerableExtension | |
| { | |
| public static IEnumerable EmptyIfNull(this IEnumerable enumerable) => enumerable ?? Enumerable.Empty<object>(); | |
| public static IEnumerable<T> EmptyIfNull<T>(this IEnumerable<T> enumerable) => enumerable ?? Enumerable.Empty<T>(); |