"
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
| WinActivate, Screen To Gif - Editor ahk_class HwndWrapper[ScreenToGif.exe;;4dbda4bb-aa1e-4b86-bfa4-a7fb85aea875] | |
| Sleep, 2000 | |
| Sleep, 300 | |
| Send, {LAlt Down} | |
| Sleep, 300 | |
| Send, {t} | |
| Sleep, 300 | |
| Send, {LAlt Up} | |
| Sleep, 300 | |
| Send, {Enter} |
It does not always move between spellchekings results.
I run LanguageTool in this file. Ctrl+Shift+P → LanguageTool: Check Text → I moved between problems via Alt+↑ and Alt+↓. Sometimes I succeed, sometimes not obtained.
key evt: alt+down
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
| { "schema": 5, "addons": [{ "id": "langpack-en-US@firefox.mozilla.org", "icons": { "32": null, "64": null }, "name": "English (US) Language Pack", "type": "locale", "version": "49.0", "repositoryStatus": 4, "creator": { "name": "Mozilla", "url": "https://addons.mozilla.org/en-US/firefox/user/mozilla/?src=api" }, "description": "The en-US language pack for Firefox.", "fullDescription": null, "isPlatformCompatible": true, "eula": null, "screenshots": [{ "url": "https://addons.cdn.mozilla.net/user-media/previews/full/82/82158.png?src=api&modified=1352755389", "width": "656", "height": "525", "thumbnailURL": "https://addons.cdn.mozilla.net/user-media/previews/thumbs/82/82158.png?src=api&modified=1352755389", "thumbnailWidth": "188", "thumbnailHeight": "150" }], "averageRating": 3, "learnmoreURL": "https://addons.mozilla.org/en-US/firefox/addon/english-us-language-pack/?src=api", "homepageURL": "https://addons.mozilla.org/en-US/firefox/addon/english-us-language-pack/?src=api", "sourceURI": "https://addons.mozilla. |
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
| { | |
| "schema": 5, | |
| "addons": [{ | |
| "id": "langpack-en-US@firefox.mozilla.org", | |
| "icons": { | |
| "32": null, | |
| "64": null | |
| }, | |
| "name": "English (US) Language Pack", | |
| "type": "locale", |
This file has been truncated, but you can view the full file.
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
| 427771 | |
| 0/nm | |
| 0th/pt | |
| 1/n1 | |
| 1st/p | |
| 1th/tc | |
| 2/nm | |
| 2nd/p | |
| 2th/tc | |
| 3/nm |
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
| # Hangman Game | |
| # | |
| # The classic game of Hangman. The computer picks a random word | |
| # and the player wrong to guess it, one letter at a time. If the player | |
| # can't guess the word in time, the little stick figure gets hanged. | |
| # -*- coding: utf-8 -*- | |
| # imports | |
| import random |
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
| # Tic-Tac-Toe | |
| # Plays the game of tic-tac-toe against a human opponent | |
| # global constants | |
| X = "X" | |
| O = "O" | |
| EMPTY = " " | |
| TIE = "TIE" | |
| NUM_SQUARES = 9 | |
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
| ; KeypressOSD.ahk | |
| ;---------------------------------------------------------- | |
| ; ChangeLog : v2.05 (2016-10-01) - Fixed not detecting "Ctrl + ScrollLock/NumLock/Pause" | |
| ; v2.04 (2016-10-01) - Added NumpadDot and AppsKey | |
| ; v2.03 (2016-09-17) - Added displaying "Double-Click" of the left mouse button. | |
| ; v2.02 (2016-09-16) - Added displaying mouse button, and 3 settings (ShowMouseButton, FontSize, GuiHeight) | |
| ; v2.01 (2016-09-11) - Display non english keyboard layout characters when combine with modifer keys. | |
| ; v2.00 (2016-09-01) - Removed the "Fade out" effect because of its buggy. | |
| ; - Added support for non english keyboard layout. | |
| ; - Added GuiPosition setting. |