Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,151,310 members, 7,811,918 topics. Date: Sunday, 28 April 2024 at 11:38 PM

Gbolly1151's Posts

Nairaland Forum / Gbolly1151's Profile / Gbolly1151's Posts

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

Programming / Re: My First Web App Project by gbolly1151(m): 8:21am On Feb 08, 2020
makavele:


Nope , the dyno only sleeps after 30 mins idle time and you are allotted about 700 hours total uptime per month. You can keep the dyno alive and even make it 1000 hours

Really? Thanks for the insight
Programming / Re: My First Web App Project by gbolly1151(m): 7:27pm On Feb 07, 2020
makavele:


Not necessary !

I can remember very well that free plan do expire
Programming / Re: Featured Five Web Apps Developed By Moat Academy's Participants In 2019 by gbolly1151(m): 6:53pm On Feb 06, 2020
Where are you located?
Programming / Re: My First Web App Project by gbolly1151(m): 6:45pm On Feb 06, 2020
hardebayho:
It looks awesome bro. Since it's a template, I'm assuming it's supposed to be one page, right? If it's a complete website, add some dynamic content or a couple of pages, maybe even some sections (like post section, about, contact me, and all those stuff). Great stuff though, the design looks fluid.
Thanks bro
Programming / Re: My First Web App Project by gbolly1151(m): 6:44pm On Feb 06, 2020
soleexx:
How do u lunch this project and is it a free one

I used heruko and it is free just for testing but to deploy real project you need to buy hosting plan
Programming / Re: Django And Flask Users, Your Help Is Needed Please by gbolly1151(m): 6:40pm On Feb 06, 2020
Learn the basic as other as said,master very well how to use

1.function
2.class
3.All data type
4.module and package
5.decorator
Programming / Re: My First Web App Project by gbolly1151(m): 7:29pm On Feb 04, 2020
dragnet:
Looks good but this can also be achieved using HTML and css and some JS or even just bootstrap.
In summary, using django for this is an overkill.

Yea...django for the backend
Programming / Re: My First Web App Project by gbolly1151(m): 8:08am On Feb 04, 2020
Cakephp:
Its great. You are good to go
Thanks bro... What are things to check in next project?
Programming / Re: My First Web App Project by gbolly1151(m): 8:07am On Feb 04, 2020
Millz404:
cool for a noob....one step at a time
Thanks bro what are things to check in my next project?
Programming / My First Web App Project by gbolly1151(m): 8:45pm On Feb 03, 2020
Guys,i created my first django web app. please comment on where to improve

The link below

/mydemoapp12345.herokuapp.com/ remove first and last slash
Programming / Re: Common good python programming practices you should know by gbolly1151(m): 8:29pm On Feb 03, 2020
Wanna quickly drop this:

NAMING IN PYTHON ACCORDING TO PEP
-To name a class,start with Capital letters (preferably a noun). if multiple words,use CamelCase e.g class PersonalData

-To name a function start with small letters (preferably a verb,demonstrating the kind of action the function perform). if multiple words, use underscore e.g
def get_name

-parameters of class or function should be in small letters

-If constant variables are in your program,indicate the name in capital letters and use underscore if multiple words e.g PADDING_NUM
Programming / Re: Common good python programming practices you should know by gbolly1151(m): 12:32pm On Jan 13, 2020

#How to format your class output using __str__ method
class myclass:
def __init__(self):
pass

def __str__(self):
return 'my name is class'

print(myclass())

Output:
my name is class


#without __str__ method

class myclass:
def __init__(self):
pass

print(myclass())

Output:
<__main__.myclass object at oxbchjlidk>

Programming / Re: Debug This Code At Your Spare Time. by gbolly1151(m): 8:29am On Jan 11, 2020
I suggest to save it again and run
Programming / Re: Nigerian Developers How Did You Master Algorithm And Problem Solving by gbolly1151(m): 2:02pm On Jan 10, 2020
Guest911:
I've been invited for several interviews the blocker has always been algorithms. How did you guys overcome this? Practical guide preferred

I will advise you to check on google on:

1.how to write good algorithms and
2. study on data structure and algorithm

,there are many pdf online to learn from.

1 Like

Politics / Re: Buhari: We’ll Position Universities To Produce Quality Graduates by gbolly1151(m): 1:57pm On Jan 10, 2020
Nice thought from buhari....Quality Education is urgently needed Nigeria
Programming / Re: Nigerian Developers How Did You Master Algorithm And Problem Solving by gbolly1151(m): 6:18pm On Jan 09, 2020
Guest911:
I've been invited for several interviews the blocker has always been algorithms. How did you guys overcome this? Practical guide preferred

Can you share those algorithm questions?
Programming / Re: Common good python programming practices you should know by gbolly1151(m): 7:12pm On Jan 08, 2020





'''I want us to know that python is object oriented programming (OOP)
languague, all data type is as a result of creation of object from their respective
classes e.g int datatype can be worked on this way'''

a=int(5)
b=int(-6)

print("a-b=",a.__sub__(b)) #subtaction method of int class which mean a-b

print("b-a=",a.__rsub__(b)) #mean start operation from right side

print("a+b=",a.__add__(b)) #addition method of int class just like __sub__

print("b+a=",a.__radd__(b))

print("a*b=",a.__mul__(b)) #multiplication method of int class

''' To emulate above behaviour in our own way,
we will define our own class
'''

class myclass:
def __init__(self,x):
self.value=x

def __add__(self,other): #overriding addition method of int claas
return self.value + other.value

def __sub__(self,other): #overriding substration method of init class
return self.value - other.value

c=myclass(9)
d=myclass(10)

#normally using operantors (+,-,/) on our class objects will create error
#but we have overrided + and - operantors only so that these operantors
#can work on our class we defined
#note that /, * and other operantors wont work because we didnt
#override those operantors.To make them work just create new method
#like + and - operators

print('c+d =',c+d)
print('c-d=',c-d)
print('c*d=',c*d) # this will throw error

Programming / Re: Common good python programming practices you should know by gbolly1151(m): 8:10am On Jan 07, 2020

#controlling print function
a='hello'
b='world'

print(a)
print(b)

#output
hello
world

#To remove newline

print(a,end=(' '))
print(b)

#output
hello world
Programming / Re: Common good python programming practices you should know by gbolly1151(m): 12:39pm On Jan 01, 2020


print('happy new year')

Programming / Re: Where Can I 0 Learn Phyton? by gbolly1151(m): 12:35pm On Jan 01, 2020
keyzid:


Hello Mr. I am presently learning python and the experience so far has been encouraging tho difficult sometimes.
I can really make do of having someone like you at my reach in case I need an urgent question. Please kindly send me your email where I can properly request for your WhatsApp number.
Awaiting your reply, thanks.

Reach me on fb sir

https://m.facebook.com/agbolahantimothy
Programming / Re: Where Can I 0 Learn Phyton? by gbolly1151(m): 12:32pm On Jan 01, 2020
africanman85:
interested too. I'm looking at software development or app development from scratch. Can u help me with that ?

I am not into mobile app development,only web app for now. If you wish to start web app i can help....reach me on fb
https://m.facebook.com/agbolahantimothy
Programming / Re: Common good python programming practices you should know by gbolly1151(m): 8:25am On Dec 31, 2019
#to get help info about any particular module or inbuilt function you can use help() let see how to use below

print( help(int))

output:

Programming / Re: Where Can I 0 Learn Phyton? by gbolly1151(m): 8:11am On Dec 31, 2019
Ayotimi222:

Yeah, how bro!

Which in particular? To get pdf or videos?
Programming / Re: Where Can I 0 Learn Phyton? by gbolly1151(m): 12:19pm On Dec 30, 2019
There are many resources online,in the format of pdf,webpage,video and personal tutorial,just go for which you want.

Meanwhile i can take you for free....if you can take care the cost of communication channels
Programming / Re: Common good python programming practices you should know by gbolly1151(m): 4:32pm On Dec 23, 2019


#set is used for removing duplicate from ordered list

Num=set(1,1,3,2,6,2,4,5)

#output = (1,2,3,4,5,6)
Programming / Re: 2019 Google Hash Code Programming Challenge For Professionals In Africa by gbolly1151(m): 7:39pm On Dec 20, 2019
I will like to solve their past questions, any available past questions?
Romance / Re: A Nairalander Pre-wedding Photos by gbolly1151(m): 1:01pm On Dec 20, 2019
Congrats

1 Like

Programming / Re: Common good python programming practices you should know by gbolly1151(m): 11:26am On Dec 17, 2019

num=list(range(5))
print(num)

#output [1,2,3,4]
Programming / Re: How Can Someone Convert His Python Codes To Apk by gbolly1151(m): 8:55am On Dec 17, 2019
Use kivy framework
Programming / Re: Common good python programming practices you should know by gbolly1151(m): 9:19am On Dec 16, 2019


#how to map two lists of equal length together
y=[7,8,3]
x=[1,2,3]
for i in zip(y,x):
print(i)

Output
(7,1)
(8,2)
(3,3)

Programming / Re: Programmer Needed by gbolly1151(m): 11:28am On Dec 11, 2019
I code in python and can build web using django

You can reach me on 07060435624

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