linux - Delphijustin industries https://delphijustin.biz Making use out of things! Wed, 29 Oct 2025 22:10:47 +0000 en-US hourly 1 https://wordpress.org/?v=6.2.9 https://delphijustin.biz/wp-content/uploads/2025/10/cropped-dongwa-192-32x32.png linux - Delphijustin industries https://delphijustin.biz 32 32 UNO Card Game https://delphijustin.biz/uno-card-game/?utm_source=rss&utm_medium=rss&utm_campaign=uno-card-game https://delphijustin.biz/uno-card-game/#respond Sat, 04 Oct 2025 23:19:22 +0000 https://delphijustin.biz/?p=5358 This is a cool and pretty impressive UNO Game for the computer. I came up with this idea to build this game because I wanted to make a game that would be fun for my girlfriend to play. It has sounds, voices, different card backs, customizable card fonts and table background. There is a 15-minute …

The post UNO Card Game first appeared on Delphijustin industries.

]]>
This is a cool and pretty impressive UNO Game for the computer. I came up with this idea to build this game because I wanted to make a game that would be fun for my girlfriend to play. It has sounds, voices, different card backs, customizable card fonts and table background. There is a 15-minute round limitation in the free trial, buy the password for 10 dollars and source code for 40 dollars. Its a fun game and everytime a new game starts the computer has a random English name.

PayPal:
PayPal:

The post UNO Card Game first appeared on Delphijustin industries.

]]>
https://delphijustin.biz/uno-card-game/feed/ 0
VoltXP Function Generator App https://delphijustin.biz/voltxp-function-generator-app/?utm_source=rss&utm_medium=rss&utm_campaign=voltxp-function-generator-app https://delphijustin.biz/voltxp-function-generator-app/#respond Thu, 25 Sep 2025 00:31:38 +0000 https://delphijustin.biz/?p=5344 This app is a Windows/Linux function generator. It can do sine,sawtooth,square,triangle,noise and sweep. It allows you to use your parallel or serial port as a square wave generator. It also can be configured through the command-line. Has a nag screen when parameters are passed without registering the password. You can click on the black screen …

The post VoltXP Function Generator App first appeared on Delphijustin industries.

]]>
This app is a Windows/Linux function generator. It can do sine,sawtooth,square,triangle,noise and sweep. It allows you to use your parallel or serial port as a square wave generator. It also can be configured through the command-line. Has a nag screen when parameters are passed without registering the password. You can click on the black screen for a drop down menu.

PayPal:

The post VoltXP Function Generator App first appeared on Delphijustin industries.

]]>
https://delphijustin.biz/voltxp-function-generator-app/feed/ 0
LiveBackup – live linux backup tool https://delphijustin.biz/livebackup-live-linux-backup-tool/?utm_source=rss&utm_medium=rss&utm_campaign=livebackup-live-linux-backup-tool https://delphijustin.biz/livebackup-live-linux-backup-tool/#comments Thu, 26 Sep 2019 19:36:31 +0000 https://delphijustin.biz/?p=675 This tiny shell script will allow you to backup the settings and programs from a live linux session to two .tar files. Here’s a list of the tar files and what they do. config/data.tar – Configuration and settings files. (/var and /usr directories) if any of the files in data.tar exists it will be overwritten. …

The post LiveBackup – live linux backup tool first appeared on Delphijustin industries.

]]>
This tiny shell script will allow you to backup the settings and programs from a live linux session to two .tar files. Here’s a list of the tar files and what they do.

  • config/data.tar – Configuration and settings files. (/var and /usr directories) if any of the files in data.tar exists it will be overwritten.
  • config/system.tar – Programs and other settings. Any existing file will not be overwritten. This prevents crashing the system after untaring the archive.

Here’s the source code for the two scripts are listed below. No download needed just use a text editor and save them as a *.sh file.

#!/bin/sh
#load.sh file
echo Heres a list of the operations and error codes, 0 = success>config/load.log
if [ -z $1 ]
then
xterm -e ./load.sh xterm
else
echo ----- data.tar   -----
sudo tar -xvf config/data.tar -C /
echo data.tar $?>>config/load.log
echo ----- system.tar -----
sudo tar -xvf config/system.tar -C / --skip-old-files
echo system.tar $?>>config/load.log
#Add service load commands after this line
#web server
hiawatha
echo hiawatha $?>>config/load.log
jwm -restart
fi
#!/bin/sh
#save.sh file
mkdir config
echo Heres a list of the operations and error codes, 0 = success>config/save.log
if [ -z $1 ]
then
xterm -e ./save.sh xterm
else
echo ---- data.tar     ----
rm config/data.tar
tar -rvf config/data.tar /etc
echo /etc $?>>config/save.log
tar -rvf config/data.tar /var
echo /var $?>>config/save.log
tar -rvf config/data.tar ~
echo home dir $?>>config/save.log
echo ---- system.tar   ----
rm config/system.tar
tar -rvf config/system.tar /usr
echo system.tar $?>>config/save.log
xedit config/save.log
fi

The post LiveBackup – live linux backup tool first appeared on Delphijustin industries.

]]>
https://delphijustin.biz/livebackup-live-linux-backup-tool/feed/ 1