New pages
Jump to navigation
Jump to search
- 17:09, 7 December 2024 Advent of code (hist | edit) [2,854 bytes] Mip (talk | contribs) (Created page with "Some tips to solve https://adventofcode.com/. == I/O == === Read a list of numbers === {| class=wikitable |- ! Code !! Output |- | <source lang="python"> print("Input:") for line in open(INPUT): print(line.strip()) </source> | <source lang="text"> Input: 3 4 4 3 2 5 1 3 3 9 3 3 </source> |- | <source lang="python"> F=[] # Flat for line in open(INPUT): numbers = list(map(int,line.split())) F.extend(numbers) print(f"{F}") </source> | <source lang...")
- 07:47, 18 October 2024 Gtkwave (hist | edit) [461 bytes] Mip (talk | contribs) (Created page with "'''gtkwave''' is a waveform visualisation tool == Tips == === Keyboard tips === ;Go to time * {{kb|F1}} to open the window. ;Set up marker * {{kb|Alt-M}} to open marker window. * {{kb|Tab}} or {{kb|Down / Up}} to navigate between fields * For OK, {{kb|Ctrl-Tab}} then {{kb|Return}}! :Note that closing the window will discard the changes :-( :Also, the marked time '''MUST BE VISIBLE''' otherwise it will be ignored. As a result, first do a '''Go to time'''.")
- 20:59, 29 September 2024 Obambu (hist | edit) [4,613 bytes] Mip (talk | contribs) (Created page with "Obambu (https://obambu.com) is our new email server for domain '''immie.org'''. == Tips == === Send emails to test mail filters === This use <code>sendmail</code> from postfix: <source lang="bash"> #!/bin/bash # Send the email # We test both bare address and address with name ("ABC" <abc@xyz.com>). send_mail() { recipient=$1 filter=$2 echo recipient: $recipient / filter: $filter /usr/sbin/sendmail -t <<EOF From: michael.peeters@noekeon.org To: $reci...")
- 19:41, 29 September 2024 Cooking recipes (hist | edit) [9,820 bytes] Map (talk | contribs) (Created page with "TODO")
- 04:57, 20 September 2024 Ssh (hist | edit) [17 bytes] Mip (talk | contribs) (Redirected page to SSH) Tag: New redirect
- 16:14, 9 September 2024 Avisynth (hist | edit) [5,320 bytes] Mip (talk | contribs) (Created page with "== Build == * From [https://github.com/AviSynth/AviSynthPlus/blob/master/distrib/docs/english/source/avisynthdoc/contributing/posix.rst AviSynth doc]: * And [https://ubuntuforums.org/showthread.php?t=2472506 Can AviSynth on Linux work (Ubuntuforums)]. ;Build avisynthplus * Instruction from AviSynth doc, added {{deb|libdevil-dev}} as suggested on Ubuntuforums. * This creates and installs a nice deb package. <source lang="bash"> sudo apt-get install build-essential git cm...")
- 14:29, 2 September 2024 Dv (hist | edit) [3,978 bytes] Mip (talk | contribs) (Created page with "Page dedicated to extraction and conversion of DV tape, as used in digital camcorder. == Capture == DV tape capture requires a PC with a firewire (IEEE 1394) port. * Check installation: <source lang="bash"> # Check firewire hardware lspci | grep -i firewire # 37:09.0 FireWire (IEEE 1394): LSI Corporation FW322/323 [TrueFire] 1394a Controller (rev 70) # Check kernel modules are loaded lsmod | grep firewire # firewire_ohci 40960 0 # firewire_core 6553...")