SSM CLI One-liners

$instanceId="i-0123456789abcdef0"; aws ssm start-session --target $instanceId --document-name AWS-StartPortForwardingSession --parameters 'localPortNumber=55678,portNumber=3389'

propmt for mastra.ai agency

can you tell me how to create a design development agency with the mastra.ai typescript framework, creatoing a project manager, a deep research agent, a design agent, a frontend agent, a backend agent, a qa agent and a team to help me find/onboard new clints, use nextjs for the frontend and mongodb for data perisstance, use tailwindcss for styles and shadcnui for components

アプリ内ブラウザでconsoleを表示する

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>JSONPlaceholder API Test</title>
    <script src="https://cdn.jsdelivr.net/npm/eruda"></script>
    <script>eruda.init();</script>
</head>
<body>
    <button onclick="fetchPosts()">投稿を取得</button>
    <div id="result"></div>

    <script>
        async function fetchPosts() {
            try {
                const response = await fetch('https://jsonplaceholder.typicode.com/posts/1');
                const post = await response.

Fresh CC Fullz Bank Logs Paypal Transfer WU Transfer Bug MoneyGram CashApp Zelle Venmo Apple Pay Skrill Transfer ATM Cards.



Scattered Spider (and allied group Scattered LAPSUS$ Hunters) 🌎 


VERIFIED CARDER SELLING WU,BANK,PAYPAL,CASHAPP,SKRILL TRANSFER BANK LOGS,DUMPS+PIN,CLONED CARDS

Telegram: JeansonTooL SELL CCV CANADA FULLZ FRESH SSN DOB WITH DL LIVE MAIL PASSWORD OFFICE365 PAYPAL

Telegram: JeansonTooL CVV,Fullz,Dumps,PayPal Debit/Credit Card,CashApp, Western Union, Transfer,ATM Clone Cards!!

Telegram: JeansonTooL SELL CVV FULLZ INFO GOOD USA-UK-CA-AU-INTER,PASS VBV/BIN/DOB

Telegram: JeansonTooL : Sell Dum

Hamburger Menu BETA!!!!

document.addEventListener('DOMContentLoaded', function () {
  const modal = document.getElementById('tm-dialog-mobile');
  const hamburgers = document.querySelectorAll('.uk-navbar-toggle'); 

  console.log('Modal gefunden:', modal);
  console.log('Hamburger-Menüs gefunden:', hamburgers);

  if (!modal) {
    console.error('Modal mit ID "tm-dialog-mobile" nicht gefunden!');
    return;
  }

  if (hamburgers.length === 0) {
    console.error('Keine Hamburger-Menüs mit Klasse ".uk-navbar-toggle" ge

Laravel installation permissions


cd into your project directory

sudo chown -R yourusername:yourusername .
sudo chown -R www-data:www-data storage bootstrap/cache
sudo chmod -R 775 storage bootstrap/cache


Laravel is owned by your deploy user (you), need to be able to edit:
git pull
composer install
npm install
npm run build
php artisan migrate
php artisan cache:clear
edit .env


Web server needs to be able to :
write logs
write cache
write compiled views
write sessions
serve files from public/


Laravel officially expects th

960. Delete Columns to Make Sorted III

You are given an array of n strings strs, all of the same length. We may choose any deletion indices, and we delete all the characters in those indices for each string. For example, if we have strs = ["abcdef","uvwxyz"] and deletion indices {0, 2, 3}, then the final array after deletions is ["bef", "vyz"]. Suppose we chose a set of deletion indices answer such that after deletions, the final array has every string (row) in lexicographic order. (i.e., (strs[0][0] <= strs[0][1] <= ... <= strs[0][strs[0].length - 1]), and (strs[1][0] <= strs[1][1] <= ... <= strs[1][strs[1].length - 1]), and so on). Return the minimum possible value of answer.length.
/**
 * @param {string[]} strs
 * @return {number}
 */
var minDeletionSize = function(strs) {
    const n = strs.length;        // number of rows
    const m = strs[0].length;     // number of columns (all strings same length)

    // dp[i] = length of the longest valid chain ending at column i
    const dp = Array(m).fill(1);

    // Helper: check if column j can come before column i
    // This requires strs[row][j] <= strs[row][i] for EVERY row
    function isValid(j, i) {
        for (let row

Word模拟手写

/*一、基于手写机、其他材料的 VBA 代码
优点是:同类字体的不同细节,可以更高的模拟手写情况。*/

Sub 模拟手写()
    Dim R_Character As Range
  
    '定义字体大小,随机选取以下大小,可以根据需要改写
    Dim FontSize(5)
    FontSize(1) = "16"
    FontSize(2) = "16.2"
    FontSize(3) = "16.5"
    FontSize(4) = "17"
    FontSize(5) = "17.2"
  
    '定义字体名称,随机选取以下名称,可以根据需要改写
    Dim FontName(7)
    FontName(1) = "郑大白"
    FontName(2) = "郑大风"
    FontName(3) = "郑大黑"
    FontName(4) = "郑大黄"
    FontName(5) = "郑大绿"
    FontName(6) = "郑大清"
    FontName(7

Excel自适应行高增加10

Sub 自适应行高()
	Set Rng = Range("a1").Resize(Range("a" & Rows.Count).End(xlUp).Row,1)
	Rng.Rows.AutoFit '自动行高
	For Each r In Rng.Rows
		r.RowHeight = r.RowHeight + 10
	Next
End Sub

Excel打印预览&所有行列缩放到一页

ActiveWindow.SelectedSheets.PrintPreview  '打印预览
ActiveSheet.PageSetup.FitToPagesTall = 1 '所有行缩放到一页
ActiveSheet.PageSetup.FitToPagesWide = 1 '所有列缩放到一页

Space(空格键)增强(作为修饰键)

#NoEnv
#SingleInstance, Force
SendMode, Input
SetBatchLines, -1
SetWorkingDir, %A_ScriptDir%
StringCaseSense, On

AnyKeyPressedOtherThanSpace(mode = "P") {
    keys = 1234567890-=qwertyuiop[]\asdfghjkl;'zxcvbnm,./
    Loop, Parse, keys
    {    
        isDown :=  GetKeyState(A_LoopField, mode)
        if(isDown)
            return True
    }

    return False
}


supressed := False
RestoreInput(){
    BlockInput, Off
    Global supressed
    supressed := False
}

Supr

以管理员权限运行AutoHotkey脚本

; 将这段代码赋值到脚本最前面即可让本脚本以管理员身份运行
Loop A_Args.Length  ; For each parameter:
  {
    param := %A_Index%  ; Fetch the contents of the variable whose name is contained in A_Index.
    params .= A_Space . param
  }
; 在V2版本中A_IsUnicode已经被删除,默认就是Unicode
; V1版本判断代码
; ShellExecute := A_IsUnicode ? "shell32\ShellExecute":"shell32\ShellExecuteA"
ShellExecute := "shell32\ShellExecute"
if not A_IsAdmin
{
    If A_IsCompiled
       DllCall(ShellExecute, "uint", 0, "str", "RunAs", "str", A_ScriptFull

同一个按键开始暂停(鼠标连点器)

F1::
	Sleep,300
	loop
	{
		Send,1{Click}
		Sleep,70
		if GetKeyState("F1")
		{
			break
		}
	}
return

AutoHotkey以管理员身份运行时,以普通用户权限运行程序

Run_AsUser(ProgramPath,arg) {
    ComObjCreate("Shell.Application")
    .Windows.FindWindowSW(0, 0, 0x08, 0, 0x01)  
    .Document.Application.ShellExecute(ProgramPath,arg) 
}

Autohotkey同一按键开关功能

    k :=0
    $%需要发送的热键%::   
    k := 1-k
    if (k == 1)
        settimer, Sendkey, %间隔时间%
    else
        settimer, Sendkey, off
    Return
   
    Sendkey:
    {
        send %需要发送的热键%
    }
    return

锁屏并熄灭屏幕

/*
  锁屏并熄灭屏幕
*/
LockAndOffScreen()
{
  Sleep 200
  Run rundll32.exe user32.dll`,LockWorkStation
  Sleep 200
  SendMessage,0x112,0xF170,2,,Program Manager
  Return
}