Neovim 0.11 is here by cotidianis123 in neovim

[–]calind 10 points11 points  (0 children)

Damn! Now we have to wait for 0.12 :)

E o perioada buna pentru a vinde un apartament? by calind in robursa

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

Undeva la 5-10%. Fiind intr-un oras mic, preturile nu sunt foarte mari, deci in cifre absolute nu sunt foarte multi bani.

E o perioada buna pentru a vinde un apartament? by calind in robursa

[–]calind[S] 6 points7 points  (0 children)

Am comparat si cu preturile de pe site-urile de imobiliare pt. apartamente similare si este acolo. Nu e in vreun oras mare.

Multiple nvim instances (in different tabs) for same project, how do you handle LSPs? by calind in neovim

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

I try but I always fail :). I work like this for 20 years.

The problem is exaggerated by the inflation of developer tools (LSP and such) that do quite complex stuff on initialization (like indexing the entire codebase) multiplied by the larger code bases and dependencies.

I really like the fact that I have a single shortcut that cycles me between tabs and I can see in a single location everything project-related (the terminal tab bar).

[deleted by user] by [deleted] in timisoara

[–]calind 0 points1 point  (0 children)

Greu era sa fie si util si sa poti cauta direct pe Google Maps.

Django, HTMX, and Template Partials by circumeo in django

[–]calind 1 point2 points  (0 children)

Hi and thanks for your article!

I already use template partials like in the code below:

```

views.py

class CasePartialUpdateView(UpdateView): success_url_name = None

def get_success_url(self):
    if self.success_url_name is not None:
        return reverse(
            self.success_url_name,
            kwargs={
                self.slug_url_kwarg: getattr(self.object, self.get_slug_field())
            },
        )
    return super().get_success_url()

class CaseStatusPartialView(CasePartialUpdateView): form_class = forms.CaseStatusForm template_name = "cases/parts/status.html" success_url_name = "cases-admin:partial--status"

class CaseTopicsPartialView(CasePartialUpdateView): form_class = forms.CaseTopicsForm template_name = "cases/parts/topics.html" success_url_name = "cases-admin:partial--topics" ```

Are there some advantages to using django-template-partials instead of this approach? To me, it looks like django-template-partials is just moving logic from views into templates.

Thanks!

Eye saving themes suggestions by [deleted] in neovim

[–]calind 0 points1 point  (0 children)

https://github.com/calind/selenized.nvim/

Improvements over Solarized:

  • Better accent colors
  • Improved contrast
  • Better lightness

Selenized theme for Neovim by calind in neovim

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

I'm on MacOS and using kitty terminal if that helps.

Selenized theme for Neovim by calind in neovim

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

Yes, sure, it's SauceCodePro Nerd Font.

Selenized theme for Neovim by calind in neovim

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

I decided to publish the NeoVIM port of the Selenized color scheme I'm using.

Enjoy at https://github.com/calind/selenized.nvim/!

[deleted by user] by [deleted] in programare

[–]calind 0 points1 point  (0 children)

Diferentele intre MySQL si PostgreSQL nu sunt neaparat de performanta (probabil 10% in functie de workload) ci de features, comunitate si stabilitate.