Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
User Journal

Journal Journal: timediff c program - gpl 2

Wrote a little c program to do command line calculation of the number of days between two dates, and respecting Gregorian calendar leap-year.

Hope others might find it useful as I do.

http://mrflash818.geophile.net/php/clang/index.php

User Journal

Journal Journal: SGVLUG meeting 2010-03-11

Interesting presentation on data ownership, and the usual general discussions.

Enjoyed hanging out, and the 'after party' at burger continental.

User Journal

Journal Journal: shell script to distribute files from 1 dir to many dirs

Just a shell script I wrote to be able to distribute files in one file to many directories.
Created it because my one directory of digital images was getting too big, such that it was slowing down image viewer startup.

distributeFiles.sh
***
#! /bin/bash

#
# distribte (by using mv)files from a source directory
# to collection of target directories (by using a for loop)
#
# distributeFiles.sh ...
#
if [ "$#" -lt "3" ]
then
    echo "distributeFiles.sh ... "
    exit
fi

ARG_ARRAY=( "$@" )
SOURCE_DIR=${ARG_ARRAY[0]}
#echo "SOURCE_DIR[$SOURCE_DIR]"

unset ARG_ARRAY[0]
#for i in "${ARG_ARRAY[@]}"
#do
# echo $i
#done

ARG_ARRAY_LENGTH=${#ARG_ARRAY[@]}
#echo "ARG_ARRAY LENGTH is $ARG_ARRAY_LENGTH"

AAL=1
#
# Get list of files to distribute
#
for i in $(ls $SOURCE_DIR)
do
    if [ -d "$SOURCE_DIR/$i" ]
    then
        continue
    fi
    #distribute to the distination directories
    #echo "mv \"${SOURCE_DIR}/$i\" ${ARG_ARRAY[$AAL]}/."
    mv ${SOURCE_DIR}/$i ${ARG_ARRAY[$AAL]}/.
    AAL=$((AAL + 1))
    if [ $AAL -gt $ARG_ARRAY_LENGTH ]
    then
        AAL=1
    fi
done
***

User Journal

Journal Journal: sgvlug - january 2008 meeting - was great fun

Went to the SGVLUG general meeting last night.

Had a great presentation on WINE, the windows compatibility softare, running on a recent Ubuntu.

Then went to Burger Continental to pig out. Had a garlic chicken pita, salad bar, and chocolate cake with cherry ice cream and a Dr.Pepper.

3000 calorie nirvana.

Was great fun.

User Journal

Journal Journal: Debian PC back up after hardware failure

Yay to my fellow members of the sgvlug.

The power supply on my Debian PC failed a few months ago.

A sgvlug member donated a 400w ATX power supply this weekend. Installed it, and now my little workstation is back!

yayness - karma feels good sometimes.

User Journal

Journal Journal: Proud Slashdot 10 year anniversary T-shirt owner

Proud Slashdot 10 year anniversary T-shirt owner.

My LUG, SGVLUG (sgvlug.org) hosted one of the Slashdot anniversary parties. I attended.

Got one of the very nice T-shirts!

Congrats to Slashdot on their anniversary, and look forward to celebrating the 20 and 25 year ones, too!

User Journal

Journal Journal: happy friday

Cranking along merrily with JCL and mainframe stuff today.

Slashdot Top Deals

So you think that money is the root of all evil. Have you ever asked what is the root of money? -- Ayn Rand

Working...