Skip to content

Instantly share code, notes, and snippets.

View sefatanam's full-sized avatar
:octocat:
odistro

Sefat Anam sefatanam

:octocat:
odistro
View GitHub Profile
@sefatanam
sefatanam / visualstudio2019Key.txt
Created June 2, 2020 21:00
Visual Studio 2019 Product Key
Visual Studio 2019 Product Key
Visual Studio 2019 Enterprise
BF8Y8-GN2QH-T84XB-QVY3B-RC4DF
Visual Studio 2019 Professional
NYWVH-HT4XC-R2WYW-9Y3CM-X4V3Y
[Please Star this gist]
# Created by .ignore support plugin (hsz.mobi)
### Python template
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.sln.docstates
# Build results
private void DebugOutput(object obj)
{
try
{
System.Diagnostics.Debug.Write(obj + Environment.NewLine);
}
catch (Exception ex)
{
class Member {
public int Id { get; set; }
public string Name { get; set; }
public string Address { get; set; }
}
List<Member> Members = new List<Member>() {
new Member { Id = 1, Name = "Sefat anam", Address = "Dhaka" },
new Member { Id = 2, Name = "Jamal anam", Address = "Dhaka" },
@sefatanam
sefatanam / BinarySearchTree.cs
Created July 8, 2020 17:25 — forked from aaronjwood/BinarySearchTree.cs
Binary search tree implementation in C#
using System;
using System.Diagnostics;
namespace BinarySearchTree
{
class Node
{
public int value;
public Node left;
public Node right;
{
"users": [
{
"username": "lifeoflikhon",
"fullname": "Mehedi Hasan Likhon",
"email": "meehdi.hasansjs@gmail.com",
"phone-number": "01624350761",
"password": "XYZ798@hhdiw#wsd983r",
"role": "owner",
"address": {
#Enable daemon
org.gradle.daemon=true
# Try and findout the best heap size for your project build.
org.gradle.jvmargs=-Xmx3096m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# Modularise your project and enable parallel build
org.gradle.parallel=true
# Enable configure on demand.
org.gradle.configureondemand=true
<--! Make some changes in 'angular.json' !-->
"optimization": false,
"outputHashing": "all",
"sourceMap": false,
"extractCss": false,
"namedChunks": false,
"aot": false,
"extractLicenses": false,
{
"posts": [
{
"id": 1,
"title": "Lorem ipsum dolor sit amet, consectetur adipiscing elit",
"slug": "blog-post-1",
"featured_image": "https://images.unsplash.com/photo-1598334274217-b50fa9428124?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80"
},
{
"id": 2,