Francis Tseng

Results 49 comments of Francis Tseng

this is a great webcomic: http://butthorn.tumblr.com/ also asking a couple other folks now

Please ignore the first of these commits – that one wasn't properly synced with the develop branch. The latter commit is starting work on a port to Python 3. All...

I think the two biggest issues with my port so far are: - Python 2.7 compatible string unicode/byte handling - The BeautifulSoup parser...I believe my workaround sidesteps it entirely in...

For anyone still dealing with this issue, so far this has worked: ``` set cmdheight=0 " Temporarily set cmdheight=1 when entering the command line au CmdlineEnter * setlocal cmdheight=1 "...

I'm having this issue as well. Working on a Retina MBPr and trying to clip a Group containing an Image. I'm unable to detect events over the Image unless I...

@kaplag, I haven't tried that solution cause I want to avoid editing the library itself if I can...for now, I'll just go with overriding the `pixelRatio` to be 1.

I did a bit more investigating and it looks like the problem is because I have a hidden directory in my path (`.thumbs`). If I move my files to a...

I've narrowed down the problem to [this line](https://github.com/tauri-apps/tauri/blob/db7765edad14e8fb860c436a0de4fe5cd1e86992/core/tauri/src/scope/fs.rs#L225): ``` let options = glob::MatchOptions { // this is needed so `/dir/*` doesn't match files within subdirectories such as `/dir/subdir/file.txt` // see:...

I'm trying to migrate to dolly 0.6 and don't understand how these mint types are meant to be used: ``` let v = glam::Vec3::Z * -ev.y * ZOOM_DAMP; state.rig.driver_mut::().offset +=...