Skip to content

Instantly share code, notes, and snippets.

View iamdipankarj's full-sized avatar
🏠
Working from home

Dipankar Jana iamdipankarj

🏠
Working from home
View GitHub Profile
@iamdipankarj
iamdipankarj / settings.json
Created July 30, 2023 14:21
GitLens user config for vscode
{
"explorer.compactFolders" : false,
"gitlens.currentLine.enabled" : false,
"workbench.startupEditor" : "newUntitledFile",
"gitlens.blame.dateFormat" : "MMMM Do YYYY",
"typescript.preferences.importModuleSpecifier" : "relative",
"editor.inlineSuggest.enabled" : true,
"workbench.colorCustomizations" : {
"statusBar.background" : "#303030"
},
@iamdipankarj
iamdipankarj / isPalindrome
Created June 18, 2014 07:03
code to check if a given linked list is palindrome
/**
Reverse a Singly Linked List
Helper function
**/
Node *ReverseList(Node **head)
{
Node *prev = NULL;
Node *temp = *head;
Node *next;
@iamdipankarj
iamdipankarj / 0_reuse_code.js
Created June 18, 2014 06:59
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console