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
using System; | |
using System.Text; | |
using System.Runtime.InteropServices; | |
using System.IO; | |
namespace ffProfile | |
{ | |
class GetProfile | |
{ | |
public enum TCache |
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
using System; | |
using System.Text; | |
using System.IO; | |
namespace bin2hex | |
{ | |
class Program | |
{ | |
private static bool _abort = false; |
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
using System; | |
using System.Text; | |
using System.IO; | |
namespace bin2hex | |
{ | |
class bin2hex | |
{ | |
private static bool _abort = false; |
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
/* | |
* CSS Packer | |
* By Ben a.k.a DreamVB | |
* e. [email protected] | |
* | |
* This code will allow you to compress your style sheets makeing them smaller and faster to load. | |
* If you use any parts of this code let me know if it has helped you. | |
* | |
* Also open to sugestions and freedback | |
*/ |
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
#define _CRT_SECURE_NO_WARNINGS | |
#include <stdio.h> | |
#include <string> | |
int PasswordKey(char *pws){ | |
int x = 0; | |
size_t i = 0; | |
x = 1586; | |
while (pws[i]){ |
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
/* | |
DM CSS UNPACKER v1.0 | |
By Ben Jones a.k.a DreamVB | |
Please feel free to use this code as you like. | |
if you feel it has helped you let me know at [email protected] | |
*/ | |
#include <stdio.h> | |
#include <string> |
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
/* | |
DM CSS PACKER v1.0 [STILL NEEDS WORK] | |
Simple CSS packer comments are not yet supported. | |
By Ben Jones a.k.a DreamVB | |
Please feel free to use this code as you like. | |
if you feel it has helped you let me know at [email protected] | |
*/ | |
#include <stdio.h> | |
#include <string> |
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
/* | |
FixTabs By DreamVB | |
Version 1.0 | |
A small tool to convert \t tabs to a number of specified number of spaces. | |
Please feel free to to use as you like. | |
Please let me know if you found this code usfull e. [email protected] | |
*/ | |
#include <stdio.h> |
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
/* | |
Compress HTML By DreamVB | |
Version 1.0 | |
A small tool to compress htm and html files makeing them smaller | |
in size to allow your web pages to load faster. | |
Please feel free to to use as you like or if you want add your own features and let me see the changes. | |
Please let me know if you found this code usfull e. [email protected] | |
*/ |
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
/* | |
Encrypt HTML By DreamVB | |
Version 1.0 | |
Encrypt & Compress HTM and HTML files making them harder to read | |
to protect from your code been stolen. | |
There is also a optional /C compression flag that can be used to also reduce the html size. | |
Please feel free to use as you like or if you want add your own features and let me see the changes. | |
Please let me know if you found this code useful e. [email protected] |
OlderNewer