Tag: Code
-
Remove Mirage Logs
These past couple of days I’ve been using Mirage, and the console will output a bunch of messages by default. To turn them off, use the following in your config.js:
-
Command to Compress and Password Protect
Lately I’ve been needing to send some folks password protected zip files. Below is a short and basic snippet that you can use to run in your terminal. Once your run the above snippet, enter a password. oldFolder is the folder with your contents newFOLDER is the name of the outputed zip file of this command The output will…
-
Transform camelCase a Camel Case with Regex
I’m quite terrible at regex, but lately I figured that I actually really need to learn it. Below is a snippet for transforming “camelCase” strings into “Camel Case” strings.
-
Troubleshoot ESLint $ Errors
-
Align Divs on a Line
A few days ago I had to make a few divs of varying height. Unfortunately, they were looking a little wonky because they weren’t aligning. I made them display: inline-block, but what’s going on? Making my divs display as inline-block was to make my divs appear on the same line. However, it was not enough to make them straight. TLDR; I had…
-
Copy Text With JS
I found this jewel somewhere:
-
Setting up React & Hot Reloader
my package.json should look like this: add the following script: my webpack.config.js should look like this: my webpack.deployment.config.js should look like this: my app/index.js should looke like this: my app/Component.jsx should looke like this: my index.html should look like this:
-
(Swift) Programmatically Segue
Using the code from my previous post on segues, here’s a snippet:
-
Launch Sublime in Terminal
Launch Sublime: subl Launch an entire folder: subl . Launch a particular file: subl blah.xxx