Jakub T. Jankiewicz
Jakub T. Jankiewicz
**Describe the bug** Forem and DEV.to improperly parse escaped code blocks. **To Reproduce** in comment write: ````` ```` ```javascript ```` ```` ``` ```` This is text ````` **Expected behavior** I...
**Describe the bug** I've updated github file and purge give random value from history latest version of codemirror.js file contain regex: ``` /(?:do|then|def|lambda)\b/ ``` When I do purge I've got...
**I would like to ...** - [ ] to modify content - [x] to add content **What is the section concerned ?** Spread the word about your hard works **What...
This is a continuation of failed PR #30 the code for this experiment is on the devel branch. When this will be ready it should allow using sysend on CodePen...
There are a few people that contributed it would be nice to add them to README.
This can be implemented like this: ```javascript function sendToPrimary(data) { return sysend.list().then(list => { return list.find(window => window.primary); }).then(primary => { sysend.post(primary.id, data); }); } ``` It can be handy...
It would be cool and most likely possible to create something like a multi-desktop monitor setup but with browser windows that are displayed next to each other. - [x] Create...
I have no idea what is line 13794, according to nectarjs, because it's the first line of this function: ```javascript function balanced(code) { var maching_pairs = { '[': ']', '(':...
Just found interesting case of continuations that break in Biwascheme: ```scheme (call/cc (lambda (return) (let ((n 5) (result (list)) (k #f)) (set! result (append result (list (call/cc (lambda (return) (set!...
I'm not sure if this is intentional but if you run this code: ```scheme (let ((x '())) (display x) (newline) ``` that has missing closing parenthesis. If you try to...