I hereby claim:
- I am vijaysg on github.
- I am vganesh (https://keybase.io/vganesh) on keybase.
- I have a public key ASC_6LdHz3RaDz2_jQCWF8UXOrPj4dMpFk6TH2hqJmLDigo
To claim this, I am signing this object:
#!/bin/bash | |
# Check if the correct number of arguments is provided | |
if [ "$#" -ne 3 ]; then | |
echo "Usage: $0 <database_name> <username> <password>" | |
exit 1 | |
fi | |
# Assign arguments to variables | |
DB_NAME=$1 |
node -e "console.log(require('crypto').randomBytes(256).toString('base64'));" |
@ECHO OFF | |
SETLOCAL | |
FOR /F "delims=" %%i in ( '""C:\SDKs\Google\CloudSDK\google-cloud-sdk\bin\gcloud.cmd"" components copy-bundled-python' ) DO ( | |
SET CLOUDSDK_PYTHON=%%i | |
) | |
CALL gcloud components update --quiet |
I hereby claim:
To claim this, I am signing this object:
using Dapper; | |
using Oracle.ManagedDataAccess.Client; | |
using System; | |
using System.Collections.Generic; | |
using System.Data; | |
using System.Linq; | |
public class OracleDynamicParameters : Dapper.SqlMapper.IDynamicParameters { | |
private static Dictionary<SqlMapper.Identity, Action<IDbCommand, object>> paramReaderCache = new Dictionary<SqlMapper.Identity, Action<IDbCommand, object>>( ); |