Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,153,265 members, 7,818,919 topics. Date: Monday, 06 May 2024 at 08:03 AM

Mechtronics's Posts

Nairaland Forum / Mechtronics's Profile / Mechtronics's Posts

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

Romance / Re: Who Is The Bride In This Picture And Why?(photo) by mechtronics(m): 2:19pm On Mar 26, 2018
It no 3 her cloth is different from others grin

1 Like

Romance / Re: Party Places Near Rex Hotel by mechtronics(m): 3:38am On Mar 24, 2018
whitegirl21:
Hi guys!

Any cool clubs, small bars or whatever for meeting people and guys near Rex Hotel on Coker Rd in Lagos?

I've booked a room there for the first week when I get to Nigeria and hope I can find someone to hook up with!

wouldn't mind hooking up with u just pm me let chat
Programming / Re: anyone going For Pycon Usa Cleveland ? by mechtronics(m): 1:36am On Mar 08, 2018
I apply for fund and it as been granted bt lost at some point pls contact me @09096460769 I need some clarity
Programming / Re: Changing The Prostitution Industry Through IT by mechtronics(m): 12:33am On Mar 05, 2018
M a backend web developer with experience with php laravel and python django contact with 09096460769
Programming / Re: Changing The Prostitution Industry Through IT by mechtronics(m): 12:33am On Mar 05, 2018
M a backend web developer with experience with php laravel and python django
Programming / Re: Vanhack Talent Accelerator Africa (feb 2018) Apply Now! by mechtronics(m): 12:23pm On Feb 05, 2018
the link is incomplete
Programming / Re: Free Embedded Systems Design Seminar In Lagos by mechtronics(m): 5:44pm On Jan 30, 2018
09096460769

1 Like

Programming / Re: Job Vacancy by mechtronics(m): 7:43pm On Jan 04, 2018
09096460769
Software/Programmer Market / Re: $7 per hour go developer job by mechtronics(m): 10:54pm On Dec 31, 2017
+2349096460769
Software/Programmer Market / Re: Looking To Team Up And Build A Startup Company With Experienced Developers. by mechtronics(m): 12:10pm On Dec 28, 2017
09096460769 python,php
Programming / Re: Tech Trends + Jobs Whatsapp Group by mechtronics(m): 2:18pm On Dec 27, 2017
09096460769
Programming / Re: My Journey Into AI by mechtronics(m): 12:11pm On Nov 20, 2017
bearnana:
I was reading up on Satoshi's Bitcoin Algorithm and I stumbled on Quantum Computing which led me to AI. So I have decided to tow the line of AI. My aim is to contribute to Quantum Computing. So I created a github repo which I will try to contribute to everyday until I feel I have grasped AI and ready for Quantum Computing.

I know there are some devs that want to jump into AI but are a little confused so if you want some guidance from a newbie, I'd be updating the readme everyday before I go to bed. I hope there is another psycho out there like me who is also adventurous.

FYI, I started officially yesterday. I wrote a Tic Tac Toe game in PHP and codeigniter. So if you want to catch up, that was my task yesterday and I'm done today, so I'll drop what I did today tomorrow.

Github link : https://github.com/Bear-nana/AI-Ignorance




i will like to contribute to your repo and ilike the passion you have about AI
Programming / Re: Revolutionizing The World With Artificial Intelligence by mechtronics(m): 12:31pm On Nov 15, 2017
yea you are right that a great idea grin
Programming / Re: Matlab To Python Code Conversion by mechtronics(m): 11:37pm On Nov 04, 2017
bubu91:
Hi,
I am looking for someone to help me convert Matlab codes to Python or can create a code to do the conversion. I am willing to pay up to 30k for the job. Pm me for more details


contact me @ 09096460769
Programming / Re: Making A Bot In Python And Django by mechtronics(m): 5:55pm On Oct 18, 2017
tonight or tomorrow for the next one
Programming / Re: Making A Bot In Python And Django by mechtronics(m): 5:54pm On Oct 18, 2017
need your response and let see how far you are following if having any error dnt hesitate to tell
Programming / Re: Making A Bot In Python And Django by mechtronics(m): 5:53pm On Oct 18, 2017
the next tutorial is working with aiml AIML (Artificial Intelligence Markup Language) is an XML-compliant language that's easy to learn, and makes it possible for you to begin customizing an Alicebot


so we will stimulate with aiml before implementing with django

create a a folder what ever name you want to give create a py file
and a with extension .xml file and .aiml
Programming / Re: Making A Bot In Python And Django by mechtronics(m): 5:49pm On Oct 18, 2017
for template these is where we will be storing our html page



inside the mybot folder create a folder name static

then inside static we create a folder to store our css
js and image

also pls download bootstrap and w3 css

Programming / Re: Making A Bot In Python And Django by mechtronics(m): 5:44pm On Oct 18, 2017
then with the directory of the bot type python manage.py runserver on your cmd
it will serve a page showing it work blaaaaa
that means you good to go to get more of the installation if you are a beginner
go to the trend created by olami django blog for more


--------------------------------------------------------------------------------------------
let configure our settings.py
first register your app


then put these at the top
from os.path import join,abspath,dirname
root = lambda *dirs: join(abspath(BASE_DIR), *dirs)




then configure your templates
with the second picture




then next static file and media





then next let create a folder or directory inside our project folder called bot
folder[templates]

Programming / Re: Making A Bot In Python And Django by mechtronics(m): 5:32pm On Oct 18, 2017
then we type on cd(change directory ) + the path where the folder was created
cd bot

when done again type django-admin.py startapp mybot

these will generate inside the bot folder
a mybot folder containing
1 views
2 apps
3 tests
4 models
5 admin
Programming / Re: Making A Bot In Python And Django by mechtronics(m): 5:13pm On Oct 18, 2017
what we will be doing is a bot that will use speech recognition and google map for location and also will scrap data from wikipedia

requirement
-django
-jquery
- aiml


first of all install the requirement
linux- use sudo pip install django aiml
then download the jquery from it website www.jquery.com
on windows
python -m pip install django aiml

so after the installations
go to your command line cmd or bash if on linux


django-admin.py startproject bot

it will generate a folder structure containing


manage.py and another bot folder which will contain

1 settings
2 urls
3 wsgi
Programming / Re: Making A Bot In Python And Django by mechtronics(m): 4:54pm On Oct 18, 2017
LordeCalifornia:

Sorry for derailing. Please what does this mean in python language?






from sys import argv






sys.argv is a list in Python, which contains the command-line arguments passed to the script

so If you are gonna work with command line arguments, you probably want to
use sys.argv
for example

import sys

print sys.argv

it will bring the directory of your py file
Programming / Making A Bot In Python And Django by mechtronics(m): 10:26am On Oct 18, 2017
i will be doing a tutorial on bot making with django bt before i start i need atleast 20 turn up grin
Programming / Mistake Beginner Programmer Make by mechtronics(m): 12:06pm On Sep 15, 2017
#Notice am not really good at writing but if any misuse word is found pls dnt crusify me rather endure .
programming is jungle it entails so many tree(language) with there own pros and cron ,well i was once a Beginner, and am still learning
Along the way beginner always making these 4 mistake which i will elaborate on.

1.Always be in heist to build a world class software
2.jumping from one programming language to another without knowing deeply the first chosen language
3.jumping from one book to another
4.sacrifing Time

1.Always be in heist to build a world class software: to become a steve job is not a day job,never be in hesit as a beginner to develop software because you might get stuck around,and you might not get your project done just learn the basic master it very well ,even if you want to design a idea note it down then continue your journey in the honey land ,will tell you programming is easy but not.am sure along the the line if you learn well you will get your stuff done without getting stuck ,dnt get me wrong like am saying nobody do has bug.But with out proper learning u aint gonna make things out.
2.jumping from one programming language to another without knowing deeply the first chosen language:As a beginer pls learn any language you are practising to the deep of it dnt start jumping from one java to python just because you have know
If a==b:
output this;
class some something.
Master that one,and one thing the way a problem is solved in one languageto the order is the same but sematic and syntax maybe different.so learn one and understand it very well then you can explore other programming languages.
Dont be a jack of all trade but master of none.

3.jumping from one book to another:before you jump from one book to another my bro finish first .

4.Making Sacrifice:Be ready to face the thicks and torn of the jungle ,sacrifice your sleep,time money,and your unspend time,cuz who you want to be tomorrow will be determined by the way you spend your today and how much sacrifice you make today.and alway try to learn from existing code the way the person achieve it and also learn to improve it.so along the way you master and you cool with a language try to solve problems,on stackoverflow,nairaland an more.

so i rest my case

3 Likes 1 Share

Programming / Re: Please Web Programmers Help Me On This by mechtronics(m): 1:46am On Jul 16, 2017
what happen is that the w3 school offline page package u are using in not complete and unlink so try to download a full one
Programming / Re: Good Programmer Urgently Needed! by mechtronics(m): 11:32pm On Mar 08, 2017
Ping me at 09096460769
Romance / Re: Male Bestie Needed by mechtronics(m): 10:31pm On Mar 07, 2017
mhizesther:
I need a male friend.....someone I can talk to,he must be intelligent,attractive nd very funny....
What up me at 09096460769 I did love to be yur bestie

(1) (2) (3) (of 3 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. 42
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.