I hereby claim:
- I am hashnuke on github.
- I am hashnuke (https://keybase.io/hashnuke) on keybase.
- I have a public key ASCYpt4PklMYqN6rB6wy0mf9_rBfUepaKcY3u8GYNeb1QQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
import AppKit | |
import SwiftUI | |
// Delete this line if not using a playground | |
import PlaygroundSupport | |
struct ContentView: View { | |
var body: some View { | |
// if spacing is not set to zero, there will be a gap after the first row |
import Combine | |
import Foundation | |
import PlaygroundSupport | |
PlaygroundPage.current.needsIndefiniteExecution = true | |
var publisher = PassthroughSubject<Int, Error>() | |
let cancellable = publisher | |
.flatMap { Just($0).setFailureType(to: Error.self) } | |
.handleEvents( |
Add this to the .irbrc file in the rails app directory.
rails_env = "🤗"
if ENV['RAILS_ENV'] == 'production'
rails_env = "🥶"
elsif ENV['RAILS_ENV'] == 'staging'
rails_env = "🧘"
end
import jwt from '@tsndr/cloudflare-worker-jwt' | |
// Add following config to wrangler.toml | |
// | |
// r2_buckets = [ | |
// { binding = "STORAGE_BUCKET", bucket_name = "your_bucket_name" } | |
// ] | |
// | |
// Also requires download_jwt_secret in the worker env |