Skip to content

Instantly share code, notes, and snippets.

@icecr4ck
icecr4ck / idapython_cheatsheet.md
Last active April 23, 2024 18:45
Cheatsheet for IDAPython
@altbdoor
altbdoor / README.md
Last active June 10, 2023 01:37
Sublime Text 3 plugin to automatically close purchase pop up on save
@jarek-przygodzki
jarek-przygodzki / windows-unicode-encode-error.md
Last active November 6, 2023 15:01
Windows - python 3 UnicodeEncodeError: 'charmap' codec can't encode character '\u2013' in position 9629: character maps to <undefined>

If you to run into this problem change the console encoder to utf-8 before starting python

chcp 65001
set PYTHONIOENCODING=utf-8
@zuhairkareem
zuhairkareem / search_partial_string_array.php
Last active May 19, 2023 15:14
Search partial string in an array in PHP
<?php
/**
* First Method.
*/
function array_search_partial($arr, $keyword) {
foreach($arr as $index => $string) {
if (strpos($string, $keyword) !== FALSE)
return $index;
}
}
@DraTeots
DraTeots / ComPort over Network.md
Last active May 3, 2024 16:10
ComPort over Network