Skip to content

Instantly share code, notes, and snippets.

View dotnet22's full-sized avatar

Sukhdev dotnet22

  • Rachanaa Innovations
  • Ahmedabad, India
View GitHub Profile
@dotnet22
dotnet22 / DB.sql
Last active August 29, 2015 14:21 — forked from nerdpad/DB.sql
USE master
GO
-- Enable FileStream at the Instance Level
EXEC sp_configure filestream_access_level, 2
RECONFIGURE
GO
-- Provide a FileStream Filegroup
-- Create Client DB Database
@dotnet22
dotnet22 / Firewall.js
Created February 25, 2017 07:30 — forked from havvg/Firewall.js
ExtJS 6: JSON Web Token API Login with Promises
Ext.define('App.security.Firewall', {
singleton: true,
requires: [
'App.security.TokenStorage'
],
login: function(username, password) {
var deferred = new Ext.Deferred();
Ext.Ajax.request({
@dotnet22
dotnet22 / app.js
Created July 12, 2017 13:16 — forked from sogko/app.js
gulp + expressjs + nodemon + browser-sync
'use strict';
// simple express server
var express = require('express');
var app = express();
var router = express.Router();
app.use(express.static('public'));
app.get('/', function(req, res) {
res.sendfile('./public/index.html');
@dotnet22
dotnet22 / Program.cs
Created September 28, 2019 17:43 — forked from atifaziz/Program.cs
Simple NDde demo for reading and writing data to Excel using DDE
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using NDde.Client;
// Adapted from: http://ndde.codeplex.com/discussions/399046
static class Program
{
@dotnet22
dotnet22 / AwsV4SignatureCalculator.cs
Created December 18, 2019 06:02 — forked from yvanin/AwsV4SignatureCalculator.cs
This C# code calculates a request signature using Version 4 signing process. It was developed for and tested on Amazon SQS requests, so it does not cover every scenario for the other services, e.g. multipart uploads are not supported. Nevertheless, it's simple and independent single class that can be easily embedded into other projects. .NET Fra…
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Globalization;
using System.Linq;
using System.Net.Http;
using System.Security.Cryptography;
using System.Text;
namespace AwsV4SignatureCalculator
@dotnet22
dotnet22 / nginx-tuning.md
Created July 3, 2020 09:28 — forked from denji/nginx-tuning.md
NGINX tuning for best performance

NGINX Tuning For Best Performance

For this configuration you can use web server you like, i decided, because i work mostly with it to use nginx.

Generally, properly configured nginx can handle up to 400K to 500K requests per second (clustered), most what i saw is 50K to 80K (non-clustered) requests per second and 30% CPU load, course, this was 2 x Intel Xeon with HyperThreading enabled, but it can work without problem on slower machines.

You must understand that this config is used in testing environment and not in production so you will need to find a way to implement most of those features best possible for your servers.

@dotnet22
dotnet22 / nginx.conf
Created October 31, 2020 07:52 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@dotnet22
dotnet22 / allDNS.md
Created December 11, 2020 05:18 — forked from TwistingTwists/allDNS.md
All Rau Dns Descriptions.
@dotnet22
dotnet22 / delete-likes-from-twitter.md
Created April 7, 2021 12:10 — forked from aymericbeaumet/delete-likes-from-twitter.md
[Recipe] Delete all your likes/favorites from Twitter

Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.

  1. Go to: https://twitter.com/{username}/likes
  2. Open the console and run the following JavaScript code:
setInterval(() => {
  for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
    d.click()
 }
@dotnet22
dotnet22 / AppendImageExtension.cs
Created August 30, 2021 17:50 — forked from ChuckSavage/AppendImageExtension.cs
C# Is file an image and get its type
// Includes a mini-program for checking and fixing files that have no extension
// Only checks for the most common types
// If you create a better version, please upload it here.
using System;
using System.Collections.Generic;
using System.IO;
namespace AppendJPG
{