This file contains hidden or 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
| #include <cstdlib> | |
| #include <iostream> | |
| #include <sys/utsname.h> | |
| #include <sys/types.h> | |
| #include <sys/stat.h> | |
| #include <unistd.h> | |
| using std::cout; | |
| using std::endl; |
This file contains hidden or 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
| # | |
| # Simple logging configuration for Python | |
| # | |
| # NOTE: Don't add spaces between comma-separated lists in this file | |
| # | |
| [DEFAULT] | |
| filename = 'output.log' | |
| [loggers] |
This file contains hidden or 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
| app.config['DYNAMO_TABLES'] = [ | |
| dict( | |
| TableName='users', | |
| KeySchema=[dict(AttributeName='username', KeyType='HASH')], | |
| AttributeDefinitions=[dict(AttributeName='username', AttributeType='S')], | |
| ProvisionedThroughput=dict(ReadCapacityUnits=5, WriteCapacityUnits=5) | |
| ), dict( | |
| TableName='groups', | |
| KeySchema=[dict(AttributeName='name', KeyType='HASH')], | |
| AttributeDefinitions=[dict(AttributeName='name', AttributeType='S')], |
This file contains hidden or 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
| 1 | 6 | |
|---|---|---|
| 2 | 6 | |
| 3 | 10 | |
| 4 | 12 |
This file contains hidden or 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 python3 | |
| # Hebb Net example - Character recognition | |
| # | |
| # See Fausett, Example 2.8, pp. 55-56 | |
| # | |
| TRAINING_X = [ | |
| '#...#', | |
| '.#.#.', |
This file contains hidden or 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
| require 'xmlrpc/server' | |
| def suppress_warnings | |
| previous_VERBOSE, $VERBOSE = $VERBOSE, nil | |
| yield | |
| $VERBOSE = previous_VERBOSE | |
| end | |
| suppress_warnings do | |
| XMLRPC::Config::ENABLE_NIL_PARSER = true |
This file contains hidden or 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
| let fractionCodes = { | |
| 189: "1/2", | |
| 8531: "1/3", | |
| 8532: "2/3", | |
| 188: "1/4", | |
| 190: "3/4", | |
| 8533: "1/5" | |
| }; //fill in the rest from unicodefractions.com | |
| function removeFractions(s) { |
This file contains hidden or 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
| /* | |
| * | |
| * kda@bender:~/work/cpsc349$ eslint test.js | |
| * | |
| * /home/kda/work/cpsc349/test.js | |
| * 18:15 error Missing space before function parentheses space-before-function-paren | |
| * 19:1 error Expected indentation of 2 spaces but found 4 indent | |
| * 19:27 error Missing semicolon semi | |
| * 22:14 error Strings must use singlequote quotes | |
| * 23:1 error 'greeting' is not defined no-undef |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Lorem ipsum dolor sit amet</title> | |
| <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>Ut enim ad minim veniam</h1> | |
| </header> |
This file contains hidden or 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 | |
| import cmd | |
| import sys | |
| import uuid | |
| import pprint | |
| import sqlite3 | |
| def make_dicts(cursor, row): |