Mes liens
Nuage de tags
Mur d'images
Quotidien
Flux RSS
  • Flux RSS
  • ATOM Feed
  • Daily Feed
Filtres

Liens par page

  • 20 links
  • 50 links
  • 100 links

Display

Filtrer par liens privés
page 12 / 32
mizu.re https://mizu.re/
Fri Apr 29 09:05:53 2022
QRCode
thumbnail
ctf hack post
Advent of Code 2021 https://adventofcode.com/
Thu Apr 7 15:18:16 2022
QRCode
dev test
vavkamil/awesome-bugbounty-tools: A curated list of various bug bounty tools https://github.com/vavkamil/awesome-bugbounty-tools
Thu Apr 7 09:10:08 2022
QRCode
thumbnail
hack
HackTricks - HackTricks https://book.hacktricks.xyz/
Thu Apr 7 09:09:58 2022
QRCode
thumbnail
hack
toniblyx/my-arsenal-of-aws-security-tools: List of open source tools for AWS security: defensive, offensive, auditing, DFIR, etc. https://github.com/toniblyx/my-arsenal-of-aws-security-tools
Thu Apr 7 09:09:48 2022
QRCode
thumbnail
hack
swisskyrepo/PayloadsAllTheThings: A list of useful payloads and bypass for Web Application Security and Pentest/CTF https://github.com/swisskyrepo/PayloadsAllTheThings
Thu Apr 7 09:09:35 2022
QRCode
thumbnail
hack
An Automatic SC2 Game Start Switcher https://tl.net/forum/starcraft-2/400460-an-automatic-sc2-game-start-switcher
Sun Apr 3 00:04:18 2022
QRCode
using System;
using System.Runtime.InteropServices;
using System.Threading;
using Microsoft.Win32;

namespace SC2GameStartSwitcher
{
    class Program
    {
        //Import the FindWindow API to find our window
        [DllImport("User32.dll", EntryPoint = "FindWindow")]
        private static extern IntPtr FindWindowNative(string className, string windowName);

        //Import the SetForeground API to activate it
        [DllImport("User32.dll", EntryPoint = "SetForegroundWindow")]
        private static extern IntPtr SetForegroundWindowNative(IntPtr hWnd);

        public static IntPtr FindWindow(string className, string windowName)
        {
            return FindWindowNative(className, windowName);
        }

        public static IntPtr SetForegroundWindow(IntPtr hWnd)
        {
            return SetForegroundWindowNative(hWnd);
        }

        public static void Activate(string title)
        {
            //Find the window, using the Window Title
            IntPtr hWnd = FindWindow(null, title);
            if (hWnd.ToInt32() > 0) //If found
            {
                SetForegroundWindow(hWnd); //Activate it
            }
        }

        static void Main()
        {
            int gameState = 0;
            RegistryKey MyReg = Registry.CurrentUser.OpenSubKey
             ("Software\\Razer\\Starcraft2", true);
            MyReg.SetValue("APMValue", "1000");

            Console.WriteLine("\nWelcome to the StarCraft II Automatic Game Start Switcher.\n");
            Console.WriteLine("Game scanning initiated. Feel free to minimize this window.");

            while (true)
            {
                if (gameState == 0) { // in menus
                    Thread.Sleep(2000); // pause for 2 seconds
                    if ((int)MyReg.GetValue("StartModule") == 1) {
                        gameState = 1;
                    }
                } else if (gameState == 1) { // a game is loading
                    Thread.Sleep(10); // pause for 10 milliseconds
                    if (!MyReg.GetValue("APMValue").Equals("1000")) {
                        Activate("StarCraft II");
                        gameState = 2;
                    }
                } else if (gameState == 2) { // in a game
                    Thread.Sleep(2000); // pause for 2 seconds
                    if ((int)MyReg.GetValue("StartModule") == 0) {
                        gameState = 0;
                        MyReg.SetValue("APMValue", "1000");
                    }
                }
            }
        }

    }
}
sc2
BinnewZ France - RSS https://binnews.ninja/vo-films
Sat Apr 2 16:56:50 2022
QRCode
newsgroup
Bulma: Free, open source, and modern CSS framework based on Flexbox https://bulma.io/
Tue Mar 22 10:06:15 2022
QRCode
thumbnail
css
AI Doc Writer - IntelliJ IDEs Plugin | Marketplace https://plugins.jetbrains.com/plugin/18606-ai-doc-writer
Wed Mar 16 20:30:12 2022
QRCode
doc php
Comment afficher correctement un fichier CSV dans un terminal ? https://korben.info/lire-csv-linux.html
Mon Mar 14 21:45:49 2022
QRCode
thumbnail
csv linux
vavkamil/awesome-bugbounty-tools: A curated list of various bug bounty tools https://github.com/vavkamil/awesome-bugbounty-tools#Screenshots
Tue Mar 8 09:34:10 2022
QRCode
thumbnail
hack pentest
Simon Beck's Snow Art | Facebook https://www.facebook.com/snowart8848/photos
Mon Mar 7 17:29:17 2022
QRCode
art dans la neige et le sable
art
Keep colors in your console : grep | less - Grimoire-Command.es https://www.grimoire-command.es/2021/keep_colors_of_grep_pipe_less.html
Tue Feb 22 14:58:29 2022
QRCode
color grep linux
prefers-color-scheme - CSS: Cascading Style Sheets | MDN https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme
Tue Feb 22 11:34:23 2022
QRCode
thumbnail
css dark
Torrent911: Téléchargement de Torrents https://www.torrent911.com/
Fri Feb 18 23:00:20 2022
QRCode
torrent
mufeedvh/pdfrip: Fast PDF password cracking utility equipped with commonly encountered password format builders and dictionary attacks. https://github.com/mufeedvh/pdfrip
Mon Feb 14 13:50:26 2022
QRCode
thumbnail
crack hack pdf
NZBIndex - We index, you search https://www.nzbindex.com/search
Fri Feb 4 18:44:41 2022
QRCode
newsgroup
Forums - NZB NEWZ FRANCE https://www.nzbnewzfrance.ninja/?forumId=321
Fri Feb 4 15:03:08 2022
QRCode
newsgroup
Télécharger des ebooks gratuitement https://ww2.bookys-ebooks.com/
Thu Feb 3 17:43:57 2022
QRCode
epub
page 12 / 32
639 links
Shaarli - Le gestionnaire de marque-pages personnel, minimaliste, et sans base de données par la communauté Shaarli - Theme by kalvn