-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.txt
88 lines (51 loc) · 1.98 KB
/
commands.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
git config user.name "mike-tasca"
git config user.email "[email protected]"
git rebase -i --root
set nu
:1,24s/pick/edit/g
npm i --save-dev esbuild
sudo npm install -g @vscode/vsce
# GUIDE: https://code.visualstudio.com/api/working-with-extensions/publishing-extension#advanced-usage
https://learn.microsoft.com/en-in/azure/devops/organizations/accounts/create-organization?view=azure-devops
# This made from here: https://dev.azure.com/miketasca/_usersSettings/tokens
NAME: vscode-reactive-jupyter-publish
vsce login micoloth
# TO BUNDLE: -- REMEMBER TO BUMP YOUR VERSION !!!
npm i
npm run compile # npm run esbuild
vsce package
vsce publish
Extension URL (might take a few minutes): https://marketplace.visualstudio.com/items?itemName=micoloth.reactive-jupyter
Hub URL: https://marketplace.visualstudio.com/manage/publishers/micoloth/extensions/reactive-jupyter/hub
# IT WORKED???
############################ REPLACE COMMIT AUTHORS:
####### scriptt.sh:
#!/bin/bash
git filter-branch --env-filter '
WRONG_EMAIL="[email protected]"
NEW_NAME="mike-tasca" # github username
NEW_EMAIL="[email protected]"
if [ "$GIT_COMMITTER_EMAIL" = "$WRONG_EMAIL" ]
then
export GIT_COMMITTER_NAME="$NEW_NAME"
export GIT_COMMITTER_EMAIL="$NEW_EMAIL"
fi
if [ "$GIT_AUTHOR_EMAIL" = "$WRONG_EMAIL" ]
then
export GIT_AUTHOR_NAME="$NEW_NAME"
export GIT_AUTHOR_EMAIL="$NEW_EMAIL"
fi
' --tag-name-filter cat -- --branches --tags
####### IN YOUR COMMANDS:
# chmod it:
chmod +x ./scriptt.sh
# run it:
./scriptt.sh
#######################TODO:
- DONE Check why SyntaxErrors Range dont ALWAYS rebuild (ongoing)
- DONE Fix bug: when you close terminal on execution_explicit (or implicit), it gets stuck
- DONE Fix "bug": "with f: open" syntax propagates weirdly (it should NOT count the f as Output ...)
- DONE Feature: Color less often while writing (this is complicated...)
- DONE Small typo in Readme
- DONE Feature: Less bright colors
- DONE Feature: Setting to remove Codelenses