Skip to content

Instantly share code, notes, and snippets.

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

pradeek prdk0

🏠
Working from home
View GitHub Profile
set nocompatible
" filetype off
set rtp+=~/.vim/bundle/Vundle.vim
syntax enable
set backspace=indent,eol,start
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'vim-airline/vim-airline'
# This file has been auto-generated by i3-config-wizard(1).
# It will not be overwritten, so edit it as you like.
#
# Should you change your keyboard layout some time, delete
# this file and re-run i3-config-wizard(1).
#
# i3 config file (v4)
#
# Please see https://i3wm.org/docs/userguide.html for a complete reference!
/*Dracula theme based on the Purple official rofi theme*/
* {
font: "Jetbrains Mono 12";
foreground: #f8f8f2;
background-color: #282a36;
active-background: #6272a4;
urgent-background: #ff5555;
selected-background: @active-background;
selected-urgent-background: @urgent-background;
# i3blocks config file
#
# Please see man i3blocks for a complete reference!
# The man page is also hosted at http://vivien.github.io/i3blocks
#
# List of valid properties:
#
# align
# color
# command
@prdk0
prdk0 / Main.java
Created October 9, 2018 03:42
Implemetation of basic LinkedList with add,find,delete with keywords or position values. Implemented feature like contains? ,which will return a boolean.
package com.dsa;
/**
* Author: pradeek<pradeek.k@gmail.com>
* Date: 21/8/18
* Jdk-version: 10.0.1
* Time: 11:11 AM
*/
public class Main{
public static void main(String args[]){