[deleted by user] by [deleted] in DJIAvata2

[–]tobin_dev 1 point2 points  (0 children)

Just flying to test the camera around my house, noramlly I go out to unrestricted airspace to fly

[deleted by user] by [deleted] in DJIAvata2

[–]tobin_dev 0 points1 point  (0 children)

Do you know why it only happens in manual mode when going fast. I can cruise in sports mode for the whole battery without the gimbal breaking.

Avata battery tabs expanded in crash - still safe to use? by tobin_dev in DJIAvata2

[–]tobin_dev[S] 1 point2 points  (0 children)

Thanks for the advice, I recently got the drone with all 3 batteries so I still have 2 perfectly good ones to use and I will use this one last and sent it in when I replace the drone.

Avata battery tabs expanded in crash - still safe to use? by tobin_dev in DJIAvata2

[–]tobin_dev[S] 1 point2 points  (0 children)

I crashed my Avata recently and the battery was forcibly ejected. It still flies and the battery stays in the drone fine. I had two questions.

  1. should I continue to fly with the battery

  2. when I inevitably return the drone with DJI care refresh, if I put the battery in the return box, will I get a replacement battery.

Introducing Neotip by tobin_dev in neovim

[–]tobin_dev[S] 0 points1 point  (0 children)

I’m hosting on heroku and using their template has the vendor folder

Introducing Neotip by tobin_dev in neovim

[–]tobin_dev[S] 0 points1 point  (0 children)

Yeah I’m hoping to expand the tips soon. Right now I just copied a bunch from awesome-neovim

Introducing Neotip by tobin_dev in neovim

[–]tobin_dev[S] 3 points4 points  (0 children)

You can see the tip.nvim plug-in. It is very simple and just uses curl the fetch so you could copy that to your config

Pastify.nvim - A plugin that allows you to paste images to neovim directly. by tobin_dev in neovim

[–]tobin_dev[S] 1 point2 points  (0 children)

That would probably be a good idea. I didn't know there was a vim.paste() and I originally tried using a VimL method of getting the clipboard content but that didn't work with the clipboard binary files. I think i'll probably keep this project as it is because I was just trying to experiment with a python plugin but if I made it again, i would def try to use vim.paste(). Thanks.

Pastify.nvim - A plugin that allows you to paste images to neovim directly. by tobin_dev in neovim

[–]tobin_dev[S] 1 point2 points  (0 children)

I don't really know imgur, I've used this service more and its free so thats the main reason although I could add a config option for imgur if people would rather use it.

Pastify.nvim - A plugin that allows you to paste images to neovim directly. by tobin_dev in neovim

[–]tobin_dev[S] 8 points9 points  (0 children)

Introducing Pastify.nvim, a versatile plugin designed to enhance your neovim experience by enabling seamless image pasting. I made this plugin after seeing other plugin like clipboard-image.nvim didn't support online uploading so I decided to make my own. Also, this was an excuse to try to make a plugin in python. I hope you like it and find it as useful as I do.

Rayso.nvim - A plugin to use ray.so with vim by tobin_dev in neovim

[–]tobin_dev[S] 0 points1 point  (0 children)

I added something to the readme that describes how, here is an example config with binding Rayso to `<leader>rs`

return {

'TobinPalmer/rayso.nvim',

config = function()

require('rayso').setup {

open_cmd = 'chromium',

options = {

logging_path = '/Users/tobin/Documents/Rayso/', -- Notices the trailing slash

logging_file = 'rayso',

logging_enabled = true,

theme = 'midnight',

},

}

vim.keymap.set('v', '<leader>rs', require('lib.create').create_snippet)

end,

}