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 / 33
DevToys - A Swiss Army knife for developers https://devtoys.app/
Thu Aug 25 12:56:29 2022
QRCode
thumbnail
dev tools
Blochet gâche KFV 11608 https://www.lemagasindelaserrure.fr/gaches-de-serrures-et-de-cremones/318-116-08-blochet-kfv-de-gache.html
Fri Aug 12 12:44:38 2022
QRCode
gache porte
DALL·E https://labs.openai.com/
Sat Jul 30 10:37:01 2022
QRCode
thumbnail
dall-e
nolanlawson/cjs-to-es6: CLI to convert CommonJS to ES6 modules (UNMAINTAINED) https://github.com/nolanlawson/cjs-to-es6
Fri Jul 29 11:05:57 2022
QRCode
thumbnail
javascript
Craquage d'archives chiffrées (PKZIP: Zip ZipCrypto, Winzip: Zip AES, 7 Zip, RAR) - ACCEIS https://www.acceis.fr/craquage-darchives-chiffrees-pkzip-zip-zipcrypto-winzip-zip-aes-7-zip-rar/
Sun Jul 24 21:38:06 2022
QRCode
thumbnail
crack zip
flauwekeul/honeycomb: Create hex grids easily, in node or the browser. https://github.com/flauwekeul/honeycomb
Tue Jul 19 11:54:13 2022
QRCode
thumbnail
and a new hobby pro
hexagone js map
Buldi - Donnez vie à vos projets maison https://www.buldi.fr/
Mon Jul 18 17:36:54 2022
QRCode
extension
films - cassos.ovh > films http://cassos.ovh/films/
Sun Jul 10 12:34:50 2022
QRCode
films torrent
J'ai flashé mon Lenovo SmartClock en AwtrixHD - YouTube https://www.youtube.com/watch?v=kTw5xtEWnBY
Fri Jul 8 08:55:43 2022
QRCode
thumbnail
AwtrixHD
lenovo smartclock
Installation - guizero https://lawsie.github.io/guizero/
Sun May 8 11:38:45 2022
QRCode
python
HTML: liste de caractères Unicode en UTF-8 https://www.jchr.be/html/caracteres.htm
Wed May 4 20:30:24 2022
QRCode
ascii table
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
page 12 / 33
650 links
Shaarli - Le gestionnaire de marque-pages personnel, minimaliste, et sans base de données par la communauté Shaarli - Theme by kalvn