├── .gitattributes ├── .gitignore ├── Boop ├── Boop.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── Boop.xcscheme ├── Boop │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon_128x128.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_16x16.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_256x256@2x.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ └── icon_512x512@2x.png │ │ ├── Contents.json │ │ └── Icons │ │ │ ├── Contents.json │ │ │ ├── icons8-HTML.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-source-code-filled(1).pdf │ │ │ ├── icons8-abacus.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-abacus.pdf │ │ │ ├── icons8-broom.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-broom.pdf │ │ │ ├── icons8-camel.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-camel.pdf │ │ │ ├── icons8-collapse.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-merge_horizontal.pdf │ │ │ ├── icons8-color-wheel.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-color_mode.pdf │ │ │ ├── icons8-colosseum.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-colosseum.pdf │ │ │ ├── icons8-command.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-run_command.pdf │ │ │ ├── icons8-counter.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-counter.pdf │ │ │ ├── icons8-dice.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-dice.pdf │ │ │ ├── icons8-elephant.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-elephant.pdf │ │ │ ├── icons8-filtration.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-filtration.pdf │ │ │ ├── icons8-fingerprint.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-fingerprint.pdf │ │ │ ├── icons8-flask.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-test_tube.pdf │ │ │ ├── icons8-flip.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-flip-vertical.pdf │ │ │ ├── icons8-globe.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-globe.pdf │ │ │ ├── icons8-identification.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-identification_documents.pdf │ │ │ ├── icons8-kebab.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-kebab.pdf │ │ │ ├── icons8-link.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-link.pdf │ │ │ ├── icons8-metamorphose.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-metamorphose.pdf │ │ │ ├── icons8-percentage.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-percentage.pdf │ │ │ ├── icons8-pineapple.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-pineapple.pdf │ │ │ ├── icons8-quote.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-get-quote.pdf │ │ │ ├── icons8-roman.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-roman_helmet.pdf │ │ │ ├── icons8-scissors.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-scissors.pdf │ │ │ ├── icons8-snake.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-snake.pdf │ │ │ ├── icons8-sort-characters.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-alphabetical_sorting.pdf │ │ │ ├── icons8-sort-numbers.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-reversed_numerical_sorting.pdf │ │ │ ├── icons8-table.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-merge_cells.pdf │ │ │ ├── icons8-term.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-term.pdf │ │ │ ├── icons8-translation.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-translation.pdf │ │ │ ├── icons8-type.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-font_size.pdf │ │ │ ├── icons8-unknown.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-question-mark.pdf │ │ │ ├── icons8-watch.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-pocket-watch.pdf │ │ │ └── icons8-website.imageset │ │ │ ├── Contents.json │ │ │ └── icons8-website.pdf │ ├── Boop.entitlements │ ├── BoopRelease.entitlements │ ├── Controllers │ │ ├── MainViewController.swift │ │ ├── PopoverViewController.swift │ │ ├── Preferences │ │ │ ├── PreferencesTabViewController.swift │ │ │ ├── ScriptsSettingsViewController.swift │ │ │ └── ThemeSettingsViewController.swift │ │ └── ScriptsTableViewController.swift │ ├── Editor │ │ ├── BoopLexer.swift │ │ ├── BoopToken.swift │ │ └── Themes │ │ │ ├── Colors.swift │ │ │ └── DefaultTheme.swift │ ├── Info.plist │ ├── System │ │ ├── Models │ │ │ ├── AppVersion.swift │ │ │ ├── Script+Require.swift │ │ │ ├── Script.swift │ │ │ └── ScriptExecution.swift │ │ ├── ScriptManager.swift │ │ └── UpdateBuddy.swift │ ├── Views │ │ ├── OverlayView.swift │ │ ├── PopoverContainerView.swift │ │ ├── PopoverView.swift │ │ ├── ScriptTableView.swift │ │ ├── ScriptTableViewCell.swift │ │ ├── SearchField.swift │ │ ├── StatusView.swift │ │ └── UpdateTextField.swift │ └── scripts │ │ ├── ASCIIToHex.js │ │ ├── AddSlashes.js │ │ ├── AndroidIOSStrings.js │ │ ├── Base64Decode.js │ │ ├── Base64Encode.js │ │ ├── BinaryToDecimal.js │ │ ├── CSVtoJSON.js │ │ ├── CamelCase.js │ │ ├── Collapse.js │ │ ├── CountCharacters.js │ │ ├── CountLines.js │ │ ├── CountWords.js │ │ ├── DateToTimestamp.js │ │ ├── DateToUTC.js │ │ ├── Deburr.js │ │ ├── DecimalToBinary.js │ │ ├── DecimalToHex.js │ │ ├── Downcase.js │ │ ├── EvalJavascript.js │ │ ├── FishHexPathConverter.js │ │ ├── FormatCSS.js │ │ ├── FormatJSON.js │ │ ├── FormatSQL.js │ │ ├── FormatXML.js │ │ ├── HTMLDecode.js │ │ ├── HTMLEncode.js │ │ ├── HTMLEncodeAll.js │ │ ├── HexToASCII.js │ │ ├── HexToDecimal.js │ │ ├── IOSAndroidStrings.js │ │ ├── JSONtoCSV.js │ │ ├── JSONtoYAML.js │ │ ├── JWTDecode.js │ │ ├── JsonToQuery.js │ │ ├── KebabCase.js │ │ ├── LoremIpsum.js │ │ ├── MD5.js │ │ ├── MarkdownQuote.js │ │ ├── MinifyCSS.js │ │ ├── MinifyJSON.js │ │ ├── MinifySQL.js │ │ ├── MinifyXML.js │ │ ├── NatSort.js │ │ ├── PhpUnserialize.js │ │ ├── QueryToJson.js │ │ ├── RemoveDuplicates.js │ │ ├── RemoveSlashes.js │ │ ├── ReplaceSmartQuotes.js │ │ ├── ReverseLines.js │ │ ├── ReverseString.js │ │ ├── Rot13.js │ │ ├── SHA1.js │ │ ├── SHA256.js │ │ ├── SHA512.js │ │ ├── ShuffleLines.js │ │ ├── SnakeCase.js │ │ ├── Sort.js │ │ ├── SortJSON.js │ │ ├── SpongeCase.js │ │ ├── StartCase.js │ │ ├── SumAll.js │ │ ├── Test.js │ │ ├── Trim.js │ │ ├── URLDecode.js │ │ ├── URLDefang.js │ │ ├── URLEncode.js │ │ ├── URLEntitiesDecode.js │ │ ├── URLEntitiesEncode.js │ │ ├── URLRefang.js │ │ ├── Upcase.js │ │ ├── YAMLtoJSON.js │ │ ├── hex2rgb.js │ │ └── lib │ │ ├── base64.js │ │ ├── hashes.js │ │ ├── he.js │ │ ├── js-yaml.js │ │ ├── lodash.boop.js │ │ ├── papaparse.js │ │ └── vkBeautify.js ├── BoopTests │ ├── BoopTests.swift │ ├── Info.plist │ └── ScriptManagerTests.swift ├── Documentation │ ├── ConvertingNodeModules.md │ ├── CustomScripts.md │ ├── Debugging.md │ ├── Images │ │ ├── UI.png │ │ ├── breakpoints.png │ │ ├── console.png │ │ ├── debugger.png │ │ ├── developMenu.png │ │ ├── modules.png │ │ └── safari.png │ ├── Modules.md │ └── Readme.md └── UI │ ├── Base.lproj │ └── MainMenu.xib │ └── Preferences.storyboard ├── DOING.md ├── LICENSE ├── README.md └── Scripts ├── CSVtoJSONheaderless.js ├── CalculateSize.js ├── CreateProjectGlossaryMarkdown.js ├── DIGI2ASCII.js ├── FromUnicode.js ├── JoinLines.js ├── JoinLinesWithComma.js ├── JoinLinesWithSpace.js ├── JsObjectToJSON.js ├── LineComparer.js ├── NewBoopScript.js ├── README.md ├── ShuffleCharacters.js ├── TimeToSecond.js ├── TrimEnd.js ├── TrimStart.js ├── Wadsworth.js ├── WkbToWkt.js ├── WktToWkb.js ├── contrastingColor.js ├── convertToMarkdownTable.js ├── generateHashtag.js ├── jsToPhp.js ├── listToHTMLList.js ├── rgb2hex.js ├── toUnicode.js ├── toggleCamelHyphen.js └── tsvToJson.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/.gitignore -------------------------------------------------------------------------------- /Boop/Boop.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Boop/Boop.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Boop/Boop.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Boop/Boop.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Boop/Boop.xcodeproj/xcshareddata/xcschemes/Boop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop.xcodeproj/xcshareddata/xcschemes/Boop.xcscheme -------------------------------------------------------------------------------- /Boop/Boop/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/AppDelegate.swift -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-HTML.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-HTML.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-HTML.imageset/icons8-source-code-filled(1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-HTML.imageset/icons8-source-code-filled(1).pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-abacus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-abacus.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-abacus.imageset/icons8-abacus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-abacus.imageset/icons8-abacus.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-broom.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-broom.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-broom.imageset/icons8-broom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-broom.imageset/icons8-broom.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-camel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-camel.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-camel.imageset/icons8-camel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-camel.imageset/icons8-camel.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-collapse.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-collapse.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-collapse.imageset/icons8-merge_horizontal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-collapse.imageset/icons8-merge_horizontal.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-color-wheel.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-color-wheel.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-color-wheel.imageset/icons8-color_mode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-color-wheel.imageset/icons8-color_mode.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-colosseum.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-colosseum.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-colosseum.imageset/icons8-colosseum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-colosseum.imageset/icons8-colosseum.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-command.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-command.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-command.imageset/icons8-run_command.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-command.imageset/icons8-run_command.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-counter.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-counter.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-counter.imageset/icons8-counter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-counter.imageset/icons8-counter.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-dice.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-dice.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-dice.imageset/icons8-dice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-dice.imageset/icons8-dice.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-elephant.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-elephant.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-elephant.imageset/icons8-elephant.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-elephant.imageset/icons8-elephant.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-filtration.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-filtration.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-filtration.imageset/icons8-filtration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-filtration.imageset/icons8-filtration.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-fingerprint.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-fingerprint.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-fingerprint.imageset/icons8-fingerprint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-fingerprint.imageset/icons8-fingerprint.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-flask.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-flask.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-flask.imageset/icons8-test_tube.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-flask.imageset/icons8-test_tube.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-flip.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-flip.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-flip.imageset/icons8-flip-vertical.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-flip.imageset/icons8-flip-vertical.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-globe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-globe.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-globe.imageset/icons8-globe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-globe.imageset/icons8-globe.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-identification.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-identification.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-identification.imageset/icons8-identification_documents.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-identification.imageset/icons8-identification_documents.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-kebab.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-kebab.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-kebab.imageset/icons8-kebab.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-kebab.imageset/icons8-kebab.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-link.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-link.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-link.imageset/icons8-link.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-link.imageset/icons8-link.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-metamorphose.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-metamorphose.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-metamorphose.imageset/icons8-metamorphose.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-metamorphose.imageset/icons8-metamorphose.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-percentage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-percentage.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-percentage.imageset/icons8-percentage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-percentage.imageset/icons8-percentage.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-pineapple.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-pineapple.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-pineapple.imageset/icons8-pineapple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-pineapple.imageset/icons8-pineapple.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-quote.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-quote.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-quote.imageset/icons8-get-quote.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-quote.imageset/icons8-get-quote.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-roman.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-roman.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-roman.imageset/icons8-roman_helmet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-roman.imageset/icons8-roman_helmet.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-scissors.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-scissors.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-scissors.imageset/icons8-scissors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-scissors.imageset/icons8-scissors.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-snake.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-snake.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-snake.imageset/icons8-snake.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-snake.imageset/icons8-snake.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-sort-characters.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-sort-characters.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-sort-characters.imageset/icons8-alphabetical_sorting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-sort-characters.imageset/icons8-alphabetical_sorting.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-sort-numbers.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-sort-numbers.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-sort-numbers.imageset/icons8-reversed_numerical_sorting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-sort-numbers.imageset/icons8-reversed_numerical_sorting.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-table.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-table.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-table.imageset/icons8-merge_cells.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-table.imageset/icons8-merge_cells.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-term.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-term.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-term.imageset/icons8-term.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-term.imageset/icons8-term.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-translation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-translation.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-translation.imageset/icons8-translation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-translation.imageset/icons8-translation.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-type.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-type.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-type.imageset/icons8-font_size.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-type.imageset/icons8-font_size.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-unknown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-unknown.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-unknown.imageset/icons8-question-mark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-unknown.imageset/icons8-question-mark.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-watch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-watch.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-watch.imageset/icons8-pocket-watch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-watch.imageset/icons8-pocket-watch.pdf -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-website.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-website.imageset/Contents.json -------------------------------------------------------------------------------- /Boop/Boop/Assets.xcassets/Icons/icons8-website.imageset/icons8-website.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Assets.xcassets/Icons/icons8-website.imageset/icons8-website.pdf -------------------------------------------------------------------------------- /Boop/Boop/Boop.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Boop.entitlements -------------------------------------------------------------------------------- /Boop/Boop/BoopRelease.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/BoopRelease.entitlements -------------------------------------------------------------------------------- /Boop/Boop/Controllers/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Controllers/MainViewController.swift -------------------------------------------------------------------------------- /Boop/Boop/Controllers/PopoverViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Controllers/PopoverViewController.swift -------------------------------------------------------------------------------- /Boop/Boop/Controllers/Preferences/PreferencesTabViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Controllers/Preferences/PreferencesTabViewController.swift -------------------------------------------------------------------------------- /Boop/Boop/Controllers/Preferences/ScriptsSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Controllers/Preferences/ScriptsSettingsViewController.swift -------------------------------------------------------------------------------- /Boop/Boop/Controllers/Preferences/ThemeSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Controllers/Preferences/ThemeSettingsViewController.swift -------------------------------------------------------------------------------- /Boop/Boop/Controllers/ScriptsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Controllers/ScriptsTableViewController.swift -------------------------------------------------------------------------------- /Boop/Boop/Editor/BoopLexer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Editor/BoopLexer.swift -------------------------------------------------------------------------------- /Boop/Boop/Editor/BoopToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Editor/BoopToken.swift -------------------------------------------------------------------------------- /Boop/Boop/Editor/Themes/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Editor/Themes/Colors.swift -------------------------------------------------------------------------------- /Boop/Boop/Editor/Themes/DefaultTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Editor/Themes/DefaultTheme.swift -------------------------------------------------------------------------------- /Boop/Boop/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Info.plist -------------------------------------------------------------------------------- /Boop/Boop/System/Models/AppVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/System/Models/AppVersion.swift -------------------------------------------------------------------------------- /Boop/Boop/System/Models/Script+Require.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/System/Models/Script+Require.swift -------------------------------------------------------------------------------- /Boop/Boop/System/Models/Script.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/System/Models/Script.swift -------------------------------------------------------------------------------- /Boop/Boop/System/Models/ScriptExecution.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/System/Models/ScriptExecution.swift -------------------------------------------------------------------------------- /Boop/Boop/System/ScriptManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/System/ScriptManager.swift -------------------------------------------------------------------------------- /Boop/Boop/System/UpdateBuddy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/System/UpdateBuddy.swift -------------------------------------------------------------------------------- /Boop/Boop/Views/OverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Views/OverlayView.swift -------------------------------------------------------------------------------- /Boop/Boop/Views/PopoverContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Views/PopoverContainerView.swift -------------------------------------------------------------------------------- /Boop/Boop/Views/PopoverView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Views/PopoverView.swift -------------------------------------------------------------------------------- /Boop/Boop/Views/ScriptTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Views/ScriptTableView.swift -------------------------------------------------------------------------------- /Boop/Boop/Views/ScriptTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Views/ScriptTableViewCell.swift -------------------------------------------------------------------------------- /Boop/Boop/Views/SearchField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Views/SearchField.swift -------------------------------------------------------------------------------- /Boop/Boop/Views/StatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Views/StatusView.swift -------------------------------------------------------------------------------- /Boop/Boop/Views/UpdateTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/Views/UpdateTextField.swift -------------------------------------------------------------------------------- /Boop/Boop/scripts/ASCIIToHex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/ASCIIToHex.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/AddSlashes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/AddSlashes.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/AndroidIOSStrings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/AndroidIOSStrings.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/Base64Decode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/Base64Decode.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/Base64Encode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/Base64Encode.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/BinaryToDecimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/BinaryToDecimal.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/CSVtoJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/CSVtoJSON.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/CamelCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/CamelCase.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/Collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/Collapse.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/CountCharacters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/CountCharacters.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/CountLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/CountLines.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/CountWords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/CountWords.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/DateToTimestamp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/DateToTimestamp.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/DateToUTC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/DateToUTC.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/Deburr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/Deburr.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/DecimalToBinary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/DecimalToBinary.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/DecimalToHex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/DecimalToHex.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/Downcase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/Downcase.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/EvalJavascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/EvalJavascript.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/FishHexPathConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/FishHexPathConverter.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/FormatCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/FormatCSS.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/FormatJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/FormatJSON.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/FormatSQL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/FormatSQL.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/FormatXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/FormatXML.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/HTMLDecode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/HTMLDecode.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/HTMLEncode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/HTMLEncode.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/HTMLEncodeAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/HTMLEncodeAll.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/HexToASCII.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/HexToASCII.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/HexToDecimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/HexToDecimal.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/IOSAndroidStrings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/IOSAndroidStrings.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/JSONtoCSV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/JSONtoCSV.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/JSONtoYAML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/JSONtoYAML.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/JWTDecode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/JWTDecode.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/JsonToQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/JsonToQuery.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/KebabCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/KebabCase.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/LoremIpsum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/LoremIpsum.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/MD5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/MD5.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/MarkdownQuote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/MarkdownQuote.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/MinifyCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/MinifyCSS.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/MinifyJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/MinifyJSON.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/MinifySQL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/MinifySQL.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/MinifyXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/MinifyXML.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/NatSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/NatSort.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/PhpUnserialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/PhpUnserialize.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/QueryToJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/QueryToJson.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/RemoveDuplicates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/RemoveDuplicates.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/RemoveSlashes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/RemoveSlashes.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/ReplaceSmartQuotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/ReplaceSmartQuotes.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/ReverseLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/ReverseLines.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/ReverseString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/ReverseString.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/Rot13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/Rot13.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/SHA1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/SHA1.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/SHA256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/SHA256.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/SHA512.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/SHA512.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/ShuffleLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/ShuffleLines.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/SnakeCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/SnakeCase.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/Sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/Sort.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/SortJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/SortJSON.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/SpongeCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/SpongeCase.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/StartCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/StartCase.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/SumAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/SumAll.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/Test.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/Trim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/Trim.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/URLDecode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/URLDecode.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/URLDefang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/URLDefang.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/URLEncode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/URLEncode.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/URLEntitiesDecode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/URLEntitiesDecode.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/URLEntitiesEncode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/URLEntitiesEncode.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/URLRefang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/URLRefang.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/Upcase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/Upcase.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/YAMLtoJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/YAMLtoJSON.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/hex2rgb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/hex2rgb.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/lib/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/lib/base64.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/lib/hashes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/lib/hashes.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/lib/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/lib/he.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/lib/js-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/lib/js-yaml.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/lib/lodash.boop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/lib/lodash.boop.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/lib/papaparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/lib/papaparse.js -------------------------------------------------------------------------------- /Boop/Boop/scripts/lib/vkBeautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Boop/scripts/lib/vkBeautify.js -------------------------------------------------------------------------------- /Boop/BoopTests/BoopTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/BoopTests/BoopTests.swift -------------------------------------------------------------------------------- /Boop/BoopTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/BoopTests/Info.plist -------------------------------------------------------------------------------- /Boop/BoopTests/ScriptManagerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/BoopTests/ScriptManagerTests.swift -------------------------------------------------------------------------------- /Boop/Documentation/ConvertingNodeModules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Documentation/ConvertingNodeModules.md -------------------------------------------------------------------------------- /Boop/Documentation/CustomScripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Documentation/CustomScripts.md -------------------------------------------------------------------------------- /Boop/Documentation/Debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Documentation/Debugging.md -------------------------------------------------------------------------------- /Boop/Documentation/Images/UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Documentation/Images/UI.png -------------------------------------------------------------------------------- /Boop/Documentation/Images/breakpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Documentation/Images/breakpoints.png -------------------------------------------------------------------------------- /Boop/Documentation/Images/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Documentation/Images/console.png -------------------------------------------------------------------------------- /Boop/Documentation/Images/debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Documentation/Images/debugger.png -------------------------------------------------------------------------------- /Boop/Documentation/Images/developMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Documentation/Images/developMenu.png -------------------------------------------------------------------------------- /Boop/Documentation/Images/modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Documentation/Images/modules.png -------------------------------------------------------------------------------- /Boop/Documentation/Images/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Documentation/Images/safari.png -------------------------------------------------------------------------------- /Boop/Documentation/Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Documentation/Modules.md -------------------------------------------------------------------------------- /Boop/Documentation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/Documentation/Readme.md -------------------------------------------------------------------------------- /Boop/UI/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/UI/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Boop/UI/Preferences.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Boop/UI/Preferences.storyboard -------------------------------------------------------------------------------- /DOING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/DOING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/CSVtoJSONheaderless.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/CSVtoJSONheaderless.js -------------------------------------------------------------------------------- /Scripts/CalculateSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/CalculateSize.js -------------------------------------------------------------------------------- /Scripts/CreateProjectGlossaryMarkdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/CreateProjectGlossaryMarkdown.js -------------------------------------------------------------------------------- /Scripts/DIGI2ASCII.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/DIGI2ASCII.js -------------------------------------------------------------------------------- /Scripts/FromUnicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/FromUnicode.js -------------------------------------------------------------------------------- /Scripts/JoinLines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/JoinLines.js -------------------------------------------------------------------------------- /Scripts/JoinLinesWithComma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/JoinLinesWithComma.js -------------------------------------------------------------------------------- /Scripts/JoinLinesWithSpace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/JoinLinesWithSpace.js -------------------------------------------------------------------------------- /Scripts/JsObjectToJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/JsObjectToJSON.js -------------------------------------------------------------------------------- /Scripts/LineComparer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/LineComparer.js -------------------------------------------------------------------------------- /Scripts/NewBoopScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/NewBoopScript.js -------------------------------------------------------------------------------- /Scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/README.md -------------------------------------------------------------------------------- /Scripts/ShuffleCharacters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/ShuffleCharacters.js -------------------------------------------------------------------------------- /Scripts/TimeToSecond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/TimeToSecond.js -------------------------------------------------------------------------------- /Scripts/TrimEnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/TrimEnd.js -------------------------------------------------------------------------------- /Scripts/TrimStart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/TrimStart.js -------------------------------------------------------------------------------- /Scripts/Wadsworth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/Wadsworth.js -------------------------------------------------------------------------------- /Scripts/WkbToWkt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/WkbToWkt.js -------------------------------------------------------------------------------- /Scripts/WktToWkb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/WktToWkb.js -------------------------------------------------------------------------------- /Scripts/contrastingColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/contrastingColor.js -------------------------------------------------------------------------------- /Scripts/convertToMarkdownTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/convertToMarkdownTable.js -------------------------------------------------------------------------------- /Scripts/generateHashtag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/generateHashtag.js -------------------------------------------------------------------------------- /Scripts/jsToPhp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/jsToPhp.js -------------------------------------------------------------------------------- /Scripts/listToHTMLList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/listToHTMLList.js -------------------------------------------------------------------------------- /Scripts/rgb2hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/rgb2hex.js -------------------------------------------------------------------------------- /Scripts/toUnicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/toUnicode.js -------------------------------------------------------------------------------- /Scripts/toggleCamelHyphen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/toggleCamelHyphen.js -------------------------------------------------------------------------------- /Scripts/tsvToJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IvanMathy/Boop/HEAD/Scripts/tsvToJson.js --------------------------------------------------------------------------------