Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 19,426
» Latest member: Buttler488
» Forum threads: 38,544
» Forum posts: 174,658
Full Statistics
|
Online Users |
There are currently 481 online users. » 4 Member(s) | 467 Guest(s) Google, Bing, Yandex, Apple, Google Image, Facebook, Facebook, lucydawson056, Buttler488, ndc85430, xeyah97489
|
|
|
Class Basics |
Posted by: ichabod801 - Sep-15-2016, 10:58 PM - Forum: Fundamentals
- Replies (1)
|
 |
Classes are the fundamental building block of the popular programming paradigm known as Object Oriented Programming (OOP). This is not a full tutorial..... More
|
|
|
user group colors |
Posted by: Kebap - Sep-15-2016, 06:25 PM - Forum: Board
- Replies (2)
|
 |
Thanks for the mod privileges BUT the supermod color seems so .. special ... while the admin's green is very cool. How about a simple black or somethi..... More
|
|
|
Login Trouble |
Posted by: sparkz_alot - Sep-14-2016, 08:35 PM - Forum: Board
- Replies (8)
|
 |
Having a problem when logging in and wondering if anyone else is encountering the same problem. I've tried both IE and Chrome. When I first go to the ..... More
|
|
|
Portal |
Posted by: Kebap - Sep-13-2016, 02:27 PM - Forum: Board
- Replies (7)
|
 |
The portal currently shows a copy of all recent posts. Which is nice. However, some of them are very long. And they are shown in total. It would be be..... More
|
|
|
User signatures |
Posted by: Kebap - Sep-13-2016, 02:19 PM - Forum: Board
- Replies (17)
|
 |
I wanted to copy my signature from the old forum to here, but receive an error message:
[quote]
You cannot update your signature because it is too l..... More
|
|
|
Modules part 3 |
Posted by: metulburr - Sep-05-2016, 09:11 PM - Forum: Fundamentals
- No Replies
|
 |
Package Imports
Package imports are nothing more than a directory of imports. It turns a path on your computer into another namepsace, ..... More
|
|
|
Modules part 2 |
Posted by: metulburr - Sep-05-2016, 09:11 PM - Forum: Fundamentals
- Replies (1)
|
 |
Module Creation
Python modules are just files of python code. You do not need to write special syntax to tell python you are making a m..... More
|
|
|
Modules part 1 |
Posted by: metulburr - Sep-05-2016, 09:10 PM - Forum: Fundamentals
- No Replies
|
 |
Each file is a module, and modules import other modules to use the names they define. Modules provide an easy way to organize components into a system..... More
|
|
|
syntax highlighting |
Posted by: metulburr - Sep-05-2016, 12:32 AM - Forum: Board
- Replies (57)
|
 |
There is a plugin installed that allows syntax highlighting. The BBCode for it is
[shcode=python]CODE HERE[/shcode] EDIT:
The BBCode ..... More
|
|
|
testing syntax highlighter |
Posted by: metulburr - Sep-05-2016, 12:22 AM - Forum: Bar
- Replies (5)
|
 |
Python
[shcode=python]
class Ship:
def __init__(self, sheet):
self.frames = strip_from_sheet(sheet, (0,0), (122,164), 4, 4)
self..... More
|
|
|
testing unanswered posts (old) |
Posted by: metulburr - Sep-02-2016, 04:40 PM - Forum: Board
- No Replies
|
 |
The CSS for code blocks is located at ACP -> Templates and Style -> Themes -> Default -> global.css -> Select fro mthe drop down menu ".codeblock". T..... More
|
|
|
Day one thoughts |
Posted by: sparkz_alot - Sep-01-2016, 08:31 PM - Forum: Board
- Replies (4)
|
 |
This software, myBB, seems to work quite well right out of the box. I do, however, have two dislikes. The first is the "Member List" is viewable by ev..... More
|
|
|
Lists |
Posted by: metulburr - Sep-01-2016, 08:18 PM - Forum: Fundamentals
- Replies (1)
|
 |
Both lists and dictionaries are collections of objects. They both can be changed in place, can grow or shrink, and also can have any other objects nes..... More
|
|
|
Dictionaries |
Posted by: metulburr - Sep-01-2016, 08:18 PM - Forum: Fundamentals
- Replies (1)
|
 |
You can think of Dictionaries as a collection of data that is unorganized, unlike lists. Items in dictionaries are stored and fetched by a key, instea..... More
|
|
|
Indentation |
Posted by: metulburr - Sep-01-2016, 08:16 PM - Forum: Fundamentals
- Replies (2)
|
 |
Python detects block boundaries automatically, by line indentation. (the empty space to the left of your code). All statements indented the same dista..... More
|
|
|
Files |
Posted by: metulburr - Sep-01-2016, 08:13 PM - Forum: Fundamentals
- Replies (4)
|
 |
Files
The built-in function open() creates a Python file object, which serves as a link to a file residing on your machine. After cal..... More
|
|
|
|