Skip to content

Instantly share code, notes, and snippets.

View dalisoft's full-sized avatar
😀
Happy to code

Davlatjon Shavkatov dalisoft

😀
Happy to code
View GitHub Profile
@dalisoft
dalisoft / Default%20%28OSX%29.sublime-keymap
Last active February 15, 2022 16:14
ST4 Very light config
[
{
"keys": ["super+alt+enter"],
"command": "lsp_symbol_definition",
"context": [
{
"key": "selector",
"operator": "equal",
"operand": ["source.reason"]
}
@dalisoft
dalisoft / cloudSettings
Last active September 10, 2022 14:11
Visual Studio Code Settings Sync Gist
{
"lastUpload": "2022-09-09T15:30:33.951Z",
"extensionVersion": "v3.4.3"
}
@dalisoft
dalisoft / Default%20%28OSX%29.sublime-keymap
Last active September 23, 2021 17:00
Sublime Text 3 Sync Configurations
[
{
"keys": [
"enter"
],
"command": "commit_completion",
"context": [
{
"key": "auto_complete_visible"
},
@dalisoft
dalisoft / dl.js
Last active October 21, 2020 04:35
Download course script
const https = require("https");
// For using in browser, remove `require` and `fetch` mockup
function fetch(url) {
return new Promise((resolve, reject) => {
https
.get(url, (res) => {
res.setEncoding("utf8");
let response = "";
res.on("data", (data) => {