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
<?php | |
echo "<h1>Hello LFI !</h1> | |
?> |
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
vnoremap <leader>sed :s/\v//g | |
nnoremap <leader>sed :s/\v//g |
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
/** | |
* @brief swap nibbles in one byte | |
* | |
* @param[in,out] io_value | |
*/ | |
inline void NibblesSwap(std::uint8_t & io_value) | |
{ | |
io_value = ((io_value & 0x0FU) << 4U) | ((io_value & 0xF0U) >> 4U); | |
} |
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 <iostream> | |
#include <string> | |
#include <tinyxml.h> | |
#include <fstream> | |
#include <openvdb/openvdb.h> | |
#include <openvdb/tools/ParticlesToLevelSet.h> | |
#include <openvdb/Exceptions.h> | |
#include <openvdb/Types.h> | |
#include <openvdb/tree/LeafNode.h> | |
#include <openvdb/tools/Filter.h> |