projects

Should I use a software hosting solution for my personal projects?

…衆ロ難τιáo~ 提交于 2019-12-12 11:55:43
问题 Right now, I keep all of my projects on my laptop. I'm thinking that I shouldn't do this, but instead use a version control system and check them in/out from an external hosting repository (Google Code, SourceForge, etc). I see several benefits here - first, I don't have to worry about losing my code if my computer crashes and burns or my external HDD crashes and burns; second, I can share my code with the world and perhaps even get more help when I need it. Is this a good idea? If so, what

In TFS, how can I share source files in different location, in same machine, without sharing the full project

梦想的初衷 提交于 2019-12-12 05:39:35
问题 I want to publish some sample code for peoples, for example in CodeProject. But some source files (.cs files) are part of a large library that I don't want to publish completely. How I can, in TFS 2012, share source files (.cs files) between 2 different projects (different location). That would let me update source as it would be updated by 2 different users, kind of. I heard about Workspace but I'm not sure if it is the way to go and how I should do that? I do not want to branch in order to

building safe search engine for kids?

早过忘川 提交于 2019-12-11 06:38:46
问题 my project this year : build safe search engine for kids so i need some info about : 1- where to find some studies , papers about this topic ? 2- how to make use of open source tools ? 3- what the technologies that i need to learn for my project ? and some advices please thanks . update : safe mean that when kids search for any thing they dont see results about (pornography) 回答1: Your solution will be a generalization of spam filters for email. You can either write a rule-based solution or

Delphi: How to set the default project in a project group?

我是研究僧i 提交于 2019-12-11 03:41:53
问题 i have two projects in a project group: ProjectA ProjectB Whenever i open the ProjectGroup.bpg in Delphi, it always starts with the 2nd project as the active one: ProjectA ProjectB And every time i have to flip it to the the "real" project: ProjectA ProjectB How can i make ProjectA the default project that opens with the project group? ProjectGroup.bpg #------------------------------------------------------------------------------ VERSION = BWS.01 #--------------------------------------------

Does Github auto backup our projects into globally spread mirrors, like SourceForge?

Deadly 提交于 2019-12-08 11:45:14
问题 I am talking about this: "SourceForge.net maintains a geographically-distributed network of mirror servers, which receive copies of the files and dispense them to users." So, does github has the same automatically mirrored backup of our projects and files? I am having big trouble trying to find that information. 回答1: Yes, it is called DGit for Distributed Git: As many readers already know, Git itself is distributed—any copy of a Git repository contains every file, branch, and commit in the

How to compile and run a C file in CodeBlocks which is outside a project?

跟風遠走 提交于 2019-12-07 23:10:21
问题 I have opened a project in CodeBlocks, which builds and runs successfully. Now if I open another C file in the IDE, the build and run command will act on the existing open project and not on the new C file. If there were multiple projects, we can switch between them using " activate project" . But what if there is one active project and another C file outside the project. How to complile and run the C file then ? 回答1: Under the Projects tab on the left, right- click on your project and click

Project with multiple binaries in Eclipse CDT

半城伤御伤魂 提交于 2019-12-07 16:47:14
问题 I think it is quite normal to have more than one binary in a project. However, with Eclipse CDT I don't know how to set up the IDE to get things done. I know I can create several projects - one per binary. And I know I can set the dependencies per project. However, I cannot regard them as one project in Eclipse. If I'd like to share the code with a version control system (like svn), each developer has to import the projects separately. What I miss is something like the Solution (sln file) in

How to compile and run a C file in CodeBlocks which is outside a project?

冷暖自知 提交于 2019-12-06 12:06:35
I have opened a project in CodeBlocks, which builds and runs successfully. Now if I open another C file in the IDE, the build and run command will act on the existing open project and not on the new C file. If there were multiple projects, we can switch between them using " activate project" . But what if there is one active project and another C file outside the project. How to complile and run the C file then ? Under the Projects tab on the left, right- click on your project and click Close project . Do this for all projects that are open. Now, if your C file is open, just press F9 to

How to rename a project in XCode?

随声附和 提交于 2019-12-06 05:29:05
问题 There are some pretty horrible instructions out there for renaming projects in XCode. Is there no easy way to do this? 回答1: In Xcode 4 try this: ⌘+1, click the blue node with the project name, wait a second, click again (the name becomes editable). That's it. 回答2: In the menu bar choose Project -> Rename... It'll do all the hard work for you and rename everything that needs renaming apart from the folder that the project is in. 回答3: In XCode 4, select the project name at the top of the

Visual Studio: Add same project or reference to different solutions

旧时模样 提交于 2019-12-06 01:21:18
I am trying to set up my Visual Studio projects. I have a generic project (say SharedProj) that has all the constants, common classes. SharedProj will be referenced by two other solutions (say SolnA, SolnB), but potential more in the future. There are two ways I can think of: I can add SharedProj to both SolnA and SolnB. Or I can add the SharedProj.dll to the References in both SolnA and SolnB. Since this is my first time working on a solution that references other projects/solutions, is one way preferred than the other? By the way, is there any easy way to rename a variable name in SharedProj