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
// Here is a simple class to pack multiple files into one single file. | |
// it does not support writeing the files dictionary structure as of yet | |
// This was made as I needed something quick to pack many csv files. | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
namespace FilePack | |
{ |
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
/* A tiny BASIC interpreter */ | |
#include <string.h> | |
#include <stdio.h> | |
#include <setjmp.h> | |
#include <math.h> | |
#include <ctype.h> | |
#include <stdlib.h> | |
#define NUM_LAB 100 |
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.Windows.Forms; | |
using DreamVB.XML.Config; | |
namespace XmlTest | |
{ | |
public partial class Form1 : Form | |
{ | |
public Form1() | |
{ |
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
// A simple class using the TripleDESC encryption to encrypt and decrypt text using a password, | |
// By DreamVB | |
using System; | |
using System.Text; | |
using System.Security.Cryptography; | |
using System.IO; | |
namespace DreamVB.txtCrpyt | |
{ | |
public class TextCrypt |
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.Windows.Forms; | |
using DreamVB.RPNCalulator; | |
namespace RPNTest | |
{ | |
public partial class Form1 : Form | |
{ | |
public Form1() | |
{ |
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
TextDB db = new TextDB(); | |
private void NewDatabase() | |
{ | |
List<string> values = new List<string>(); | |
TextDB.FieldDef fd; | |
List<TextDB.FieldDef> elms = new List<TextDB.FieldDef>(); | |
fd.Name = "Name"; | |
fd.Length = 10; |
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
// DreamVB.Config Version 1.0.1 | |
// This is a full class for reading and writing to Windows INI Files. | |
// This project is a raw class uses no Windows API class. | |
// What's in side this class | |
// Load config data from a file. | |
// Load config data from a raw string | |
// Read and write string values | |
// Read and write Integer, Double values, Boolean values, Long values | |
// Read strings that have line breaks and also write strings with line breaks. |
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
/* | |
* RecBase Beta 2.5 | |
* | |
* RecBase is a small project I am working on to make my own DBMS the system is very basic | |
* it uses plain text files as the tables at the moment it only supports one table | |
* it can be used to store very simple data maybe for a simple address book | |
* | |
* What I hope to add next | |
* Work with multiple tables | |
* Add support for encrypted dbases |
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
// A simple bank account program made in Visual C++ 2013 | |
#include <iostream> | |
#include <vector> | |
#include <string> | |
using namespace std; | |
class Bank{ | |
private: | |
struct account_info |
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
//XString class a custom string class for C++ | |
//Please follow me if you like this code | |
#include <iostream> | |
using namespace std; | |
class XString{ | |
private: | |
char *src = nullptr; | |
unsigned int s_size; |
NewerOlder