Keywords

SEO Marketing No Comments »

art, logo design, graphics design, illustration, brochures, web design, template design, web page design, web page customization, web site optimalization, search engine optimalization, web site scripting, software development, programming algorithms, databases, game programming, languages, System administration, software installation and customization, network setup, network server configuration, maintenance, webmastering, firewall rules setup.

Hitelkártyás Fizetési Tranzakció

Magyar nyelven, Web development No Comments »

Internet áruház tulajdonoswebHauser
Hitelesítő intézet: IEB Inter Európa Bank Rt. (Verified by VISA.)
A fizetés módja: BANK hitelesítő szerveren keresztül a SSL titkosítással. A BANK számára érdekes adatokat a ÁRUHÁZ titkosítva juttatja el a BANK-hoz. Egyetlen kivétel a VÁSÁRLÓ hitelkártya adatainak kezelése, amit kizárólag csak a BANK tehet meg, megfelelő biztonsági követelményeknek eleget téve. (Lásd: ekicrypt fejlesztés)

Hitelkártya elfogadás: A webhauser.com a “webHauser LLC.” néven Magyarországon (EU) bejegyzett internetes fizetési rendszer az Inter Európa Bank eCommerce rendszeren keresztül a Mastercard illetve a VISA termékcsaládba tartozó bankkártyákkal végzett tranzakciókat számolja el. A vásárlásra alkalmas bankkártyák, közül interneten az alábbiakkal lehet tranzakciót kezdeményezni: MasterCard, VISA, VISA Electron, de ennek Interneten történő használata a kibocsátó banktól függ. A kibocsátó bank határozhatja meg, hogy engedélyezi-e a kártyát internetes, úgynevezett ‘Cnp’-'Card not present’ típusú tranzakciók végzésére. Az Inter-Európa Bank Rt. által kibocsátott VISA Electron típusú bankkártya használható Interneten keresztül indított vásárláskor.

Disclaimer

Other posts No Comments »

This is one of a series of articles which contain my personal opinions, based upon my own experiences, about various ____________. You may have had difference experiences which give you different opinions.

Coltrane

Music No Comments »

Resolution” features Tyner’s brilliant, yet not totally melodic, piano solo. Coltrane follows with jagged statements of bursts and energetic squeals. These are reflected in the pattern of black-tipped leaves that are arranged in four-part symmetry. Central to this collection is a Mandelbrot midget, attesting to the underlying unity of both pieces.

This series is based on John Coltrane’s 1964 album, “A Love Supreme.” The four-part suite was revealed to Coltrane all at once in a dream, and was recorded as a testament to his spiritual awakening. As critic Chip Stern writes, “‘A Love Supreme’ heralded Coltrane’s search for spiritual and musical freedom, as expressed through polyrhythms, modalities, and purely vertical forms…” The suite was performed by Coltrane’s quartet of himself on tenor saxophone, pianist McCoy Tyner, bassist Jimmy Garrison, and drummer Elvin Jones.

Windows XP command line shell

shell scripts No Comments »


netstat -a ; hálózati kapcsolatok
nbtstat -c ; view netbios cache
nbtstat -s ; view connections

net view  ; Windows számítógépek a NetBios hálózatban
net user  ; Hálózati felhasználók
net config server ; szerver konfig
net config workstation ; munkaállomás konfig
net share  ; megosztott mappák
net use \\star  ; connect to computer star in a NetBios network

Hex to Num conversion

HTML/OS No Comments »

FUNCTION: getValFromHex(’FF’)

DESCRIPTION:
This recursive function converts Hex to an INT.
For example:

   twofiftysix = getValFromHex(’FF’)

FUNCTION getValFromHex(num) LOCALS i,out,lilHexVal DO

  IF LENGTH(num) > 1 THEN
    leftSum = getValFromHex(LEFT(num,LENGTH(num)-1))
    rightSum = getValFromHex(RIGHT(num,1))
    out = (16 * (leftSum-0)) + rightSum
  ELSE
    IF num > 9 THEN
      num = UPPER(num)
      out = GETASCII(num)-65 + 10
    ELSE
      out = num
    /IF
  /IF
RETURN out /RETURN
/FUNCTION

Clear DB Record

HTML/OS No Comments »

Do you have a function that clears the fields used by a record?

 FUNCTION DBCLEAR(db) LOCALS t1,t2,t3 DO
   COPY FILE=db+”.conf” TS=”,” TO t1 /COPY
   FOR NAME=t1 ROWNAME=t2 DO
     t3=t2[1]
     @t3=”"
   /FOR
   RETURN “” /RETURN
 /FUNCTION

Recursive directory list

HTML/OS No Comments »

<<### HTML/OS code by webHauser /#

FUNCTION dirall(current_folder)
LOCALS files, files_row DO
DISPLAY “<ul>” /DISPLAY
files=SYSLS(current_folder)
FOR NAME=files ROWNAME=files_row DO
  if files_row[4]=”DIR” then
      source_dir=current_folder+files_row[1]+’/’
      x=dirall(source_dir)
  ELIF files_row[4]=”FILE” then
      source_file=current_folder+files_row[1]
      DISPLAY “<li>” + source_file /DISPLAY
  /IF
/FOR
DISPLAY “</ul>” /DISPLAY
/FUNCTION>>

<html>
<<dirall(”/”)>>
</html>

Execution of Name object

PostScript No Comments »

Search for the name in user dictionary, if not found then
Search for the name in system dictionary, then
execute the procedure associated with the name in the dictionary.

Handling PostScript Arrays

PostScript No Comments »

As the interpreter continues through the program Line, it puts more objects on the stack Until it encounters a Right bracket, which is an operator that creates an array containing the stack contents back To the topmost mark. The mark is dropped from the stack, and the array remains.

When the Scanner encounters right bracet, then Allocates space for the array in virtual memory, Creates the array object and pushes it To the operand stack.

WebSite Powered by webHauser
Entries RSS Comments RSS Login