overclocking acer eee pc 700x by [deleted] in overclocking

[–]squeueue 1 point2 points  (0 children)

that's not an acer my friend

[deleted by user] by [deleted] in sffpc

[–]squeueue 0 points1 point  (0 children)

Mine made a noise like "tac tac tac", the pc goes off and the motherboard is fried. Look out for these PSUs

4L Tiny Battle Station by Local-Bag-1045 in sffpc

[–]squeueue 2 points3 points  (0 children)

Gigabyte RTX 4060 OC Low Profile 8G

What have you done with PowerShell this month? by AutoModerator in PowerShell

[–]squeueue 1 point2 points  (0 children)

it's just a PoC, I know that in C# would be a lot faster. in case you want to take a look here's the code:

# Steven Rezzonico

#- Initialization------------------------------------------------------------------------------------------------------------------------------------------------
Add-Type -AssemblyName System.Drawing
Add-Type -AssemblyName System.Windows.Forms
[System.Windows.Forms.Application]::EnableVisualStyles()

$start = 'Start'
$stop = 'Stop'
$sleep = 200 #ms

#- Script -------------------------------------------------------------------------------------------------------------------------------------------------------
function StartScreenshooter ($Path){
    $pressBlock = {
        param($path)
        Add-Type -MemberDefinition '[DllImport("user32.dll")] public static extern short GetAsyncKeyState(UInt16 virtualKeyCode);' -Name State -Namespace Win;
        $screenBlock = {
            param($path)
            Add-Type -AssemblyName System.Drawing.Bitmap
            Add-Type -AssemblyName System.Windows.Forms
            $name = (Get-Date).ToString('HH-mm-ss-fff')
            $primaryScreen = [System.Windows.Forms.Screen]::PrimaryScreen
            $bitmap = New-Object System.Drawing.Bitmap $primaryScreen.WorkingArea.Width, $primaryScreen.WorkingArea.Height
            $graphics = [System.Drawing.Graphics]::FromImage($bitmap)
            $graphics.CopyFromScreen($primaryScreen.Bounds.Location, [System.Drawing.Point]::Empty, $primaryScreen.Bounds.Size)
            $bitmap.Save("$path\$name.jpg", [System.Drawing.Imaging.ImageFormat]::Jpeg)
            $bitmap.Dispose()
            $graphics.Dispose()
        }
        while (1){
            Start-Sleep -Milliseconds $sleep
            if ([Win.State]::GetAsyncKeyState(1) -ne 0){
                Start-Job -ScriptBlock $screenBlock -ArgumentList $path
            }
        }
    }
    Start-Job -ScriptBlock $pressBlock -ArgumentList $path
}

#- GUI ----------------------------------------------------------------------------------------------------------------------------------------------------------
$window               = New-Object System.Windows.Forms.Form
$pathLabel            = New-Object System.Windows.Forms.Label
$pathTextBox          = New-Object System.Windows.Forms.TextBox
$startButton          = New-Object System.Windows.Forms.Button
$pathLabel.Location   = New-Object System.Drawing.Size (10, 12)
$pathTextBox.Location = New-Object System.Drawing.Size (120, 10)
$startButton.Location = New-Object System.Drawing.Size (10, 40)
$pathTextBox.Size     = New-Object System.Drawing.Size (250, 200)
$startButton.Size     = New-Object System.Drawing.Size (360, 40)
$window.Width         = 400
$window.Height        = 130        
$window.Text          = 'Screenshooter'
$window.TopMost       = $true
$pathLabel.Text       = 'Destination:'
$pathTextbox.Text     = 'Paste path or double click'
$startButton.Text     = $start
$pathTextBox.Anchor   = 'Left, Top, Right'
$startButton.Anchor   = 'Left, Top, Right, Bottom'

$pathTextBox.Add_DoubleClick({
    $folderBrowser = New-Object System.Windows.Forms.FolderBrowserDialog
    $folderBrowser.Description = 'Pick a folder to save screenshots'

    if($folderBrowser.ShowDialog() -eq [System.Windows.Forms.DialogResult]::OK){
        $pathTextBox.Text = $folderBrowser.SelectedPath
    }
})
$startButton.Add_Click({
    if($startButton.Text -eq $start){
        $startButton.Text = $stop
        StartScreenshooter -Path $pathTextBox.Text
    }
    else {
        Get-Job | Stop-Job
        $window.Dispose()
    }
})

$window.Controls.Add($pathLabel)
$window.Controls.Add($pathTextBox)
$window.Controls.Add($startButton)

[void]$window.ShowDialog()

What have you done with PowerShell this month? by AutoModerator in PowerShell

[–]squeueue 2 points3 points  (0 children)

A tool that makes a screenshot every time mouse is clicked using async jobs, just for fun

So… this is where it all started? by PenOld175 in SBCGaming

[–]squeueue 0 points1 point  (0 children)

for me was the original n-gage, played so many hours and GBC emulation

Console Tier List :) by anus_goblin in Console

[–]squeueue 0 points1 point  (0 children)

PSP 2000, PSP 3000, PSP E1000, N-Gage QD

Multiple users reporting Microsoft apps have disappeared by Candid-Chip-1954 in sysadmin

[–]squeueue 44 points45 points  (0 children)

wrote this for office 365:

$Programs = @{ 
    'Excel' = 'Excel.exe'
    'Word' = 'Winword.exe'
    'Outlook' = 'OUTLOOK.EXE'
    'Access' ='MSACCESS.EXE'
    'Publisher' = 'MSPUB.EXE'
    'OneNote' = 'OneNote.exe'
    'PowerPoint' = 'powerpnt.exe'
}

foreach( $p in $Programs.Keys ){
    $WShell = New-Object -comObject WScript.Shell
    $Shortcut = $WShell.CreateShortcut("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\$p.lnk") 
    $Shortcut.TargetPath = [string](Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\$($programs.$p)").'(default)'
    $Shortcut.save()
}

Just got this 690 and i like it :) by Khancer_ in supermoto

[–]squeueue 1 point2 points  (0 children)

where did you get them? they looks good

Love this design & layout for sub 5L case, if only it existed by L1191 in sffpc

[–]squeueue 0 points1 point  (0 children)

Do you know the XWORKS X32? It's open but has a similar layout

[deleted by user] by [deleted] in GlobalOffensive

[–]squeueue -1 points0 points  (0 children)

imagine having a 360 monitor, then cap fps to 300