Skip to content

Instantly share code, notes, and snippets.

View arnabdas's full-sized avatar

Arnab Das arnabdas

View GitHub Profile
@arnabdas
arnabdas / Main.cs
Created April 4, 2020 19:27
Using Appsettings In Console Applications - Taken from Seeman
IConfigurationRoot configuration = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json")
.Build();
string typeName = configuration["messageWriter"];
Type type = Type.GetType(typeName, throwOnError: true);
IMessageWriter writer = (IMessageWriter)Activator.CreateInstance(type);
@arnabdas
arnabdas / Microsoft-Graph-API_AzureAD-B2C_password-reset_user-delete.md
Last active October 25, 2019 07:48
Reset password or delete user in Azure Active Directory or B2C via Graph API

Microsoft Graph API Reset User Password

According to the documentation, we would need User.ReadWrite.All in Azure Active Directory Graph. But it's not present. And the only other option is to provide Company Administrator role to the app. Unfortunately this role can't be given via web site.

We would need a user in the directory, we want to reset password or delete user from. And at-least temporarily, this user needs to be Global Adminitrator. We didn't try with other roles, as this was a one time requirement. And once the task was done, we deleted the newly created user.

$Msolcred = Get-credential # login with the GA user
Connect-MsolService -Credential $Msolcred  
Get-MsolServicePrincipal | ft DisplayName, AppPrincipalId -AutoSize # this is not required, but to check the service principals only
@arnabdas
arnabdas / SOAP_TLS1.2.md
Created March 12, 2019 06:50
SOAP Auto Choose TLS1.2 or higher

If your client application was compiled against .NET Framework 4.5.2 or lower, then by default ServicePointManager.SecurityProtocol is initialized to SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls (SSL 3.0 and TLS 1.0 only), so it won't be able to connect to a remote server that requires TLS 1.2.

There are several ways to allow your client application to use TLS 1.2:

  • Recompile your client application against .NET Framework 4.6 or later. (In Visual Studio, open your project's property pages, go to the Application tab, and change the Target Framework.)
  • On the client machine, run RegEdit.exe, go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ .NETFramework\v4.0.30319, add a DWORD (32-bit) value named SchUseStrongCrypto, and set it to 1. (This flag causes ServicePointManager.SecurityProtocol to be initialized to Tls | Tls11 | Tls12.)
  • When your client application starts up, turn on TLS 1.2:
@arnabdas
arnabdas / CypherExtensions.cs
Last active February 22, 2019 08:06
AES encryption/decryption
using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;
namespace CodeRuse
{
// https://bitlush.com/blog/symmetric-encryption-in-c-sharp
public static class CypherExtensions
{
@arnabdas
arnabdas / LargeFileReader.cs
Created October 5, 2018 04:23
Read a large file and write the processed data into a stream
// https://stackoverflow.com/questions/2161895/reading-large-text-files-with-streams-in-c-sharp
// https://docs.microsoft.com/en-us/dotnet/standard/io/how-to-write-text-to-a-file
using (FileStream fs = File.Open(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
using (BufferedStream bs = new BufferedStream(fs))
using (StreamReader sr = new StreamReader(bs))
using (StreamWriter outputFile = new StreamWriter(Path.Combine(mydocpath,"WriteLines.txt")))
{
string line;
while ((line = sr.ReadLine()) != null)
{
@arnabdas
arnabdas / scratches.sql
Created October 2, 2018 07:24
Useful tsql scripts taken from around the net
-- Get the sp text
DECLARE @Lines TABLE (Line NVARCHAR(MAX)) ;
DECLARE @FullText NVARCHAR(MAX) = '' ;
INSERT @Lines EXEC sp_helptext 'sp_ProcedureName' ;
SELECT @FullText = @FullText + Line FROM @Lines ;
PRINT @FullText ;
-- Get db and table sizes
@arnabdas
arnabdas / haskell-install.sh
Created September 25, 2018 16:11
Install Haskell on Ubuntu 18.04
#!/bin/bash
add-apt-repository -y ppa:hvr/ghc
apt-get install -y cabal-install-2.4
apt install ghc-8.6
curl -sSL https://get.haskellstack.org/ | sh
# to install intero, either install
@arnabdas
arnabdas / clear.sh
Last active September 23, 2018 16:57
Clear all the intermediate files created by 'ghc' [./clear.sh <filename>]
#!/bin/bash
if ! [ -z "$1" ]
then
find . -name $1 -not \( -name '*.hs' \) -print0 | xargs -0 rm -rf
fi
find . -name "*.o" -print0 | xargs -0 rm -rf
find . -name "*.hi" -print0 | xargs -0 rm -rf
@arnabdas
arnabdas / Claims.cs
Last active April 24, 2018 11:21
Print claims
public class CustomAuthorizeAttribute : AuthorizeAttribute
{
protected override bool IsAuthorized(HttpActionContext actionContext)
{
var principal = actionContext.RequestContext.Principal as ClaimsPrincipal;
System.Text.StringBuilder s = new System.Text.StringBuilder();
s.AppendLine("Type,Value,ValueType");
principal.Claims.ToList().ForEach(c => s.AppendLine($"{c.Type},{c.Value},{c.ValueType}"));
System.Diagnostics.Debug.WriteLine(s.ToString());
@arnabdas
arnabdas / WSDL_Generator.cmd
Created November 21, 2017 15:18
Generate POCO from WSDL
SvcUtil.exe "path\to\service\configuration\service.wsdl" /t:code /l:c# /o:"path\to\output\file\Output.cs" /n:*,NameSpace
# if SvcUtil is not found, open Visual Studio command prompt and invoke and get the path
where SvcUtil.exe
# C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools\SvcUtil.exe