sudo apt-get install gnome-tweak-tool
Displays -> Scaling 200%
OR Tweaks -> Fonts -> Scaling 2.0
Tweaks -> Top bar -> Clock -> Date
Date & Time -> AM/PM & Auto timezone
"""Linked List implementation in Python.""" | |
class LinkedCell: | |
"""Node implementation for linked list.""" | |
def __init__(self, v, n=-1): | |
"""Construct for LinkedCell.""" | |
self.value = v | |
self.next = n |
"""Implement doubly-linked list in Python.""" | |
class Node: | |
"""Node implementation for doubly-linked list.""" | |
def __init__(self, v=None, next=None, prev=None): | |
"""Construct a node.""" | |
self.value = v | |
self.next = next |
const { GraphQLServer } = require('graphql-yoga'); | |
const server = new GraphQLServer({ typeDefs, resolvers }); | |
server.start(() => console.log('Server is running...')); | |
// run integration tests | |
// how to stop the server? |
# If not running interactively, don't do anything | |
[[ $- != *i* ]] && return | |
export TERM="xterm-256color" | |
fpath+=~/.zsh/pure | |
autoload -U promptinit; promptinit | |
autoload -U compinit; compinit | |
prompt pure |
[user] | |
name = "Tabrez Iqbal" | |
email = "[email protected]" | |
[color] | |
ui = true | |
[color "branch"] | |
current = green bold | |
local = yellow bold | |
remote = green bold |
" | |
" A (not so) minimal vimrc. | |
" | |
" You want Vim, not vi. When Vim finds a vimrc, 'nocompatible' is set anyway. | |
" We set it explicitely to make our position clear! | |
set nocompatible | |
filetype plugin indent on " Load plugins according to detected filetype. |