sourceforge

white-label collaborative open-source development (e.g. github/sourceforge/google-code in a box)? [closed]

倾然丶 夕夏残阳落幕 提交于 2019-12-24 01:22:26
问题 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 . Does anyone have a recommendation for an open-source or paid (either packaged or SaaS) solution for integrating collaborative development features into your own website? Here's more details: We currently host an online plugin gallery for our product. Users can upload and download plugins. But users can't easily

windows下matplotlib的安装

谁说胖子不能爱 提交于 2019-12-22 15:24:04
在上一篇中我想用matplotlib,无奈一直装不上,就在卸了又装装了又卸,反反复复之后,终于装好了。 初学python,首先就装了numpy,倒也没有多复杂,有需要的朋友可以直接 http://sourceforge.net/projects/numpy/files/NumPy/ 在这里面选择合适的自行下载。 下来就好好说说matplotlib,我是win32,装的是python3.4,就我自己个人的经历与大家分享一下: 1.下载matplotlib: http://sourceforge.net/projects/matplotlib/files/matplotlib/ 在此选择合适的自行下载。 之后再命令行输入:import matplotlib 出现错误:No module name six 表明需要安装scipy。 2.安装scipy: http://sourceforge.net/projects/scipy/?source=typ_redirect 选择合适的之后直接安装,安装之后将python\lib\site-packages\scipy\lib中的six.py、six.pyc、six.pyo三个文件copy到python\lib\site-packages目录下。 完成之后再命令行输入:import matplotlib 出现错误:matplotlib

How do I mirror and synchronize GitHub and SourceForge repositories?

倾然丶 夕夏残阳落幕 提交于 2019-12-21 16:59:17
问题 I have a repository on GitHub and an empty repository at SourceForge. How do I make mirrors and synchronize them? On StackOverflow there is "Mirroring a repository across Github, Sourceforge and Google Code" which explains how to push to multiple repositories, but how do I synchronize them when commits will be in GitHub or SourceForge? 回答1: Keep two separate remote one for google code and another for github. git remote add origin <<your google code repo url>> git remote add github <<your

centos5.x升级至python2.7、mysql-python

落花浮王杯 提交于 2019-12-21 04:25:37
centos5.3的python版本真让人泪奔,什么时代了还2.4的。自己动手丰衣足食。 1.从官网下载2.7版本 # wget http://www.python.org/ftp/python/2.7.1/Python-2.7.1.tar.bz2 2.安装 # tar -jxvf Python-2.7.1.tar.bz2 # cd Python-2.7.1 # ./configure (如不指定 --prefix,默认安装在/usr/local/lib/python2.7) # make && make install 3.升级默认版本 # mv python /usr/bin/python24 # ln -s /usr/local/bin/python2.7 /usr/bin/python 4.安装mysql-python (安装方法不了解可以参看包内的README) # python setup.py build Traceback (most recent call last): File "setup.py", line 5, in < module > from setuptools import setup, Extension ImportError: No module named setuptools 什么情况?貌似setuptools没有 5

SVN+SSH and Sourceforge

眉间皱痕 提交于 2019-12-20 08:39:02
问题 I'm new to both Sourceforge and SVN (SilkSVN on Windows). I managed to check out a project using svn co --username=zeroth123 svn://zeroth123@svn.code.sf.net/p/stddecimal/code/trunk stddecimal-code However, every time I try and use ssh (so I can check in for example) it fails with > svn co --username=zeroth123 svn+ssh://zeroth123@svn.code.sf.net/p/stddecimal/code/trunk stddecimal-code svn: E720087: Unable to connect to a repository at URL 'svn+ssh://zeroth123@svn.code.sf.net/p/stddecimal/code

Migrate from Sourceforge to Github

我只是一个虾纸丫 提交于 2019-12-18 10:55:14
问题 I'm thinking about migrating a project from Sourceforge to Github. Besides the svn to git, what about migrating things like the issue tracker? Is there an easy way to do that? 回答1: I've written a Python script to migrate issues. It's at https://github.com/ttencate/sf2github. Beware: Sunday afternoon software. Use at your own risk, etc. etc. Pull requests welcome! 回答2: For SVN to GitHub part, this is now the easiest way: https://import.github.com/new But it doesn't import issues. 回答3: since I

Migrate from Sourceforge to Github

主宰稳场 提交于 2019-12-18 10:55:12
问题 I'm thinking about migrating a project from Sourceforge to Github. Besides the svn to git, what about migrating things like the issue tracker? Is there an easy way to do that? 回答1: I've written a Python script to migrate issues. It's at https://github.com/ttencate/sf2github. Beware: Sunday afternoon software. Use at your own risk, etc. etc. Pull requests welcome! 回答2: For SVN to GitHub part, this is now the easiest way: https://import.github.com/new But it doesn't import issues. 回答3: since I

布隆过滤器原理及实现

こ雲淡風輕ζ 提交于 2019-12-16 03:37:53
1.布隆过滤器的使用价值 有时候我们需要判断一个元素是否在一个集合中。比如,在字处理软件中,需要检查一个单词是否拼写正确(也就是要判断它是否在已知的字典里);在警察系统中,一个嫌疑人的名字是否出现在嫌疑名单上;在网络爬虫里,一个网址是否已经被访问过,等等。 最直接的方法就是讲集合中的元素存在计算机中,遇到一个新元素时,将它和集合中的元素直接比较即可。一般来讲,计算机中的集合是用哈希表(Hash Table)来存储的。它的好处是快速准确,缺点是耗费存储空间。 为什么说耗费存储空间呢?其根本原因是哈希表方法需要把实实在在的具有特定长度(每个Email地址对应成一个8字节的信息指纹)的元素的信息指纹存储在内存或硬盘中的哈希表中,这个存储量在实际应用中一般是相当大的。比如每存储一亿个Email地址,需要0.8G大小的数字指纹存储空间,考虑到哈希表的存储空间利用率一般只有一半,所以需要1.6G的存储空间。如果存储几十亿上百亿的Email地址,那就需要百亿字节的内存存储空间。 而布隆过滤器只需要哈希表1/8到1/4的大小就能解决同样的问题,它实际上是一个很长的二进制向量和一系列的随机映射函数。 下面以WEB页面地址的存储为例来说明布隆过滤器的工作原理。 假定存储一亿个WEB页面地址,先建立一个16亿二进制(比特),即2亿字节的向量,然后将这16亿个二进制位清零。对于每一个WEB页面地址X

Online DVCS Client

人走茶凉 提交于 2019-12-13 08:40:04
问题 Okay, I have been grasping as all sorts of solutions to my problems with questions like Recommended DVCS mechanism for hosting many independent patches and Using Mercurial patch queue repository on BitBucket for many users and patches, but hopefully this will be the last question I need to ask about how to establish source control for my project described at https://sourceforge.net/p/iotabuildit/wiki/Home/. Then I can accept some answer on my other questions and move on. The requirements I am

Eclipse在线安装http://propsorter.sourceforge.net/ve...

送分小仙女□ 提交于 2019-12-12 20:27:03
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> Velocity Eclipse 插件 http://propsorter.sourceforge.net/veloeclipse 在Eclipse的Help->Install New Software... 点击“Add加 Veloeclipse,值:http://propsorter.sourceforge.net/veloeclipse, 但是无法finish, 后来发现是 Eclipse 的问题,只要在安装插件的界面中把 Group Items by Catagory 前打钩去掉就可以了。 调查下来一共找到四个插件,其中一个叫veloedit,一个叫velocitywebedit,另外两个都叫veloeclipse,不过确实是两个不同的插件,一个在google code上,一个在sourceforge上。详细信息可以看参考资料。 功能简介 1. veloedit 1.0.2 Syntax-highlight for Velocity Template Language (VTL) Outline view with hierarchy of VTL directives and Velocimacro references Content assist for VTL directives and