在Windows Phone 7上获取GPS坐标

如何获得Windows Phone 7上当前的GPS坐标?

为什么“python setup.py sdist”在项目根目录下创build不需要的“PROJECT-egg.info”?

当我跑步 python setup.py sdist 它在我的./dist目录下创build一个sdist。 这包括我的“dist”文件夹中的“PROJECT-egg.info”文件,我不使用它,但它不会伤害到我,所以我忽略它。 我的问题是为什么它也会在我的项目根目录中创build一个“PROJECT-egg.info”文件夹? 我可以让它停止创build这个? 如果不是,我可以在创buildsdist后立即删除它吗? 我正在使用从setuptools导入的“设置”function。 WindowsXP,Python2.7,Setuptools 0.6c11,分发0.6.14。 我的设置configuration如下所示: {'author': 'Jonathan Hartley', 'author_email': 'tartley@tartley.com', 'classifiers': ['Development Status :: 1 – Planning', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: Microsoft :: Windows', 'Programming Language :: Python :: 2.7'], 'console': [{'script': 'demo.py'}], 'data_files': [('Microsoft.VC90.CRT', ['..\\lib\\Microsoft.VC90.CRT\\Microsoft.VC90.CRT.manifest', '..\\lib\\Microsoft.VC90.CRT\\msvcr90.dll'])], […]

通过lxml的属性查找元素

我需要parsing一个XML文件来提取一些数据。 我只需要一些具有某些属性的元素,下面是一个文档示例: <root> <articles> <article type="news"> <content>some text</content> </article> <article type="info"> <content>some text</content> </article> <article type="news"> <content>some text</content> </article> </articles> </root> 在这里我只想得到types为“新闻”的文章。 什么是最有效和优雅的方式来做到这一点与lxml? 我尝试了查找方法,但它不是很好: from lxml import etree f = etree.parse("myfile") root = f.getroot() articles = root.getchildren()[0] article_list = articles.findall('article') for article in article_list: if "type" in article.keys(): if article.attrib['type'] == 'news': content = article.find('content') […]

我怎样才能得到删除分支在git?

我正在尝试将git用于我们的软件开发。 我发现如果我在git中删除一个分支,我可能永远失去我的代码。 这让我感到惊讶。 我认为,作为一个版本控制系统,它应该能够让我做任何事情(甚至是愚蠢的),而不用担心损害我的工作。 以下步骤是我所做的: 初始化一个git仓库。 提交数据库的一些更改。 开关/结帐当前工作目录首先提交。 删除主分支。 那么我失去了所有的作品,我不能相信我所看到的。 这是真的吗? 如果我在编码时喝醉了。 我可能会在git中丢失代码。 问题是如何回滚删除分支的操作​​? 或者,我怎样才能得到所有的历史,甚至在日志中消失的东西?

如何使用仪器在控制台应用程序中查看NSLog()

我正在使用仪器分配,但希望看到我的NSLog消息。 在他们提到的另一篇文章里面看看/ Applications / Utilities / Console中的消息。 我似乎无法发现其中的任何一个。 打开控制台应用程序后,你会看到哪里?

JQuery错误:未捕获TypeError:对象#<HTMLDocument>没有方法'准备'

我的网站在javascript控制台中出现这个标题的错误。 谷歌似乎说,这是因为jquery没有加载,但它是肯定可见的头。 <script type="text/javascript"> $(document).ready(function(){ $.ajax({ type: "GET", url: "https://www.mjfreeway.com/naturalremedies/mml-connect/45.xml", dataType: "xml", success: function(xml) { $(xml).find("products").each(function() { $(this).find("product").each(function() { $("#output").append($(this).find("title").text() + "<br />"); }); }); } }); }); </script> 该网站是医用大麻有关,所以nsfw为some.sorry为凌乱的头,它是在开发模式。 http://www.kindreviews.com/1/mmc/ 谢谢,zeem

应用因“缺失推送通知权利”而被拒绝

最近我的应用程序被上传时被拒绝。 苹果审查小组说我的应用程序是“丢失推送通知权利” 这是他们提供的信息: 缺less推送通知权利 – 您的应用程序向Apple推送通知服务注册,但应用程序签名的权利不包括所需的“aps-environment”权利。 确保您已为此应用启用了推送通知服务,并且您已经下载了包含“aps-environment”权利的发布configuration文件。 我的应用程序的早期版本用于推送通知,我的应用程序二进制文件从来没有因此被拒绝。 我应该在这里做什么?

如何定义一个实现接口的generics类并约束types参数?

class Sample<T> : IDisposable // case A { public void Dispose() { throw new NotImplementedException(); } } class SampleB<T> where T : IDisposable // case B { } class SampleC<T> : IDisposable, T : IDisposable // case C { public void Dispose() { throw new NotImplementedException(); } } 情况C是情况A和情况B的组合。这可能吗? 如何使案例C正确?

从模块中的函数内访问模块级variables

我希望能够做到这样的事情: #mymodule var = None def load(): var = something() 其他模块: #secondmodule import mymodule mymodule.load() #thirdmodule from mymodule import var print var #Shouldn't be None 但我不知道如何从模块中定义的函数引用模块variables。 这可能吗? 或者我需要在每个我不想使用这个地方的全球声明。 还是我在这个完全错误?

如何解决在iis 7中,错误不能添加typesadd的重复收集条目和唯一键属性“值”

我创build了一个asp.net网站,并在iis 7中发布。我删除了iis 7的默认网站选项,并在iis 7中创build了新网站。当我点击默认文档时,我得到了错误,如“错误不能添加重复typesadd的集合条目将唯一键属性“值”设置为index.aspx“。 我在我的web.config文件中使用了下面的代码。 <?xml version="1.0"?><configuration> <configSections> <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/> <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"> <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/> <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" […]