- open new tab:
Cmd + t
- next tab:
Cmd + Shift + ]
- previous tab:
Cmd + Shift + [
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var out="["; | |
for(var indx=0;indx<data.length-1;indx++){ | |
out+=JSON.stringify(data[indx],null,4)+","; | |
} | |
out+=JSON.stringify(data[data.length-1],null,4)+"]"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Uppenbarelseboken 21:22-23, 25 B2000 Bi. | |
22 Nagot tempel sag jag inte i staden, ty Herren Gud, allhärskaren, är dess tempel, han och Lammet. 2 Och staden behövde varken sol eller mane för att fa ljus, ty Guds härlighet lyser över den, och Lammet är dess lampa, | |
25 Och dess portar skall aldrig stängas om dagen - natt blir det inte där. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Some options that may or may not be applicable to you | |
[user] | |
name = Zach Posten | |
email = [email protected] | |
[push] | |
default = upstream | |
[core] | |
autocrlf = input # Force replacing CRLF line endings with LF | |
ignorecase = false | |
[merge] |
#Heading 1 ##Heading 2 ###Heading 3 ####Heading 4 #####Heading 5 ######Heading 6
Paragraph
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* `https://githowto.com/aliases` | |
git config --global alias.co checkout | |
git config --global alias.ci commit | |
git config --global alias.st status | |
git config --global alias.br branch | |
git config --global alias.pl pull | |
git config --global alias.ps push | |
git config --global alias.hist "log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short" | |
git config --global alias.type 'cat-file -t' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log('%cHellooo',"font-weight:bold ; color: cyan ; font-size:18px") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const str = sen.replace(/[^a-zA-Z ]/g, ""); // replace strange characters | |
const words = str.split(' '); // convert to array of strings | |
const sorted = words.sort((a, b) => b.length - a.length); // sort descending according string length | |
return sorted[0] | |
NewerOlder