- Download & Install Sublime Text 3.2.2 Build 3211
- Visit https://hexed.it/
This file contains hidden or 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
//encrypt_asus | |
//Ren.B | |
#define ALIGN_SIZE 1024 | |
#define DEFAULT_HEADER "DSL-N66U" | |
//must be the same structure in /apps/private/cfg_manager/utility.c | |
typedef struct romfile_header_s | |
{ | |
char productName[16]; | |
char keyWord[16]; //encryptRomfile |
This file contains hidden or 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
# https://bougui505.github.io/2016/02/29/zsh_string_manipulation-_split_string.html | |
Split string in a given word separator (ws) | |
For example _: | |
# x="foo_1" | |
# echo $x[(ws:_:)1] | |
foo | |
# echo $x[(ws:_:)2] | |
1 |
This file contains hidden or 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
/* Read this comment first: https://gist.github.com/tonious/1377667#gistcomment-2277101 | |
* 2017-12-05 | |
* | |
* -- T. | |
*/ | |
#define _XOPEN_SOURCE 500 /* Enable certain library functions (strdup) on linux. See feature_test_macros(7) */ | |
#include <stdlib.h> | |
#include <stdio.h> |
This file contains hidden or 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
/* | |
* Author : Pierre-Henri Symoneaux | |
*/ | |
#include <stdlib.h> | |
#include <string.h> | |
//Hashtable element structure | |
typedef struct hash_elem_t { | |
struct hash_elem_t* next; // Next element in case of a collision |
This file contains hidden or 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
type listBucket | |
payload as any ptr | |
nextBucket as listBucket ptr | |
end type | |
type List extends object | |
private: | |
_start as listBucket ptr | |
_end as listBucket ptr | |
_mutex as any ptr |
This file contains hidden or 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
mkdir Ahteam | |
cd Ahteam | |
wget http://qunpack.ahteam.org/wp-content/uploads/2007/03/quickunpack10rc1.zip | |
wget https://ahteam.org/files/oursoft/ASPR_Dumper_v0_1.zip | |
wget https://ahteam.org/files/oursoft/DeDe_PAS_Viewer_v1_0.zip | |
wget https://ahteam.org/files/oursoft/Easy_PatchMaker_v1_0.zip | |
wget https://ahteam.org/files/oursoft/EP_Protector_v0_3.zip | |
wget https://ahteam.org/files/oursoft/NFO_File_Maker_v2_2.zip | |
wget https://ahteam.org/files/oursoft/NFO_Viewer_v1_2_Final.zip | |
wget https://ahteam.org/files/oursoft/PlayIn_v0_9.zip |
This file contains hidden or 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
#include "fbgfx.bi" | |
#if __FB_LANG__ = "fb" | |
Using FB '' Screen mode flags are in the FB namespace in lang FB | |
#endif | |
'' Sets screen mode 18 (640*480) with 32bpp color depth and 4 pages, in windowed mode; switching disabled | |
'Screen 18, 32, 4, (GFX_WINDOWED Or GFX_NO_SWITCH) | |
#Define inc += 1 | |
#Define dec -= 1 |
This file contains hidden or 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
### Run vcs_info selectively to increase speed in large repos ################ | |
# The following example shows a possible setup for vcs_info which displays | |
# staged and unstaged changes in the vcs_info prompt and prevents running | |
# it too often for speed reasons. | |
# Allow substitutions and expansions in the prompt, necessary for | |
# using a single-quoted $vcs_info_msg_0_ in PS1, RPOMPT (as used here) and | |
# similar. Other ways of using the information are described above. | |
setopt promptsubst |