Zac

Results 14 comments of Zac

In the interim, I've just made something which takes it from the getJavascriptTag function. ``` php public function getHashedSiteId($id) { $js_tag = json_decode($this->postRequest('SitesManager.getJavascriptTag', array( 'idSite' => $id )), true); return...

Hey @joubertredrat, I'm using getJavascriptTag and it is indeed getting the hashed ID as part of the entire javascript block. I'm just needing the hashed ID however to store into...

Sorry, I really am terrible at following up on Github issues. But you're correct. I just need the hashed ID via an API call so I can store it locally...

Another library of note that could aid: https://github.com/ExistentialAudio/BlackHole

Your implementation reminds me of the MYSQL `DATE_ADD`/`DATE_SUB` handling of changes. `DATE_ADD(now(), INTERVAL 1 MONTH);`

The work-around I've done is to install the `remix-esbuild-override` package and use it as part of `remix.config.js` as below: ``` const { withEsbuildOverride } = require('remix-esbuild-override') withEsbuildOverride((option) => { if...

When working on a slower processor, the log spam causes the computer's CPU to max out. I've only found my team can continue working if they're on pretty beefy computers...

Have found this happening too. Windows 10 Pro, x64. CE 7.1

@burningbman brought up some valuable feedback on how we might implement this. See #46, but specifically: * A native getter/setter for when nesting a model as an attribute. * An...

If there is an offline cache then this could be beneficial on low/no-bandwidth environments.