All Projects → Athons → wiki

Athons / wiki

Licence: MIT License
💻 Hackathon Wiki - Created by @bahorn

Programming Languages

HTML
75241 projects

Projects that are alternatives of or similar to wiki

fireblogger
Ionic 2 social media microblogging platform built with firebase 3 as backend
Stars: ✭ 54 (+145.45%)
Mutual labels:  hackathon
hackathon-foodie
Foodie is a centralized food ordering app for restaurants near NIT Hamirpur.
Stars: ✭ 26 (+18.18%)
Mutual labels:  hackathon
developer-resources
A list of useful links, our partners, as well as the stand out projects from the community
Stars: ✭ 86 (+290.91%)
Mutual labels:  hackathon
LastSecondSlides
Use the Google speech-to-text API to generate presentation slides as you talk!
Stars: ✭ 32 (+45.45%)
Mutual labels:  hackathon
phoenix
Containerize your enterprise - tutorials and resources for learning Kubernetes hands on using azure!
Stars: ✭ 102 (+363.64%)
Mutual labels:  hackathon
help-me
When there's none to go to. In times of danger or trouble, there is nowhere to seek help from. Help-me comes with an innovative solution to the above problem. It will automatically send notifications to your nearby people and it will be the moral duty of the people to help the person in danger.
Stars: ✭ 20 (-9.09%)
Mutual labels:  hackathon
HacktheDinos
The 2nd Annual American Museum of Natural History Hackathon produced by the BridgeUP: STEM program
Stars: ✭ 32 (+45.45%)
Mutual labels:  hackathon
mmtf-workshop-2018
Structural Bioinformatics Training Workshop & Hackathon 2018
Stars: ✭ 50 (+127.27%)
Mutual labels:  hackathon
soulseek.js
P2P music listening/file sharing with friends in the webbrowser via WebRTC. [Hackathon project]
Stars: ✭ 71 (+222.73%)
Mutual labels:  hackathon
StageMate
StageMate is the smart assistant for your presentation. It will cover all aspects of your pitch from skipping slides to reminding you if you miss some major point.
Stars: ✭ 60 (+172.73%)
Mutual labels:  hackathon
mhacks-android
The official MHacks Android App
Stars: ✭ 21 (-4.55%)
Mutual labels:  hackathon
block-change
Social impact bond implemented on Ethereum
Stars: ✭ 38 (+72.73%)
Mutual labels:  hackathon
tokensubscription.com
⏰💰🤠 Set-it-and-forget-it token subscriptions on the Ethereum mainnet. #Winner #WyoHackathon
Stars: ✭ 81 (+268.18%)
Mutual labels:  hackathon
sokoban-action
Sokoban game using GitHub Actions 🤖
Stars: ✭ 26 (+18.18%)
Mutual labels:  hackathon
capbot2.0
Repository to hold code for the cap-bot varient that is being presented at the SIIC Defence Hackathon 2021.
Stars: ✭ 20 (-9.09%)
Mutual labels:  hackathon
Summer-Hacks
Make a cool summer-themed portfolio website.
Stars: ✭ 27 (+22.73%)
Mutual labels:  hackathon
vim-workshop
My thorough introduction to Vim
Stars: ✭ 30 (+36.36%)
Mutual labels:  hackathon
smb-summit-hackathon
Build Blocks for the SAP SMB Summit Hackathons.
Stars: ✭ 23 (+4.55%)
Mutual labels:  hackathon
Hackathon
[DEPRECATED] ENS Login hackthan project for ETHBerlin 2019
Stars: ✭ 15 (-31.82%)
Mutual labels:  hackathon
tf-hack2.0
⚡#PoweredByTF 2.0 Challenge! [ /w @inishchith ]
Stars: ✭ 18 (-18.18%)
Mutual labels:  hackathon

Netlify Status

Gitter

hack.athon.uk - The Hackathon Community Wiki

This a project to build a wiki to help document how to get involved and organise hackathons.

If you are curious about the sites stats, check out stats.athon.uk!

Contributing

Thanks for taking an interest in our project!

The site is built with:

If you want to help out, but don't know were to get started check the open issues!

We don't bite and will work with you to make sure your contribution gets merged in!

If you would prefer more realtime communitcation, the project recently moved to gitter, while a little empty right now @bahorn is actively on gitter. You can connect with your prefered matrix client as well!

Adding events

The list of events is stored in events.yml, sorted by season.

You just need to feel in your events info like so:

        - name: Example Hackathon
          website: https://example.com/
          location: The Internet
          when: 31st December 2020
          attendees: 1000
          digital: true

If you don't feel comfortable editing the event list directly, please feel free to open a new issue with our New Event template.

Writing Content

The site is written in Markdown, with multiple special features available to use!

First, put your content in the appropriate sub directory under docs/. Make sure your file ends with .md as otherwise mkdocs won't pick it up!

Then, you can add a link to the sites navigation by changing the nav section in mkdocs.yml.

For example, to add a new document to the organise section:

  - Organise:
      - Example Section:
          - Your File: 'path/to/your/file.md'

Paths do not need to include docs/ as that is where mkdocs checks by default.

You can include HTML in the page, and also use Jinja2 Templates, but worth checking if it's really needed. This is how we implemented the event list, hexbin and family tree.

Static resources go in docs/static/. If you are contributing something like and example budget, it'll get in docs/static/documents/.

Markdown Extentions

We have the following enabled:

  • Admonition - Allows adding block content, for things like warnings, etc.
  • Footnotes - Allows adding footnotes to the bottom of your page.

Feel free to open an issue to suggest enabling another one!

Changing parts of layout / theme

We have static css stored under docs/static/css/, where you can find various stylesheets.

Add your stylesheet to extra_css in mkdocs.yml if you need it to be included on every page.

The theme folder contains templates that can be used to override a specific pages theme, and partials which can be included to add new components.

You can find documentation on how this feature here

Running Locally

If you want to work on the site locally, you can setup it up by doing the following:

virtualenv -p python3 .venv
source .venv/bin/activate
pip install -r requirements.txt

And then run the development server with:

mkdocs serve
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].