Skip to content

Instantly share code, notes, and snippets.

View tenpaiyomi's full-sized avatar

Eric Musgrove tenpaiyomi

View GitHub Profile

Art and Graphics

  • Ambient Occlusion: Placed items no longer leave behind shadow outlines after being picked up.
  • Camera: The game camera now pans more smoothly when the player enters furniture.
  • Graphics: The cover of Tesla Science magazine Issue 9 no longer appears solid red on pickup, or when inspected.

Enemies

  • General: Fixed an issue in which some enemies could chase the player farther than intended.
  • Loot: Ghoul and Scorched Officers now correctly drop nuke code pieces upon being killed by a player.

C.A.M.P., Workshops, and Crafting

flepy
lovivos
77retro
mitchelaq3u8
marco6at22
novaarcadez
djsaini
br0b0t1cs
jederkannsieficken886
gastlyinmybannedly
benrama7
toderiox
fortnite
coolpix60
smokes30
cthulana
lipzie
jaymoney1122
mehdis_left_testicle
abidagles
SELECT player_status_requests.player_id, player_status_requests.status AS record_status, players.status, COUNT(player_status_requests.status) AS status_count, (SELECT COUNT(*) FROM `player_status_requests` WHERE `player_status_requests`.`player_id` = `players`.`id` AND player_status_requests.created_at >= '2017-08-08T00:00:00+00:00') AS total_status_count FROM `player_status_requests` JOIN `players` ON `players`.`id` = `player_status_requests`.`player_id` WHERE `player_status_requests`.`player_id` IN (15471, 15472, 15473, 15475, 15476, 15478, 15480, 15485, 15488, 15489, 15490, 15491, 15492, 15493, 15494, 15496, 15497, 15498, 15500, 15501, 15502, 15503, 15505, 15506, 15508, 15509, 15510, 15511, 15512, 15513, 15515, 15516, 15517, 15518, 15519, 15520, 15521, 15522, 15523, 15524, 15525, 15526, 15528, 15529, 15530, 15531, 15532, 15533, 15534, 15535, 15536, 15537, 15538, 15539, 15540, 15541, 15542, 15543, 15544, 15545, 15546, 15547, 15549, 15551, 15552, 15553, 15554, 15555, 15557, 15558, 15560, 15561, 15562, 15563,
/*! 10FootWaveSDK 2017-04-07 */
TFW.feeds={},TFW.feeds.Weather={getData:function(a,b,c){var d="http://app.10footwave.com/weather/"+TFW.device.latitude()+","+TFW.device.latitude()+"/FORECASTIO.json";$.get(d,function(c){var d=c.currently,e=[];if("daily"==a){var f=c.daily;f.shift(),$(f).slice(0,5).each(function(){e.push(this)})}else{var g=c.hourly;g.shift(),$([0,2,4,6,8]).each(function(){e.push(g[this])})}b(d,e)}).fail(function(){void 0!==c?c():(logger.error("[TFW.template.loadItemsFromFeed] Error loading "+d),TFW.playlist.advance())})}},TFW.feeds.Twitter={getTweets:function(){}},TFW.feeds.Facebook={getPagePosts:function(){}},TFW.feeds.RSS={getItems:function(){}},TFW.utils={},TFW.utils.Display={setBackgroundImage:function(a,b){$(a).css("background-image",'url("'+b+'")')}},TFW.content={getBackgroundSegmentProperty:function(a,b){var c=TFW.playlist.getSegmentProperty(a,TFW.playlist.data.background_segment);return void 0!==c?c:b},brandBackgroundImage:function(){var a=TFW.content.getBackgroundSegmentProperty("brandBa
Started GET "/9518/channels/4/process_channel" for 127.0.0.1 at 2016-09-21 08:49:37 -0400
Processing by ChannelsController#process_channel as HTML
Parameters: {"organization_id"=>"9518", "id"=>"4"}
User Load (0.3ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 9066 LIMIT 1
Account Load (0.2ms) SELECT `accounts`.* FROM `accounts` WHERE `accounts`.`id` = 2 LIMIT 1
ApplicationController.set_locale - Locale: en
Organization Load (0.2ms) SELECT `organizations`.* FROM `organizations` WHERE `organizations`.`id` = 9518 LIMIT 1
Organization Load (0.2ms) SELECT `organizations`.* FROM `organizations` WHERE `organizations`.`id` = 1 LIMIT 1
Organization Load (0.2ms) SELECT `organizations`.* FROM `organizations` WHERE `organizations`.`id` = 9517 LIMIT 1
CACHE (0.0ms) SELECT `organizations`.* FROM `organizations` WHERE `organizations`.`id` = 9517 LIMIT 1
Sent mail to eric.musgrove@10footwave.com (751.8ms)
Date: Fri, 12 Feb 2016 10:42:45 -0500
From: 17040 - SpeeDee - Vallejo <support@10footwave.com>
Sender: 10 Foot Wave Support <support@10footwave.com>
Reply-To: 17040 - SpeeDee - Vallejo <midasspeedeevallejo@yahoo.com>
To: eric.musgrove@10footwave.com
Message-ID: <56bdfd75662e2_c21f3fe8c0f473cc87958@Erics-MacBook-Pro.local.mail>
Subject: Your recent SpeeDee visit
Mime-Version: 1.0
Content-Type: multipart/alternative;
@tenpaiyomi
tenpaiyomi / concept-graph.js
Last active February 5, 2016 04:23 — forked from kanesee/concept-graph.js
d3 2-way tree
var CollapsibleTree = function(elt) {
var m = [20, 120, 20, 120],
w = 1280 - m[1] - m[3],
h = 580 - m[0] - m[2],
i = 0,
root,
root2;
var tree = d3.layout.tree()
# Main search function
def self.search(params, location)
perform_search(location, params[:activity], params[:start_time], params[:end_time])
end
def self.by_activity(activity)
perform_search("Ottawa,ON", activity, nil, nil)
end
protected
func whateverMethodThisIs() {
let defaults = NSUserDefaults.standardUserDefaults()
self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
let mainStoryboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
if !defaults.boolForKey("hasDisplayedIntroduction") {
self.window?.rootViewController = mainStoryboard.instantiateViewControllerWithIdentifier("IntroductionViewController") as! IntroductionViewController
} else {
self.window?.rootViewController = mainStoryboard.instantiateViewControllerWithIdentifier("SecondViewController") as! SecondViewController
}