Gaming › Re: COD Mobile / Warzone Mobile Thread Android & IOS by qtguru(op): 6:11pm On Nov 21, 2022 |
Season 10 is here what are your fav updates? I sabi use Sniper now, remaining Quick Scope |
|
|
|
Business › Re: Upwork Thread (Questions/Help/Advice) by qtguru(m): 3:38pm On Nov 21, 2022 |
Emeraldfynest: Yeah it is an option if one is confident of doing the job. The hardest part of Upwork I getting your first few jobs as a beginner. I know a friend who has like 34 on going jobs last time I checked and still get invites all the time, he even declines jobs  What's your job category ? |
|
Business › Re: Upwork Thread (Questions/Help/Advice) by qtguru(m): 12:27pm On Nov 21, 2022 |
Emeraldfynest: Oh you're in UI/UX too? I am too but I want to add Webflow to my skillet in January now, Webflow developers/designers are really in demand too and pay well. I will also suggest you try other platforms asides Upwork, I got my first internship role from LinkedIn in October while just randomly applying one day. So try other platforms too. Very valid advice, Upworks should not be the sole place for gigs, even in the slack community. There are slack communities for UI/UX. |
Business › Re: Upwork Thread (Questions/Help/Advice) by qtguru(m): 12:25pm On Nov 21, 2022 |
Emeraldfynest: Hmm, sometimes it's a game of numbers too. I've applied every strategy I know, even took a day to rewrite my profile overview, I even read my proposals to myself after writing and ask "why don't clients hire me"?  I agree, I've started using the bid for projects where I am 100% sure and very qualified |
Business › Re: Upwork Thread (Questions/Help/Advice) by qtguru(m): 9:51am On Nov 21, 2022 |
TwentiesGirl: 17 proposals in 7 days? Okay, I actually need to do better. But then again, the amount of UI/UX jobs being posted right now isn't as much as it used to be. Maybe it's the whole holidays thing for them and things will kick back up in the new year. You can mix it with other similar roles like Office Presentation Design, Infographics and others. I've learnt to expand my skills into other areas, All the best |
Programming › Re: What Should Be The Average Size Of A Wordpress Site by qtguru(m): 9:36am On Nov 21, 2022 |
Maxxim: Please guys I just downloaded my wordpress file from my local machine which I'll later host on a hosting site but I felt the site file size is too big after downloading it, it's 416mb, what's the ideal size, if it's too large can you recommend a tool for the compression or is there a way around it?
Thanks. 416mb is a lot are you downloading the uploaded images too ? just download the core files and let it still reference the uploaded image path. |
|
|
Business › Re: Upwork Thread (Questions/Help/Advice) by qtguru(m): 9:19am On Nov 20, 2022 |
Dollywood: This November is dry tbh. I've gotten just one interview and the dude ghosted me after me answering his questions and sending him samples of previous work done. There's this new scope of potential clients ghosting freelancers. Yeah it is, but I applied for 17 proposals and only 1 hit me back. But yesterday I decided to focus on very niche gigs.
|
Crime › Re: Lagos Police Arrests Man For Killing His Mother-In-Law & Man Who Caught Him by qtguru(m): 9:03am On Nov 20, 2022 |
Macstephenson01: One of the reasons I like some asian countries. . Cuz am sure this man won't even get trial at all. ..... Ogun k*ll him We should bring death penalty for these people |
Programming › Re: Guys, I Need Help With This Reactjs Issue Please. by qtguru(m): 6:37am On Nov 20, 2022 |
|
Programming › Re: Guys, I Need Help With This Reactjs Issue Please. by qtguru(m): 7:36pm On Nov 19, 2022 |
thug: Good evening, pls I will need a copy of this PDF, my email is elmadosh07@yahoo.com Thanks so much Sending |
Programming › Re: Guys, I Need Help With This Reactjs Issue Please. by qtguru(m): 6:49pm On Nov 19, 2022 |
Gbsks: Please, What edition is this ? Where can I get the PDF ? 4th Edition, you'd have to Google search , or I send you a copy. |
|
|
Programming › Re: Why Does My Solution Keep Failing The Second Test? (C++) by qtguru(m): 10:31pm On Nov 18, 2022 |
|
Programming › Re: Why Does My Solution Keep Failing The Second Test? (C++) by qtguru(m): 10:30pm On Nov 18, 2022 |
Alphabyte1: Timur, miurT, Trumi, mriTu all are 5 in length and they are valid spelling of the name from the challenge the output for the 4 words will be YES It works for this name because the name is sorted alphabetically if it was my name Aderemi it would fail because it would be Adeeimr. Test cases might be wrong input some times, but it works for now. |
Programming › Re: Why Does My Solution Keep Failing The Second Test? (C++) by qtguru(m): 10:02pm On Nov 18, 2022 |
Alphabyte1: Note the number of letter n in the string is 5 (timur) . You have to use sort if to display correctly
#include <bits\stdc++.h> using namespace std; int main(int argc, char const *argv[]) { int t; scanf("%d", &t); while (t--) { int n; string s; scanf("%d", &n); cin >> s; string ans = "Timru"; sort(s.begin(), s.end());
cout << (s == ans ? "YES" : "NO" ) << "\n"; } } sort(s.begin(), s.end()); // It seems it sorts alphabetically in the following order: Case Letters first "T", then the letters in terms of a-z i << m << r << u so this gets sorted well If the name was Timra, this would fail, though it passes, I won't say it's accurate, we're just lucky to be given this letters. @TasyFriedPussy Timra would be Taimr |
Programming › Re: Why Does My Solution Keep Failing The Second Test? (C++) by qtguru(m): 9:51pm On Nov 18, 2022 |
Send me the link to this algo, is this codeforces ? |
Programming › Re: Why Does My Solution Keep Failing The Second Test? (C++) by qtguru(m): 9:47pm On Nov 18, 2022 |
TastyFriedPussy: It absolutely blasted it  I don't think most tests will allow you to use in-built sorting methods |
Programming › Re: Why Does My Solution Keep Failing The Second Test? (C++) by qtguru(m): 9:45pm On Nov 18, 2022 |
lol i wrote long thing |
Programming › Re: Why Does My Solution Keep Failing The Second Test? (C++) by qtguru(m): 9:32pm On Nov 18, 2022 |
Alphabyte1: Note the number of letter n in the string is 5 (timur) . You have to use sort if to display correctly
#include <bits\stdc++.h> using namespace std; int main(int argc, char const *argv[]) { int t; scanf("%d", &t); while (t--) { int n; string s; scanf("%d", &n); cin >> s; string ans = "Timru"; sort(s.begin(), s.end());
cout << (s == ans ? "YES" : "NO" ) << "\n"; } } I don't think this solves it. |
|
Family › Re: My Uncle Doesn't Want Me In His House by qtguru(m): 4:15pm On Nov 18, 2022 |
4 times a week makes you an extra mouth to feed, don't you have something to do ? |
Family › Re: My Uncle Doesn't Want Me In His House by qtguru(m): 4:14pm On Nov 18, 2022 |
Toju bole lol |
|
|
|