shl

记录学习Linux遇到的问题

匿名 (未验证) 提交于 2019-12-02 21:56:30
shl@shl-tx:~$ ifconfig Command 'ifconfig' not found, but can be installed with: sudo apt install net-tools 然后按照错误信息安安装网络工具: sudo apt install net-tools shl@shl-tx:~$ sudo apt install net-tools 正在读取软件包列表... 完成 正在分析软件包的依赖关系树 正在读取状态信息... 完成 之后再输入ifconfig就可就可以用了,不知道为什么,这个按理说应该系统会自动下载的,但是没有 ,不过没事,好在提醒怎么解决了 来源:博客园 作者: 创造卓越人生 链接:https://www.cnblogs.com/tansuoxinweilai/p/11617399.html

Java的新项目学成在线笔记-day13(六)

匿名 (未验证) 提交于 2019-12-02 21:40:30
3.4 测试video.js 参考https://github.com/videojs/videojs-contrib-hls#installation http://jsbin.com/vokipos/8/edit?html,output 1、编写测试页面video.html。 2、测试 配置hosts文件,本教程开发环境使用Window10,修改C:\Windows\System32\drivers\etc\hosts文件 [mw_shl_code=applescript,true]127.0.0.1 video.xuecheng.com[/mw_shl_code]

delphi RGB与TColor的转换

冷暖自知 提交于 2019-11-27 05:09:29
1.RGB转换为Tcolor function RGBToColor(R,G,B: byte): Tcolor; begin Result := B Shl 16 or G shl 8 or R; end; 2.Tcolor转换为RGB proceudre Tform1.Button1Clink(Sender: Tobject); var Color: TColor; R, G, B: integer; begin Color := ClBlack; R := Color and $FF; G := (Color and $FF00) shr 8; B := (Color and $FF0000) shr 16; end; 来源: https://www.cnblogs.com/blogpro/p/11345939.html