Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,159,058 members, 7,838,689 topics. Date: Friday, 24 May 2024 at 08:00 AM

Boraddo's Posts

Nairaland Forum / Boraddo's Profile / Boraddo's Posts

(1) (2) (3) (4) (of 4 pages)

Webmasters / Re: Top Websites by boraddo(m): 5:57pm On Mar 23, 2007
Programming / Re: Nigerian Coding Competion by boraddo(m): 3:05pm On Mar 22, 2007
no o! that homelocator is not mine, it was d app that one the flex derby competition 06,

how far wit ur coding competition ? ?
Programming / Re: Developer Of Fortran Dead At 82 by boraddo(m): 3:50pm On Mar 21, 2007
who says programmers dont live long ?
Programming / Re: Nigerian Coding Competion by boraddo(m): 2:50pm On Mar 21, 2007
for topcoder, a lot of companies hold compititions, like google, IBM, AOL e.t.c as for location, top coder holds their contests online, then d finals are onsite, and i think 1st , 2nd and 3rd positions can be like 100, 50 and 25k (naira o! )
i wont mind to compete in an MTN Code Jam , or Zenith Code Battle smiley


DJNiyi:


Thanks for the compliment. Yeah, we did it with Flex. Do you use it as well?


yea, i use flex, have u seen http://www.asfusion.com/apps/homelocator/, u could get some concepts for ur geeplaces ,
Programming / Re: Nigerian Coding Competion by boraddo(m): 10:55am On Mar 21, 2007
yea, something like a topcoder.com for nigerians will be cool, na just sponsorship be d problem,
and ur site is cool, did u do it with flex ??
Programming / Re: What Programming Languages Have You Used? by boraddo(m): 10:46am On Mar 21, 2007
abdkabir,
im interested in ur bulk SMS , give me more details
Programming / Re: What Programming Languages Have You Used? by boraddo(m): 2:09pm On Mar 20, 2007
seun u try,
i started wit QBasic in 2002, VBasic 2003, moved to Asp in 2004 and plenty TSQL in 2004 too , coldfusion in 2005, MXML+ AS3 in 2007, me sef don try small,
Crime / Re: Rape: What Would You Do If It Happened To Your Wife Or Girlfriend: ? by boraddo(m): 3:57pm On Mar 09, 2007
omo eko,

which kin husband be dat!

what happend after d rape ?
Nairaland / General / Re: Opening Links In A New Window by boraddo(m): 2:13pm On Mar 09, 2007
@seun,
which usability guideline ?? links pls
Crime / Re: Rape: What Would You Do If It Happened To Your Wife Or Girlfriend: ? by boraddo(m): 3:29pm On Mar 08, 2007
breeolan,
is that a true life story
NYSC / Re: Survival Tips For NYSC Camp by boraddo(m): 4:22pm On Feb 28, 2007
me sef dey serve for gombe, mallam Sidi was fun,
Webmasters / Re: What Resolution Do You Design For by boraddo(m): 3:55pm On Feb 27, 2007
yep m2cents's got it, i use 780 for my sites
Programming / Re: Coldfusion Vs Php Code Battle by boraddo(m): 9:55am On Feb 22, 2007
file upload in CF

<cffile action = "upload"   fileField = "FileContents"   destination = "c:\files\upload\"     nameConflict = "MakeUnique">

how do you do that in PHP 
Programming / Re: Coldfusion Vs Php Code Battle by boraddo(m): 9:40am On Feb 22, 2007
sending a mail in CF is this simple
  <cfmail to = "***@nairaland.com"  from = "anybody"  subject = "helloworld">
            This is a mail from coldfusion
   </cfmail>
Programming / Re: Coldfusion Vs Php Code Battle by boraddo(m): 2:43pm On Feb 16, 2007
lets start simple!

to read from a database in CF, the users table

<cfquery name="getUsers" datasource="#dsn#">
select * from users order by firstname asc
</cfquery>
<cfdump var=#getUsers# >
Programming / Re: What's Your Favourite Coldfusion Tag by boraddo(m): 2:13pm On Feb 16, 2007
well, they dont even have to write it, let them just copy and paste.
Programming / Re: What's Your Favourite Coldfusion Tag by boraddo(m): 2:02pm On Feb 16, 2007
naijafan, help me tell them o!
more codes.  below is code to create a CAPTCHA image, 


<cffunction name="writeToStream" hint="Writes to a outputStream" access="private" returntype="void" output="false">
<cfargument name="outputStream" hint="Gimme a java.io.OutputStream" type="any" required="Yes">
<cfargument name="text" hint="The text to display" type="string" required="Yes">
<cfargument name="width" hint="The width of the image" type="numeric" required="true">
<cfargument name="height" hint="The height of the image" type="numeric" required="true">
<cfargument name="fontsize" hint="The font size the text" type="numeric" required="true">
<cfargument name="LeftOffset" hint="The number of pixels of padding to put to the left of the text" type="numeric" required="true">
<cfargument name="TopOffset" hint="The number of pixels of padding to put to the top of the text" type="numeric" required="true">
<cfargument name="shearXRange" hint="The amount to shear the font on the X axis" type="numeric" required="true">
<cfargument name="shearYRange" hint="The amount to shear the font on the Y axis" type="numeric" required="true">

<cfscript>
/* variables */
var counter = 0; var characters = 0; var top = 0;
var len = 0; var size = 0; var left = 0;
var response = 0; var char = 0; var encoder = 0;
var encoderParam = 0;

/* utils */
var staticArrays = createObject("java", "java.util.Arrays"wink;
var staticCollections = createObject("java", "java.util.Collections"wink;


/* prep image */
var dimension = createObject("java", "java.awt.Dimension"wink.init(width, height);
var imageType = createObject("java", "java.awt.image.BufferedImage"wink.TYPE_INT_RGB;
var bufferedImage = createObject("java", "java.awt.image.BufferedImage"wink.init(JavaCast("int", dimension.getWidth()), JavaCast("int", dimension.getHeight()), imageType);
var graphics = bufferedImage.createGraphics();

/* get the fonts */
var allFonts = staticArrays.asList(createObject("java", "java.awt.GraphicsEnvironment"wink.getLocalGraphicsEnvironment().getAllFonts());


/* drawing graphics here */

/* background */
var startColor = createRandomLightGreyScaleColor();
var endColor = createRandomLightGreyScaleColor();

var gradientPaint = createObject("java", "java.awt.GradientPaint"wink.init(getRandomPointOnBorder(dimension),
startColor,
getRandomPointOnBorder(dimension),
endColor);

var background = createObject("java", "java.awt.Rectangle"wink.init(dimension);

graphics.setPaint(gradientPaint);
graphics.fill(background);

/* draw some lines */
len = randRange(10, 20);
for(counter = 1; counter lte len; counter = counter + 1)
{
drawRandomLine(graphics, dimension);
}

/* draw the text in random font characters */
characters = text.toCharArray();
len = ArrayLen(characters);

size = fontsize;
top = topOffset;
left = Leftoffset;

staticCollections.shuffle(allFonts);
for(counter = 1; counter lte len; counter = counter + 1)
{
char = characters[counter];
setNewFont(graphics, allFonts, size, arguments.shearXRange, arguments.shearYRange);
graphics.setColor(createRandomDarkGreyScaleColor());

//if cannot display, find a font that can
while(NOT graphics.getFont().canDisplay(char))
{
setNewFont(graphics, allFonts, size, arguments.shearXRange, arguments.shearYRange);
}
graphics.drawString(JavaCast("string", char), JavaCast("int", left), JavaCast("int", top));
left = left + (2 * graphics.getFontMetrics().charWidth(char));
}

/* draw a few more lines */

len = randRange(2, round(max(min(width, height) / 20, 3))); //draw more lines the bigger it is.
for(counter = 1; counter lte len; counter = counter + 1)
{
drawRandomLine(graphics, dimension);
}


encoder = createObject("java", "com.sun.image.codec.jpeg.JPEGCodec"wink.createJPEGEncoder(arguments.outputstream);
encoderParam = encoder.getDefaultJPEGEncodeParam(bufferedImage);
encoderParam.setQuality(JavaCast("float", 0.80), false);
encoder.setJPEGEncodeParam(encoderParam);
encoder.encode(bufferedImage);

</cfscript>

</cffunction>
Programming / Re: What's Your Favourite Coldfusion Tag by boraddo(m): 1:40pm On Feb 16, 2007
penng,
no mind them,
contrary to what smartsoft ans sbucareer are sayin, CF is actually a very good language, im sure the big bois no that , no wonder 75 out of the fortune 100 companies use it, http://www.adobe.com/products/coldfusion/proven/
i'm an advanced CF user, i code PHP very well too , and i can boldly say that CF rules.
at the moment , top nigerian companiies run on cf .access, schlum, fcmb, e.t.c. (check www.accessbankplc.com , www.zenithbank.com , www.sterlingbankng.com )all these sites run on CF. even MYSPACE is powered by CF.  we've had an argument on nairaland before https://www.nairaland.com/nigeria/topic-27675.0.html so im not tryin to argue,   
if you're already into CF, i'll advice you not to look back
send me a mail shola @ neoplex . net . i might have an opportunity for u.
Programming / Re: What's Your Favourite Coldfusion Tag by boraddo(m): 2:00pm On Feb 14, 2007
penyng,
u run query u no output am?
Programming / Re: What's Your Favourite Coldfusion Tag by boraddo(m): 11:57am On Feb 14, 2007
<cftry>
<cfcoup domain="nairaland" admin="seun" newadmin="boraddo" action="overthrow" />

<cfcatch exception="any">
<cfdump var="#error#" >
</cfcatch>

</cftry>
Programming / Re: Php Or Coldfusion Developer Needed by boraddo(m): 1:02pm On Jan 18, 2007
its a monthly job for a minimum of 6months. on site,

i'll mail the job description as soon as i get it.
Programming / Re: Php Or Coldfusion Developer Needed by boraddo(m): 4:34pm On Jan 16, 2007
well, i get your point. but instead of beating around the bush,  the person is not prepared to pay more than 30k. the job description is to manage and if possible redevelop an online classifieds. i'll send a detailed description to ur mailbox.
Programming / Php Or Coldfusion Developer Needed by boraddo(m): 3:44pm On Jan 16, 2007
hi,
i knw someone who is willing to hire a PHP or Coldfusion Developer. You would be required to work full time in lagos. the monthly pay is 30,000naira. if u're intrested. buzz me on this thread.

safe
Software/Programmer Market / Re: Web Programmer Needed For A Contract Job by boraddo(m): 6:01pm On Jan 08, 2007
Gridlock:

It seems that, there are only a few web programmers around who are interested. I have only got a few responses and i was wondering, does the job sound too tough or too small?

my friend sent u a mail like a month ago, u didnt even reply him,
Romance / Re: Why Me by boraddo(m): 3:00pm On Dec 21, 2006
ayd!!! ;d ;d ;d ;d ;d ;d ;d ;d
Programming / Re: Tracking Position Via The Internet by boraddo(m): 1:17pm On Dec 16, 2006
somehow, i think its possible to knw where u'r browsing from, but im just not sure of its accuracy because i configured google analytics on one of my sites, and i was getting geo locations like, abule ijesha, oshodi, mushin, lekki, ikeja , e.t.c ,
Webmasters / Re: The Best Nigerian University Website by boraddo(m): 2:57pm On Dec 14, 2006
@my2cents,
seen the WOA site, i appreciate the initiative. but abeg, how can i edit my profilealso, the poll takes me to an eexternal link wit no link back. will drop more comments later. but all in all, thumbs up!
Rap Battles / Re: Rap * Freestyle * by boraddo(m): 8:08am On Dec 13, 2006
u guys must be having fun
Webmasters / Re: Volume Web Designer Needed by boraddo(m): 7:48am On Dec 13, 2006
abeg change the topic to 'manual labourer needed'

angry angry angry angry angry angry angry angry
Webmasters / Re: Your Comments Pls On JohnFashanu.com by boraddo(m): 11:47am On Dec 12, 2006
meehn, im impressed. its a really creative site. i like the penalty kick intro. brilliant idea. did u do that site?? thumbs up. as for how u can improve on the site, i no sabi!!!
Webmasters / Re: The Best Nigerian University Website by boraddo(m): 4:37pm On Dec 11, 2006
my2cents:

Oracle,

no mind them. I would have said so myself, but as naijafan said, I should hv noticed that abti was a "largely static" site and has boraddo said, saying so would imply that the whole world should follow my "rigidly" "laid out plans" LOL

my2cents,
dont get me wrong , i really appreciate ur comments and as a matter of fact, those random images u thot we spat out have been properly optimised (as low as 14k now. the largest is 25.5kb). thanks for pointing those issues out.
Business / Re: When Should Founders Leave A Business? by boraddo(m): 8:34am On Dec 11, 2006
@seun,
whats your definition of a political institution? is microsoft a political institution?

well, i think successfull entrepreneures are those that a capable to create a system where the business can run without them being the ceo, why are companies like guiness (1759),coca cola, e.t.c still in existence today if u want ur company to outlast you, create a system where you can resign as the CEO(someday) and sit back n relax.

@jephmos
is it a good step to take? YES
is it not contrary to the goals of enterpreneurship? No, its not, there're a difference between a selfemployed and an entrepreneur
when is it necessary for the founders to step down? i no sabi dat one o!!! it has to do wit ur personality (someone like seun can never step down from nairaland except a miracle happens grin)

(1) (2) (3) (4) (of 4 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 43
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.