₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,030 members, 8,420,002 topics. Date: Thursday, 04 June 2026 at 09:11 AM

Toggle theme

Sleepingdemon's Posts

Nairaland ForumSleepingdemon's ProfileSleepingdemon's Posts

1 2 3 4 5 6 (of 6 pages)

Tech JobsRe: Skilled App Programmer That Specialises With Cordova Needed by sleepingdemon: 11:22am On May 12, 2016
dhtml18:
Unfortunately, my solution uses websockets. . . . . .but that is just a small aspect of the entire library.
please drop github link to the solution?
Tech JobsRe: Skilled App Programmer That Specialises With Cordova Needed by sleepingdemon: 8:18am On May 12, 2016
dhtml18:
Lobatan, see example of node sockets.io implementation here - http://dhtmlchat.heroku.com

By the way, I have rewritten that sockets.io in regular php/javaScript - in case anyone is interested. And it works exactly like the original socket.io of node.
im intrested, provided i dont have to start a deamon separately like phpwebsockets
Tech JobsRe: Skilled App Programmer That Specialises With Cordova Needed by sleepingdemon: 10:58pm On May 11, 2016
pcguru1:
sad would Node be able to push notifications i've use Node as backend, am asking if it's possible to handle push notifications with Node, i don't think i would be that stupid to ask if node can be used as a service/backend.
couple node with sockets.io and then see how ur push notification come in with realest time
Tech JobsRe: Web Developers Wanted - Earn Up To N250,000 Per Month (apply Now) by sleepingdemon: 10:55pm On May 11, 2016
dhtml18:
Hmn, you can use my own account number if that column don wipe commoth.
haa, i no even sabi say them dey put account number for c.v make i use pencil take write my account number for there
Tech JobsRe: Web Developers Wanted - Earn Up To N250,000 Per Month (apply Now) by sleepingdemon: 9:24pm On May 11, 2016
dhtml18:
I seem to have misplaced my CV even, must be getting old. . .
Thank God, ehen op, my own cv dey kampe, but rat don chop my name, address and phone no comot, but na my own, i go still fit submit am?
Tech JobsRe: Web Developers Wanted - Earn Up To N250,000 Per Month (apply Now) by sleepingdemon: 9:21pm On May 11, 2016
dhtml18:
^^^who the heck are you? How dare you? i mean how dare you book that space? Who gave you the audacity? You want to start a war here abi? Oya waka pass now now.
Before you know it now, you will start bring your cattle to graze on this space.
haa, before, na grazing reserve i book the land for, and for who i am, just remember say na sword my herdsmen dey carry no be machete
Tech JobsRe: Web Developers Wanted - Earn Up To N250,000 Per Month (apply Now) by sleepingdemon: 10:59am On May 11, 2016
Haa, see free land, i must claim this land. space booked.
Tech JobsRe: We Need A Web Programmer To Help Finish Up An API And Maintain Our Website by sleepingdemon: 1:49pm On Apr 12, 2016
trafficexpert:
We urgently need the service of a web programmer to help check out and finish up modification on an API and also be the maintenance person for the site update generally.

if you are good with API and web programming,
kindly drop your watsapp details below this thread and you will be contacted.
thanks
08052016214
Tech JobsRe: E-commerce App For Fastfood Outlet URGENTLY needed!!! by sleepingdemon: 7:57am On Apr 06, 2016
FrankLampard:
Its not cheap. Beware of quacks.
noone said it was cheap...
Tech JobsRe: E-commerce App For Fastfood Outlet URGENTLY needed!!! by sleepingdemon: 6:50am On Apr 06, 2016
08052016214
Tech JobsRe: E-commerce App For Fastfood Outlet URGENTLY needed!!! by sleepingdemon: 11:21pm On Apr 05, 2016
pay a developer to develop the above app for you, as well as a rest api to connect to it, you can contract to me too, also we have ppl like danielthegeek, dhtml18, pcguru and a lot more u can pm.
ProgrammingRe: Please Does Any One Know Aw To Create A School Portal With Word Press Or Joomla by sleepingdemon: 11:19pm On Apr 05, 2016
kindly use wordpress, deploy for a university, give me the link to the site too, let me start the business of upgrading students gp for a living. youll learn ur lesson fair enough
ProgrammingRe: Please Does Any One Know Aw To Create A School Portal With Word Press Or Joomla by sleepingdemon: 11:18pm On Apr 05, 2016
kindly use wordpress, deploy for a university, let me start the business of upgrading students gp for a living. youll learn ur lesson fair enough
Dating And Meet-up ZoneRe: Fun And Interactive Bbm Group:kindly Drop Your Pin by sleepingdemon: 3:36pm On Apr 03, 2016
5900DA33
ProgrammingRe: Number Generator Challenge : Can You Solve This? by sleepingdemon: 3:14pm On Mar 23, 2016
sleepingdemon:
using php, i would do the following
<?php
$characters=1111444411111111;
//check if character lengthis 16
$num_length = strlen((string)$characters);
if($num_length !=16){
//throw error and probably return
}else{
//divide the number into 4 sections
$numbee=substr($characters, 0, 4);


$num=substr($characters, 4, 4);

$num2=substr($characters, 8, 4);
$num3=substr($characters, 12, 4);
//generate serial number
$first_part=rand($numbee, ($numbee+4000000));
$second_part=rand($num, ($numbee+4000000));
$third_part=rand($num2, ($numbee+40000000));
$fourt_part=rand($num3, ($numbee+40000000));

//make all parts of the serials long
$seria11=$first_part.rand(1000, 90000);
$seria12=$second_part.rand(1000, 90000);
$seria13=$third_part.rand(1000, 90000);
$seria14=$fourt_part.rand(1000, 90000);
//cut each part of it to give 10 charcters only

$serial_final1=substr($seria11, 0, 10);
$serial_final2=substr($seria12, 0, 10);
$serial_final3=substr($seria13, 0, 10);
$serial_final4=substr($seria14, 0, 10);
//print out the generated serial number
$final=$serial_final1.'-'.$serial_final2.'-'.$serial_final3.'-'.$serial_final4;
echo "your serial key is: ".$final;
}
?>
after all of this, be sure to replace the character variable with the source of your serial number
using php, i would do the following

<?php
$characters=1111444411111111;
//check if character lengthis 16
$num_length = strlen((string)$characters);
if($num_length !=16){
//throw error and probably return
}else{
//divide the number into 4 sections
$numbee=substr($characters, 0, 4);


$num=substr($characters, 4, 4);

$num2=substr($characters, 8, 4);
$num3=substr($characters, 12, 4);
//generate serial number
$first_part=rand($numbee, ($numbee+4000000));
$second_part=rand($num, ($numbee+4000000));
$third_part=rand($num2, ($numbee+40000000));
$fourt_part=rand($num3, ($numbee+40000000));

//make all parts of the serials long
$seria11=$first_part.rand(1000, 90000);
$seria12=$second_part.rand(1000, 90000);
$seria13=$third_part.rand(1000, 90000);
$seria14=$fourt_part.rand(1000, 90000);
//cut each part of it to give 10 charcters only

$serial_final1=substr($seria11, 0, 10);
$serial_final2=substr($seria12, 0, 10);
$serial_final3=substr($seria13, 0, 10);
$serial_final4=substr($seria14, 0, 10);
//print out the generated serial number
$final=$serial_final1.'-'.$serial_final2.'-'.$serial_final3.'-'.$serial_final4;
echo $final;
}
?>

after all of this, be sure to replace the character variable with the source of your serial number
Tech JobsNode.js Developers Needed Urgently. by sleepingdemon(op): 4:12pm On Mar 14, 2016
hello house, crust resources is in urgent need of node.js developers and also frontend developers
employement is on a contract basis.

requirements for node.js developers:
deep understanding of express,
use of embedded javascript (ejs) or jade as view engine,
mongodb,
requirement of front end developers
html,
css (bootstrap framework),
client side javascript.

if interested, kindly send your c.v with related experience to samuel@crustresourcesng.com.

alternatively, php (codeigniter) developers can also send in thier cv's
ProgrammingRe: I Need Ur Help by sleepingdemon: 10:11pm On Mar 13, 2016
if i would say definitely 3
use either
1.)php
2.)node.js
node.js is more preferable so u can maximize the use of sockets.io
ProgrammingRe: Programming Competition: Search Engine Task. Rewards up for grabs. by sleepingdemon: 7:36pm On Mar 13, 2016
dhtml18:
Interesting, but why is it that only one person is contacting me? am i meant to award only one person?
i was going through the phpfoxbrowser on github and i saw we have the same surname, mind to mail me ur whatsapp contact?
ProgrammingRe: Programming Competition: Search Engine Task. Rewards up for grabs. by sleepingdemon: 7:25pm On Mar 13, 2016
asalimpo:
You think everybody uses javascript?
js this js that.
think again.
i was just saying
ProgrammingRe: Programming Competition: Search Engine Task. Rewards up for grabs. by sleepingdemon: 7:23pm On Mar 13, 2016
DanielTheGeek:
He's just letting you know that an easy-to-learn language like JavaScript is very powerful.

JavaScript is actually going to lead us to the future, thumbs up to the guys at Mozilla.org
finally someone that understands my point of view
ProgrammingRe: Programming Competition: Search Engine Task. Rewards up for grabs. by sleepingdemon: 1:58pm On Mar 13, 2016
asalimpo:
@Danielthegeek
This challenge could have been solved with a desktop program that polls NL, parses the html and presents the data. Search wise it would probably be slower but it would probably be the most original and hardest
to write: html parser, indexer, network interface, gui etc.
What if a competitor took this approach-he'd lose out. Besides such code wouldnt need a server to run!!
just download and run from a desktop with internet access.
in this era when nw.js can be used to build desktop app?...think again bro
ProgrammingRe: Help Me In Reviewing My Social Network Website. by sleepingdemon: 7:25am On Mar 13, 2016
Booyakasha:
WordPress.. cry
loll let the sleeping dogs lie
ProgrammingRe: Programming Competition: Search Engine Task. Rewards up for grabs. by sleepingdemon: 8:19pm On Mar 12, 2016
i just hope this helps, i dint put up my code on github, but this zip file attached here contains the small code i wrote
ProgrammingRe: Programming Competition: Search Engine Task. Rewards up for grabs. by sleepingdemon: 7:49pm On Mar 12, 2016
DanielTheGeek :
Sleeping Demon, oh my God, the Demon was not asleep at all..your crawler's speed can literally be compared to google's as i tested it from various countries (I even tested it more from a distant country's server and got a very fast ping back), but do not be carried away you could have had a spot at the top three if the crawler was
.
let me start by saying thanks for the comment, while i agree that the crawler wasnt doing much work, i just wanted to put something up to compete for the first time on nairaland as office work wouldnt give me much time to work on it, so i jes did something....even my codes werent hosted on github as i kept procrastinating as to when i would do that , all in all, i say thank you for taking out your time to review it
ProgrammingRe: Programming Competition: Search Engine Task. Rewards up for grabs. by sleepingdemon: 5:30pm On Mar 12, 2016
jes came in here and saw this, forgot to provide github link, been busy, thanks for the rating, and i know am at fault for not concentrating on the competition
ProgrammingRe: Programming Competition: Search Engine Task. Rewards up for grabs. by sleepingdemon: 10:43pm On Mar 03, 2016
projectstream.tk ill prolly still add changes to it, as it is now, i jes roughed it up
ProgrammingRe: Programming Competition: Search Engine Task. Rewards up for grabs. by sleepingdemon: 11:56am On Mar 03, 2016
DanielTheGeek:
Yes it is.
expect my submission latest tomorrow...
ProgrammingRe: Programming Competition: Search Engine Task. Rewards up for grabs. by sleepingdemon: 8:37am On Mar 03, 2016
haa, jes seeing this, let me just comb my hair and join...op is the competition still open?
ProgrammingRe: Siwes Student Placement In IT Firms by sleepingdemon: 11:21pm On Feb 26, 2016
methylade:
am studying computer science....but we all knw most Nigeria university, all we do is paper coding so am looking for a placed to be trained in web programing and database management
send a resume to samuel@crustresourcesng.com also ask your classmates who might need to do the same, ill talk to my md and see what comes out
ProgrammingRe: Siwes Student Placement In IT Firms by sleepingdemon: 7:20pm On Feb 26, 2016
methylade:
Why is it that most Nigeria IT firms do not accept siwes or IT student in thier firms?? i need a IT company for my siwes placement anywhere in Lagos.
first of all, whats your course, what can you currently do

1 2 3 4 5 6 (of 6 pages)