Server IP : 68.65.122.142  /  Your IP : 3.147.75.221
Web Server : LiteSpeed
System : Linux server167.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
User : glenirhm ( 1318)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /usr/share/locale/bo/../bla/../sp/../sd/../en_CZ/../bo/../bn/../zxx/../br/../bra/../bar/../ven/../gon/../af/../sa/../sc/../pbs/../sit/../cgg/../ja/../en_GB/../hai/../yi/../sat@olchiki/../uk_UA/../dyu/../uga/../../awk/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : //usr/share/locale/bo/../bla/../sp/../sd/../en_CZ/../bo/../bn/../zxx/../br/../bra/../bar/../ven/../gon/../af/../sa/../sc/../pbs/../sit/../cgg/../ja/../en_GB/../hai/../yi/../sat@olchiki/../uk_UA/../dyu/../uga/../../awk/cliff_rand.awk
# cliff_rand.awk --- generate Cliff random numbers
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# December 2000

BEGIN { _cliff_seed = 0.1 }

function cliff_rand()
{
    _cliff_seed = (100 * log(_cliff_seed)) % 1
    if (_cliff_seed < 0)
        _cliff_seed = - _cliff_seed
    return _cliff_seed
}