Skip to content

Instantly share code, notes, and snippets.

View gevera's full-sized avatar
🎯
Focusing

Denis Donici gevera

🎯
Focusing
View GitHub Profile
@gevera
gevera / npm_packages.sql
Created December 23, 2022 14:53
A table for Postgres containing most popular npm packages information
This file has been truncated, but you can view the full file.
-- CREATE TABLE
CREATE TABLE IF NOT EXISTS npm_packages(
id int PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
package_name VARCHAR(100),
repository VARCHAR(100),
gitHub_star DECIMAL(10,2),
gitHub_forks DECIMAL(10,2),
gitHub_watchers DECIMAL(10,2),
abandoned BOOLEAN,
code_coverage DECIMAL(10,2),
@gevera
gevera / settings.json
Created September 30, 2020 09:49
VS Code Settings Svelte without CSS intelisence
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.iconTheme": "vscode-icons",
"window.zoomLevel": 1,
"workbench.colorTheme": "Monokai",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"cSpell.userWords": [