You can use the below link to access Fritzing downloads for free.
Additionally, below are direct download links to Fritzing.
You can use the below link to access Fritzing downloads for free.
Additionally, below are direct download links to Fritzing.
| #!/usr/bin/python3 | |
| # == BLKENVFLASH == written by Rene K. Mueller <spiritdude@gmail.com> | |
| # | |
| # Description: | |
| # Writes an image (.img) or to the SD card direct from existing .env.txt for LuckFox Pico Pro/Max | |
| # | |
| # % ./blkenvflash disk.img | |
| # -- inquery with `lsblk` which device is your SD card resides -- | |
| # % sudo dd if=disk.img of=/dev/sdX bs=1M; sync |
| #!/bin/sh | |
| pkgin -y install xorg | |
| pkgin -y install hal | |
| pkgin -y install fam | |
| pkgin -y install mpv compton midori firefox mozilla-rootcerts-openssl | |
| pkgin -y install wpa_gui sysupgrade deluge slim slim-themes uget thunderbird | |
| pkgin -y install xfce4 xfce4-extras | |
| cp /usr/pkg/share/examples/rc.d/hal /etc/rc.d | |
| cp /usr/pkg/share/examples/rc.d/dbus /etc/rc.d | |
| cp /usr/pkg/share/examples/rc.d/famd /etc/rc.d |
| #!/bin/bash | |
| echo "===================================================================" | |
| echo | |
| echo " My m68000 Development Setup " | |
| echo " You may be prompted for root credentials to complete the install. " | |
| echo | |
| echo " Toolchain is GNU so it expects you to write AT&T style assembly. " | |
| echo " If you want the Windows (MSYS2) script, it's here: " | |
| echo " https://gist.github.com/WillSams/f592f9d494b51119945440f7e91079b0 " |
Ref: https://gist.github.com/vertexclique/9839383
Please use built-in Terminal.app (of Mac OS X) to type and rune the command, do not use another tool (like iTerm2).
Common step after enter run the patch command:
| #! /bin/bash | |
| set -e | |
| trap 'previous_command=$this_command; this_command=$BASH_COMMAND' DEBUG | |
| trap 'echo FAILED COMMAND: $previous_command' EXIT | |
| #------------------------------------------------------------------------------------------- | |
| # This script will download packages for, configure, build and install a GCC cross-compiler. | |
| # Customize the variables (INSTALL_PATH, TARGET, etc.) to your liking before running. | |
| # If you get an error and need to resume the script from some point in the middle, | |
| # just delete/comment the preceding lines before running it again. |
Magic words:
psql -U postgresSome interesting flags (to see all, use -h or --help depending on your psql version):
-E: will describe the underlaying queries of the \ commands (cool for learning!)-l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)| EWoz 1.0 | |
| by fsafstrom » Mar Wed 14, 2007 12:23 pm | |
| http://www.brielcomputers.com/phpBB3/viewtopic.php?f=9&t=197#p888 | |
| via http://jefftranter.blogspot.co.uk/2012/05/woz-mon.html | |
| The EWoz 1.0 is just the good old Woz mon with a few improvements and extensions so to say. | |
| It's using ACIA @ 19200 Baud. | |
| It prints a small welcome message when started. | |
| All key strokes are converted to uppercase. |