ac

ACM and IEEE/CS are good for you

Some months back I joined both ACM and IEEE Computer Society and I'm definitely a better human being now. Most won't notice, I guess. And you can take that any way you want to.




ac

Place Phone to PC

The Ultimate (well, sortof) in long-distance multithreaded debugging. Have the customer's computer sing to you over the phone line.




ac

Tips to install Oracle 11gr2 RAC on AIX (6.1/7.1)

AIX is like an Unix environment awesome original, same to HP-Unix, and, if you have a plan to install Oracle RAC, you need to pay attention. I note some tips in this article to help.

1. Checking Operating System Packages

# lslpp -l bos.adt.base bos.adt.lib bos.adt.libm bos.perf.libperfstat 
bos.perf.perfstat bos.perf.proctools rsct.basic.rte rsct.compat.clients.rte 
xlC.aix61.rte

If not, install on AIX source by smity. It's easy, but remember, some packaged requires your IBM's account to download.

2. Verify UDP and TCP Kernel Parameters

# /usr/sbin/no -a | fgrep ephemeral

If you expect your workload to require a high number of ephemeral ports, then update
the UDP and TCP ephemeral port range to a broader range. For example:

# /usr/sbin/no -p -o tcp_ephemeral_low=9000 -o tcp_ephemeral_high=65500
# /usr/sbin/no -p -o udp_ephemeral_low=9000 -o udp_ephemeral_high=65500

3. Checking Resource Limits:
To ensure that these resource limits are honored, confirm that the line login
session required /usr/lib/security/pam_aix is set in /etc/pam.conf.For example:

dtsession auth required /usr/lib/security/pam_aix
dtlogin session required /usr/lib/security/pam_aix
ftp session required /usr/lib/security/pam_aix
imap session required /usr/lib/security/pam_aix
login session required /usr/lib/security/pam_aix
rexec session required /usr/lib/security/pam_aix
rlogin session required /usr/lib/security/pam_aix
rsh session required /usr/lib/security/pam_aix
snapp session required /usr/lib/security/pam_aix
su session required /usr/lib/security/pam_aix
swrole session required /usr/lib/security/pam_aix
telnet session required /usr/lib/security/pam_aix
xdm session required /usr/lib/security/pam_aix
OTHER session required /usr/lib/security/pam_prohibit
websm_rlogin session required /usr/lib/security/pam_aix
websm_su session required /usr/lib/security/pam_aix
wbem session required /usr/lib/security/pam_aix

4. Tuning AIX System Environment
Confirm the aio_maxreqs value using the procedure for your release:
AIX 6.1 and 7.1:

# ioo -o aio_maxreqs
aio_maxreqs = 65536

The aio is Asynchronous Input Output is an exciting parameter, I tried to control and modified it many times, but it's strongly to do from Oracle advices,

Quote:

Adjust the initial value of aio_maxservers to 10 times the number of logical disks divided by the number of CPUs that are to be used concurrently but no more than 80

Oracle document refer: https://docs.oracle.com/database/121/AXDBI/app_manual.htm#AXDBI7880

5. Tuning Virtual Memory Manager

vmo -p -o minperm%=3
vmo -p -o maxperm%=90
vmo -p -o maxclient%=90
vmo -p -o lru_file_repage=0
vmo -p -o strict_maxclient=1
vmo -p -o strict_maxperm=0

Note: You must restart the system for these changes to take effect

6. Increase System block size allocation

# /usr/sbin/chdev -l sys0 -a ncargs='128'

7. Configure SSH LoginGraceTime Parameter
On AIX systems, the OpenSSH parameter LoginGraceTime by default is commented
out, and the default behavior of OpenSSH on AIX can sometimes result in timeout
errors. To avoid these errors, complete the following procedure:
7.1. Log in as root.
7.2. Using a text editor, open the OpenSSH configuration file /etc/ssh/sshd_config.
7.3. Locate the comment line #LoginGraceTime 2m.
7.4. Uncomment the line, and change the value to 0 (unlimited). For example:
LoginGraceTime 0
7.5. Save /etc/ssh/sshd_config.
7.6. Restart SSH.

8. Setting priviledge to Oracle ASM Luns
Same to Solaris, HP-Unix. Remember, when you've got failure of ASM configuration, you need to flush out the disk's slice/partition by OS command "dd". And the slice/partition/LUN allocated from storage to IBM, has got different first alphabet to other platform. The alphabet begins by "r", example:

7.1 ORC and Voting disk
# chown grid:asmadmin /dev/rhdisk5 -> OCR
# chmod 660 /dev/rhdisk5 
# chown grid:asmadmin /dev/rhdisk6 -> Voting Disk
# chmod 660 /dev/rhdisk6
7.2 Datafile, Archivelog and Backup 
# chown grid:asmadmin /dev/rhdisk2
# chmod 660 /dev/rhdisk2
# chown grid:asmadmin /dev/rhdisk3
# chmod 660 /dev/rhdisk3
# chown grid:asmadmin /dev/rhdisk4
# chmod 660 /dev/rhdisk4
# chown grid:asmadmin /dev/rhdisk9
# chmod 660 /dev/rhdisk9
# chown grid:asmadmin /dev/rhdisk10
# chmod 660 /dev/rhdisk10

9. Enable simultaneous access to a disk device from multiple nodes
To enable simultaneous access to a disk device from multiple nodes, you must set the appropriate Object Data Manager (ODM) attribute, depending on the type of reserve attribute used by your disks. The following section describes how to perform this task using hdisk logical names

8.1. determine the reserve setting your disks use, enter the following command,where n is the hdisk device number

# lsattr -E -l hdiskn | grep reserve_

The response is either a reserve_lock setting, or a reserve_policy setting. If the attribute is reserve_lock, then ensure that the setting is reserve_lock = no. If the attribute is reserve_policy, then ensure that the setting is reserve_policy = no_reserve.

8.2. If necessary, change the setting with the chdev command using the following syntax, where n is the hdisk device number:

chdev -l hdiskn -a [ reserve_lock=no | reserve_policy=no_reserve ]

For example:
# chdev -l hdisk5 -a reserve_lock=no
# chdev -l hdisk5 -a reserve_policy=no_reserve

8.3. Enter commands similar to the following on any node to clear the PVID from each disk device that you want to use:

# /usr/sbin/chdev -l hdiskn -a pv=clear

When you are installing Oracle Clusterware, you must enter the paths to the appropriate device files when prompted for the path of the OCR and Oracle Clusterware voting disk. For example: /dev/rhdisk10

9.Configure Shell Limits
9.1. Add the following lines to the /etc/security/limits file:

default:
fsize = -1
core = 2097151
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1

9.2.Enter the following command to list the current setting for the maximum number of process allowed by the Oracle software user:

/usr/sbin/lsattr -E -l sys0 -a maxuproc

If necessary, change the maxuproc setting using the following command:

/usr/sbin/chdev -l sys0 -a maxuproc=16384

10. Configure User Process Parameters (Verify that the maximum number of processes allowed for each user is set to 2048 or greater)
Enter the following command:

# smit chgsys

Verify that the value shown for Maximum number of PROCESSES allowed for each user is greater than or equal to 2048. If necessary, edit the existing value.
When you have finished making changes, press Enter, then Esc+0 (Exit) to exit.

11. Configure Network Tuning Parameters:
To check the current values of the network tuning parameters:

# no -a | more

If the system is running in compatibility mode, then follow these steps to change the parameter values:

Enter commands similar to the following to change the value of each parameter:

# no -o parameter_name=value

For example:

# no -o udp_recvspace=655360

Add entries similar to the following to the /etc/rc.net file for each parameter that you changed in the previous step:

if [ -f /usr/sbin/no ] ; then
/usr/sbin/no -o udp_sendspace=65536
/usr/sbin/no -o udp_recvspace=655360
/usr/sbin/no -o tcp_sendspace=65536
/usr/sbin/no -o tcp_recvspace=65536
/usr/sbin/no -o rfc1323=1
/usr/sbin/no -o sb_max=4194304
/usr/sbin/no -o ipqmaxlen=512
fi

For the ISNO parameter tcp_sendspace, use the following command to set it:

# ifconfig en0 tcp_sendspace 65536

By adding these lines to the /etc/rc.net file, the values persist when the system restarts.

12. Automatic SSH configuration
By default, OUI searches for SSH public keys in the directory /usr/local/etc/, and ssh-keygen binaries in /usr/local/bin. However, on AIX, SSH public keys typically are located in the path /etc/ssh, and ssh-keygen binaries are located in the path /usr/bin. To ensure that OUI can set up SSH, use the following command to create soft links:

# ln -s /etc/ssh /usr/local/etc
# ln -s /usr/bin /usr/local/bin

In rare cases, Oracle Clusterware installation may fail during the "AttachHome" operation when the remote node closes the SSH connection. To avoid this problem, set the following parameter in the SSH daemon configuration file /etc/ssh/sshd_config on all cluster nodes to set the timeout wait to unlimited:

LoginGraceTime 0

13. Shell Limit
Adding these line in /etc/security/limits

default:
fsize = -1
core = 2097151
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1

14. Create groups and users

# mkgroup -'A' id='1000' adms='root' oinstall
# mkgroup -'A' id='1031' adms='root' dba
# mkgroup -'A' id='1032' adms='root' oper
# mkgroup -'A' id='1020' adms='root' asmadmin
# mkgroup -'A' id='1022' adms='root' asmoper
# mkgroup -'A' id='1021' adms='root' asmdba
# mkuser id='1100' pgrp='oinstall' groups='dba,asmadmin,asmoper,asmdba' home='/portalgrid/grid' grid
# mkuser id='1101' pgrp='oinstall' groups='dba,oper,asmdba' home='/portaloracle/oracle' oracle

# mkdir -p /portalapp/app/11.2.0/grid
# mkdir -p /portalapp/app/grid
# mkdir -p /portalapp/app/oracle

# chown grid:oinstall /portalapp/app/11.2.0/grid <- GRID_HOME
# chown grid:oinstall /portalapp/app/grid <- GRID_BASE (ORACLE_BASE for Grid user)
# chown -R grid:oinstall /portalapp
# chown oracle:oinstall /portalapp/app/oracle
# chmod -R 775 /portalapp/

15. Setting the profile
15.1. Grid Profile

export TEMP=/tmp
export TMP=/tmp
export TMPDIR=/tmp
umask 022

export ORACLE_HOSTNAME=portal1
export ORACLE_BASE=/portalapp/app/grid
export ORACLE_HOME=/portalapp/app/11.2.0/grid
export GRID_HOME=/portalapp/app/11.2.0/grid
export CRS_HOME=/portalapp/app/11.2.0/grid
export ORACLE_SID=+ASM1

export PATH=$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib

16. Prevent Xserver does not display correct term

# startsrc -x

17. Create the following softlink needed for some Oracle utilites

# ln -s /usr/sbin/lsattr /etc/lsattr

To check existing capabilities, enter the following command as root; in this example,
the Grid installation user account is grid:

# /usr/bin/lsuser -a capabilities grid

To add capabilities, enter a command similar to the following:

# /usr/bin/chuser capabilities=CAP_NUMA_ATTACH,CAP_BYPASS_RAC_VMM,CAP_PROPAGATE grid

18. Remember to run the Installation fixup scripts

$ ./runcluvfy.sh stage -pre crsinst -n node -fixup -verbose

With Oracle Clusterware 11g release 2, Oracle Universal Installer (OUI) detects when the minimum requirements for an installation are not met, and creates shell scripts,
called fixup scripts, to finish incomplete system configuration steps. If OUI detects an incomplete task, then it generates fixup scripts (runfixup.sh). You can run the fixup script after you click the Fix and Check Again Button.

19. In the installation progressing, when root.sh at node 2, can the error such as "CRS appear in node 1, did not attemp to stop cluster, re-join cluster, by pass and continue installation.
- If Xterm did not occur, then do: $ export ORACLE_TERM=dtterm
- Manually export ORACLE_BASE, ORACLE_HOME when make an installation before running runInstaller.sh
- If /tmp is too small <500MB, then make a private directory point to other directory, change owner to grid, oracle user, example:

A. Grid

# cd /portallog
# mkdir /portallog/tmp
# chown -R grid:oinstall /portallog/tmp

B. Oracle

# cd /portal
# mkdir tmp
# chown -R oracle:dba /portal/tmp 

C. Export

# export TMP=/portallog/tmp
# export TEMPDIR=/portallog/tmp
# export TMPDIR=/portallog/tmp

Hope this help.
End.
TAT




ac

We're Back !!!


After a myriad of both minor and major problems that have kept me from my blog, I'm back. To be more accurate, we're back. After all, what would Tits n Toast be with out the twins? So with out any further ado, excuses or complicated explanations, let the ramblings and photos, which reflect my daily life, continue...







ac

D.A.M Litanium Mactron 15.00/13.00

•Mooie allround stok met 3 kits Hengel 13.00 mtr/ 11.50 mtr 5 delig ( 6.00 mtr ) topset 4 delig ( 4.70 mtr ) topset 3 delig ( 3.00 mtr ) topset Onze prijs € 289.00 13.00 meter Onze prijs € 259.00 11.50 meter




ac

fix2 accessoires modular.

goedendagik ben op zoek naar fix2 accessoires voor een modular 350 zitkist.specifiek naar lades voor het type 350.ik hoor het graag.mvgnick ten have




ac

Come migliorare il processo di acquisto

Sono fortunato. Negli ultimi anni ho avuto la possibilità di partecipare alla progettazione e realizzazione di alcuni tra gli e-commerce più importanti nati in Italia. È bello, interessante e istruttivo lavorare per un e-commerce, perché il sito non è fine … Continua a leggere

L'articolo Come migliorare il processo di acquisto proviene da Fucinaweb.




ac

10 accorgimenti per migliorare il checkout e-commerce

68%. E’ la percentuale di visitatori che aggiungono almeno un prodotto al carrello senza concludere l’acquisto. Un numero alto, perché il carrello è usato come contenitore temporaneo, ma soprattutto perché il percorso di acquisto è spesso molto lungo e complicato. A Meet Magento presenterò alcuni suggerimenti per … Continua a leggere

L'articolo 10 accorgimenti per migliorare il checkout e-commerce proviene da Fucinaweb.




ac

Fantasy Impact: Cleveland Browns sign Robert Griffin III

Mark Morales-Smith discusses the Fantasy Football impact of the Cleveland Browns' most recent signing of QB Robert Griffin III.




ac

2015 NFL Free Agency & Trades Tracker

NFL Free Agency starts March 12th. This page will track all the player signings and trades. -Harvin to SEA, Boldin to SF, M Wallace to MIA, M Bennett to CHI,




ac

McCain Attacks Bloggers, Sinks Ship with Loose Lips

That's no easy feat even for an old navy man such as John McCain. He says bloggers are old enough to fight his damn wars but not enough to speak our mind.

Think Progress notes McCain's attack on the blogosphere:

When I was a young man, I was quite infatuated with self-expression, and rightly so because, if memory conveniently serves, I was so much more eloquent, well-informed, and wiser than anyone else I knew. It seemed I understood the world and the purpose of life so much more profoundly than most people. I believed that to be especially true with many of my elders, people whose only accomplishment, as far as I could tell, was that they had been born before me, and, consequently, had suffered some number of years deprived of my insights…It’s a pity that there wasn’t a blogosphere then. I would have felt very much at home in the medium.
Damn the torpedoes and full steam ahead. I think we've just been broadsided matey.

Very wittily said John, but all you've accomplished is to demonstrate your ignorance of the Blogosphere. If you only knew how old I really am (but don't you dare ask).

So I guess we've all been told. So much for freedom of speech. Maybe we should put an age limit on it. Now there's an idea for you John. There outta be a law.
In 2000, John McCain called Rev. Jerry Falwell an “agent of intolerance.” Yesterday, in a naked attempt to broaden his political base, McCain delivered the commencement speech at Falwell’s Liberty University. McCain’s hypocrisy was noted on many blogs. He returned the favor in his speech at Liberty by attacking the blogosphere.
A commentor also noted:
McCain’s lurch to the right begs the following question: Could it be possible that Republicans are also saddled with shitty consultants?
Psst... here's a dirtly little secret. McCain's a mole. So now you know.

Related links: daily fisk, news, us-news, in the news, news and politics, politics, political, john+mccain, blogging, blogosphere, humor, fisk




ac

Phony Peaceniks Protest in Washington

That was the scathing headline by Hitch over at Slate magazine about the anti-war protests last Saturday. Has anybody had anything good to say about the protests? I'm still looking.

"The protests were largely sponsored by two groups, the Answer Coalition, which embodies a wide range of progressive political objectives, and United for Peace and Justice, which has a more narrow, antiwar focus.

"International ANSWER," the group run by the "Worker's World" party and fronted by Ramsey Clark, which openly supports Kim Jong-il, Fidel Castro, Slobodan Milosevic, and the "resistance" in Afghanistan and Iraq, with Clark himself finding extra time to volunteer as attorney for the genocidaires in Rwanda.

Quite a "wide range of progressive political objectives" indeed, if that's the sort of thing you like. However, a dip into any database could have furnished Janofsky with well-researched and well-written articles by David Corn and Marc Cooper - to mention only two radical left journalists who have exposed "International ANSWER" as a front for (depending on the day of the week) fascism, Stalinism, and jihadism."




ac

Media blamed for New Orleans debacle

Hollywood meets the news; Drama + Hype = Ratings

Dan Rather was taken to task by Mark Steyn of the Chicago Sun-Times over his comments on the 'Larry King Live'' show about the Katrina news coverage. Personally I like Dan, but ever since Rathergate he does seem to be in a habit of putting his foot in it:

"They took us there to the hurricane," he told Larry. "They put the facts in front of us and, very important, they sucked up their guts and talked truth to power."
According to Steyn, the media got it all wrong:
"Er, no. The facts they put in front of us were wrong, and they didn't talk truth to power. They talked to goofs in power, like New Orleans' Mayor Nagin and Police Chief Compass, and uncritically fell for every nutso yarn they were peddled. The media swallowed more bilge than if they'd been lying down with their mouths open as the levee collapsed. Ten thousand dead! Widespread rape and murder! A 7-year-old gang-raped and then throat-slashed! It was great stuff -- and none of it happened. No gang-raped 7-year-olds. None."
Dan Rather:
"That frickin' Superdome," he raged. "Five days watching dead bodies, watching hooligans killing people, raping people."
Stein:
"But nobody got killed by a hooligan in the Superdome. The problem wasn't rape and murder, but the rather more prosaic lack of bathroom facilities. As Ben Stein put it, it was the media that rioted. They grabbed every lurid rumor and took it for a wild joyride across prime time. There was a real story in there -- big hurricane, people dead -- but it wasn't enough, and certainly not for damaging President Bush."
Stein:
"How appropriate that it should be Dan Rather, always late to yesterday's conventional wisdom, to bless the media's fraudulent coverage of Katrina."
He makes a good point doesn't he? CNN is the worst. It's a good thing we have bloggers to keep them in line.




ac

10 Different Verified Backlinks To Your Website $100

10 Different Verified Backlinks To Your Website $100, No, work is required; simply fill out the form below, and We do the rest; we will email you the backlinks you will receive; you will also get added backlinks from Advertising-blog.com




ac

The universe on your wrist…Jacob & Co.

Now if you ever wanted to be the centre of the universe this watch would definitely help. The huge Jacob & Co. Astronomia measuring in at 43.4mm is opulence at its best. Encased in a rose gold case and powered by the exclusive Jacob & Co. , the manually-wound JCAM19 calibre watch operates at 28,800...




ac

Nach US-Wahl: Wie Trump den Einzug ins Weiße Haus vorbereitet

Heute empfängt US-Präsident Biden seinen Nachfolger Trump im Weißen Haus, um die Übergabe der Regierungsgeschäfte zu besprechen. Schon jetzt arbeitet Trump daran, schnellstmöglich völlig loyale Mitarbeiter zu installieren. Von C. Sarre.




ac

Wirtschaftsweisen legen ihr Jahresgutachten vor

Kurz nach dem Scheitern der Ampel und mitten in der Konjunkturflaute stellen die Wirtschaftsweisen ihr Jahresgutachten vor. Was hilft der Wirtschaft in der aktuellen Situation? Von Hans-Joachim Vieweger.




ac

IRS: Making Work Pay Credit Important Facts

Many working taxpayers are eligible for the Making Work Pay Tax Credit in 2010. The credit is based on earned income and is claimed on your 2010 tax return when you file your taxes in 2011. IRS: Making Work Pay Credit Important Facts






ac

Schematic for Backup Camera?

Hello, Looking to find Schematic for the Backup camera so try to fix. Anyone? Thx



  • 4th Gen Ram -Non Drivetrain- 2010 and Up

ac

Best replacement radio for 2nd Gen

I am having issues with my stock radio. It has never worked since I got my 1994 3500 (tel:1994%203500). Any ideas on what could be wrong?? I am pretty much ready to swap it out. Have you...



  • 2nd Gen. Dodge Ram - No Drivetrain

ac

Here's Exactly How The Co-op Works . . .

. (11 Shares Gone In
Less Than 24 hours!)

Team,

First off . . .

It's been less than 24 hours and we have already had 11
shares reserved at my last count and it always makes me
happy to see that many of the shares reserved were reserved
by repeat co-op members.

This shows me that our co-op not only continues to improve
in value, but also we have many people on our team that use
our co-op as an integral part of their marketing strategy
month after month.

Let me get into the details and explain to you exactly how
our team co-op works . . .

Starting yesterday I opened the enrollment window for the
co-op.

I generally leave this window open for about one week or
until all shares are sold, whichever comes first.

Judging by the fast action of many members of our team, we
will most likely sell out of shares for this co-op in less
than a week.

Each member can reserve up to but no more than 3 shares in
the co-op.

The reason for this is I want to allow team members to use
the co-op as a tool in their marketing arsenal, but I very
much don't want people to use the co-op as their sole
traffic generation method.

It's highly effective, but the truth is your business will
take off to a new level when you master the skills of
creating targeted traffic on your own and using your
marketing skills to control the overall growth of your
business.

Becoming a proficient marketer whether it be online or off
takes time and I understand that, so while you are learning
the skills to be an independent internet network marketer
you have the co-op to lean on to help you generate some
highly qualified traffic to your lead capture page.

It's a huge leverage so if you need it I suggest you use it.

But . . .

Back to the explanation of how our team co-op works . . .

Once all shares are reserved or the co-op window closes I
will take all of our co-op members lead capture page URLs
and add them to a URL rotator so that when traffic is
generated it is divided equally between all members of the
co-op.

This process normally takes me about a day of set up.

After that it's off to the races . . .

I generate targeted traffic for our co-op members using
multiple tried and true traffic generation methods including
Google Adwords, Article Marketing, and Getresponse power
leads campaigns to name a few which I continually test and
track and I direct all traffic to our team co-op front end
lead capture page found at:

http://www.mlm-successsite.com

Once a lead opts in through this lead capture page they are
then immediately added to our team co-op auto responder
account as well as forwarded to our team URL rotator and co-
op lead capture pages.

For every opt in on the front end their will be one lead
capture page view.

In my history of doing our team co-op I have found this to
be the best way to generate extremely targeted lead capture
page views because the lead is double qualified in the
process.

That is . . .

Before they even get a chance to view on of our team's lead
capture pages they have to opt in to our team lead capture
page listed above.

Those people that do opt in on the back end to your lead
capture pages are highly qualified.

They had to double confirm their interest by opting in twice
to view your sales page.

This increases conversions on the front end.

So the question is raised?

How many people double opt in?

About 65% will opt in through your lead capture page on the
back end after opting into our front end lead capture page.

That's fine . . .

Because once they opt in on the front end my TRUE work
begins.

We send all of our leads to a front lead capture page and
collect them in a team auto responder for a very important
reason.

It allows us to send these leads personal follow up emails
on a daily basis.

In creating a "co-op list" we are actually creating a pool
of qualified prospects that we can develop a relationship
with and market to as much as we want over the course of
time.

So my biggest job as the administrator of our team co-op is
to consistently and continually develop a relationship to
these leads once they have opted in.

I do this by sending our leads list an email twice a day.

Once in the morning with a high value relationship building
email and once in the afternoon with a more sales pitch type
email and always giving our leads a good reason to come back
and check out Success University through our team URL rotator
link.

This will create a steady flow of high quality leads for you
to your lead capture page over the course of the month that
our co-op will be in effect after we begin marketing and
promotion.

Even better, the amount of traffic and leads will grow over
the course of the month as this list of prospects grows and
becomes more comfortable with our mailings.

This is HUGE leverage!

You may ask . . .

Why not just set up an auto responder series and send that
out to the list?

This is a good question and the truth is we could and it
would work effectively, but it is not the same powerful
dynamic of creating and having a ongoing dialogue with the
people on the list and this can only happen in a real time
day to day email conversation.

To ensure the best quality of leads and traffic for you as a
member of the team co-op I will devote the time and effort
to do this.

Why?

I take my responsibility to you very seriously.

Your success is my success, and so I will NOT do anything
second best if I know there is a better way to conduct
business.

I will tell you bluntly . . .

You will never find a person more dedicated to your overall
success than me, and the way we run our team co-op is a
reflection of that dedication.

I want as many people as possible to be sitting on the
beaches of the world with me financially free in the next
couple of years and the only way to do that is show you how
this stuff should be done -Do it myself and then teach to
those that are willing to learn.

If you can conceive financial freedom for yourself in this
business, I guarantee it's is possible.

It takes work and courage, but it's possible.

Let's do this thing together!

I'm here to the end as long as you don't give up on
yourself.

Reserve your share in our team's co-op before it's to late!

Use the links below to reserve your share!


http://mlm-successsite.com/training/Coop%20Program.html


[Team Exclusive] IMPORTANT!!!

I will leave our team co-op window for enrolment until all
available shares are sold or for one week at the most!

http://mlm-successsite.com/training/Coop%20Program.html



To Your Success!

John




ac

TV exercise guru Jack LaLanne passes away

Jack told us why people are unhappy in a YouTube at a link in GroupBlog 321. Also there, see Debbie Drake and read about other exercise-related topics from the early 1960s.




ac

Jack Frank's 70s show: artifacts needed

Jack is looking for movie/video footage, old commercials, pics, anything from the 1970s for his "70s show". Watch a preview in GroupBlog 329.




ac

CBS: Tulsa a good place to retire

I caught this brief clip from CBS' "The Early Show" today, touting Tulsa as a great place to retire. YouTube clip in GroupBlog 329.




ac

1967 aerial photo of the Apache Drive-In

Found this in a high altitude aerial photograph over over section 4 of Township 19N and 13E, courtesy of the Tulsa City-County Library.




ac

"8's The Place" and other promos

Carl Bartholomew ("Uncle Zeb") captured the spirit of the 70s and early 80s in these promos he produced for Channel 8. Campaigns include "The News Guys", "Let Us Be The One", "8's The Place", "Total 8 Tulsa", "It's All For Free" (vs. cable TV), plus the Plenty Scary Movie and a Marilyn Monroe look-alike contest.




ac

1964 photo: Bob Gregory attacked by Kissing Burglar

Mike Miller sent a clipping from the Tulsa Tribune. It includes a photo he shot of KTUL photog Bob Gregory under attack by Carol Jean Baker, one of the parking meter-emptying 'Kissing Burglars'. Mike tells the story.




ac

Former KTBA DJ Stacy Richardson passes away

Photo of Stacy with other counterculture radio guys, his articles on TTM, and a link to his obituary at to Rose Hill.




ac

Ace Biker Iron Maltese Cross Ash Grey T-Shirt

The Ace Biker Iron Maltese Cross Ash Grey T-Shirt is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Baseball Jersey

The Ace Biker Iron Maltese Cross Baseball Jersey is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross BBQ Apron

The Ace Biker Iron Maltese Cross BBQ Apron is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Beer Stein

The Ace Biker Iron Maltese Cross Beer Stein is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Button

The Ace Biker Iron Maltese Cross Button is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Calendar Print

The Ace Biker Iron Maltese Cross Calendar Print is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Coffee Mug

The Ace Biker Iron Maltese Cross Coffee Cup is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Dog T-Shirt

The Ace Biker Iron Maltese Cross Dog T-Shirt is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Fitted T-Shirt

The Ace Biker Iron Maltese Cross Fitted T-Shirt is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Golf Shirt

The Ace Biker Iron Maltese Cross Golf Shirt is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Hooded Sweatshirt

The Ace Biker Iron Maltese Cross Hooded Sweatshirt is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Journal

The Ace Biker Iron Maltese Cross Journal is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Jr. Baby Doll T-Shirt

The Ace Iron Maltese Cross Jr. Baby Doll T-Shirt is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Jr. Hoodie

The Ace Biker Iron Maltese Cross Jr. Hoodie is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Jr. Raglan

The Ace Biker Iron Maltese Cross Jr. Raglan is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




ac

Ace Biker Iron Maltese Cross Jr. Spaghetti Tank

The Ace Iron Maltese Cross Jr. Spaghetti Tank is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings