A list of performance-enhancing mods for 1.18.x forge/fabric versions.
Any suggestions/complaints?
Join our discord or use the gist comments.
A list of performance-enhancing mods for 1.18.x forge/fabric versions.
Any suggestions/complaints?
Join our discord or use the gist comments.
import UiButton from '@/components/UiButton'
import UiDataBox from '@/components/UiDataBox'
https://blog.jetbrains.com/webstorm/2017/06/webstorm-2017-2-eap-172-2827/
By default WebStorm will analyse the webpack configuration file in the root of the project, but you can select another file in Preferences | Languages & Frameworks | JavaScript | Webpack
/!\ Be very carrefull in your setup : any misconfiguration make all the git config to fail silently ! Go trought this guide step by step and it should be fine 😉
~/.ssh/config
, set each ssh key for each repository as in this exemple:/* | |
In JavaScript, objects can be used to serve various purposes. | |
To maximise our usage of the type system, we should assign different types to our objects depending | |
on the desired purpose. | |
In this blog post I will clarify two common purposes for objects known as records and dictionaries | |
(aka maps), and how they can both be used with regards to the type system. |
/* Parse a string function definition and return a function object. Does not use eval. | |
* @param {string} str | |
* @return {function} | |
* | |
* Example: | |
* var f = function (x, y) { return x * y; }; | |
* var g = parseFunction(f.toString()); | |
* g(33, 3); //=> 99 | |
*/ | |
function parseFunction (str) { |