Sharing posts in Blogger with G+ audience.
http://buzz.blogger.com/2012/12/mention-people-in-your-posts-with-google.html
To connect blogs to G+ page
http://www.blogger.com/blogger.g?blogID=7974237#googleplus
Get ready to expand your audience folks because you can mention people in blogger posts like so:
For example +ron tatum +Evan Barnes
Well, you get the idea
Thursday, October 24, 2013
Thursday, July 26, 2012
VPN Between Cisco and Netgear routers
How to get a VPN working between a Cisco RVS4000 and Netgear FVS318v3
The key setting that had to be changed was under the VPN settings under the IKE Policies under general Exchange Mode had to be Main Mode The IKE SA Parameters had to match too between the Encryption and Authentication Algorithm using the pre-shared key method.
I got this message in the log and found this article
Jul 26 18:08:47 - hit KRIS_DDOS_TYPE=18
http://www.linksysinfo.org/index.php?threads/rvs4000-stops-working.23520/
The key setting that had to be changed was under the VPN settings under the IKE Policies under general Exchange Mode had to be Main Mode The IKE SA Parameters had to match too between the Encryption and Authentication Algorithm using the pre-shared key method.
I got this message in the log and found this article
Jul 26 18:08:47 - hit KRIS_DDOS_TYPE=18
http://www.linksysinfo.org/index.php?threads/rvs4000-stops-working.23520/
Monday, July 25, 2011
Possible FREE product to implement for upgrading computer lab software
The Internet puts the world at your child’s fingertips and gives them the opportunity to explore, discover, and grow (plus have some fun along the way).
Although the Internet is a fabulous resource, it simply wasn’t built with kids in mind. Even with the best of intentions, children are still able to stumble across something inappropriate that you may be stuck trying to explain.
Perhaps your son loves watching YouTube videos but you’re concerned about the other videos that he may see. Or maybe your daughter adores online games but you don’t want her chatting with strangers while she’s playing those games. This is where KidZui comes in.

Completely Free
The K2 browser is now completely FREE to download and use, providing a safe web experience to all kids.
https://www.kidzui.com/parent_info
Saturday, July 23, 2011
Multimedia experience with older devices
Newer laptops will not work with older equipment plug-ins. For example, the S-Video 4 prong plug in is no longer available on laptops with i3, i5, i7 CPU.
Thursday, July 21, 2011
Sunday, July 10, 2011
Adding Video content on Joomla Web Page using Youtube
Inglewood Southside Christian Church
Check it out http://isschristian.org/ under Ministries, Youth Ministries. That's a pretty cool idea!
Smartphone -> Video Recording -> Youtube -> Add internet Link to church -> Church Web Site!
Keep providing content and hopefully we can bring what we are doing in the church to the world!
Per Twitter:
The event @unleashed2011 has come & gone, now @MrRon9 is taking the baton. Congratz on being ordained Youth Pastor Inglewood Southside Christian Church @http://t.co/uhCVmCs #in
source:
http://www.twitlonger.com/show/blmg3p
Check it out http://isschristian.org/ under Ministries, Youth Ministries. That's a pretty cool idea!
Smartphone -> Video Recording -> Youtube -> Add internet Link to church -> Church Web Site!
Keep providing content and hopefully we can bring what we are doing in the church to the world!
Per Twitter:
The event @unleashed2011 has come & gone, now @MrRon9 is taking the baton. Congratz on being ordained Youth Pastor Inglewood Southside Christian Church @http://t.co/uhCVmCs #in
source:
http://www.twitlonger.com/show/blmg3p
Missing parts to multimedia / sound system
[ ] multimedia computer upgrade system
[ ] multimedia computer should have internet or wifi capable
[ ] multimedia computer should play different types of media video
[ ] wireless bridge repeater because wifi signal is too weak
[ ] wire that connects to a mobile device to sound system
[x] wire that connects to a pc to sound system
[ ] multimedia computer should have internet or wifi capable
[ ] multimedia computer should play different types of media video
[ ] wireless bridge repeater because wifi signal is too weak
[ ] wire that connects to a mobile device to sound system
[x] wire that connects to a pc to sound system
Sunday, June 26, 2011
Pulling web sites accessed using bash script
#Squid is also capable of reading files containing lists of web sites with awk
#!/bin/sh
# at3 3-1-09
#source:
#http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch32_:_Controlling_Web_Access_w
ith_Squid#Password_Authentication_Using_NCSA
# description: pulls the url address off the squid access.log file
# usage: ~/home/geturl *must be in squid var/logs diretory
# the delimiters are http:// and /
#geturl.bsh
more $1 | awk -F'http://' '{ print $2 }' | uniq -u | awk -F/ '{ print $1 }' | sort | uniq -u
#!/bin/sh
# at3 3-1-09
#source:
#http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch32_:_Controlling_Web_Access_w
ith_Squid#Password_Authentication_Using_NCSA
# description: pulls the url address off the squid access.log file
# usage: ~/home/geturl *must be in squid var/logs diretory
# the delimiters are http:// and /
#geturl.bsh
more $1 | awk -F'http://' '{ print $2 }' | uniq -u | awk -F/ '{ print $1 }' | sort | uniq -u
Added crontab options to shutdown and rotate squid logs
# shutdown at 8am, 4pm, and 12am
0 */8 * * * root shutdown -p now
# rotating squid logs daily at 10PM logs rotate and 11PM makes access.log readable
0 23 * * * root chmod 644 /usr/local/squid/var/logs/access.log
0 22 * * * root /usr/local/squid/sbin/squid -k rotate
0 */8 * * * root shutdown -p now
# rotating squid logs daily at 10PM logs rotate and 11PM makes access.log readable
0 23 * * * root chmod 644 /usr/local/squid/var/logs/access.log
0 22 * * * root /usr/local/squid/sbin/squid -k rotate
Saturday, June 18, 2011
disable / enabled control and regedit
http://support.microsoft.com/kb/274849/en-us
I finally figure out how to get my control panel back.
I used a software called TweakUI which meant I could change some things on the Explorer interface. Knowing how to modify the registry of Windows systems is something new to me which I need to explorer further if the time permits.
ops, double post
User Key: [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\
Explorer]
System Key: [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\
Explorer]
Value Name: NoControlPanel
Data Type: REG_DWORD (DWORD Value)
Value Data: (0 = disable restriction, 1 = enable restriction)
source:
http://www.pctools.com/guides/registry/detail/543/
using group policies
type gpedit.msc
source:
http://www.lockergnome.com/it/2006/03/16/disable-the-control-panel-2kxp2003/
There is a registry hack to enable or disable Windows NT TaskManager. The same registry hack applies to Windows 2000 and Windows XP.
Hive: HKEY_CURRENT_USER
Key: Software\Microsoft\Windows\CurrentVersion\Policies\System
Name: DisableTaskMgr
Type: REG_DWORD
Value: 1=Enablethis key, that is DISABLE TaskManager
Value: 0=Disablethis key, that is Don't Disable, Enable TaskManager
As part of the enhanced management available in Windows 2000 and Windows XP, rather than risking a registry change, as an administrator you can enable or disable Windows 2000 Pro or Windows XP Pro's TaskManager using Group Policy Editor. This can be applied to the local policy. Note: if you are trying to override your organizations group policy, you can't. As soon as you re-authenticate to the domain, the domain or OU Group Policy will rewrite the registry setting. But if the TaskManager was accidently disabled or you need to control this item for a set of standalone boxes this is for you:
* Click Start
* Click Run
* Enter gpedit.msc in the Open box and click OK
* In the Group Policy settings window
o Select User Configuration
o Select Administrative Templates
o Select System
o Select Ctrl+Alt+Delete options
o Select Remove Task Manager
o Double-click the Remove Task Manager option
And as I mentioned above, since the policy is Remove Task Manager, by disabling the policy, you are enabling the Task Manager. I noticed the task manager was disabled on a computer I was working.
Got XP Home - use the registry edit.
http://www.windowsnetworking.com/kbase/WindowsTips/WindowsXP/UserTips/Customization/EnableDisableTaskManagerinWindowsXPHomePro.html
I finally figure out how to get my control panel back.
I used a software called TweakUI which meant I could change some things on the Explorer interface. Knowing how to modify the registry of Windows systems is something new to me which I need to explorer further if the time permits.
ops, double post
User Key: [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\
Explorer]
System Key: [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\
Explorer]
Value Name: NoControlPanel
Data Type: REG_DWORD (DWORD Value)
Value Data: (0 = disable restriction, 1 = enable restriction)
source:
http://www.pctools.com/guides/registry/detail/543/
using group policies
type gpedit.msc
source:
http://www.lockergnome.com/it/2006/03/16/disable-the-control-panel-2kxp2003/
There is a registry hack to enable or disable Windows NT TaskManager. The same registry hack applies to Windows 2000 and Windows XP.
Hive: HKEY_CURRENT_USER
Key: Software\Microsoft\Windows\CurrentVersion\Policies\System
Name: DisableTaskMgr
Type: REG_DWORD
Value: 1=Enablethis key, that is DISABLE TaskManager
Value: 0=Disablethis key, that is Don't Disable, Enable TaskManager
As part of the enhanced management available in Windows 2000 and Windows XP, rather than risking a registry change, as an administrator you can enable or disable Windows 2000 Pro or Windows XP Pro's TaskManager using Group Policy Editor. This can be applied to the local policy. Note: if you are trying to override your organizations group policy, you can't. As soon as you re-authenticate to the domain, the domain or OU Group Policy will rewrite the registry setting. But if the TaskManager was accidently disabled or you need to control this item for a set of standalone boxes this is for you:
* Click Start
* Click Run
* Enter gpedit.msc in the Open box and click OK
* In the Group Policy settings window
o Select User Configuration
o Select Administrative Templates
o Select System
o Select Ctrl+Alt+Delete options
o Select Remove Task Manager
o Double-click the Remove Task Manager option
And as I mentioned above, since the policy is Remove Task Manager, by disabling the policy, you are enabling the Task Manager. I noticed the task manager was disabled on a computer I was working.
Got XP Home - use the registry edit.
http://www.windowsnetworking.com/kbase/WindowsTips/WindowsXP/UserTips/Customization/EnableDisableTaskManagerinWindowsXPHomePro.html
Saturday, June 11, 2011
Dell Dimension 3000 Systems
Memory
Type 333- 400-MHz DDR SDRAM
NOTE: DDR333 and DDR400 memory runs at 266MHz when configured with Celeron 400MHz FSB processors
NOTE: DDR333 memory runs at 320MHz when configured with Pentium 4 800MHz FSB processors
Memory connectors: two
Memory capacities 128-, 256-, 512-, or 1-GB non-ECC
Minimum memory 128 MB
NOTE: Between 1 and 64 MB of system memory may be allocated to support graphics, depending on system memory size and other factors.
Maximum memory 2 GB
BIOS address F0000H
Type 333- 400-MHz DDR SDRAM
NOTE: DDR333 and DDR400 memory runs at 266MHz when configured with Celeron 400MHz FSB processors
NOTE: DDR333 memory runs at 320MHz when configured with Pentium 4 800MHz FSB processors
Memory connectors: two
Memory capacities 128-, 256-, 512-, or 1-GB non-ECC
Minimum memory 128 MB
NOTE: Between 1 and 64 MB of system memory may be allocated to support graphics, depending on system memory size and other factors.
Maximum memory 2 GB
BIOS address F0000H
Wednesday, June 08, 2011
Helping Inglewood Christian School close its doors
Computer that holds financial records is being maintained
Hard disk seems ok and ran a scan disk
Updating Quickbook files to more current version of Quickbooks.
Use to have Quickbooks version 2007 and was recently upgraded to version 2009
http://quickbooks.intuit.com/product/about_quickbooks/peachtree_conversion.jsp
Installed Speed Fan to check for CPU Temperature and Smart Disk Status
http://www.almico.com/sfdownload.php
Faulty mouse may cause computer to freeze?
Convert Windows 98 cloned machine into a backup hard disk
Cloned machine does not boot properly and probably be used for parts
Asked to borrow the external "Simple Tech" casing longer
Hard disk seems ok and ran a scan disk
Updating Quickbook files to more current version of Quickbooks.
Use to have Quickbooks version 2007 and was recently upgraded to version 2009
http://quickbooks.intuit.com/product/about_quickbooks/peachtree_conversion.jsp
Installed Speed Fan to check for CPU Temperature and Smart Disk Status
http://www.almico.com/sfdownload.php
Faulty mouse may cause computer to freeze?
Convert Windows 98 cloned machine into a backup hard disk
Cloned machine does not boot properly and probably be used for parts
Asked to borrow the external "Simple Tech" casing longer
Saturday, May 14, 2011
Adding content to Joomla Page
Its pretty easy to add content on the Joomla pages, the hard part is remembering how to add a section for variety of sub groups in the church to add from. Today, I got the sign ministry with sub categories for SOME and Devotion to appear correctly on the church web site. I just need to document the steps to do so. Unless Joomla pages already have a section on adding content to their web pages.
1) Log into the Joomla administration page
2) Select Menus -> Top Menu
Note: The major Top Menu items are "HOME, ABOUT US, MINISTRIES, RESOURCES, CALENDAR, CONTACT US, GALLERY"
3) When you create an Article Layout, the Parent Items Details determines where menu selection will show on the front page.
4) Under Content, add or create an Article
5) Under Content, Add a section
6) Under Content, Add a category
7) Use Menu Item Manager to have a menu available on the front page
1) Log into the Joomla administration page
2) Select Menus -> Top Menu
Note: The major Top Menu items are "HOME, ABOUT US, MINISTRIES, RESOURCES, CALENDAR, CONTACT US, GALLERY"
3) When you create an Article Layout, the Parent Items Details determines where menu selection will show on the front page.
4) Under Content, add or create an Article
5) Under Content, Add a section
6) Under Content, Add a category
7) Use Menu Item Manager to have a menu available on the front page
Thursday, April 28, 2011
Squid Proxy
cache1:~ # /usr/local/squid/sbin/squid -N -d 1 -D
#!/bin/bash #bash file titled 'testSquid.bsh'
sudo tail -f /var/log/squid/access.log &
sudo /usr/sbin/squid -N -D -d 1 &
sudo /usr/local/squid/sbin/squid -NCd1 #another squid command
The commands above were used on Linux RedHat 9 machine.
http://www.deckle.co.za/squid-users-guide/Starting_Squid
ssh -L3128:localhost:3128 mysquid.house -f -N
putty tunnel
L9999 squid.proxy.ip:9999 ;local ports accept connections from other ports
click on ssh and turn compression on.
http://kakku.wordpress.com/2007/11/25/proxy-hacks-final-httptunnel-tcpip-connections-over-plain-old-get-and-post-requests/
http://digitalpbk.blogspot.com/2009/05/ssh-proxy-windows-linux-orkut-bypass.html
Monday, April 25, 2011
Ideas brought to the attention of church leadership
[completed] Wireless Bridge - Wireless Distribution System (documented)
[research] Improving wifi speeds in fellowship hall
[research] Skype Video conferencing
[in progress] Web Page Content Management System Training on how to add content (must document!)
Steps: http://reviewwebapps.blogspot.com/2010/06/cmst-formalize-steps.html
Web site: http://isschristian.org/
[Time Consuming] Document Video Recording Process
[on hold] Bringing back Computer Labs to operational use
[in progress] Desktop Refresh for Sunday Plus machine in production
Steps: http://networkproject.blogspot.com/2011/03/currently-researching-new-technologies.html
[research] Improving wifi speeds in fellowship hall
[research] Skype Video conferencing
[in progress] Web Page Content Management System Training on how to add content (must document!)
Steps: http://reviewwebapps.blogspot.com/2010/06/cmst-formalize-steps.html
Web site: http://isschristian.org/
[Time Consuming] Document Video Recording Process
[on hold] Bringing back Computer Labs to operational use
[in progress] Desktop Refresh for Sunday Plus machine in production
Steps: http://networkproject.blogspot.com/2011/03/currently-researching-new-technologies.html
Sunday, April 24, 2011
Interesting Article about Securing Wifi
"Experts say the more savvy hackers can go beyond just connecting to the Internet on the host's dime and monitor Internet activity and steal passwords or other sensitive information."
http://news.yahoo.com/s/ap/20110424/ap_on_hi_te/us_wi_fi_warning
http://news.yahoo.com/s/ap/20110424/ap_on_hi_te/us_wi_fi_warning
Documentation Hunting
Must find documentation for the majority of equipment used for future reference.
Saturday, April 23, 2011
I wear this hat, too: "Sound Engineer"
In general terms, a sound engineer is someone responsible for some aspect of the sound at live shows. Many people think of the sound engineer as the person who stands behind the big sound desk (aka mixing desk) at a show and mixes the sound the audience hears, also known as front of house (FOH) sound. There are other roles for sound engineers at shows.
Source:
http://musicians.about.com/od/qz/g/soundengineer.htm
Interview with a Sound Engineer
http://musicians.about.com/od/otherindustrycareers/a/qandawithkas.htm?once=true&
Source:
http://musicians.about.com/od/qz/g/soundengineer.htm
Interview with a Sound Engineer
http://musicians.about.com/od/otherindustrycareers/a/qandawithkas.htm?once=true&
The devices used and steps taken to obtain wireless bridge
This is a list of devices I used:
Netgear N150 Wireless Router WNR1000v3
Belkin 54g F5D7230
Linksys WRT54G Wireless Router
Set the Alternative Configuration for the wired TCP/IP to match with the repeater. These are the steps to get the wireless bridge working with WEP encryption for a Belkin and Netgear:
1) Set netgear to be the access point
2) Assign netgear a wireless WEP password on the router
3) Make sure the netgear router knows the MAC address of the belkin repeater
4) Set belkin to be the wireless bridge by listing netgear MAC address
5) Set the belkin wireless WEP security to match with netgear wireless WEP security
6) Wait for the netgear signal to reach the belkin repeater for the wireless bridge to work
7) The DHCP server should be on the network access point
I tested the connection speed by downloading firefox, flash player, and going to youtube to play worship songs.
http://www.dd-wrt.com/wiki/index.php/Wireless_Bridge
Netgear N150 Wireless Router WNR1000v3
Belkin 54g F5D7230
Linksys WRT54G Wireless Router
For the Belkin and Linksys to work with a wireless bridge, I disabled the QoS option on the Belkin router. It was on for the netgear access point, but for the Linksys router, I turned if off for it to work correctly. The only way to impose QOS is to have the belkin doing routing. If it is bridged by some means, it cannot impose QOS. In this case, the Linksys is the router and the Belkin is the wireless bridge.
Set the Alternative Configuration for the wired TCP/IP to match with the repeater. These are the steps to get the wireless bridge working with WEP encryption for a Belkin and Netgear:
1) Set netgear to be the access point
2) Assign netgear a wireless WEP password on the router
3) Make sure the netgear router knows the MAC address of the belkin repeater
4) Set belkin to be the wireless bridge by listing netgear MAC address
5) Set the belkin wireless WEP security to match with netgear wireless WEP security
6) Wait for the netgear signal to reach the belkin repeater for the wireless bridge to work
7) The DHCP server should be on the network access point
I tested the connection speed by downloading firefox, flash player, and going to youtube to play worship songs.
http://www.dd-wrt.com/wiki/index.php/Wireless_Bridge
Netgear Wireless Bridging Overview
"Wireless Bridging is usually used to extend network coverage to locations physical cabling cannot conveniently reach.
As of July 2005, NETGEAR access points supporting WDS are WG302, WAG302, WG602v2, WG602v3 and ME103. WDS is supported between any of them, except the ME103, which can only WDS to another ME103. (The Wi-Fi Alliance do not certify WDS, so there is no guarantee that one model of access point can do WDS to a different model of access point.)
- Technical Support does not provide free help setting up WDS between NETGEAR access points and non-NETGEAR equipment.
- It is not possible to create wireless bridge between NETGEAR wireless routers and NETGEAR wireless access points."
Network repeating allows two distant sections of a wireless network to communicate. This explains how to do wirelessrepeating with NETGEAR access points.
Other models and firmware may work similarly to this example:
- WG602v2 access point, firmware version 3.2 RC6.
- WG302 access point, firmware version 2.0.3.
- 64-bit or 128-bit WEP (optional).
- Access control list (optional).
- No WPA/PSK— This type of WPA security will not work with repeating.
Subscribe to:
Posts (Atom)