- 🔥 Mantine - The Best component library ever
- official color generator | 🔥 custom theme editor | Mantine Hub
- Mantine Extensions - Useful UI Components
- Mantine Split Pane - Split Pane component
- Mantine DataTable | Mantine Data Grid - Table View
- 🔥 shadcn/ui - The second best modern UI library, based on:
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
| CF_API_TOKEN=token_same | |
| CF_DNS_API_TOKEN=token_same # Idk which token name is valid | |
| CF_EMAIL=[email protected] | |
| DOMAIN_1=ex1.ru | |
| DOMAIN_2=ex2.ru |
Note
This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.
How to use this script:
- Accept a quest under Discover -> Quests
- Press Ctrl+Shift+I to open DevTools
- Go to the
Consoletab - Paste the following code and hit enter:
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
| // ==UserScript== | |
| // @name Medium Paywall Bypass | |
| // @namespace Violentmonkey Scripts | |
| // @run-at document-start | |
| // @match *://*.medium.com/* | |
| // @match *://medium.com/* | |
| // @match *://*/* | |
| // @grant none | |
| // @version 2.4 | |
| // @inject-into content |
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
| """ | |
| t.me/danokhlopkov | |
| x.com/danokhlopkov | |
| github.com/danokhlopkov | |
| Strategy: | |
| 1. get chats / groups you're in | |
| 2. iterate over participants and find ones with stories | |
| 3. watch them |
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
| # -*- coding: utf-8 -*- | |
| """Module to generate ascii charts. | |
| This module provides a single function ``plot`` that can be used to generate an | |
| ascii chart from a series of numbers. The chart can be configured via several | |
| options to tune the output. | |
| Modified from for modern python and to use ``rich``: | |
| https://github.com/kroitor/asciichart/blob/master/asciichartpy/__init__.py | |
| """ |
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
| #include <stdio.h> | |
| #define _USE_MATH_DEFINES | |
| #include <math.h> | |
| #include <windows.h> | |
| // width and height of screen | |
| #define ww 100 | |
| #define wh 50 | |
| void clr(CHAR_INFO* d) |
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
| #include <windows.h> | |
| #include <GLFW/glfw3.h> | |
| #include <iostream> | |
| // change this to int main() to allow the console | |
| int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, char*, int nShowCmd) | |
| { | |
| GLFWwindow* window; | |
| int windowSizeW = 640, windowSizeH = 480; | |
| // initialize the library |
This is inspired by A half-hour to learn Rust and Zig in 30 minutes.
Your first Go program as a classical "Hello World" is pretty simple:
First we create a workspace for our project:
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
| # Read more about setting it up | |
| # https://medium.com/@ljmocic/make-telegram-bot-for-notifying-about-new-rss-feed-items-4cfbcc37f4fd | |
| from datetime import timedelta, datetime | |
| from dateutil import parser | |
| from pprint import pprint | |
| from time import sleep | |
| import requests | |
| import feedparser |
NewerOlder