代码改变世界

pythonlinux配置环境变量

2018-06-23 00:15 by 陈徐永, 3397 阅读, 0 推荐, 收藏, 编辑
摘要:虚拟环境为什么要装虚拟环境?由于开发环境的不同,会造成很多版本差异,为了方便管理和使用版本,所以,我们使用虚拟.为什么要用pip3安装?pip默认的安装路径是python2.7,pip3默认安装的路径是python3.5.2sudo apt install python3-pip如果提示版本需要升级 阅读全文

unity发布到安卓的步骤

2018-06-23 00:13 by 陈徐永, 331 阅读, 0 推荐, 收藏, 编辑
摘要: 阅读全文

u3d发布到安卓的步骤

2018-06-23 00:10 by 陈徐永, 236 阅读, 0 推荐, 收藏, 编辑
摘要: 阅读全文

Tcp和UDP的实现

2018-06-22 15:58 by 陈徐永, 419 阅读, 0 推荐, 收藏, 编辑
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Net ;using System.Net .Sockets;using System.Text;using System.Threading;u 阅读全文

值得多看的开源项目

2018-06-22 15:11 by 陈徐永, 150 阅读, 0 推荐, 收藏, 编辑
摘要:https://blog.csdn.net/u010445505/article/details/78912997 阅读全文

传智播客下载地址

2018-06-17 22:11 by 陈徐永, 397 阅读, 0 推荐, 收藏, 编辑
摘要:我的简介就是教程地址https://pan.baidu.com/mbox/homepage?short=nwTy6Lj 阅读全文

c语言的入口

2018-06-17 12:28 by 陈徐永, 406 阅读, 0 推荐, 收藏, 编辑
摘要:// ConsoleApplication1.cpp: 定义控制台应用程序的入口点。// #include "stdafx.h"#include <stdio.h>#include <stdlib.h> int main(){ printf("hello world\n"); system("pau 阅读全文

ubuntu 跟新的地址

2018-06-16 23:37 by 陈徐永, 159 阅读, 0 推荐, 收藏, 编辑
摘要:http://mirrors.163.com/.help/sources.list.trus 阅读全文

用VS 写c++ 的第一个hello world

2018-06-16 12:46 by 陈徐永, 918 阅读, 0 推荐, 收藏, 编辑
摘要:// ConsoleApplication3.cpp: 定义控制台应用程序的入口点。// #include "stdafx.h"#include<cstdlib>#include <iostream>using namespace std; int main(){ printf("kkkk"); i 阅读全文

向量单位化

2018-06-12 10:59 by 陈徐永, 614 阅读, 0 推荐, 收藏, 编辑
摘要: 阅读全文