I hereby claim:
- I am elimence on github.
- I am elimence (https://keybase.io/elimence) on keybase.
- I have a public key whose fingerprint is 844D A549 5C2D 3439 1055 380D 9BCB E2DD 971E 9B66
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Factories | |
| app.factory('MyFactory', ['$http', function ($http) { | |
| var baseURL = '/billing'; | |
| return { | |
| fetch: function () { | |
| var url = baseURL + '/fetch.json'; | |
| return $http.get(url); | |
| }, | |
| updateCompanyInformation: function (company) { | |
| var url = baseURL + '/update-company-info.json'; |
| /** | |
| * Parse Employee Data in CSV | |
| * CAUTION : Do not attempt to understand this code!!! | |
| **/ | |
| var csv = require('fast-csv') | |
| , fs = require('fs') | |
| , Q = require('q'); |
| from helpers.validators import validate_movie_title | |
| import sys | |
| sys.path.append('/Users/c3po/Desktop/12_Python_Resubmission/entity') | |
| from models import Movie | |
| class CRUD: | |
| def insert_movie(self): |
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional //EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html> | |
| <head> | |
| <title></title> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <meta name="viewport" content="width=320, target-densitydpi=device-dpi"> | |
| <style type="text/css"> | |
| /* Mobile-specific Styles */ | |
| @media only screen and (max-width: 660px) { |
nouns or verbs in a program, depending on what is the most prominent.| <html> | |
| <head> | |
| <title>WORD COUNT TEST</title> | |
| <style type="text/css"> | |
| #text { | |
| height: 100px; | |
| width: 200px; | |
| } | |
| </style> | |
| </head> |
| #!/usr/bin/python | |
| import sys | |
| import time | |
| import shlex | |
| import subprocess | |
| from daemon import runner | |
| class Misc(): |
| #!/usr/bin/env python | |
| import re | |
| import sys | |
| import shlex | |
| import subprocess | |
| from time import sleep | |