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
The game freezing is ridiculous... So many people on xb1 with the issue... Hard resets, rebooting router and cable modem, deleting and redownloading the game, putting it on an external usb3 hard drive, etc all don't work... It seems to be much worse if you snap an app like tv on the xb1 while you play, but happens with madden in full screen also... Seems to be worse since microsoft releasing the new NXOE dashboard also... | |
I would be happy to help do testing with y'all over streaming or whatever if y'all are not able to troubleshoot... Also, make sure you have a kinect plugged in while testing on your end, it may be coincidence but everyone i know with freezing issues also has kinect... I have not tried playing without kinect yet but will do that... | |
One other issue... If you get a notification or something while in the my auctions page the game crashes to the main menu... The setups: | |
1) Go to Auctions. Go to My items. Wait for a notification for an AH sale or whatever. Cancel an existing auction. |
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
#!/usr/bin/python | |
# This file is part of Ansible | |
# | |
# Ansible is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# Ansible is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
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
--- | |
- name: Build a Cloud Server | |
hosts: localhost | |
connection: local | |
gather_facts: False | |
tasks: | |
- name: Server build request | |
local_action: | |
module: rax | |
credentials: ~/.rackspace_cloud_credentials |
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
root@cloudserv:~# raxmon-checks-create --entity-id=enT8WCQUIs --label=clouddbcheck --type=agent.mysql --details="host=<REDACTED>.rackspaceclouddb.com","username=<REDACTED>","password=<REDACTED>","port=3306" | |
Resource created. ID: chV01XMDLx | |
root@cloudserv:~# raxmon-checks-test-existing --entity-id=enT8WCQUIs --id=chV01XMDLx | |
[{u'available': True, | |
u'metrics': {u'core.aborted_clients': {u'data': 36996, | |
u'type': u'L', | |
u'unit': u'clients'}, | |
u'core.connections': {u'data': 2161933, | |
u'type': u'l', |
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
[ | |
{ | |
"name": "Windows Training", | |
"files": [ | |
"file1.txt", | |
"file2.txt" | |
] | |
}, | |
{ | |
"name": "Linux Training", |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Copyright 2013 Rackspace | |
# All Rights Reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may | |
# not use this file except in compliance with the License. You may obtain | |
# a copy of the License at | |
# |
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Copyright 2013 Rackspace | |
# All Rights Reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may | |
# not use this file except in compliance with the License. You may obtain | |
# a copy of the License at | |
# |
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
case node[:platform] | |
when "ubuntu","debian" | |
package( "libxslt-dev" ).run_action( :install ) | |
package( "libxml2-dev" ).run_action( :install ) | |
when "redhat","centos","fedora","scientific" | |
package( "libxslt-devel" ).run_action( :install ) | |
package( "libxml2-devel" ).run_action( :install ) | |
end | |
r = gem_package "rackspace-monitoring" do |
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
if system("dpkg -s libxslt-dev libxml2-dev") | |
r = gem_package "rackspace-monitoring" do | |
version node['cloud_monitoring']['version'] | |
action :nothing | |
end | |
r.run_action(:install) | |
else | |
package "libxslt-dev" do | |
action :install |
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
r = gem_package "rackspace-monitoring" do | |
version node['cloud_monitoring']['version'] | |
action :nothing | |
end | |
pkg_chk_cmd="dpkg -s libxslt-dev libxml2-dev" | |
if `#{pkg_chk_cmd}` | |
r.run_action(:install) | |
end |
NewerOlder