open-source

Is there a opensource dialect of VB6? [closed]

旧时模样 提交于 2019-12-21 10:34:55
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . There is a false rumor circulating on Twitter than VB6 had been released as opensource. Before the rumor, I didn't care, but now I've got VB6 nostalgia and think it would be cool to try to write some code in VB6 again, especially if it didn't involve installing VS6 So far I've found the Mono implementation of VB

Where to find a reliable K-medoid(Not k-means) open source software/tool? [closed]

非 Y 不嫁゛ 提交于 2019-12-21 07:44:41
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I am learning the K-medoids algorithm so I am sorry if I ask inappropriate questions. As I know,the K-medoids algorithm implements a K-means clustering but use actual data points to be centroid instead of mathematical calculated means. As I googled online, I found a lot of k-means tools such as GenePattern,

Where to find a reliable K-medoid(Not k-means) open source software/tool? [closed]

一世执手 提交于 2019-12-21 07:44:08
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I am learning the K-medoids algorithm so I am sorry if I ask inappropriate questions. As I know,the K-medoids algorithm implements a K-means clustering but use actual data points to be centroid instead of mathematical calculated means. As I googled online, I found a lot of k-means tools such as GenePattern,

Good open-source bug tracking / issue tracking sofware for Windows [closed]

走远了吗. 提交于 2019-12-21 07:34:26
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . Besides the painful-to-install non-Windows Bugzilla, what open-source issue tracking programs can be recommended that are just as good

log4net doesn't pass verification when compiling

笑着哭i 提交于 2019-12-21 07:17:07
问题 https://github.com/apache/log4net I am compiling log4net from the source above, but it doesn't pass verification: [IL]: Error: [log4net.dll : log4net.Plugin.RemoteLoggingServerPlugin::Attach][offset 0x00000029] Method is not visible. Code is ok: public interface ILoggerRepository { ... } public interface IPlugin { void Attach(ILoggerRepository repository); } public abstract class PluginSkeleton : IPlugin { public virtual void Attach(ILoggerRepository repository) { } } public class

generic Enumeration to Iterable converter [closed]

蓝咒 提交于 2019-12-21 06:46:38
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . HttpServletRequest is using a lot of java.util.Enumeration. I would like to use them in for-each, so i need to convert them into interable. this is not a problem, but I since I have more than one project needing this I need a library to do this. I would rather not make my own - is there any standard library that

Are there any open-source spreadsheet implementations in Smalltalk which are used for production level work? [closed]

时光毁灭记忆、已成空白 提交于 2019-12-21 05:31:27
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . If nothing exists matching this description, what's the closest I can get? 回答1: Option 1) In Pharo 1.4 or 2.0 I have used SGrid (a.k.a GridMorph) to display hundreds of rows without major performance problems. Install Menu -> Tools -> Configuration Browser -> MorphicGrid (Install) Example | matrix grid rows cols

Correct workflow for managing a private Subversion fork:

血红的双手。 提交于 2019-12-21 04:59:36
问题 There is an open source project I would like to fork. It has a public SVN repository from which I would like to check out the source, clone it into my private repository, and begin making changes. If possible I would like to be able to merge changes from the upstream repository in the future. So far I've been able to do it like so: Create a folder for this project in my own repository. Check out this empty folder. Check out the original project into another location. Delete all .svn

FOSS tools for Flash development [closed]

房东的猫 提交于 2019-12-21 03:35:12
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I'm looking into doing some development for Flash. Do I need to buy expensive commercial tools or are there some FOSS tools out there I can get started with? Clearly there are a lot of tools out there, but are they good enough to actually get work done? What would I be missing by avoiding the commercial or

Is there an open-source c/c++ implementation of IEEE-754 operations? [closed]

余生长醉 提交于 2019-12-21 03:33:30
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I am looking for a reference implementation of IEEE-754 operations. Is there such a thing? 回答1: I believe the C libraries SoftFloat and fdlibm are suitable for what you are looking for. Others include Linux (GNU libc, glibc) or *BSD libc's math functions. Finally, CRlibm should also be of interest to you. Ulrich