首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏Niuery的技术日记

    Learning by teaching --- 费曼学习法

    由上图可以看出,Learning by teaching 可以说是学习效率最高的方式。

    82220编辑于 2023-10-22
  • 来自专栏Niuery的技术日记

    Learning by teaching --- 费曼学习法

    由上图可以看出,Learning by teaching 可以说是学习效率最高的方式。

    56710编辑于 2023-10-22
  • 来自专栏人工智能前沿讲习

    448页伊利诺伊大学《算法》图书【附PDF资料】

    全书下载(第0版,2018年12月,共448页) ---- 单页排版(适用于电脑屏幕观看): http://jeffe.cs.illinois.edu/teaching/algorithms/book/ /teaching/algorithms/book/03-dynprog.pdf 4、贪心算法(Greedy Algorithm)(28页) http://jeffe.cs.illinois.edu/teaching /teaching/algorithms/notes/98-induction.pdf 附录II.解决复发问题(22页) http://jeffe.cs.illinois.edu/teaching/algorithms /teaching/algorithms/models/0-cover.pdf 1、字符串(Strings)(17页) http://jeffe.cs.illinois.edu/teaching/algorithms 原文链接地址:http://jeffe.cs.illinois.edu/teaching/algorithms

    1.4K30发布于 2020-05-11
  • 来自专栏Base_CDNKevin

    [Git] 分布式版本控制 & 远程仓库协作

    Cloning into 'git_teaching'... # 正在克隆到 git_teaching 文件夹 Username for 'https://gitee.com': zz91 # 可能会让你输入用户名和密码 # 进入克隆下来的仓库目录 zz@139-159-150-152:~$ cd git_teaching/ # 查看里面的文件,就是远程仓库的文件 zz@139-159-150-152:~/git_teaching # 查看并进入目录 zz@139-159-150-152:~$ ls gitcode git_teaching zz@139-159-150-152:~$ ls git_teaching/ README.en.md # 确保在 git_teaching 仓库目录下 zz@139-159-150-152:~/git_teaching$ pwd /home/zz/git_teaching # 查看当前文件列表 (只有克隆时自带的文件 :~/git_teaching$ vim file.txt # 在 file.txt 中写入 "hello git" zz@139-159-150-152:~/git_teaching$ cat file.txt

    63820编辑于 2025-06-11
  • 来自专栏C语言

    【Git】远程操作和标签管理

    'git_teaching'... clone git@gitee.com:hyb91/git_teaching.git Cloning into 'git_teaching'... hyb@139-159-150-152:~$ git clone git@gitee.com:hyb91/git_teaching.git Cloning into 'git_teaching'... hyb91/git_teaching.git (fetch) origin git@gitee.com:hyb91/git_teaching.git (push) 上面显示了可以抓取和推送的origin :~/git_teaching$ git add . hyb@139-159-150-152:~/git_teaching$ git commit -m"add .gitignore" [master

    35610编辑于 2025-08-26
  • 来自专栏Base_CDNKevin

    [Git] 标签管理

    为最新提交打标签 v1.0: zz@139-159-150-152:~/git_teaching$ git tag v1.0 查看所有本地标签: 使用 git tag 命令(不带参数)。 zz@139-159-150-152:~/git_teaching$ git tag v1.0 # 显示我们刚刚创建的标签 Git 会按字母顺序显示标签。 zz@139-159-150-152:~/git_teaching$ git log --pretty=oneline --abbrev-commit 97811ab (HEAD -> master, 再次查看所有本地标签: zz@139-159-150-152:~/git_teaching$ git tag v0.9 # 新增的标签 v0.9 v1.0 # 已有的标签 v1.0 标签列表按字母顺序显示 zz@139-159-150-152:~/git_teaching$ git show v1.0 commit 97811abd1d43774aeb54fee32bf4fc76b2b08170 (HEAD

    59120编辑于 2025-06-12
  • 来自专栏wym

    Java 抽象类和抽象方法

    抽象类 public abstract class Teacher { //含有抽象方法必须是抽象类 public abstract void Teaching();//只需定义不需实现 } class Math extends Teacher{ //继承抽象类必须重新实现抽象方法 public void Teaching(){ System.out.println("数学老师") ; } } class English extends Teacher{ public void Teaching(){ System.out.println("英语老师"); } } static void main(String[] args) { Teacher zhao = new English(); Teacher yuan = new Math(); zhao.Teaching (); yuan.Teaching(); } }

    77120发布于 2019-03-04
  • 来自专栏玉树芝兰

    macOS上修复感染autorun病毒优盘

    我原先的教学目录“teaching”好端端还在那里,只是无法正常显示出来了。根目录下多了许多杂七杂八的exe文件,不只是Finder里面显示出来的那两个。 我的teaching文件夹呢?感染的文件和目录都已经清除,但是teaching文件夹还是无法显示。 例如先执行: mv teaching teaching-new 再改回来: mv teaching-new teaching 列出文件看看: ? 好像跟刚才比起来没有什么变化嘛。

    2.2K30发布于 2018-08-22
  • 来自专栏CreateAMind

    RL Foundation: Model-Free Prediction and Control

    Reference: Reinforcement Learning An Introduction http://www0.cs.ucl.ac.uk/staff/d.silver/web/Teaching_files /MC-TD.pdf http://www0.cs.ucl.ac.uk/staff/d.silver/web/Teaching_files/control.pdf

    49040发布于 2019-09-11
  • 来自专栏学习java的小白

    springboot+mybatis+security ajax实现session保存User实体

    true; } } Role import org.springframework.security.core.GrantedAuthority; /** * @ProjectName: teaching service import org.springframework.security.core.userdetails.UserDetailsService; /** * @ProjectName: teaching org.springframework.security.web.authentication.AuthenticationSuccessHandler; /** * @ProjectName: teaching ; import java.io.PrintWriter; import java.util.HashMap; import java.util.Map; /** * @ProjectName: teaching ; import java.io.PrintWriter; import java.util.HashMap; import java.util.Map; /** * @ProjectName: teaching

    67310发布于 2020-12-31
  • 来自专栏非典型性程序员

    挑战30天学完Python:Day18 正则表达式

    matches = re.sub('%', '', txt) print(matches) 得到整洁的文本输出 I am teacher and I love teaching. I found teaching more interesting than any other jobs. Does this motivate you to be a teacher? txt = '''I am teacher and I love teaching. ', 'I found teaching more interesting than any other jobs. paragraph = 'I love teaching. If you do not love teaching what else can you love.

    86740编辑于 2023-10-21
  • 来自专栏运维开发王义杰

    中国人学习英语的特点,痛点

    Traditional teaching methods: Classroom teaching is predominantly lecture-based, with students' opportunities Monotonous learning process: Traditional teaching methods and exam-oriented learning often make the English Unsatisfactory learning outcomes: Due to a lack of effective practice opportunities and teaching methods Adopt diversified teaching methods: Integrate online and offline resources, introduce interesting content on listening and speaking training: Strengthen listening and speaking training in course design and teaching

    1.2K20编辑于 2023-08-21
  • 来自专栏Base_CDNKevin

    [Git] 配置 Git

    # 在工作区创建或修改 .gitignore 文件 zz@139-159-150-152:~/git_teaching$ vim .gitignore # 添加 .gitignore 文件到暂存区 zz @139-159-150-152:~/git_teaching$ git add . # 或者 git add .gitignore # 提交 .gitignore 文件到本地版本库 zz@139-159 # 创建两个应该被忽略的文件 zz@139-159-150-152:~/git_teaching$ touch a.so b.ini # 查看 Git 状态 zz@139-159-150-152:~/ # 检查 a.so 文件是否被忽略,以及是哪条规则忽略的 zz@139-159-150-152:~/git_teaching$ git check-ignore -v a.so .gitignore:3 zz@139-159-150-152:~/git_teaching$ git st # 输入 git st On branch master Your branch is up to date with

    73310编辑于 2025-06-12
  • 来自专栏可涵的从小白到大牛的征程

    Git实用指南:忽略文件、命令别名、版本控制、撤销修改与标签管理

    $ git tag v0.9 c6ce3f0 hyb@139-159-150-152:~/git_teaching$ git tag v0.9 v1.0 注意,标签不是按时间顺序列出,而是按字母排序的。 6.3.操作标签 如果标签打错了,也可以删除 git tag -d [tagname] hyb@139-159-150-152:~/git_teaching$ git tag v0.9 v1.0 hyb @139-159-150-152:~/git_teaching$ git tag -d v0.9 Deleted tag 'v0.9' (was c6ce3f0) hyb@139-159-150-152 :~/git_teaching$ git tag v1.0 因为创建的标签都只存储在本地,不会自动推送到远程。 删除命令也是push,但是格式如下: hyb@139-159-150-152:~/git_teaching$ git tag v1.0 hyb@139-159-150-152:~/git_teaching

    82110编辑于 2025-01-21
  • 来自专栏changxin7

    5.软件开发规范

    sys.path.append(r'D:\lnh.python\py project\teaching_show\blog\core') sys.path.append(r'D:\lnh.python\ py project\teaching_show\blog\conf') sys.path.append(r'D:\lnh.python\py project\teaching_show\blog\db ') sys.path.append(r'D:\lnh.python\py project\teaching_show\blog\lib') 这样是不是太麻烦了? \blog') print(os.path.dirname(__file__)) # 获取本文件的绝对路径 # D:/lnh.python/py project/teaching_show/blog/ register_path = r'D:\lnh.python\py project\teaching_show\blog\register' ?

    1.3K30发布于 2019-09-10
  • 来自专栏可涵的从小白到大牛的征程

    Git在码云上的使用指南:从安装到推送远程仓库

    6.3.向远程仓库推送push 本地已经 clone 成功远程仓库后,我们便可以向仓库中提交内容,例如新增⼀个 file.txt ⽂件: # 新建⽂件 hyb@139-159-150-152:~/git_teaching $ ls README.en.md README.md hyb@139-159-150-152:~/git_teaching$ vim file.txt hyb@139-159-150-152:~/git_teaching $ cat file.txt hello git # 提交⽂件 hyb@139-159-150-152:~/git_teaching$ git add . hyb@139-159-150-152:~/ git_teaching$ git commit -m"create file.txt" [master 7ce3183] create file.txt 1 file changed, 1 insertion 则可以省略冒号: git push <远程主机名> <本地分⽀名> 此时我们要将本地的master分⽀推送到origin主机的master分⽀,则可以: hyb@139-159-150-152:~/git_teaching

    1.1K10编辑于 2024-11-19
  • 来自专栏学习/读书笔记

    Java入门(9.5)-- 抽象类与接口

    Teacher.java: package core; public abstract class Teacher {//抽象类 abstract public void teaching ();/ /抽象方法 } class MathTeacher extends Teacher { public void teaching () { System.out.println("这节课我们来讲下三角函数 ; } } class EnglishTeacher extends Teacher { public void teaching () { System.out.println("open String[] args) { Teacher lee = new MathTeacher(); Teacher tom = new EnglishTeacher(); lee.teaching tom.teaching();//open the book! } } 如果声明一个抽象方法,就必须将承载这个抽象方法的类定义为抽象类,换句话说,只要类中有一个抽象方法,此类就被标记为抽象类。

    58220编辑于 2022-04-07
  • 来自专栏庄闪闪的R语言手册

    数据科学中 R 语言教学的10个简单准则

    Slides 截图 来源:https://ttimbers.github.io/10-simple-rules-for-teaching-R-for-Data-Science/10-simple-rules-for-teaching-r-for-data-science.html 文末原文自行跳转噢~ 参考资料 [1] GitHub 网站: https://github.com/ttimbers/10-simple-rules-for-teaching-R-for-Data-Science

    1K20编辑于 2022-10-31
  • 来自专栏云计算linux

    前端工程师之 移动端布局基础

    <img src="https://gitee.com/rawait/rwpicgo/raw/master/<em>teaching</em>/2021-12-22/202112222201467.png" alt="001 <img src="https://gitee.com/rawait/rwpicgo/raw/master/teaching/2021-12-22/202112222211656.png" alt="image <img src="https://gitee.com/rawait/rwpicgo/raw/master/<em>teaching</em>/2021-12-22/202112222227406.png" alt="image <img src="https://gitee.com/rawait/rwpicgo/raw/master/teaching/2021-12-22/202112222229599.png" alt="image .png" alt="004" style="zoom: 25%;" /> <img src="https://gitee.com/rawait/rwpicgo/raw/master/<em>teaching</em>/

    94610编辑于 2024-12-13
  • 来自专栏可涵的从小白到大牛的征程

    Git 分支管理与多人协作实战指南

    # 新增本地分⽀ feature-1 并切换 hyb@139-159-150-152:~/git_teaching$ git branch dev * master hyb@139-159-150- ⽂件 hyb@139-159-150-152:~/git_teaching$ vim function1 hyb@139-159-150-152:~/git_teaching$ cat function1 # 将 feature-1 分⽀推送到远端 hyb@139-159-150-152:~/git_teaching$ git add function1 hyb@139-159-150-152:~/git_teaching /pull/new/hyb91:feature1...hyb91:master To gitee.com:hyb91/git_teaching.git * [new branch] feature- /feature-2 # 可以看到远程已经有了feature-2 hyb@139-159-150-152:~/git_teaching$ git branch -a dev * feature-1

    45410编辑于 2025-01-23
领券