Compare commits
19 Commits
f309477888
...
a9c80454a1
Author | SHA1 | Date |
---|---|---|
Shwetha Jayaraj | a9c80454a1 | |
Shwetha Jayaraj | f033495573 | |
Shwetha Jayaraj | 5378520023 | |
Shwetha Jayaraj | fced93cdad | |
Shwetha Jayaraj | 3fcec06ec1 | |
Shwetha Jayaraj | c372ef4528 | |
Shwetha Jayaraj | 42b0006ea8 | |
Shwetha Jayaraj | 9fee21839a | |
Shwetha Jayaraj | a04f242d81 | |
Shwetha Jayaraj | c2111ede21 | |
Shwetha Jayaraj | dc5fba6201 | |
Shwetha Jayaraj | 6827b718a2 | |
Shwetha Jayaraj | c12a5af6bc | |
Shwetha Jayaraj | 322ee6beb6 | |
Shwetha Jayaraj | 24686a434b | |
Shwetha Jayaraj | 8ace4b7b48 | |
Shwetha Jayaraj | c1f881e222 | |
Shwetha Jayaraj | 531d3dc1eb | |
shwetha729 | cc395037f5 |
|
@ -5,21 +5,24 @@
|
|||
|
||||
|
||||
#### Hi! Thanks for stopping by.
|
||||
Hello. Ny name is Shwetha! I love Star Wars, Digimon, Sailor Moon, & Neopets - the virtual world in which I grew up playing in as a kid and which we seemingly continue to live in online today. I like the physical world a bit better nowadays.
|
||||
Hello. Ny name is Shwetha! I love Star Wars, Digimon, & Sailor Moon. One of my favorite games as a kid was Neopets which turned out to be helpful since as I grow it seems like the rest of the world is turning into Neopia instead as we rack up points to live in a more and more virtual world.
|
||||
|
||||
I like the physical world a bit better nowadays.This site is where all of my neo-notes are hosted. My[ git server lives here as well](http://git.shwethajayaraj.com:3000/) if you'd like to collaborate with me.
|
||||
|
||||
|
||||
Here is a [[Coding Tips (Classical)/Project Vault/hi.mainsite/Resume-ish - my occupations\| resume-ish]] which I will better organize later.
|
||||
|
||||
This is where all of my neo-notes are hosted. My[ git server lives here as well](http://git.shwethajayaraj.com:3000/) if you'd like to collaborate with me.
|
||||
|
||||
|
||||
|
||||
>Came here for [[Coding Tips (Classical)/Project Vault/hi.mainsite/Quantum Stuff\| my quantum stuff? ]]
|
||||
|
||||
>[!tip] Came here to check out [[Coding Tips (Classical)/Project Vault/hi.mainsite/Quantum Stuff\| quantum stuff? ]]
|
||||
|
||||
|
||||
|
||||
You resist the curiosity and choose to [head back](https://www.shwethajayaraj.com). Goodbye!
|
||||
![c3p0](https://media.giphy.com/media/3oOWASkCzFuP6/giphy.gif?cid=ecf05e47clrhu097v44uwxnqhw1n977800c83ca9xhyus38e&ep=v1_gifs_search&rid=giphy.gif&ct=g)
|
||||
May the Force be with you.
|
||||
May the Force be with you. 💫
|
||||
|
||||
---
|
||||
|
||||
|
@ -28,6 +31,8 @@ May the Force be with you.
|
|||
|
||||
|
||||
|
||||
<br> This site is written by me in Markdown & HTML via [Obsidian](https://obsidian.md/. The theme is currently: ` Origami `. Page Views:
|
||||
<br> This site is written by me in Markdown & HTML via [Obsidian](https://obsidian.md/. The theme is currently: ` Origami `.
|
||||
|
||||
*Page Views:
|
||||
<a href="https://www.cutercounter.com/" target="_blank"><img src="https://www.cutercounter.com/hits.php?id=hrxnqcdn&nd=6&style=25" border="0" alt="visitor counter"></a>
|
||||
Ⓚ shwethajayaraj.com. 1995-2023. All rights reversed.
|
||||
|
|
|
@ -36,6 +36,7 @@ Obviously this gets edited with time & as life goes, but right now (Dec 2022) I
|
|||
---
|
||||
---
|
||||
|
||||
|
||||
Previously:
|
||||
|
||||
- CTO/co-founder Windtelligent.ai - a wind speed prediction app
|
||||
|
|
|
@ -4,10 +4,30 @@
|
|||
|
||||
# Your terminal is everything!
|
||||
|
||||
Your terminal is the main way that you interact with the machine. So you have to make sure that it is optimized to be as lightweight as possible. It is also the main way you create [software](obsidian://open?vault=enter&file=Coding%20Tips%20(Classical)%2FTerminal%20Tips%2FCommands%20%2B%20Settings%2FInternet%2FRepos%2FAbout%20Repositories) interactively to be [hosted](obsidian://open?vault=enter&file=Coding%20Tips%20(Classical)%2FTerminal%20Tips%2FCommands%20%2B%20Settings%2FInternet%2FHosting%2FOn%20Hosts) on the [Internet](obsidian://open?vault=enter&file=Coding%20Tips%20(Classical)%2FTerminal%20Tips%2FCommands%20%2B%20Settings%2FInternet%2FHosting%2FBrowser%20talk%2FAbout%20Browsers)! For more information on internet tools, click on any of the previous links to take you to the appropriate area.
|
||||
Your terminal is the main way that you interact with the machine. So you have to make sure that it is optimized to be as lightweight as possible.
|
||||
|
||||
just in case
|
||||
#### Some Useful Terminal Commands:
|
||||
|
||||
These are pretty helpful commands I've found over the years. One example being copying the current working directory:
|
||||
|
||||
```bash
|
||||
pwd | pbcopy
|
||||
```
|
||||
|
||||
This copies contents of all files & subdirectories in a folder/directory to another folder.
|
||||
```
|
||||
cp -r /path/to/source/directory /path/to/destination/directory/
|
||||
```
|
||||
|
||||
Find the generic password to a public wifi.
|
||||
```
|
||||
security find-generic-password -wa "Wifi-name"
|
||||
```
|
||||
|
||||
Output your ipv4 & ipv6 addresses.
|
||||
```
|
||||
ifconfig en0 | grep inet | awk '{ print$2 }'
|
||||
```
|
||||
If you ever want to take a screen recording of the terminal just type in:
|
||||
```
|
||||
asciinema rec
|
||||
|
@ -25,26 +45,6 @@ Eventually the goal is to port the info I've gather on [this](https://docs.googl
|
|||
|
||||
- There is a near infinite amount of things to play around and improve on in your terminal - thus [Terminal To-do's](obsidian://open?vault=Coding%20Tips&file=Terminal%20To-do's) are born.
|
||||
|
||||
Your terminal the main way you create [software](obsidian://open?vault=enter&file=Coding%20Tips%20(Classical)%2FTerminal%20Tips%2FCommands%20%2B%20Settings%2FInternet%2FRepos%2FAbout%20Repositories) interactively to be [hosted](obsidian://open?vault=enter&file=Coding%20Tips%20(Classical)%2FTerminal%20Tips%2FCommands%20%2B%20Settings%2FInternet%2FHosting%2FOn%20Hosts) on the [Internet](obsidian://open?vault=enter&file=Coding%20Tips%20(Classical)%2FTerminal%20Tips%2FCommands%20%2B%20Settings%2FInternet%2FHosting%2FBrowser%20talk%2FAbout%20Browsers)! It is from the terminal that all programs are born as it interfaces with the outside devices! For more information on internet tools, click on any of the previous links to take you to the appropriate area.
|
||||
|
||||
#### Some Useful Terminal Commands:
|
||||
|
||||
These are pretty helpful commands I've found over the years. One example being copying the current working directory:
|
||||
|
||||
```
|
||||
pwd | pbcopy
|
||||
```
|
||||
|
||||
This copies contents of all files & subdirectories in a folder/directory to another folder.
|
||||
```
|
||||
cp -r /path/to/source/directory /path/to/destination/directory/
|
||||
```
|
||||
|
||||
Find the generic password to a public wifi.
|
||||
```
|
||||
security find-generic-password -wa "Wifi-name"
|
||||
```
|
||||
|
||||
Output your ipv4 & ipv6 addresses.
|
||||
```
|
||||
ifconfig en0 | grep inet | awk '{ print$2 }'
|
||||
```
|
||||
Have fun. 😙
|
|
@ -17,26 +17,5 @@ body {
|
|||
// h1 {
|
||||
// color: black;
|
||||
// }
|
||||
|
||||
body.title-note-icon .cm-s-obsidian > header > h1[data-note-icon="r2"]::before,
|
||||
body.filetree-note-icon .filename[data-note-icon="r2"]::before,
|
||||
body.links-note-icon .internal-link[data-note-icon="r2"]::before,
|
||||
body.backlinks-note-icon .backlink[data-note-icon="r2"]::before {
|
||||
background-image: url(/img/icons8-r2-d2.svg);
|
||||
}
|
||||
|
||||
body.title-note-icon .cm-s-obsidian > header > h1[data-note-icon="jedi"]::before,
|
||||
body.filetree-note-icon .filename[data-note-icon="jedi"]::before,
|
||||
body.links-note-icon .internal-link[data-note-icon="jedi"]::before,
|
||||
body.backlinks-note-icon .backlink[data-note-icon="jedi"]::before {
|
||||
background-image: url(/img/icons8-jedi-order.svg);
|
||||
}
|
||||
|
||||
body.title-note-icon .cm-s-obsidian > header > h1[data-note-icon="starwars"]::before,
|
||||
body.filetree-note-icon .filename[data-note-icon="starwars"]::before,
|
||||
body.links-note-icon .internal-link[data-note-icon="starwars"]::before,
|
||||
body.backlinks-note-icon .backlink[data-note-icon="starwars"]::before {
|
||||
background-image: url(/img/icons8-star-wars.svg);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue