₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,079 members, 8,420,181 topics. Date: Thursday, 04 June 2026 at 01:05 PM

Toggle theme

Urchrlex's Posts

Nairaland ForumUrchrlex's ProfileUrchrlex's Posts

1 2 3 4 (of 4 pages)

ProgrammingRe: A Thread For PHP Code Igniter Framework Tutorial by urchrlex: 9:59am On Feb 13, 2019
abrahambest:
I stay in Surulere, Lagos
My brother learn Modern PHP frameworks. like Laravel, symfony, etc; The world of building an app today is for easy interchanging of data using API. You have to build an app that you can share you data securely with the world. If the owner of this nairaland built his app that way he would have been one of the top tech social sites.
ProgrammingRe: Full Stack Developer Needed !! by urchrlex: 1:26pm On Feb 10, 2019
Bizmagnet:
You didn't get the question bro. The question is to return all words such that when you add all its letters, it will give 100. What you did is test for words whose letter sum up to 100.
Post the right answer Bro. If you want it the way you stated then contact me because u will PAY some dollars! grin angry undecided
ProgrammingRe: Full Stack Developer Needed !! by urchrlex: 2:03pm On Feb 07, 2019
urchrlex:
const characode = function(words){
const letters = {"A":"1","B":"2","C":3,
"grin":4,"E":"5","F":"6","G":"7","H":"8","I":"9","J":"10","K":"11",
"L":"12","M":"13","N":"14","O":"15","P":"16","Q":"17","R":"18","S":"19","T":"20",
"U":"21","V":"22","W":"23","X":"24","Y":"25","Z":"26"};
var mat = letters[words];
return mat;
}
function sumwords(word){
var words = word.toUpperCase();
var sum = 0;
sum += 0;
for(var i = 0; i < words.length; i++) {
var fo = parseFloat(characode(words[i]));
sum += fo;
}

return sum;


}
var mywords ="apple"
console.log(sumwords(mywords));
Similar to a question Microsoft gave me last year at their interview. Omo, I not fit do am until the time expired.
Question: If A=1, B=2, C= 3, ..., Z=26. Write a program (Javascript) that returns every word whose sum equals to 100.
The truth of the matter is writing algorithm in a timed test may not be best to access Programmers because atimes you may need to think and think before you get the problemm solved which time may not permit.[/quote]const characode = function(words){
const letters = {"A":"1","B":"2","C":3,
"grin":4,"E":"5","F":"6","G":"7","H":"8","I":"9","J":"10","K":"11",
"L":"12","M":"13","N":"14","O":"15","P":"16","Q":"17","R":"18","S":"19","T":"20",
"U":"21","V":"22","W":"23","X":"24","Y":"25","Z":"26"};
var mat = letters[words];
return mat;
}
function sumwords(word){
var words = word.toUpperCase();
var sum = 0;
sum += 0;
for(var i = 0; i < words.length; i++) {
var fo = parseFloat(characode(words[i]));
sum += fo;
}

if(sum == 100){
return word;
}else{
return "The sum of the word is not 100";
}


}
var mywords ="apple"
console.log(sumwords(mywords));
ProgrammingRe: Full Stack Developer Needed !! by urchrlex: 1:56pm On Feb 07, 2019
Bizmagnet:
Similar to a question Microsoft gave me last year at their interview. Omo, I not fit do am until the time expired.
Question: If A=1, B=2, C= 3, ..., Z=26. Write a program (Javascript) that returns every word whose sum equals to 100.
The truth of the matter is writing algorithm in a timed test may not be best to access Programmers because atimes you may need to think and think before you get the problemm solved which time may not permit.
const characode = function(words){
const letters = {"A":"1","B":"2","C":3,
"grin":4,"E":"5","F":"6","G":"7","H":"8","I":"9","J":"10","K":"11",
"L":"12","M":"13","N":"14","O":"15","P":"16","Q":"17","R":"18","S":"19","T":"20",
"U":"21","V":"22","W":"23","X":"24","Y":"25","Z":"26"};
var mat = letters[words];
return mat;
}
function sumwords(word){
var words = word.toUpperCase();
var sum = 0;
sum += 0;
for(var i = 0; i < words.length; i++) {
var fo = parseFloat(characode(words[i]));
sum += fo;
}

return sum;


}
var mywords ="apple"
console.log(sumwords(mywords));
ProgrammingRe: Full Stack Developer Needed !! by urchrlex: 1:51pm On Feb 07, 2019
jelel6:
Yelp. Basically same solution I have.

However, there's a slight change needed for your program...

When a number is divisible by both 3 and 5, you're to print "fizzbuzz" AND NOT "FizzFizzBuzz".
The logic question is incorrct with outcome they want
for(var i=1; i<101; i++){
var tr = "", fi ="", no="", bo="";
if(i % 3 == 0 && i % 5 != 0){
tr = "Fizz";
}
if(i % 5 == 0 && i % 3 != 0){
fi = "Buzz";
}
if(i % 5 == 0 && i % 3 == 0){
bo = "FizzBuzz";
}
if(i % 5 != 0 && i % 3 != 0){
no = i;
}
console.log(no +tr + fi + bo);
}
ProgrammingRe: Full Stack Developer Needed !! by urchrlex: 10:28am On Feb 07, 2019
urchrlex:
Point of correction; This is a very simple logic question not algorithm; Think of it like an Engineer to on and off 100 bulbs
for(var i=1; i<101; i++){
var tr = "", fi ="", no="";
if(i % 3 == 0){
tr = "Fizz";
}
if(i % 5 == 0 && i % 3 != 0){
fi = "Buzz";
}
if(i % 5 != 0 && i % 3 != 0){
no = i;
}
console.log(no +tr + fi);
}
Console.log is an api in node not Javascript.
for the second part;
for(var i=1; i<101; i++){
var tr = "", fi ="", no="", bo="";
if(i % 3 == 0){
tr = "Fizz";
}
if(i % 5 == 0 && i % 3 != 0){
fi = "Buzz";
}
if(i % 5 == 0 && i % 3 == 0){
bo = "FizzBuzz";
}
if(i % 5 != 0 && i % 3 != 0){
no = i;
}
console.log(no +tr + fi + bo);
}
1
2
Fizz
4
Buzz
Fizz
7
8
Fizz
Buzz
11
Fizz
13
14
FizzFizzBuzz
16
17
Fizz
19
Buzz
Fizz
22
23
Fizz
Buzz
26
Fizz
28
29
FizzFizzBuzz
31
32
Fizz
34
Buzz
Fizz
37
38
Fizz
Buzz
41
Fizz
43
44
FizzFizzBuzz
46
47
Fizz
49
Buzz
Fizz
52
53
Fizz
Buzz
56
Fizz
58
59
FizzFizzBuzz
61
62
Fizz
64
Buzz
Fizz
67
68
Fizz
Buzz
71
Fizz
73
74
FizzFizzBuzz
76
77
Fizz
79
Buzz
Fizz
82
83
Fizz
Buzz
86
Fizz
88
89
FizzFizzBuzz
91
92
Fizz
94
Buzz
Fizz
97
98
Fizz
Buzz
ProgrammingRe: Full Stack Developer Needed !! by urchrlex: 10:26am On Feb 07, 2019
jelel6:
I absolutely understand your rationale about portfolio and live coding challenge as regards your recruitment process and it's generally the same adopted by industry leaders.

Write a program that uses console.log to print all the numbers from 1 to 100, with two exceptions. For numbers divisible by 3, print "Fizz" instead of the number, and for numbers divisible by 5 (and not 3), print "Buzz" instead. When you have that working, modify your program to print "FizzBuzz" for numbers that are divisible by both 3 and 5 (and still print "Fizz" or "Buzz" for numbers divisible by only one of those).

(This is actually an interview question that has been claimed to weed out a significant percentage of programmer candidates. So if you solved it, your labor market value just went up.)


The above was taken from a popular Javascript book I started recently so you can imagine I was surprised a supposedly more experience developer doesn't expect some kind of coding test to work with a firm.
Point of correction; This is a very simple logic question not algorithm; Think of it like an Engineer to on and off 100 bulbs
for(var i=1; i<101; i++){
var tr = "", fi ="", no="";
if(i % 3 == 0){
tr = "Fizz";
}
if(i % 5 == 0 && i % 3 != 0){
fi = "Buzz";
}
if(i % 5 != 0 && i % 3 != 0){
no = i;
}
console.log(no +tr + fi);
}
Console.log is an api in node not Javascript.
for the second part;
for(var i=1; i<101; i++){
var tr = "", fi ="", no="", bo="";
if(i % 3 == 0){
tr = "Fizz";
}
if(i % 5 == 0 && i % 3 != 0){
fi = "Buzz";
}
if(i % 5 == 0 && i % 3 == 0){
bo = "FizzBuzz";
}
if(i % 5 != 0 && i % 3 != 0){
no = i;
}
console.log(no +tr + fi + bo);
}
ProgrammingUrgent Vacancy For Front End Developer by urchrlex(op): 7:18pm On Jul 13, 2018
Requirements:
1. React Js ......80%,
2. Redux ......80%,
3. React-Redux ......80%,
4. React-Native ......80%,
5. HTML5 ......80%,
6. Bootstrap3/4 ......80%,
7. CSS ......80%,
8. PHP ......50% .

Pls Call 08083215768.
Jobs/VacanciesRe: Job Vacancy ( Ui/ux, Software Developer) by urchrlex: 5:29pm On Jun 26, 2018
Jklue007:
WeMinus is an online marketplace that offers members on the platform exclusive discounts to shop at their favorite Brick and Mortar Stores through coupon codes and offers, not just that; WEMINUS also offers customers cash back reward system for every product purchased. At Weminus, our mission is to provide shoppers with the latest and best offers directly at their fingertip from their favorite shops daily.

POSITION:

Web Developer

UI / UX

Requirements

√. (UI/UX) Applicants should have a creative UI/UX
skill
√ Must be based in lagos island (Lekki-.
Ajah,Sangotedo prefferably)
√ Applicant must have sound knowledge in the
[color=#000000] following languages (Java, Spring framework,
Hibernate, JDBC, MongoDB, MySQL)
[/color] =>"How do these skills match with UI & UX Skills?"
√ Bust be fluent in English =>"How will you know someone who is fluent?"
√ Accuracy and attention to detail is a must.
√ Experience working within tech project teams.

Benefits

At Weminus, we're committed to providing an enjoyable and meaningful environment for every member of our team. We operate under a flat structure with minimal hierarchy where everyone’s opinion is valued equally. We are looking for team members with an entrepreneurial mindset who will thrive in a fast-paced and rewarding environment.

Additional perks:
√ Salary
√ Flexible vacations
√ Team retreats
√ Unlimited snacks and coffee
√ Company-sponsored happy hours.


How To Apply

Candidates should send their Cover Letters and CV's to: career@weminus.com
ProgrammingRe: not open by urchrlex: 12:53pm On Jun 22, 2018
How much can you pay
ProgrammingRe: Mathematics As Backbone Of Programming by urchrlex(op): 6:25pm On Jun 19, 2018
Am back. Please can someone tell me that graph is not important in programming. X and Y axis. Well if you are a php developer you might not understand this now until u move to other programming languages. Games and mobile app development have a lot to do with X and Y axis. If you don't understand mathematics how then can you derive a function of x And y . Ie movement of X with respect to Y. I have been working on a banking application. The loaning process es was explained to me so I 've to derive a function to calculate the monthly repayment, penalties, I would have loved to post the formula here but for security reasons I won't. My fellow programmers the same w ay water is for germination so is mathematics to programming .
ProgrammingRe: I Need A Good PHP Programmer To Modify My Site (payment Involved) by urchrlex: 7:10pm On May 17, 2018
Keep looking at the Code. It will work one day. Or simply write it on paper burn it and drink the water. It gonna work. U need a free programmer. Go train ur villager s and give them the job to do for you. This Guy has the got to insult me . God will judge you.
ProgrammingRe: Where To Do Ict Training by urchrlex: 6:09pm On May 12, 2018
Pls Explain ur needs very well . ICT is like half of the whole world. Pls state the technologies u wanna learn and someone will help you.
ProgrammingRe: Mathematics As Backbone Of Programming by urchrlex(op): 6:04pm On May 12, 2018
For every good software developer. Mathematics remains the key to success.
Starting from the plan. Most people don't know that software's have plan. Even ordinary blog should a well designed plan. Flowchart, database structure and wireframe.
ProgrammingRe: Build Android And IOS App With Python. by urchrlex(op): 5:33pm On May 12, 2018
Very Soon I foresee Robot taking over teaching profession.
ProgrammingRe: Build Android And IOS App With Python. by urchrlex(op): 5:14pm On May 12, 2018
Stop jumping from one language to another. thinking that one pays higher or easier than the other. Be good in one and use it to solve as many problems as possible. Starting from desktop, mobile, and web. Don't wait for problem to come create problem for it.

If u can't create any problem . Try this one. Building a web robot that will use the web cam to monitor candidate during online exams.

If you need more contact me
ProgrammingBuild Android And IOS App With Python. by urchrlex(op): 4:51pm On May 12, 2018
With python u can build apk and IOS applications. As simple as it sounds. Some people will be asking is it going to be native or hybrid. It is a Native app. It's not only for web applications, U can build games too.

Most people can't even differentiate between native and hybrid. Let me make it simple for you to understand. A Native application can access all the hardware components of a device. WiFi, camera, fingers print, gallery, radio, .... Etc while hybrid cannot. Call for more info
ProgrammingRe: Programmer Wit Knowledge Of Laravel Needed by urchrlex: 9:11am On Apr 30, 2018
If your problem is complex and challenging, If you can pay the fees then consult me . If it's just simple database manipulation or integration of a vendor package I am not interested.08156903069
ProgrammingRe: Pls I need help in python or java by urchrlex:
https://repl.it/@UchennaIhe/OverjoyedYawningMonitors

https://repl.it/@UchennaIhe/OverjoyedYawningMonitors-12


Open this link you will see two python files there run them there.
ProgrammingRe: Mathematics As Backbone Of Programming by urchrlex(op): 8:36pm On Apr 27, 2018
osarenomaspecial:
number 2 is not a must.
My friend am talking about programming not web programming. Building Softwares like Windows, PS games, embedded systems... Follow this topic you will enjoy this topic.
ProgrammingRe: Mathematics As Backbone Of Programming by urchrlex(op): 8:28pm On Apr 27, 2018
Main Discussion.
You must know that the easiest way to solve programming problem is to first transform or translate it into mathematics problem.

In mathematics we have a topic called SET.
Most database problems are solved with SET theory. We have things like: Elements, Union, complement , e t c.... Relating your programming problem to mathematics makes it easier to understand and solve.....
To Continue...
ProgrammingMathematics As Backbone Of Programming by urchrlex(op): 8:10pm On Apr 27, 2018
Pls for the young guys aspiring to be good programmer s. Note the following.
1. Programming is not web design.
2. Strong knowledge of Advanced Mathematics is mandatory.

3. You must always think outside the box.
4. You must always appreciate errors.
5. Always believe in yourself
6. Appreciate the work of others . And learn from their style of coding.
7. Many roads lead to heaven but you must always look for the shortest road. I e shortest solution to a problem.
8. You must give your life to God and coding. Coding will be your hobby,girlfriend,boyfriend, .
9. ......To continue
ProgrammingRe: Pls I need help in python or java by urchrlex: 7:21pm On Apr 27, 2018
Your question is not well explained. Just read up how to manipulate arrays . You will appreciate arrays if u know matrix in mathematics. For more info you can consult me on 08156903069
ProgrammingRe: How To Code This Logic With Php... by urchrlex: 8:31pm On Apr 26, 2018
s as simple as ABCD . It's just like a maths problem that has many solutions but all gives you the same answer. X = a, X =b,X=c,X=d; You want to substitute the value of X =a . To all the functions. Solve it then call me I will tell you how to solve it .You can use simple IF condition to solve it or declare them in you database. Call me :08156903069
Jobs/VacanciesRe: Laravel Web App For Sale by urchrlex(op): 9:52am On Dec 17, 2017
More Features;
Subscription Plans,
Social media Platform
Jobs/VacanciesRe: Laravel Web App For Sale by urchrlex(op): 8:30pm On Dec 16, 2017
Admin Login credentials
Password and username call
Jobs/VacanciesRe: Laravel Web App For Sale by urchrlex(op): 8:18pm On Dec 16, 2017
More Features;
Multi level Marketing, upto 5th Generation.
Referral system
Jobs/VacanciesRe: Laravel Web App For Sale by urchrlex(op): 7:52pm On Dec 16, 2017
If You need any Web app to automate your business processes call too. We design at a Very Cheap price
Jobs/VacanciesLaravel Web App For Sale by urchrlex(op): 7:41pm On Dec 16, 2017
This wep app is a for sale if you are interested call: 08153920070, www.mylifechanger.com.ng
Features;
Email Notifications
Currency Converter
Blog Management
Super Admin to Manage other area Admin
For more info call: 08153920070
ProgrammingRe: . by urchrlex: 8:15am On Oct 03, 2017
which language and the framework! Is it MVC
Jobs/VacanciesRe: I Need A Web Developer - N80k - Contract by urchrlex: 9:13am On Aug 28, 2017
You are a fooling urself......... U re looking for someone to use and not pay abi
Jobs/VacanciesRe: Nigerian Navy DSSC Recruitment Course 24 Is Ongoing- Nigerian Infopedia by urchrlex: 6:43am On Dec 16, 2016
enshi:
Boss pls i dint see any pls help me pls

Enshigabriel@ymail.com
Pls send me the past questions. urchihe@gmail.com

1 2 3 4 (of 4 pages)