上一页 1 2 3 4 5 6 7 8 9 ··· 27 下一页
摘要: 1. 安装ruby 1.1 下载地址 "ruby官网" https://rubyinstaller.org/downloads/ RubyInstaller是一个在Windows下的安装程序,用来安装Ruby语言的开发工具和运行环境支持。同时还包含帮助文档等。 1.2 更改源下载地址 更改为国内源下 阅读全文
posted @ 2019-11-09 08:12 yasepix 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 简单实现elementui的el container布满全屏 简单实现elementui的el container布满全屏 在使用elementui的布局元素的时候,会遇到一个问题,那就是照着官方文档弄出来的布局元素不能实现满屏。 我们从官方文档拷贝实现的效果如图: 很显然,这不是我们想要的效果,我 阅读全文
posted @ 2019-10-16 11:31 yasepix 阅读(10569) 评论(0) 推荐(4) 编辑
摘要: 安装apue.h 2017 05 30 13:59:09 水落 阅读数 551更多 分类专栏: Unix环境高级编程 版权声明:本文为博主原创文章,遵循 CC 4.0 BY SA 版权协议,转载请附上原文出处链接和本声明。 本文链接:https://blog.csdn.net/u013961718/ 阅读全文
posted @ 2019-09-29 22:39 yasepix 阅读(266) 评论(0) 推荐(0) 编辑
摘要: Table of Contents 1 编译器整体设计与实践 1.1 龙书 – 《Compilers Principles,Techniques, & Tool》 1.2 虎书 – 《Modern Compiler Implementation in C》 1.3 《Engineering a Co 阅读全文
posted @ 2019-09-20 11:46 yasepix 阅读(1196) 评论(0) 推荐(0) 编辑
摘要: ```asm ORG 0000H SJMP START ORG 0030H START: MOV SP,#60H MOV P0,#0FFH MAIN: CLR P0.7 CALL DELAY SETB P0.7 CALL DELAY SJMP MAIN DELAY: MOV R0, #250 D2: MOV R1, #250 D1: DJ... 阅读全文
posted @ 2019-09-17 17:10 yasepix 阅读(138) 评论(0) 推荐(0) 编辑
摘要: http://www.tutorialspoint.com/computer_logical_organization/complement_arithmetic.htm https://www.cnblogs.com/PI3141592657/p/7134474.html 大学上过计算机原理课程的 阅读全文
posted @ 2019-09-09 12:09 yasepix 阅读(1513) 评论(0) 推荐(0) 编辑
摘要: 《轻松学C语言》视频01:第一个C语言程:http://v.youku.com/v_show/id_XNTMzMjY4Mzg4.html 《轻松学C语言》视频02:数据的表示:http://v.youku.com/v_show/id_XNTMzOTM5MTY0.html 《轻松学C语言》视频03:程 阅读全文
posted @ 2019-09-04 09:16 yasepix 阅读(321) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "math" ) func main(){ binStr := subtractionOfPowers(1234321) fmt.Println(binStr) binStr = div2(1234321) fmt.Println(binStr 阅读全文
posted @ 2019-08-28 11:06 yasepix 阅读(150) 评论(0) 推荐(0) 编辑
摘要: https://gstreamer.freedesktop.org/documentation/installing/on windows.html?gi language=c It is the application's responsibility to ensure that, at run 阅读全文
posted @ 2019-08-07 22:09 yasepix 阅读(1151) 评论(0) 推荐(0) 编辑
摘要: 使用docker compose 大杀器来部署服务 上 https://www.cnblogs.com/neptunemoon/p/6512121.html 我们都听过或者用过 docker,然而使用方式却是仅仅用手动的方式,这样去操作 docker 还是很原始。 好吧,可能在小白的眼中噼里啪啦的对 阅读全文
posted @ 2019-07-10 22:09 yasepix 阅读(649) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 27 下一页