Search
Display results as :
Advanced Search
Top posting users this week
No user
[DJANGO - .PY] Trouble when trying to run manage.py
Mon Oct 09, 2017 9:42 amJoao
I was trying to run manage.py runserver, but with no success, anyone has any solution ???
[DJANGO - .PY] HOW TO FIX THE "STARTPROJECT" SYNTAX ERROR
Fri Oct 06, 2017 1:13 pmRenan Araújo
Its very common to run the command
Code:
django-admin.py startproject xxx
*xxx stands for the name of your project

But when you get an error and you dont know how to fix, an error saying that "startproject" is an invalid syntax.
So, its simple to solve, you just need to copy the code below, AND SAVE IT AS anything.BAT, MUST PUT .BAT in the end.
Code:
@echo off
@echo Made by TCE Forum ! ! !
@echo  …
[.PY - TKINTER] Mini guessing game using an interface
Thu Oct 05, 2017 3:05 pmRenan Araújo
Code:
from tkinter import *
class MyApp(Frame):
    def __init__(self, master=None):
        Frame.__init__(self, master)
        self.pergunta = Label(self, text='Brazil was discovered in:', fg='red')
        self.pergunta.pack()
        self.botao1 = Button(self, text='A:\n1490', background='green',
                 …
[PYTHON] - Simple loadin using for
Thu Oct 05, 2017 9:57 amJoao
As i am newbie in coding, i would like to share something, isnt much thing, simply a loading, very simple.

Code:
Loading = ['L','O','A','D','I','N','G']
    for L in Loading:
        time.sleep(1)
        print(L)
    print('DONE !')
Registration and Login System with PHP and MySQL
Thu Oct 05, 2017 9:51 amJoao
*CREDITS: codexworld <3

Database Table Creation

A table is needed to store the user details in the database. The following SQL creates a users table with some required columns.

Code:
CREATE TABLE `users` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `first_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
 `last_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
 …
Django - Python
Tue Oct 03, 2017 3:10 pmRenan Araújo
As many people think, web development is not that hard, by learning with the right guides ( just talking about learning by yourself on the internet ), you won't have troubles.
A good way to learn is by reading this PDF ( <- click here )
[PYTHON] Change the ID with a new user
Wed Oct 04, 2017 2:08 pmJoao
A simple code ( very simple Mad ) to change the actual ID, to the next, when a new user enter, here's the code:

Code:
 """
CHANGING ACTUAL ID """
ID_Actual = 0
while 1:
    User_Actual = input('Type the username:  ')
    User_ID_Actual = ID_Actual
    print('USER: {}'.format(User_Actual))
    print('ID: …

Current date/time is Thu May 09, 2024 9:41 pm

Forum Terms of service

Using the forum. By registering on this forum, you agree to use it properly, and to refrain from posting any content that is aggressive, offensive, defamatory, hateful, or in violation of applicable laws and regulations. You agree not to post messages inciting or evoking illegal practices, or violating the terms of use of the service.

The moderators and administrators of this forum will do their best to delete or edit any reprehensible messages that may be posted on the forum. You acknowledge that all messages posted on this forum express the opinion of their respective authors, and do not necessarily reflect the position of the moderators and administrators.

In order to ensure the moderation of this forum, any message violating the preceding provisions may be edited or deleted without notice by the moderators and administrators of the forum. Any abuse may also be sanctioned by banning or deleting the user account. We reserve the right to inform your access provider and/or the judicial authorities of any malicious behaviour.

Your personal data. By registering on this forum, you agree that it may collect some of your personal data. This data collection is done either through the information you provide us, or through the use of the services itself, for technical data used for the forum proper functioning. You can access, modify or delete your data at any time. Users under 16 years old certify that they have obtained the consent of their legal guardian in order to proceed with this registration. For more information, please read our privacy policy.

This forum uses cookies to store information on your computer. These cookies only serve to improve the user experience. You can read the purpose of cookies on our forum help center. You can choose in your browser settings not to enable cookies, as this may disrupt the forum proper functioning.

This forum may send you electronic messages (e-mail), such as activity notifications, or newsletters, sent by Forumotion or by an administrator of this forum. You can choose in your profile preferences to receive or not each of these messages.


Click on the button 'I Agree to these terms' below :
- You acknowledge that you have read these rules in their entirety ;
- You agree to comply fully with this rules ;
- You grant moderators of this forum the right to delete, move or edit any topic at any time.