WMI Explorer

This code was found while researching an issue with class methods. It has been (is being) updated to incorporate the issue and some minor tweaks. Credit to /\/\o\/\/.
#
# WmiExplorer.ps1
#
# A GUI WMI explorer and WMI Method Help generator
#
# /\/\o\/\/ 2006
# www_ThePowerShellGuy.com
#
# Updated 2025
# MyITGuy
#

# load Forms NameSpace
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing

$ProjectTitle = 'WMI Explorer'

#region BuildTheForm build in C# then translated to powershell

#region Make the form (frmMain)

$frmMain = New-Object -TypeName Windows.Forms.Form
$frmMain.Size = New-Object -TypeName Syste

Teams GitHub Installer - Sanitized for AI

# Define variables
$personalAccessToken = "xxxxxXXXXXxxxxx"  # Replace with your GitHub PAT
$tempDirectory = [System.IO.Path]::GetTempPath()
$githubApiUrlTeams = "https://api.github.com/repos/xxxxxXXXXXxxxxx/xxxxxXXXXXxxxxx/contents/teamsbootstrapper.exe" # Replace with correct URI
$downloadPathTeams = [System.IO.Path]::Combine($tempDirectory, "teamsbootstrapper.exe")

# Ensure TEMP directory exists
if (-not (Test-Path -Path $tempDirectory)) {
    Write-Host "TEMP directory does not exis

Teams GitHub Installer

# Define variables
$personalAccessToken = "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"  # Replace with your GitHub PAT
$tempDirectory = [System.IO.Path]::GetTempPath()
$githubApiUrlTeams = "https://api.github.com/repos/WesternSmokehousePartners/WSP/contents/teamsbootstrapper.exe"
$downloadPathTeams = [System.IO.Path]::Combine($tempDirectory, "teamsbootstrapper.exe")

# Ensure TEMP directory exists
if (-not (Test-Path -Path $tempDirectory)

公開日&更新日を検索エンジンに渡す

<time datetime="2025-01-01" itemprop="datePublished">公開日:2025年1月1日</time>
<time datetime="2025-01-01" itemprop="dateModified">更新日:2025年1月1日</time>

Composed Path

document.querySelector('button').addEventListener('click', (e) => {
  console.log(e.composedPath())
})

formのsubgrid

main {
  display: grid;
  grid-template-columns: max-content 1fr;
  @media (width < 600px) {
    grid-template-columns: 1fr;
  }
}

main .item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;

  @media (width < 600px) {
    grid-column: span 1;
    gap: 8px;
  }
}

https://x.com/i/bookmarks?post_id=1863749206818820600

subgrid

.card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}

Tenants oracle apex

https://blog.cloudnueva.com/multi-tenant-apex-apps

Utils N, NVL, and others APEX

https://stackoverflow.com/questions/58291943/oracle-v-vs-nv-function
https://docs.oracle.com/html/E39147_04/bldapp_item.htm#CEGJAFEA
https://docs.oracle.com/cd/B28359_01/appdev.111/b32258/api.htm#CHDBHEAD
https://docs.oracle.com/database/apex-5.1/AEAPI/STOP_APEX_ENGINE-Procedure.htm#AEAPI2193
https://docs.oracle.com/database/apex-5.1/AEAPI/SET_DEBUG-Procedure.htm#AEAPI-GUID-9E5FC479-1B37-4B77-B992-E82720CB95FE

https://www.oracle-developer.net/display.php?id=315
nlv v, performance , fast dual


Sports Nav Shortcut on Main Nav (On Mobile Only)

Website taken from (LOOK AT MOBILE) : https://stevensducks.com/index.aspx ![](https://cdn.cacher.io/attachments/u/3hcvbnw9zj03k/sR4NswBHtyF7SF8Phui2BAYj7CrLtw3C/oxgzcbm47.png)
<!-- ko if: name() === 'main-nav' -->
    <div class="component c-navigation c-navigation--main flex flex-align-center flex-justify-end" data-bind="css: ko.observable().matchMedia('(min-width:1152px)')() ? 'c-navigation--desktop' : 'c-navigation--mobile'">
        <!-- ko switch-->
            <!-- ko case: ko.observable().matchMedia('(min-width:1152px)') -->


                <ul class="c-navigation__level-1 flex flex-align-center" data-bind="fastForEach: data">

                       

Sandbox skeleton (demo code) tailwind, alpine

<html>
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="x-ua-compatible" content="ie=edge" />
    <title>Sandbox - RJ</title>
    <meta name="description" content="" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <script src="https://unpkg.com/@tailwindcss/browser@4"></script>
    <script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
  </head>
  <body>
  
   <!-- Code here ... -->
   
   
    
  </b

1790. Check if One String Swap Can Make Strings Equal

You are given two strings s1 and s2 of equal length. A string swap is an operation where you choose two indices in a string (not necessarily different) and swap the characters at these indices. Return true if it is possible to make both strings equal by performing at most one string swap on exactly one of the strings. Otherwise, return false.
/**
 * @param {string} s1
 * @param {string} s2
 * @return {boolean}
 */
var areAlmostEqual = function(s1, s2) {
    // Initialize an array to store the positions where s1 and s2 differ
    let differences = [];

    // Iterate through the strings to find differing positions
    for (let i = 0; i < s1.length; i++) {
        if (s1[i] !== s2[i]) {
            differences.push(i);
        }
    }

    // If there are no differing positions, the strings are already equal
    if (differences.length 

Link working directory to multiple remote repositories

### Check Existing Remotes
Run the following command inside your Git repository to see the current remote repositories:

```sh
git remote -v
```

### Add Additional Remote Repositories
Suppose your folder is already linked to a GitHub repository (origin). You can add another repository on GitLab as follows:

```sh
git remote add gitlab https://gitlab.com/your-username/your-repo.git
```

### Push to Multiple Repositories
When pushing changes, you can specify which remote to use:

```sh
git push o

Container With Most Water

https://leetcode.com/problems/container-with-most-water/description/
public class Solution {
    public int maxArea(int[] height) {
        int maxarea = 0;
        int left = 0;
        int right = height.length - 1;
        while (left < right) {
            int width = right - left;
            maxarea = Math.max(
                maxarea,
                Math.min(height[left], height[right]) * width
            );
            if (height[left] <= height[right]) {
                left++;
            } else {
                right--;
            }

Glowing button

/*
https://jsbin.com/jonekutuja/edit?html,css,output
*/

/* 
  Project: CSS Glowing Button
  Created: Sunday, 06 March 2022
  Author: Jamshid Elmi 
  Tutorial: https://youtu.be/b_8fHNIHFk4
*/
html, body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #161616;
  overflow: hidden;
  /* transform: scale(1.5); */
}

/* button */
.btn {
  margin: 100px;
  padding: 15px 40px;
  border: none;
  outline: none;
  color: #FFF;
  cursor: po

Neon button

<!-- https://jsbin.com/liyigoniku/edit?html,css,output -->
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="style.css">
  <title>Neon Button</title>
</head>
<body>
  <a class="neon">Neon</a>
</body>
</html>