As one of its latest steps, setup.sh
git-clones ganeti_webmgr-config
repository in order to:
- get this nice configuration file from that repo,
- copy
gwm-manage.py
executable script to virtual env'sbin
directory.
import os | |
import random | |
import string | |
from django.core.exceptions import ImproperlyConfigured | |
def random_secret(n=20): | |
"Create randomly selected character sequence." | |
return "".join(random.sample(string.digits + string.printable, n)) |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>comment</key> | |
<string>syntax highlighting for reStructuredText http://docutils.sourceforge.net, based on rst mode from jEdit</string> | |
<key>fileTypes</key> | |
<array> | |
<string>rst</string> | |
<string>rest</string> |
""" | |
Useful commands: | |
ssh - start game V | |
cd - change directory | |
ls - print directories and files | |
vim - edit files | |
cat - to say if the file is normal V | |
help - list of commands V | |
unworm - fix contested file V | |
logout - quit game V |
class Job(object): | |
@require_perms("create_vm") | |
@staticmethod | |
def create_vm(**data): | |
pass | |
# ... somewhere else ... | |
with permissions(current_user.perms): | |
job = Job.create_vm() |
Currently no MOOCs (Massive Open Online Courses) or e-learning systems support a peer instruction method, which has shown some advantages over traditional lecture-based learning techniques. In this project I will implement a tool that helps instructors and their students experiment with this teaching method online. The project will mainly leverage `WebRTC`_ technology.
var config = {} | |
config.rabbit = {}; | |
config.nuve = {}; | |
config.erizoController = {}; | |
config.cloudProvider = {}; | |
config.erizo = {}; | |
config.rabbit.host = 'localhost'; | |
config.rabbit.port = 5672; |
{ | |
"always_show_minimap_viewport": true, | |
"auto_indent": true, | |
"bold_folder_labels": true, | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"detect_indentation": true, | |
"draw_minimap_border": true, | |
"enable_telemetry": false, | |
"folder_exclude_patterns": |
{% extends "workshops/_page.html" %} | |
{% block content %} | |
<h2>Instructors</h2> | |
{% if instructors %} | |
<p><span class="glyphicon glyphicon-envelope"></span> = mail instructor about problem</p> | |
<p><span class="glyphicon glyphicon-remove"></span> = no email address available</p> | |
<table class="table table-striped"> | |
<tr> | |
<th>Instructor</th> |