₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,160 members, 8,420,611 topics. Date: Friday, 05 June 2026 at 07:03 AM

Toggle theme

Lojik's Posts

Nairaland ForumLojik's ProfileLojik's Posts

1 2 3 4 5 6 7 8 ... 14 15 16 17 18 19 20 21 22 (of 23 pages)

Science/TechnologyRe: Please Help by lojik(m): 9:51pm On Jul 14, 2009
you need a 2way sms gateway software, a bluetooth mobile phone(or cable), a short code number from MTN, Glo, e.t.c and your own software.
Mail me: ceo@afrisoft.org

I can provide all the above except for the short code number which you'll obtain urself unless u want to use normal 080, gsm number.
We just finished setting up our own at Afrisoft Interactive: http://www.afrisoft.org
ProgrammingRe: Convert This To Php by lojik(m): 5:56pm On Jul 14, 2009
for a small clientside like this, i'd have used Flash + MDM Zinc (Rapid Application Development Platform for flash).

MDM Script has the command :
mdm.FileSystem.loadFileUnicode("file_path"wink;

that makes it possible for me to load a file in unicode mode. I'd use zinc because i have Zinc license. Ur prog. language shd have something like this.

to read a file like this in php, i'd use: file_get_contents('image_path');

I guess dot net guys in d forum can help u out. u can also upload to a remote folder directly without sending to php file (use FTP. In MDM Script i'd use:
myFTP.sendFile("C:\\myLocalFile.txt", "myRemoteFile.txt"wink;
Art, Graphics & VideoGraphic Design Contract! by lojik(op): 11:46pm On Jul 13, 2009
I need a graphic artist to design cd package for a new software.

see details here:
http://afrisoft.org/ng/index.php/component/content/article/45-bible-plus/64-graphic-contract

Interested artists must apply b4 friday 17th July through email.
ComputersRe: How Tough Is It To Write A Computer Programme? by lojik(m): 9:36pm On Jul 13, 2009
*dhtml:
I develop softwares as well as websites, and use lots of languages that i have gathered over time. For beginners, i believe an object oriented
language like C++ or java is cool to start.
@poster: I think u shd just take that advice. i started with procedural and crossing to OOP was like crossing river Niger barefooted. Starting OOP is a good idea. I suggest C++ or Java too.
ProgrammingRe: Convert This To Php by lojik(m): 9:26pm On Jul 13, 2009
<?php
//receive file data sent to page
$binary_content=$_REQUEST['binary_Jpeg_or_other_Unicode_File_From_Client_App'];

$fp = fopen('data.jpg', 'w');
fwrite($fp, $binary_content);
fclose($fp);

// 'data.jpg' is now a jpeg picture!
?>

for a better understanding, visit http://us2.php.net/manual/en/function.fwrite.php . i've never used this code but i know it should work if your client application sends the file as a binary file to the php page on your server.
WebmastersRe: How Can I Send Unlimited Mails/hr With Php Mail() Function by lojik(op): 8:47am On Jul 13, 2009
Would u recommend any reliable host? I dont wanna use my epileptic host no more.
ProgrammingRe: What Kind Of Retail Stand-alone Software Will Sell In Nigeria? by lojik(op): 8:40am On Jul 13, 2009
I already like the cybercafe timer idea.
Any more suggestions pls?
ProgrammingRe: Convert This To Php by lojik(m): 8:34am On Jul 13, 2009
if u can, code a clientside that listens or watches the folder and uploads the files when they are present. if u cant, mail me: lekeojikutu@yahoo.com for further assistance.
ComputersRe: Converting Printscreen Shots Into Jpeg. by lojik(m): 9:27pm On Jul 10, 2009
Since you have office installed, GOT TO

1. Start->Programs->Microsoft office->Microsoft Office Tools->Microsoft Office Picture manager.
2. Take your screenshot with "prnt scrn" key
3. Click Edit menu-> Paste
3b. Use Picture Menu->crop to cut the picture
4. Click to select the picture and go to File Menu-> Export
5. On the export panel on the right hand side, choose your settings (Under "Export with this format", choose jpeg)
6. Click "ok".

You could also do it with powerpoint, corel draw, photoshop e.t.c. it depends on which of them you have installed.
ComputersRe: Converting Printscreen Shots Into Jpeg. by lojik(m): 9:24pm On Jul 10, 2009
Since you have office installed, GOT TO

1. Start->Programs->Microsoft office->Microsoft Office Tools->Microsoft Office Picture manager.
2. Take your screenshot with "prnt scrn" key
3. Click Edit menu-> Paste
4. Click to select the picture and go to File Menu-> Export
5. On the export panel on the right hand side, choose your settings (Under "Export with this format", choose jpeg)
6. Click "ok".
ComputersRe: Computer Maths Puzzle by lojik(m): 9:02pm On Jul 10, 2009
[flash=300,101]http://www.afrisoft.org/ng/nofiles/calculator.swf[/flash]

I helped u put a simple calculator above so that people wont need a pen and paper to solve.

Attached is an updated version of your file that contains my signature.


[color=#FFFFFF]**Hint: if u dont jknow the answer and u want to open the excel file, use excel password breaker freeware. Dont say i told u**[/color]
WebmastersRe: Isp by lojik(m): 8:09pm On Jul 10, 2009
Englishhuh

I think he is asking for the best Internet Service Provider in nigeria today because he needs to go into cafe business.

popoolakm better express himself better and clearer. write english abeg.
ProgrammingRe: Code To Upload Image by lojik(m): 10:24pm On Jul 09, 2009
<!-- html form to upload your image -->
<form method="post" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="1000000" />
<input type="file" name="uploaded_image" id="uploaded_image" />
</form>



//example PHP code to receive and save picture from d above form:
$fileName = $_FILES['uploaded_image']['name'];
$tmpName = $_FILES['uploaded_image']['tmp_name'];
$pixDir = "./the_folder_you_will_be_saving_pictures_to/";

// get the file extension first
$ext = substr(strrchr($fileName, "."wink, 1);

// and now we have to specify the path and filename to save as
$filePath = $pixDir . $_POST["member_id"] . '.' . $ext; //member id is ur unique identifier for each member

//move the file to the new folder //move the file to the new folder
$result = move_uploaded_file($tmpName, $filePath);
if(!$result) die("could not save picture"wink;

//set the path to the file in you database so you can use it to fetch the pix later
$query = "UPDATE memberTable SET image_path = '".$filePath ."' WHERE member_id = ".$_POST["member_id"];
$result = mysql_query($query);
if(!$result) die("could not save picture"wink;


The codes above were modified for you from Alumnia opensource portal available at http://www.afrisoft.org for free. it was taken from the edit.php file in the alumnia root directory. you can download Alumnia free to see the entire picture upload/display code.
ProgrammingRe: Convert This To Php by lojik(m): 10:01pm On Jul 09, 2009
Is the file resident on a client machine or on the system running the php server?
is the file going to be changing per time, per client system or what?

you might need to supply more info to get more info.
WebmastersRe: What Cool Joomla Site(s) Have You Seen? by lojik(m): 9:47pm On Jul 09, 2009
I'm working on developing joomla modules for my site and i'll make it gpl wen i'm thru. I'll post it here when i make it gpl.
I'm starting with a flash gallery and a job portal.
WebmastersRe: In Need Of Something Very Urgent by lojik(m): 9:37pm On Jul 09, 2009
Where does yaho o yaho o start if not scavenging for other people's info and sending un-solicited emails and sms? if the company needs it for sca.mm.ing and you ignorantly supply it, would u not  be guilty of spoiling Nigeria's rebranding campaign when people start getting sca.m sms/email that they've won fake gl.o prom.o?

if u r so desperate for it, y not approach MTN or Zain officially and see 4 urself if u are on a leg.itimate deal with ur so called "COMPANY". What makes u different from sca.mm.ers since u would do anything to other people to get money.

Wikipedia: Integrity may be seen as the quality of having a sense of honesty and truthfulness in regard to the motivations for one's actions.

Get a dictionary and look up integrity perhaps you wont supply other peoples' private information lest the "COMPANY" sca.ms your mama.
WebmastersRe: In Need Of Something Very Urgent by lojik(m): 9:36pm On Jul 09, 2009
<.?php
include("dbconnector.php"wink;

$sql="SELECT scammer_id FROM idiots WHERE surname = 'pig' AND IQ<0 ORDER BY stupidity, criminality"

$result = mysql_query($sql);

$row = mysql_fetch_array($result);

echo '<font size="76" cpolor="#FF0000">'.$row['scammer_id'].'</font>';
?.>

[size=76pt]jmslimx[/size]
WebmastersRe: What Cool Joomla Site(s) Have You Seen? by lojik(m): 8:57pm On Jul 09, 2009
I started using joomla 1.5 on my site (about 1 & 1/2 months ago). I had developed it with flash (flash based for over a year b4) i changed.
You can check it out. http://www.afrisoft.org

Though i tried to reduce the evidently joomla features a little.
WebmastersRe: Available Vacancy At Brands & It Firm by lojik(m): 8:53pm On Jul 09, 2009
Y not swish? or koolmoves? or even anim studio?
Since u are not particular about actionscript, there r other great packages for 2D animation aside from flash. R other flash based 2d animators who don't use flash invited?
WebmastersRe: Tis Quiz Time! ;d by lojik(m): 8:47pm On Jul 09, 2009
body { background-color: #FF0000}
body.pageb { background-color: #FFFF00 }
body.pagec { background-color: #0000FF }


on page A, use <body >
on page B, use <body class="pageb">
on page C, use <body class="pagec">

I pray i'm right**shivering**
ProgrammingRe: Convert This To Php by lojik(m): 9:43am On Jul 09, 2009
if the file is uploaded from a form with filefield name=userfile and submitted to php page, use this code:

//upload file
if(isset($_POST['upload']))
{
$fileName = $_FILES['userfile']['name']; //get original filename
$tmpName = $_FILES['userfile']['tmp_name']; //get the name used to store the file on server temporarily

$result = move_uploaded_file($tmpName, $destinationdir.'/'.$fileName);
if (!$result) {
echo "Error uploading file";
exit;
}
}

Otherwise, if uyou are just moving files from one path to the other on ur server
if ( !copy($target, $destination) ) {
echo "failed to copy $target, <br>\n";
}
WebmastersRe: In Need Of Something Very Urgent by lojik(m): 9:20am On Jul 09, 2009
<.?.php
if ($Spamming || $scamming)
{
$situation = verify($suspect);
echo $situation;
}

function verify($person)
{
global $request, $activity;
     if($request == "suspicious" && $activity=="Other people's confidential info"wink
     {
         return "Someone is about to violate some organisation's privacy policy!";
     } else if($person == "Government entity"wink{
        return "Legitimate activity";
     }
}

?.>
WebmastersRe: Tis Quiz Time! ;d by lojik(m): 9:05am On Jul 09, 2009
Whats in it for me if i attempt d quiz?

Right or wrong, whats in it for me?**na 9ja we dey so**
WebmastersRe: In The Beginning ! Read ! by lojik(m): 10:04am On Jul 08, 2009
roflmao
WebmastersRe: Help Please. On Portal by lojik(m): 8:33pm On Jul 07, 2009
@poster
You shd at least show us ur table(s) or tell us what exactly what u dont know how to do. That way, u can get specific solution for you problems.
If u got ur project database up already and you are able to query and display results, the guide from webdezzi should be what u need.
CareerRe: Should I Quit My Programming Job? (Can't Cope) by lojik(m): 6:12pm On Jul 07, 2009
[size=16pt]Q.U.I.T.![/size]
Mechanics cant learn by collecting people's automobile to mess up,
Carpenters don't learn with king's furniture
I'm a programmer and programming is not learnt with peoples important projects.

More-over, the skill u need to program an application must be gotten before you even start the application at all.
This is not textbook stuff man.
Go learn programming before you start getting jobs to do.

It is either you are a coder or u are not! No shortcut to programming logic
ComputersRe: Help Needed Urgently by lojik(m): 7:54pm On Jul 05, 2009
Change your screen resolution to 1024 X 768 or 1280 X 800 depending on ur display card. if u dont know how to do it, use google to your advantage.
ProgrammingWhat Kind Of Retail Stand-alone Software Will Sell In Nigeria? by lojik(op): 4:29pm On Jul 05, 2009
Not web based applications, not server or network solutions but software that can be sold in stores and can be easily installed by the end user (example: encyclopedia, antivirus e.t.c) .

If u have an idea, i'd like to know cos i think it will be a good way to kick start retailing of local softwares.

I think business directories will sell on CD because the paperback versions are too costly (Naccimma Biz Dir.: 12000+) and the web versions are inaccessible when you need them because of epileptic internet connection.
WebmastersRe: How Can I Send Unlimited Mails/hr With Php Mail() Function by lojik(op): 4:15pm On Jul 05, 2009
Thats the solution i've actually been running from but since it seems the only way out, i'll just have to follow it.
Thanks guys.
WebmastersRe: 9ja Applications On www.hotscripts.com by lojik(m): 3:34pm On Jul 05, 2009
Another one of my scripts just got listing approval on hotscripts today: http://www.hotscripts.com/listing/phplocker-php-obfuscator/
ComputersRe: Ubuntu 9.04 Better Than 8.10? by lojik(m): 12:20pm On Jul 04, 2009
Jaunty is way better except for display driver problems. A lot of VGA drivers have been blacklisted and therefore wont make compiz fusion and all its gizmos work. i have a CD repository of jaunty jackalope software that i burnt with 'APT ON CD'. Its free if u want it. just contact me on info@afrisoft.org

1 2 3 4 5 6 7 8 ... 14 15 16 17 18 19 20 21 22 (of 23 pages)