James Yang

Results 73 issues of James Yang

Just noticed the analytics part use the old google-analytics.js way, but according to the Google announcement: Google Analytics 4 is our next-generation measurement solution, and it's replacing Universal Analytics. On...

We use below way to generate SQL from GORM: https://stackoverflow.com/questions/66238657/how-can-i-generate-sql-code-from-gorm-struct-model But the problem is the GORM generated SQL not stable, like below: ```sql CREATE TABLE `components` ( `id` bigint AUTO_INCREMENT,`created_at`...

type:question
status:stale

**Describe the bug** What count in rust project, the `Cargo.lock` file also counted. Like: https://github.com/cgag/loc **To Reproduce** 1. In Any cargo based rust project, run `scc` 2. The result show...

enhancement

when tsconfig.json has `allowJS:true`, then the emitted files contains many `.js` files, these files' path don't get transpiled in `require()` statement.

### Check for existing issues - [X] Completed ### Describe the feature After opening some files from node_modules, in a node.js repo, list of Cmd+P search files don't include the...

enhancement
git
file finder
priority request

When put point into `fread()`, the message shows, How to config it to use with system libs? Thanks!

Think of Vim and Emacs search all include a feature, that whether a searching pattern should also match char under point. `sp-forward-sexp` and other sp- searching command could also provide...

Below line have bug: ``` if (err.code == 11000) { process.nextTick(getNextId.bind(null, db, collectionName, fieldName, callback)); } else { callback(err); } ``` The `11000` error also generated when duplicate _id inserted,...

The duplicate may from arguments passed from user: ``` javascript autoIncrement.getNextSequence(db, 'test', 'ID', function(e, ID) {}) ... ... autoIncrement.getNextSequence(db, 'test', 'ID2', function(e, ID) {}) ``` Before this PR, `ID2` will...

When transfer `joi` definition from server, then `JSON.parse` as below: ``` // after a fetch from REST API jsonFromServer.email === {"isJoi":true,"_type":"string","_settings":null,"_valids":{"_set":[]},"_invalids":{"_set":[""]},"_tests":[],"_refs":[],"_flags":{"presence":"required"},"_description":null,"_unit":null,"_notes":[],"_tags":[],"_examples":[],"_meta":[],"_inner":{}} var emailType = joi.compile(jsonFromServer.email) joi.attempt('abc', emailType) // above line...