1 http://roxik.com/pictaps/index.html
可以自己画个小人~3d效果~小人还可以跳舞~超级可爱~非常喜欢~强烈推荐!
2 http://www.imagechef.com/ic/product.jsp
可以在线制作可爱的图片~动态~bling~恩~这个站的图还都是很可爱的呢~比较创意
3 http://pic.sdodo.com/tool/hphoto/
在线制作大头帖~图片样式很多~喜欢照大头贴的女生要看呢~
4 http://www.25shots.com/v2/
这个可以连拍25张~在家就可以拍大头帖~只要有摄像头就ok
5 http://atom.smasher.org/
制作有意思的图片~哈哈~有个可以做error吓唬下别人~
6 http://www.typorganism.com/asciiomatic/
这个特震~可以把照片转化成字符~自己看看吧~哈哈“厉害~不过对图片有要求~必须是60×50的JPG图象“非常可爱“
7 http://www.garfield.com/fungames/comiccreator.html
制作关于你的加菲猫三格漫画~可爱~
8 http://www.zhaoip.com/pick/sitetu/a222.swf
做一个自己的漫画形象~特别有意思~我巨喜欢~
9 http://flashface.ctapt.de/
画个肖像吧~哈哈`其实不用画~只要随便选选就出来一副震撼的素描了~
10 http://snowflakes.lookandfeel.com/
在线剪纸~可以做雪花~很可爱的呢~
11 http://www.timenetsule.com/zh/index.php
时空胶囊~可以永远保存你的想法和感觉~
12 http://www.megamonalisa.com/
被恶搞的蒙娜丽莎小姐好可怜~
13 http://www.shakeskin.com/Shakeskin/Gallery/Shaken/
展示自己的鬼脸~哈哈`~好逗~~
14 http://www.solidworkspilot.com/
在线做一个纸飞机~比较有技术含量~我最多飞过20米~HOHO`
15 http://www.whereihadmyfirstkiss.com/
你的初吻在哪里?哈哈~写在这个地图上吧~还可以看看别人的故事!
16 http://udiab.com.cn/gxbd/
写上自己的名字~就可以拥有一个自己的百度~非常好~
17 http://cubii.toyak.com/
在线搭积木~无聊的时候可以玩下
18 http://artpad.art.com/artpad/painter/
在线画油画~很象的说!恩`还可以选画框
19 http://www.baigoogledu.com/
这个超强悍的~百度google~一起用~厉害~
20 http://www.latteart.nl/fotos_etching.asp
world of latte 咖啡的艺术
21 http://color.slightlyblue.com/
用颜色搜索图片!和flickr好像差不多~
22 http://www.touregypt.net/ename/
看看你的埃及名字~哈哈`~挺好玩的~不过不支持中文~就用拼音吧
23 http://www.paulsadowski.org/BirthDay.asp
计算你的生日~好多信息!很有意思!看不懂可以在线翻译下~
24 http://www.kenbrashear.com/
在线架子鼓~来玩会
25 http://www.bloodyfingermail.com/
血书~吓我一跳~啊~震~很逼真
26 http://www.arnelefant.de/iclip.html
设计很可爱~^_^`手脚混音!有意思~
27 http://rumandmonkey.com/widgets/toys/namegen/969
测试你的日本名字!哈哈`
28 http://www.pentrix.com/
教你怎么转笔!~牛~
29 http://www.iiiiiiii.com/
iii网站`^_^“这个网站主要就只会唱自己的域名`不过还是蛮好听的
30 http://www.futureme.org/
给未来的自己写封信~恩`还是很有意义的~
此篇文章原创自:30个适合女生玩的可爱网站推荐给各位GGMM
转载自:Did you know… How to build a solution from the command line
建议使用Visual Studio 2005 Command Prompt来运行所有的命令
你可以从开始菜单-> 所有程序 –> Microsoft Visual Studio 2005 –> Visual Studio Tools来运行Visual Studio 2005 Command Prompt,这样你就不需要担心怎么设置正确的环境变量,比如PATH
试试输入Devenv /?
从命令行的输出,你可以看到这个命令的帮助,你需要用这些来进行编译
在命令行的帮助,你可以看到这个示例:
devenv solutionfile.sln /build solutionconfig [ /project projectnameorfile [ /projectconfig name ] ]
上边的命令可以简化为:
devenv <solutionname> /build
你同样可以制定解决方案(Solution)的配置和工程配置。你可以使用Build->Configuration Manager来创建一个新的工程和解决方案的配置来进行编译。例如:
devenv <solutionname> /build "Debug|Any CPU" /project <projectname> /projectconfig “Debug|Any CPU”
最后一点,你可以指定将编译的日志写在什么地方:
devenv <solutionname> /build "Debug|Any CPU" /project <projectname> /projectconfig “Debug:Any CPU” /out <filename>
转载自:Did you know… you can resize the statement completion window? - #059
是的,你可以往任意方向调整‘自动完成’窗口的大小:
![]()
注:
转载自:Did you know… How to use Project Templates
什么是工程模板(Project Templates)?
工程模板就是一个简单的工程,你可以使用它创建一个新的工程,比如:Windows Applications, Class Libraries, WebSites等等。对Visual Studio2005 (开发代号Whidbey)中,模板作为一个单独Zip文件存储在硬盘上。Visual Studio会默认安装一些模板在:<Program Files>\Microsoft Visual Studio 8\Common7\IDE\ProjectTemplates 和 <Program Files>\Microsoft Visual Studio 8\Common7\IDE\ItemTemplates
对于用户(任何人)创建的模板,存储在My Documents\Visual Studio 2005\Templates. 如果你想添加一个用户创建的模板到VS的模板列表,你需要做:
1. 拷贝模板(一个模板的Zip文件)到默认的位置(针对不同VS语言版本可能不太一样)
2. 在命令行(VS的命令行)运行devenv /installvstemplates
注:貌似拷贝到My Documents\Visual Studio 2005\Templates就可以用了
Visual Studio2005也支持内含多个工程的模板,你可以到Craig’s的博客来详细了解:
http://blogs.msdn.com/craigskibo/archive/2004/10/08/240134.aspx
怎么创建用户模板?
一个最简单的方式就是使用‘导出模板向导’。首先,创建一个Class Library工程,然后给工程添加一个图标(这一步其实你可以做任何事情,你对工程做的任何改变都会保存在模板中)。然后点击菜单‘文件->到处模板。向导首先会问你是否要创建一个工程模板还是Item模板。它还会询问你希望基于那个工程来创建这个模板。下一个页面我们可以自定义我们的工程模板,我们可以修改工程模板的名称和描述,还有一个选项问你是否立即导入模板到Visual Studio中(其实也就是自动拷贝模板文件到My Documents\Visual Studio 2005\My Exported Templates to My Documents\Visual Studio 2005\Templates\Project Templates),设置好其它选项,按完成按钮,工程模板就创建好了。
.vstemplate文件中有什么?
注:当我们解压工程模板的zip包后,可以看到整个工程的所有文件,区别于正常的工程,这里多了一个.vstemplate文件,
下边我们来看一下这个文件是做什么用的
这个.vstemplate是特定于你这个工程模板的xml文件,它包含了比如模板的名称、描述等,第二部分包含了一些引用了什么文件的信息。
下边是一个典型的.vstemplate文件(我自己创建的,工程名字是AUTDefinition):
1: <VSTemplate Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Project">
2: <TemplateData>
3: <Name>AUTDefinition</Name>
4: <Description>Create the AUT definitioin class library</Description>
5: <ProjectType>CSharp</ProjectType>
6: <ProjectSubType>
7: </ProjectSubType>
8: <SortOrder>1000</SortOrder>
9: <CreateNewFolder>true</CreateNewFolder>
10: <DefaultName>AUTDefinition</DefaultName>
11: <ProvideDefaultName>true</ProvideDefaultName>
12: <LocationField>Enabled</LocationField>
13: <EnableLocationBrowseButton>true</EnableLocationBrowseButton>
14: <Icon>__TemplateIcon.ico</Icon>
15: </TemplateData>
16: <TemplateContent>
17: <Project TargetFileName="UICalculator.csproj" File="UICalculator.csproj" ReplaceParameters="true">
18: <ProjectItem ReplaceParameters="true" TargetFileName="AUT.cs">AUT.cs</ProjectItem>
19: <Folder Name="Properties" TargetFolderName="Properties">
20: <ProjectItem ReplaceParameters="true" TargetFileName="AssemblyInfo.cs">AssemblyInfo.cs</ProjectItem>
21: </Folder>
22: </Project>
23: </TemplateContent>
24: </VSTemplate>