Skip to content

Instantly share code, notes, and snippets.

@Klerith
Klerith / Instalaciones-React.md
Last active April 26, 2024 18:28
Instalaciones recomendadas para mi curso de React de cero a experto
@sin2akshay
sin2akshay / Blockchain_Resources.md
Last active April 26, 2024 18:28
Blockchain Learning Resources

Blockchain Resources

Following are the resources provided in the Blockchain specialization course on Coursera and a few other resources I found useful while learning Blockchain.
⭐ Best Resources are marked with a star.
✔️ After reading/watching the resource, put a tick mark.

Please mention the resources you think would be helpful here in the comments

Bitcoin and Blockchain

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active April 26, 2024 18:28
Complete Recent Discord Quest

Complete Recent Discord Quest

How to use this script:

  1. Accept the quest under User Settings -> Gift Inventory
  2. Join a vc
  3. Stream any window (can be notepad or something)
  4. Press Ctrl+Shift+I to open DevTools
  5. Go to the Console tab
  6. Paste the following code and hit enter:
let wpRequire;
@wojukasz
wojukasz / keybindings.json
Created March 31, 2023 11:43
VsCode + Vim keybindings and settings - best of both worlds
[
//
// VIM NAVIGATION SHORTCUTS
//
{
// "ctrl+h": Focuses on the left editor group when the text editor is focused, Vim extension is active, and Vim is not in Insert mode.
"key": "ctrl+h",
"command": "workbench.action.focusLeftGroup",
"when": "editorTextFocus && vim.active && vim.mode != 'Insert'"
def is_valid(grid, r, c, k):
not_in_row = k not in grid[r]
not_in_column = k not in [grid[i][c] for i in range(9)]
not_in_box = k not in [grid[i][j] for i in range(r//3*3, r//3*3+3) for j in range(c//3*3, c//3*3+3)]
return not_in_row and not_in_column and not_in_box
def solve(grid, r=0, c=0):
if r == 9:
return True