New pages
From Lucca's Wiki
Jump to navigationJump to search
27 August 2025
- 00:0200:02, 27 August 2025 Cisco copy destinations (hist | edit) [428 bytes] 170.55.73.212 (talk) (Created page with " flash: Copy to flash file ftp: Copy to current system configuration scp: Copy to scp: file system startup-config Copy to startup configuration tftp: Copy to current system configuration")
26 August 2025
- 23:2323:23, 26 August 2025 Example configuration files (hist | edit) [355 bytes] 170.55.73.212 (talk) (Created page with " !router configuration in batch mode (config file) !Initial config on router A enable conf t hostname routerA enable secret itsasecret banner motd "Authorized access only. Keep off" !Lets configure the line console 0 port line con 0 password cisco login exit !now we're back in global config mode")
- 22:4622:46, 26 August 2025 Cisco Keyboard Shortcuts (hist | edit) [90 bytes] 170.55.73.212 (talk) (Created page with "Break out of traceroute, etc commands when ctrl+c does not work Ctrl+Shift+6")
- 22:3922:39, 26 August 2025 Cisco Commands (hist | edit) [1,558 bytes] 170.55.73.212 (talk) (Created page with "Elevate to root user enable")
24 August 2025
- 19:3919:39, 24 August 2025 FFmpeg Cut a video to a clip by seconds (hist | edit) [776 bytes] Lucka (talk | contribs) (Created page with "The fastest and best ffmpeg-based method I have figured out is: ffmpeg -ss 00:01:00 -to 00:02:00 -i input.mp4 -c copy output.mp4 This command trims your video in seconds! Explanation of the command: Command Explanation -i This specifies the input file. In that case, it is (input.mp4). -ss Used with -i, this seeks in the input file (input.mp4) to position. 00:01:00 This is the time your trimmed video will start with. -to The next argument after -to specifies the p...")
22 August 2025
- 01:4601:46, 22 August 2025 Python Examples (hist | edit) [899 bytes] 50.220.241.211 (talk) (Created page with "Calculate the average of three numbers avg = float((num1+num2+num3)/3)")
- 01:3901:39, 22 August 2025 Math Operators (hist | edit) [259 bytes] 50.220.241.211 (talk) (Created page with "Operator Name Example + Addition x + y - Subtraction x - y * Multiplication x * y / Division x / y % Modulus x % y ** Exponentiation x ** y // Floor division x // y")