#tddrama
Explore tagged Tumblr posts
Text
In the Cartoon Network’s Total Drama Franchise, Dawn (voiced by Caitlynne Medrek) is a character. Dawn is very talented, she can read people’s auras and communicate with animals. Dawn is a member of the Toxic Red team and friends with B, Sam, and Brick. She has pointed hair and pale brown hair. The Dawn outfit contains purple tights, a grey skirt, a blue collared shirt, an olive green sweater, and black loafers. Finalize your look with elf ears and pale purple lipstick. Collect all the accessories of the Dawn costume from Total Drama: Revenge of the Island for Halloween and cosplay.
#dawn#dawncostume#dawncosplay#totaldramarevengeoftheisland#totaldrama#totaldramacosplay#totaldramacostume#totaldramaisland#halloweencostume#halloweencosplay#findurfuture#tddrama#halloween cosplay#halloween costumes#findurfuture costume
0 notes
Text
i thought we were friends then you say this about me........................................................................
1 note
·
View note
Text
i cant believe chazzy chaz is responsible for scourtney.
6 notes
·
View notes
Text
wow everyone in this fandom needs to jUST MEET ME IN THE FUCKING COURT LIKE YOU WANT MY ADDRESS SON!??! ILL GIVE YOU MY ADDRESS MEET ME AT THE PARK WITH THE BASKETBALL COURT AND ILL SHOW YOU HOW I GET SHIT DONE
#tddrama#this is 4 tasha taco scarlett and tophy#all of ya'll can get outta here or meet in the court#maybe both
6 notes
·
View notes
Text
This shit is getting really annoying.
1 note
·
View note
Text
Tasha keeps targeting Cass and I'm getting so fucking pissed off and I know fae can handle her on faer own but I still wanna bash Tasha's face in and make sure she never says one negative thing about faer ever again because fae is the last person who deserves that crap.
0 notes
Text
Mocking Rails, for SPEED
DISCLAIMER: This article is by no means related to the recent quarrel about TDD's death (be it presumed or actual), nor to this article or these hangouts.
Now that we're clear let us get to the real title:
How I test Rails stuff without loading Rails and learned to use mkdir
Chapter 1: mkdir1
this chapter is quite brief and straightforward…
Starting from Rails 3 every folder you create under app will be used for autoloading, this means that you can group files by concern2 instead of grouping them by MVC role, or you maybe want to add new "roles".
For example the app I'm currently working on contains looks like this:
app/ ├── admin ├── assets ├── authentication ├── authorization ├── controllers ├── forms ├── helpers ├── journaling ├── mailers ├── models ├── proposals ├── utils └── views
The journaling folder contains journal.rb (a simple Ruby class) and journal_entry (an ActiveRecord model).
Chapter 2: Rails not required
Talking about that Journal, it doesn't really need Rails to be used, it's ok with any JournalEntry-ish object that exposes this API:
class FauxJournalEntryClass < Struct.new(:difference, :user, :model_type, :model_id, :action) def save! @persisted = true end def persisted? @persisted end end
So it can be used and tested without loading rails, that gives opportunity to have the corresponding spec to give us really fast feedback. Enter a lighter version of our spec_helper:
# spec/spec_helper.rb RSpec.configure do |config| # yada, yada, rspec default config from `rspec --init` end
along with a speedy spec:
require 'light_spec_helper' require File.expand_path('../../app/journal/journal', __FILE__) describe Journal do # examples here... end
and have the normal spec_helper to load the light one:
# spec/spec_helper.rb require 'light_spec_helper' # stuff coming from `rails generate rspec:install`...
Chapter 3: Mocking Rails
…without making fun of it
With time i often found myself in the need to add a logger, to check current environment or to know the app's root from this kind of plain classes.
In a Rails app the obvious choices are Rails.logger, Rails.env and Rails.root. In addition I really can't stand that File.expand_path and light_spec_helper, they're just ugly.
My solution was to:
have a faux Rails constant that quacks like Rails in all those handy methods
add the most probable load paths into the light spec_helper
rename the the rails-ready spec_helper to rails_helper and keep the light helper as the default one
Here's how it looks:
# spec/spec_helper.rb require 'bundler/setup' require 'pathname' unless defined? Rails module Rails def self.root Pathname.new(File.expand_path("#{__dir__}/..")) end def self.env 'test' end def self.logger @logger ||= begin require 'logger' Logger.new(root.join("log/#{env}.log")) end end def self.cache nil end def self.fake? true end def self.implode! class << self %i[fake? cache logger env root implode!].each do |m| remove_method m end end end end end $:.unshift *Dir[File.expand_path("#{Rails.root}/{app/*,lib}")] RSpec.configure do |config| # yada, yada, rspec default config from `rspec --init` end
Notice anything of interest? I bet you already guessed what Rails.implode! does…
Here's the shiny new rails_helper:
ENV["RAILS_ENV"] ||= 'test' require 'spec_helper' Rails.implode! if Rails.respond_to? :implode! require File.expand_path('../../config/environment', __FILE__) require 'rspec/rails' # Requires supporting ruby files with custom matchers and macros, etc, # in spec/support/ and its subdirectories. Dir[Rails.root.join('spec/support/**/*.rb')].each do |f| f = Pathname(f).relative_path_from(Rails.root.join('spec')) require f end ActiveRecord::Migration.maintain_test_schema! # rails 4.1 only RSpec.configure do |config| # stuff coming from `rails generate rspec:install`... end
Conclusion
The introduction of Spring in Rails 4 has actually made all this stuff useless, running RSpec through it makes it blazingly fast.
Sorry if I wasted your time and I didn't even make you smile.
I don't actually use mkdir, I know how to use my editor ↩
Not those concerns ↩
2 notes
·
View notes
Text
tasha: [harasses people through anon and out of anon and supports shitty thing that offend everyone else]
everyone: [harmless comment to retaliate]
tasha; OMG I WAS BULLIED U SCUMSUCKERS THIS IS ACTUAL HARASSMENT YOU ARE BULLYING ME!!!!1! BULLYING!!1!!2!
9 notes
·
View notes
Note
Not really a confession but more a question...when did the fandom stop caring about respecting each others opinions? I mean seriously, It's ok to not like a character or a ship, but it's another to shove that hate down everyone's throat. I've already begun blacklisting the negatives of everything, all the un-needed hate and arguments, yet they still find their way back, tagged as something new and it's really just getting depressing.
I’m gonna say right around when people read disliking a character as a personal attack.
Or when people responded to critiquing a ship with shit like “you’re a horrible person and I hate you”.
Or when people started thinking that being bullied gave them a right to bully other people.
Or when people started treating having an unpopular opinion like being oppressed.
Or when people ignore their own behavior and say they’re being bullied for having an unpopular opinion.
*shrugs*
#total drama#tddrama#total drama fandom#td fandom#i actually have mike blacklisted because of this#Anonymous#mod post#oh also the whole 'what strangers say about me is so fucking important' bs
1 note
·
View note
Text
In the animated series Total Drama: Revenge of the Island, Anna Maria (voiced by Athena Karkanis) is a character. She is a member of the Mutant Maggots. She is quick-tempered and willing to do anything to win, no matter how negative this impacts her appearance. Over her infatuation with Vito, she sometimes conflicts with Zoey and Mike‘s personalities. Anna Maria wears a pink crop top with ruffled sleeves, mint green capri pants, a belt, and pink shoes. She also wears hoop earrings, lipstick, and bright eye shadow. Collect all the accessories of the Anna Maria costume from Total Drama: Revenge of the Island for Halloween and cosplay.
#annamaria#annamariacostume#annamariacosplay#halloweencostume#halloweencosplay#findurfuture#totaldramaisland#totaldrama#totaldramarama#totaldramaoutfit#totalisland#totaldramapresents#tddrama#halloween cosplay#halloween costumes#findurfuture costume
0 notes
Text
codykins: *posts gross, misogynistic art in the tag*
me:
56 notes
·
View notes
Text
In Total Drama: Revenge of the Island, Brick (voiced by Jon Cor) begins as a member of the Mutant Maggots. Later, along with Lightning, B, Dakota, and others, switch to the Toxic Rats. He never left his teammates behind as he is an army kid who respects his superior. Jo and Brick often compete with each other. His unibrow is the most distinctive feature of Brick. Brick wears an army green shirt, black combat boots, and long blue shorts. Finish the look with a black belt and silver dog tag. Collect all the accessories of the Brick costume from Total Drama for Halloween and cosplay.
#brick#brickcostume#brickcosplay#bricktotaldrama#halloweencostume#halloweencosplay#findurfuture#TotalDrama#totaldramaisland#totalisland#tddrama#totaldramarama#totaldramabrick#totaldrmapresents#halloween cosplay#halloween costumes#findurfuture costume#cartoon network
0 notes
Text
In the Total Drama All-Stars and Total Drama: Revenge of the Island, Lightning (voiced by Tyrone Savage) is a character. He is extremely self-centered and competitive, often showing off and betraying Cameron‘s agreement. Lightning wears a football jersey though he has a strong physique. He also wears cargo shorts and light blue sneakers. A lightning bolt necklace and earrings are his additional accessories. An accurate version of her costume uses a large iron-on patch “1” to transform a t-shirt into Lightning’s jersey. Collect all the accessories of the Lightning costume from Total Drama for Halloween and cosplay.
#lightning#lightningcostume#lightningcosplay#halloweencostume#halloweencosplay#findurfuture#totaldramaisland#totaldrama#totaldramacostume#totaldramacosplay#tddrama#totaldramalightning#lightningtotaldrama#halloween cosplay#halloween costumes#findurfuture costume
1 note
·
View note
Text
In the Total Drama series, Mike (voiced by Cory Doran) is a character. As a member of Mutant Maggots along with Cameron, Brick, Anna Maria, Jo, and Zoey, he appears in Total Drama: Revenge of Island. As a returned camper he appeared in the Total Drama All-Stars. Zoey is his crush and future girlfriend. Mike has spiky black hair and he wears blue jeans and gray sneakers. It might be difficult to find an exact match for the Mike shirt; don’t worry try layering a teal t-shirt over a pale yellow tee for an identical look. Collect all the accessories of the Mike costume from Total Drama for Halloween and cosplay.
#mike#mikecostume#mikecosplay#miketotaldrama#totaldramamike#halloweencostume#halloweencosplay#findurfuture#tddrama#TotalDrama#TotalDramacostume#TotalDramacosplay#totaldramaisland#totaldramansfw#halloween cosplay#halloween costumes#findurfuture costume
0 notes
Text
In the Cartoon Network Total Drama franchise, Jo is a character. She was a camper in Total Drama: Revenge of the Island. During the series at different points, Jo is a part of Mutant Maggots as well as the Toxic Rats. On the villainous vultures, Jo returns as a camper in Total Drama All-Stars. She has dark brown hair and wears a brownish sweatshirt, grey pants, and green sneakers. Collect all the accessories of the Jo costume from Total Drama for Halloween and cosplay.
#findurfuture#halloween cosplay#halloween costumes#findurfuture costume#halloweencostume#jo#jocostume#jocosplay#TotalDrama#TotalDramacostume#TotalDramacosplay#halloweencosplay#tddrama#dramatotalisland#totaldramaseries#totalisland#jototaldrama#totaldramajo
0 notes
Text
In Cartoon Network’s Total Drama franchise, Zoey (voiced by Barbara Mamabolo) is a character. Alongside Jo and Cameron, she first appears as a camper in Total Drama: Revenge of the Island where she is a member of Mutant Maggots. She hopes to make friends on the island, Zoey is good-natured rather than gullible. She has short red hair which she wears in a pigtail. Zoey also wears a red sweetheart strapless top, green capri pants, and strappy black wedge sandals. To complete her looks add several accessories including a hair flower, blue earrings, red bracelets, and a black choker necklace. Collect all the accessories of the Zoey costume from Total Drama for Halloween and cosplay.
#zoey#zoeycostume#zoeycosplay#TotalDrama#TotalDramacostume#TotalDramacosplay#halloweencostume#halloweencosplay#findurfuture#tddrama#dramatotalisland#totaldramaseries#totalisland#zoeytotaldrama#totaldramazoey#halloween cosplay#halloween costumes#findurfuture costume
0 notes