This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>10*10 Multiplication Matrix</title> | |
</head> | |
<body> | |
<table border="2" cellspacing="0" > | |
<script language="javascript"> | |
//Width | |
x=10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.contrib import admin | |
from units.models import Unit | |
from references_u.models import ReferenceU | |
from qna.models import Question, QuestionHints, QuestionAnswer, QuestionAnswerChoice | |
class ReferenceUInline(admin.StackedInline): | |
model = ReferenceU | |
extra = 1 | |
class QuestionHintsInline(admin.StackedInline): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
""" | |
pre-commit.py | |
Created by Jaimin Patel on 2013-01-08. | |
Copyright (c) 2013 __TuvaLabs__. All rights reserved. | |
""" | |
#!/usr/bin/env python | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from __future__ import with_statement | |
import os | |
import re | |
import shutil | |
import subprocess | |
import sys | |
import tempfile | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//image modifier will make images all the same size | |
PImage[] tempImages; | |
String rootDir = "C:/Users/Ben/Dropbox/TuvaLabs UI-UX Design/Mock-ups/Assets/Images for Personalization Page/"; | |
ArrayList directories, names; //holds the directories for all image files to be modified | |
void setup(){ | |
size(200,150); | |
directories = new ArrayList(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -ex | |
cd $WORKSPACE | |
virtualenv -q ve | |
source ./ve/bin/activate | |
pip install -E ./ve -r requirements.txt | |
pip install -E ./ve -r requirements-testing.txt | |
cd $WORKSPACE/projectname | |
ln -fs `pwd`/conf/testsettings.py `pwd`/localsettings.py | |
python manage.py migrate | |
python manage.py jenkins |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"fields": [ | |
{"type": "", "name": "Case", "id": "id"}, | |
{"type": "", "name": "Name", "id": "name"}, | |
{"type": "", "name": "Span", "id": "span"}, | |
{"type": "categorical", "sortOrder": "DSC", "name": "Month", "id": "month"}, | |
{"type": "", "name": "Gender", "id": "gender"}] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
"filter_name": "Subject", | |
"filter_title": "Subject / Topic", | |
"children": [{ | |
"name": "", | |
"tags": [{ | |
"name": "Community", | |
"description": "" | |
}, { | |
"name": "Politics", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%YAML 1.2 | |
--- | |
Application: | |
license_key: REPLACE_WITH_REAL_KEY | |
wake_interval: 60 | |
#newrelic_api_timeout: 10 | |
#proxy: http://localhost:8080 | |
#apache_httpd: | |
# name: hostname |
OlderNewer