https://github.com/iansteyn/blogstar
Blogging website. Group project for COSC 360 - Web Programming. Received 99% overall grade. Completed April 2025.
https://github.com/iansteyn/blogstar
full-stack lamp mvc university-project website
Last synced: 8 days ago
JSON representation
Blogging website. Group project for COSC 360 - Web Programming. Received 99% overall grade. Completed April 2025.
- Host: GitHub
- URL: https://github.com/iansteyn/blogstar
- Owner: iansteyn
- Created: 2025-01-17T16:20:13.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-05-13T21:47:20.000Z (about 1 month ago)
- Last Synced: 2025-06-14T02:34:26.505Z (8 days ago)
- Topics: full-stack, lamp, mvc, university-project, website
- Language: PHP
- Homepage: https://cosc360.ok.ubc.ca/iansteyn
- Size: 5.51 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cosc-360-project
Group project for COSC 360 - Web Programming.
Hi :)# Git practices
Ian's personal Git cheat sheet: [git_tips.md gist](https://gist.github.com/iansteyn/abf4cb875b7022e46fa13b363f3753a1)- remember to pull main before you branch!
- 1 issue, 1 branch - approximately
- commit frequently with short, descriptive commit messages
- try to do 1 commit to 1 file if possible
- push before you close your computer
- Reviews are required before a branch can be merged to main
- branch naming convetion: `branch-name`# File naming conventions
- `file-name.html`
- `file-name.css`
- `file-name.svg`
- `file-name.js`??
- `file-name.php`
# coding name conventions
## CSS
- class/id names: `class-name`
- name it something useful - BEM convention## HTML
- 2 spaces indent
- Indent your html
- use semantic tags## JavaScript
- java conventions? - camelCase## General
- Header comments for all files (except html and css)
- comment sources for code if you get it from somewhere
- try to name things well instead of just commenting what they do
- good comments are used sparingly, and describe *why* something is a certain way