I hereby claim:
- I am kylehowells on github.
- I am ikyle (https://keybase.io/ikyle) on keybase.
- I have a public key whose fingerprint is 5F14 2172 F0A6 9E0E C80E D42B 1B56 EC16 B847 BB60
To claim this, I am signing this object:
| Arabic (Saudi Arabia) (ar-SA) | |
| Catalan (Spain) (ca-ES) | |
| Czech (Czechia) (cs-CZ) | |
| Danish (Denmark) (da-DK) | |
| German (Austria) (de-AT) | |
| German (Switzerland) (de-CH) |
| import SwiftUI | |
| struct ContentView: View { | |
| let backgroundGradient = Gradient(colors: [ | |
| Color(red: 65.0/255.0, green: 65.0/255.0, blue: 84.0/255.0, opacity: 1.0), | |
| Color(red: 20.0/255.0, green: 20.0/255.0, blue: 24.0/255.0, opacity: 1.0) | |
| ]) | |
| let blueGradient = Gradient(colors: [ |
| struct GradientText: View { | |
| @State var text: String | |
| @State var gradient:LinearGradient = LinearGradient( | |
| gradient: Gradient(colors: [.white, .gray]), | |
| startPoint: .top, | |
| endPoint: .bottom | |
| ) | |
| var body: some View { |
| html[stopthemadness-href^="https://twitter.com"] div[data-testid="sidebarColumn"] div[aria-label="Timeline: Trending now"] { | |
| display: none !important; | |
| } |
| @charset "UTF-8"; | |
| html[stopthemadness-href^="https://github.com"] .Box--responsive .Box-header { | |
| background: linear-gradient(#f8f8f8, #f5f5f5) !important; | |
| border-bottom: 1px solid #dfdfdf; | |
| } | |
| html[stopthemadness-href^="https://github.com"] .btn-primary { | |
| background: linear-gradient(#28d959, #25be50); | |
| } |
I hereby claim:
To claim this, I am signing this object:
| import os | |
| import re | |
| import datetime | |
| import piexif | |
| filepath = os.path.abspath(".") | |
| # Find files with `screenshot` in the name. | |
| files = [f for f in os.listdir(filepath) if "screenshot" in f and f.endswith(".jpg")] | |
| print(files) |
| import mistletoe | |
| with open('test.md', 'r') as myfile: | |
| text = myfile.read() | |
| doc = mistletoe.Document(text) | |
| # Returns the text from markdown, stripped of the markdown syntax itself | |
| def ast2text(node): | |
| content = "" |
| import commonmark | |
| with open('test.md', 'r') as myfile: | |
| text = myfile.read() | |
| parser = commonmark.Parser() | |
| ast = parser.parse(text) | |
| # Returns the text from markdown, stripped of the markdown syntax itself | |
| def ast2text(astNode): |
| using System; | |
| using ObjCRuntime; | |
| using Foundation; | |
| using CoreFoundation; | |
| using System.IO; | |
| namespace LoadRuntimeXAML.iOS | |
| { | |
| public class FileWatcher : IDisposable | |
| { |