This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.

Mat Oxley on CRT bikes

birdman
3447171362471348

Better idea, "I rode a 5 year old 990 against Lorenzo". Sounds and is much more impressive. Idea to Carmelo, let old design prototypes back in the championship. Of course to do that you must stop changing the rules dipshit.


 


If the MSMA had accepted a rev-limited 1000cc rulebook, the 990s would have been legal again. They were not inclined to satisfy your request.
 
He's entering the data into the spreadsheet now. Algorithm might take a while...
 
Actually, I'm asking the oracle, Magic 8 Ball by Mattel. "Reply hazy, try again"


 


I really want to be at the inaugural Texas GP, but it's only 6 days after April 15th. Tough call. Brain says 'no way'. Heart says 'you'll never forgive yourself if you miss the first ever Texas GP.


 


All try to keep you posted.
 
Smash that magic 8-ball. Go. You know it's the right thing to do.


 


I know it may be a bit confusing, but if you rewrite your algorithm like this, you'll be swayed by the power of its insuperable logic:


 


<span style="font-family:'courier new', courier, monospace;10 PRINT "It makes economic sense to go to the Austin GP"


<span style="font-family:'courier new', courier, monospace;20 GOTO 10


<span style="font-family:'courier new', courier, monospace;RUN
 
Dr No
3448521362639126

Smash that magic 8-ball. Go. You know it's the right thing to do.


 


I know it may be a bit confusing, but if you rewrite your algorithm like this, you'll be swayed by the power of its insuperable logic:


 


<span style="font-family:'courier new', courier, monospace;10 PRINT "It makes economic sense to go to the Austin GP"


<span style="font-family:'courier new', courier, monospace;20 GOTO 10


<span style="font-family:'courier new', courier, monospace;RUN


 


Old skool... try this:


 


<span style="color:rgb(51,153,51);#include <stdio.h>
<span style="color:rgb(51,153,51);#define TRUE 1

 
<span style="color:rgb(153,51,51);int main<span style="color:rgb(0,153,0);(<span style="color:rgb(0,153,0);)
<span style="color:rgb(0,153,0);{
<span style="color:rgb(177,177,0);while <span style="color:rgb(0,153,0);(TRUE<span style="color:rgb(0,153,0);)
<span style="color:rgb(0,153,0);{
<span style="color:rgb(0,0,102);printf<span style="color:rgb(0,153,0);(<span style="color:rgb(255,0,0);"It makes economic sense to go to the Austin GP<span style="color:rgb(0,0,153);font-weight:bold;\n"<span style="color:rgb(0,153,0);)<span style="color:rgb(51,153,51);;
<span style="color:rgb(0,153,0);}

 
<span style="color:rgb(177,177,0);return <span style="color:rgb(0,0,221);0<span style="color:rgb(51,153,51);;
<span style="color:rgb(0,153,0);}
 
Or if you want to get all 21st Century:


 


C:\myruby>rails new AustinGP

create

create README

create Rakefile

create config.ru

create .gitignore

create Gemfile

create app

create app/controllers/application_controller.rb

create app/helpers/application_helper.rb

create app/mailers

create app/models

create app/views/layouts/application.html.erb

create config

create config/routes.rb

create config/application.rb

create config/environment.rb

create config/environments

create config/environments/development.rb

create config/environments/production.rb

create config/environments/test.rb

create config/initializers

create config/initializers/backtrace_silencers.rb

create config/initializers/inflections.rb

create config/initializers/mime_types.rb

create config/initializers/secret_token.rb

create config/initializers/session_store.rb

create config/locales

create config/locales/en.yml

create config/boot.rb

create config/database.yml

create db

create db/seeds.rb

create doc

create doc/README_FOR_APP

create lib

create lib/tasks

create lib/tasks/.gitkeep

create log

create log/server.log

create log/production.log

create log/development.log

create log/test.log

create public

create public/404.html

create public/422.html

create public/500.html

create public/favicon.ico

create public/index.html

create public/robots.txt

create public/images

create public/images/rails.png

create public/stylesheets

create public/stylesheets/.gitkeep

create public/javascripts

create public/javascripts/application.js

create public/javascripts/controls.js

create public/javascripts/dragdrop.js

create public/javascripts/effects.js

create public/javascripts/prototype.js

create public/javascripts/rails.js

create script

create script/rails

create test

create test/fixtures

create test/functional

create test/integration

create test/performance/browsing_test.rb

create test/test_helper.rb

create test/unit

create tmp

create tmp/sessions

create tmp/sockets

create tmp/cache

create tmp/pids

create vendor/plugins

create vendor/plugins/.gitkeep


 


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;Now, you have to generate a controller which will handle your AustinGP request.


 


C:\myruby\AustinGP>rails generate controller welcome


create app/controllers/welcome_controller.rb

invoke erb

create app/views/welcome

invoke test_unit

create test/functional/welcome_controller_test.rb

invoke helper

create app/helpers/welcome_helper.rb

invoke test_unit

create test/unit/helpers/welcome_helper_test.rb


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;Now, the controller file is named as welcome_controller.rb after the name we provided to the controller. Now, if you open this controller file, you will find the following piece of code


 


class WelcomeController < ApplicationController

end


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;Now, you have to make this controller to respond to a request of "It makes economic sense to go to the AustinGP ". To do this, edit the welcome.controller.rb file to define an action.


 


class WelcomeController < ApplicationController


def austingp

@message = '<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;It makes economic sense to go to the AustinGP'

end

end


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;text-align:justify;In the controller file, we had an action named "austingp". So, inside the app/views/welcome folder, we will create a file called austingp.html.erb which will be used as a template to respond to the action of "austingp". Rails automatically renders the file, when it is named in this fashion. ERb is Embedded Ruby output tags. Create a file with the name austingp.html.erb and put the contents as shown below:


 


<html>

<body> 


Message!


<h3><%= @message %></h3>

</body>

</html>


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;Edit the config/routes.rb file and add the information as shown below;


 


AustinGP::Application.routes.draw do


match ':controller(/:action(/:id(.:format)))'

end


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;All set now. You can start the built in web server by using "rails server" command inside the project folder.


 


C:\myruby\helloworld>rails server


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;If you access "http://localhost:3000/welcome/AustinGP", you should see your first program in Rails on action...


 


 


<span style="font-size:14px;<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;It makes economic sense to go to the AustinGP
 
BJ.C
3448541362640137

Or if you want to get all 21st Century:


 


C:\myruby>rails new AustinGP

create

create README

create Rakefile

create config.ru

create .gitignore

create Gemfile

create app

create app/controllers/application_controller.rb

create app/helpers/application_helper.rb

create app/mailers

create app/models

create app/views/layouts/application.html.erb

create config

create config/routes.rb

create config/application.rb

create config/environment.rb

create config/environments

create config/environments/development.rb

create config/environments/production.rb

create config/environments/test.rb

create config/initializers

create config/initializers/backtrace_silencers.rb

create config/initializers/inflections.rb

create config/initializers/mime_types.rb

create config/initializers/secret_token.rb

create config/initializers/session_store.rb

create config/locales

create config/locales/en.yml

create config/boot.rb

create config/database.yml

create db

create db/seeds.rb

create doc

create doc/README_FOR_APP

create lib

create lib/tasks

create lib/tasks/.gitkeep

create log

create log/server.log

create log/production.log

create log/development.log

create log/test.log

create public

create public/404.html

create public/422.html

create public/500.html

create public/favicon.ico

create public/index.html

create public/robots.txt

create public/images

create public/images/rails.png

create public/stylesheets

create public/stylesheets/.gitkeep

create public/javascripts

create public/javascripts/application.js

create public/javascripts/controls.js

create public/javascripts/dragdrop.js

create public/javascripts/effects.js

create public/javascripts/prototype.js

create public/javascripts/rails.js

create script

create script/rails

create test

create test/fixtures

create test/functional

create test/integration

create test/performance/browsing_test.rb

create test/test_helper.rb

create test/unit

create tmp

create tmp/sessions

create tmp/sockets

create tmp/cache

create tmp/pids

create vendor/plugins

create vendor/plugins/.gitkeep


 


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;Now, you have to generate a controller which will handle your AustinGP request.


 


C:\myruby\AustinGP>rails generate controller welcome


create app/controllers/welcome_controller.rb

invoke erb

create app/views/welcome

invoke test_unit

create test/functional/welcome_controller_test.rb

invoke helper

create app/helpers/welcome_helper.rb

invoke test_unit

create test/unit/helpers/welcome_helper_test.rb


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;Now, the controller file is named as welcome_controller.rb after the name we provided to the controller. Now, if you open this controller file, you will find the following piece of code


 


class WelcomeController < ApplicationController

end


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;Now, you have to make this controller to respond to a request of "It makes economic sense to go to the AustinGP ". To do this, edit the welcome.controller.rb file to define an action.


 


class WelcomeController < ApplicationController


def austingp

@message = '<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;It makes economic sense to go to the AustinGP'

end

end


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;text-align:justify;In the controller file, we had an action named "austingp". So, inside the app/views/welcome folder, we will create a file called austingp.html.erb which will be used as a template to respond to the action of "austingp". Rails automatically renders the file, when it is named in this fashion. ERb is Embedded Ruby output tags. Create a file with the name austingp.html.erb and put the contents as shown below:


 


<html>

<body> 


Message!


<h3><%= @message %></h3>

</body>

</html>


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;Edit the config/routes.rb file and add the information as shown below;


 


AustinGP::Application.routes.draw do


match ':controller(/:action(/:id(.:format)))'

end


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;All set now. You can start the built in web server by using "rails server" command inside the project folder.


 


C:\myruby\helloworld>rails server


 


<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;font-size:13px;If you access "http://localhost:3000/welcome/AustinGP", you should see your first program in Rails on action...


 


 


<span style="font-size:14px;<span style="color:rgb(0,0,0);font-family:Verdana, Trebuchet, Verdana, sans-serif;It makes economic sense to go to the AustinGP


There is a mistake! :)
 
Lex, the fact its after April 15 means u have no excuses. Dont be a Sackwack dude. Plus u think about it, this being Texas + MotoGP u can wear ur flamboyant cowboy boots. Maybe even get VR to sign them.
 
Jumkie
3448771362682845

Lex, the fact its after April 15 means u have no excuses. Dont be a Sackwack dude. Plus u think about it, this being Texas + MotoGP u can wear ur flamboyant cowboy boots. Maybe even get VR to sign them.


I now have a very dodgy image in my head,cheers jum
 
thedeal
3448791362683213

I now have a very dodgy image in my head,cheers jum
U wernt a member (i dont think back then). But there was a thread lounge where Lex let down his guard and posted pics of his cowboy boots.


Some things u just can't unsee.
 
Jumkie
3448841362688186

U wernt a member (i dont think back then). But there was a thread lounge where Lex let down his guard and posted pics of his cowboy boots.


Some things u just can't unsee.


I'm gonna be wearing chaps if anyone is interested
 
mylexicon
3448461362633441

Actually, I'm asking the oracle, Magic 8 Ball by Mattel. "Reply hazy, try again"

 

I really want to be at the inaugural Texas GP, but it's only 6 days after April 15th. Tough call. Brain says 'no way'. Heart says 'you'll never forgive yourself if you miss the first ever Texas GP.

 

All try to keep you posted.


Dont worry

I dont think the children will escape from the well in your basement while your gone
 
mario27
3448731362679514

There is a mistake! :)


 


Yeah, but I couldn't be arsed going through and editing it... replace <span style="background-color:rgb(247,247,247);color:rgb(40,40,40);font-family:helvetica, arial, sans-serif;font-size:12px;C:\myruby\helloworld>rails server with <span style="background-color:rgb(247,247,247);color:rgb(40,40,40);font-family:helvetica, arial, sans-serif;font-size:12px;C:\myruby\AustinGP>rails server and you should be sweet.
 
Jumkie
3447111362462912

Oh dear, what will I do with all this fear? I'm shaking in my bones.  I'm being "haunted".  Oooo, so scary.   :....:


 


Internet tough guy.  Let me guess, you get your balls from wikipenis.


 


You are a bully. I hate bullies. You argue 'if you can't take it, .... off' - typical bully behaviour - but when someone does stand up to you, you just turn nasty. You can tell by the number of people you are in continual argument with. 


 


It's funny watching you replying to Bryan with your nasty little comments, when he has made it perfectly clear you are on ignore - that's just pathetic.


 


You think you have the only opinion worth hearing and take to personal abuse when you can't bring facts to an argument.


 


You are turning this place into your personal ego wankfest.