问题标签 [bin]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
883 浏览

visual-studio-2010 - 为什么Visual Studio在重建时从Bin文件夹中删除不相关的程序集

我有一个 asp.net mvc web 应用程序,并且我引用了SharpArch.Web(Sharp Architecture 程序集之一)

当我重建项目并运行它时,抛出一个异常,告诉我(SharpArch.Web)使用的 Bin 文件夹中缺少(Newtonsoft.Json.dll ) ,所以没关系,我复制了它,并且每件事都运作良好。

当我再次尝试重建项目时,再次引发异常,并且(Newtonsoft.Json.dll)程序集被删除??

为什么会这样?Visual Studio 与非引用程序集有什么关系?仅供参考,VS 不会从 Bin 中删除所有内容,只是删除特定程序集!!!

顺便说一句,我不想​​添加对(Newtonsoft.Json.dll)的引用,我不想引用未使用的程序集。

0 投票
1 回答
1333 浏览

c++ - bin 排序的问题

chain<studentRecord>单链表;在 bin 排序中, bin 是指向 a 的指针,bin[arrange +1]其元素为chain<studentRecord>。代码bin[j].erase(i)delete节点ibin[j].get(i)将获得 node 的元素(即 studentRecord)i。代码中,while (!bin[j].empty())是用来清空链的,但是bin[j]不能为空,因为它是一个元素数组,对吗?

谢谢。

0 投票
1 回答
309 浏览

c# - EF Code First w/SQLCE 4 bin 是否可部署?

我计划创建一个使用 EF CodeFirst 和 SQLCE 4.0 的 MVC 页面。这种技术是否可部署/共享托管友好?

我目前正在使用带有 .Net4 的 GoDaddy

0 投票
2 回答
1634 浏览

c - 在二进制文件中寻找模式

我正在用 C 语言开发一个小项目,我必须解析一个未记录文件格式的二进制文件。由于我对 CI 很陌生,所以有两个问题要问一些更有经验的程序员。

第一个似乎很容易。如何从二进制文件中提取所有字符串并将它们放入数组中?基本上我正在寻找 C 中字符串程序的简单实现。

当我在任何文本编辑器中打开二进制文件时,我会得到很多垃圾,其中混入了一些可读的字符串。我可以在命令行中使用字符串提取这些字符串。现在我想在 C 中做类似的事情,就像下面的伪代码一样:

第二个问题稍微复杂一些,我相信它是实现相同目标的正确方法。当我在 HEX 编辑器中查看文件时,很容易注意到一些模式。例如,在每个字符串之前有一个值为 02 (0x02) 的字节,后跟字符串的长度和字符串本身。例如 02 18 52 4F 4F 54 4B 69 57 69 4B 61 4B 69是字符串部分以粗体显示的字符串。

现在我试图创建的功能将像这样工作:

感谢您的任何指示。:)

0 投票
4 回答
1388 浏览

recursion - 返回从不同箱中取出的 n 个对象的所有可能组合的算法

为了使其更具体,我需要一个算法(递归或非递归),给定一个整数 n 和一个矩阵作为输入,它将返回我所有将具有的组合:1)每行至少 1 个对象 2)将总共有 n 个对象

如果我尝试所有组合并使用每行有 n 个对象和 1 个对象的组合,我觉得我可以更轻松地解决这个问题,但我相信该算法可以比这更有效。我还成功编写了一种算法,该算法将返回每行 1 个对象的所有组合,但无法将其扩展为更多。我一直在用 Python 编码,但任何语言都可以。考虑到python每个引用传递对象的额外点。=)

假设矩阵是平方的。如果有人想知道为什么,这是我试图解决的更复杂的图形算法的一部分。

谢谢大家!

0 投票
1 回答
1229 浏览

database - 寻找 Scid 的开书阅读器

我正在尝试使用开放库来实现国际象棋机器人。

我已经从 Scid 下载了一个打开的书文件 ( opening.bin ) 。

是否有可供下载的查看器实用程序?

0 投票
1 回答
483 浏览

wcf - Organizing Assemblies for Several WCF Services in same Domain

Well, the problem is how to organize assemblies for several WCF services hosted in the same domain, when the services might use different versions of the same referenced assemblies?

The thing is, that I have a series of WCF services which are currently hosted in the same domain, but the burden of updating one of these services is overwhelming due to the fact that I cannot be sure not to break other services when doing so. Therefore, it requires that I bring all other services up-to-date with the new version of assembly or assemblies which I am going to publish.

Updating the service - in my case - would be do change one or more assemblies in the bin folder. The problem is that other services might need the same assemblies. I would like to have the possibility of defining subfolders with the name of the service, and in each of these folder have a bin subfolder, the .svc file and all other stuff related to the service. This way I could isolate the service on the same domain.

I have searched for a solution and I have found a blog post by Scott Hanselman about probing, but it seems to apply to .NET 1.1, ASP.NET...

http://www.hanselman.com/blog/PermaLink.aspx?guid=4d0ef4fb-f8ae-4355-a658-3c0432c98dbe

Unfortunately, I cannot make it work for my scenario (.NET 4.0). Furthermore, I am not sure that this would scale the way I need. Even if I could make it work, then is it going to be seperate AppDomains, and if not would that be a problem? I need the complete isolation of the service, but still being hosted in the same domain.

Thanks, Jacob.

Update

Actually, I got a bit further. I tried to put the [ServiceName].svc.cs and the interface into its own project and compile it, and then change the .svc file slightly to reference the assembly just created as described by Hanselman. If I leave out the Import statement also mentioned in his post and doing the other bits aswell, then it actually works.

The only thing is if I have a list of paths, something like...

... then can I be sure that the assemblies used are from the right folder, and not resolved in the order they appear in the list? An example could be if the ProductsService uses the same assembly as TaskService but in a different version, then if the assembly is resolved in the order they appear in the privatePath string above then it would use the wrong assembly I guess? Then it is not completely isolated after all.

If I am right in this assumption, then perhaps strong-naming is the answer?

Thanks again, Jacob.

0 投票
1 回答
1164 浏览

iphone - iPhone垃圾桶可以吸动动画

我正在尝试在我正在构建的 iPhone 应用程序中使用垃圾桶动画。我知道我需要帮助的功能是私有 API,但该应用程序将在内部进行。

根据工具栏页面上的 iPhoneDevWiki,您可以使用[UIToolbar animateToolbarItemIndex:duration:target:didFinishSelector:];.

经过无数小时尝试使用这种方法后,我无法让它发挥作用。到目前为止,我已将其更改为以下内容:[toolbar animateToolbarItemIndex:1 duration:1.0 target:self didFinishSelector:@selector(done:)];.

toolbarUIToolbar我使用编程方式创建的名称CGRectMake

我的垃圾桶按钮图像是 1,因为它是第二个按钮。

我已经尝试过投入,self但它不起作用。niltarget

didFinishSelector只是链接到-(void)done:(id)sender;.

如果我将 更改为不存在的animateToolbarItemIndex东西,控制台会说它不存在。对我有什么问题有任何想法吗?

0 投票
1 回答
323 浏览

arrays - 如何根据极坐标将矩阵划分为一系列 bin

我正在尝试在 Octave/Matlab 中编写一个程序,该程序旨在拍摄图像,对该图像执行 2D 快速傅里叶变换,然后获取 FFT 数据并将其分成一系列箱,从中可以看出平均 FFT 强度进行计算。这些箱需要计算该光谱的每个 5 度段的傅立叶光谱强度:

即想象一个 500x500 的数组,然后将其分成 72 个相等的切片(如切片披萨),每个切片相隔 5 度。然后这些切片形成箱,并计算其中的平均值。

我知道要产生这个,我必须将得到的 FFT 的笛卡尔坐标转换为极坐标,以便我可以使用 theta 的值计算 bin。此外,要将阵列像披萨一样切片,极坐标必须起源于图像的中心。我有一个好主意如何做到这一点,但是一旦我完成了这个,我就被困在如何将阵列分成垃圾箱了。

任何人都可以帮忙吗?假设这个解释是有道理的?

0 投票
1 回答
1310 浏览

c - 调试文件格式混乱:ELF/BIN

我目前正在使用一些 µC 系统,我想更深入地了解下面发生的情况。我目前正在使用 Motorola Coldfire 和 ARM 9。对于这两者,我都使用 GCC 工具链作为交叉编译器!

ELF 文件包含比运行应用程序所需的更多信息!一个 BIN 文件就足够了!我知道 ELF 格式保留了一些额外的信息。它将符号及其在内存中的地址连接起来,对吗?是仅用于软件调试器(例如 GDB)的额外信息还是其中一些信息也传输到了目标设备?因此,如果有断点命中,片上调试器会告诉主机相关地址,软件调试器可以向我显示相关代码部分,而不仅仅是无聊的内存地址?我可以只使用 BIN 文件进行调试吗(好吧,这很愚蠢,但基本上?)?

感谢您对这个主题的一些启示!

想你