Skip to content

Instantly share code, notes, and snippets.

View Araxeus's full-sized avatar

Araxeus

  • Discord: `Araxeus#0819`
  • 23:08 (UTC +03:00)
View GitHub Profile
# Get parameters, examples, full and Online help for a cmdlet or function
# Get a list of all Modules
Get-Module -ListAvailable |
Out-GridView -PassThru -Title 'Available modules'
# Get a list of all functions
Get-Command -CommandType Function |
Out-GridView -PassThru -Title 'Available functions'
@Araxeus
Araxeus / index.html
Last active February 26, 2022 20:52
MediaSesssion API in Electron - gist for https://github.com/electron/electron/issues/25539
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!?</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<h1 id="head">Click button to start playing</h1>
<button id="play">Play</button>
@Araxeus
Araxeus / index.html
Created March 22, 2021 21:17
Thumbar buttons disappear after win.hide() is called and cant't be displayed again
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
<link rel="stylesheet" type="text/css" href="./styles.css">
</head>
<body>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->