| Concept | Formula | Citation |
|---|---|---|
| Voltage (V) | [1-3] | |
| Current (I) | [4] | |
| Conductance (G) | [5] | |
| Wire Resistance (R) | [6] |
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
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ; ; | |
| ; Simple boot loader to load code from serial into memory starting ; | |
| ; at 08000h. Starting code execution after loading. ; | |
| ; ; | |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| org 00000h | |
| setup: ld sp, 0ffffh ; set stack pointer |
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 | |
| REM ----- Choose your browser ----- | |
| REM For Google Chrome: | |
| set browser="C:\Program Files\Google\Chrome\Application\chrome.exe" | |
| REM ----- Tabs to open ----- | |
| set url1=https://www.grinchhourofcode.com/ | |
| set url2=https://education.minecraft.net/en-us/lessons/hour-of-ai-the-first-night | |
| set url3=https://studio.code.org/courses/oceans/units/1/lessons/1/levels/1 |
openssl s_client -connect live.smtp.mailtrap.io:25 -starttls smtp -quiethttps://sigmdel.ca/michel/ha/esp8266/ESP01_AT_Firmware_en.html
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
| // Soil Moisture Quality Monitor | |
| Table Users { | |
| user_id serial [pk] | |
| username string | |
| password string | |
| } | |
| Table Nodes { | |
| device_id serial [pk] |
It's been over a year since Phaser 2D v3 has been dead, so I thought I'd make a small guide on how to crack the editor now that it's out of support.
Cracking the editor is very easy to do, and is very low effort. To begin, start by downloading a copy of the Phaser Editor from Archive.org or similar along with Phaser Core.
Then, download a copy or Telerik Fiddler Classic
Open fiddler, and unzip phaser core.
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 OKX - Sign in with Pool Token | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Set token and isLogin cookies with custom values | |
| // @author AlexDev404 (Immanuel Garcia) | |
| // @match https://www.okx.com/account/users?logged_in=true | |
| // @match https://www.okx.com/account/login* | |
| // @match https://www.okx.com/* | |
| // @grant none |
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
| Add-Type @" | |
| using System; | |
| using System.Runtime.InteropServices; | |
| using System.Diagnostics; | |
| public class Win32 { | |
| [DllImport("user32.dll")] | |
| public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, | |
| int X, int Y, int cx, int cy, uint uFlags); |
This Bash script creates a virtual display on an Android device and streams it using scrcpy. It's designed to work with Android Debug Bridge (ADB) and scrcpy, providing a seamless way to create and interact with a secondary display on your Android device.
- Android Debug Bridge (ADB) installed and accessible from the command line
scrcpyinstalled and accessible from the command line
NewerOlder