Login

Welcome, Guest. Please login or register.

November 01, 2024, 01:31:54 pm

Author Topic: What's on your ctrl v?  (Read 29828 times)  Share 

0 Members and 2 Guests are viewing this topic.

Fyrefly

  • ★☆★ 一期一会 ★☆★
  • Honorary Moderator
  • ATAR Notes Legend
  • *******
  • Posts: 4495
Re: What's on your ctrl v?
« Reply #120 on: December 22, 2013, 04:29:44 pm »
I clicked 'Spoiler' and then regretted it.  :)

My browser scrolled to like a million lines

Blah, just did the same thing.
I'm trying to imagine why would there be a need to copy-paste the whole script, ha ha.
|| BComm + DipLang (Jap) @ Monash ||

peridotleaves

  • Victorian
  • Adventurer
  • *
  • Posts: 5
Re: What's on your ctrl v?
« Reply #121 on: December 24, 2013, 12:28:55 am »
beatbox


*wow why do i have that on my ctrl v*

Professor Polonsky

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1170
  • School Grad Year: 2013

DisaFear

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1442
  • Bravery is not a function of firepower
Re: What's on your ctrl v?
« Reply #123 on: January 01, 2014, 07:21:27 pm »
"The truth is, we're not that dumb, and we're not that smart"



(AN chocolate) <tisaraiscool> Does it taste like b^3's brain?
BSc (Hons) @ Monash (Double major in Chemistry)

Shenz0r

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1875
Re: What's on your ctrl v?
« Reply #124 on: January 01, 2014, 08:04:52 pm »
The enormous riches which this rascal had stolen were sunk beside him in the sea, and nothing was saved but a single sheep. —You see, said Candide to Martin, crime is punished sometimes; this scoundrel of a Dutch merchant has met the fate he deserved. —Yes, said Martin; but did the passengers aboard his ship have to perish too? God punished the scoundrel, the devil drowned the others.
2012 ATAR: 99.20
2013-2015: Bachelor of Biomedicine (Microbiology/Immunology: Infections and Immunity) at The University of Melbourne
2016-2019: Doctor of Medicine (MD4) at The University of Melbourne

b^3

  • Honorary Moderator
  • ATAR Notes Legend
  • *******
  • Posts: 3529
  • Overloading, just don't do it.
  • School: Western Suburbs Area
  • School Grad Year: 2011
2012-2016: Aerospace Engineering/Science (Double Major in Applied Mathematics - Monash Uni)
TI-NSPIRE GUIDES: METH, SPESH

Co-Authored AtarNotes' Maths Study Guides


I'm starting to get too old for this... May be on here or irc from time to time.

cute

  • Guest
Re: What's on your ctrl v?
« Reply #126 on: January 01, 2014, 08:56:00 pm »
notquiteamerican.wordpress.com/2008/11/04/kids-these-days/

Professor Polonsky

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1170
  • School Grad Year: 2013
Re: What's on your ctrl v?
« Reply #127 on: January 01, 2014, 09:08:24 pm »
It's shoo-in, goddamit. Not shoe-in.

DJA

  • Victorian
  • Forum Leader
  • ****
  • Posts: 617
  • Literature is the question minus the answer.
  • School Grad Year: 2014
Re: What's on your ctrl v?
« Reply #128 on: January 01, 2014, 09:48:54 pm »


self-centred

2014 - English (50, Premier's Award)| Music Performance (50, Premier's Award) | Literature (46~47) | Biology (47) | Chemistry (41) |  MUEP Chemistry (+4.5)  ATAR: 99.70

Griffith University Gold Coast Queensland
2015 - 2017 Bachelor of Medical Science (BMedSc)
2017 - 2021 Doctor of Medicine (MD)

DJA's Guide to Language Analysis (Section C)
DJA's guide on the topic of English Expression (Text response)

2NE1

  • Victorian
  • Trendsetter
  • **
  • Posts: 107
  • School Grad Year: 2014
Re: What's on your ctrl v?
« Reply #129 on: January 08, 2014, 08:22:35 pm »

I use neither and befriend any person willing to tolerate being in the same room as me for over 5 minutes
2013 Raw Scores: 41 Chinese SL. 48 Biology. 40 Methods Methods
2014 Raw Scores: 43 Chemistry. 42 English. 39 Specialist Maths

ATAR: 99.45 :)

alchemy

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1222
Re: What's on your ctrl v?
« Reply #130 on: January 08, 2014, 10:17:01 pm »
Quite possibly the most pointless piece of code for calculating mixed fractions on C++. The same could've been done with a maximum of 5 lines :P
Copied this to show my friend that I am truly bored these holidays...

Spoiler
/* An example of integer division using functions */

#include <iostream>
using namespace std;
int numerator,denominator;
int divide(int numerator, int denominator){
    if (numerator>=denominator){
        int result = numerator/denominator;
        return result;
    }
}
int new_numerator(int numerator, int denominator){
    if (numerator>denominator){
        int top = numerator % denominator;
        return top;
    }
}
int new_denominator(int numerator, int denominator){
    if (numerator>denominator){
        int bot = denominator;
        return bot;
    }
}
int main(){
cout<<"Enter numerator"<<endl;
cin>>numerator;
cout<<"Enter denominator"<<endl;
cin>>denominator;
if (numerator>denominator && numerator%denominator!=0){
    cout<<divide(numerator,denominator)<<" ";
    cout<<new_numerator(numerator,denominator)<<"/";
    cout<<new_denominator(numerator,denominator)<<endl;
    }
else if (numerator==denominator){
    cout<<divide(numerator,denominator);
}
else if (numerator%denominator==0 && numerator!=denominator){
    cout<<divide(numerator,denominator);
}
else{
    cout<<numerator%denominator;
}
return 0;
}
/* Now you can see that the above is completely pointless! >_< */

psyxwar

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1354
Re: What's on your ctrl v?
« Reply #131 on: January 08, 2014, 10:40:59 pm »
35263
I use neither and befriend any person willing to tolerate being in the same room as me for over 5 minutes

lol I remember copying this to read it

VCE 2013-2014
MD/BMedSci 2015-2020

2NE1

  • Victorian
  • Trendsetter
  • **
  • Posts: 107
  • School Grad Year: 2014
Re: What's on your ctrl v?
« Reply #132 on: January 09, 2014, 09:18:54 am »
35263lol I remember copying this to read it

I know right, I pasted it into word and it was on like font 2 and I'm like what does this even mean. Haha
2013 Raw Scores: 41 Chinese SL. 48 Biology. 40 Methods Methods
2014 Raw Scores: 43 Chemistry. 42 English. 39 Specialist Maths

ATAR: 99.45 :)

cute

  • Guest
Re: What's on your ctrl v?
« Reply #133 on: January 28, 2014, 09:08:46 am »
 The fleecy cloud may kiss the sky.
        The rose may kiss the butterfly.
        The morning dew may kiss the grass.
        And you my friend may...

OHY MY GOD IT'S BUTT POETRY

walkec

  • Guest
Re: What's on your ctrl v?
« Reply #134 on: January 28, 2014, 10:45:20 am »
I tried to paste something, but there was nothing on my control v