XHTML Elements and Attributes

Tag/Attribute(s)DescriptionVers.
–most tags–The following attributes may be used with most (X)HTML tags
classFor identifying a set of tags in order to apply styles
eventFor triggering a script
idFor identifying particular tags for JavaScript functions and styles
langFor specifying the language an element is written in
styleFor adding local style sheet information
titleFor labeling elements with tool tips
!–For inserting invisible comments
!doctypeRequired. For indicating version of (X)HTML used
aFor creating
Read More

Understanding the Pumping Lemma for Regular Languages

Pumping Lemma

  • The Pumping Lemma states that for any regular language L, there exists a constant ‘M’ (related to the number of states in the accepting finite automaton) such that any word ‘w’ in L with length greater than or equal to ‘M’ can be decomposed into three substrings, x, y, and z (w = xyz), where:
  • The substring ‘y’ is not empty.
  • The length of the concatenation of ‘x’ and ‘y’ is less than or equal to ‘M’.
  • For any non-negative integer ‘n’, the string xynz is also in L. (This means we can ‘pump’
Read More

Network Configuration: DHCP, NAT, OSPF, and Frame Relay

HCP

Configuration

en
conf t
host DHCP

int f0/0
ip add 172.16.10.1 255.255.255.240
ip ospf priority 0
no shutdown
exit

DHCP Excluded Addresses

ip dhcp excluded-address 10.10.10.1
ip dhcp excluded-address 20.20.20.1
ip dhcp excluded-address 30.30.30.1
ip dhcp excluded-address 40.40.40.1
ip dhcp excluded-address 50.50.50.1
ip dhcp excluded-address 60.60.60.1

DHCP Pools

VLAN 10

ip dhcp pool VLAN10
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
dns-server 10.0.0.8
exit

VLAN 20

ip dhcp pool VLAN20
network 20.20.

Read More

Android Data Management and Networking

Challenge 9

1. How do preferences, files, and databases differ? Under what circumstances would each be appropriate?

Shared Preferences store key-value pairs in an XML file. This file can be read by other apps only if the MODE_WORLD_READABLE or MODE_WORLD_WRITEABLE mode is specified. Files are useful for writing larger amounts of information that might not be suited for shared preferences. Files can be stored in Internal Storage or External Storage (SD card). Databases are ideal for repeating or structured

Read More

Essential Freeware for Web Page Authoring and HTML Editing

Web Page Authoring Freeware

This is a list of software that made my life easier and freeware that I wish I had in the beginning.

Freeware Download Aids


%IMAGE_2% Freeware tools to help in unzipping and downloading software. Read this page first if you have never downloaded a program from the Internet or are downloading many files for the first time and using an older PC operating Windows XP or lower.

Freeware to Get You Started in HTML

Freeware for Writing HTML

If you are just starting out, you need two

Read More

Understanding Computer Accessibility Features, Networking, and Internet Security

Computer Accessibility Features

StickyKeys is an accessibility feature to help computer users with physical disabilities, but it is also used by others as a means to reduce repetitive strain.

FilterKeys is a feature of Microsoft Windows. It is an accessibility function that tells the keyboard to ignore brief or repeated keystrokes, making typing easier for people with hand tremors.

ToggleKeys is also a feature of Microsoft Windows. It is an accessibility function that is designed for people who have

Read More