time-wasting-thread-memorial/raw/pages/866.json

1 line
9.9 KiB
JSON

{"topics":[{"id":"53c9af1e63687215a90f0000","topic_id":"5161dd617f123bd25900013d","body":"\"@SeraphimDawn\":/dis/the-time-wasting-thread/post/53c9aea16368721866140000#post_53c9aea16368721866140000\r\n!http://www.afrobella.com/wp-content/uploads/2013/05/Gatsby-toast-gif.gif!","author":"50c204917f123b31440000a5"},{"id":"53c9af6a63687214192b0000","topic_id":"5161dd617f123bd25900013d","body":"\"@QueenCold\":/dis/the-time-wasting-thread/post/53c9af1a63687218303d0000#post_53c9af1a63687218303d0000\r\nI wish you two the best.","author":"4fde4618945b700aa0002fff"},{"id":"53c9afd3636872181a5b0000","topic_id":"5161dd617f123bd25900013d","body":"\"@SquiggyBomb\":/dis/the-time-wasting-thread/post/53c9af6a63687214192b0000#post_53c9af6a63687214192b0000\r\nSame here. ^ ^","author":"50c204917f123b31440000a5"},{"id":"53c9afed63687215de460000","topic_id":"5161dd617f123bd25900013d","body":"Thanks, everyone!","author":"4fe256037f123b3f940028cf"},{"id":"53c9b06a63687213df670000","topic_id":"5161dd617f123bd25900013d","body":"\"@QueenCold\":/dis/the-time-wasting-thread/post/53c9afed63687215de460000#post_53c9afed63687215de460000\r\nDoes he know you're into MLP?","author":"4fde5cee945b700a970060fc"},{"id":"53c9b0a6636872181a7b0000","topic_id":"5161dd617f123bd25900013d","body":"\"@QueenCold\":/dis/the-time-wasting-thread/post/53c9afed63687215de460000#post_53c9afed63687215de460000\r\nNo problem! ","author":"50c204917f123b31440000a5"},{"id":"53c9b0be6368723f0e240000","topic_id":"5161dd617f123bd25900013d","body":"\"@QueenCold\":/dis/the-time-wasting-thread/post/53c9ac9c6368725d4c090000#post_53c9ac9c6368725d4c090000\r\nExcellent news! Good luck!","author":"515ddf93a4c72d8a1f000d57"},{"id":"53c9b11463687215de9d0000","topic_id":"5161dd617f123bd25900013d","body":"\"@SeraphimDawn\":/dis/the-time-wasting-thread/post/53c9b06a63687213df670000#post_53c9b06a63687213df670000\r\nI grew up with the G1 movies and the G2 toys, but he's the one who showed me G4.","author":"4fe256037f123b3f940028cf"},{"id":"53c9b1296368724cf0060000","topic_id":"5161dd617f123bd25900013d","body":"\"@uc9\":/dis/the-time-wasting-thread/post/53c9ae5263687217ac010000#post_53c9ae5263687217ac010000\r\n>Possibly can't watch Kamen rider.\r\n\r\nJUSTICE has lost it's way.","author":"5062d6f17f123b3e16001184"},{"id":"53c9b1856368723ae0250000","topic_id":"5161dd617f123bd25900013d","body":"\"@trashboat\":/dis/the-time-wasting-thread/post/53c9b1296368724cf0060000#post_53c9b1296368724cf0060000\r\n*Don't lose you're way!*","author":"50c204917f123b31440000a5"},{"id":"53c9b2066368723f29360000","topic_id":"5161dd617f123bd25900013d","body":"\"@Number1pegasus\":/dis/the-time-wasting-thread/post/53c9b1856368723ae0250000#post_53c9b1856368723ae0250000\r\n!http://i522.photobucket.com/albums/w341/DragonboyGT/Shocker_zps73a8d823.png!","author":"5062d6f17f123b3e16001184"},{"id":"53c9b26a63687216aab60000","topic_id":"5161dd617f123bd25900013d","body":"\"@trashboat\":/dis/the-time-wasting-thread/post/53c9b2066368723f29360000#post_53c9b2066368723f29360000\r\nIt was more then Likely Shocker, the Golgom, And Decades doing. ","author":"50c204917f123b31440000a5"},{"id":"53c9b2a063687216aab70000","topic_id":"5161dd617f123bd25900013d","body":"\"@Number1pegasus\":/dis/the-time-wasting-thread/post/53c9b26a63687216aab60000#post_53c9b26a63687216aab60000\r\nNah man. I blame the Dopants.","author":"4fde4618945b700aa0002fff"},{"id":"53c9b2b76368723ae06d0000","topic_id":"5161dd617f123bd25900013d","body":"\"@trashboat\":/dis/the-time-wasting-thread/post/53c9b1296368724cf0060000#post_53c9b1296368724cf0060000\r\nIt's only beginner's C++ at this point, but\r\n\r\n#include <iostream>\r\n#include <iomanip>\r\n#include <string>\r\n\r\nusing namespace std;\r\n\r\nint main()\r\n{\r\n//variables\r\nint hours;\r\ndouble rate;\r\ndouble bill;\r\ndouble package_hours;\r\ndouble rate_cost;\r\nchar package_deal;\r\n\r\n//input\r\ncout << \"\\nPackage A: offers 5 hours of a call time for $9.95 a month.\\nAdditional usage costs $.08 per minute.\"\r\n\t<< \"\\n\\nPackage B: offers 10 hours of call time for $14.95 a month.\\nAdditional usage costs $0.06 per minute.\"\r\n\t<< \"\\n\\nPackage C: offers unlimited calls per month for $19.95.\"\r\n\t<< \"\\n\\nPlease enter which package deal the customer uses.\" << endl;\r\ncin >> package_deal;\r\ncout << \"\\nHow many hours were used towards the service?\" << endl;\r\ncin >> hours;\r\n\r\n//process\r\nif ( package_deal == 'a' || package_deal == 'A' )\r\n\t{ rate = .08;\r\n\tpackage_hours = 5;\r\n\trate_cost = 9.94; }\r\nif ( package_deal == 'b' || package_deal == 'B' )\r\n\t{ rate = .06;\r\n\tpackage_hours = 10;\r\n\trate_cost = 14.95; }\r\nif ( package_deal == 'c' || package_deal == 'C' )\r\n\t{ cout << \"\\nWith package C your monthly bill is only 19.95 even with your usage of \" << hours << endl;\r\n\treturn 0;}\r\nif ( ( package_deal == 'a' || package_deal == 'A' || package_deal == 'b' || package_deal == 'B' ) && static_cast<double>(hours) > package_hours )\r\n\t{\t\t\r\n\tpackage_hours = static_cast<double>(hours) - package_hours;\r\n\tbill = ( ( package_hours * 60 ) * rate ) + rate_cost ;\r\n\tcout << \"\\nWith your package deal \" << package_deal << \" your bill is $\" << fixed << showpoint << setprecision(2) << bill << \" at a rate of $\" << rate << \" per minute for your usage of \" << fixed << showpoint << setprecision(2) << hours << \" hours with the service.\\n\" << endl;\r\n\treturn 0; }\r\nif ( ( package_deal == 'a' || package_deal == 'A' || package_deal == 'b' || package_deal == 'B' ) && static_cast<double>(hours) < package_hours && static_cast<double>(hours) > 0 )\r\n\t{\r\n\tcout << \"\\nWith your package deal \" << package_deal << \" your bill is $\" << fixed << showpoint << setprecision(2) << rate_cost << \" at a rate of $\" << rate << \" per minute for your usage of \" << fixed << showpoint << setprecision(2) << hours << \" hours with the service.\\n\" << endl;\r\n\treturn 0; }\r\nelse \r\n\t{ cout << \"Invalid input\" << endl; }\r\nreturn 0;\r\n}\r\n\r\n\r\n\r\n\r\n\r\n\r\nIt was a huge pain in the ass cause for the assignment we were *NOT* allow to use loops in it so something that should have taken five minutes took a day cause the output kept being off by literally a cent so I had to break down the equation due to that the way visual studio works equations have a margin of error in in the thousandth. By breaking it down it fixed that margin of error error. Some times visual studio is dumb.","author":"38b55cdf63616403d7560600"},{"id":"53c9b37a6368724d14830000","topic_id":"5161dd617f123bd25900013d","body":"\"@uc9\":/dis/the-time-wasting-thread/post/53c9b2b76368723ae06d0000#post_53c9b2b76368723ae06d0000\r\nOh _Christ!_\r\n\r\n\r\n\"@SquiggyBomb\":/dis/the-time-wasting-thread/post/53c9b2a063687216aab70000#post_53c9b2a063687216aab70000\r\n!http://1.bp.blogspot.com/-WzhV7Ty3QOQ/T3ukEMbJwRI/AAAAAAAAAQw/kWch0gTjcHs/s1600/black_kotaro1.png!\r\nWe must fight them all! ","author":"50c204917f123b31440000a5"},{"id":"53c9b3bc6368723e38840000","topic_id":"5161dd617f123bd25900013d","body":"\"@Number1pegasus\":/dis/the-time-wasting-thread/post/53c9b37a6368724d14830000#post_53c9b37a6368724d14830000\r\n[bq=\"Number1pegasus\"]\"@uc9\":/dis/the-time-wasting-thread/post/53c9b2b76368723ae06d0000#post_53c9b2b76368723ae06d0000\r\nOh _Christ!_[/bq]\r\nIf you think that's bad just wait until you get into arrays.","author":"38b55cdf63616403d7560600"},{"id":"53c9b40d6368723e38970000","topic_id":"5161dd617f123bd25900013d","body":"\"@uc9\":/dis/the-time-wasting-thread/post/53c9b3bc6368723e38840000#post_53c9b3bc6368723e38840000\r\nOh god, how bad is it? ","author":"50c204917f123b31440000a5"},{"id":"53c9b48f6368726c94870000","topic_id":"5161dd617f123bd25900013d","body":"\"@Number1pegasus\":/dis/the-time-wasting-thread/post/53c9b40d6368723e38970000#post_53c9b40d6368723e38970000\r\n[bq=\"Number1pegasus\"]\"@uc9\":/dis/the-time-wasting-thread/post/53c9b3bc6368723e38840000#post_53c9b3bc6368723e38840000\r\nOh god, how bad is it? [/bq]\r\n!http://sr.photos2.fotosearch.com/bthumb/CSP/CSP576/k5763748.jpg!\r\n\r\nThat's when 95% of students drop out; I'm not even joking either. One week the class was full; next week a ton of people left.","author":"38b55cdf63616403d7560600"},{"id":"53c9b50463687265ee870000","topic_id":"5161dd617f123bd25900013d","body":"\"@uc9\":/dis/the-time-wasting-thread/post/53c9b48f6368726c94870000#post_53c9b48f6368726c94870000\r\nI don't think I'll be able to get into programming\r\n\r\n\"I AM AMAZON\":http://www.youtube.com/watch?v=f6_ctkElxBg","author":"5062d6f17f123b3e16001184"},{"id":"53c9b54963687213a0330000","topic_id":"5161dd617f123bd25900013d","body":"\"@uc9\":/dis/the-time-wasting-thread/post/53c9b48f6368726c94870000#post_53c9b48f6368726c94870000\r\nSweet Jesus _*that bad!?*_","author":"50c204917f123b31440000a5"},{"id":"53c9b5716368721728820100","topic_id":"5161dd617f123bd25900013d","body":"\"@uc9\":/dis/the-time-wasting-thread/post/53c9b48f6368726c94870000#post_53c9b48f6368726c94870000\r\nWimps.","author":"4fde4618945b700aa0002fff"},{"id":"53c9b59e6368722f30250000","topic_id":"5161dd617f123bd25900013d","body":"\"@trashboat\":/dis/the-time-wasting-thread/post/53c9b50463687265ee870000#post_53c9b50463687265ee870000\r\nOh god where did this come from? XD","author":"50c204917f123b31440000a5"},{"id":"53c9b5c06368721728a10100","topic_id":"5161dd617f123bd25900013d","body":"\"@uc9\":/dis/the-time-wasting-thread/post/53c9b48f6368726c94870000#post_53c9b48f6368726c94870000\r\nCS programs have at least 2 weed-out courses, maybe more depending on how well a student grasps the concepts. It's pretty insane how much final grades get curved.\r\n","author":"53c5c4df6368727632970000"},{"id":"53c9b5db6368724cfdec0000","topic_id":"5161dd617f123bd25900013d","body":"So I've been thinking about trying to get into a School for the Arts.","author":"4fde4618945b700aa0002fff"},{"id":"53c9b63063687215de7d0100","topic_id":"5161dd617f123bd25900013d","body":"\"@SquiggyBomb\":/dis/the-time-wasting-thread/post/53c9b5db6368724cfdec0000#post_53c9b5db6368724cfdec0000\r\nThat's cool. What field in the arts interests you?","author":"53c5c4df6368727632970000"}]}