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
+------------------------+----------+----------+ | |
| reprocessingEfficiency | count(*) | Security | | |
+------------------------+----------+----------+ | |
| 0.5 | 2708 | high | | |
| 0.4 | 1 | high | | |
| 0.35 | 26 | high | | |
| 0.32 | 95 | high | | |
| 0.3 | 155 | high | | |
| 0.25 | 10 | high | | |
| 0.5 | 1476 | low | |
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
Style 1 : 1 row per type. multiple skills in each row. | |
select typeid, max(skill1) skill1,max(skill1level) skill1level,max(skill2) skill2,max(skill2level) skill2level,max(skill3) skill3,max(skill3level) skill3level,max(skill4) skill4,max(skill4level) skill4level,max(skill5) skill5,max(skill5level) skill5level,max(skill6) skill6,max(skill6level) skill6level from | |
( | |
select typeid,coalesce(valueint,valuefloat,0) skill1,0 skill1level,0 skill2,0 skill2level,0 skill3,0 skill3level,0 skill4,0 skill4level,0 skill5,0 skill5level,0 skill6,0 skill6level from dgmTypeAttributes where attributeID=182 | |
union | |
select typeid,0 skill1,0 skill1level,coalesce(valueint,valuefloat,0) skill2,0 skill2level,0 skill3,0 skill3level,0 skill4,0 skill4level,0 skill5,0 skill5level,0 skill6,0 skill6level from dgmTypeAttributes where attributeID=183 | |
union | |
select typeid,0 skill1,0 skill1level,0 skill2,0 skill2level,coalesce(valueint,valuefloat,0) skill3,0 skill3level,0 skill4,0 skill4level,0 skill5,0 skill5level,0 skill6,0 skill6level from |
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
<?php | |
$ch = curl_init(); | |
$url="http://public-crest-sisi.testeveonline.com/industry/systems/"; | |
curl_setopt($ch, CURLOPT_URL, $url); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); | |
$result = curl_exec($ch); | |
if ($result===false) { |
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
SELECT it2.typename, | |
it2.typeid, | |
coalesce(dta2.valueInt,dta2.valueFloat) multiplier, | |
coalesce(dta3.valueInt,dta3.valueFloat) me, | |
coalesce(dta4.valueInt,dta4.valueFloat) te, | |
coalesce(dta5.valueInt,dta5.valueFloat) runs | |
FROM invTypes | |
JOIN industryActivityMaterials iam ON (iam.materialtypeid=invTypes.typeid and iam.activityid=8 and groupid=716) | |
JOIN industryActivityProducts iap ON (iam.typeid=iap.typeid) | |
JOIN dgmTypeAttributes dta on (dta.typeid=invTypes.typeid and dta.attributeID=1115) |
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
<?php | |
namespace FuzzyCrest; | |
use FuzzyCrest; | |
class CrestHandler | |
{ | |
private $useragent="Fuzzwork Market agent 1.0"; | |
private $expiry=0; |
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
function loadSystemVolume(typeid,systemID,sellbuy,cachebuster){ | |
if (typeof systemID == 'undefined'){ | |
systemID=30000142; | |
} | |
if (typeof typeid == 'undefined'){ | |
throw 'need typeids'; | |
} | |
if (typeof cachebuster == 'undefined'){ | |
cachebuster=1; | |
} |
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
/* | |
Doesn't currently do anything other than dump some region information into the log. | |
Uses https://github.com/googlesamples/apps-script-oauth2 | |
Details for the setup of that are on the page. short version: | |
Add the library MswhXl8fVhTFUH_Q3UOJbXvxhMjh3Sh48 to your sheet code. Resources -> libraries | |
get the project key from file-> project properties |
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
Sub LoadPrices() | |
Dim oHttp As Object | |
Dim jsonText As String | |
Dim jsonObj As Dictionary | |
Dim jsonRows As Collection | |
Dim jsonRow As Dictionary | |
Dim costInex As Collection | |
Dim ws As Worksheet | |
Dim currentRow As Long | |
Dim startColumn As Long |
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 collections import defaultdict | |
import sys | |
# -------- | |
# - Read in the BLT file | |
# -------- | |
fname = sys.argv[2] | |
fp = open(fname, "r") |
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
import argparse | |
import textwrap | |
import wx | |
from wx.lib.pubsub import pub | |
import os | |
import csv | |
import requests | |
import grequests | |
import time | |
import locale |