Dehydra is queen
GOD SHE SURE IS
seen from Yemen
seen from India
seen from United Kingdom
seen from China
seen from Netherlands
seen from China
seen from Argentina

seen from Germany

seen from France
seen from United Arab Emirates

seen from Türkiye

seen from France
seen from China
seen from Malaysia
seen from United Kingdom

seen from France
seen from Hong Kong SAR China
seen from United States

seen from Japan
seen from United Kingdom
Dehydra is queen
GOD SHE SURE IS
I love them scoob
a lot of ppl r saying they gave Honeys design to Zephyr (left) but like im p sure she looks WAY more like Dehydra (right) and her powers r unknown but judging by the name and colours i wanna say its smth hot and fiery or dry, to be the opposite of Frozones powers as a lil joke
STX DEHYDRA 1200W-XLS - MULTI-SECTION "BREAK DOWN MODEL" - 10 TRAY COMMERCIAL/INDUSTRIAL GRADE STAINLESS STEEL FOOD DEHYDRATOR
16 Square Feet of drying house on the trays and three,712 Cubic Inches of drying space within the unit!!!. PLEASE NOTE! WE DO "NOT" SHIP TO HAWAII, ALASKA, CANADA, PUERTO RICO, THE VIRGIN ISLANDS, APO'S/FPO'S, ETC. - WE DO "NOT" SHIP TO PO BOXES!!! WE "ONLY" SHIP VIA UPS GROUND!!! The STX DEHYDRA 1200W-XLS (EXTRA LARGE) is an "EXCELLENT QUALITY STAINLESS STEEL COMMERCIAL/INDUSTRIAL GRADE - HORIZONTAL AIR FLOW" Food Dehydrator at a Very Competitive Price..STX DEHYDRA 1200W-XLS - MULTI-SECTION "BREAK DOWN MODEL" - 10 TRAY COMMERCIAL/INDUSTRIAL GRADE STAINLESS STEEL FOOD DEHYDRATOR
how to build dehydra from source code
[转]More on static analysis with gcc - meet dehydra
a simple example of using dehydra to analyze cpp code http://blogs.kde.org/node/3970
Installation of Dehydra
Dehydra is a plugin for gcc (4.5 recommended) that aimed to do c++ static analysis. It is provided by Mozilla.
install
sudo apt-get install dehydra
source file to be tested
dumptypes.cc
typedef struct{
int i;
char *c;
void function() {
int foo;
}
int d[100];
}Bar;
js file used to analyze
I want to grep out the non-pointer non-function member variables
function process_type(t){
for each(let m in t.members) {
if(!m.isFunction) {
if(m.type.isArray) {
var max = parseInt(m.type.max)+1;
print(m.type.type.name + " " + m.shortName + "[" + max + "]");
}
else if(!m.type.isPointer) {
print(m.type.name + " "+m.shortName);
}
}
}
}
Compile
g++ -fplugin=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5/plugin/gcc_dehydra.so -fplugin-arg-gcc_dehydra-script=./dumptypes.js -o/dev/null -c dumptypes.cc
How to find the path of gcc_dehydra.so
We can find it using bash's find command
find /usr/lib -name "gcc_dehydra.so"
Result of Compiling
int i int d[100]