Add the Github IPs as A records on Namecheap.
185.199.108.153
185.199.109.153
185.199.110.153
| /*! | |
| JSZip | |
| The MIT License or GPL version 3 | |
| Copyright (c) 2009-2016 Stuart Knightley, David Duponchel, Franz Buchinger, António Afonso | |
| FileSaver.js | |
| The MIT License | |
| Copyright © 2016 Eli Grey. | |
| LeetCodeDownloader.min.js |
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
| "blocks": [ | |
| { | |
| "alignment": "left", | |
| "type": "prompt", | |
| "segments": [ | |
| { | |
| "background": "#C5DB29", | |
| "foreground": "#000000", |
| def pop_at(self, position): | |
| #1. check if the position is > 0 | |
| if(position < 1): | |
| print("\nposition should be >= 1.") | |
| elif (position == 1 and self.head != None): | |
| #2. if the position is 1 and head is not null, make | |
| # head next as head and delete previous head | |
| nodeToDelete = self.head |
| def insert_at(self, newElement, position): | |
| #1. allocate node to new element | |
| newNode = Node(newElement) | |
| #2. check if the position is > 0 | |
| if(position < 1): | |
| print("\nposition should be >= 1.") | |
| elif (position == 1): | |
| def clear(self): | |
| while (self.head is not None): | |
| temp = self.head | |
| self.head = self.head.next | |
| temp = None | |
| print('All the elements has been cleared!') |
| def insert_at_end(self, newElement): | |
| #1 & 2 & 3. allocate node, assign data element | |
| # assign null to the next of new node | |
| newNode = Node(newElement) | |
| #4. Check the Linked List is empty or not, | |
| # if empty make the new node as head | |
| if(self.head == None): | |
| self.head = newNode |
| .vscode/* | |
| !.vscode/tasks.json | |
| !.vscode/launch.json | |
| *.code-workspace |
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh3/main/themes/schema.json", | |
| "blocks": [ | |
| { | |
| "type": "prompt", | |
| "alignment": "left", | |
| "segments": [ | |
| { | |
| "type": "text", |
| // file location: C:\Users\[User name]\AppData\Roaming\Hyper\.hyper.js | |
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 13, | |
| // font family with optional fallbacks | |
| fontFamily: "MesloLGM NF", | |
| // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) |