This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Google Fonts Links for CSS import rule | |
| Inter | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap'); | |
| Arimo | |
| @import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap'); | |
| Montserrat | |
| @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <head> | |
| <script defer src="main.js"></script> | |
| </head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script setup> | |
| import axios from 'axios' | |
| import { ref, onMounted } from 'vue' | |
| const fetchData = ref('') | |
| const res = ref('') | |
| const err = ref('') | |
| onMounted(async () => { | |
| const response = await axios({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import static java.net.http.HttpClient.*; | |
| import java.net.http.HttpClient; | |
| import java.net.http.HttpRequest; | |
| import java.net.http.HttpResponse; | |
| import java.net.http.HttpResponse.BodyHandlers; | |
| import java.net.URI; | |
| import java.time.Duration; | |
| import java.io.IOException; | |
| public class Fetch { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <snippet> | |
| <!-- Regex Thing from C++ Snippet --> | |
| <content><![CDATA[ | |
| internal class ${TM_FILENAME/(.+)\..+|.*/$1/:name} | |
| { | |
| static void Main(string[] args) | |
| { | |
| $2 | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| :: Requirements: GitHub CLI | |
| set /p gist_files="Enter a file/files for your gist: " | |
| set /p gist_description="Enter gist description: " | |
| gh gist create %gist_files%^ | |
| -pd "%gist_description%" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| :: Requirements: Git and GitHub CLI | |
| set /p repo_name="Enter repo name: " | |
| set /p repo_description="Enter repo description: " | |
| git init | |
| git branch -m main | |
| git add . | |
| git commit -m "initial commit" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from requests import get | |
| from json import loads | |
| from asyncio import run | |
| async def get_user(): | |
| user = input("Enter user: ") | |
| return get(f"https://api.github.com/users/{user}") | |
| async def main(): | |
| response = await get_user() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "clark": [ | |
| "#FF0512", | |
| "#FF8005", | |
| "#FFdc05", | |
| "#79ff05", | |
| "#05ff95", | |
| "#0537ff", | |
| "#700cf8" | |
| ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "key": "ctrl+shift+d", | |
| "command": "editor.action.duplicateSelection" | |
| }, | |
| { | |
| "key": "ctrl+shift+up", | |
| "command": "editor.action.moveLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, |
NewerOlder