- Copy the script (scroll below) into $HOME directory on your linux or mac.
- Run the command below within any git repository.
bash ~/howlong.sh| # Stimulus.js rules for Cursor | |
| ## Always register new stimulus controllers index.js | |
| * When adding new stimulus controllers, always register the controller in @index.js | |
| ## Adding/modifying html markup via stimulus controllers | |
| Prefer not to add hardcoded html markup to stimulus controllers. |
| 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 |
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 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( |
| 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 |
I hereby claim:
To claim this, I am signing this object:
node-gyp needs more ram or swap space to install. Use these commands to create swap space as root. (if using sudo, then put the following in a file and then run it using sudo).
Assumes you have Ubuntu. Should work for most Debian-based OSes.
These are quick copy-paste commands to create 2gb swap space. Look at the end for info.
# feel free to change below values
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Buildings and the moon OR a bar chart</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script> | |
| </head> | |
| <body> | |
| <svg> |
| defmodule Mix.Tasks.Phoenix.Release do | |
| use Mix.Task | |
| @shortdoc "Creates a release using exrm" | |
| def run(args) do | |
| Application.put_env(:phoenix, :serve_endpoints, true, persistent: true) | |
| Mix.Task.run "release", args | |
| end | |
| end |