Monikulapo's Posts
Nairaland Forum › Monikulapo's Profile › Monikulapo's Posts
1 2 3 4 5 6 7 8 9 10 11 12 13 (of 13 pages)
I would let you know right from the jump that your assumptions might not be right. Tech is actually pretty inclusive moreso in Nigeria. And there’s no ‘boys club’, ‘undue advantage’ whatever that implies ... I don’t think that’s a problem in the tech space. Actually are you in Tech, you would not be able to relate if you aren’t actually. |
And if your gripe is that I’m agreeing with the other guy. I agree with the the gist but I mentioned it’s not as cynical as he’s made it out to be. Honestly as a female, it’s just a call that if you put the effort in you’ll find it easier in tech than in most other industries in Nigeria. |
BRATISLAVA:If you missed it the point I made and agreed to is that if you had equally qualified people, the female has more chances of being chosen. And for developer relation type roles females are generally chosen. Plus nowhere did I imply unqualified or unproductive. I didn’t even say more prominent when talking about the job positions. Nowhere did I imply a negative connotation. Honestly, if I was in the same position I would employ a female. Also I don’t need to be in recruitment, what’s your logic ? these are people I worked with, first hand experience not opinions, facts. Also did you miss where I talked about representation and images and all .. Honestly chillax this isn’t a heated conversation, I guess it’s just my observations ... |
Bro this and your surgeon analogy doesn’t make sense one bit at all, I don’t see the relation. Computer Science is an image space, there’s a push for more female developers in Nigeria, look at accelerators, incubators, grants, foundations. It’s just logical that there would be more female focused roles. Perhaps not as cynical as Tensa put it, but honestly if you can’t see it then it’s all good, I’m just saying I have experience with this and female ‘developers’ don’t find it hard getting a ‘tech’ job in Nigeria. Do you have experience to say otherwise ? |
Anyone here who lives around the Alagbole - Ojodu - Ikeja axis and wants to meet up periodically to work on projects. HMU if you can make sense of the solutions on my other thread. |
Instead of being trying to be politically correct, look at it this way there’s more emphasis on women in tech in Nigeria, there’s going to be a bottleneck if they don’t get employed so obviously there’s preference for female developers. Simple as. Plus I actually have experience with this in 4 different occasions and settings. |
airsaylongcome:Plus I’ve interned in the industry in Nigeria, and I worked with two females who had more developer relations related roles who just had CS degrees and connection, I know for a fact a male applicant would’ve been more scrutinized. Again I don’t think it’s bad. It’s actually good for representation. But I don’t think Tensas statement is as scandalous as it’s being made out to be. Simples. |
Instead of nitpicking at semantics, the gist is generally true. If push comes to shove, there’s preference for female developers. Not that it is bad. Heck, of recent even tech incubators have female only batches and the latest TEF program had more position for female entrepreneurs. |
Hello peeps. Help. plez. Thanks. |
Perhaps study it in a gamified setting, study with intentions to start a personal project or get a study partner ? What’s delaying your progress ? |
Sorry if this sounds naive, but how do I implement this into my current workflow ?? My current workflow is learning Python and programming skills in general by solving Algo & DS styled questions. While doing this, I am focusing on refactoring my code, learning runtimes and common algorithms. I plan on doing this until I am comfortable with classes and OOP. |
Senior Backend Developers / Software Engineers in the house, what do I need to focus on as a beginner and what are some suggested roadmaps to follow if I eventually want to transition into a technical product manager role. |
The maximum sum subarray problem consists in finding the maximum sum of a contiguous subsequence in an array or list of integers: max_sequence([-2, 1, -3, 4, -1, 2, 1, -5, 4]) should return 6 '[4, -1, 2, 1]'. https://www.codewars.com/kata/54521e9ec8e60bc4de000d6c/train/python My initial Solution: def max_sequence(arr): Areas for improvement: Modify script to also return the corresponding array |
tensazangetsu20:Not trying to down play your progress but I still think it’s a bit of an oversimplification especially in Nigerian context to say you were a mechanic first. You had a solid University engineering education, you were a computer literate and you were also an entrepreneur. That’s different from a 30 year old conditioned private school teacher who’s not too comfortable with basic MS Word. |
Given an array of integers. Return an array, where the first element is the count of positives numbers and the second element is sum of negative numbers. If the input array is empty or null, return an empty array. For input [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, -11, -12, -13, -14, -15], you should return [10, -65]. My initial Solution: def count_positives_sum_negatives(arr):Played around with sets, and return statement/expression: def count_positives_sum_negatives(arr): Areas for improvement: Find the fastest solution |
Hello all, How long would you advise to spend on learning Python basics before diving into Django ? |
https://www.codewars.com/kata/576757b1df89ecf5bd00073b Build Tower by the following given argument: number of floors (integer and always greater than 0). Tower block is represented as *, Return a list. For example, a tower of 3 floors looks like the result below [My initial solution: def tower_builder(n_floors):Played around with list comprehension: def tower_builder(n_floors): Areas for improvement: Test both scripts to see if list comprehension is faster |
Gentleman001:You cannot find the range of a list. The problem has been solved, and I also provided an explanation for the error. Next time, to prevent derailing this thread please ensure you test your solutions before suggesting them. |
Implement a function that accepts 3 integer values a, b, c. The function should return true if a triangle can be built with the sides of given length and false in any other case. (In this case, all triangles must have surface greater than 0 to be accepted)https://www.codewars.com/kata/56606694ec01347ce800001b/python Here's my solution: def is_triangle(a, b, c): |
shiggy:Alpha Phamarcy |
In a small town the population is p0 = 1000 at the beginning of a year. The population regularly increases by 2 percent per year and moreover 50 new inhabitants per year come to live in the town. How many years does the town need to see its population greater or equal to p = 1200 inhabitants? https://www.codewars.com/kata/563b662a59afc2b5120000c6/train/python Here's my solution: def nb_year(p0, percent, aug, p): |
For anyone following, this was what I was solving when I encountered the problem above: Given: an array containing hashes of names. Return: a string formatted as a list of names separated by commas except for the last two names, which should be separated by an ampersand. https://www.codewars.com/kata/53368a47e38700bd8300030d/train/python For example: namelist([ {'name': 'Bart'}, {'name': 'Lisa'}, {'name': 'Maggie'} ])This is my solution, def namelist(names): |
Hello house, I expect the code snippet above to return: Wayne, John, Samson, Mike, Seun, However, what I get is: Wayne, John, Samson, Please, what is going on under the hood ? a = ['Seun','Mike','Samson','John','Wayne']I was wondering why the a.pop() method isn't working as expected. Modified: Okay, so I just learnt that modifying a list while iterating through it could lead to errors like this. It is best to create a new list and add items to it rather than removing items from the existing list. |
Hello All, I am currently working through Codewars in order to improve my Python Proficiency before diving into Django. I provide the problem links, along with my solution for anyone who's interested. Any suggestions on alternate solutions, logic and best practices would be really appreciated. |
dierich:Keep track of your symptoms, your diagnosis is only as good as what you say (symptom), the result of the test and quality of the doctor you see. You can control two variables, so work on those. Also don't put diagnosis in the doctors mouth, don't mention 'Kidney' at all ... state your symptoms as broadly and detailed as you can. Let the doctor make a diagnosis based on that and the test result then get an extra eye to also independently interpret the results. You should keep results of all your previous tests, so you can compare results. |
Go to the best hospital you can afford. Get a Kidney Test, Liver Test and Prostate-Specific Antigen (PSA) Test. You should get a full blood test if you can afford it. Essentially you are trying to confirm if it's a prostate or kidney problem. Based on your post history of trouble peeing and getting erection I think it might be enlarged prostate. To help your Doctor diagnose you better, keep a detailed note of your observations and symptoms. The quality of the doctors diagnosis is related to how best you can explain your symptoms. |
Curious345:Kidney Function, essentially how well the Kidneys are working |
Guest911:Hello, besides insomnia what's the crash and come down on Ritalin like ? |
It would keep you up and make your workload more manageable with occasional tunnel vision focus, but not comparable to Ritalin or other stronger stimulants. Haven't experienced any significant side effect other than forgetting you need sleep though ![]() |
Dollywood:30 Tabs of 100mg should be ~ N5000. |
tatatar:what brand of Modafinil is it ? I bought the 100mg Milpharm and have the same experience. |
$25 paypal urgently needed. |
