₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,327,107 members, 8,429,377 topics. Date: Thursday, 18 June 2026 at 07:18 PM

Toggle theme

Silento's Posts

Nairaland ForumSilento's ProfileSilento's Posts

1 2 3 4 5 6 7 8 ... 30 31 32 33 34 35 36 37 38 (of 39 pages)

ProgrammingRe: I Will Officially Quit Visiting This Section by silento(op): 8:18am On Jul 25, 2017
yea seun
the mods here need to start keeping things organized

auto deleting of ponzi and non related topics here
ProgrammingI Will Officially Quit Visiting This Section by silento(op): 11:36pm On Jul 24, 2017
dhtml18 is retiring from trolling on the this section

not only him I don't see anything important on this section anymore

I will quit visiting almost if nothing is done about it

lame topics on first page

ponzi and etc taking over

what has happened to our visions

are we going to keep bragging and remain like this

can't so people form a project and start it and others will contribute on git

what on earth is wrong with this section

when a post about scam way to make fake 50000naira. in ponzi get more view than on how to create a cart for a shopping website

I think it is a time for change not buhari change but real change

thanks don't mention me for silly respond
CrimeRe: Fake Soldier Arrested While Osinbajo Was Inspecting Mokwa-Jebba Bridge (pics) by silento(m): 9:08am On Jul 17, 2017
rubber
ProgrammingRe: Where Are The Programmers On Nairaland? by silento(m): 9:05am On Jul 17, 2017
Covert:
What do you mean?
CP = Competitive Programming

Do you mean you didn't find any competition on Hachkerrank?
yes
ProgrammingRe: Where Are The Programmers On Nairaland? by silento(m): 9:27pm On Jul 16, 2017
didn't see any Cp there
ProgrammingRe: Little Issue With Php. Please Help Out by silento(m): 6:22am On Jul 05, 2017
a good example of copy copy programmer next write your own code and you will understand why that happens
ProgrammingRe: Programming In The South East by silento(m): 7:45pm On Jul 02, 2017
my name is somadina okoye from nnewi in anambra state

python,web developer, php,c,c++ programmer

any hub like activity count me in
ProgrammingRe: I Need Linux Urgently, Please by silento(m): 5:16pm On Jun 30, 2017
bros go and download fedora 17 or 18 gnome or kde desktop It is around 700mb migrate to Mtn pulse subscribe with 500naira
EducationRe: Jealous JSS1 Student Who Poisoned Classmate With Acid In Lagos Expelled by silento(m): 11:42am On Jun 29, 2017
olowa
Jokes EtcRe: [pix] All The funny Comments On Nairaland by silento(op): 6:23am On Jun 29, 2017
this why you should never bring your dog issues on nl

Jokes EtcRe: [pix] All The funny Comments On Nairaland by silento(op): 6:19am On Jun 29, 2017
this user thought that the best way to keep his sperm was this method grin

Jokes Etc[pix] All The funny Comments On Nairaland by silento(op):
I have be gathering this comments for a while now so I thought this might also make you day

take a seat while we ride deep into the world sarcasm grin
Jokes Etc[picture] What Happens When You Want To Outsmart A Computer Program by silento(op): 12:58am On Jun 25, 2017
I stumbled on this game on Facebook

type ejob9.com/yourname and it will tell you what Job you will get in future here is my own result

CelebritiesRe: If You Feel People I Hailed In My Songs Are Fraudsters, Report To EFCC -9ice by silento(m): 7:49pm On Jun 24, 2017
9ice talk
ProgrammingFft by silento(op): 11:21pm On Jun 21, 2017
if you can't code fft in atlest 2 language please don't call yourself a programmer
ComputersRe: A Nairalander Hacked Into Tooxclusive.com Website by silento(m): 11:18pm On Jun 21, 2017
who subdomain help go and find better work
ProgrammingRe: My C++ Voting System Program Algorithm by silento(m): 11:16pm On Jun 21, 2017
for hashing use the infamous bit shift operators ^
ProgrammingRe: I Created A Directory Site For Nigeria Famous Websites, Need Advice. by silento(m): 11:08pm On Jun 21, 2017
itzFANE:
Can I also join u. I hv some ideas. This is my email: anefu65@gmail.com
yes
ProgrammingRe: I Created A Directory Site For Nigeria Famous Websites, Need Advice. by silento(m): 9:39am On Jun 20, 2017
contact me on whatsapp so we can discuss more
ProgrammingRe: I Created A Directory Site For Nigeria Famous Websites, Need Advice. by silento(m): 12:49am On Jun 20, 2017
nice ideal but unorganized website

1.first the design is poor
2. categories poor presentation
3. no details of a website

my advise is :-

1. a next logo since it for finding other website

the logo need a magnifying glass after or before the nigeria123 or you can put the 123 inside the magnifying glass


2. you need two html div first for the 10 most visited website and second is for categories

3. inside categories each website will have a description of it if you click on it and a button to visit the website Ajax is your friend here


4.here is my Number 08161392463. whatsapp this

I will help you code and design the website if you want an assistant


and please other programmers and designer here contribute so that this kind of website can favour us all


nice work I love your ideals
CelebritiesRe: Photos Of Bobrisky’s Burnt Knuckles by silento(m): 3:50pm On Jun 19, 2017
fanta and coke fingers
ProgrammingRe: HOMEWORK : .CDA Reader And Ripper by silento(op): 12:33am On Jun 09, 2017
#include <stdio.h>
#include <stdlib.h>
#include <string.h>


typedef struct cddata
{

int track;
int s_frame;
int s_sec;
int s_mins;
int t_frame;
int t_sec;
int t_mins;
}cddata;




int len(char *items);
int in_word(char *item,char *mp);
int check_cd(char *filename);
int read_cd(char *filename,cddata *data);



int main()
{

cddata cdstore ;
check_cd("dat/track01.cda"wink;
read_cd("dat/track01.cda",&cdstore);

printf("TRACK number : %d \n",cdstore.track);
printf("TRACK START MINUTES AND SECONDS ON DISC :: %d:%d \n",cdstore.s_mins,cdstore.s_sec);
printf("TRACK DURATION :: %d:%d \n",cdstore.t_mins,cdstore.t_sec);




return 0;

}


//#####################################FUCNTIONS########################################
int read_cd(char *filename,cddata *data)
{


char buff[45];
FILE *file = fopen(filename,"rb"wink;
if(file)
{
fseek(file,0,0);
int i = fread(buff,sizeof(char),sizeof(char)*44,file);
if(i==44)
{
data->s_frame=buff[35];
data->s_mins=buff[37];
data->s_sec=buff[36];
data->track=buff[22];
data->t_frame=buff[40];
data->t_mins=buff[42];
data->t_sec=buff[41];

return 0;

}
else
{

return 1;
}



}


}

//######################################################################################

int len(char *items)
{
int i=0;
int ii=0;
while(i !=1)
{
char a = items[ii];
ii++;
if(a=='\0')
{
i=1;
};
}
return(ii-1);
}


//######################################################################################################


int check_cd(char *filename)
{

char buff[5];
FILE *file = fopen(filename,"rb"wink;
if(file)
{
fseek(file,8,0);
int i = fread(buff,sizeof(char),4,file);
buff[i]='\0';



if(in_word("CDDA",buff))
{
return 1;

}
else

{
return 0;
}

}


}



//###############################################################################//


int in_word(char *item,char *mp)
{
int r,l,j=0,chk=0;
l = len(mp);


for(r=0;r<len(item);r++)
{

if(mp[j]==item[r])
{

chk+=1;
j+=1;
}
else
{
chk=0;
j=0;
}

if(chk==len(mp))
{

break;
}
//printf("%c \n",item[r]);
}


if(chk==len(mp))
{
return 1;

}
else
{
return 0;

}

}
ProgrammingRe: HOMEWORK : .CDA Reader And Ripper by silento(op): 6:18pm On Jun 08, 2017
is any code ready
ProgrammingHOMEWORK : .CDA Reader And Ripper by silento(op): 10:47pm On Jun 07, 2017
what is .cda

in a layman terms .cda file is a shortcut files or reference files to the real location of a music in audio cd disc in windows operating system

so whats the homework all about ?:

create a program to read and also rip the audio track from a .cda file (audio cd plate)

tools needed to code this (expo):

1. any programming language

2. how to handle binary file

3. how to create raw audio (.wav)

GUI or CMD app is allowed

No library is allowed must be 100% your brain work


price just for learning purpose


SO WHY WASTE YOUR TIME ON THIS :

there is loving in sharing who knows it may come in handy

both newbie and pro are welcome to do the home work

please remember open source and be ready to take questions from other member if you code right
Music/RadioRe: Nairalander Releases First Single- Theresa by silento(m): 7:26pm On Jun 01, 2017
the bullet part I fear oo
ProgrammingRe: I Need A 2:1 Matrix P2P Script With Referral Bonus by silento(m): 7:03am On Jun 01, 2017
I have the script you are looking for error free and no back door 08161392463
ProgrammingRe: I Need A 2:1 Matrix P2P Script With Referral Bonus by silento(m): 7:01am On Jun 01, 2017
2weeks and they are still paying achivahs.com thank me later
Nairaland GeneralRe: My Ugly Experience At Diamond Bank Today by silento(op): 10:27am On May 27, 2017
nurshah:
I just did a topic now and so yours on their fast declining customers service

Its terrible some of their staff are even confrontational ....what rubbish are they doing us a favour?
the worst part is that I lost the 11k to diamond and jumia

and both are using me for childs play

jumia is pointing fingers at Diamond and same to Diamond

I just forget the 11k and stop buying from jumia for now if I need any item onitsha main market is not far from my area
TravelRe: OCHA BRIGADE Kenneth Okonkwo Dies In Accident (Photos) by silento(m): 10:42pm On May 25, 2017
God is the ultimate finisher
EventsRe: The Dollar Rain At The Birthday Of A Nigerian Man In The US. Photos by silento(m): 10:37pm On May 25, 2017
we made it grin
CrimeRe: Sunny Blu Opukiri, Gospel Artiste Assaulted By Police For Defending A Keke Rider by silento(m): 10:35pm On May 25, 2017
when are we parting

1 2 3 4 5 6 7 8 ... 30 31 32 33 34 35 36 37 38 (of 39 pages)