Aleks-Daniel Jakimenko-Aleksejev

Results 190 issues of Aleks-Daniel Jakimenko-Aleksejev

In a way this resolves https://github.com/atomizer/sbpe/issues/8. After the fixes both `rbp_builder.py` and `builder.py` finish without any errors. That said, I haven't been able to actually run the game on Linux,...

Full paths can contain dots in parent directories (e.g. “/home/foo/.steam/”), so it is important to work with basenames only.

What about submitting the footprint for inclusion in the standard kicad footprint library? Also, can you add a license?

Bus pirate is unusable with OLS (possibly due to timeouts). This is best described here: http://dangerousprototypes.com/docs/Logic_analyzer_mode#Connection_and_timeout_problems Basically it says that you should change the timeout to 4 seconds (which is...

See https://colabti.org/irclogger/irclogger_log/perl6?date=2019-10-06#l401 And also probably https://colabti.org/irclogger/irclogger_log/perl6-dev?date=2019-10-08#l287

Any thoughts on what can be done to make it faster? (besides speeding up rakudo itself)

This breaks highlighting in perl6-mode: ```perl6 say 「\」; ```

``` perl6 say "hello world" ~~ / $=

Take this code: ``` say ‘hello’; say ‘hello’; say ‘hello’; say ‘hello’; say ‘hello’; ``` And start pasting it rapidly. After doing it several times you will see this: ![screenshot](https://files.progarm.org/2016-09-18-172248_110x568_scrot.png)...

``` perl6 say ‘‘hello’ world’ # OUTPUT: ‘hello’ world ``` ↑ This snippet is highlighted incorrectly. ``` perl6 say ‘ ‘hello’ world’; ``` ↑ But this one is fine.