evbo
evbo
The following set of tokens gives me a SIGSEV error: > signal: 11, SIGSEGV: invalid memory reference ```rust #[derive(Logos, Clone, Debug, PartialEq)] #[logos(subpattern alphanumeric = "[a-zA-Z0-9_]")] pub enum LibToken
I see the documentation covers perfectly how to use `priority`, which is why I'm confused how I could still be getting this wrong. I have a number regex (build from...
In the case where the public key is looked up from a map of `kid -> publicKeys`, is it possible to parse the `kid` from the Jwt Header for that...
The latest versions of SQLite come with basic math functions included by default. For instance, if you compile a sqlite3 binary manually, on Linux you have access to functions like...
Using scalajs, I think sbt-buildinfo is the perfect solution for incorporating compile-time environment overrides. For instance, webpack has the `DefinePlugin` which injects global `vars` as environment-specific overrides (e.g. to compile...
I need to take the min of the max in each group, e.g.: ```scala import com.github.tminglei.slickpg.ExPostgresProfile.api._ import com.github.tminglei.slickpg.agg.PgAggFuncSupport.GeneralAggFunctions._ ... Table.map{ q => ( max(q.col).over.partitionBy(q.id).sortBy(q.col), q.id ) } .groupBy{_ => true}...
Hi, Are you accepting forks for this repo? Would you be interested in supporting the "FILTER" aggregate function? https://modern-sql.com/feature/filter It is extremely useful for implemeting the "pivot method": https://modern-sql.com/use-case/pivot I've...
How can the generated [package-lock.json](https://docs.npmjs.com/files/package-locks) be version controlled outside of the `target` directory and integrated as part of the fastOpt/fullOpt build? I think the easy part is copying the resulting...
Adding eslint to `npmDevDependencies` and following just about any [tutorial ](serverLocalFast) or [official docs](https://www.npmjs.com/package/eslint-loader) for running eslint-loader in webpack does not seem to trigger it to run: ``` npmDevDependencies in...
When running the `static` example with `scalajs-bundler` version `0.14.0` and `scalajs` version > `0.6.22` I see the following deprecation warning: ``` /scalajs-bundler-master/sbt-scalajs-bundler/src/sbt-test/sbt-scalajs-bundler/static$ sbt fastOptJS::webpack ``` ``` [info] Bundling dependencies with...