Here’s the fix for this nasty error message on OSX:
Here are some steps you might have overlooked when publishing your React VR project for the first time.
Here’s my first finished project: http://daviseford.com/tcpi-react-vr/
1.) You have to upload the static_assets folder yourself - it’s not included in the build folder.
2.) You need to modify your vr/build/index.html file to resemble this
3.) Seriously, pay careful attention to the index.html file
4.) If you’ve included any images using the source=require(‘img.png’) style of import, you need to update those images with their URI’s, like so
5.) Read the docs carefully - it’s all there, but scattered all over the place.
I’m pleased to announce that I’ve developed a Bootstrap CRUD application generator. Tired of manually building forms for basic SQL events? Use my tool to generate CRUD pages for your tables.
A painless way to create PHP/MySQL/Bootstrap CRUD apps
Generate a basic Bootstrap-themed CRUD (Create, Read, Update, Delete) application based on your MySQL SELECT, UPDATE, or CREATE query.
This application takes advantage of GreenLion’s PHP SQL Parser.
Download the source from Github.
Let’s say we have an array of objects like so that are coded incrementally like so: OBJ1, OBJ2, OBJ3..
One problem with MySQL is that there’s no easy way to naturally sort a returned array, so if you have 15 objects, you’ll end up with an array like:
The problem is that MySQL is sorting the keys in the manner of a computer, not a human. Not desirable.
Luckily, we’ve got the benefit of naturally sorting things as a human would.
Use the following function to sort the array by a nested key (such as “key” in the example above)
Enjoy :)