; if (a == $05)
cp $05
jr nz, .else_if ;----+
; ... |
jr .end_if ;----|----+
.else_if: ;<---+ |
cp $06 ; |
jr nz, .else ;---------|----+
; ... | |
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
| using System; | |
| using System.Threading.Tasks; | |
| namespace CPUWaster | |
| { | |
| public class Program | |
| { | |
| public const double DesiredLoad = 0.75; //1 = 100% | |
| public static void Main() |
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
| Find what: ([0-9A-Fa-f])([0-9A-Fa-f]) | |
| Replace with: 0x\1\2, | |
| Search mode: Regular expression |
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
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
| "profiles": |
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
| using System; | |
| using System.Diagnostics; | |
| using SixLabors.ImageSharp; | |
| //... | |
| var base64EncodedImage = "iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg=="; | |
| var imageBytes = Convert.FromBase64String(base64EncodedImage); | |
| using (var image = Image.Load(imageBytes)) | |
| { |
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
| #!/usr/bin/env bash | |
| #https://medium.com/@prtdomingo/editing-files-in-your-linux-virtual-machine-made-a-lot-easier-with-remote-vscode-6bb98d0639a4 | |
| ssh -R 52698:localhost:52698 brandon@edgar |
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
| IF !DEF(DEBUG_INC) | |
| DEBUG_INC SET 1 | |
| ; Prints a message to the no$gmb / bgb debugger | |
| ; Accepts a string as input, see emulator doc for support | |
| DBGMSG: MACRO | |
| ld d, d | |
| jr .end\@ | |
| DW $6464 | |
| DW $0000 |
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
| id | first_name | last_name | gender | ip_address | ||
|---|---|---|---|---|---|---|
| 1 | Amaleta | Ector | aector0@discovery.com | Female | 79.127.77.151 | |
| 2 | Wallache | Dood | wdood1@mapquest.com | Male | 71.64.169.45 | |
| 3 | Elset | Phipp | ephipp2@ebay.co.uk | Female | 243.105.200.107 | |
| 4 | Hogan | Loutheane | hloutheane3@flavors.me | Male | 164.230.229.62 | |
| 5 | Issy | McDoual | imcdoual4@addtoany.com | Female | 231.50.160.40 | |
| 6 | Dewain | Jeakins | djeakins5@ocn.ne.jp | Male | 48.183.13.119 | |
| 7 | Sissie | Ochiltree | sochiltree6@pagesperso-orange.fr | Female | 190.67.96.114 | |
| 8 | Karita | Dundendale | kdundendale7@narod.ru | Female | 60.155.112.42 | |
| 9 | Modestia | Charkham | mcharkham8@nyu.edu | Female | 181.164.21.28 |
- There are lots of options but Git is the most popular nowadays
- https://git-scm.com/book/en/v2/Getting-Started-About-Version-Control
- https://github.com/
- Visual Studio Code (any platform, any language, extensible; it's like Notepad++++) - https://code.visualstudio.com/
- Visual Studio (Windows-only, if you want to do .NET stuff) - https://visualstudio.microsoft.com/
- https://jsfiddle.net/ or https://codepen.io/ for prototyping web stuff
NewerOlder