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 asyncio | |
| async def Popen_async(cmdline: list): | |
| PIPE = asyncio.subprocess.PIPE | |
| return await asyncio.create_subprocess_exec( | |
| *cmdline, | |
| stdin=PIPE, | |
| stdout=PIPE, | |
| stderr=PIPE) |
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
| ## AT&T Assembly | |
| ## Variation of my Assembly highlighter, with added instructions that are | |
| ## specific to AT&T syntax and includes some tweaks to the other regular expressions. | |
| syntax asm "\.(S|s|asm)$" | |
| magic "at&t assembler source" | |
| comment ";" | |
| # Symbol visibility levels |
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
| # Intel Assembly | |
| ## Got fed up with the frankly inadequate default colours for assembly, so I made my own set. | |
| ## This process also taught me the basics of regular expressions, which was a nice bonus. | |
| syntax asm "\.(S|s|asm)$" | |
| magic "assembler source" | |
| comment ";" | |
| # Symbol visibility levels |
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; | |
| using System.Drawing; | |
| using System.Windows; | |
| using System.Runtime.InteropServices; | |
| namespace MouseJiggler | |
| { | |
| class Program | |
| { |