Tim Kevin Oxley
Tim Kevin Oxley
If you're planning on starting a new adventure workshop you may find [adventure-map](https://github.com/timoxley/adventure-map) helpful. It suggests some basic structure and adds some utilities for your adventure: - Adds syntax highlighting...
I've started work splitting up functional-javascript-worshop into more focussed, easily digestable chunks. First installment is es5-workshop, which will solely focus on ES5 stuff: - https://github.com/timoxley/es5-workshop At the moment it's just...
As args to exercises are passed on cmdline, Specifically, I wanted to pass functions [I worked around this in functional-javascript-workshop]() with my own function serialisation and serializing some wrapper code...
As far as I can tell, there's no way to access the length of the enumerable's data via the enumerable interface without invoking `__iterator__.length`, or doing `.count(function(){return true})`. This grants...
I wonder if async support could be added using `function.length` check ala mocha.
Just FYI, robotskirt currently refuses to build on Node 0.11.8. Looks like hitting against some changes to v8 api. e.g. ``` error: no type named 'Arguments' in namespace 'v8' ......
Currently the plugin errors if you create a '.remarkrc.js' file: `Cannot find module './.remarkrc.js'` The issue is that `require` resolves relative to the current file, while `fs.exists` resolves relative to...
``` mport { A } from '@mobily/ts-belt'; ^ SyntaxError: Named export 'A' not found. The requested module '@mobily/ts-belt' is a CommonJS module, which may not support all module.exports as named...
Using vite with `@tanstack/router-plugin/vite`. Route files with real content are getting clobbered with boilerplate. i.e. ```ts import { createFileRoute } from '@tanstack/react-router' export const Route = createFileRoute('/myroute')({ component: () =>...
I originally posted this on the typia repo, https://github.com/samchon/typia/issues/1303 but it's probably more appropriate here. I have a small vite/vitest application with a handful of tests. The tests take a...