Skip to content

Instantly share code, notes, and snippets.

View Aetherinox's full-sized avatar

Aetherinox Aetherinox

View GitHub Profile
@Aetherinox
Aetherinox / Gistr Changelog (V1.6.2).md
Created March 31, 2024 06:38
Gistr Changelog (V1.6.2).md
  • feat: added the ability to create, save, and update Github with your obsidian vault notes.
    • Can be activated by either right-clicking in your note somewhere, OR opening your Obsidian Command Palette and selecting the Save options.
  • feat: added new setting to adjust notification time in settings Global tab
  • feat: added Gistr plugin update notification for both stable and beta releases
  • feat: added new settings tab Save & Sync
  • feat: added github gist api status indicator in settings
    • todo: add setting in v1.4.1 to disable update notification if the user wishes. for now it just pops up for a few seconds as a notification box in the top right.
  • feat: added ability to either manualy create gists, or have Gistr constantly monitor notes for changes and then push those changes to a gist repo.
  • change: all sliders now have visual integer to the right of the slider so that users dont have to hover to view the current configured value
  • change: getting started modal i
@Aetherinox
Aetherinox / Gistr Test.md
Created March 31, 2024 06:37
Gistr Test.md

Github Gist

The following shows a single gist with multiple notes

https://gist.github.com/Aetherinox/5143c674e9adea5b256f5f58fe54ffbc
@Aetherinox
Aetherinox / NPM - Yarn Commands.md
Created March 15, 2024 06:47
NPM - Yarn Commands.md

Comparing npm and Yarn Commands

Install dependencies

npm install => yarn 

Install a package

@Aetherinox
Aetherinox / NPM - Yarn Commands.md
Created March 15, 2024 06:47
NPM - Yarn Commands.md

Comparing npm and Yarn Commands

Install dependencies

npm install => yarn 

Install a package

@Aetherinox
Aetherinox / NPM - Yarn Commands.md
Created March 15, 2024 06:47
NPM - Yarn Commands.md

Comparing npm and Yarn Commands

Install dependencies

npm install => yarn 

Install a package

@Aetherinox
Aetherinox / Untitled.md
Created March 15, 2024 06:29
Untitled.md

dasd

asdasd asdasd
@Aetherinox
Aetherinox / NPM - Yarn Commands.md
Created March 14, 2024 07:03
NPM - Yarn Commands.md

Comparing npm and Yarn Commands

Install dependencies

npm install => yarn 

Install a package

@Aetherinox
Aetherinox / obsidian_demo.js
Last active March 5, 2024 14:23
Obsidian Test
const arrPages = obj.pages;
html += "\n<details><summary>" + obj.name + "</summary>\n\n";
Promise.all( arrPages.map( async ( pages ) =>
{
const page_path = pages.path;
const page_name = pages.name;
const page_label = pages.label;
const file_link = dv.fileLink( page_path, false, page_label );
@Aetherinox
Aetherinox / obsidian_demo.js
Last active March 5, 2024 14:08
Obsidian Demo
const file = p.file
const file_path = file.path;
const file_name = file.name;
const file_label = file.frontmatter.name || file.frontmatter.title || file.frontmatter.alias || file_name;