Search results

From wikinotes
  • Coreutils dd (category Pages using deprecated source tags)
    on FreeBSD, you'll need to create a virtual block device # for the image using: # mdconfig -a -t vnode -f /path/to/image.img -u 0 # link image to virtual
    687 bytes (96 words) - 19:26, 28 March 2021
  • Bottom (category Pages using deprecated source tags)
    Configurable/Cross-Platform commandline resource manager written in rust. Similar to gnu top. Has a vi mode. NOTE: neat, but graphs are CPU drains and
    903 bytes (55 words) - 13:56, 24 January 2021
  • Sqlite client (category Pages using deprecated source tags)
    SQLite uses SQL. sqlite3 # in-memory db sqlite3 new.db # open/create db You can add sqlite commands to your sqliterc. # ~/.sqliterc .mode column .header
    1 KB (102 words) - 14:15, 6 May 2024
  • Xchm (category Pages using deprecated source tags)
    xchm file.chm
    44 bytes (3 words) - 23:06, 8 October 2018
  • Kchmviewer (category Pages using deprecated source tags)
    kchmviewer file.chm
    50 bytes (3 words) - 23:06, 8 October 2018
  • Xarchiver (category Pages using deprecated source tags)
    xarchiver is a GUI program to manage various archive formats sudo pacman -S xarchiver
    117 bytes (14 words) - 14:54, 25 May 2019
  • Osascript (category Pages using deprecated source tags)
    Applescript osascript -e 'display notification "nice text" with title "nice title"'
    133 bytes (11 words) - 16:13, 8 August 2020
  • Wipe (category Pages using deprecated source tags)
    Deletes files within a filesystem. I haven't had the occasion to use it yet. wipe -r /path/to/wipe
    130 bytes (19 words) - 19:43, 3 August 2019
  • Cbsd install (category Pages using deprecated source tags)
    pkg install cbsd
    47 bytes (3 words) - 20:44, 7 June 2020
  • Latex comments (category Pages using deprecated source tags)
    % a comment
    43 bytes (2 words) - 15:13, 10 July 2021
  • Aria2 (category Pages using deprecated source tags)
    sudo pacman -S aria2 aria2c file.torrent # start a torrent download
    224 bytes (11 words) - 16:27, 11 July 2019
  • Elisp math (category Pages using deprecated source tags)
    (+ 3 4) ;; adds 3 and 4
    55 bytes (6 words) - 18:54, 11 January 2020
  • Elisp comments (category Pages using deprecated source tags)
    ;; comments begin with double-semicolons
    71 bytes (5 words) - 18:34, 11 January 2020
  • Nix conditionals (category Pages using deprecated source tags)
    if true then "true" else "false"
    62 bytes (6 words) - 01:00, 16 August 2020
  • Google docs (category Pages using deprecated source tags)
    Tools --> Preferences --> Automatically detect Markdown
    87 bytes (5 words) - 13:33, 6 April 2023
  • Icsharp (category Pages using deprecated source tags)
    NOTE: Did not work for me sudo pacman -S mono git clone https://github.com/zabirauf/icsharp cd icsharp xbuild
    202 bytes (20 words) - 21:06, 2 November 2019
  • Javascript comments (category Pages using deprecated source tags)
    /* Multiline * comment */ let foo = 1 // comment
    90 bytes (6 words) - 17:42, 23 May 2021
  • Ruby comments (category Pages using deprecated source tags)
    # line comment
    63 bytes (2 words) - 20:14, 5 December 2019
  • Notify-send (category Pages using deprecated source tags)
    Issue a notification from the commandline on a linux/bsd server. notify-send SUMMARY BODY
    121 bytes (15 words) - 16:09, 8 August 2020
  • Zip (category Pages using deprecated source tags)
    requests a password, encryption algorithm varies` verify encryption algorithm used 7z l -slt file.zip
    332 bytes (31 words) - 19:29, 13 August 2022
  • Ruby json (category Pages using deprecated source tags)
    require 'json' {"a" => "b"}.to_json #> '{"a": "b"}' JSON.parse('{"a": 1}') #> { "a" => 1 }
    124 bytes (14 words) - 20:18, 6 November 2020
  • Vbscript functions (category Pages using deprecated source tags)
    Sub mysub(argument1,argument2) some statements End Sub
    86 bytes (8 words) - 00:18, 8 December 2019
  • Powershell datetime (category Pages using deprecated source tags)
    Get-Date Get-TimeZone Set-TimeZone 'Eastern Standard Time'
    95 bytes (9 words) - 13:38, 9 August 2019
  • Qutebrowser install (category Pages using deprecated source tags)
    sudo pacman -S qutebrowser # archlinux choco install -y qutebrowser # windows brew cask install qutebrowser # macos
    153 bytes (15 words) - 17:12, 15 May 2021
  • Unrar (category Pages using deprecated source tags)
    Compress/Extract rar archives. # extract, preserving directory structure unrar x src.rar /path/out/
    182 bytes (14 words) - 03:18, 2 July 2022
  • Coreutils chown (category Pages using deprecated source tags)
    Change the user/group that owns a file. chown user:group file
    121 bytes (11 words) - 19:25, 28 March 2021
  • Pulseaudio install (category Pages using deprecated source tags)
    sudo pacman -S pulseaudio pulseaudio-alsa sudo pacman -S pavucontrol-qt
    102 bytes (11 words) - 00:33, 26 March 2021
  • Java logging (category Pages using deprecated source tags)
    TODO: UNFINISHED! import java.util.logging.Logger; import java.util.logging.*;
    117 bytes (11 words) - 19:47, 2 November 2019
  • Nullfs (category Pages using deprecated source tags)
    Mount directories as other directories. mount -t nullfs /mnt/mywebsite /usr/local/www/mywebsite
    178 bytes (14 words) - 18:47, 1 May 2021
  • Powershell registry (category Pages using deprecated source tags)
    Set-ItemProperty -Path 'Registry::HKCU\Environment' -Name PATH -Value ($PATH.Path +";"+ $rezbin_PATH)
    138 bytes (13 words) - 12:22, 6 August 2019
  • Bsd jot (category Pages using deprecated source tags)
    jot -r 1 1 50 # 1 random num between 1 and 50
    78 bytes (12 words) - 19:48, 28 March 2021
  • Wireguard usage (category Pages using deprecated source tags)
    wg # print configured connections wg show # print configured connections wg-quick up wg0 # activate wg0
    158 bytes (15 words) - 03:14, 4 July 2020
  • Viml comments (category Pages using deprecated source tags)
    Lines matching '\s*"' are comments. " a comment " another comment
    113 bytes (9 words) - 19:09, 10 May 2019
  • Exfat (category Pages using deprecated source tags)
    FreeBSD # requires port: sysutils/fusefs-exfat # NOTE: I was unable to compile (2020/05) mount -t exfat /dev/ad1s1 /mnt
    273 bytes (20 words) - 21:02, 14 June 2020
  • Launchd (category Pages using deprecated source tags)
    commandline launchctl -h
    353 bytes (3 words) - 23:51, 15 September 2021
  • Gnu ls (category Pages using deprecated source tags)
    ls --group-directories-first ls -X # sort by file-extension ls -v # sort with natural sorting
    176 bytes (16 words) - 01:30, 25 May 2021
  • Elisp print (category Pages using deprecated source tags)
    (message "her name is %s, her age is %d" (list "vickie" 24) ) ;; print with substitution (print "abc") ;; normal print
    199 bytes (19 words) - 18:38, 11 January 2020
  • Yum (category Pages using deprecated source tags)
    CentOS uses a the rpm based package manager YUM. yum search <package> # search for a package yum install <package> # install package yum update # update
    305 bytes (37 words) - 14:04, 14 March 2021
  • Nix operators (category Pages using deprecated source tags)
    Full list https://nixos.org/nix/manual/#sec-language-operators 1 + 1 # addition 1 - 1 # subtraction 1 * 1 # multiplication 1 / 1 # division
    175 bytes (22 words) - 02:20, 16 August 2020
  • Rpcs3 (category Pages using deprecated source tags)
    RPCS3 is a playstation 3 emulator. pacaur -S cereal pacaur -S rpcs3-git
    158 bytes (13 words) - 16:51, 21 May 2018
  • Vbscript variables (category Pages using deprecated source tags)
    Dim var ' Normal variable within scope Public var ' Global variable Private var ' (? private to what)
    154 bytes (15 words) - 00:09, 8 December 2019
  • Powershell debugger (category Pages using deprecated source tags)
    Set-PSBreakpoint # set breakpoint on current line Set-PSBreakpoint -Line 15 # set breakpoint on line 15
    190 bytes (16 words) - 00:16, 26 November 2019
  • Anbox (category Pages using deprecated source tags)
    Anbox is an android emulator for linux. pacman -S anbox
    142 bytes (10 words) - 02:30, 8 February 2021
  • Ijava (category Pages using deprecated source tags)
    sudo pacman -S jupyter pacaur -S jre pacaur -S jdk11 git clone https://github.com/SpencerPark/IJava.git cd IJava/ sudo chmod u+w gradlew ./gradlew installKernel
    276 bytes (31 words) - 16:27, 8 June 2019
  • Cmake operators (category Pages using deprecated source tags)
    IF( <expr> AND <expr> ) IF( <expr> OR <expr> ) https://cmake.org/cmake/help/v3.11/command/if.html
    130 bytes (18 words) - 18:58, 18 May 2018
  • Powershell conditionals (category Pages using deprecated source tags)
    if ($PATH[0] -ne 'C:\Python27') { ... } # if statement if (!( $PATH.Contains('C:\Python27') )){ ... } # if not statement
    178 bytes (16 words) - 03:26, 19 September 2018
  • Csv (category Pages using deprecated source tags)
    CSVs are comma separated tables. headers are available, but not mandatory. entries may include commas if the row/column is written within double-quotes
    356 bytes (43 words) - 16:53, 20 January 2021
  • Dia (category Pages using deprecated source tags)
    A UML or general node-based diagram tool. sudo pacman -S dia
    106 bytes (12 words) - 00:06, 30 August 2018
  • Ruby yaml (category Pages using deprecated source tags)
    require 'yaml' YAML.load("a: 1", aliases: true) #> {"a"=>1} YAML.dump(['a', ['b']], indentation: 2)
    132 bytes (16 words) - 20:46, 19 September 2022
  • Python install (category Pages using deprecated source tags)
    pacman -S python # Archlinux pkg install python37 # FreeBSD brew install python # MacOS
    178 bytes (12 words) - 16:41, 10 July 2021
View ( | ) (20 | 50 | 100 | 250 | 500)