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
import intrinio | |
from datetime import datetime | |
from dateutil.relativedelta import relativedelta | |
from os.path import join | |
from mssql import MSSQL | |
from utility import Utility | |
class StockData(object): | |
"""This class was developed to make working with stock data easier""" |
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
@Echo off | |
E: | |
cd LE\GLC\examples | |
cls | |
echo Starting Glyphinator Watchdog | |
echo If you want to close this watchdog, close the glyphinator window and type Y depending on your language followed by Enter in this window. |
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/perl | |
# | |
# This program manages the star database used by glyphinator | |
# It performs the following functions: | |
# | |
# * Fill star db from probe data | |
# * Merge a second db into the main one | |
use strict; | |
use warnings; |
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
public static T JsonPost<T>(string url, string strJson) | |
{ | |
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); | |
request.ContentType = "application/json; charset=utf-8"; | |
request.Accept = "application/json, text/javascript, */*"; | |
request.Method = "POST"; | |
byte[] byteArray = Encoding.UTF8.GetBytes(strJson); | |
request.ContentLength = byteArray.Length; | |
using (Stream s = request.GetRequestStream()) |
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
{ | |
"method":"create", | |
"params":[ | |
"AHLibTest", | |
"sample", | |
"sample", | |
"d6656e5c-4b9f-4ecb-948f-ac95408c41e2", | |
"17", | |
"[email protected]", | |
null, |
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
// This gets converted into a json hash. | |
public class CreateEmpireParms | |
{ | |
public string name; | |
public string password; | |
public string password1; | |
public string captcha_guid; | |
public string captcha_solution; | |
public string email; | |
public string facebook_uid; |
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
public T JsonPost<T>(string url, string strJson) | |
{ | |
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); | |
request.ContentType = "application/json; charset=utf-8"; | |
request.Accept = "application/json, text/javascript, */*"; | |
request.Method = "POST"; | |
byte[] byteArray = Encoding.UTF8.GetBytes(strJson); | |
request.ContentLength = byteArray.Length; |
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
using System; | |
using System.Collections.Generic; | |
using System.Web.Script.Serialization; | |
using System.Net; | |
using System.IO; | |
using System.Windows.Forms; | |
using System.Text; | |
using System.Collections; | |
using LELibrary.Logic; | |
using LELibrary.Objects; |
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
#NavigationRow | |
{ | |
background-color: #3a4f63; | |
width: 100%; | |
} | |
#NavigationCell | |
{ | |
width: 100%; | |
clear: both; |
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
<div class="clear hideSkiplink"> | |
<a href="#NavigationMenu_SkipLink"> | |
<img alt="Skip Navigation Links" src="somelonghashedthing" width="0" height="0" style="border-width: 0px;" /></a> | |
<div class="menu" id="Div1"> | |
<ul class="level1"> | |
<li><a title="The Home Page" class="level1 selected" href="/Default.aspx">Home</a> | |
</li> | |
<li><a>Administrator </a> | |
<ul class="level2"> | |
<li><a title="Add, Edit, Delete, Update Customers" class="level2" href="/Secure/Administrator/CustomerMaint.aspx"> |
NewerOlder