20k (CAD) to spend - Young Adult - Living in very urban area - Concerned about good looks and reliability

2024.11.25 09:39 Bladings 20k (CAD) to spend - Young Adult - Living in very urban area - Concerned about good looks and reliability

Hi,
As the title suggests, I am a young adult in my 20s with about 20k (cad) to spend on a car, cash or otherwise.
I don't need a car for work or any other reason than wanting to and being fortunate enough to be able to buy my first car, and as such, I'm mainly concerned about getting a good looking car that's also reliable. There's snow for around half the year in my area, so that's also a factor.
I'm not looking for an SUV or a pick-up, in terms of taste I was a big fan of the 1988 Corvette C4 growing up, but I'm fine with anything that looks decent.
Anything would help, thank you!
submitted by Bladings to whatcarshouldIbuy [link] [comments]


2024.11.25 09:39 jaxican Mushrooms again

Mushrooms again Took some advice from the last post hopefully this looks better
submitted by jaxican to graffhelp [link] [comments]


2024.11.25 09:39 QueTpi Breathing Better

Breathing Better My Petraโ€™s breathing has cleared up. This past year she started to have heavy phlegm-y breathing at night. I demanded blood tests and X-rays. The Vet came up with nothing telling me thatโ€™s how frenchies breathe. That may be so, I said but, that is not how this frenchie breathes. At my wits end I consulted a psychic who could look into medical issues. She wanted my pups full (registered) name and birthdate. Ten to fifteen minutes later, she told me my pup had a fungal infection. Petra got treated with metronidazole. She has five more days left of medicine and is nearly clear in her breathing. I donโ€™t understand how it worked, but with these dogs, I committed to doing anything and everything to keep them happy and healthy. Consulting a psychic did not seem unreasonable after trying the doctor. ๐Ÿคท๐Ÿฝ
submitted by QueTpi to Frenchbulldogs [link] [comments]


2024.11.25 09:39 AsrielDreemurrFloweX Best Boss?

Best Boss? submitted by AsrielDreemurrFloweX to Undertale [link] [comments]


2024.11.25 09:39 epmep Good Apps For Mobile?

Hi! Im trying to look for good animation apps on mobile where I can actually sync with audio (like Flipaclip!) but with a better quality(?)
Ideally they'd be like IbisPaint but with Flipaclip's ability to add audio.. thank you!!
submitted by epmep to animation [link] [comments]


2024.11.25 09:39 Frosty-Budget2221 When should i start playing ranked?

I hear somewhere that when youre able to beat insane ai then you are ready to start playing ranked.
submitted by Frosty-Budget2221 to warcraft3 [link] [comments]


2024.11.25 09:39 insomniacmoonx how i feel getting into fights this season

how i feel getting into fights this season it feels like so many characters can fly or go airborne somehow this season, i never NOT have to look up in the air, but usually i end up getting backshots from someone flying above me while im trying to fight someone else anyways. 'specially from nejire's on different teams. ๐Ÿ˜”
im tired boss.
submitted by insomniacmoonx to MyHeroUltraRumble [link] [comments]


2024.11.25 09:39 Hades_adhbik Russia plotting to use AI to enhance cyber-attacks against UK, minister will warn

Russia plotting to use AI to enhance cyber-attacks against UK, minister will warn submitted by Hades_adhbik to EUnews [link] [comments]


2024.11.25 09:39 ChrisPly Sazabi Ver. Ka. was a top tier build for me

Loved the build and being able to have to over the shoulder carry the long rifle was great because it was the only pose I really wanted. Detailed it up with 3rd party decals, Dspaie metallic red around the armor trim, all the thrusters are painted with a decocolor gold paint marker, and I replaced all the pipes and pistons with metal pieces
submitted by ChrisPly to Gunpla [link] [comments]


2024.11.25 09:39 Cool-vibesradio Build my own bot

i'm trying to creating a bot that creates flyers images ect
but everytime i ask my bot to create a flyer it says i don't understand that phrase
let memory = {}; // Memory for the session
const API_KEY = 'sk-proj-';
document.getElementById('userInput').addEventListener('keyup', sendMessage);
async function sendMessage(event) {
if (event.key === "Enter") {
const input = document.getElementById('userInput');
const message = input.value.trim();
input.value = "";
if (!message) return;
const chatbox = document.getElementById('chatbox');
appendMessage("You", message);
let botMessage = await handleUserMessage(message.toLowerCase());
appendMessage("Laura", botMessage);
}
}
function appendMessage(sender, message) {
const chatbox = document.getElementById('chatbox');
chatbox.innerHTML += \

${sender}: ${message}`;`
chatbox.scrollTop = chatbox.scrollHeight;
}
async function handleUserMessage(message) {
if (["hi", "hello", "hey", "hey babe", "morning bubba", "afternoon babes"].includes(message)) {
return randomChoice([
"Hey babe! ๐Ÿ˜Šโค๏ธ How can I help you today?",
"Hello! ๐ŸŒŸ So glad to see you! What's up? ๐Ÿ’ฌ",
"Hi! ๐Ÿ™Œ Ready to assist with whatever you need, Babe! โค๏ธ",
"Hey babes! โค๏ธ How are you today? ๐Ÿ˜Š",
]);
} else if (message.includes("create an image")) {
return "Ooh, fun! ๐ŸŽจ Tell me what youโ€™d like to create. Give me some details, and Iโ€™ll work my magic!";
} else if (message.startsWith("image:")) {
return await handleImageRequest(message.slice(6).trim());
}
/** FLYER CREATION **/
else if (
message.includes("create a flyer") ||
message.includes("build me a flyer") ||
message.includes("random flyer")
) {
return "Letโ€™s make an awesome flyer! ๐Ÿ–ผ๏ธ What details do you want to include? Title, colors, and contentโ€”just let me know!";
} else if (message.startsWith("flyer:")) {
return await handleFlyerRequest(message.slice(6).trim());
}
else if (message.startsWith("remember my zodiac")) {
return handleZodiacMemory(message.slice(19).trim());
} else if (message.includes("what's my zodiac")) {
return memory['zodiacSign']
? \Youโ€™re a ${memory['zodiacSign']}! ๐ŸŒŸ Ready for your horoscope?``
: "I donโ€™t know your zodiac sign yet! Just tell me, and Iโ€™ll remember it. ๐Ÿ™Œ";
} else if (message.includes("horoscope")) {
return memory['zodiacSign']
? getHoroscope(memory['zodiacSign'])
: "Please tell me your zodiac sign first. I can give you your horoscope once I know your sign! ๐ŸŒ™";
} else if (message.includes("how are you")) {
return "Iโ€™m doing great, thanks for asking! ๐Ÿ˜„ How about you? Feeling awesome today?";
} else if (message.includes("thank you")) {
return "You're very welcome! ๐Ÿ˜Š I'm always here to help! ๐Ÿค—";
} else if (message.includes("help with coding")) {
return "Youโ€™ve come to the right place! ๐Ÿ’ป Tell me what coding problem you're working on, and Iโ€™ll help you out.";
} else {
return "Oops! Iโ€™m not sure what that means. Can you rephrase? ๐Ÿค”";
}
}
async function handleImageRequest(details) {
if (!details) {
return "Please describe the image you'd like me to create, and Iโ€™ll get started!";
}
try {
const imageUrl = await generateImageWithDalle(details);
return \Tada! ๐ŸŽ‰ Your image is ready! Click here to view it.`;`
} catch (error) {
console.error("Error generating image:", error);
return "Oh no, something went wrong with the image generation. Letโ€™s try again later! ๐Ÿ˜ฌ";
}
}
async function handleFlyerRequest(details) {
const [title, color, content] = details.split(';').map(s => s.trim());
if (!title || !color || !content) {
return "Hmm, it looks like weโ€™re missing something! Please use this format: 'Title; Color; Content'.";
}
try {
const flyerUrl = await generateFlyer(title, color, content);
return \Your flyer is ready! ๐ŸŽ‰ Click here to check it out.`;`
} catch (error) {
console.error("Error generating flyer:", error);
return "Oops, there was a hiccup while creating your flyer. Try again later! ๐Ÿ˜…";
}
}
function handleZodiacMemory(sign) {
const validSigns = [
"aries", "taurus", "gemini", "cancer", "leo", "virgo",
"libra", "scorpio", "sagittarius", "capricorn", "aquarius", "pisces"
];
if (validSigns.includes(sign)) {
memory['zodiacSign'] = sign;
return \Got it! โœจ I'll remember your zodiac sign as ${sign}.`;`
}
return "Hmm, that doesnโ€™t seem like a valid zodiac sign. Try again? ๐Ÿ˜Š";
}
function getHoroscope(sign) {
const horoscopes = {
aries: "Today, you may find yourself bursting with energy! โšก It's a great time to take on new challenges.",
taurus: "You might feel a bit more grounded today. Focus on personal growth and take care of your emotional health. ๐ŸŒฑ",
gemini: "It's a good day for communication. Share your thoughts and connect with others! ๐Ÿ’ฌ",
cancer: "Focus on your home and family today. Emotional support is key! ๐Ÿก",
leo: "Express your creativity! It's your time to shine! โœจ",
virgo: "Pay attention to the small details. Organization will help you succeed. ๐Ÿ“‹",
libra: "Balance is important today. Focus on harmony in your relationships. โš–๏ธ",
scorpio: "Dive into your passions today. Emotional intensity can bring clarity. ๐Ÿ”ฅ",
sagittarius: "Adventure awaits! Explore new opportunities with confidence. ๐ŸŒ",
capricorn: "Hard work pays off! Stay focused on your long-term goals. ๐Ÿ’ช",
aquarius: "Innovation is your strength today. Think outside the box. ๐Ÿš€",
pisces: "Trust your intuition and embrace a peaceful, creative energy. ๐ŸŒŠ"
};
return horoscopes[sign] || "Hmm, I donโ€™t have a horoscope for that sign right now. ๐ŸŒ™";
}
function randomChoice(array) {
return array[Math.floor(Math.random() * array.length)];
}
i would love for my bot to have some kind of social interaction as well?
and to answer question and to have a personality?
submitted by Cool-vibesradio to learnjavascript [link] [comments]


2024.11.25 09:39 Sad_Cow_5410 Constraining b-splies to be colinear or coincident between perpendicular sketches.

Constraining b-splies to be colinear or coincident between perpendicular sketches. I might be expecting too much of the sketcher. I _suspect_ there's a smarter way to do this with constraints on different sketch planes.
What am I trying to do? Well I'm trying to trace an STL mesh of a seat cushion, the foam is worn out, so I want to trace it with b-splines and then surface the splines and come up with a shell, which I can then later process into a solid or template to manufacture placement seat foams with.
Attached a video of the problem, but basically if I sketch a closed spline on XY, then on ZX I make another sketch, I carbon copy the geometry from the first sketch into the 2nd, and then I make a new (e.g open) b-spline there. On the 2nd sketch I get the colinear constraint, but it's snapping to the origin lines on the axis, not to the carbon copied spline.
When I open the first sketch, and move the spline, the lines from the 2nd sketch don't follow (because, they're not constrained to the first sketch)
https://i.redd.it/vjpnz8njp03e1.gif
When I've seen how surfacing is done online, people don't seem to be directly using the b-splines. they seem to be carving out points, or using combined curves workbench, etc. I assumed this would work, I don't understand why in some mangojelly videos he seems to be able to tie curves (curves WB) together, but doing bsplines in sketch doesn't work)
help please!
submitted by Sad_Cow_5410 to FreeCAD [link] [comments]


2024.11.25 09:39 lamentz1234 29 [M4F] car fun mandaluyong

Currently park in Mandaluyong office building so wala masyadong tao na daan and secluded yung parking ko between walls walang katabing parked cars
About me: dadbod 29 yrs old 5'8 in height 95kgs can last long 1 to 2 hrs 6/10 appearance
About you: no preference at all kahit sino pwede
Open for no penetration anything you want won't do without approval open for check ins din living in South Caloocan, currently in Mandaluyong
submitted by lamentz1234 to PHR4Rhookups [link] [comments]


2024.11.25 09:39 yourmotherinahorse Have you work at leith job centre? Experiences

Iโ€™ve been offered a position as work coach at leith job centre, and I know itโ€™s between the worst jobs for civil servant and that job centre itโ€™s quite particular, Iโ€™m a support worker right now so Iโ€™m used to crazy things. Looking for some reassurance before I accept this , more interested in how is the office environment than the people that comes in actually. Also if anyone worked there and moved to a better job let me know your experience please!
submitted by yourmotherinahorse to Edinburgh [link] [comments]


2024.11.25 09:39 Pepe_Connoisseur WE'RE GOING TO TOHOKU WITH THIS ONE ๐Ÿ—ฃ๐Ÿ—ฃ๐Ÿ—ฃ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ’š๐Ÿ’š๐Ÿซ›๐Ÿซ›

WE'RE GOING TO TOHOKU WITH THIS ONE ๐Ÿ—ฃ๐Ÿ—ฃ๐Ÿ—ฃ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ’š๐Ÿ’š๐Ÿซ›๐Ÿซ› submitted by Pepe_Connoisseur to Zundamon [link] [comments]


2024.11.25 09:39 HealthyEuropean Before vs After

Before vs After submitted by HealthyEuropean to Romania [link] [comments]


2024.11.25 09:39 Acanthaceae_Humble [Hamilton] Help - fit good on my wrist?

Hi gentlemen, I just got this Hamilton watch in 38 mm size and cant decide if their fit well on my wrist. I mean, they feel good but I am still thinking "dont they look small?"What do you think? Should I change them for bigger 42mm version or would bigger one look silly on my wrist? It's first time have got better watch so want to got it right. Thank you a lot
submitted by Acanthaceae_Humble to Watches [link] [comments]


2024.11.25 09:39 zepcheese Final CFP rankings before CCG

If the CCG does not impact anything, then why not release the final CFP rankings before the CCGs? This would put to bed any issue with losing the CCG impacting CFPrankings. The final playoff 12 would then just be the P4 autobids (CCG winners), top G5, and the rest in the seeding order already made.
CCGs are their own thing. If both participants are top 12 before the game, there will still be the conf title at stake. If at least one is outside, then an autobid is on the line. Only worry would be a team resting/sacrificing the CCG for playoff health. Not sure how much that would happen... or how much the fans would accept that. Besides, nobody wants to go into a playoff on a losing streak.
submitted by zepcheese to CFB [link] [comments]


2024.11.25 09:39 General_Poetry_4228 milyen bevรกlt Crohn diรฉtรกt tartasz?

Crohn diรฉtรกra mit tartotok? ahรกny weblap/orvos/dietetikus, annyi ajรกnlรกs..
submitted by General_Poetry_4228 to askhungary [link] [comments]


2024.11.25 09:39 AccomplishedMobile28 ุงู„ุฌุฑูŠู† ูƒุงุฑุฏ ุจุฃู…ุฑูŠูƒุง

ุงู„ุณู„ุงู… ุนู„ูŠูƒู… ู„ูˆ ุญุฏ ุนู†ุฏู‡ ู…ุนู„ูˆู…ุฉ ู„ูˆ ุงู„ุฌุฑูŠู† ูƒุงุฑุฏ ู‚ุฑุจุช ุชุฎู„ุต ูˆุงู†ุง ููŠ ู…ุตุฑ ุงูŠู‡ ุงู‚ู„ ู…ุฏุฉ ู…ู…ูƒู†ู‡ุง ุงูƒูˆู† ููŠู‡ุง ููŠ ุงู…ุฑูŠูƒุง ู„ุชุฌุฏูŠุฏ ุงู„ูˆุฑู‚ ู„ุงู† ุธุฑูˆููŠ ู…ุง ุชุณู…ุญุด ุบูŠุฑ ุงู†ูŠ ุงูุถู„ ุงุณุจูˆุน ุจุณ ู‡ู†ุงูƒ ูˆู‡ู„ ูŠู†ูุน ุงู‚ุฏู… ุทู„ุจ ุนู„ู‰ ุงู„ู†ุช ูˆุงุฑูˆุญ ุนู„ู‰ ู…ูŠุนุงุฏ ุงู„ู…ู‚ุงูŠูŠุณ ุงู„ุจูŠูˆู…ุชุฑูŠุฉ ูˆุงุฑุฌุน ุชุงู†ูŠ ูˆุฎู„ุงุตุŸ
submitted by AccomplishedMobile28 to Egypt [link] [comments]


2024.11.25 09:39 Wakanda-shit-is-that Until we meet again ๐Ÿซถ๐Ÿฝ

Until we meet again ๐Ÿซถ๐Ÿฝ submitted by Wakanda-shit-is-that to ClashOfClans [link] [comments]


2024.11.25 09:39 _MossProphet_ Love My Room

Just finished decorating my room. I love it so much and I'm considering adding a few more things to the walls. It's so girlypop and everything I've ever wanted in a bedroom. If you have any suggestions lmk because I'm a tiny bit of a maximalist and am always willing to add more. Less is not more, more is more.
submitted by _MossProphet_ to interiordecorating [link] [comments]


2024.11.25 09:39 MrXStitch It really is the perfect time to start your Christmas projects, find the perfect patterns to impress your friends in our Merry Xmas issue ๐Ÿ‘‰๐Ÿ‘‰ https://xstitchmag.com/christmas-cross-stitch/ Pattern by: @pxlcrs Fabric: @zweigartneedleworkfabrics /...

submitted by MrXStitch to Xstitch [link] [comments]


2024.11.25 09:39 Anjeez929 How did I get two of the same 3* and a dupe of my first 5*?

submitted by Anjeez929 to BanGDream [link] [comments]


2024.11.25 09:39 frayzam Praise God that he helps us to be bold

I had a thirteen and a half hour shift at work today. Right at the end of the day, a colleague told me he'd just found out his daughter had cancer. He didn't know how serious it was yet.
Turns out God planned my day for this moment. I've been praying to Him for an opportunity to speak about Jesus to someone, and everyone had left work so it was just me and him. How could I not say something? So I poured my heart out to him about Jesus and the need for his daughter to know him to the point I genuinely almost had tears. I finished speaking and he said "When someone speaks about God like that to me I know that's it's true" and gave me a hug. I pray God will have mercy on him and his daughter and through this trial they would have salvation and miraculous healing. I hope you can guys can say a quick prayer for Johnny and his daughter.
submitted by frayzam to TrueChristian [link] [comments]


2024.11.25 09:39 kllykvn Deployment of Docker Images

I am looking into deploying Docker Images from Azure DevOps via Pipelines. Is it possible to do a direct deployment to the VMs (onpremise with internet access) or I will need an agent ?
Kindly guide am trying this for the first time
submitted by kllykvn to azuredevops [link] [comments]


https://google.com/