会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
etfolinBase
外星人已经返回基地了
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
下一页
2023年8月4日
C语言.多级指针
摘要: #include <stdio.h> #include <stdlib.h> int main() { long aa = 123; long aaa = &aa; // warning: initialization of ‘long int’ from ‘long int *’ makes in
阅读全文
posted @ 2023-08-04 12:46 etfolin
阅读(72)
评论(0)
推荐(0)
2023年8月2日
C语言.字符串变量
摘要: #include <stdio.h> #include <stdlib.h> #include <string.h> char * title= "web 数学 算法 是不是空间不够长"; int str_comparer() { // 字符串是个指向字符串开头的指针 char * tt1 = "a
阅读全文
posted @ 2023-08-02 12:37 etfolin
阅读(124)
评论(0)
推荐(0)
2023年4月13日
utf-8@Python
摘要: with open('1.txt',"w") as fff: print(fff) 测试print()函数的file参数时,不小心弄出来一个<_io.TextIOWrapper name='1.txt' mode='w' encoding='cp936'> 才知道原来‘GB2312’原来是系统中第9
阅读全文
posted @ 2023-04-13 13:22 etfolin
阅读(84)
评论(0)
推荐(0)
print的flush参数
摘要: 如果print的end参数只要不是换行,默认就会攒到换行再一起输出。 除非flush设置为True,那么就不换行也输出了。 除了做这个加载器,还有什么用处呢? # 来自菜鸟的example import time print(" RUNOOB EXAMPLE : Loading 效果 ") prin
阅读全文
posted @ 2023-04-13 12:29 etfolin
阅读(106)
评论(0)
推荐(0)
2023年3月25日
Ubuntu 安装JAVA
摘要: # Install OpenJDK sudo apt update sudo apt install default-jdk # Java Runtime Environment, 这个似乎包含在上一步骤里了。 sudo apt install default-jre java -version #
阅读全文
posted @ 2023-03-25 00:14 etfolin
阅读(79)
评论(0)
推荐(0)
2023年3月22日
在vscode中添加conda终端
摘要: 正常安装了miniconda和vscode后,在vscode中没有conda的terminal配置和终端选项。 从开始菜单找到conda powershell的快捷方式文件,打开其属性,复制目标一栏的内容,分成两段,一段是powershell可执行文件的路径,一段是运行conda配置的参数。填写到v
阅读全文
posted @ 2023-03-22 14:27 etfolin
阅读(2411)
评论(0)
推荐(0)
2022年10月15日
在特定目录中切换“终端”与“访达”
摘要: 终端进入访达 在某个目录中执行 open . 即可用访达打开该目录 访达进入终端 方法1 将文件或者文件夹拖拽至终端窗口 方法2 访达app的菜单项目:‘访达’->'服务'->'服务偏好设置' 勾选并设置:'服务'->'快捷键'->'新建位于文件夹位置的终端标签页(窗口)' 原文地址:https:/
阅读全文
posted @ 2022-10-15 22:46 etfolin
阅读(377)
评论(0)
推荐(0)
2022年7月3日
在命令行如何查看有哪些分区
摘要: 可能是因为刚用电脑就有了window,所以从来不知道如何用命令行查看都有哪些分区。ubuntu可以在/media目录下ls查看都加了什么U盘,但在windows里就还得打开资源管理器,太麻烦了。查了一下,有三种情况。 cmd wmic logicaldisk get name / wmic logi
阅读全文
posted @ 2022-07-03 14:58 etfolin
阅读(382)
评论(0)
推荐(0)
2022年5月29日
Flex Box & Grid Layout
摘要: 它俩的专业称呼叫“Interface Layout Models”。相比之下,以前用的table和浮动就没它俩个专业。 table就不用说了,那个应该叫“Infomation Layout Model”。 float呢,应该叫“Structure Layout Toolkits”……还是什么。
阅读全文
posted @ 2022-05-29 12:30 etfolin
阅读(40)
评论(0)
推荐(0)
2022年5月7日
Ubuntu 18 安装拼音输入法
摘要: sudo apt-get install ibus ibus-clutter ibus-gtk ibus-gtk3 ibus-qt4 im-config -s ibus sudo apt-get install ibus-pinyin sudo ibus-setup 然后注销,重新登录后,在“设置”
阅读全文
posted @ 2022-05-07 16:52 etfolin
阅读(225)
评论(0)
推荐(0)
上一页
1
2
3
4
下一页
公告