My Place Within

Started by BamBam0077, November 20, 2017, 09:50:11 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ShadoW69

Quote from: Mindless on November 21, 2017, 01:12:40 AMhe banned me, putyn, pdq

Actually a lot of coders were banned, myself included. It was right at that moment, I was preping to post the stylesheet manager mod.
From what I got told, Mindless had a disagreement with Coldfusion about U-232, can't remember the old name of the first release(tbdev installer maybe), and about Xam's payed tracker. Something also about bvlist as well, if I remember correctly. Anyways, I am GRATEFUL to TBDev, for it were my initial steps to become the programmer I am today. Sometimes I really miss that community.

Quote from: Mindless on November 21, 2017, 01:12:40 AMIf you posted one thing out of line you had a lot of heat on your neck fast

Oh the days, Laffin critiqued my old code :P, which nowadays can understand why, when looking back at old code :)

BamBam0077


CREATE TABLE `announce` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`domain` varchar(255) NOT NULL DEFAULT 'https://localhost',
`torrent` int(10) unsigned NOT NULL,
`leechers` int(10) unsigned NOT NULL DEFAULT '0',
`seeders` int(10) unsigned NOT NULL DEFAULT '0',
`times_completed` int(10) unsigned NOT NULL DEFAULT '0',
`t_online` enum('yes', 'no') NOT NULL DEFAULT 'yes',
PRIMARY KEY (`id`),
KEY `torrent` (`torrent`),
KEY `online`  (`t_online`) 
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- -----------------------------------------------
CREATE TABLE `attachments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`topic_id` int(10) unsigned NOT NULL DEFAULT '0',
`post_id` int(10) unsigned NOT NULL DEFAULT '0',
`filename` varchar(255) NOT NULL DEFAULT '',
`size` int(20) unsigned NOT NULL DEFAULT '0',
`owner` int(10) unsigned NOT NULL DEFAULT '0',
`downloads` int(10) unsigned NOT NULL DEFAULT '0',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`type` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
KEY `topicid` (`topic_id`),
KEY `postid` (`post_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- -----------------------------------------------
CREATE TABLE `attachments_downloads` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`fileid` int(10) NOT NULL DEFAULT '0',
`username` varchar(255) NOT NULL DEFAULT '',
`userid` int(10) NOT NULL DEFAULT '0',
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`downloads` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `fileid_userid` (`fileid`,`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- -----------------------------------------------
CREATE TABLE `bans` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`added_by` int(10) unsigned NOT NULL DEFAULT '0',
`comment` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`first` varchar(40) DEFAULT NULL,
`last` varchar(40) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `first_last` (`first`,`last`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `blocks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`named` varchar(255) NOT NULL DEFAULT '',
`position` varchar(10) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`sort` int(11) NOT NULL DEFAULT '0',
`enabled` tinyint(3) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `enabled_pos` (`position`, `enabled`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- -----------------------------------------------
CREATE TABLE `categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL DEFAULT '',
`sort_index` int(10) unsigned NOT NULL DEFAULT '0',
`image` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`cat_desc` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'No Description',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `comments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` int(10) unsigned NOT NULL DEFAULT '1',
`torrent` int(10) unsigned NOT NULL DEFAULT '0',
`added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`text` blob,
`news` int(10) unsigned NOT NULL DEFAULT '0',
`edited_by` int(10) unsigned NOT NULL DEFAULT '0',
`edited_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`request` int(10) unsigned NOT NULL DEFAULT '0',
`anonymous` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
PRIMARY KEY (`id`),
KEY `user` (`userid`),
KEY `torrent` (`torrent`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `completed` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`userid` int(10) NOT NULL DEFAULT '0',
`torrentid` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE `userid_torrentid` (`userid`, `torrentid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- -----------------------------------------------
CREATE TABLE `countries` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
`flagpic` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `files` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`torrent` int(10) unsigned NOT NULL DEFAULT '0',
`filename` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`size` int(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `torrent` (`torrent`),
FULLTEXT KEY `filename` (`filename`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `forums` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`order` smallint(5) unsigned NOT NULL DEFAULT '0',
`title` tinyblob,
`description` blob,
`icon` enum('star.png','staff.png','member.png') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'member.png',
PRIMARY KEY (`id`) 
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `forums_permissions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`groupid` int(10) unsigned NOT NULL DEFAULT '1',
`permissons` enum('member','staff','owner','anonymous') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'member',
`minreadclass` tinyint(3) unsigned NOT NULL DEFAULT '0',
`mincreateclass` tinyint(3) unsigned NOT NULL DEFAULT '0',
`minwriteclass` tinyint(3) unsigned NOT NULL DEFAULT '0',
`min_view_class` tinyint(3) unsigned NOT NULL DEFAULT '0',
UNIQUE KEY `forumid` (`id`, `groupid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `forums_settings` (
`id` smallint(1) NOT NULL DEFAULT '1',
`delete` smallint(6) NOT NULL DEFAULT '0',
`min_delete_class` smallint(2) unsigned NOT NULL DEFAULT '7',
`read_post_expiry` smallint(3) unsigned NOT NULL DEFAULT '14',
`min_upload_class` smallint(2) unsigned NOT NULL DEFAULT '2',
`file_accepted_extension` varchar(80) NOT NULL,
`file_accepted_types` varchar(280) NOT NULL, 
`file_max_size` int(10) unsigned NOT NULL DEFAULT '2097152',
`upload_dir_path` varchar(80) NOT NULL DEFAULT 'uploads/',
PRIMARY KEY (`read_post_expiry`),
KEY `delete` (`delete`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- -----------------------------------------------
CREATE TABLE `forums_posts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL DEFAULT '1',
`thread_id` int(10) unsigned NOT NULL DEFAULT '0',
`date_post` datetime COLLATE utf8_unicode_ci NOT NULL DEFAULT '0000-00-00 00:00:00',
`message_body` longtext COLLATE utf8_unicode_ci,
`date_edited` datetime COLLATE utf8_unicode_ci NOT NULL DEFAULT '0000-00-00 00:00:00',
`reason` blob,
`last_post_read` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `userid` (`user_id`),
KEY `threadid` (`thread_id`),
KEY `posted` (`date_post`),
FULLTEXT KEY `body_message` (`message_body`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `forums_threads` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL DEFAULT '1',
`forum_id` int(10) unsigned NOT NULL DEFAULT '0',
`title` tinytext COLLATE utf8_unicode_ci,
`locked` enum('yes','no') NOT NULL DEFAULT 'no',
`moved` enum('yes','no') NOT NULL DEFAULT 'no',
`sticky` enum('yes','no') NOT NULL DEFAULT 'no',
`reply_count` int(10) unsigned NOT NULL DEFAULT '0',
`views_count` int(10) unsigned NOT NULL DEFAULT '0',
`last_post_date` datetime COLLATE utf8_unicode_ci NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `forumid` (`forum_id`),
KEY `userid` (`user_id`),
KEY `last_post_date` (`last_post_date`),
FULLTEXT KEY `subject` (`title`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `overfourms` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`sort` tinyint(3) unsigned NOT NULL DEFAULT '0',
`name` tinyblob,
`description` blob,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- -----------------------------------------------
CREATE TABLE `friends` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`memberid` int(10) unsigned NOT NULL DEFAULT '1',
`friendsid` int(10) unsigned NOT NULL DEFAULT '0',
`confirmed` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
PRIMARY KEY (`id`),
UNIQUE KEY `userfriend` (`memberid`, `friendsid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `member_warnings` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`memberid` int(10) unsigned NOT NULL DEFAULT '1',
`warning_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`active_warning` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
`firstwarning` tinyint(2) unsigned NOT NULL DEFAULT '0',
`secondwarning` tinyint(3) unsigned NOT NULL DEFAULT '0',
`thirdwarning` tinyint(4) unsigned NOT NULL DEFAULT '0',
`fourthwarning` tinyint(5) unsigned NOT NULL DEFAULT '0',
`finalwarning` tinyint(6) unsigned NOT NULL DEFAULT '0',
`strikes_against` tinyint(7) unsigned NOT NULL DEFAULT '0',
`expiry_timeout` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`reasons` blob,
`notes` blob,
`warned_by` blob,
PRIMARY KEY (`id`),
KEY `memberid` (`memberid`),
KEY `expired_warning` (`expiry_timeout`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `requests` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`userid` int(10) unsigned NOT NULL DEFAULT '1',
`request` blob,
`description` blob,
`timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comments` int(10) unsigned NOT NULL DEFAULT '0',
`category` blob,
`uploaded_by` blob,
`fileid` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `memberid` (`userid`),
KEY `idtimestamp` (`id`,`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
-- -----------------------------------------------
CREATE TABLE `voted_requests` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`requestid` int(10) unsigned NOT NULL DEFAULT '0',
`userid` int(10) unsigned NOT NULL DEFAULT '1',
`anonymous` blob,
PRIMARY KEY (`id`),
KEY `pollid` (`id`),
KEY `memberid` (`userid`),
KEY `memberid_requestedid` (`userid`,`requestid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `news` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`memberid` int(10) unsigned NOT NULL DEFAULT '1',
`date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`news_title` tinyblob,
`content_body` blob,
PRIMARY KEY (`id`),
KEY `news_date` (`date_added`)   
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- -----------------------------------------------
CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`groupid` smallint(5) unsigned NOT NULL DEFAULT '1',
`grouptitle` blob,
`groupteam` blob,
`username` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'noreply@localhost',
`passkey` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`secret` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`age` int(3) unsigned NOT NULL DEFAULT '0',
`editsecret` varchar(40) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`editusername` blob,
`editpassword` blob,
`BittorrentClient` varchar(30) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`customtitle` blob,
`pending_account` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
`approved_account` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
`approval_needed_on_thread` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'yes',
`approval_needed_on_chat` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'yes',
`approval_needed_before_msg` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'yes',
`approval_needed_after_msg` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'yes',
`approval_waiting` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'yes',
`downloaded` int(20) unsigned NOT NULL DEFAULT '0',
`uploaded` int(20) unsigned NOT NULL DEFAULT '0',
`invites` smallint(5) unsigned NOT NULL DEFAULT '3',
`invitedby` blob,
`invitedtimestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`subscribe` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
`friendship` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
`anonymous` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no'
`timezone` varchar(5) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
`autocorrectdst` tinyint(1) unsigned NOT NULL DEFAULT '1',
`accountParked` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
`reputation` int(10) unsigned NOT NULL DEFAULT '5'
`skins` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'default',
`language` smallint(5) unsigned NOT NULL DEFAULT '1',
`skinid` int(10) unsigned NOT NULL DEFAULT '1',
`languageid` int(10) unsigned NOT NULL DEFAULT '1',
`obtainip` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '127.0.0.1',
`datejoined` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`invisible_switch` tinyint(1) unsigned NOT NULL DEFAULT '0',
`visible_switch` tinyint(1) unsigned NOT NULL DEFAULT '0',
`online` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
`offline` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
`inactivity` int(10) unsigned NOT NULL DEFAULT '0',
`lastforumvisit` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`lastforumactivity` int(10) unsigned NOT NULL DEFAULT '0',
`snow_effect` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'yes',
`rain_effect` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
`browserOS` blob,
`gender` blob,
`stickynotes` blob,
`privacy` enum('low','normal','high') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'normal',
`acceptpms` enum('yes','ignored','friends','staff','owner','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'yes',
`unread_balloon_alerts` smallint(5) unsigned NOT NULL DEFAULT '0',
`unread_msgs` smallint(5) unsigned NOT NULL DEFAULT '0',
`barred` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
`warnings` int(10) unsigned NOT NULL DEFAULT '0',
`cain_marks` int(10) unsigned NOT NULL DEFAULT '0',
`total_cain_marks` blob,
`warned_until` int(10) unsigned NOT NULL DEFAULT '0',
`admincp` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
`avatar` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'images/anonymous_mask.png',
`avatar_height` smallint(5) unsigned NOT NULL DEFAULT '100',
`avatar_width` smallint(5) unsigned NOT NULL DEFAULT '130',
`classranks` enum('Jailed','Member','Scene','Trustee','Moderator','Administrator') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Member',
`badges` enum('Badge1','Badge2','Badge3','Badge4','Badge5','Badge6','NoBadge') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'NoBadge',
-- https://bulbapedia.bulbagarden.net/wiki/Badge#Indigo_League
`country` int(10) unsigned NOT NULL DEFAULT '0',
`country_flag` blob,
`lastactivity` int(10) unsigned NOT NULL DEFAULT '0',
`approval_required` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
`plugin_ext_captcha` blob,
`plugin_ext_creative` blob,
`account_confirmed` enum('Waiting','Pending','Accepted') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Pending',
`settings` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no'
PRIMARY KEY (`id`),
-- once they figure out I demostrate against myself for aliving,
-- throw me a pokemon ball I will catch ya a magikarp
-- https://bulbapedia.bulbagarden.net/wiki/Magikarp_(Pok%C3%A9mon)
KEY `membername` (`username`),
KEY `passkey` (`passkey`),
KEY `browserOS` (`browserOS`),
KEY `myanonip` (`obtainip`),
-- https://www.expressvpn.com/internet-security/proxy?refID=AU_SE&creative=73879934476&targetid=kwd-17540229664&matchtype=e&device=c&campaignid=269653036&adgroupid=7635099796&feeditemid=&loc_physical_ms=9072113&loc_interest_ms=&network=g&devicemodel=&placement=&keyword=proxy%20vpn&target=&aceid=&adposition=1t2&gclid=Cj0KCQiAus_QBRDgARIsAIRGNGiV0bWol-jae6zptWlLPjCkq3VkgqByxs6mQheARimWGcS_McnSJ2MaAuhlEALw_wcB
KEY `account_parked` (`accountParked`),
KEY `snakeskins` (`skins`),
KEY `anonymity` (`anonymous`),
KEY `datejoined` (`datejoined`),
KEY `jailedacc` (`barred`),
KEY `inactive` (`inactivity`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ------------------------------------------------
CREATE TABLE `sqlerr` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`text` blob,
`time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- -----------------------------------------------
CREATE TABLE `censoredwords` (
`default_text` varchar(255) NOT NULL DEFAULT '',
`text_protected` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- -----------------------------------------------
"When Darkness Shadows Your Doubts, Deep Within Us Is Our Key, Not Success But Everything" ~ Anonymous

Mindless

TBdev was pretty hardcore for any coder. If you posted one thing out of line you had a lot of heat on your neck fast. A lot of big characters and some serious mental talent. I enjoyed my time there, but was always at odds with Coldfusion. In terms of nurturing talent there was no better place but ego's got in the way and it ultimately was closed by Coldfusion, he banned me, putyn, pdq for silly reasons when 09 was released. Losing TBdev was a major blow for the torrent scene in my opinion, maybe I was part of the reason for that closure with my stubbornness over having a modified installer ready to run, my reason was simple, former TBdev member Xam ripped TBdev off and all its members that contributed mods by selling Template Shares, I reasoned I would hurt his pocket providing a fully modded code for nothing, Coldfusion dis-agreed saying I was using TBdev to boost myself, load of pish to be fair. I'll let others post some before I say anymore, its late and im tipsy lmao.

BamBam0077

You see alot of you get me wrong and judge before you get to read me which is fine as breathing but you will notice half the shit if not the entire shit I type well does cover the bases of being a human, now I don't pry into your life if I did it was for a reason nothing more then that, not everything is done on purpose you know an illusion before your own eyes, everyone knows alot about tbdev so please do share with me more stories so I have a reason to vent and breathe atad longer then a tadpole swimming with nemo.
"When Darkness Shadows Your Doubts, Deep Within Us Is Our Key, Not Success But Everything" ~ Anonymous