Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,194,304 members, 7,954,216 topics. Date: Friday, 20 September 2024 at 02:31 PM

Sbucareer's Posts

Nairaland Forum / Sbucareer's Profile / Sbucareer's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) (13) (14) (of 38 pages)

Programming / Re: Java Programming For Dummies by sbucareer(f): 11:27pm On Mar 14, 2007

Ready to program can run Java 5.0 But the one you will download above can only run 1.4 If you go to their website and download the latest Ready to Program you can configure it to run 5.0

Everyone have their take in J2EE and application development. Remember that there are two types of servlet container

1. Application Server (i.e. Sun J2EE)
2. Web Server (i.e. Tomcat)

Both are use for the same purpose but different outcome. If your development environment was tomcat I would strongly suggest Hibernate, Springframework, tapastry etc.

But, if you were developming on Application server IMO, I would say use EJB but many people would disagree with me. It is up to you to choose which one to use. But remember that EJB came out first. It is like Catholic and other churches, Catholic was first.

If you have problem from the above link let me know. Good luck. Gbenga where are you?
Programming / Re: Java Programming For Dummies by sbucareer(f): 11:01pm On Mar 14, 2007

Taysay, instead of sending it through the email you can download it from here. Strut is a framework for frontend application. It is used on web application side i.e. inside the HTML file.

It is a framework for web component but not necessary for EJB and persistent component. It is used on the presentationn layer like controls in .NET i.e.

Say I want to present a form in the web application I would do this



   <%@ taglib uri="/tags/struts-bean" prefix="bean" %>
   <%@ taglib uri="/tags/struts-html" prefix="html" %>

<html:html locale="true">

   <head>

   <title><bean:message key="welcome.title"/></title>

   <html:base/>

   </head>
<body bgcolor="white">

   <html:form action="/Address">

   <html:errors/>

   <table>

        <tr>

          <td align="center" colspan="2">
<font size="4">Please Enter the Following Details</font>
</tr>
<tr>
          <td align="right">
            Name
          </td>
          <td align="left">
            <html:text property="name" size="30" maxlength="30"/>
          </td>
        </tr>
        <tr>
          <td align="right">
            Address
          </td>
          <td align="left">
            <html:text property="address" size="30" maxlength="30"/>
          </td>
        </tr>

        <tr>
          <td align="right">
            E-mail address
          </td>
          <td align="left">
            <html:text property="emailAddress" size="30" maxlength="30"/>
          </td>
        </tr>
<tr>
          <td align="right">
            <html:submit>Save</html:submit>
          </td>
          <td align="left">
            <html:cancel>Cancel</html:cancel>
          </td>
        </tr>
  </table>
   </html:form>
   </body>
   </html:html>


You can see the Strut in action wthin the HTML page. This is just a simple strut. More advance frontend framwork are out that completely replace all known HTML tags like this one


<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>

<html>
<body>
   <f:view>
     <h:form>
       <h:panelGrid>
         <h:outputText value="Page 1 of page flow #{pageFlow.URI}"/>
         <h:commandLink action="goPage2" value="Go to page 2"/>
       </h:panelGrid>
     </h:form>
   </f:view>
</body>
</html>


These are powerful frontend compoenets for enterprize application development that adapt the modularity preamble.
Programming / Re: Java Programming For Dummies by sbucareer(f): 3:15pm On Mar 14, 2007

There is a software integration tool we used at university called Ready to Program. It is the easiest programming tools on earth. It does not require any configuration at all. But when you install it, it will install JSE 1.3 version. To use 1.4 version I will tell you how to do little config.

The thing is that Ready to Program is not free so I cannot point you where to download it. But I have a copy with me if you are interest send me and [email=valentine.obih@gmail.com?sbuject=Ready to program]email[/email] I will send you the readytoprogram.exe, I will zip it or jar it so that email program will not know what it is. Email program usually don't send exe as attachment.

Gbenga, let me know if you are interest. You can even use Ready to program for your EJB compilation. But you will need to set some jar to classpath
Programming / Re: Java Programming For Dummies by sbucareer(f): 2:22pm On Mar 14, 2007

You see to store a simple object to database using EJB is cumbersome and very untidy according to some experts. We were trying to store just

1. email
2. firstname
3. lastname
4. telephone number

These four objects have taken us the whole day in the office to accomplish, if you did not finished on time and the office hours is close and your carry your work to home the miss or girlfriend would not be pleased with you.

Some Java experts came up with the idea of Hibernate a persistent framwork that cuts off these rheotric and focus on solution the issue at hand i.e storing four objects to database.

To me Hibernate is even more cumbersome to EJB, if I showed you the XML configuration for Hibernate you'd run away from Java and park it in for life. See example

The main focus to me is learning the principle on how these things work not learning framework. There is no framwork I cannot work with, this is due to the fact I understand the principle.

There is another framework called Spring The Spring Framework is a layered Java/J2EE application framework based on code published in Expert One-on-One J2EE Design and Development. The Spring Framework provides a simple approach to development that does away with numerous properties files and helper classes littering the codebase


These framework claim to be simpler but for me they even pose more complex milestones and challenge very steep learning curve. To be honest I prefer EJB and would see no reason yet to migrate to another framework.

The only factor that can influence my decision is the project time frame and how big and complex it is.
Programming / Re: Java Programming For Dummies by sbucareer(f): 1:57pm On Mar 14, 2007

Let say you are working in a development team with Nigeria Global Com Plc. You are in J2EE department and your task is to produce a persistent solution for one of their enterprize application that allows visitors to save their email, firstname, lastname and telephone number so that the company can use this information for their strategic planning in correlation to customer service orientation.

What do you do now? Let say you company is still using J2EE server with EJB 3.0 or later. Your company have not yet integrated Hibernate to the infrastructure. You go off to your desk and fire your wonderful Pc or Mac or Unix what ever the platform is and log into your J2EE server by the help of any software integration tool like visual cafe or Netbeans.

First you draw a little diggram of a class call Customer and give him some attributes according to the requirement.

1. Email address
2. Firstname
3. Lastname
4. Telephone Number.

Here is your class in your software integration tool


package com.globalcom.bean.customer;

import java.io.*;

public class Customer{

 private String email;
 private String firstname;
 private String lastname;
 private String telephone;

 public Customer(){
   emal         = new String();
   firstname  = new String();
   lastname  = new String();
   telephone = new String();
 }

 public void setEmail(String email){this.email = email;}
 public void setFirstname(String firstname){this.firstname = firstnamel;}
 public void setLastname(String lastnamel){this.lastname = lastname;}
 public void setTelephone(String telephone){this.telephone = telephone;}

 public String getEmail(){return email;}
 public String getFirstname(){return firstnamel;}
 public String getLastname(){return lastname;}
 public String getTelephone(){return telephone;}
}//End Customer



This is your bean, in the web application or remote application you use this to pass objects to this bean from your web application.

<jsp:useBean id= "thisCustomer" class="com.globalcom.bean.customer" scope="Session">
<jsp:setProperty name="thisCustomer" property="*" value"*"/>

<form method=POST action="/customer">

.
.
.
.

</form>
 

This is your web.xml configuration file

<?XML version="1.0" encoding="UTF-8564"?>

<web-app>
<servlet>    
<servlet-class>com.gblobalcom.bean.customer.Customer</servlet-class>    
<servlet-name>customer</servlet-name>
</servlet>

<servlet-mapping>    
<servlet-name>customer</servlet-name>    
<url-pattern>/customer</url-pattern>
</servlet-mapping>
</web-app>


Now you have to create a DAO or another beans that will make all the necessary connection to database and store the Customer.java class from the web application.

This DAO (Data Access Object) will have SQL statements within it and you would need javax.sql.8 API's. Example




package com.globalcom.bean.DAO;

import javax.sql.*;

publuc class CustomerDAO{

 private Connection con;
 private PreparedStatement ps;
 private Statement stmt;

   try {
       // Load the JDBC driver
       String driverName = "org.gjt.mm.mysql.Driver"; // MySQL MM JDBC driver
       Class.forName(driverName);
   
       // Create a connection to the database
       String serverName = "localhost";
       String mydatabase = "mydatabase";
       String url = "jdbc:mysql://" + serverName +  "/" + mydatabase; // a JDBC url
       String username = "username";
       String password = "password";
       con = DriverManager.getConnection(url, username, password);
   } catch (ClassNotFoundException e) {
       // Could not find the database driver
   } catch (SQLException e) {
       // Could not connect to the database
   }

 public getConnection (){return con;}

 public void storeCustomer(String emal, String firstname, String lastname, String telephone){
       stmt = con.createStatement();

       // Prepare a statement to insert a record
       String sql = "INSERT INTO my_table (col_string) VALUES('a string')";
   
       // Execute the insert statement
       stmt.executeUpdate(sql);
   } catch (SQLException e) {
   }
}//End CustomerADO

   




Now if you where doing J2EE, you would need 3 classes namely

1. Customer.java
2. CustomerObject.java
3. CustomerBean.java

Look at EJB specifications to learn about these interfaces. Now the CustomerSession.java is where you ask the container (J2EE) to help persist and Customer.java object from the web application to database using the EJB framework like

1. EJBActivate
2. EJBPassivate
3. EJBCreate
4. EJBRemove
5. setSessionContext

package com.globalcom.ejb;

import java.util.*;
import javax.ejb.*;
import com.globalcom.bean.customer.*;

public class CustomerBean implements SessionBean {

  private String email;
  private String firstnme;
  private String lastname;
  private String telephone;

  private Vector customer;
  private Customer cs;

  public void ejbCreate(String email)  throws CreateException {}

 
  public void addCustomer(String email) {
     contents.addElement(email);
  }

  public void removeCustomer(String email) throws BookException {

     boolean result = contents.removeElement(email);
     if (result == false) {
        throw new CustomerException(email + "not in daatabase."wink;
     }
  }

  public Vector getCuntomer() {
     return contents;
  }

  public void ejbRemove() {}
  public void ejbActivate() {}
  public void ejbPassivate() {}
  public void setSessionContext(SessionContext sc) {}

}


Programming / Re: Java Programming For Dummies by sbucareer(f): 12:22pm On Mar 14, 2007

Taysay, you know that J2EE is a framework for developing enterprise application. J2EE frameworks unfortunately have many technologies like:

1. XML
2. JDBC
3. SOAP
4. RMI/RCP
5. HTML
6. JAVA
7. Database
8. etc.

Lets look at the database part. Traditional J2EE from Sun Microsystems uses JavaBean/EJB for accessing database objects. Many people have complained unfavourably to the use of EJB that it is a very difficult framework. Even if you search this forum you would see that many people do not like J2EE because of it complexities, particularly EJB.

EJB is the predecessor of JavaBean. JavaBean lack remote communication and cannot update remote object, even local objects JavaBean has to be in the same codebase before it can handle any updates. So to this ends EJB was coined by Sun and added to J2EE.

Over the years Java developer has always wanted ways to make their life easy and they came together and developed Hibernate.

Remember, Hibernate is a relation data wrapper, hibernate lets you develop persistent classes following common Java idiom - including association, inheritance, polymorphism, composition and the Java collections framework. But the emphasis is the use of XML to do the whole configuration rather to writing Java wrapper classes traditionally called DAO or beans.
Education / Re: What Is The Meaning Of 'Deja Vu'? by sbucareer(f): 2:52am On Mar 13, 2007

Have anyone seen the Matrix movie, staring Keanu Reeves, Laurence Fishburne and Carrie-Anne Moss directed by Andy Wachowski and Larry Wachowski.  The part one that was released in 1999.

Remember when the Agent (Hugo Weaving) trapped Keanu Reeves, Laurence Fishburne, Carrie-Anne Moss and others in Matrix, when their exit were blocked by another program. Carrie-Anne Moss (Trinity) saw a black cat passed her, then again after like 5 seconds she saw exactly the same cat passed again and she altered the word DEJA VU, Laurence Fishburne (Morpheus) asked her what she saw and she said, "I just saw the same cat passed me twice" and immediately Morpheus said DEJA VU is a glitch added in the program when someone changed something and immediaely they knew that they were in danger.

The point, she saw the same thing twice more importantly, the occurance were identical.

If you understand English language more than the Hollywood, na you sabi
Programming / Re: Java Programming For Dummies by sbucareer(f): 11:32am On Mar 10, 2007

If you look at the Servlet API it only has 22 interfaces and 16 classes and 2 exception classes totaling 40 API. You can learn all these API's in just 3 weeks. That is all to programming web application in Java.

That is why Java is such a challenging language. The template (Object) of the class is provided for you, the rest you do it yourself giving your application a life not just what someone thinks the movement of Object should be (PHP Gurus take note)

The sever is very easy to install and configure. No gimmicks no chaps. The server manages the life cycle of your application be it scope context, session context or application context. It also manages thread distribution and messages passing using CORBA technology.

When we define and configure the JDBC, you may never have to ever open MYSQL or find a client software to interact with your MYSQL like toad. We will use XML to write all our database query and pass it to JDBC and JDBC will forward it to MYSQL.

1 Like

Programming / Re: Java Programming For Dummies by sbucareer(f): 10:55am On Mar 10, 2007

gbengaijot, what did you learn from the previous thread? Your learning contribution was minimum and yet you have not yet configured your classpath and successfully compile and execute HelloWorld.java?

I see no good second thread would do any magic. If you are telling story and your audience are sleeping, what is the point? When you have the passion for programming and ICT/IT you would work hard and we would know, till then use the Seismic and voluminous google search to guide you to your quest.

If you seriously believe you want the second thread, go back to thread one and do all the work there and get HelloWorld to compile and run. I would rather want to teach or help teach web application development using a java server like Tomcat, JBoss and J2EE. Including MYSQL database for persistent storage and probably using Hibernate as our object wrapper and JSF/JSTL as a framework for our frontend and JavaScript as our GUI validation technique.

Why I have not started this sort of thread is that we have prerequisite i.e.

1. Programming Java for the last 6 months and know most of the servlet API and Java 2 API

2. Know how to install and configure Tomcat as a local server.

3. Know how to install MYSQL and configure it. You must be familiar with JDBC for our Tomcat interaction with MYSQL

4. You MUST know programming logic and some algorithm.

5. You MUST also have common sense and the ability to think and improvise.

You see Gbenga, before you reach this stage in you life (which is reachable) you MUST be serious not just something you want to do because everyone else is doing it and they say people make lots of money.
Education / Re: What Is The Meaning Of 'Deja Vu'? by sbucareer(f): 10:06am On Mar 10, 2007

It is called repetition of events. When something happen twice to you particularly when you cannot explain it. I cannot understand why someone would choose to cheat on their boy/girlfriend. If you are done in a relation, just end it and move on. They could be a chance of reconciliation later on in life. But cheating is evil and in my good book of life no f*#^k&% reconciliation, that is pure evil.
Webmasters / Re: Best Open Source Forum by sbucareer(f): 6:08pm On Mar 09, 2007

Just in case you are Java advocate and want a solution for BB (Black Board) written in java try, JavaBB
Computers / Re: Pc-pc Sharing by sbucareer(f): 5:53pm On Mar 09, 2007
Family / How Do You Stop Child(ren) Sucking Their Finger by sbucareer(f): 10:33am On Mar 09, 2007

I have been wondering if there is a medical or traditional ways to stop children sucking their hands?
Programming / Re: Undergraduate Computer Project Topic by sbucareer(f): 10:59am On Mar 07, 2007

Abstract
The article links the idea of video rental software to the requirement of borrowing, selling, keeping and maintaining inventory and the restrictions and the avoidance of illegal copying and doubled booking against a registered member. In this sense, it is web/standalone software that will provide a platform for such a business and might even be used as a catalog browsing in relation to video rental. The approach to providing deliverables would encompass many technologies including programming, web technologies and relational database.


This is my own thought, you can modify it to suit your requirements. Although it covers all the areas of Video Rental project. It might also be open for criticism. Consult with your supervisor on a regular basis to rectify your abstract to his/her liking.
Software/Programmer Market / Re: Where Can I Get Authoware Version 6.5 ? by sbucareer(f): 8:25pm On Mar 04, 2007

Download the original authoware from macromedia and get the key from the internet

Make sure you have a powerful antivirus with latest definition. Some web site content can be harmful to your computer
Computers / Re: It Gurus: Solution Needed Here Plz by sbucareer(f): 10:53am On Mar 01, 2007

Apology accepted @ mukadas. Mukadas, you work at the computer village, how much is a brand new computer with AMD/Pentium 4 from 2GHz with RAM of 512/1GB and hard drive of 60/80GB with a flat screen of 17inch?

Also can you tell me how much is a network printer of at least 600 x 600 dots-per-inch - up to 2400 Image Quality and could print up to 35 A4 paper per minute?

Finally, photocopier with both black and white and color. All these are brand new or nearly to new.
Computers / Re: It Gurus: Solution Needed Here Plz by sbucareer(f): 3:01am On Mar 01, 2007

There is no illegal behavior or comments logged above. If anybody is acting illegal, it should be the ISP. Their job is to forward and retrieve user request from the internet. The content of the internet packets is none of there business. If the Federal Republic of Nigeria has passed new legislature to mandate ISP to block all access to waecdirect.org, then we would be acting illegal.

You should look at your contract paper with your ISP to see if waecdirect.org was a site that is blacklisted. Till then don't compile your opinion to mean that someone post or comments is illegal, I personally think that it is an insult and need an apology @ mukadas
Computers / Re: It Gurus: Solution Needed Here Plz by sbucareer(f): 10:09pm On Feb 28, 2007

If google is not blocked from your ISP use their free proxy server to translate (english to english) pages to google cache and direct your ISP to those cached pages, work fine as long as google is not blocked. i.e

http://www.google.com/translate?langpair=en|en&u=www.forbiddensite.com
(www.forbiddensite.com stands for the URL you need to go to, )

So in our case it would be [url=http://www.google.com/translate?langpair=en|en&u=www.waecdirect.org]http://www.google.com/translate?langpair=en|en&u=www.waecdirect.org[/url]


Good luck and let me know how you manage to sort it out.
Computers / Re: It Gurus: Solution Needed Here Plz by sbucareer(f): 9:52pm On Feb 28, 2007

There are several ways we can deal with the issue. First your ISP is mad and if I were you I would be considering leaving them, what a chick!

Yes, in my book of success everything in life has a solution to it apart from death (Maybe one day we will find ways to cheating death)

The case is that your ISP has blocked you down through the use of Internet protocol filters, which has been a common tactic used by administrator to secure protected resources on a LAN.

Solutions

1. There are web site Anonymizer that fetches the blocked site page from their server and display it to you. As far as the service provider is concerned you are viewing a page from Anonymizer and not the block site.

2. Use a URL redirection service like tiny.com (Just put url at the end of tiny, the site would not allow me to put it)  or Snipurl. These domain forward services sometimes work as the address in the the url box remain the redirect url and do not change to the banned site

3.  To access the blocked Web site. type the IP number instead of the URL in the address bar. But if the ISP software maps the IP address to the web server (reverse DNS lookup), the website will remain blocked. To get the IP of a site type ping -a www.waecdirect.org in the command line interface

4. Use Google Mobile Search. Google display the normal HTML pages as if you are viewing them on a mobile phone. During the translation, Google removes the javascript content and CSS scripts and breaks a longer page into several smaller pages


5. Enter the URL in Google or Yahoo search and then visit the cached copy of the page. To retrieve the page more quickly from Google's cache, click "Cached Text Only" while the browser is loading the page from cache.

6. A recent Oreilly story on accessing blocked websites suggested an approach to access restricted web sites using Google language tools service as a proxy server. Basically, you have Google translate your page from English to English (or whatever language you like). Assuming that Google isn’t blacklisted in your ISP or cafe, you should be able to access any site with this method.  [url=http://www.google.com/translate?langpair=en|en&u=www.waecdirect.org]Visit waecdirect.org site via Google Proxy[/url]

7. Anonymous Surfing Surf the internet via a proxy server. A proxy server (or proxies) is a normal computer that hides the identity of computers on its network from the Internet. Which means that only the address of the proxy server is visible to the world and not of those computers that are using it to browse the Internet. Just visit the proxy server website with your Web browser and enter a URL (website address) in the form provided.

How to setup a proxy server

1. Browser

Tell me if any of these work for you. Tell me if you want us to bring down his server so that him too will not have customers, wicked man.
Education / Re: Project Topic Material "automated Video Club" Using Visual Basic 6 by sbucareer(f): 9:14pm On Feb 28, 2007

@parosky

And what do you think I am talking of? Why not copy my name and put it in your exam paper!  angry

There is no such archive or materials like Automated Video Club" in visual basic 6, unless someone give him his work and that is plagiarism. I am merely pointing out to him how he could go about doing this project in what ever language he prefer
Programming / Re: Ccna Certification by sbucareer(f): 11:43pm On Feb 27, 2007

Note I do not have this electronic material anymore. My Pc caught virus as a consequence, it was formated hence lost all the files including the CCNA ecopy.

However, I do have the hard copy but it is about 1058 pages very unpractical to copy and send it to you lot. If you know any technology that would allow me to send it apart from photocopying and scanning please let me know I will do so
Business / Re: The New Naira Coins And Polymer Notes by sbucareer(f): 11:38pm On Feb 27, 2007

What happened to our kobo? Why did the CBN governors abolish the powerful kobo?
Computers / Re: It Gurus: Solution Needed Here Plz by sbucareer(f): 7:15pm On Feb 27, 2007

If your office has a network administrator or an administrated networked check with someone incharge of the network to see if http://www.waecdirect.org/ is not included in the firewall.

Second, check from your browser to see that the site is not listed in the excepted list of the explorer. Since you have tried 15 Pc and all of them are not routing packets to http://www.waecdirect.org/, then talk to your Administrator.

If you do not have an administrator, check the router security config to make sure that some IP's or domain names are not excepted.

You can find your router IP address my typing ipconfig from command line interface and copy the gateway IP, which is your router IP.

Type it in the browser i.e http://<IP> without the less and greater sign. Login to your router interface by providing username and passwd. If you do not know this, it is usually attached at the back of your router. If it is not there try this

Username: admin
passwd: admin/router/password

Once you are in, see the security section and select allow all packets. If it did not work let me know I would tell you more diagnosis we can do.
Education / Re: Project Topic Material "automated Video Club" Using Visual Basic 6 by sbucareer(f): 6:53pm On Feb 27, 2007

If you need an academic site for your project visit Bids
Education / Re: Project Topic Material "automated Video Club" Using Visual Basic 6 by sbucareer(f): 6:23pm On Feb 27, 2007

I understand your project idea completely. During my undergraduate, lots of final year students did something like that. The main focus on your project elicitation would be geared towards web database.

The objective or preamble would have to cover Web technologies and how it can be used within a business domain like video rental shop. Focus on a small scale project, don't go and hope to design a Blockbuster.

Although, you project is primarily about rental, acquisition, sales, inventory and finance. Limit your project scope to achievable milestones.

To start the technical elicitation chapter, start with:

1. Platform i.e Window, Solaris, Unix or Mac (Talk about cost, which will depend on the platform you choose)
2. System requirements (Fat client or Thin client)
3. Software requirement (i.e Dreamweaver, MyYSQL, PHP etc)
4. Testing (Black box or White box)
5. Deployment (Web server or Standalone)
6. Agreement with client (If you are aiming for first class upper division, Base your paper as a case study for a company or client and make them sign the agreement and put it in your appendix)

Finally, create a sub section in your introduction chapter and call it Project Motivation here you would tell the reader what motivated you to doing this project and why you think it will be a good area to conduct this research basing your recommendations to Nigerian market.

Good luck, I will paste a content page of my provisional final year project maybe that would help you joggle your brain.

Programming / Re: Tracking Position Via The Internet by sbucareer(f): 7:37pm On Feb 23, 2007

Your question is a good one and would require some constructive argument. A frivolous and perhaps a naive mind would say there is no solution to it.

Although, this might tend to be conclusive but from a comparative position, I would say that Africa and other developing world could pose a serious security issues to the West if one wishes to go through that way. Saying that, the public IP is alway traceable to the ISP and the subnet mask, hence the Cafe.

Nowever, the NAT issues would only pose a problem to the cafe that do not use CCTV (Closed Circuit TeleVision). Remember your router, all it does route information with headers such as MAC address that must be unique on the internet, IP address which must be unique on the internet and session time.

When you send a packet to the internet your ISP keeps an inventory of your MAC and IP by the help of big router like Cisco routers. It is so in the event that your packet got lost, the last hop or router that routed the packet can resend without contacting the original host to retransmit.

Therefore, it might no be all that safe to hide behind a NAT. You may say it is an internet cafe, what if they have CCTV?
Or while on the PC you may have  logged into a personal site like ebay, bank, or any ecommerce that have your real name while committing offense, the offensive packet will log time and so does your ecommerce.

An investigator would pull out 30 minutes logs originating from the same MAC and IP and nail you.
Computers / Re: Please Who Knows Where I Can Buy Mp3 Player In Uyo(akwa Ibom) by sbucareer(f): 12:20pm On Feb 19, 2007

Send me western union after selecting your choice of ipod from amazon, as soon as I receive the money which is equivalent to your choice in Amazon + £10 posting and package I will send it to your prefer address in Uyo.

Remember, the more memory [hard drive space] the more expensive it is.
Software/Programmer Market / Re: Wap: Jsp, Wml, Wmlscrip, Xhtml Developer Needed by sbucareer(f): 12:04pm On Feb 19, 2007

To do what? Help you develop nuclear weapon software? Tell us about the job and benefits and if it is for short or long time and the likely outcome of retention.

CV is an important personal information of someone. I/We cannot just send you my CV without knowing more about the role and salary and most importantly the company that will use it or seeking to use it.

And your post is unclear, J2ME has all the technologies you mentioned or are you hoping to use .NET framework with many languages i.e. c#, ASP, J#, VB. although you said jsp I will be assuming J2ME.

What plaftform are you developing for UNIX, MS, Mac, Solaris or is it for portable device like PDA or Bluetooth device?
Programming / Re: What's Your Favourite Coldfusion Tag by sbucareer(f): 8:16pm On Feb 17, 2007

In short, what is the Road Map of CF and Adobe Flex 2? Later on someone will come up with the idea the Ajax and Ruby on Rails are the language for the future, excuse me?

I am still waiting for a language that will supersede Java and .NET. Till then all the rest are just followers.

Just don't believe me, look at their market capitalization and the P/e and stock indexes. This is how you measure success.
Programming / Re: What's Your Favourite Coldfusion Tag by sbucareer(f): 8:04pm On Feb 17, 2007

I think I would need to employ you to prove read my English. Just drop me an email with your salary range. XML is not a programming language or a script language it is a [url=http://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=deskbar&q=define%3A+XML]Markup language[/url]

It is used on the web to exchange information between systems. Vendor has used it full potential as information exchange to exchanging objectS between applications. Hence, today XML is used as a configuration script or to couple systems together.

I do not want to know your ambitions with CF and how Abode is creating more platform for Flex technology or if fortune 100 companies are using CF. These are trading platforms, the need for data exchange is great and if using CF to run their entire system is achievable, is up to them.

I, as a responsible developer will not encourage any body to couple their system (Web Server) to CF whether data exchange is their priority or not.

If my logic about CF annoys you, prove to us that CF has come of age, don't paste snazzy codes and expect me to be accommodating. That is how the Europeans trick us into colonization (Oka nma na anya).

I don't like CF period, and will never do. When such a time comes when CF has come of age and start to hold global conferences to promote their platform then I can attend to one of their seminars and ask them tough questions in relation to web server, legacy system and system migration and termination, and where CF stand on these?.

Like I said good luck to you and more CF to your elbow. Regarding my English language, I am seriously looking for a teacher, send me your [email=valentine.obih@gmail.com?sbject=English teacher]CV[/email] No heart feelings, just don't like CF. You have the same right to like CF.
Computers / Re: Windows Vista by sbucareer(f): 7:05pm On Feb 17, 2007

@Neoteny
Thanks for your comment. Although, [url=http://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=deskbar&q=define%3A+dual+core]dual core[/url] and dual processor are comparatively the same. Dual core could be seen as one chip on a circuit board while dual processor could be seen as a two chips on a circuit board.

Furthermore, I personally do not see any correlation between Mac and Vista. For me MS Vista is a direct challenge to 64-bits chips architecture like Dual core 2 E series and better gaming with directX 10.

But it be nice  to hear a supporting story with evidence that Vista copied some features of Mac

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) (13) (14) (of 38 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. 118
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.