New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Show redirects
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 15:45, 15 May 2025How strong is chatgpt search ten plus info sources at few seconds (hist | edit) ‎[3,471 bytes]Mwroot (talk | contribs) (Created page with "{| class="wikitable" |我 |如何在 archlinux 上安装 mediawiki 时使用 redis 缓存?我看 archlinux 的 pacman 里没有 redis-server |- |ChatGPT |在 Arch Linux 上使用 Redis 作为 MediaWiki 的缓存,只需要三个主要步骤:安装并启用 Redis 服务、安装 PHP 的 Redis 扩展,以及在 LocalSettings.php 中启用 Redis 缓存。下面分步说明: 首先,Arch Linux 官方仓库 extra 中提供了最新的 Redis 软件包,你只需...") Tag: Visual edit
  • 09:48, 15 May 2025How to set debug log on mediawiki (hist | edit) ‎[2,385 bytes]Mwroot (talk | contribs) (Created page with "== 例子 == <syntaxhighlight lang="bash" line> $wgDBerrorLog = '/var/log/mediawiki/dberror.log'; $wgDebugLogGroups = [ 'exception' => '/var/log/mediawiki/exception.log', 'resourceloader' => '/var/log/mediawiki/resourceloader.log', 'ratelimit' => '/var/log/mediawiki/ratelimit.log', // Extra log groups from your extension #'myextension' => '/var/log/mediawiki/myextension.log', #'somegroup' => '/var/log/mediawiki/somegroup.log', ]; </syntaxhighlight> == 常见组 =...")
  • 17:17, 14 May 2025How to use redis as mediawiki cache backends (hist | edit) ‎[4,557 bytes]Mwroot (talk | contribs) (Created page with "<syntaxhighlight lang="bash" line> # 如果已经使用过 apcu 作为缓存,要先去除 apcu 缓存 grep -r apc /etc/php/8.2/ sudo emacs /etc/php/8.2/mods-available/apcu.ini # 注释掉对 apcu 的调用 </syntaxhighlight> <syntaxhighlight lang="bash" line> # 安装并配置 redis 作缓存后端 sudo apt install redis-server php-redis # 编辑 LocalSettings.php ## Shared memory settings ## $wgMainCacheType = CACHE_ACCEL; ## $wgMemCachedServers = []; ## $wgMainCac...")
  • 11:14, 14 May 2025Emacs background autostart sudo daemon (hist | edit) ‎[625 bytes]Mwroot (talk | contribs) (Created page with "<syntaxhighlight lang="bash"> sudo touch /etc/systemd/system/emacs.service sudo chmod 664 /etc/systemd/system/emacs.service </syntaxhighlight> <syntaxhighlight lang="bash"> [Unit] Description=Emacs: the extensible, self-documenting text editor [Service] Type=forking ExecStart=/usr/bin/emacs --daemon ExecStop=/usr/bin/emacsclient --eval "(kill-emacs)" Environment=SSH_AUTH_SOCK=%t/keyring/ssh Restart=always [Install] WantedBy=multi-user.target </syntaxhighlight> <syntaxh...")
  • 15:18, 11 May 2025All will be good (hist | edit) ‎[1,038 bytes]Mwroot (talk | contribs) (Created page with "原作者:韩冬 原链接:https://www.zhihu.com/question/654798998/answer/3509952262 为任么前一晚觉得严重的事情,睡一觉起来就觉得好像不那么严重了? 其实不光是醒来,如果雨夜里从外面进入一人于燥温暖的室内,或者雪夜里从寒风中进入一人有大壁炉人声鼎沸的房间里,或者刚刚吃了一人美味的驴肉火烧一一然后再想一下那件事情,心态一定有不同程度的调整。...")
  • 10:24, 11 May 2025The essence of english learning (hist | edit) ‎[6,359 bytes]Mwroot (talk | contribs) (Created page with "原作者:soft.wing2058 转载评价:太多所谓的英文老师,自己水平不够,只有僵化地教学生背单词,没有把英文当成一种优秀的信息源。学英文成了一种考核,而不是一种获取快乐的手段。确实英文能用才是最重要的。半吊子净会逮别人的口音和语法。 ---- 那是1990年,我的高中在南昌,江西是个高考难省。那些年,江西高考本科差不多7取1。我理科很差,初...")
  • 23:12, 9 May 2025If you have a free body (hist | edit) ‎[6,144 bytes]Mwroot (talk | contribs) (Created page with "If you have a free body, what thing is the first ten things you want to do? Think by yourself, not use other's answer, please. ---- **Considering the question's ambiguity** The user is asking, "What are the first ten things you'd want to do with a free body?" but the term "free body" is a bit unclear. Maybe they mean something like a "free body diagram"—but that seems unlikely. Could they be talking about "free time" or a "freed body"? It seems like they want a pers...")
  • 16:36, 8 May 2025How to use mediawiki table sortable (hist | edit) ‎[1,289 bytes]Mwroot (talk | contribs) (Created page with "想象这样的场景:你的手头有 20 个案子需要开庭,每个案子有八个流程要处理,每个流程有 a/b/c 几个状态。怎样对这样的项目进行管理? 我试图找项目管理软件,没有免费且好用的。很多所谓的办公专用软件,根本就不懂办公,纯属程序员的自嗨。 最终,我发现 Excel 才是项目管理的王者。但是,我一直苦恼一件事:MediaWiki 与 Excel 的协作太差了,MediaWiki...")
  • 16:35, 7 May 2025How to use archlinux (hist | edit) ‎[8,253 bytes]Mwroot (talk | contribs) (Created page with "== 配置微调 == <syntaxhighlight lang="bash" line> # .bashrc 强化 export EDITOR=emacs alias s='ls -hl' alias pn='sudo pacman -Syu' alias pi='sudo pacman -S' alias pr='sudo pacman -Rns' alias pss='pacman -Ss' alias eb='emacs ~/.bashrc' alias sb='source ~/.bashrc' alias sp='poweroff' alias sr='reboot' # 加入 sudo sudo visudo qlzq ALL=(ALL) NOPASSWD:ALL sudo nano /etc/default/grub sudo grub-mkconfig -o /boot/grub/grub.cfg # 令中文不显示成方框 sudo pacman -...")
  • 11:56, 7 May 2025Regular linux application installation at once (hist | edit) ‎[97 bytes]Mwroot (talk | contribs) (Created page with "<syntaxhighlight lang="bash" line> git curl wget emacs </syntaxhighlight>")
  • 11:46, 7 May 2025Debian change sources list (hist | edit) ‎[693 bytes]Mwroot (talk | contribs) (Created page with "<syntaxhighlight lang="bash" line> # 把以下写入 /etc/apt/sources.list.d/debian.sources Types: deb URIs: http://mirrors.ustc.edu.cn/debian Suites: bookworm bookworm-updates Components: main contrib non-free non-free-firmware Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg Types: deb URIs: http://mirrors.ustc.edu.cn/debian-security Suites: bookworm-security Components: main contrib non-free non-free-firmware Signed-By: /usr/share/keyrings/debian-archive-key...")
  • 16:41, 6 May 2025How to install some linux on wsl (hist | edit) ‎[1,428 bytes]Mwroot (talk | contribs) (Created page with "== 前置条件 == # UEFI 中开启虚拟化支持 # 控制面板 - 卸载 - 启用或关闭 Windows 功能中打开“适用于 Linux 的 Windows 子系统”和“虚拟机平台” # 安装新的 Linux 分发版前将 WSL 2 设置为默认版本 <syntaxhighlight lang="bash" line> wsl --update wsl --set-default-version 2 </syntaxhighlight> == 安装 Ubuntu 的方法 == 在 Microsoft Store 里搜索 Ubuntu 24.04.1 或以上版本,直接搜出来点“获取”就行...")
  • 22:59, 4 May 2025The big two-heart river (hist | edit) ‎[41,667 bytes]Mwroot (talk | contribs) (Created page with " (第一部) 火车顺着轨道继续驶去,绕过树木被烧的小丘中的一座,失去了踪影。尼克在行李员从行李车门内扔出的那捆帐篷和铺盖上坐下来。这里已没有镇子,什么也没有,只有铁轨和被火烧过的土地。沿着塞内镇 [2] 唯一的街道曾有十三家酒馆,现在已经没有留下一丝痕迹。广厦旅馆的屋基撅出在地面上。基石被火烧得破碎迸裂了。塞内镇就剩下这...")
  • 23:09, 3 May 2025How to edit pdf (hist | edit) ‎[2,603 bytes]Mwroot (talk | contribs) (Created page with "PDF 全称 Portable Document Format,它的诞生是为了方便携带、统一体验,它做到了。几乎所有平台上的 PDF 阅读体验都是一致的。PDF 的方便,使 PDF 得以流行。 需求是第一动力,越来越多的用户,渴望找到某个电子资料的 PDF 版本。盗版机构和个人顺势而动,扫描了海量 PDF 文档。原文档发布机构也顺势而动,发布了海量的低糊 PDF,用以分散盗版用户的精力,吸...")
  • 20:12, 1 May 2025Useful AI chat skills (hist | edit) ‎[5,328 bytes]Mwroot (talk | contribs) (Created page with "== 请 AI 写得更通俗易懂 == * 我不太会用,举例子教教我吧 == 请 AI 输出格式 == * 请用代码框输出纯文本方便我复制")
  • 15:29, 30 April 2025How to proxy on wsl2 (hist | edit) ‎[854 bytes]Mwroot (talk | contribs) (Created page with "== 查 WSL 眼中本机的 ip == 查 ipcofig 能查到在 wsl 眼中的主机 ip == == == Host 机 == * Proxy 软件开启允许局域网连入。 * 开防火墙允许 WSL 流量接入本机 <syntaxhighlight lang="bash" line> New-NetFirewallRule -DisplayName "WSL" -Direction Inbound -InterfaceAlias "vEthernet (WSL)" -Action Allow </syntaxhighlight> * .wslconfig 里写入 <syntaxhighlight lang="bash" line> dnsTunneling=false </syntaxhighlight> == Guest 机 == # .bas...")
  • 15:03, 30 April 2025How to use z.lua (hist | edit) ‎[235 bytes]Mwroot (talk | contribs) (Created page with "# sudo apt install zlua5.4 # git clone --depth=1 https://github.com/skywind3000/z.lua.git # 添加 eval "$(lua /home/focus/Sources/z.lua/z.lua --init bash enhanced once)"")
  • 14:08, 29 April 2025Why do i give up semantic mediawiki (hist | edit) ‎[16,403 bytes]Mwroot (talk | contribs) (Created page with "Semantic MediaWiki 是 MediaWiki 一系列拓展的合集。宣称是实现 MediaWiki 的语义化。有可能是我还没搞懂,以我目前的认知来看,用它性价比很低,值得直接放弃,后来者想尝试的,建议试试 Cargo。 == 原因 == 我放弃 Semantic MediaWiki 的原因有以下: # 主观原因,composer 在国内网络联通性太差,普通人很难搞定。这将导致新手安装都无法顺畅,更不要谈应用它了 # 客观...")
  • 23:15, 28 April 2025How to use virt-manager (hist | edit) ‎[1,448 bytes]Mwroot (talk | contribs) (Created page with "== 打不出中文 == # 注销或移除 QT_IM_MODULE、GTK_IM_MODULE; # 在 KDE “系统设置 → 输入设备 → 虚拟键盘” 中选择 IBus Wayland 并应用;或 # 使用 systemsettings 也一样 == 全屏 == * 自带 * 调分辨率 == 共享剪切板 == <syntaxhighlight lang="bash" line> sudo pacman -S spice-vdagent sudo systemctl enable --now spice-vdagentd 确保在硬件里有一个名个 spice 什么的通道,一般默认就有了 在 .xprofile 中...")
  • 10:10, 15 April 2025A fun font collection named Noto (hist | edit) ‎[816 bytes]Mwroot (talk | contribs) (Created page with "所谓字体集,就是包含很多种字体的意思。 Noto 在拉丁语中是我写我思的意思。更为用户喜闻乐见的解释是 no tofu,即消灭无合适字体时屏幕上的豆腐块。 Noto 有 200 多字族,2300 多种字体,适配 1000 多种语言。 对 Windows 用户来说,你并不需要它,Windows 的字体本身已经非常全面。 对 Linux 用户来说,可以考虑使用 noto-cjk。有的符号显示成豆腐块时,可以考...")
  • 09:29, 15 April 2025Test 字符 (hist | edit) ‎[28,385 bytes]Mwroot (talk | contribs) (Created page with "# Rime's punctuation and symbols # encoding: utf-8 # # Usage: patch your Rime schema to enable /X symbols config_version: '1.6' patch: punctuator/import_preset: symbols recognizer/patterns/punct: '^/([0-9]0?|[A-Za-z]+)$' punctuator: full_shape: ' ' : { commit: ' ' } ',' : { commit: , } '.' : { commit: 。 } '<' : [ 《, 〈, «, ‹, ⟨ ] '>' : [ 》, 〉, », ›, ⟩ ] '/' : [ /, ÷ ] '?' : { commit: ? } ';' : { commit:...")
  • 09:44, 14 April 2025法考笔记之刑诉 (hist | edit) ‎[258 bytes]Mwroot (talk | contribs) (Created page with "== 0414 ==")
  • 16:40, 12 April 2025One should have nail clippers for own (hist | edit) ‎[1,988 bytes]Mwroot (talk | contribs) (Created page with "《人应该有自己的指甲剪》 在意识到世界就是一个巨大的卡颜局之后,人就应该有自己的指甲剪。 徒手抠扯指甲,是一件焦虑而墮落的事。焦虑时,些微疼痛可以让神经更敏锐,敏锐地逃避案头最该去做的重要之事。墮落在于,徒手抠扯过的指甲,并不整齐,于颜值有损;很费时间,容易熬夜;容易弄出血,有点吓人;容易发炎,出血部位易受感染,疼一...")
  • 16:12, 12 April 2025What i found (hist | edit) ‎[1,244 bytes]Mwroot (talk | contribs) (Created page with "我听所有的歌,它们都在唱勇气。可见,勇气是生活中最缺的事物。直面生活,已经比所有艺术电影更高雅。20250412")
  • 14:38, 11 April 2025Make bashrc more efficient (hist | edit) ‎[539 bytes]Mwroot (talk | contribs) (Created page with "<syntaxhighlight lang="bash" line> export EDITOR=emacs alias s='ls -hl' alias sb='source ~/.bashrc' alias sp='poweroff' alias sr='reboot' </syntaxhighlight>")
  • 11:55, 11 April 2025How to use minder on windows (hist | edit) ‎[3,203 bytes]Mwroot (talk | contribs) (Created page with "《怎么在 Windows 上使用 Minder》 《怎么使用 Minder》 == 劝退 == 普通人,直接弃用。Windows 用户想要用这软件,极不容易,非刚需用它就是得不偿失。作者对提供 Windows 平台安装包也毫无兴趣。 年轻人,有精力折腾的人,可以考虑。现下 Debian 12 平台使用 Minder 有输入法乱跳的 bug。Minder 只对少数 Linux 用户才有用,特别是 ArchLinux 平台 Plasma 桌面环境体验不错。...")
  • 11:21, 11 April 2025How to use archlinux on virtualbox (hist | edit) ‎[1,788 bytes]Mwroot (talk | contribs) (Created page with "《怎么在 VirtualBox 中使用 ArchLinux》 == 初级配置 == 装完后,记得重启一下 Host 电脑。 {| class="wikitable" |+ VirtualBox 中用 archinstall 时注意事项 !项目 !注意事项 !版本 |- |虚拟机 |求旧 |VirtualBox 7.0.24 |- |拓展包 |匹配 |7.0.24.vbox-extpack |- |Guest 包 |与 Arch 对应 |7.1.6-2 |- |Arch |求新 |2025.03.01-x86_64 |- |内核 |求常 |linux |- |桌面 |求常 |KDE Plasma |- |驱动 |求全 |all open sources |} <sy...")
  • 11:19, 11 April 2025How to use mediawiki on archlinux (hist | edit) ‎[2,795 bytes]Mwroot (talk | contribs) (Created page with "《怎么在 ArchLinux 中使用 MediaWiki》 以下只为尝试。真用,我还是推荐用 Debian,或 WSL2,或云服务器。ArchLinux 只适合年轻人,有精力去试错。 == MediaWiki 本体 == <syntaxhighlight lang="bash" line> sudo pacman -S mediawiki mariadb php apache php-apache php-apcu php-intl imagemagick php-imagick php-gd git diffutils </syntaxhighlight> == MariaDB 数据库 == <syntaxhighlight lang="bash" line> sudo chown -R mysql:mysql /var/l...")
  • 21:04, 10 April 2025法考笔记之民法 (hist | edit) ‎[2,418 bytes]Mwroot (talk | contribs) (Created page with "== 0410 == 2 民法调整平等主体的自然人和法人非法人之间的人身关系、财产关系。 民事法律关系的要素 人 民事主体 三元论+国家集体 物 民事客体 标的物 权利义务指向的对象 特定的物或权利 物权的客体以物为原则,以权利为例外。债权的客体行为,一般指合同。竞业禁止协议,消极不作为。各类权利都有客体。民商法的客体包括不作为 只有,只能,均,...") Tags: Mobile edit Mobile web edit
  • 11:21, 10 April 2025Use archlinux in wsl2 (hist | edit) ‎[110 bytes]Mwroot (talk | contribs) (Created page with "<syntaxhighlight lang="bash" line> pacman -S gtk3 gnome-themes-extra adwaita-icon-theme </syntaxhighlight>")
  • 18:54, 4 April 2025这该是一个表格 (hist | edit) ‎[114 bytes]Mwroot (talk | contribs) (Created page with "{{class到底是啥 |Field1=certain2 |Field2=haha |Field3=no |Field 4=fu }} 原来如此")
  • 18:42, 4 April 2025一闪一闪亮昌昌 (hist | edit) ‎[29 bytes]Mwroot (talk | contribs) (Created page with "{{寻隐者不遇}} 哈哈哈")
  • 18:41, 4 April 2025你好 (hist | edit) ‎[63 bytes]Mwroot (talk | contribs) (Created page with "{{寻隐者不遇 |只在此山中=你好 }} 这是怎么回事")
  • 22:03, 31 March 2025The thief who stole the world: a classical wuxia novel (hist | edit) ‎[1,642 bytes]Mwroot (talk | contribs) (Created page with "《神偷天下:一部经典的武侠小说》 File:神偷天下配乐.mp3 我")
  • 16:25, 29 March 2025How to use endeavourOS (hist | edit) ‎[673 bytes]Mwroot (talk | contribs) (Created page with "《EOS 怎么用》 <syntaxhighlight lang="bash" line> # 更新系统 sudo pacman -Syu # 仅更新数据库 sudo pacman -Sy # 搜索软件 pacman -Ss keyword # 安装软件 sudo pacman -S package_name </syntaxhighlight>")
  • 21:43, 28 March 2025How to use flatpak (hist | edit) ‎[771 bytes]Mwroot (talk | contribs) (Created page with "《Flatpak 怎么用》 软件遇到网络 fail,第一步就考虑换个国内源。 <syntaxhighlight lang="bash" line> # 安装 flatpak sudo apt install flatpak # Gnome 用户选 sudo apt install gnome-software-plugin-flatpak # 添加官方源 flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo # 添加国内源,中科大源 sudo flatpak remote-modify flathub --url=https://mirrors.ustc.edu.cn/flathub # 恢复国内源 sud...")
  • 17:02, 26 March 2025Tips of installing debian via virtualbox (hist | edit) ‎[1,796 bytes]Mwroot (talk | contribs) (Created page with "《VirtualBox 安装 Debian 的小 tips》 别用 netins,网速太慢了,光安装成功就要半天。 也别用 CD,也要联网。我试都没试。 用 DVD-1。在国内镜像如 [http://mirrors.163.com/debian-cd/ 网易 Debian iso 镜像] 下载,再用 sha512 验证下载文件的准确性,即可。这样,半小时下载好 DVA-1,安装速度非常快,20 分钟搞定。")
  • 15:23, 24 March 2025The search function works (hist | edit) ‎[560 bytes]Mwroot (talk | contribs) (Created page with "《本站搜索功能正式启用》 以前,因为服务器配置不够,本站的搜索功能虚有其表,只对英文搜索有所支持,可用性极差。 昨天,本站斥重金升级了服务器配置。 今天,本站的搜索功能正式启用。用户可以在右上搜索框键入关键字,检索关键字出现的文章。 File:本站搜索功能正式启用20250324.png File:本站搜索功能正式启用 - 演示 20250324.png Enjoy it.")
  • 11:22, 21 March 2025Fun of wslg (hist | edit) ‎[1,769 bytes]Mwroot (talk | contribs) (Created page with "《WSLG 趣谈》 WSLG 是个非常有趣的玩意儿。 一般 Linux 分为终端版、图形版。终端版像电视里黑客用的那样,全是大黑框、纯文字,没有真正的图片,操作也是纯命令行。图形版就和我们用的 Windows 10 一样,到处是漂亮的图形,操作时用鼠标点点点。 WSL 这个玩意儿, Windows Subsystem for Linux 的简写,意思是 Windows 生个儿子叫 Linux。直接在 Windows 里运行 Linux,...")
  • 15:16, 18 March 2025An ahk script that can insert Template content on wikitext (hist | edit) ‎[1,301 bytes]Mwroot (talk | contribs) (Created page with "<syntaxhighlight lang="ahk" line> ::case:: su := "|" SendInput, {Raw}{{CaseBox Send, {Enter}{Enter} SendInput, {Raw}%su% Send, {Enter}{Space} Send, question {Space}={Enter} SendInput, {Raw}%su% Send, {Enter}{Space} Send, misconception {Space}={Enter} SendInput, {Raw}%su% Send, {Enter}{Space} Send, crime {Space}={Enter} SendInput, {Raw}%su% Send, {Enter}{Space} Send, explanation {Space}={Enter} SendInput, {Raw}}} return </syntaxhighlight>")
  • 10:49, 18 March 2025Test CaseBox (hist | edit) ‎[200 bytes]Mwroot (talk | contribs) (Created page with "{{CaseBox | question = 精神病院遗弃老人算犯罪吗 | misconception = 不算,精神病院的老人不是家人,没有扶养义务 | crime = 遗弃罪 | explanation = 有扶助义务 }}")
  • 22:42, 17 March 2025Something not same (hist | edit) ‎[10,847 bytes]Mwroot (talk | contribs) (Created page with "《一些不一样的人推荐的不一样的东西》 《忽软忽硬》,是一个时而讲计算机软件,时而讲计算机硬件的播客电台,在微信公众号、小宇宙等 APP 都能很方便地收听。曾经还录过一段时间《史记》,最近打通了任督二脉,偶然开始访谈素人。不装腔作势,不弄虚作假的普通人,坦然地回顾自己前几十年的人生,真的是非常有看点。这份以年为跨度的真实人生...")
  • 11:48, 16 March 2025Test 吞字 (hist | edit) ‎[467 bytes]Mwroot (talk | contribs) (Created page with "<poem> 那时候我十七 爱上了一个女人 每天陪着她 坐在天台看星星 我问她为什么不爱我 她说她爱上了两个人 那时候我爱上了一个女人 她故作老成的样子好迷人 每天陪着她 去山顶听风声 我问她为什么不爱我 她说她爱上了两个人 那时候爱上了一个女人 她丰满的胸脯好销魂 每天陪着她 絮絮叨叨聊个不停 我问她为什么不爱我 她说她爱上了两个人 </poem>")
  • 14:37, 15 March 2025法考笔记之刑法 (hist | edit) ‎[4,798 bytes]Mwroot (talk | contribs) (Created page with "== 0315 ==")
  • 19:00, 14 March 2025法考笔记之总纲 (hist | edit) ‎[13,195 bytes]Mwroot (talk | contribs) (Created page with "[https://www.moj.gov.cn/pub/sfbgw/zwgkztzl/2024nzt202400102/2024gjtyflzyzgks/ 司法考试]备考笔记。")
  • 19:00, 14 March 2025法考笔记之民诉 (hist | edit) ‎[9,132 bytes]Mwroot (talk | contribs) (Created page with "== 0309 == * 仲裁委有需要时可在区设立,但不一定在区设立。 * 遗漏当事人,或诉讼请求,应发回重审。 * 同等原则:外国人与中国人同权。 * 对等原则:与外国一样,对外国人对等限制。 * 当事人诉讼权利平等但不相同。 * 调解并不适用于执行程序,只适用于审判程序。现实中这一条无效,什么时候都可以调解。 * 裁定驳回起诉,解决程序问题;判决驳回诉...")
  • 11:50, 14 March 2025BKZG (hist | edit) ‎[106 bytes]Mwroot (talk | contribs) (Created page with "[https://www.moj.gov.cn/pub/sfbgw/zwgkztzl/2024nzt202400102/2024gjtyflzyzgks/ 司法考试]备考笔记。")
  • 11:48, 14 March 2025BKMS (hist | edit) ‎[0 bytes]Mwroot (talk | contribs) (Created page with "==民诉== * 仲裁委有需要时可在区设立,但不一定在区设立。 * 遗漏当事人,或诉讼请求,应发回重审。 * 同等原则:外国人与中国人同权。 * 对等原则:与外国一样,对外国人对等限制。 * 当事人诉讼权利平等但不相同。 * 调解并不适用于执行程序,只适用于审判程序。现实中这一条无效,什么时候都可以调解。 * 裁定驳回起诉,解决程序问题;判决驳回诉...")
  • 09:07, 14 March 2025LDHTFJX (hist | edit) ‎[29,412 bytes]Mwroot (talk | contribs) (Created page with "{{#css: .tocnumber { display: none; } }} 《中华人民共和国劳动合同法》节选 (2007年6月29日第十届全国人民代表大会常务委员会第二十八次会议通过 根据2012年12月28日《全国人民代表大会常务委员会关于修改〈中华人民共和国劳动合同法〉的决定》修订) == 第一章 总则 ==   第一条 ……   第二条 ……   ……   第三条 ……   ……   第四条...")
  • 09:05, 14 March 2025LDFJX (hist | edit) ‎[14,340 bytes]Mwroot (talk | contribs) (Created page with "{{#css: .tocnumber { display: none; } }} 《中华人民共和国劳动法》节选 (1994年7月5日第八届全国人民代表大会常务委员会第八次会议通过 根据2009年8月27日第十一届全国人民代表大会常务委员会第十次会议《关于修改部分法律的决定》第一次修正 根据2018年12月29日第十三届全国人民代表大会常务委员会第七次会议《关于修改〈中华人民共和国劳动法〉等七部法律...")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)