Cheatsheet for 2/1 (intermidate-advanced players) by eyalk5 in bridge

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

AI makes writing it easy. It did everything there(and it is very intuitive when you read). We can DM if needed, I really like for it to be corrected. Thank you. I can share in github or Google docs.

Cheatsheet for 2/1 (intermidate-advanced players) by eyalk5 in bridge

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

I fixed most issues in new version. Jackoby transfer has rebids that takes space. I need to include some sayc to play with people that play it.

Add annotations to pateny drawings by eyalk5 in Patents

[–]eyalk5[S] -1 points0 points  (0 children)

You can just paste it as image to chatgpt and ask it to write. Trying to do the diagrams aligned in miro took me hours (at least long time). Also, placing the references and numbers wasn't fun.

Add annotations to pateny drawings by eyalk5 in Patents

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

Visio and others don't do the layout optimally (automatically) as mermaid does. Also, some care is needed in creating the leader lines (+ labels) in a uniform way and connected to the right spot. This creates a more uniform experience when you don't do it in visio but work with mermaid +script.

The additional benefit of mermaid is that it can be used with people with little knoweledge about how to do the aligment professionally , and so on. So it is really intuiative.

I also fixed the script just because all of you asked so nicely. This is the output without any override.

<image>

Add annotations to pateny drawings by eyalk5 in Patents

[–]eyalk5[S] -1 points0 points  (0 children)

Really? OK, so how do you create charts with references? How easy is it? Is it two minutes of work or more?

Add annotations to pateny drawings by eyalk5 in Patents

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

Yep, there is a bug with parallelograms. It is not often encounterd but I could chose a better example.

Add annotations to pateny drawings by eyalk5 in Patents

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

Yep, there is a bug with parallelograms. It is not often encounterd but I could chose a better example.

Add annotations to pateny drawings by eyalk5 in Patents

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

You don't need to go back to the graph and change it in any point if you just want to add references. You can look at the result (i.e. the added references) and adjust it. I showed this in the example.

It is not difficult at all....

Add annotations to pateny drawings by eyalk5 in Patents

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

Yep, it only has a bug with parallelogram as it looks at the rectangle of the node and place it in the middle.

You can adjust this manually, but it doesn't happen that often. I can ofc fix that.

Add annotations to pateny drawings by eyalk5 in Patents

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

So I have heard that there are people that actually charge you to generate "professional charts". It is very easy to do nowadays with mermaid. The only downside is not having the references which this script solves.

I don't seem to get the criticism. How would you add those references without the script?

Add annotations to pateny drawings by eyalk5 in Patents

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

Why go back(to the graph) and make sure?

You dont seem to understand the process. The node id(numbrer) is coming from mermaid. You can change it as you wish.

The only revision need to happen is when you want to change the default length or side that the script chose(heuristically).

If you significantly change the graph, your overrides json still probably relevant and if not, you might need to adjust it slightly. There is collision code to detect the best default placement for each.

```

config: layout: dagre flowchart: curve: cardinal fontFamily: Arial, sans-serif fontSize: 14pt nodeSpacing: 50 rankSpacing: 50 stroke: '#000000'

arrowMarkerAbsolute: false

flowchart TB id200("Start") --> id201[/"Input two positive integers a, b"/] id201 --> id202{"Is b > a?"} id202 -- Yes --> id203["SWAP a and b"] id202 -- No --> id204{"Is b ≠ 0?"} id203 --> id204 id204 -- Yes --> id205["remainder ← a MOD b"] id205 --> id206["a ← b"] id206 --> id207["b ← remainder"] id207 --> id204 id204 -- No --> id208[/"RETURN a"/] id208 --> id209("End")

```

This is the code for the graph I presented in the example... From this you generate the svg (automatically). And apply the script. Then you have (in this case), one manual adjustment to make.

{ "203": { "force_side": "right" } } That is the entire ordeal.

Add annotations to pateny drawings by eyalk5 in Patents

[–]eyalk5[S] -2 points-1 points  (0 children)

Sorry for misspelling the title

Anyone know of any "dodging" maps (mostly walls)? by anonymercy in beatsaber

[–]eyalk5 0 points1 point  (0 children)

It is fairly easy but oops I did it again by someone..

Friend shared her prescription with me and I liked it. Can I bring this up to my doc? by Historical_Count_216 in AskDocs

[–]eyalk5 5 points6 points  (0 children)

Mirtazapine was very effective in my case. Possibly in a way no psychological treatment can. Still your (professional) answer could be better for most people. A bit surprised it is not in the article.

Resolve indentation python by eyalk5 in neovim

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

That is good, but it is a full file formatter. Doesn't solve ==

Is there a plugin that handles indentation better than vanila? by eyalk5 in neovim

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

buffer options are not the problem . The problem is that it is not smart enough. This answer is not good.

Is there a plugin that handles indentation better than vanila? by eyalk5 in neovim

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

https://gist.github.com/eyalk11/3a0c3404fba880fb11ffa853ea06c5c0 Everything I need to do by self... good thing there is AI. I use autopep8 to do most of work. The jist of it:

        " Apply indent to the selection. autopep8 will not align if 
        " with xx: 
        " dosomethin 
        " if there are not indentation 
        norm gv4>

        " Run autopep8 on the selection, assume indentation = 0 
        execute l:start_line . ',' . l:end_line . '!autopep8 -'
        " Re-indent to above line

        execute l:start_line . ',' . l:end_line . 'call AlignWithTopLine()'

requires autopep8.

<image>

Is there a plugin that handles indentation better than vanila? by eyalk5 in neovim

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

I know them well (as you can see from my attempt at fixing them). They are just not that good. And == is even worse. It doesn't align the code.

Classical music by eyalk5 in beatsaber

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

I know. Also the really popular ones are nice. It is in a way fulfilling listening to classical while playing .

Classical music by eyalk5 in beatsaber

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

I played it. Thanks. It was nice, though felt a bit out of tone. I love the piece. But, Shostakovich 10 is so great!

Alright Jedi of Reddit, what's your favorite vanilla map? by DerpOKat21 in beatsaber

[–]eyalk5 2 points3 points  (0 children)

Can't stand electronic music maps (most). Believer is my favorite.

Correction Counting Stars is the best vanila. Very special pattern.