Rank | Trailer | Release Date | GamePass | Shows Gameplay | Xbox Exclusive |
---|---|---|---|---|---|
1 | Gears of War: E-Day | 2025 | ✅ | ||
2 | Diablo IV: Vessel of Hatred | October 8 2024 | |||
3 | S.T.A.L.K.E.R. 2: Heart of Chernobyl | September 6 2024 | ✅ | ✅ | |
4 | Perfect Dark | ✅ | |||
5 | Clair Obscur: Expedition 33 | 2025 | ✅ | ✅ | ✅ |
6 | Fable | 2025 | ✅ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Handy for demos & writing docs | |
Install: | |
$ brew install --cask xquartz | |
$ brew install ffmpeg imagemagick@6 gifsicle pkg-config | |
$ sudo gem install screengif | |
Record: | |
Shift + Cmd + 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
GHIDRA_DIR=/path/to/Ghidra | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" | |
PROJECT_DIR=/path/to/project | |
PROJECT=<project name> | |
FILE=<file within project> | |
SCRIPT=<script path in relation to this script's dir> |
Starting the containerized samba server
sudo docker run \
-p 139:139 \
-p 445:445 \
-v `pwd`:/mount \
-d dperson/samba \
-u 'myuser;mypassword' \
-s 'myshare;/mount;yes;no;no;myuser;myuser;myuser'
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
from pwn import * | |
SEED = 0xdeadbeef | |
RANGE_MIN = 1 | |
RANGE_MAX = 5 | |
ROUNDS = 20 | |
SLEEP_TIME = 0.100 # 100ms | |
random.seed(SEED) |