A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Windows 10 » Windows 10 Help Forum
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

What method do YOU use to create your printable personal family calendar?



 
 
Thread Tools Rate Thread Display Modes
  #61  
Old July 24th 19, 07:51 PM posted to microsoft.public.windowsxp.general,alt.windows7.general,alt.comp.os.windows-10
Frank Slootweg
external usenet poster
 
Posts: 1,226
Default grammar etc.

"J. P. Gilliver (John)" wrote:
In message , Frank Slootweg
writes:
[]
And indeed, Dutch isn't a lanuguage, it's a throat disease.


Oops! That, "lanuguage" *was* a typo. Anyway, Dutch isn't a lanuguage
either! :-)

LOL! Stlll chuckling. Saved (with attribution) to my quotes file.


You're welcome. I've been collecting some of yours in my quotes file.

And, as they say:

"If it ain't Dutch, it ain't much!"

A friend at university lived in NL (though I think he was British), and
insisted on pronouncing anything Dutch with full phlegm - placenames,
and the Grolsh (beer) he liked.


I live in 's-Gravenhage [1]. Get your tongue around *that* one!

[1] Also called Den Haag, which is much easier, and, to please You Guys,
The Hague.
Ads
  #62  
Old July 24th 19, 08:33 PM posted to microsoft.public.windowsxp.general,alt.windows7.general,alt.comp.os.windows-10
NY[_2_]
external usenet poster
 
Posts: 37
Default grammar etc.

"J. P. Gilliver (John)" wrote in message
...
And indeed, Dutch isn't a lanuguage, it's a throat disease.


LOL! Stlll chuckling. Saved (with attribution) to my quotes file.
A friend at university lived in NL (though I think he was British), and
insisted on pronouncing anything Dutch with full phlegm - placenames, and
the Grolsh (beer) he liked.


Not for nothing are the Dutch-speaking people of Belgium called Phlegmish
;-)

  #63  
Old July 24th 19, 09:23 PM posted to alt.comp.os.windows-10
Michael Logies
external usenet poster
 
Posts: 225
Default What method do YOU use to create your printable personal family calendar?

On Mon, 22 Jul 2019 22:31:35 -0000 (UTC), "Arlen G. Holder"
wrote:

The problem with the Excel spreadsheet is that you have to LOOK at it in
order to see which birthdays and anniversaries are coming up.

What would be PERFECT is an Excel spreadsheet that has a button that
outputs to a printable calendar file format!


There are plenty:
https://www.calendarlabs.com/excel-calendar/
2019 Monthly & Yearly Excel Calendar Templates
  #64  
Old July 24th 19, 11:15 PM posted to microsoft.public.windowsxp.general,alt.windows7.general,alt.comp.os.windows-10
J. P. Gilliver (John)[_7_]
external usenet poster
 
Posts: 603
Default grammar etc.

In message , Frank Slootweg
writes:
"J. P. Gilliver (John)" wrote:
In message , Frank Slootweg
writes:
[]
And indeed, Dutch isn't a lanuguage, it's a throat disease.


Oops! That, "lanuguage" *was* a typo. Anyway, Dutch isn't a lanuguage
either! :-)


I didn't spot that (so it's in my quotes file with the error!).

LOL! Stlll chuckling. Saved (with attribution) to my quotes file.


You're welcome. I've been collecting some of yours in my quotes file.


Quite happy to share the whole file if I have an email to send it to.
It's only about 63K - I edit it with an ancient text editor that has a
limit (just _under_ 64K), meaning I have to delete to add, which keeps
it fresh.
[]
I live in 's-Gravenhage [1]. Get your tongue around *that* one!


Stand clear!
[]
--
J. P. Gilliver. UMRA: 1960/1985 MB++G()AL-IS-Ch++(p)Ar@T+H+Sh0!:`)DNAf

If you're worried that your house is haunted by a ghost and might need
exorcising, there's an easy way of working out if it is or it isn't: it isn't.
- Victoria Coren Mitchell, quoted in RT 2017/10/7-13
  #65  
Old July 25th 19, 12:43 AM posted to alt.comp.freeware,microsoft.public.windowsxp.general,alt.windows7.general,alt.comp.os.windows-10,alt.os.linux
Arlen G. Holder
external usenet poster
 
Posts: 236
Default What method do YOU use to create your printable personal family calendar?

On Tue, 23 Jul 2019 04:33:37 -0400, Paul wrote:

I compiled it (pcal-4.11.0.tgz) from source, in MinGW.
No, the makefile is not set up for that.

I did a test run afterwards. ( pcal.exe 260,884 bytes )

pcal -P tabloid -o calendar.ps

Here is the resulting output. A vanilla calendar.

https://i.postimg.cc/4yNG3MpC/calendar.gif

Click the "download original", to get the full (300DPI) resolution.

The output is postscript but I rasterized it so
people could see a sample, without actually compiling
the damn thing.

pcal development might have started in 1991.
Last edits are 2007.
Today is 2019.
That's 16 years development, 12 years decay.

*******

In the Makefile, change this chunk...

ifeq ($(OS),DJGPP) # DOS+DJGPP
OS_NAME = "DOS+DJGPP"
D_BUILD_ENV = -DBUILD_ENV_DJGPP
PCAL = pcal.exe
CC = gcc
PACK = :
else # Unix
OS_NAME = "Unix"
D_BUILD_ENV = -DBUILD_ENV_UNIX
PCAL = pcal
CC = /usr/bin/gcc
PACK = compress
# PACK = pack
# PACK = gzip
endif

to a simpler:

OS_NAME = "DOS+DJGPP"
D_BUILD_ENV = -DBUILD_ENV_DJGPP
PCAL = pcal.exe
CC = gcc
PACK = :

I did "BUILD_ENV_DJGPP=0" in msys, but that wasn't
seemingly getting passed, so it was quicker to just
hack it out and force the environment variables so
it could find the gcc in MinGW.

In writefil.c I changed this:

#include pwd.h

to this:

/* include pwd.h */

because MinGW is not POSIX, there is no getpwuid and
friends, and the function in question is vanity bull****
(has nothing to do with printing a calendar).

Now, further down in writefil.c, *remove* this section. Delete it.

/* Generate "For" and "Routing" comments if user name is known... */

#if defined (BUILD_ENV_UNIX) || defined (BUILD_ENV_DJGPP)
if ((pw = getpwuid(getuid())) != NULL && strcmp(pw-pw_name, "nobody" /* anonymous account */) != 0) {
printf("%%%%For: %s\n", pw-pw_name);
#ifdef BUILD_ENV_UNIX
/* The 'pw-pw_gecos' element ('real' user name) is not available in
MS-DOS or DOS+DJGPP build environments... */
strcpy(tmp, pw-pw_gecos);
if ((p = strchr(tmp, ',')) != NULL) *p = '\0';
printf("%%%%Routing: %s\n", tmp);
#endif
}
#endif

That should be enough to get a "make" to work in MinGW (32 bit version).
The pcal.exe is in the exec folder (you have to watch the make output
to figure out where it went :-/ )

The program over the years, has become a bit more portable, so
at least a vanilla calendar can be output. I'm not going to
debug

make install

as I don't know if there is a point to bothering with that.

If you look at the "doc" folder, the parameters you can pass
to the stupid thing are endless. I hope someone has worked
examples somewhere, because it would take me all week to
figure out what to do :-/

Paul
Copy "calendar_us.txt" as "calendar" and place
in the same directory as "pcal.exe".

The program looks for ".calendar", which would be a workable
choice on Linux, and it also looks for "calendar",
which is the working choice on a Windows system.

Then try:

pcal.exe -P tabloid -n Helvetica-Narrow/18 -o calendar.ps

and the calendar will then show "Independence Day" as
July 4th.

The program was probably invented in B&W printer era,
as the PostScript "colors" it refers to, have simple numeric values.
For example "0.8/0.9" are likely two grayscale values.

I don't see any way to add color portraits of puppies
or kittens, so you're on your own there (use your colored
pencils).

Someone may have compiled this for Cygwin, but that doesn't
necessarily mean it was an official package of Cygwin
and can be fetched with the Cygwin package methods. It's
probably less troublesome in Cygwin to do it. You would
then need a minimum of three files, the pcal.exe plus
the two DLLs that Cygwin uses for runtime support.

Paul


Hi Paul,

This note is short as it goes to all the original groups - not just the
poorly archived Win10 ng where most of the suggestions are being explored.

Thanks for being one of a half dozen who (a) understood the question, and,
(b) who offered a purposefully helpful cross-platform solution of modifying
the Makefile in order to successfully compile the ancient Pcal source code
(1991 to 2007) on a current desktop OS.

Here is the resulting output. A vanilla calendar.
https://i.postimg.cc/4yNG3MpC/calendar.gif


Others who understood the question well enough to share purposefully
helpful technical insight were Keith Nuttle (TB/Lightning), RatchetJaw
(LibreOffice calendar creator), Apd (pcal 16-bit issues), G Ross (Calendar
Creator), owl (pcval) Michael Logies & Zaidy036 (Excel calendar creator &
Birthday Alarm calendar creation, & pyotr filipivich (Open Office Calc)).

Just some of the helpful proposed solutions currently under test, are
https://www.techwalla.com/articles/how-do-i-create-a-calendar-in-openoffice
https://extensions.libreoffice.org/templates/calendar-creator
https://www.calendarlabs.com/excel-calendar/
http://pcal.sourceforge.net/
https://www.birthdayalarm.com/
https://www.calendar-12.com/printable_calendar/2019
https://filehippo.com/download_ams-photo-calendar-creator/
https://www.thunderbird.net/en-US/calendar/
https://www.rainlendar.net/cms/index.php
https://print-a-calendar.com/july-2019
https://www.vertex42.com/calendars/printable-calendars.html
https://extensions.openoffice.org/en/project/calendar-template
etc.

The solution will be of general use to almost everyone, where this note is
simply to say I will explore all valid suggested solutions & report back in
the Win10 group the cross platform successful results after testing.

--
(1) I've chosen to ignore the trolls, choosing, instead, to follow Mike
Easter's advice to provide a cross-platform solution to the Win10 ng.
  #66  
Old July 27th 19, 02:50 PM posted to alt.comp.freeware,microsoft.public.windowsxp.general,alt.windows7.general,alt.comp.os.windows-10,alt.os.linux
William Poaster[_4_]
external usenet poster
 
Posts: 15
Default What method do YOU use to create your printable personal family calendar?

On Mon, 22 Jul 2019 15:00:17 +0000, Kenny McCormack wrote:

In article , Arlen G. Holder
wrote:
*What method do YOU use to create your printable personal family
calendar?* 1. Do you have a program that creates a printable calendar?
(this is best) 2. Do you have a Microsoft Office calendar template? (this
would be nice) 3. Do you modify an existing calendar file? (this may work
if it's editable)


I'm sorry.

This has *WHAT* to do with linux? (The only group I read to which this
was posted)


Nothing, it's another trolling ****wit.

Newsgroups:
alt.comp.freeware,microsoft.public.windowsxp.gener al,alt.windows7.general,alt.comp.os.windows-10,alt.os.linux

thread killed
  #67  
Old July 27th 19, 07:52 PM posted to microsoft.public.windowsxp.general,alt.windows7.general,alt.comp.os.windows-10,alt.os.linux
BouffantTHairdo
external usenet poster
 
Posts: 2
Default What method do YOU use to create your printable personal family calendar?

On Sat, 27 Jul 2019 14:50:17 +0100, William Poaster wrote:

another trolling ****wit.

killed

*plonk*
  #68  
Old July 27th 19, 10:45 PM posted to alt.comp.freeware,microsoft.public.windowsxp.general,alt.windows7.general,alt.comp.os.windows-10,alt.os.linux
J. P. Gilliver (John)[_7_]
external usenet poster
 
Posts: 603
Default What method do YOU use to create your printable personal family calendar?

In message , William Poaster
writes:
On Mon, 22 Jul 2019 15:00:17 +0000, Kenny McCormack wrote:

[]
This has *WHAT* to do with linux? (The only group I read to which this
was posted)


Nothing, it's another trolling ****wit.

Newsgroups:
alt.comp.freeware,microsoft.public.windowsxp.gene ral,alt.windows7.genera
l,alt.comp.os.windows-10,alt.os.linux

thread killed


Interesting: how do you kill a thread?

Or do you just mean you've blocked it on _your_ news client?
--
J. P. Gilliver. UMRA: 1960/1985 MB++G()AL-IS-Ch++(p)Ar@T+H+Sh0!:`)DNAf

"If even one person" arguments allow the perfect to become the enemy of the
good, and thus they tend to cause more harm than good.
- Jimmy Akins quoted by Scott Adams, 2015-5-5
 




Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off






All times are GMT +1. The time now is 11:59 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.