2026년 6월~7월에 발의된 형사소송법 개정안 6건을 분석하여 각 개정안의 변경사항과 쟁점을 비교 정리합니다.
| 의안번호 | 발의자 | 발의일 | 개정 범위 | 분류 |
|---|
| #!/usr/bin/env bash | |
| # base configuration | |
| PARENT_CONFIG=".config.default" | |
| FORCE_INSTALL=0 | |
| # device config | |
| DIST_DEVICE="laptop" | |
| DIST_NAME="debian_trixie_x86_64" | |
| # host specific configurations |
| /****** | |
| * name: arkenfox user.js | |
| * date: 4 November 2025 | |
| * version: 140 | |
| * urls: https://github.com/arkenfox/user.js [repo] | |
| * : https://arkenfox.github.io/gui/ [interactive] | |
| * license: MIT: https://github.com/arkenfox/user.js/blob/master/LICENSE.txt | |
| * README: |
| #!/bin/sh | |
| # openwrt extroot /dev/sda1 ext4 /dev/sda2 swap | |
| # latest version https://downloads.openwrt.org/releases/19.07-SNAPSHOT/targets/ar71xx/generic/ | |
| opkg update | |
| opkg install kmod-usb-storage kmod-scsi-core block-mount kmod-fs-ext4 kmod-usb-uhci e2fsprogs fdisk | |
| echo " | |
| sysctl -w net.ipv6.conf.all.disable_ipv6=1 | |
| sysctl -w net.ipv6.conf.default.disable_ipv6=1 |
| My favorite way of removing all stopped docker containers is: | |
| docker ps -q |xargs docker rm | |
| it will list all images (docker ps), but only show the id's. And then run a docker rm command for each one of them. | |
| Similarly for removing all unused docker images | |
| docker images -q |xargs docker rmi | |
| Will list all docker images and then docker rmi them. |
| #!/bin/bash | |
| #title :wildfly-install.sh | |
| #description :The script to install Wildfly 8.x | |
| #more :http://sukharevd.net/wildfly-8-installation.html | |
| #author :Dmitriy Sukharev | |
| #date :20140601 | |
| #usage :/bin/bash wildfly-install.sh | |
| WILDFLY_VERSION=8.1.0.Final | |
| WILDFLY_FILENAME=wildfly-$WILDFLY_VERSION |
| From 9d3b69220e5c3d3dbb6555f306ba07dd33125320 Mon Sep 17 00:00:00 2001 | |
| From: "Woojae, Park" <nikescar@gmail.com> | |
| Date: Sun, 15 Jun 2014 13:53:47 +0900 | |
| Subject: [PATCH] fortran patch | |
| --- | |
| build/core/build-binary.mk | 10 ++- | |
| build/core/default-build-commands.mk | 3 + | |
| build/core/definitions.mk | 148 +++++++++++++++++++++++++++++++++++ | |
| build/tools/dev-defaults.sh | 10 +-- |
| From f5d91957dece0f21caf187ae4569ef382eb0e696 Mon Sep 17 00:00:00 2001 | |
| From: "Woojae, Park" <nikescar@gmail.com> | |
| Date: Sun, 15 Jun 2014 14:00:54 +0900 | |
| Subject: [PATCH] fortran commit 2 | |
| --- | |
| build/tools/build-gcc.sh | 10 ++++++++++ | |
| 1 file changed, 10 insertions(+) | |
| diff --git a/build/tools/build-gcc.sh b/build/tools/build-gcc.sh |
| # put multiple field_types forlder and run patch | |
| # defalt dir for firesal 1.2 multiple field type is | |
| # (pyrocms modules dir)firesale/field_types/multiple | |
| --- field.multiple.php 2013-06-23 18:31:19.131858247 +0900 | |
| +++ field.multiple.php 2013-06-23 18:29:51.122152446 +0900 | |
| @@ -230,7 +230,19 @@ | |
| */ | |
| public function event() | |
| { |