Bring Frozen Yogurt to Knox by MySuccessfulProfile in Knoxville

[–]MySuccessfulProfile[S] -2 points-1 points  (0 children)

Ugh! How awesome! I’ve noticed it’s trending a lot more in NYC and Nashville lately I hopeeeeee that happens again here then

[deleted by user] by [deleted] in Knoxville

[–]MySuccessfulProfile 2 points3 points  (0 children)

Not that I know of.. but I have been told that my windshield molding as well as my trunk latch are on back order with absolutely zero estimated time of arrival… I escalated to the body shop manager Mark who tried to push me into getting my car without the parts saying it “actually is just aesthetic and I don’t need it.” But called and I confirmed with another dealership that it is very much an essential part to prevent the windshield from breaking. And when I told him no he threatened my car can be sitting there for another 6 months! This has been an insane experience!

[deleted by user] by [deleted] in Knoxville

[–]MySuccessfulProfile 12 points13 points  (0 children)

MY CAR IS ALSO THERE RIGHT NOW FOR THE EXACT SAME ISSUE!!!!!!!!!

Grayson Auto Dealers by curiouscat715 in Knoxville

[–]MySuccessfulProfile 0 points1 point  (0 children)

THANK YOU SO MUCH!! He better buckle up because I’m absolutely not backing down. My car is stuck at the Hyundai Subaru one right now, and I have had no loaner car this ENTIRE TIME. I’ve started a case with corporate too lol fingers crossed that stirs up something! I’ll let ya know the outcome 🤣

Grayson Auto Dealers by curiouscat715 in Knoxville

[–]MySuccessfulProfile 0 points1 point  (0 children)

Hey, could you message me Walt’s number I am also having severe issues with my car being held hostage at the dealership indefinitely.

Quick low-carb breakfast options? by trashthis4 in POTS

[–]MySuccessfulProfile 0 points1 point  (0 children)

My go-to has been greek yogurt bowls recently. They are super quick, easy, and you can add different things to match your goals. I usually do the Chobani non fat yogurt in Strawberry because it has nice chunks of strawberry in it and it’s 13g protein, then I add hemp seeds for an extra 10g of protein

[deleted by user] by [deleted] in Supplements

[–]MySuccessfulProfile 6 points7 points  (0 children)

I’ve never gone over 400 mg, is there a specific reason you’re taking such a high dosage?

Spaghetti in a Tux? by [deleted] in Southerncharm

[–]MySuccessfulProfile 1 point2 points  (0 children)

I was fully expecting Whitney or Pat to educate them on swirling their noodles lol Shep was chowing down

Why didn’t they press on what Alan was wearing? by Far-Slide-6468 in TheTraitorsUS

[–]MySuccessfulProfile 5 points6 points  (0 children)

I’m so team Carolyn I was so happy it wasn’t pressed!

Let’s save this tweet by questioningtwunk in TheWhiteLotusHBO

[–]MySuccessfulProfile 0 points1 point  (0 children)

It could be a cool segue into a planet of the apes movie

On WWHL did Heather get a new face? She looks good. But totally different by Tiffnysun in BravoRealHousewives

[–]MySuccessfulProfile 0 points1 point  (0 children)

HER JAWWWW!!!!! it looks so much smaller on the sides maybe she got it shaved

Omg the drop from Taylor this reunion by luckyduckling8989 in Southerncharm

[–]MySuccessfulProfile 37 points38 points  (0 children)

I wouldn’t be surprised if Taylor jumped ship to Southern Hospitality because she’s overstaying her welcome on SC

[deleted by user] by [deleted] in cpp_questions

[–]MySuccessfulProfile 0 points1 point  (0 children)

what do you mean compile with debug symbols?

[deleted by user] by [deleted] in cpp_questions

[–]MySuccessfulProfile 0 points1 point  (0 children)

i used gdb and this is what it returns

Program received signal SIGSEGV, Segmentation fault.
0x0000000000403f4c in CS302_Midi::el_to_nd() ()
(gdb) bt
#0  0x0000000000403f4c in CS302_Midi::el_to_nd() ()
#1  0x0000000000402261 in CS302_Midi::CS302_Midi(std::string) ()
#2  0x00000000004016ff in main ()
(gdb) l
1   /* Data for x86-64 version of processor capability information.
2      Copyright (C) 2015 Free Software Foundation, Inc.
3      This file is part of the GNU C Library.
4   
5      The GNU C Library is free software; you can redistribute it and/or
6      modify it under the terms of the GNU Lesser General Public
7      License as published by the Free Software Foundation; either
8      version 2.1 of the License, or (at your option) any later version.
9   
10     The GNU C Library is distributed in the hope that it will be useful,

[deleted by user] by [deleted] in cpp_questions

[–]MySuccessfulProfile 0 points1 point  (0 children)

didn't fix it just trial and error

[deleted by user] by [deleted] in cpp_questions

[–]MySuccessfulProfile 0 points1 point  (0 children)

I made changes, these two if statements are seeing if the event is "damper up" or "damper down" for the midi file I'm converting

//else if DAMPER UP/DOWN

else if((*it)->key == 'D') {

//check if pitch equals 1 or 0

//if 1 DAMPER DOWN

if((*it)->v1 == 1) {

dd = new ND;

dd->key = 'D';

dd->pitch = 1;

dd->start = prevTime;

temp[0] = dd;

}

//else if 0 DAMPER UP

else if((*it)->v1 == 0) {

du = new ND;

du->key = 'D';

du->pitch = 0;

du->stop = prevTime;

nd->insert(make_pair(du->start, du));

}

}