Aaron Rudkin
Aaron Rudkin
I have a project using bootstrap-slider. One of our use cases involves using a slider to drag through points in time from 1800 until the present to see political party...
Bullet is awesome! Here's a feature request: It'd be nice to be able to clear the last prompt from the terminal. I have a script that basically gives the user...
The `run()` method in `ffsubsync.py` expects as an argument an argparse.Namespace. As a result, any attempt to call ffsubsync as a Python module rather than a standalone process requires shimming...
Your candy power rankings data has the wrong unit of analysis: your initial study matched Candy A against Candy B, Candy C, Candy D, etc. But your published research aggregates...
Minimum non-working example: ``` import pygame_sdl2 pygame_sdl2.init() pygame_sdl2.display.init() # Make a window test_window = pygame_sdl2.display.set_mode((500, 500)) test_window.fill((0, 0, 0)) # Colors white = (255, 255, 255) red = (255, 0,...
### Describe the feature It'd be great to add a feature comparison / philosophical comparison between hidden and other competitors. Two that come to mind are Bartender and Vanilla. Obviously...
Try to install libspotify dependency on MacOS: ``` aaron@mb:/usr/local/opt$ brew install libspotify Error: No available formula with the name "libspotify" ==> Searching for similarly named formulae... Error: No similarly named...
Particularly with lengthy expand_design setups, I think it'd be handy to be able to have an optional progress bar. Absent a progress bar I find myself running reduced workloads and...
I have a very large file that requires coarsening (1.5GB, geojson of US ZIP codes). Running `geojson-precision` results in an error "Error: Cannot create a string longer than 0x3fffffe7 characters"....
Current CRAN version ``` # Example pre-existing data df = data.frame(x = rnorm(100, 10, 2), y = 1:100) # Works, correctly: fabricate( df, z = x - dplyr::lag(x, 1) )...