This file contains 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
// | |
// TextBuilder.swift | |
// | |
// | |
// Created by Valentin Walter on 14.02.23. | |
// | |
import SwiftUI | |
/// Build Text instances in a declarative manner, similar to regular views, from |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/swift | |
// Required parameters: | |
// @raycast.schemaVersion 1 | |
// @raycast.title Make Gitignore | |
// @raycast.mode fullOutput | |
// Optional parameters: | |
// @raycast.icon 👻 | |
// @raycast.argument1 { "type": "text", "placeholder": "Search Operating Systems, IDEs, or Programming Languages", "optional": false } |
This file contains 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
on convertRGBColorToHexValue(theRGBValues) | |
set theHexList to {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F"} | |
set theHexValue to "" | |
repeat with a from 1 to count of theRGBValues | |
set theCurrentRGBValue to (item a of theRGBValues) div 256 | |
if theCurrentRGBValue is 256 then set theCurrentRGBValue to 255 | |
set theFirstItem to item ((theCurrentRGBValue div 16) + 1) of theHexList | |
set theSecondItem to item (((theCurrentRGBValue / 16 mod 1) * 16) + 1) of theHexList | |
set theHexValue to (theHexValue & theFirstItem & theSecondItem) as string | |
end repeat |
This file contains 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
// | |
// QuadraticFormula.swift | |
// Convenience around the QuadraticFormula | |
// | |
// Created by Valentin Walter on 11/12/20. | |
// | |
import Foundation | |
/// Provides convenience around the [Quadratic Formula](https://en.wikipedia.org/wiki/Quadratic_formula). |