UNSW chit chat thread (2 Viewers)

Joined
Oct 10, 2013
Messages
162
Gender
Undisclosed
HSC
2014
Re: UNSW chit chat thread 2016

Has anyone applied for non-award. I have to apply for 2 subjects since even though accts/fins major, have fixed flexicores, i stupidly chose econ1102 which i did bad in and econ2101 and econ2102 (this sem) which is 2 of free electives even though 2out of the three free electives is fixed. Thanks in advance.
 

Flop21

Well-Known Member
Joined
May 12, 2013
Messages
2,810
Gender
Female
HSC
2015
Re: UNSW chit chat thread 2016

I really enjoy the format of the revision live videos the math school puts out before class quizzes. Two lecturers doing questions seems to be super efficient and they tend to expand on what each other says.

It'd be almost perfect if they had these types of videos instead of tutorials. Or instead of the ONLINE tutorials. So the in class tutorial can be kept for being able to ask your own questions. Because the tutors tend to be quite poor at actual teaching and explaining their working I find.

Online tutorials are a waste of time currently, and take up too much time. I'd rather spend 4 hours doing some actual problems instead of going through the online tutorials.
 

iforgotmyname

Metallic Oxide
Joined
Jun 16, 2015
Messages
733
Gender
Male
HSC
2015
Re: UNSW chit chat thread 2016

I really enjoy the format of the revision live videos the math school puts out before class quizzes. Two lecturers doing questions seems to be super efficient and they tend to expand on what each other says.

It'd be almost perfect if they had these types of videos instead of tutorials. Or instead of the ONLINE tutorials. So the in class tutorial can be kept for being able to ask your own questions. Because the tutors tend to be quite poor at actual teaching and explaining their working I find.

Online tutorials are a waste of time currently, and take up too much time. I'd rather spend 4 hours doing some actual problems instead of going through the online tutorials.
Only best 8 counts, so there is really no point of doing them past week 9 if you know your shit. Go do some past papers for revisions lol.
 

leehuan

Well-Known Member
Joined
May 31, 2014
Messages
5,805
Gender
Male
HSC
2015
Re: UNSW chit chat thread 2016

Only best 8 counts, so there is really no point of doing them past week 9 if you know your shit. Go do some past papers for revisions lol.
Speaking about best n attempts count, I am so glad this system is in place because I absolutely flunked my algebra test yesterday
 

Priestolicious

New Member
Joined
Apr 28, 2011
Messages
12
Gender
Male
HSC
2012
Re: UNSW chit chat thread 2016

Just topped SART1001, what an amazing course. Any else feel this way after topping courses?
 

Mr_Kap

Well-Known Member
Joined
Mar 24, 2015
Messages
1,131
Gender
Male
HSC
2015
Re: UNSW chit chat thread 2016

I really enjoy the format of the revision live videos the math school puts out before class quizzes. Two lecturers doing questions seems to be super efficient and they tend to expand on what each other says.

It'd be almost perfect if they had these types of videos instead of tutorials. Or instead of the ONLINE tutorials. So the in class tutorial can be kept for being able to ask your own questions. Because the tutors tend to be quite poor at actual teaching and explaining their working I find.

Online tutorials are a waste of time currently, and take up too much time. I'd rather spend 4 hours doing some actual problems instead of going through the online tutorials.
yep ive resorted to only doing 5 online tutorials...
 

Mr_Kap

Well-Known Member
Joined
Mar 24, 2015
Messages
1,131
Gender
Male
HSC
2015
Re: UNSW chit chat thread 2016

Code:
//Created by Mr_Kap
//Date: 28/05/2016
//The lyfe of Mr_Kap

#include stdlib.h // put <> around both or wont compile
#include stdio.h


int main(int argc, char *argv[]) {
   
   //initialise variables
   int DaysToNextExam = 0;
   int DaysToNextAssignment = 0;
   int DaysToNextTask = 0;
   
   //Get user input
   printf("Enter amount of days until next exam: ");
   scanf("%d", &DaysToNextExam);
   printf("\nEnter amount of days until next assignment: ");
   scanf("%d", &DaysToNextAssignment);
   
   //Determine which task is nearest
   if (DaysToNextAssignment > DaysToNextExam) {
      DaysToNextTask = DaysToNextExam;
   } else {
        DaysToNextTask = DaysToNextAssignment;
   }

   while(DaysToNextTask > 1) {
      printf("\nProcrastination is life. I love not studying.. (%d days until next task.)\n", DaysToNextTask);
      DaysToNextTask--;
      
   }
   if (DaysToNextTask <= 1) {
      printf("\nSHIT!!!!! Cramming 4 lyfe.\n");
      printf("\nChugging down those Coffees. Sleep is for the WEAK.\n");
   }
	
	
return EXIT_SUCCESS;
}
.
 
Last edited:

iforgotmyname

Metallic Oxide
Joined
Jun 16, 2015
Messages
733
Gender
Male
HSC
2015
Re: UNSW chit chat thread 2016

Code:
//Created by Mr_Kap
//Date: 28/05/2016
//The lyfe of Mr_Kap

#include stdlib.h // put <> around both or wont compile
#include stdio.h


int main(int argc, char *argv[]) {
   
   //initialise variables
   int DaysToNextExam = 0;
   int DaysToNextAssignment = 0;
   int DaysToNextTask = 0;
   int ExamScore=0
   
   //Get user input
   printf("Enter amount of days until next exam: ");
   scanf("%d", &DaysToNextExam);
   printf("\nEnter amount of days until next assignment: ");
   scanf("%d", &DaysToNextAssignment);
   printf("\nEnter final Mark: ");
   scanf("%d", &ExamScore);
   
   //Determine which task is nearest
   if (DaysToNextAssignment > DaysToNextExam) {
      DaysToNextTask = DaysToNextExam;
   } else {
        DaysToNextTask = DaysToNextAssignment;
   }

   while(DaysToNextTask > 1) {
      printf("\nProcrastination is life. I love not studying.. (%d days until next task.)\n", DaysToNextTask);
      DaysToNextTask--;
      
   }
   if (DaysToNextTask <= 1) {
      printf("\nSHIT!!!!! Cramming 4 lyfe.\n");
      printf("\nChugging down those Coffees. Sleep is for the WEAK.\n");
   }

   if (ExamScore < 50) {
      printf("\nWelp, time to go to tafe.\n"); 
   }else { 
      printf("\nUNI is so easy, I am going to get ALL HD next year.\n");
   }
	
	
return EXIT_SUCCESS;
}
.
FIFY
 

leehuan

Well-Known Member
Joined
May 31, 2014
Messages
5,805
Gender
Male
HSC
2015
Re: UNSW chit chat thread 2016

Play the game out with the courses. If there's easy marks always work hard to get them to give you more breathing space for the finals
 

photastic

Well-Known Member
Joined
Feb 11, 2013
Messages
1,848
Gender
Male
HSC
2014
Re: UNSW chit chat thread 2016

Play the game out with the courses. If there's easy marks always work hard to get them to give you more breathing space for the finals
+1

I always need 90+ for the finals just to scrape DN.
 

leehuan

Well-Known Member
Joined
May 31, 2014
Messages
5,805
Gender
Male
HSC
2015
Re: UNSW chit chat thread 2016

matrix is ok.... just the determinants. Fking calculus on the other hand is the reason why people get cancer
When in doubt with determinants just reduce to row-echelon form and use the rule for the upper triangular matrix.

But I've learnt to bring out 0's wherever possible because that's always good
 

Mr_Kap

Well-Known Member
Joined
Mar 24, 2015
Messages
1,131
Gender
Male
HSC
2015
Re: UNSW chit chat thread 2016

I dont get why we need to learn to do maths by hand. its so fucking pointles.. Why cant i just use maple to solve everything?
 

anomalousdecay

Premium Member
Joined
Jan 26, 2013
Messages
5,769
Gender
Male
HSC
2013
Re: UNSW chit chat thread 2016

I dont get why we need to learn to do maths by hand. its so fucking pointles.. Why cant i just use maple to solve everything?
If you don't practice by hand, then you won't know how to use software in order to find what you want.
 

sadpwner

Member
Joined
Feb 12, 2013
Messages
242
Gender
Male
HSC
N/A
Re: UNSW chit chat thread 2016

matrix is ok.... just the determinants. Fking calculus on the other hand is the reason why people get cancer
Half of the questions are piss easy and some of them are hard. For algebra, only curve sketching was hard lol.
__
Btw, anyone play Hearthstone?
 

iforgotmyname

Metallic Oxide
Joined
Jun 16, 2015
Messages
733
Gender
Male
HSC
2015
Re: UNSW chit chat thread 2016

Half of the questions are piss easy and some of them are hard. For algebra, only curve sketching was hard lol.
__
Btw, anyone play Hearthstone?
I think you ment paid to win stone
 

Users Who Are Viewing This Thread (Users: 0, Guests: 2)

Top