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
| function recurring(input: string) { | |
| let save: string[] = []; | |
| for (let i of input) { | |
| if (save.includes(i)) { | |
| return i; | |
| } else { | |
| save.push(i); | |
| } | |
| } | |
| } |
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
| function recurring(input) { | |
| let save = []; | |
| for (let i of input) { | |
| if (save.includes(i)) { | |
| return i; | |
| } | |
| else { | |
| save.push(i); | |
| } | |
| } |
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
| def recurring(input): | |
| save = [] | |
| for i in input: | |
| if i in save: | |
| return i | |
| else: | |
| save.append(i) |
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
| # Generated by Powerlevel10k configuration wizard on 2019-12-15 at 14:09 CST. | |
| # Based on romkatv/powerlevel10k/config/p10k-classic.zsh, checksum 38148. | |
| # Wizard options: nerdfont-complete + powerline, small icons, classic, darkest, time, | |
| # slanted separators, slanted heads, sharp tails, 2 lines, solid, left frame, sparse, | |
| # many icons, concise, instant_prompt=quiet. | |
| # Type `p10k configure` to generate another config. | |
| # | |
| # Config for Powerlevel10k with classic powerline prompt style. Type `p10k configure` to generate | |
| # your own config based on it. | |
| # |
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
| -- Video Player version 1.0.0 by CrazedProgrammer | |
| -- You can find info and documentation on these pages: | |
| -- | |
| -- You may use this in your ComputerCraft OSes and modify it without asking. | |
| -- However, you may not publish this program under your name without asking me. | |
| -- If you have any suggestions, bug reports or questions then please send an email to: | |
| -- [email protected] | |
| local function loadAPIString(name, str) | |
| local env = {} |
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
| /** | |
| * @name Esperantigi | |
| */ | |
| /*@cc_on | |
| @if (@_jscript) | |
| // Offer to self-install for clueless users that try to run this directly. | |
| var shell = WScript.CreateObject("WScript.Shell"); | |
| var fs = new ActiveXObject("Scripting.FileSystemObject"); | |
| var pathPlugins = shell.ExpandEnvironmentStrings("%APPDATA%\BetterDiscord\plugins"); |
OlderNewer