Skip to content

Instantly share code, notes, and snippets.

View rnmhdn's full-sized avatar

levi scott rnmhdn

  • Planet Earth
View GitHub Profile
@rnmhdn
rnmhdn / sidekick.log
Created February 6, 2020 20:06
sidekick logs
[20-02-06 23:32:01.416] (Info) ab.buildDeploy.ui.buildConfigChanged - {"buildConfig":"Debug","buildType":"Cloud","isHmr":true,"platform":"Android","useSharedCloud":false,"webpack":{"env":{"aot":{"debug":false,"release":true},"snapshot":true,"sourceMap":true,"uglify":true},"isWebpack":true}}
[20-02-06 23:32:01.419] (Info) ab.buildDeploy.ui.pendingRequests - 1
[20-02-06 23:32:01.422] (Info) ab.analyticsProvider.shell.trackIntercomEvent - {"eventCategory":"buildDeploy","eventAction":"build-Android","eventLabel":"Cloud"}
[20-02-06 23:32:01.424] (Info) ab.buildDeploy.ui.executeMultipleBuilds - {"buildRequestsList":[{"buildConfig":"Debug","buildType":"Cloud","codeSigning":{"isPasswordRequired":false},"isClean":false,"platform":"Android","useSharedCloud":false,"webpack":{"env":{"aot":false,"snapshot":false,"sourceMap":true,"uglify":false},"isWebpack":true}}]}
[20-02-06 23:32:01.428] (Info) ab.analyticsProvider.ui.trackIntercomEvent - {"eventAction":"build-Android","eventCategory":"buildDeploy","eventLabel":"Cloud"}
@rnmhdn
rnmhdn / main.js
Created September 29, 2019 16:09
Vuejs filter to convert english digits to Persian.
Vue.filter('persianize', strr => strr.replace(/\d/g, d => '۰۱۲۳۴۵۶۷۸۹'[d]))