₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,109 members, 8,420,380 topics. Date: Thursday, 04 June 2026 at 06:10 PM

Toggle theme

Olyjosh's Posts

Nairaland ForumOlyjosh's ProfileOlyjosh's Posts

1 2 3 4 5 6 7 (of 7 pages)

WebmastersRe: I Want To Build A Site That Will Send Confirmation Sms To Mobile Numbers by olyjosh(m): 11:59pm On Nov 20, 2012
You can contact me cause I ve done project like this before where user get code on their phone to confirm such user (authentication) and to avoid fraudulent transaction. Also using integrated alert system to create sms alert web applications.

Contact me on 08061662025
Tech JobsMobile Phone Application For Your Bulk Sms Site by olyjosh(op): 12:45am On Nov 20, 2012
Are you having a bulksms website . Here is a mobile phone application written in java that can enable your customer to perform various sms operations with ease
-Sending bulk or customize sms with ease
-Loading sms voucher
-Transferring of unit to another user
-Buying sms via Banks
-Checking balance
and lot more...
http://www.linuxsms.com/downloads/linuxsms.jar
This application support most sms api and even sms site developed with Joomla components. However, it support the popular Afrisoft sms reseller components.
Get this type of app developed for your sms website at a cheaper rate.
For more info, contact LInuxsms
08061662025
Download and test it now on LInuxsms website
http://www.linuxsms.com/downloads/linuxsms.jar
08061662025
WebmastersMobile Phone Application For Your Bulk Sms Site by olyjosh(op): 8:58pm On Nov 19, 2012
Are you having a bulksms website . Here is a mobile phone application written in java that can enable your customer to perform various sms operations with ease
-Sending bulk or customize sms with ease
-Loading sms voucher
-Transferring of unit to another user
-Buying sms via Banks
-Checking balance

and lot more...

http://www.linuxsms.com/downloads/linuxsms.jar

This application support most sms api and even sms site developed with Joomla components. However, it support the popular Afrisoft sms reseller components.
Get this type of app developed for your sms website at a cheaper rate.
For more info, contact LInuxsms
08061662025

Download and test it now on LInuxsms website
http://www.linuxsms.com/downloads/linuxsms.jar

08061662025
Science/TechnologyRe: I Refused To Take My Cash From ATM And It Took It Back...... + Picture by olyjosh(m): 5:00pm On Nov 18, 2012
Funny enough dat you ve just got urself another project with your bank this week. I 'm hearing this for the first time.
Goodluck
ProgrammingRe: An Idea To Be Developed by olyjosh(m): 5:24pm On Nov 09, 2012
What's your Idea
WebmastersRe: Joomla,drupal Or Wordpress Which Do I Use!!! by olyjosh(m): 2:42pm On Nov 09, 2012
Joomla lo le se. Joomla
WebmastersRe: Joomla,drupal Or Wordpress Which Do I Use!!! by olyjosh(m): 2:40pm On Nov 09, 2012
Abeg can anyone give me book or link on how to customise drupal.
ProgrammingRe: Pls Programmers In PHP And MYSQL Help Out On This by olyjosh(m): 2:12pm On Nov 09, 2012
php is a server side scripting language. It perform it operation on the server, hence can not perform such operation without loading the browser.

The solution to this problem is to use java script events onBlur or onChange to handle the event that will be carried out immeditely the mouse is no more on the form element (e.g textField) then pass the answer to a variable that you will now send via GET or POST request to php processing script on ur web-server. such that the variable is the anwser that is been passed to ur database.

Take a look at what @ChelaTheGreat is having for you
ProgrammingRe: Any JDBC Guru In The House?? by olyjosh(m): 1:47pm On Nov 09, 2012
saemmanuel: Button code for printing Jframe using netbean
Which one come be JDBC(Java Database Connectivity) guru own for printing jFrame
ProgrammingRe: Any JDBC Guru In The House?? by olyjosh(m): 1:43pm On Nov 09, 2012
No mind this forum for you. Those places wey u see wink na just closing bracket ) dey
ProgrammingRe: Any JDBC Guru In The House?? by olyjosh(m): 1:37pm On Nov 09, 2012
Study your graphic api very well

remember its an event handling process too.

Try and run this, study it to know how to manipulate it. It even good that you are using IDE

[b]

import java.awt.*;
import java.awt.event.*;
import java.awt.font.*;
import java.awt.geom.*;
import java.awt.print.*;
import java.util.*;
import javax.print.*;
import javax.print.attribute.*;
import javax.swing.*;

/**
This program demonstrates how to print 2D graphics
*/
public class PrintTest
{
public static void main(String[] args)
{
JFrame frame = new PrintTestFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}

/**
This frame shows a panel with 2D graphics and buttons
to print the graphics and to set up the page format.
*/
class PrintTestFrame extends JFrame
{
public PrintTestFrame()
{
setTitle("PrintTest"wink;
setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);

canvas = new PrintPanel();
add(canvas, BorderLayout.CENTER);

attributes = new HashPrintRequestAttributeSet();

JPanel buttonPanel = new JPanel();
JButton printButton = new JButton("Print"wink;
buttonPanel.add(printButton);
printButton.addActionListener(new
ActionListener()
{
public void actionPerformed(ActionEvent event)
{
try
{
PrinterJob job = PrinterJob.getPrinterJob();
job.setPrintable(canvas);
if (job.printDialog(attributes))
job.print(attributes);
}
catch (PrinterException e)
{
JOptionPane.showMessageDialog(PrintTestFrame.this, e);
}
}
});

JButton pageSetupButton = new JButton("Page setup"wink;
buttonPanel.add(pageSetupButton);
pageSetupButton.addActionListener(new
ActionListener()
{
public void actionPerformed(ActionEvent event)
{
PrinterJob job = PrinterJob.getPrinterJob();
job.pageDialog(attributes);
}
});

add(buttonPanel, BorderLayout.NORTH);
}

private PrintPanel canvas;
private PrintRequestAttributeSet attributes;

private static final int DEFAULT_WIDTH = 300;
private static final int DEFAULT_HEIGHT = 300;
}

/**
This panel generates a 2D graphics image for screen display
and printing.
*/
class PrintPanel extends JPanel implements Printable
{
public void paintComponent(Graphics g)
{
super.paintComponent(g);
Graphics2D g2 = (Graphics2D) g;
drawPage(g2);
}

public int print(Graphics g, PageFormat pf, int page)
throws PrinterException
{
if (page >= 1) return Printable.NO_SUCH_PAGE;
Graphics2D g2 = (Graphics2D) g;
g2.translate(pf.getImageableX(), pf.getImageableY());
g2.draw(new Rectangle2D.Double(0, 0, pf.getImageableWidth(), pf.getImageableHeight()));

drawPage(g2);
return Printable.PAGE_EXISTS;
}

/**
This method draws the page both on the screen and the
printer graphics context.
@param g2 the graphics context
*/
public void drawPage(Graphics2D g2)
{
FontRenderContext context = g2.getFontRenderContext();
Font f = new Font("Serif", Font.PLAIN, 72);
GeneralPath clipShape = new GeneralPath();
TextLayout layout = new TextLayout("Its olyjosh", f, context);
AffineTransform transform = AffineTransform.getTranslateInstance(0, 72);
Shape outline = layout.getOutline(transform);
clipShape.append(outline, false);

g2.draw(clipShape);
g2.clip(clipShape);

final int NLINES =50;
Point2D p = new Point2D.Double(0, 0);
for (int i = 0; i < NLINES; i++)
{
double x = (2 * getWidth() * i) / NLINES;
double y = (2 * getHeight() * (NLINES - 1 - i))
/ NLINES;
Point2D q = new Point2D.Double(x, y);
g2.draw(new Line2D.Double(p, q));
}
}
}


[/b]


No tell any body say I still am for you ni...lol
WebmastersRe: Joomla Help Please by olyjosh(op): 1:23pm On Nov 09, 2012
Thank you guys. I latter got it sha. @joomlaman - Not the way u ve thought coz if u alter the password via cpanel(u mean quering the database to set username and password!!), it wont reflect in any of those extensions dat do need to communicate with the database. This will cos mysql error "access denied ..."
You can always get the database info of your Joomla site from one of the Joomla file tagged "configurations.php". That's where all extensions used in joomla get their database info that they will use in communicating with the database.
Music/RadioRe: Tonto Dike - Hi & Itz Ova by olyjosh(m): 5:04pm On Nov 08, 2012
Seriously! Last night she walk down my street singing that this my very last time that i will sing(Naija i no go do aam again!!!). But sha, Niger republic is offering her 50kobo deal on this!!! The is not yet a waste!
WebmastersJoomla Help Please by olyjosh(op): 4:54pm On Nov 08, 2012
Please what is goin to be d default mysql username and password if you install Joomla online via fantastico. I ve tried to use "root" as username and "" as password. Please i need this to make my app connect to the database.
Thanks
ProgrammingRe: I Want To Develop Mobile Applications by olyjosh(m): 4:42pm On Nov 05, 2012
You can always go for JavaME. Also there is something like JavaME polish. This will allow you to be able to build Java applications for phones.
You can use NetbeanIDE as your IDE.
ProgrammingRe: [Help Request] Teach Me How To Design Databases. by olyjosh(m): 3:49pm On Nov 05, 2012
Well, some of these post are interesting but not technical
ProgrammingRe: [Help Request] Teach Me How To Design Databases. by olyjosh(m): 3:46pm On Nov 05, 2012
mkwayisi: @olyjosh:
structure of tables of data grouped together called relational database
No way, man. A relational database is a database organized based on the relational model.

STANDARD QUERY LANGUAGE?
Did you mean to say Structured Query Language?

learn MYSQL or ORACLE, since Access among other are going out of use.
Are you serious? Access is by far the number one *desktop* database system.

For low level database go for Microsoft Access or Excel
I always thought Excel is a spreadsheet application. Never knew it was a DBMS too.

Call me if you need more tips-08061662025
Expect mine too wink
You sabi die but over sabi come dey worry you sha... I love those...
Thanks
ProgrammingRe: Help A Frustrated Programmer With Power Problem by olyjosh(m): 2:26pm On Oct 29, 2012
Call it external battery.
It is been sold at most Laptop shops. You can always get one depending on where u are to find a store where you can get one.
Price ranges in my place base on quality but from N12000 upward sha and you can always get one that can last you for as long as 6,8, 10 and even 16 hours after been fully charged.

Usher says "if u wana scream Yeeeeeeeeeee, screeeeeeeeeeeeaaaaaaaaaaaaaaaaaaaam!"
Get to work, cos programming is good.
ProgrammingRe: Troubleshooting A String In Javame by olyjosh(op): 6:17pm On Oct 28, 2012
No body could do this for me. Thanks to all those that view this, I latter have to write function/method that can handle dat
ProgrammingRe: [Help Request] Teach Me How To Design Databases. by olyjosh(m): 3:24pm On Oct 25, 2012
There is nothing like database design like they meant- but database is been design, model as a structure of tables of data grouped together called relational database.(They are being achieved in form of tables)

I think you don't have to argue with those guys since you said you want to learn it cos they are both speaking from practical/programming perspective.

Anyway, What type of database did want to learn?
Did you know anything about STANDARD QUERY LANGUAGE?(basis of most database querying languages)
What did you intend to use it for?

Though I don't know what you wanted to use it for but I will advice you to learn MYSQL or ORACLE, since Access among other are going out of use.

For low level database go for Microsoft Access or Excel (lol).

Knowlegde is power.

Call me if you need more tips-08061662025
No midnight call please...
ProgrammingRe: How Much Will You Charge A Microfinance Bank In A Town For Banking Application by olyjosh(op): 3:05pm On Oct 25, 2012
@lordZOUGA - thank u for telling them that would have fail if it is a Jamb question. None of you both answer the question instead you begged it out. I didn't tell you that I need someone or organization that do that for me. Let me remind you that I'm also a Java SE,EE and ME programer and a Web-developer.

Thanks fellow
WebmastersJoomla Help Please by olyjosh(op): 1:19pm On Oct 24, 2012
I m getting this error whenever I tried to install component on Joomla.

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 1769626 bytes) in C:\wamp\www\Joomla_1.5.26-Stable-Full_Package\libraries\joomla\filesystem\archive\zip.php on line 284

How can I trouble shoot this on Joomla 1.5.26, however the extension(component, zip) is meant for Joomla 1.5
ProgrammingTroubleshooting A String In Javame by olyjosh(op): 1:02pm On Oct 24, 2012
Please does any one knows how to do string replacement in JavaME.
The only method that i found in JavaMe's String class is

replace(char arg, char arg);

Which cannot take on string as argument.
Please I need answer to this as soon as possiblle
ProgrammingRe: Java SE, EE & Scala Developers - Lets Connect And Share Knowledge by olyjosh(m): 12:50pm On Oct 24, 2012
Hey hey,
How many Java SE, EE applications have you written and in what area.
I will like this post to be interactive cos I like this your post.

I m a Java SE,EE and partly ME programmer.
ProgrammingHow Much Will You Charge A Microfinance Bank In A Town For Banking Application by olyjosh(op): 12:41pm On Oct 24, 2012
How much will you charge a micro-finance bank in a town for developing a Banking Application.
Such bank application will be able to perform such simple banking operations like depositing cash, withdrawing, checking balance,registering new customer etc. It must be a database application like you might have thought off anyway.

What time frame will you give them to finish such job. Note that this micro-finance bank is located in town or village.

Need ur comments please. You can as well specify other function that you think they will want that I ve not mentioned...
WebmastersRe: Make My Site Url Display "index.php?action=about-us by olyjosh(m): 10:41pm On Jan 14, 2012
Those site that u wit such url are usually developd usin open source but Ʊ can also do dis if u ar into codin aspect of web design

To know more, u can give me a call on 08061662025
WebmastersRe: We Designer In Abuja by olyjosh(m): 10:18pm On Jan 14, 2012
U can call me on 08061662025 or olyjoshone@live.com
WebmastersWhich Open Source? by olyjosh(op): 7:43pm On Jan 14, 2012
Hi everybody


Which open source did u think is the best for dating site
Web MarketRe: How To Pay For Hosting by olyjosh(m): 4:59am On Jan 13, 2012
So far, so good I ve being using nigeria web hosting n I ve never been let down 4 a minute. I sugest syskay or smartwebng or utiware, so u can pay them via bank lyk zenith,gtb among other. However utiware do accept online payment via ATM(verve or master)
WebmastersRe: Website Designer Required by olyjosh(m): 11:50pm On Jan 04, 2012
Distance isn't a prob. U can always give d job to ppl away and they will do it better.
U can call me if u re-evaluate ur thought abt location

08061662025
WebmastersRe: A Good And Creative Web Developer/ Programmer Needed by olyjosh(m): 6:25pm On Jan 02, 2012
I finished my turki I come c dis post. Anyway, I'm interestd n my fone is 08061662025. I go mail u self

1 2 3 4 5 6 7 (of 7 pages)