Beyond Web Logs

Discuss technology, web development, networks and more ...

Recent posts

Tags

First time here? At BeyondWebLogs we discuss technology, web development, personal development, networks and more. You can subscribe to the RSS feed so that you keep up to date with the latest content. Now, on with the regular content...

Islam surpasses Roman Catholicism as world's largest religion


Islam has surpassed Roman Catholicism as the world's largest religion, the Vatican newspaper said Sunday.
"It is true that while Muslim families, as is well known, continue to make a lot of children, Christian ones on the contrary tend to have fewer and fewer," the monsignor said.
 
keep it up guys :)
Talk about Quantity vs Quality :P

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:
Categories: Religion
Posted by Waqas on Monday, March 31, 2008 12:25 AM
Permalink | Comments (0) | Post RSSRSS comment feed

Learn Quran Arabic - Lesson 11

Lesson 11 starts the discussion on simple (compound) sentences in Arabic.

Download file below to continue:

Download Lesson 11 

Currently rated 5.0 by 2 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by Waqas on Saturday, March 29, 2008 9:39 PM
Permalink | Comments (1) | Post RSSRSS comment feed

Dutch Posts Film against Islam and Quran

Another case of Islamophobia

They want to extinguish Allah's Light with their mouths, but Allah will not allow except that His Light should be perfected even though the disbelievers hate that.

This is not freedom of speech. It's a WAR against ALLAH ALMIGHTHY and it will only bring more misery in this world.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: Thought Process
Posted by Waqas on Thursday, March 27, 2008 9:00 PM
Permalink | Comments (2) | Post RSSRSS comment feed

How to Convert / upgrade a Cisco 7940/7960 firmware from SCCP to SIP

You will need the SIP image and the files necessary for the SIP upgrade. The following files should be provided by your CISCO phone supplier.

Sample link: http://www.cisco.com/pcgi-bin/tablebuild.pl/sip-ip-phone7960

Download File: P0S3-08-2-00.zip Registration required.

Extract zip file, and you will find these files:

OS79XX.TXT – This file tells the phone which version of the firmware to load.
SipDefault.cnf – This file loads the default setting for every phone. Usually this includes where to register the phone.
SIP001A2F336152.cnf – This file has information specific to each phone. The 001A2F336152 (last 12 characters) of the file name is the phones MAC address, so you need to make sure this is correct for every phone you are upgrading.The SIP image that we have used contains the following files:
P0S3-08-2-00.sb2
P0S3-08-2-00.sbn
P0S3-08-2-00.loads
P0S3-08-2-00.bin

Download any TFTP server software, like in my case Solar winds TFTP Server. Install it and configure it to Transmit and Receive Files:

 

 

Please Change files SIP0006D79C1E2A._cnf to SIPyourmacaddressincaps.cnf

 

Configure your DHCP server with the specific IP address of your TFTP server. If you are using W2K3 DHCP server then the TFTP option is found on Scope Options/Configure Options/General Tab. Then tick/select option 066 which is the “Boot Server Host Name” and enter in the string value the IP address of your TFTP server

 

 

 

Manually Configure the Phone Network Settings

Complete these steps in order to manually configure the phone network settings:Press the **# buttons in order to unlock the phone. (This step either locks or unlocks the options, based on the current state.) 

·         Press Settings.·         Press the down arrow in order to select Network Configuration and press the Select softkey. There is an unlocked padlock icon in the upper-right portion of your LCD.

·         Use the toggle button and the arrow keys in order to modify any parameters. When you enter IP addresses, the * key is used for decimal points.

 

·         Press the Save softkey in order to save your changes. Note: In order to lock the phone settings, press **#. 

Configure the Phone Network Settings via DHCP

You can also configure the phone network settings from the Dynamic Host Configuration Protocol (DHCP)server. For SIP phones, make sure that the DHCP server uses Option 66 for the TFTP server. These DHCPoptions are usually configured from the DHCP server:

IP Address (DHCP Option 50) · Subnet Mask (DHCP Option 1) · Default IP Gateway (DHCP Option 3) · DNS Server Address (DHCP Option 6) · TFTP Server (DHCP Option 66) · Domain Name (DHCP Option 15) · 

Note: Cisco CallManager uses Option 150 for the TFTP server, while SIP phones expect Option 66 for the TFTP server. 

Put all the files along with the extracted SIP image files in the TFTP server root directory the one you defined on the TFTP server options and restart the device. The device will be assigned an IP/Gateway/DNS from the DHCP server as well as the TFTP server from which to load the SIP image and configuration files from. 

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: Asterisk | How To
Posted by Naveed on Wednesday, March 26, 2008 2:22 AM
Permalink | Comments (2) | Post RSSRSS comment feed

Code Access Security Policy tool (Caspol) Examples


Code Access Security Policy tool (Caspol.exe) can be used to examine and modify Machine, User, and Enterprise level code access security policies. Btw, (just to make sure you are aware) Code access security (CAS) is a security system that allows administrators and developers to control application authorization similar to the way they have always been able to authorize users. With CAS, you can allow one application to read and write to the registry, while restricting access for a different application.

Going back to Caspol, following list provides usage examples for common tasks that you might want to perform with Caspol.

To grant an assembly full trust:
 Caspol –addfulltrust assemblyname.exe

For example, to grant the C:\Program Files\Mine\Mine.exe assembly full trust,you would run the following command:
 Caspol –addfulltrust "C:\Program Files\Mine\Mine.exe"

To add a code group to the Machine policy:
 Caspol -machine -addgroup Parent_Code_Group Membership_Conditions Permission_Set -name "Group_Name"

For example, to add a code group named My_Code_Group to the Machine policy level’s All_Code group, using a URL of \\devserver\devshare\, which grants LocalIntranet permissions, you would run the following command with administrative
privileges:

Caspol -machine -addgroup All_Code -url \\devserver\devshare\* LocalIntranet -name "My_Code_Group"

To add a code group to the User policy:
Caspol -user -addgroup Parent_Code_Group Membership_Condition Permission_Set -name "Group_Name"

Similarly, to add a code group named User_Code_Group to the User policy level’s All_Code group, using a site of www.contoso.com, which grants FullTrust permissions, you would run the following command:
Caspol -user -addgroup All_Code -site www.contoso.com FullTrust -name "User_Code_Group"

To adjust zone security for a Machine policy:
Caspol -chggroup Code_GroupPermission_Set

For example, to change the Machine My_Computer_Zone security policy to use the Intranet permission set, run the following command with administrative privileges:
Caspol -chggroup My_Computer_Zone LocalIntranet

To reset policy levels for the Machine policy level:
Caspol -recover

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,
Categories: How To
Posted by Waqas on Monday, March 24, 2008 6:02 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Refactor Strings to Resource in Visual Studio - Add-in


Using Resource Refactoring VS add-in, you can move hard-coded strings to resource files with simple point and click operation.

All you have to do is:
  1. Right click on the string
  2. Refactor > Extract To Resource
  3. Select an existing resource or type a new resource name on the opened window
Using resource files is strongly recommended in .NET applications. Resources provide many benefits, like; strings can be loaded faster and can be translated to other languages.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by Waqas on Monday, March 24, 2008 4:55 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Command to change time in linux

very simple just type:"date MMDDhhmmYYYY'' to set the current system date/time/Year

like if today is 24th march 2008 and time is 2:15PM then i will add command link this:

~]# date 032414152008.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: How To
Posted by Naveed on Sunday, March 23, 2008 4:23 PM
Permalink | Comments (1) | Post RSSRSS comment feed