NewStats: 3,263,380 , 8,179,958 topics. Date: Thursday, 05 June 2025 at 05:54 PM 141d5m6z3e3g |
(1) (10) (of 12 pages)
![]() |
eezor:You’re right on this but not too right. That’s why you have to check for post-processors before exporting to machine. Sometimes, you’ll have to modify for existing similar machines. And there’s even one website that you can drop your machine type and someone will help you out with the editing. Most time one google the machine post-processor and forums will pop up. Example of such forum is attached.
|
![]() |
eezor: Model/design in Fusion 360 or any other CAD software and generate a post-processor base on the type of machine! It’s the best modern way of generating Gcode and Mcode |
![]() |
Deicide: Lol. Okay |
![]() |
Deicide: Don't know what you mean but React-Query handles data fetching amongst other thing. https://tanstack.com/query/latest/docs/react/guides/queries |
![]() |
![]() |
Hello, Do you have HP 1040 G2 battery? And how much?
|
![]() |
SUPREMOTM: The bolded part is true! We were made to learn C# then for Introduction to Computing Engineering. It was/is core for all 200 Engineering students in Unilag. |
![]() |
jesmond3945: I believe this is not about skin colour or likeness! If it's not relocation, because it's easier relocating someone from other countries. Then it is ---- Reactjs said he was asked about salary structure and he said $60k per annum. So I'm believing someone else that also ed the rigorous interview process must have said something lower maybe $40k P/A or something less than what he quoted. Then the company decided to move on with the other person. I have had similar experience with a company, myself and one other lady were hired to get something done on contract. I charged $10 per hour while the other lady charged $25 per hour even when the lady is an American. She was dropped after 2 weeks and her milestones were re-allotted. 3 Likes 1 Share |
![]() |
samnaija: 250k per annum? What's the total package? And is there video? Those pictures are not doing justice to the room size. |
![]() |
My Unilag peeps looking at the opening! All those ones running 100 days of Leetcodes and DSA. |
![]() |
GREATIGBOMAN: Quite funny though. I made a screenshot and the guy said he started React in June. Some things in the post are not summing up. |
![]() |
ayomikuolatunji: I clicked on the hollywayglobal website and it's same thing with the screenshot I took from one Udemy course seller on Nairaland. And the website is way below par. After reading the story, I'm kinda convince you're real sha, because the chat name is kinda similar to your name. Can you clear how you started React in June with the 47 days into react in the screenshot? Congratulations bro, anyways.
|
![]() |
PresidObi:Did Tinubu enjoy any special budget allocation under Obasanjo's presidency considering their political difference? 3 Likes |
![]() |
People have reportedly campaigned for Peter Obi on the grounds that he is not corrupt and that he never accumulated debt while serving as a governor. Additionally, I've heard and read claims that Bola Tinubu is crooked, too old to be president, and the epitome of agbero-ism. It's amusing how Mohammad Buhari was also presented to us as a trustworthy individual. So instead of concentrating on these catchy selling points or downplaying, can we concentrate on their particular accomplishments and results during their time in office as governor. If accomplishments are compared, who performs better as a governor? or who actually kept his promises/commitments to the public? PS: Atiku Abubakar could have been paired with the duo, but he wasn't really at the affair when he was the vice president. Lalasticlala, Seun, Mynd44, OAM4J |
![]() |
Jess99: Hello, Can you share more details on this? Do I need to my Payoneer with ID before initiating withdrawal to Wise? How does the Wise thingy work? I don't want to get stuck doing this. Hope I won't need to hit bench mark of $5k or more before doing the Wise thingy. |
![]() |
Altairx440: Great! Thanks for sharing boss. It shows in your code that you're a Python writer. Some variables names (min_index...) are following Python way of naming. You know JavaScript mostly use CamelCase. Care to share what you use Python for? Backend? |
![]() |
Altairx440: Wow! Thanks boss. Never knew this. I'd be using it in going forward. Thank once again boss. Altairx440: Yeah. True. Thank you for the two loops pointer. |
![]() |
Altairx440: Thanks for following boss. I do appreciate. Please be posting. It'll go a long way in helping to understand how things can be done better. 1 Like |
![]() |
Capslock01: // Day 7 //Rearrange an unorganized Array function arrangeArray (thatArrayToArrange) { for (let i = 1; i < thatArrayToArrange.length; i++) { for (let j = 0; j < i; j++) { if (thatArrayToArrange[i] < thatArrayToArrange[j]) { let temp = thatArrayToArrange[i]; thatArrayToArrange[i] = thatArrayToArrange[j]; thatArrayToArrange[j] = temp; } } } console.log(thatArrayToArrange); } arrangeArray([1,9,4,5,3,0]); |
![]() |
Don't know if there's any one following. I'm sorry for keeping you hanging, I was caught up with work. Here's today's challenge. Day 7 Create function that takes an array of unsorted numbers and sort them. NB: You can't use the built-in sort function. For example [1,9,4,5,3,0] => your function [0,1,3,4,5,9] [2,5,9,6,1,53,45] => your function [1,2,5,6,9,45,53] [4,9,-3,5,0,-14,10] => your function [-14,-3,0,4,5,9,10] |
![]() |
LikeAking: Great one boss! It worked but not in all cases again when I switched the position of the 9 and 1 or maybe it's a fault from my end. Thank you for taking out time to review. I'm really learning from your code.
|
![]() |
LikeAking: Haaa! I saw your code in the midnight. It worked for some position of elements in arrays. But not all cases probably because of the arrayOfNumber[0]. I was hoping to come and comment on it when I review proper so that it won't be that I'm too hasty without reviewing proper. Guess you saw it too. But I was able to learn things from it. I can still parts of the codes I'll try to write a modifications of the code soonest. |
![]() |
LikeAking: Thank you boss! Yeah, the questions are mostly confusing sometimes. I sometimes read over and over then sit over it to understand. Like when I first read this particular question. My mind went to mathematics indices until I figured it's plural of index that's being mentioned. Thank you boss! You're always welcome with your contributions 1 Like |
![]() |
Capslock01: // Day 6 Solution //Return index that form targeted number function takeTwoInputs (arrayOfNumbers, targetNumber) { let found = []; let result = []; for (let value of arrayOfNumbers) { if (found[targetNumber - value] === true) { result.push(arrayOfNumbers.indexOf(targetNumber - value), arrayOfNumbers.indexOf(value)); } found[value] = true; } console.log(result) } takeTwoInputs([1,9,4,5,3,0], 10) takeTwoInputs([2,5,9,6,1,53,45],47) takeTwoInputs([4,9,3,5,0,14,10],100) PS: might modify this code again later. The output when no two numbers make the target number returned empty Array and not array with elements "-1,-1" |
![]() |
Day 6 Create a function that takes 2 inputs: an array of numbers and a target number. Your function should return the indices of the numbers that add up to form the target number. If no two numbers make up the target number, return -1, -1 NB: All numbers in the array can only be used once to add up to the target. NB2: The indices should be returned in an array For example: [1,9,4,5,3, 0] , 10 => Your function => [0,1] [2,5,9,6,1,53, 45], 47 => Your function => [0,6] [4,9,3,5,0,14,10], 100 => Your function => [-1, -1] |
![]() |
africanman85: Thank boss Andrenalin: Yeah boss! I hopeful to keep it coming, God's willing. |
![]() |
LikeAking: Wawwwu! Thank boss. |
![]() |
Capslock01: // Day 5 Solution //Unpack Slashed Array of Day 4 Challenge function returnObjectArray (arrayObject) { const trial = []; for ( let i = 0; i < arrayObject.length; i++) { const splitTheString = arrayObject[i].split('/'); const testingObject = ([{ name: splitTheString[0], age : splitTheString[1], level : splitTheString[2] }]); trial.push(testingObject); } console.log(trial); } returnObjectArray(['Seun/23/100 level']); returnObjectArray(['Seern/23/500 level', 'BBBgh/twenty three/year 1']); 1 Like |
![]() |
Day 5 Create a function that does the opposite of what yesterday’s function did. It takes the output of the function and returns the input. Therefore, your function should take an array of strings containing the name, age and level values separated by a slash. Your function should return an array of objects that have the name, class and level keys with their corresponding values. For example: [‘Seun/23/100 level’] => Your function => [{name: ‘Seun’, age: 23, level: ‘100 level’}] [‘Seern/23/500 level’,’BBBgh/twenty three/year 1’] => Your function => [{name: ‘Seern’, age: 23, level: ‘500 level’}, {name:’BBBgh’, age:’twenty three’, level: ‘year 1’}] 1 Like |
![]() |
Imoleholuuu: Oh, please check your mail. I PM'ed you with (Mo...ap) because I do not have access to the email I used for this Capslock01 . |
![]() |
Capslock01: // Day 4 Solution //Combine Properties of Array with Slash function callArrayOfObject (objects) { const emptyArray = []; for (let i = 0; i< objects.length; i++) { const theIteration = (`${objects[i].name}/${objects[i].age}/${objects[i].level}`); emptyArray.push(theIteration); } console.log(emptyArray); } const arrayOfObject = [{ name: 'Seun', age : 23, level : '100 level' }] const arrayOfObject1 = [{ name : 'Seern', age : 23, level : '500 level' }, { name : 'BBBgh', age : 'twenty three', level : 'year 1' }] callArrayOfObject(arrayOfObject); callArrayOfObject(arrayOfObject1); |
![]() |
Day 4 Create a function that takes in an array of objects containing properties: name, age and level. It should return an array of strings where each string is a concatenation of all values contained in the object separated by a slash For example: [{name: ‘Seun’, age: 23, level: ‘100 level’}] => Your function => [‘Seun/23/100 level’] [{name: ‘Seern’, age: 23, level: ‘500 level’}, {name:’BBBgh’, age:’twenty three’, level: ‘year 1’}] => Your function => [‘Seern/23/500 level’,’BBBgh/twenty three/year 1’] |
(1) (10) (of 12 pages)
(Go Up)
Sections: How To . 66 Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or s on Nairaland. |