wayland
07/09/2024, 6:04 AMbk
07/12/2024, 10:35 PMbk
07/12/2024, 10:36 PMDan Oved
07/25/2024, 6:42 PMKonrad Komorowski
08/05/2024, 7:28 PMAndrew Kunzel
08/16/2024, 6:01 PMChristopher Katz
08/16/2024, 6:02 PMAnton Zhuravlev
08/22/2024, 5:57 AMCompletely free for companies, personal projects, and individuals with fewer than 10 collaborators on GitHub. We understand that every big company starts as a small company, and we want to support you every step of the way. Just email support@graphite.dev with your org name and we’ll set you up.Our company (5 devs) did qualified for a definition of a "small company", so we've contacted the support and they have set us up. Then, in the Billing page, Standard plan has appeared and activated, with a coupon code applied, and the label said the coupon code will expire in one year, and after that it will be ~1000$ per year. I've contacted you guys about the fact that in the announcement there was not a word about expiration. Thats why we've applied to the plan in the first place. Then Joyce (@Joyce Lu , I believe) from the support replied:
I believe the coupon will renew after 1 year if you still qualify for the free Standard plan 🙂That seemed super nice, and everyone lived happily ever after. Until our credit card was charged for 990 USD couple days ago, exactly one year after, without any notifications about whether we are still qualified for the definition of "small company" or not. That was quite unexpected. We are still 5 devs company by the way. I've asked Joyce by email, but that was 3 days ago, still no reply... So I decided to ask that here. Best regards.
Victor Ginelli
08/30/2024, 8:17 PMShota
11/05/2024, 4:32 PMShota
11/05/2024, 4:32 PMNejc Drobnic
11/15/2024, 12:49 PMJackson Huether
11/22/2024, 7:26 PMBrendan Mulholland
11/26/2024, 12:24 PMThe error handling assumesexists, but based on the API response format shown in the VCR cassette,error['type']
appears to be a string (e.g.finishReason
), not a hash. This will cause a NoMethodError when trying to access"STOP"
. Consider handling both string and hash error formats, or update the code to match the actual API response structure.error['type']
JD Russo
12/03/2024, 3:00 AMRyan Elian
12/06/2024, 8:44 AMLukas Mertens
12/17/2024, 3:33 PMEdoardo Foco
12/19/2024, 10:12 AMLuke Tan
01/20/2025, 1:37 AMszaman
01/21/2025, 7:52 AMBen Wilen
01/23/2025, 9:27 PMJD Russo
01/28/2025, 6:54 PMWenjun Wang
02/18/2025, 8:19 PMJustin Clapperton
02/28/2025, 11:29 AMChris Messina
03/19/2025, 9:00 PMTyler Nieman
04/04/2025, 3:29 PM-- Telescope picker for files in most recent git commit
local pickers = require 'telescope.pickers'
local finders = require 'telescope.finders'
local conf = require('telescope.config').values
local Job = require 'plenary.job'
local function git_last_commit_files()
---false alarm warning
---@diagnostic disable-next-line: missing-fields
Job:new({
command = 'git',
args = { 'diff-tree', '--no-commit-id', '--name-only', '-r', 'HEAD' },
on_exit = function(j)
local results = j:result()
vim.schedule(function()
pickers
.new({}, {
prompt_title = 'Files in Last Commit',
finder = finders.new_table { results = results },
sorter = conf.generic_sorter {},
previewer = conf.file_previewer {},
})
:find()
end)
end,
}):start()
end
vim.keymap.set('n', '<leader>sc', git_last_commit_files, { desc = '[S]earch [c]hanged files in last commit' })
Neovim telescope picker for only choosing from your most recent commit's files.
Handy for working in a Graphite stack.Nick Quidas
04/11/2025, 9:52 PMOliver Shaw
04/17/2025, 3:31 AMEric Simon
05/01/2025, 1:37 PMTyler Nieman
05/02/2025, 1:37 PMSPAM
— Someone is advertising their product via DMs in this Slack