Difference between revisions of "Bookmarks"
From Family History Book
| (17 intermediate revisions by the same user not shown) | |||
| Line 4: | Line 4: | ||
* [https://wiki.kats-sites.net Miscellany wiki] | * [https://wiki.kats-sites.net Miscellany wiki] | ||
* [https://discord.com Discord] | * [https://discord.com Discord] | ||
| + | * [https://www.youtube.com/watch?v=hJU2ffBkmoU Free DNA sites] | ||
=ARM64 Linux= | =ARM64 Linux= | ||
| Line 9: | Line 10: | ||
* [https://docs.kernel.org/arm64/index.html ARM64 Architecture documentation] | * [https://docs.kernel.org/arm64/index.html ARM64 Architecture documentation] | ||
* [https://archlinuxarm.org/ Arch Linux ARM] | * [https://archlinuxarm.org/ Arch Linux ARM] | ||
| + | * [https://manjaro.org Manjaro] | ||
| + | * [https://www.pendrivelinux.com/yumi-multiboot-usb-creator/ YUMI USB multiboot creator] | ||
| + | ==Arch Linux (Manjaro) Hints== | ||
| + | |||
| + | * Arch packages have file extension .zst | ||
| + | * The primary Arch package repository is https://aur.archlinux.org/packages/ | ||
| + | ** to extract a .tar.gz package, use this syntax: | ||
| + | ::: <code> sudo tar -xzf [filename].tar.gz [name of destination folder]</code> | ||
| + | ** after extracting, navigate to the destination folder and use <code>sudo makepkg [-s]</code> | ||
| + | *** the optional -s switch searches for dependencies | ||
| + | ** after making the package, install using <code>sudo pacman -U <name of package></code> | ||
| + | * The Arch package manager is called pamac | ||
| + | ** Use these commands to use the package manager: | ||
| + | |||
| + | {| | ||
| + | ! command | ||
| + | ! action | ||
| + | |- | ||
| + | | sudo pacman -Syy | ||
| + | | refresh package database | ||
| + | |- | ||
| + | | sudo pacman -Syu | ||
| + | | update installed packages | ||
| + | |- | ||
| + | | sudo pacman -S <name of package> | ||
| + | | installs package | ||
| + | |- | ||
| + | | sudo pacman -U <path of downloaded package> | ||
| + | | install from downloaded package | ||
| + | |- | ||
| + | | pacman -Ss <name to search> | ||
| + | | search for package in repository | ||
| + | |- | ||
| + | | Pacman-Qi <package names> | ||
| + | | display details of packages | ||
| + | |} | ||
---- | ---- | ||
| Line 26: | Line 63: | ||
** quotes Philip Rosedale, Wagner James Au, & Neal Stephenson | ** quotes Philip Rosedale, Wagner James Au, & Neal Stephenson | ||
* [https://nextbillionseconds.com/ Next Billion Seconds podcast] with Tony Parisi, Lamina1 Chief Product officer and Mark Pesce of Valve | * [https://nextbillionseconds.com/ Next Billion Seconds podcast] with Tony Parisi, Lamina1 Chief Product officer and Mark Pesce of Valve | ||
| + | |||
| + | ==ISMuseum== | ||
| + | ===in SL=== | ||
| + | ===in Kitely=== | ||
| + | ===on GitHub=== | ||
| + | : {https://github.com/ismuseum ISMuseum] | ||
| + | ====Repos==== | ||
| + | :* docs | ||
| + | :** org | ||
| + | :** statistics | ||
| + | :** grids | ||
| + | :** procedures | ||
| + | |||
| + | :* meetings | ||
| + | :** planning | ||
| + | :** building | ||
| + | |||
| + | :* images | ||
| + | :** logos | ||
| + | :** textures | ||
| + | :** 3D-screenshots | ||
| + | :** screenshots | ||
| + | :** machinima | ||
| + | |||
| + | :* builds | ||
| + | :** collada | ||
| + | :** mesh | ||
| + | :** textures | ||
| + | :** terrain | ||
| + | :** packages | ||
| + | :** scripts | ||
| + | :** oar | ||
| + | |||
| + | :* events | ||
| + | :** yuris-night | ||
| + | :** space-week | ||
| + | :** scifi-con | ||
| + | :** tea&rockets | ||
| + | |||
| + | :* avatars | ||
| + | :** skins | ||
| + | :** hair | ||
| + | :** rigging | ||
| + | :** clothing | ||
| + | :** animations | ||
| + | :** anim-overides | ||
| + | :** gestures | ||
| + | |||
| + | ==OMRG in Kitely== | ||
| + | |||
| + | * Sample Kitely Calendar entry for meetings | ||
| + | <pre> | ||
| + | The Open Metaverse Research Group will meet Friday, [date]. If you are interested in helping develop and learn more about an open, standards-based metaverse, and connecting with others of the same mind, please join us. | ||
| + | </pre> | ||
| + | ** Be sure to include the location as: | ||
| + | <pre> | ||
| + | grid.kitely.com:8002:Kat's Autumn Castle/ | ||
| + | </pre> | ||
| + | * Sample OMRG group announcement | ||
| + | <pre> | ||
| + | |||
| + | </pre> | ||
| + | |||
| + | =Learn Programming= | ||
| + | |||
| + | ==SQL== | ||
| + | |||
| + | * [https://mystery.knightlab.com/ SQL Murder Mystery game] | ||
| + | |||
| + | ==Git== | ||
| + | |||
| + | * [https://ohmygit.org Oh, My Git! game] | ||
| + | |||
---- | ---- | ||
| + | |||
| + | [[Private|Back to Private]] | ||
Latest revision as of 15:11, 2 April 2023
Personal
ARM64 Linux
Arch Linux (Manjaro) Hints
- Arch packages have file extension .zst
- The primary Arch package repository is https://aur.archlinux.org/packages/
- to extract a .tar.gz package, use this syntax:
sudo tar -xzf [filename].tar.gz [name of destination folder]
- after extracting, navigate to the destination folder and use
sudo makepkg [-s]- the optional -s switch searches for dependencies
- after making the package, install using
sudo pacman -U <name of package>
- after extracting, navigate to the destination folder and use
- The Arch package manager is called pamac
- Use these commands to use the package manager:
| command | action |
|---|---|
| sudo pacman -Syy | refresh package database |
| sudo pacman -Syu | update installed packages |
| sudo pacman -S <name of package> | installs package |
| sudo pacman -U <path of downloaded package> | install from downloaded package |
| pacman -Ss <name to search> | search for package in repository |
| Pacman-Qi <package names> | display details of packages |
Open Metaverse
- Ryan's company
- XRSI X Reality Safety Initiative
- Divya
- Singularity Group
- Lamina1
- Venture Beat interview w/Neal Stephenson
- FastCompany article about Neal Stephenson's vision
- Economist's Metaverse Summit
- 1st Lamina1 Discord AMA 21 July 2022
- Metaverse Standards Organization
- Vice article on Corporate v. indie metaverse
- quotes Philip Rosedale, Wagner James Au, & Neal Stephenson
- Next Billion Seconds podcast with Tony Parisi, Lamina1 Chief Product officer and Mark Pesce of Valve
ISMuseum
in SL
in Kitely
on GitHub
- {https://github.com/ismuseum ISMuseum]
Repos
- docs
- org
- statistics
- grids
- procedures
- docs
- meetings
- planning
- building
- meetings
- images
- logos
- textures
- 3D-screenshots
- screenshots
- machinima
- images
- builds
- collada
- mesh
- textures
- terrain
- packages
- scripts
- oar
- builds
- events
- yuris-night
- space-week
- scifi-con
- tea&rockets
- events
- avatars
- skins
- hair
- rigging
- clothing
- animations
- anim-overides
- gestures
- avatars
OMRG in Kitely
- Sample Kitely Calendar entry for meetings
The Open Metaverse Research Group will meet Friday, [date]. If you are interested in helping develop and learn more about an open, standards-based metaverse, and connecting with others of the same mind, please join us.
- Be sure to include the location as:
grid.kitely.com:8002:Kat's Autumn Castle/
- Sample OMRG group announcement
Learn Programming
SQL
Git
Back to Private