Chow Loong Jin

Results 37 comments of Chow Loong Jin
trafficstars

On Wed, Jul 05, 2017 at 12:41:17AM +0000, Rob Sherwood wrote: > I just threw up a trivial pull request > (https://github.com/openscad/MCAD/pull/31) only to realize that there's 4 > years...

@indazoo :man_shrugging: Start by getting the stuff in the `dev` branch merged into `master` while maintaining backward compatibility with users of `master`. A long time ago, someone moved stuff around...

> At the moment, there is this "flat" file structure without any sub-directory right now on master. I understand it correctly, you don't want this in future? The future should...

> No punishment for using the MCAD/constants.scad file? Yeah go ahead and put a deprecation notice, but I wouldn't word it as someone doing a bad thing to MCAD --...

I'm not sure about discussions, but there has been precedent within MCAD for uppercase constants, e.g. in `nuts_and_bolts.scad`.

You don't have to drop your repo. Just push your changes to a specific branch (one branch per PR) and head to `https://github.com/openscad/MCAD/compare/${target_branch}...indazoo:${your_branch}`, e.g. https://github.com/openscad/MCAD/compare/dev...indazoo:dev to submit a PR.

On Mon, Nov 12, 2018 at 02:58:27PM +0000, Ludvig Ericson wrote: > Did it cause errors? Well, storing and retrieving a bool using pylibmc converts bools into ints, but doing...

On Wed, Nov 14, 2018 at 12:54:47PM -0800, Ludvig Ericson wrote: > I see. Maybe we should reintroduce bool storage but as int-with-extra > flag. Going through the pickle machinery...

You can subclass `pylibmc.Client` and override the `serialize` method to match python-memcached's behaviour ```python import pickle import pylibmc class Client(pylibmc.Client): def serialize(self, value): """ Overridden serialize method. See pylibmc.client.Client.serialize for...