All public logs
Jump to navigation
Jump to search
Combined display of all available logs of wikipost. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 12:02, 22 December 2024 Admin talk contribs uploaded File:NGC253 2024-11-23 Sculptor LT6 SV505 57x30sec 28min 11Mly.jpg
- 12:02, 22 December 2024 Admin talk contribs created page File:NGC253 2024-11-23 Sculptor LT6 SV505 57x30sec 28min 11Mly.jpg
- 12:02, 22 December 2024 Admin talk contribs uploaded File:NGC5128 2024-05-19 Centaurus-A MeadeLT6 F10 SV505C 60min 12Mly.jpg
- 12:02, 22 December 2024 Admin talk contribs created page File:NGC5128 2024-05-19 Centaurus-A MeadeLT6 F10 SV505C 60min 12Mly.jpg
- 12:01, 22 December 2024 Admin talk contribs uploaded File:M83 2024-04-28 MeadeLT6 SV505C southern-pinwheel 42mins 15Mly.jpg
- 12:01, 22 December 2024 Admin talk contribs created page File:M83 2024-04-28 MeadeLT6 SV505C southern-pinwheel 42mins 15Mly.jpg
- 12:01, 22 December 2024 Admin talk contribs uploaded File:M42 2024-03-24 8-inch-F4-QHY715C 100s 1500ly.jpg
- 12:01, 22 December 2024 Admin talk contribs created page File:M42 2024-03-24 8-inch-F4-QHY715C 100s 1500ly.jpg
- 12:00, 22 December 2024 Admin talk contribs uploaded File:M20-2023-07-09 8inchNewt-D1100-trifid small 4kly.jpg
- 12:00, 22 December 2024 Admin talk contribs created page File:M20-2023-07-09 8inchNewt-D1100-trifid small 4kly.jpg
- 12:00, 22 December 2024 Admin talk contribs created page Astrophotography (Created page with "Gallery: File:Comet Leonard 2021-12-30.jpg")
- 12:00, 22 December 2024 Admin talk contribs uploaded File:Comet Leonard 2021-12-30.jpg
- 12:00, 22 December 2024 Admin talk contribs created page File:Comet Leonard 2021-12-30.jpg
- 00:34, 7 November 2024 Admin talk contribs uploaded File:Network-diagram-wifi-nat-router.png
- 00:34, 7 November 2024 Admin talk contribs created page File:Network-diagram-wifi-nat-router.png
- 21:12, 4 November 2024 Admin talk contribs created page Linux wifi dongles (Created page with "Compile instructions for Linux WiFi dongles It can be as simple as this: <pre> apt-get install raspberrypi-kernel-headers build-essential bc dkms git git clone https://github.com/morrownr/8821cu-20210916.git cd ~/src/8821cu-20210916 sudo ./install-driver.sh </pre>")
- 10:05, 4 November 2024 Admin talk contribs created page Wifi-hotspot (Created page with "experimental setup, use at your own risk! lots of random info here, so I have a central place to keep configs, tips, links, etc.. What's this about? The wireless range extender I bought (D-Link DAP-1530) didn't quite work the way I wanted with the systems I was using: * it took 11 minutes to finally settle if it couldn't detect an Internet connection * the router I wanted it to connect to was an ArchLinux box, configured as an access point, but every time I wanted to...")
- 21:43, 26 June 2024 Admin talk contribs uploaded File:Julian-Free 2024-06-26.jpg
- 21:43, 26 June 2024 Admin talk contribs created page File:Julian-Free 2024-06-26.jpg
- 02:38, 22 June 2024 Admin talk contribs created page Archlinux (Created page with "setup: <pre> arch-- partition disk -- fdisk /dev/sda mkfs.ext4 /dev/sda1 mkswap /dev/sda2 mount /dev/sda1 /mnt swapon /dev/sda2 -- install os -- pacstrap -K /mnt base linux linux-firmware -- update filesystem table -- genfstab -U /mnt >> /mnt/etc/fstab -- switch to new installation -- arch-chroot /mnt -- configure a few things -- /etc/hostname passwd pacman -S grub-bios grub-install /dev/sda grub-mkconfig -o /boot/grub/grub.cfg -- manually get ip address from dhcp...")
- 00:08, 5 May 2024 Admin talk contribs created page Vim-cheatsheet (Created page with "===Markers=== <pre> :ma set current position for mark A `a jump to position of mark A :marks show list of marks </pre>")
- 05:10, 25 February 2024 Admin talk contribs created page Csv-iteration (Created page with " <pre> #!/bin/sh # process a comma-separated list of values ITEMLIST="apples,pears" ITEMCOUNT=1 STATUS=0 while true do ARGCNT="$" ARGCNT=$ARGCNT$ITEMCOUNT ITEMNAME=`echo $ITEMLIST | awk -F \, "{print $ARGCNT}"` if test -z "$ITEMNAME" then ITEMCOUNT=$((ITEMCOUNT - 1)) break else # item name found, do something with it echo "Item $ITEMCOUNT = $ITEMNAME" ITEMCOUNT=$((ITEMCOUNT + 1)) fi done </pre>")
- 05:10, 25 February 2024 Admin talk contribs created page Bash-examples (Created page with "Collection of somewhat useful scrips I found that do things in bash. csv-iteration")
- 07:11, 24 February 2024 Admin talk contribs uploaded File:What are the chances.jpg
- 07:11, 24 February 2024 Admin talk contribs created page File:What are the chances.jpg
- 07:07, 24 February 2024 Admin talk contribs created page What are the chances (Created page with "Infographic: What are the chances")
- 22:44, 13 February 2024 Admin talk contribs created page Setting global variables (Created page with " ===Global User Name=== Get the current global user name: <pre> git config --global user.name "Mona Lisa" </pre> Set the current global user name: <pre> git config --global user.name "Mona Lisa" </pre>")
- 01:45, 9 February 2024 Admin talk contribs created page Branches (Created page with " Git branch model:")
- 01:42, 9 February 2024 Admin talk contribs created page Bash git-prompt (Created page with " ---automatically change the prompt when you're in a git directory--- <pre> ---[~/.bashrc]--- # uncomment these 5 lines to automatically show a different PS1 prompt when you enter a git directory GIT_PS1_SHOWDIRTYSTATE=1 GIT_PS1_SHOWUNTRACKEDFILES=1 GIT_PS1_SHOWCOLORHINTS=true PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "' source /usr/lib/git-core/git-sh-prompt ---[]--- </pre>")
- 01:36, 9 February 2024 Admin talk contribs created page Setting aliases (Created page with " <pre> creating an alias will probably save you a lot of time typing in long commands to create an alias either create one from the commandline or edit ~/.gitconfig on the commandline: git config --global alias.hist 'log --graph --all --oneline' NOTE: omitting '--global' will only set this alias for this repository editing the config file: --- [alias] hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --all --oneline --date=short --- or...")
- 01:34, 9 February 2024 Admin talk contribs created page Creating a git repository from an existing project (Created page with " ===creating a git repository from an existing project=== Assuming a project in ~/myproject containing all sorts of files and directories <pre> In the below example we use a local project called 'myproject' and upload it to the git server. - if the existing local 'myproject' isn't initialised with git yet, then do so now: $ git init $ git add . $ git commit -m "initial commit" - clone 'myproject' from your local project into a new local di...")
- 01:21, 9 February 2024 Admin talk contribs created page Git (Created page with " ===creating a git repository from an existing project=== Assuming a project in ~/myproject containing all sorts of files and directories")
- 01:18, 9 February 2024 Admin talk contribs created page Vnc (Created page with "enabling a VNC server for remote desktop access using x11vnc <pre> apt-get install x11vnc </pre>")
- 01:17, 9 February 2024 Admin talk contribs created page Systemd-tips (Created page with " ==Enable /etc/rc.local=== <pre> --[example /etc.rc.local]-- #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. exit 0 --[end]-- systemctl daemon-reload systemctl start rc-local </pre>")
- 01:15, 9 February 2024 Admin talk contribs created page Vim-config (Created page with " useful entries in ~/.vimrc <pre> " --- disable syntax highlighting syntax off " --- open file at last edit position autocmd BufReadPost * \ if line("'\"") >= 1 && line("'\"") <= line("$") && &ft !~# 'commit' \ | exe "normal! g`\"" \ | endif " --- disable bell and screen flickering on escape --- set visualbell set t_vb= " -- allow mouse copy and paste -- set mouse=r " --- set tabstops to 4 spaces and set shiftwidth (ident amount) as...")
- 08:51, 4 February 2024 Admin talk contribs created page MorseRunner (Created page with "An excellent morse-code CW Contest Simulator is a program created by Alex Shovkoplyas (VE3NEA) called MorseRunner. After you set your own callsign and the speed at which you want to send CW you're set to go. I normally set a duration for 15 minutes and then click on the green Run button to kick it off. The software is surprisingly good at realistically simulating various types of contacts; some slow, some fast, sometimes fading, with crackles and pops in the background...")
- 23:11, 23 March 2023 Admin talk contribs uploaded File:18650-T85-telemetry.jpg
- 23:11, 23 March 2023 Admin talk contribs created page File:18650-T85-telemetry.jpg
- 22:15, 28 August 2022 Admin talk contribs created page Tips (Created page with "Here are some tips that I found useful to bring me in a position to buy my first home. The property * look for a property with as much land as possible * get a freestanding house, or a duplex, or a townhouse, or an appartement. In that order. Personal development * Your finances")
- 03:55, 21 May 2022 Admin talk contribs uploaded File:0139 remote 433MHz transmitter v0.6.ino.zip
- 03:55, 21 May 2022 Admin talk contribs created page File:0139 remote 433MHz transmitter v0.6.ino.zip
- 03:49, 21 May 2022 Admin talk contribs uploaded File:0139 PCB v1.5 schematic.png
- 03:49, 21 May 2022 Admin talk contribs created page File:0139 PCB v1.5 schematic.png
- 03:49, 21 May 2022 Admin talk contribs deleted page File:0139 PCB v1.5 schematic.png.png (0)
- 03:48, 21 May 2022 Admin talk contribs uploaded File:0139 PCB v1.5 schematic.png.png
- 03:48, 21 May 2022 Admin talk contribs created page File:0139 PCB v1.5 schematic.png.png
- 03:22, 1 January 2022 Admin talk contribs uploaded File:0139 remote 433MHz transmitter v0.5.ino.zip
- 03:22, 1 January 2022 Admin talk contribs created page File:0139 remote 433MHz transmitter v0.5.ino.zip
- 03:21, 1 January 2022 Admin talk contribs uploaded File:0139-remote-sensors-433Mhz v1.4 gerbers.zip
- 03:21, 1 January 2022 Admin talk contribs created page File:0139-remote-sensors-433Mhz v1.4 gerbers.zip