₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,072 members, 8,420,164 topics. Date: Thursday, 04 June 2026 at 12:38 PM

Toggle theme

Godofbrowser's Posts

Nairaland ForumGodofbrowser's ProfileGodofbrowser's Posts

1 2 3 (of 3 pages)

Tech JobsRe: In Need Of A Programmer To Code A Forum by godofbrowser(m): 11:11am On Oct 13, 2016
Appland:
I need an advance programmer to help me create a forum if possible from the scratch.
Features of the forum
1) it will have several sections/thread , just like normal forums have.
2) it will have a mode that can easily pulled a thread to front view.
3) will be different from nairaland
4) it will be mobile responsive
5)pictures and videos can be easily be uploaded into it
6)other features and innovative idea will be accepted.
I was looking at worriorforum and I love the interface.
But I don't want a prototype of another person's work but a unique/standout forum.
It's a piece of cake. ajemeke@gmail.com if interested in my services. I'm a laravel dev
ProgrammingRe: Help With Laravel 'JWT' Authentication by godofbrowser(m): 2:56am On Oct 10, 2016
Every Malam with him kettle jor undecided tongue
WebmastersRe: How Can I Remove Read More And Excerpt In Homepage Wp by godofbrowser(m): 9:23am On Sep 10, 2016
Sorry, I forgot u said removing from homepage alone. In that case, instead of commenting the function, just wrap it inside this if statement "if(! Is_home()) { //put the excerpt function in here //}"
WebmastersRe: How Can I Remove Read More And Excerpt In Homepage Wp by godofbrowser(m): 9:17am On Sep 10, 2016
Prospecmarley:
how can i do it so that only the post title and feature image will show in home
First of all, are you a programmer?
If yes, then open your website template files. Look for the template-part named "content-post.php". Look for a function named "templatename_excerpt()" for example if your template name is naija, look for "naija_excerpt()". And comment that function. In WordPress naming convention, that's always the name of the function either returning the excerpt and read-more, or echoing it.
WebmastersRe: How Can I Remove Read More And Excerpt In Homepage Wp by godofbrowser(m): 12:24am On Sep 10, 2016
Your template generates all that. You can Edith the way read-more would be displayed quickly if u have knowledge of php. Just edit the "functions.php" file
WebmastersRe: My Top 5 Recommended Wordpress Plugins For New Bloggers by godofbrowser(m): 12:21am On Sep 10, 2016
Sorry, I think Bounce Rate actually means "the rate at which visitors leave your site after viewing just the page that landed them there"
ProgrammingRe: Jquery Plugin For Nigeria States And Corresponding Lga by godofbrowser(m): 8:28pm On Aug 27, 2016
Well done @guru01
ProgrammingRe: Jquery Plugin For Nigeria States And Corresponding Lga by godofbrowser(m): 4:40pm On Aug 24, 2016
Git Repo?
ProgrammingRe: Need User Interface Developer by godofbrowser(m): 4:35pm On Aug 24, 2016
07065957074 holla at me
WebmastersRe: Teach Yourself Java In 24 Hours - From Alphikka Technologies by godofbrowser(m): 4:14pm On Aug 24, 2016
Almighty Java in 24hrs?? Funny
WebmastersRe: Be A Web Developer In 60 Days Naijatutors by godofbrowser(m): 4:09pm On Aug 24, 2016
Really? 60days
ProgrammingSee As This Programmer Murdered His Fellow Programmer... Chai! by godofbrowser(op): 10:20am On Aug 17, 2016
See as this programmer murdered his fellow programmer... Chai!

ProgrammingRe: Am Finally Done With My Nairaland Android(unofficial) App. by godofbrowser(m): 1:31pm On Aug 14, 2016
DanielTheGeek:
Good one, you've shown the advantage of laravel over codeigniter. But still different tools work for different people.
True! Different road leads to a river.
ProgrammingRe: Who Wants To Attend A Hackathon? by godofbrowser(m): 2:27pm On Aug 12, 2016
At age 5, I was very good in electrical engineering. At 8, mechanical engineering. At 10, I learnt java,c++,c#, pyton,JavaScript, ruby,php, and built a game called "hitman".. Yes! I'm the man. At age 12, I was in my final year in USC and my cgpa was slightly above 5point ( the school dey owe me points). After graduation, I realised it was a dream.
ProgrammingRe: Am Finally Done With My Nairaland Android(unofficial) App. by godofbrowser(m): 12:36pm On Aug 12, 2016
Laravel


namespace App\Http\Controllers;
use Illuminate\Support\Facades\Request;
use Illuminate\Support\Facades\Redirect;
use Illuminate\Support\Facades\Auth;
use App\Http\Requests;

class front extends Controller
{
public function authenticate() {
if (Auth::attempt(['email' => Request::get('email'), 'password' => Request::get('password')])) {
return redirect()->intended('succes_page');
} else {
return view('login', array('title' => 'Login to blah blah blah', 'description' => '', 'page' => 'login'));
}
}
}
WebmastersRe: SQL, Javascript And Asp Gurus, Fall Out! by godofbrowser(m): 12:09pm On Aug 12, 2016
VANILLA JAVASCRIPT

Copy the code below and save it in a [dot]html file and see exactly how it works.
I believe this will give you a good understanding of the process.


change the selected item to see an example<br>
<select name="vehicles" onchange="display_brands(brands = ['camry','bmw','volvo','benz']);">
<option value="#" label="default" selected> select</option>
<option value="cars" label="cars">cars</option>
<option value="motocycle" label="motocycle">motocycle</option>
<option value="tricycle" label="tricycle">tricycle</option>
</select>

<select name="brands" id="brands" onchange="what you choose to do here depends on you">
<option value="#" label="default" selected> select</option>
</select>

<br>
your database returns an array of brands from the chosen category and then pass it as an argument to the
display brands function.
now assume $brands holds the array, you can parse it through JSON
or whatever you are convenient with

<script>
function display_brands(input) {

var brands = input; //<== brands becomes an array object...then;
document.getElementById('brands').innerHTML = '';
var i;

//Note: for php this would have been a foreach loop
for(i=0; i< brands.length; i++)
{
var output = document.createElement("option"wink;
output.value = brands[i];
output.label = brands[i];
var t = document.createTextNode(brands[i]);
output.appendChild(t);
document.getElementById('brands').appendChild(output);
}
}
</script>
WebmastersRe: Advice Needed: Is Whogohost.com The Best Nigeria Web Hosting Provider by godofbrowser(m): 2:29am On Aug 12, 2016
I started using whogohost after buhari stopped DCC. Up till now, I can't access SSH and their support said they don't grant SSH access. Too bad.
WebmastersRe: If Whogohosst Do You Strong Thing, Come In Lets Team Up by godofbrowser(m): 2:22am On Aug 12, 2016
With whogohost,i can't access ssh
ProgrammingRe: Javascript, Asp And SQL Gurus, Fall Outt! by godofbrowser(m):
epospiky:
Hello there!
I am a web developer - just started learning though. I am presently creating an information system using SQL database. I have built the application in Visual Studio using Asp.net. I have entered some data in my database and I want some of the options or data to come up automatically in a field when I select a particular option from another field. For example, when I run my program and I select car as an option in the VEHICLE field, the BRAND field should be able to generate automatically from the database and allow the user to choose. If I select MOTORCYCLE as the vehicle then different brands of the motorcycle should be able to automatically generate in the BRAND field. There is already a relationship between the two fields and dependency as well. I was meant to understand that it can be achieved using JavaScript but I don't know how. Please anyone with an idea should help me out.
Vanilla javascript



change the selected item to see an example<br>
<select name="vehicles" onchange="display_brands(brands = ['camry','bmw','volvo','benz']);">
<option value="#" label="default" selected> select</option>
<option value="cars" label="cars">cars</option>
<option value="motocycle" label="motocycle">motocycle</option>
<option value="tricycle" label="tricycle">tricycle</option>
</select>

<select name="brands" id="brands" onchange="what you choose to do here depends on you">
<option value="#" label="default" selected> select</option>
</select>

<br>
your database returns an array of brands from the chosen category and then pass it as an argument to the
display brands function.
now assume $brands holds the array, you can parse it through JSON
or whatever you are convenient with

<script>
function display_brands(input) {

var brands = input; //<== brands becomes an array object...then;
document.getElementById('brands').innerHTML = '';
var i;

//Note: for php this would have been a foreach loop
for(i=0; i< brands.length; i++)
{
var output = document.createElement("option"wink;
output.value = brands[i];
output.label = brands[i];
var t = document.createTextNode(brands[i]);
output.appendChild(t);
document.getElementById('brands').appendChild(output);
}
}
</script>

WebmastersRe: Get Free S.S.L Certificate On Any of Our Plan With Beta Host Limited by godofbrowser(m): 6:20pm On Aug 10, 2016
Hi, do you give ssh access?
WebmastersRe: Web Designer For A Simple 1 Page Website And Blog by godofbrowser(m): 5:31pm On Aug 10, 2016
mrsage:
hello,

theres a need for a quick web design job. a simple one page website design job. the site will have 1 page and a blog. domain name and hosting already settled.

if you can deliver, kindly leave a comment.
Let me handle this project... Trust me, I know exactly what u need.
07065957074
WebmastersRe: How Do I Create A Landing Page.need Help by godofbrowser(m): 5:14pm On Aug 10, 2016
If you wanna learn how to write a story, start by reading and copying an existing story.

my point: read source codes and understand them together with the UI
WebmastersRe: I Need A Website Fast by godofbrowser(m): 5:11pm On Aug 10, 2016
What kinda website do u need? a landing page or official website? contact me via ajemeke@gmail.com let's begin by defining what will best suit your business.
ProgrammingRe: I Want To Learn Programming. Which Language Should I Start With? by godofbrowser(m): 7:29pm On Aug 09, 2016
TrueHeart365:
thanks a lot bro. I tried dragging the pic to my browser to get a link for it. It worked

I'm grateful
You are welcome.
But that's not how it's done during development though. You should put your files in one main folder and use relative URL instead. That "file://" or "http://" in most cases are referred to as absolute URL .
ProgrammingRe: I Want To Learn Programming. Which Language Should I Start With? by godofbrowser(m): 12:51pm On Aug 06, 2016
TrueHeart365:
@godofbrowser. thanks gor ur response bro. i really appreciate them.

i tried as you explained and the file path i got is shown below.

the image is still broken. i'm showing yoy in case i still made a mistake.

abeg no mind the disturbance. na rookie i begrin.
are u running a local server? you can as well screenshot your browser including the address bar of the page u requested.
ProgrammingRe: I Want To Learn Programming. Which Language Should I Start With? by godofbrowser(m): 10:36am On Aug 06, 2016
TrueHeart365:
i copied it to an image folder on my desktop.

please can yoy explain further. thanks.
open the folder which contains the iiimage.Drag the image and drop it in ur browser.
Then copy the image address on your browser's address bar and paste it into the src="".

if this works, then the problem is the path specified.
ProgrammingRe: Framework Or A CMS For An E-commerce Website? by godofbrowser(op): 1:51am On Aug 03, 2016
Thanks for your candid opinion.
Tech JobsRe: Please Design A Landing Page Like This.. I"ll Pay $15, You Must Not Use The Same by godofbrowser(m):
virus05:
Hi, if u can do it i"ll send $15 to your bank accout directly.at rate of 342.. thanks


altawhite. 0m

remove the space and add c to the 0m change the 0 to o.. i dont want nairaland bot wahala. thats if it wouuldnt block me sef
First of all, the page is not responsive. That must be noted.
Secondly, if you are to clone the exact landing page, then you can achieve that in a day.
On the other hand, if you are to customize it to fit into your company's brand, then you should consider getting a graphics designer to design it like a flyer. Then give the raw ( .cdr ) file to a web designer to make a webpage from it and give it the required features it needs to go live on the net.

Where you are to spend more on a web developer is the securepay part of it.

Cos as far as i'm concerned, the bigger part of the job lies in the hands of a graphics designer. That page looks like a flyer with some text positioned carefully at different points.
ProgrammingFramework Or A CMS For An E-commerce Website? by godofbrowser(op): 3:26pm On Aug 01, 2016
I hail thee Programmers.

If i am to build an E-commerce website for a client who is ready to take whatever method i use in getting the job done. Assuming i'm comfortable working with a php framework like LARAVEL and a content management system like MAGENTO.

Which would you prefer/suggest i go with? and why?
Considering security, development speed, cost, maintenance,performance, etc.

Your opinion will go a long way so please don't ignore if you've got useful info to share.
Thanks.
ProgrammingRe: Can I Claim Expert In Html,javascript,css & Php After 1yrs Of Constant Learning? by godofbrowser(m): 9:09pm On Jul 31, 2016
dhtml18:
@op, this dude has helped you to translate my code to makosa using the Shun sa waya compiler!
lol.. waiting for the remix sef.
ProgrammingRe: Can I Claim Expert In Html,javascript,css & Php After 1yrs Of Constant Learning? by godofbrowser(m): 6:33pm On Jul 31, 2016
KvnqPrezo:
Wetin b dis??

lol
It's Awilo logomba's new track... the chorus says

"Chai " 1000xtimes

1 2 3 (of 3 pages)