https://packages.msys2.org/package/zsh?repo=msys&variant=x86_64
https://peazip.github.io/
winget install -e --id GiorgioTani.PeaZip
- extract all contents of zsh ..tar file to this folder
- in side terminal type: zsh
/// @function draw_textbox(x, y, max_width, text, sprite, bg_color, border_color) | |
/// It uses Scribble's get_box method to calculate the text dimensions, which includes padding, | |
/// The background and border are now drawn based on the dimensions returned by get_box. | |
/// @param {Real} _x The x coordinate of the bottom-left corner of the textbox | |
/// @param {Real} _y The y coordinate of the bottom-left corner of the textbox | |
/// @param {Real} _max_width The maximum width of the textbox | |
/// @param {String} _text The text to display in the textbox | |
/// @param {String} _bg_color The background color in hex format | |
/// @param {String} _border_color The border color in hex format | |
function draw_textbox(_x, _y, _max_width, _text, _bg_color, _border_color) { |
let mapleader=" " | |
""" Plugins -------------------------------- | |
set surround | |
set multiple-cursors | |
set commentary | |
set argtextobj | |
set easymotion | |
set textobj-entire | |
set ReplaceWithRegister |
https://packages.msys2.org/package/zsh?repo=msys&variant=x86_64
https://peazip.github.io/
winget install -e --id GiorgioTani.PeaZip
import 'reflect-metadata'; | |
import {Container, Inject, Service} from "typedi"; | |
describe('typedi demo', () => { | |
it('should work', async () => { | |
const query = () => 'hello from query'; | |
@Service() | |
class Repository { |
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"final_space": false, | |
"osc99": true, | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"segments": [ | |
{ |
[user] | |
name = Ajinkya | |
email = [email protected] | |
[core] | |
autocrlf = input | |
[url "[email protected]:"] | |
insteadOf = https://github.com/ | |
[diff] | |
tool = webstorm | |
[difftool "webstorm"] |
// GDI+ ESP | |
#include "pch.h" | |
#include "Offsets.h" | |
#include <iostream> | |
#include <Windows.h> | |
#include <TlHelp32.h> | |
/* SexOffenderSally helped code a lot/most of this with me, a long time friend! Give him a <3 on discord | |
Make sure character set is 'Multi-Byte' in project settings! And game must be windowed fullscreen. | |
Updated offsets: https://github.com/frk1/hazedumper/blob/master/csgo.cs */ |
echo '.env' >> .gitignore | |
git rm -r --cached .env | |
git add .gitignore | |
git commit -m 'untracking .env' | |
git push origin master |
#include <SPIFFS.h> | |
/* | |
* | |
* Copyright (C) 2017 CS.NOL https://github.com/csnol/1CHIP-Programmers | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, | |
* and You have to keep below webserver code |
name: Build and Deploy to Google | |
on: | |
workflow_dispatch: | |
# Environment variables available to all jobs and steps in this workflow | |
env: | |
GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }} | |
GITHUB_SHA: ${{ github.sha }} | |
RUN_REGION: asia-southeast1 |