Wynn Tee

Results 7 comments of Wynn Tee

Hi @lifeiscontent , thank you for your interest in JOSS. The specification allows for "Custom Objects", which can be anything you want it to be (including classes). However, the reference...

Hi @lifeiscontent , I've created a new branch called Custom Objects for this. Please have a look at [the changes](https://github.com/quantirisk/joss/commit/bab38f9de753008ece7f08f370096f90bf4e89ec) Replace MyClass with the name of your custom class. The...

@lifeiscontent , when you have multiple classes, you can include their names as keys in the `encoders` object, but point them to the same `encodeCustom` function. Then change the `encodeCustom`...

I faced the same problems and found the solutions by manually running the commands in chromefy.sh to see what was going on. For "losetup: cannot find an unused loop device",...

Same problem. After studying the script and looking at the chromiumos image partition table, here's what I learned: 1) The last 3 partitions (in order) are what the script defines...

I managed to implement the solution on the command line, but haven't scripted it. The commands are: truncate -s +1G chromiumos_image.img echo '+2097152' | sfdisk chromiumos_image.img -N 1 --move-data I...

> > > @wynntee Thanks for the information! When I try to run the last command, I get an error that says "Failed to resize partition #1." > > Do...