Main > Free Download Search >

Free liverpool fc software for linux

liverpool fc

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 16
FC-One LiveCD 20070121

FC-One LiveCD 20070121


FC-One LiveCD is a GNU/Linux operating system. more>>
FC-One LiveCD is a GNU/Linux operating system.
Enhancements:
- Update kernel 2.6.19-1.2895.fc6
- Add Viet-Phap & Phap-Viet data for stardict
- Add eject & some system-config-* packages
- Fixed error releated to icons ...
<<less
Download (692MB)
Added: 2007-01-24 License: GPL (GNU General Public License) Price:
1006 downloads
KFireWatcher 0.8

KFireWatcher 0.8


KFireWatcher is a application to view the firewall logs in a more readable form. more>>
KFireWatcher is a application to view the firewall logs in a more readable form. (just remote ip address, local if local connection, only the needed infos...)

Needs kommander 3.5, and a separate firewall-log file (you can separate firewall lines with syslog-ng).

Accepts logs multilines with line format (standard iptables):

Dec 12 12:14:47 Machine Prefix:IN=eth0 OUT= MAC=00:13:8f:4f:59:fc:00:04:ed:00:01:91:08:00 SRC=220.253.135.60 DST=192.168.1.57 LEN=48 TOS=0x10 PREC=0x40 TTL=107 ID=2699 DF PROTO=TCP SPT=1187 DPT=6081 WINDOW=65535 RES=0x00 SYN URGP=0

<<less
Download (0.020MB)
Added: 2006-02-04 License: GPL (GNU General Public License) Price:
1358 downloads
Emulex Linux Drivers 2.6-8.1.1

Emulex Linux Drivers 2.6-8.1.1


Emulex Linux Drivers package provides the sources for Emulexs LPFC (LightPulse Fibre Channel) family of HBAs. more>>
Emulex Linux Drivers package provides the sources for Emulexs LPFC (LightPulse Fibre Channel) family of HBAs. The source base is developed and tested specifically for the 2.6 Linux kernel.
This Emulex driver is derived from Emulexs currently shipping driver which supports several application and storage providers.
Intentions:
Emulex will be working with the open source community with the intention of achieving acceptance of this source into the upstream kernel.
Emulex will also continue to work with application and storage provider partners, many of whom are active members of the open source community, to evolve the code base to meet both upstream kernel and continuing business needs.
Enhancements:
- Miscellaneous Cleanups
- Correct some 8bit to 16bit field conversions/comparisons
- Fixes for short cable pulls
- Adjust use of scsi_block_requests and interaction w/ FC transport
- Remove locking wrappers around error handlers
- Fixes to error handlers
- Add support for more members of the Light Pulse 11xxx (4Gb) family
- Bring model descriptions in sync with Emulex standard generic names.
- Add polled-mode support to the driver:
- Added code to adjust lun queue depth to avoid target overloading.
<<less
Download (0.17MB)
Added: 2007-07-18 License: GPL (GNU General Public License) Price:
834 downloads
Virt-Factory 0.0.2

Virt-Factory 0.0.2


Virt-Factory project manages virtualized infrastructure. more>>
Virt-Factory project manages virtualized infrastructure:
Virt-Factory focuses on interacting with large numbers of virtual systems and on addressing some of the interaction problems that brings with it
Virt-Factory is primarily aimed at a fairly formal setting (data center), though we hope it is also useful on smaller scales
While Virt-Factory has some uses for bare-metal systems, it is first and foremost a tool for managing virtual systems. Future development will be much more focused on virtual systems management than bare-metal.
Virt-Factory provides both a web UI, for ease of use, and an XMLRPC API, for scripting of admin actions.
Virt-Factory is built on open-source projects including Cobbler, libvirt, and Puppet.
Today, Virt-Factory provisions and manages hosts and guests. It also addresses some of the problems specific to virtual systems. It creates complete host and guest images from metadata descriptions and centrally manages existing images.
Future work will make it possible to abstract away individual hosts and place guests into a pool of equivalent hosts, simplifying the administrators view of the data center for many tasks.
Whats It Run On?
It is being developed on FC-6. Well add support for FC-7 and RHEL-5 shortly.
How Stable Is It?
At this point, virt-factory an alpha level project that will probably eat your brane. However its getting better every day.
Whats the architecture look like?
Virt-factory provides a central server for managing virtual hosts and guests. The server exposes an XMLRPC API that is used by the Web UI, and can also be used by custom scripts. On Managed systems, a special "node daemon" is installed, which the central server communicates with over secure XMLRPC.
Who is the target user?
Developers who want to be involved in new systems management technology. Users wishing to run a large number of virtual systems that have a key interest in virtualization and system recipes / appliance concepts.
How is Virtualization used?
Virtualization plays a core role in virt-factory and is heavily integrated. The software takes care of the nuts and bolts and can entirely manage your virtualization, though logging into virtualization via xm and virsh is still supported. Virt-factory is about enablement of virtualization as a core systems-management strategy.
How do you treat appliances?
Appliances can be defined purely as metadata ("profiles") rather than binary blobs. The metadata describes the required virtual machines attributes (number of processors, memory etc), the base system installation (as a template data for the kickstart file), and the appliances "personality" as a puppet manifest. This makes it possible to distribute appliances easily, and allows end-users to adapt appliances to their needs while still being able to consume appliance updates.
Enhancements:
- This release concentrates on making the code more stable and easier to install/deploy.
<<less
Download (MB)
Added: 2007-05-03 License: GPL (GNU General Public License) Price:
905 downloads
Cspot 0.0.5

Cspot 0.0.5


Cspot is a semantic annotator designed only for the C programming language. more>>
Cspot is a semantic annotator designed only for the C programming language. It is quite similar to cscope, but some more functionality.

Cspot project can be used to find the declarations, definitions, and usages of functions, variables, macros, typedefs, and structs.

It can also find visible identifiers at some position in the source, functions called by a function, global variables used by a function, usages of local variable declarations, unused global variables, unused function definitions, and more. Because it uses sparse, cspot knows more about semantics than cscope.

cspot usage ( cspot -h )
cspot -db spot.db -regexp reg ;; prints all identifiers of project matching reg (extended regexp)
cspot -db spot.db -fc printf ;; prints all declarations of function printf
cspot -db spot.db -fu printf ;; prints all usages of function printf
cspot -db spot.db -vu stdout ;; prints all usages of variable stdout
cspot -db spot.db -sc my_sruct ;; prints places of forward declaration of struct my_struct
cspot -db spot.db -sf my_sruct ;; prints places of definition of struct my_struct
cspot -db spot.db -su my_sruct ;; prints places of usage of struct my_struct
cspot -db spot.db -si my_sruct ;; prints places of definition and variables in struct my_struct
etc.

cspot -va source.c 254 21 ;; prints all visible identifiers at source.c line 254 pos 21
cspot -vla source.c 254 21 ;; prints all visible identifiers (declared in file source.c) at source.c line 254 pos 21

commands for visible functions, macros, variable, called functions by function, global variables used by function ...

cspot -db spot.db -fu printf
printfs all usages of function printf in project (usage = call, assigning to variable)

printf at `base/cmd/commands.h 249:7
printf at `base/cmd/commands.h 327:8
printf at `base/cmd/commands.h 337:8
printf at `base/cmd.c 313:3
printf at `base/cmd.c 318:7
printf at `base/cmd.c 319:36
printf at `base/cmd.c 321:36
printf at `base/cmd.c 322:36
printf at `base/cmd.c 323:36
<<less
Download (0.26MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1145 downloads
Smolt 0.9.2

Smolt 0.9.2


Smolt is a basic hardware profiler. more>>
Smolt is a basic hardware profiler. Smolt is intended to be a profiler to get automated information from users. This should make it easier for our developers to do what they need to do.
How can you help? Well look at the code and make it better. Its still in the very early stages but has good potential.
Legacy Clients
If youre interested in running smolt on FC-3, 4 or 5 please see the Clients page.
Scope
Smolt has a very small scope targeting just Fedora and Fedora based OSs. For more information please see Scope.
Use
Fedora Core 6 and newer (rawhide) can simply "yum install smolt" for the client. To send your profile simply type "smoltSendProfile". Firstboot functionality is also available by installing smolt-firstboot.
Main features:
- Public stats server
- First Boot integration
- Statistical information (more to come)
<<less
Download (0.12MB)
Added: 2007-03-08 License: GPL (GNU General Public License) Price:
960 downloads
libctf 0.1.1

libctf 0.1.1


libctf is a c thread foundation library that extends pthread functionality by providing common utilities for the programmer. more>>
libctf library is extends pthread functionality by providing common utilities for the programmer. This will ease and enhance threaded program development.
Main features:
- barrier - thread barrier
- fifo mutex - first-in-first-out mutex
- mgate - two dimensional thread date
- pool - thread pool
- praq - thread safe Propose Release Aquire Queue
- qsort - threaded quick sort
- rdwr - read write locks (read, write, toggle preferences)
- subpool - thread subpool
- tools - thread tools
Platforms Tested:
Red Hat Linux/x86 8.0, 9.0, FC[1-6]
Solaris/Sparc 2.6, 2.7, 2.8, 2.9
OS Specific Notes
Red Hat Linux:
Red Hat Linux 8.0
CFLAGS = -D_REENTRANT -D_POSIC_C_SOURCE=199506L -D_XOPEN_SOURCE=600
(1) LinuxThreads pthread_attr_stackaddr() does not behave
Red Hat Linux 9.0
CFLAGS = -D_REENTRANT -D_POSIC_C_SOURCE=199506L -D_XOPEN_SOURCE=600
(1) LinuxThreads pthread_attr_stackaddr() does not behave
Fedora Core 1,2,3,4,5,6
CFLAGS = -D_REENTRANT -D_POSIC_C_SOURCE=200112L -D_XOPEN_SOURCE=600
Shared Library Flags (gcc compiler)
CFLAGS = -fPIC
LDFLAGS = -shared -Wl,-h,libctf.so
Solaris:
Solaris 2.6
CFLAGS = -D_REENTRANT -D_POSIC_C_SOURCE=199506L -mt -D_XOPEN_SOURCE=4
Solaris 2.7
CFLAGS = -D_REENTRANT -D_POSIC_C_SOURCE=199506L -mt -D_XOPEN_SOURCE=500
(1) Error checking mutex is broken
Solaris 2.8
CFLAGS = -D_REENTRANT -D_POSIC_C_SOURCE=199506L -mt -D_XOPEN_SOURCE=500
Solaris 2.9
CFLAGS = -D_REENTRANT -D_POSIC_C_SOURCE=199506L -mt -D_XOPEN_SOURCE=500
Shared Library Flags (Sun compiler)
CFLAGS = -G -KPIC -h libctf.so
Irix:
Irix 6.5
CFLAGS = -D_REENTRANT
LDFLAGS = -shared -Wl,-shared,-soname,libctf.so
(1) Not tested in a long time
Enhancements:
- The doxygen build was fixed.
- Documentation was added to the devel RPM.
<<less
Download (0.031MB)
Added: 2007-05-16 License: LGPL (GNU Lesser General Public License) Price:
891 downloads
Teamspeak::Telnet 0.3

Teamspeak::Telnet 0.3


Teamspeak::Telnet is a Telnet-Interface to administrate Teamspeak-Voice-Server. more>>
Teamspeak::Telnet is a Telnet-Interface to administrate Teamspeak-Voice-Server.

COMMAND OVERVIEW

banadd : add ip ban
banclear : clear banlist
bandel : del ip ban
banlist : show banlist
banplayer : bans a player
checkserverok : checks if server hangs
ci : display channel info
cl : channellist
dbci : display db channel info
dbfp : db find player
dbpi : display db infos about a player
dbserverlist : list all servers from db
dbsuseradd : adds a superadmin to server
dbsuserchangepw : changes password of a superadmin
dbsuserdel : deletes a superadmin from server
dbsuserlist : display superadmin serverlist
dbuseradd : adds a user to server
dbuserchangeattribs : changes rights of a user
dbuserchangepw : changes password of a user
dbuserdel : deletes a user from server
dbuserid : display dbid from loginname
dbuserlist : display server user list
dccl : channel client list
fc : finds a channel
fp : finds a player
gapl : get average packet loss
gi : global information
globalset : set a global variable
help : this helpfile
kick : kick player
ki : kick idlers
lc : list all open tcpquery connections
logfind : search serverlog
login : login to server
logmark : add a line to serverlog
log : show serverlog
mptc : move player to channel
msgall : message to all servers
msg : message to server
msgu : message to user
pi : display infos about a player
pl : playerlist
quit : close connection
rehash : reload server settings
removeclient : remove client
sel : select
serveradd : adds a server
serverdel : deletes a server
serverset : set a server variable
serverstart : start server
serverstop : stop server
si : server information
slogin : superlogin to server
sl : serverlist
sppriv : set user privilege
ver : version

globalset < attribute > < value >
set global attributes
globalset will change the < attribute > of the teamspeak instance and set it to < value >.

These are the currently available attributes and their values:

attribute value
hoster_gfx_url text

Note: This is a URL to a image to be displayed to connected clients, changes to it will only be visible to clients connecting after you changed it - and the changes will not be
saved to the server.ini, meaning will not be permanent over a server restart.

allowedclientnamechars text

Note: This restricts what characters you will allow in nicknames. Users with disallowed characters will get a message when they connect.

disallowedclientnamechars text

Note: This is the little brother of allowedclientnamechars - characters you set here will not be allowed in nicknames, clients will be informed what characters they are using that are not allowed on this server. The default setting for this will be "()[]{}" to prevent flag faking.

<<less
Download (0.026MB)
Added: 2006-12-27 License: Perl Artistic License Price:
1055 downloads
The Global File System 6.1pre21

The Global File System 6.1pre21


The Global File System a shared block file system for Linux. more>>
GFS (Global File System) is a cluster file system. It allows a cluster of computers to simultaneously use a block device that is shared between them (with FC, iSCSI, NBD, etc...). GFS reads and writes to the block device like a local filesystem, but also uses a lock module to allow the computers coordinate their I/O so filesystem consistency is maintained. One of the nifty features of GFS is perfect consistency -- changes made to the filesystem on one machine show up immediately on all other machines in the cluster.

GFS consists of a set of kernel patches and userspace programs.
The GFS lock module lock_dlm depends on CMAN and DLM.
The GFS lock module lock_gulm depends on GULM.
The GFS lock module lock_nolock depends on nothing.
Some GFS tools depend on the iddev library.

Building and Installing

1. build and install from cluster tree
cd cluster
./configure --kernel_src=/path/to/kernel
make; make install

- This builds and installs kernel modules, libraries and user programs.

- Kernel modules can also be built within the original kernel source tree by applying the kernel patches from cman-kernel/patches, dlm-kernel/patches and gfs-kernel/patches.

2. build device mapper user space
cd device-mapper
./configure
make; make install

3. build lvm2/clvm
cd LVM2
./configure --with-clvmd --with-cluster=shared
make; make install
LVM2/scripts/clvmd_fix_conf.sh /usr/lib

Load kernel modules

depmod -a
modprobe dm-mod
modprobe gfs
modprobe lock_dlm

Modules that should be loaded: lock_dlm, dlm, cman, gfs, lock_harness and dm-mod if device-mapper was built as a module.

Startup procedure

Run these commands on each cluster node:

> ccsd - Starts the CCS daemon
> cman_tool join - Joins the cluster
> fence_tool join - Joins the fence domain (starts fenced)
> clvmd - Starts the CLVM daemon
> vgchange -aly - Activates LVM volumes (locally)
> mount -t gfs /dev/vg/lvol /mnt - Mounts a GFS file system

Shutdown procedure

Run these commands on each cluster node:

> umount /mnt - Unmounts a GFS file system
> vgchange -aln - Deactivates LVM volumes (locally)
> killall clvmd - Stops the CLVM daemon
> fence_tool leave - Leaves the fence domain (stops fenced)
> cman_tool leave - Leaves the cluster
> killall ccsd - Stops the CCS daemon
<<less
Download (0.13MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1663 downloads
ruby2shoes 1.0.7

ruby2shoes 1.0.7


ruby2shoes combines Emacs and Python to create a sophisticated writing environment for screenplay and fiction writers. more>>
ruby2shoes combines Emacs and Python to create a sophisticated writing environment for screenplay and fiction writers.

Emacs modes are used to create .sp or .fc files. Spirit, a Python application, then archives these files, converts them to text, HTML, or LaTeX, or prints them in a variety of ways.
<<less
Download (0.038MB)
Added: 2006-11-21 License: GPL (GNU General Public License) Price:
1067 downloads
PCX Firewall 2.24

PCX Firewall 2.24


PCX Firewall is an IPTables firewalling solution. more>>
PCX Firewall is an IPTables firewalling solution that uses Perl to generate static shell scripts based upon the users configuration settings.
This allows the firewall to startup quickly, as it does not have to parse config files every time it starts.
Enhancements:
- All known bugs have been fixed. Support has been added for Debian Sarge and Red Hat FC[1-3] as "official" distributions to work with when generating init scripts. The ability has been added to just install the generated firewall script into /etc/init.d or /etc/pcx-firewall without starting it.
<<less
Download (0.036MB)
Added: 2005-06-29 License: GPL (GNU General Public License) Price:
1579 downloads
xmms-fc 0.5.4

xmms-fc 0.5.4


xmms-fc is a Future Composer plugin for XMMS. more>>
xmms-fc is a Future Composer plugin for XMMS.

Above XMMS plug-in is based on this reference player which has been implemented because hardly any FC player available on PC (and not even on AMIGA) manages to play back all modules without flaws (if at all). On PC, I dont know any.

With other implementations, there is always at least one song that reveals a minor or major bug during playback. If that would happen with this particular implementation, it would be very easy to fix the source code, whereas it would be very difficult to fix an emulated MC680x0 machine code binary-only player.

However, please dont submit any damaged files or the well-known FC modules like Astaroth or Chambers of Shaolin which contain several independent sub-songs and must not be played from beginning till end. Those sub-songs ought to be initialized and played separately. Prepared versions of these individual sub-songs have been made available for download on this page further below. Feel free to delete your old all-in-one version of Astaroth. It is to be used in the original game only.

Contrary to the information given in the documentation files that come with Future Composer<<less
Download (0.032MB)
Added: 2006-04-06 License: GPL (GNU General Public License) Price:
1297 downloads
my-black-theme 1.0

my-black-theme 1.0


my-black-theme 1.0 is yet another excellent black GTK 2 theme which is a tweaked version of FC-Fino-Dark. The author has corrected several errors in the scripts and fixed a few tab images more>> <<less
Added: 2008-09-21 License: GPL Price: FREE
10 downloads
Locale::RecodeData::ISO_8859_14 1.16

Locale::RecodeData::ISO_8859_14 1.16


Locale::RecodeData::ISO_8859_14 is a Perl module with conversion routines for ISO-8859-14. more>>
Locale::RecodeData::ISO_8859_14 is a Perl module with conversion routines for ISO-8859-14.

CHARACTER TABLE

The following table is sorted in the same order as the original charmap. All character codes are in hexadecimal. Please read ISO-10646 as ISO-10646-UCS4.

Local | ISO-10646 | Description
-------+-----------+-------------------------------------------------
00 | 00000000 | NULL
01 | 00000001 | START OF HEADING
02 | 00000002 | START OF TEXT
03 | 00000003 | END OF TEXT
04 | 00000004 | END OF TRANSMISSION
05 | 00000005 | ENQUIRY
06 | 00000006 | ACKNOWLEDGE
07 | 00000007 | BELL
08 | 00000008 | BACKSPACE
09 | 00000009 | HORIZONTAL TABULATION
0A | 0000000A | LINE FEED
0B | 0000000B | VERTICAL TABULATION
0C | 0000000C | FORM FEED
0D | 0000000D | CARRIAGE RETURN
0E | 0000000E | SHIFT OUT
0F | 0000000F | SHIFT IN
10 | 00000010 | DATA LINK ESCAPE
11 | 00000011 | DEVICE CONTROL ONE
12 | 00000012 | DEVICE CONTROL TWO
13 | 00000013 | DEVICE CONTROL THREE
14 | 00000014 | DEVICE CONTROL FOUR
15 | 00000015 | NEGATIVE ACKNOWLEDGE
16 | 00000016 | SYNCHRONOUS IDLE
17 | 00000017 | END OF TRANSMISSION BLOCK
18 | 00000018 | CANCEL
19 | 00000019 | END OF MEDIUM
1A | 0000001A | SUBSTITUTE
1B | 0000001B | ESCAPE
1C | 0000001C | FILE SEPARATOR
1D | 0000001D | GROUP SEPARATOR
1E | 0000001E | RECORD SEPARATOR
1F | 0000001F | UNIT SEPARATOR
20 | 00000020 | SPACE
21 | 00000021 | EXCLAMATION MARK
22 | 00000022 | QUOTATION MARK
23 | 00000023 | NUMBER SIGN
24 | 00000024 | DOLLAR SIGN
25 | 00000025 | PERCENT SIGN
26 | 00000026 | AMPERSAND
27 | 00000027 | APOSTROPHE
28 | 00000028 | LEFT PARENTHESIS
29 | 00000029 | RIGHT PARENTHESIS
2A | 0000002A | ASTERISK
2B | 0000002B | PLUS SIGN
2C | 0000002C | COMMA
2D | 0000002D | HYPHEN-MINUS
2E | 0000002E | FULL STOP
2F | 0000002F | SOLIDUS
30 | 00000030 | DIGIT ZERO
31 | 00000031 | DIGIT ONE
32 | 00000032 | DIGIT TWO
33 | 00000033 | DIGIT THREE
34 | 00000034 | DIGIT FOUR
35 | 00000035 | DIGIT FIVE
36 | 00000036 | DIGIT SIX
37 | 00000037 | DIGIT SEVEN
38 | 00000038 | DIGIT EIGHT
39 | 00000039 | DIGIT NINE
3A | 0000003A | COLON
3B | 0000003B | SEMICOLON
3C | 0000003C | LESS-THAN SIGN
3D | 0000003D | EQUALS SIGN
3E | 0000003E | GREATER-THAN SIGN
3F | 0000003F | QUESTION MARK
40 | 00000040 | COMMERCIAL AT
41 | 00000041 | LATIN CAPITAL LETTER A
42 | 00000042 | LATIN CAPITAL LETTER B
43 | 00000043 | LATIN CAPITAL LETTER C
44 | 00000044 | LATIN CAPITAL LETTER D
45 | 00000045 | LATIN CAPITAL LETTER E
46 | 00000046 | LATIN CAPITAL LETTER F
47 | 00000047 | LATIN CAPITAL LETTER G
48 | 00000048 | LATIN CAPITAL LETTER H
49 | 00000049 | LATIN CAPITAL LETTER I
4A | 0000004A | LATIN CAPITAL LETTER J
4B | 0000004B | LATIN CAPITAL LETTER K
4C | 0000004C | LATIN CAPITAL LETTER L
4D | 0000004D | LATIN CAPITAL LETTER M
4E | 0000004E | LATIN CAPITAL LETTER N
4F | 0000004F | LATIN CAPITAL LETTER O
50 | 00000050 | LATIN CAPITAL LETTER P
51 | 00000051 | LATIN CAPITAL LETTER Q
52 | 00000052 | LATIN CAPITAL LETTER R
53 | 00000053 | LATIN CAPITAL LETTER S
54 | 00000054 | LATIN CAPITAL LETTER T
55 | 00000055 | LATIN CAPITAL LETTER U
56 | 00000056 | LATIN CAPITAL LETTER V
57 | 00000057 | LATIN CAPITAL LETTER W
58 | 00000058 | LATIN CAPITAL LETTER X
59 | 00000059 | LATIN CAPITAL LETTER Y
5A | 0000005A | LATIN CAPITAL LETTER Z
5B | 0000005B | LEFT SQUARE BRACKET
5C | 0000005C | REVERSE SOLIDUS
5D | 0000005D | RIGHT SQUARE BRACKET
5E | 0000005E | CIRCUMFLEX ACCENT
5F | 0000005F | LOW LINE
60 | 00000060 | GRAVE ACCENT
61 | 00000061 | LATIN SMALL LETTER A
62 | 00000062 | LATIN SMALL LETTER B
63 | 00000063 | LATIN SMALL LETTER C
64 | 00000064 | LATIN SMALL LETTER D
65 | 00000065 | LATIN SMALL LETTER E
66 | 00000066 | LATIN SMALL LETTER F
67 | 00000067 | LATIN SMALL LETTER G
68 | 00000068 | LATIN SMALL LETTER H
69 | 00000069 | LATIN SMALL LETTER I
6A | 0000006A | LATIN SMALL LETTER J
6B | 0000006B | LATIN SMALL LETTER K
6C | 0000006C | LATIN SMALL LETTER L
6D | 0000006D | LATIN SMALL LETTER M
6E | 0000006E | LATIN SMALL LETTER N
6F | 0000006F | LATIN SMALL LETTER O
70 | 00000070 | LATIN SMALL LETTER P
71 | 00000071 | LATIN SMALL LETTER Q
72 | 00000072 | LATIN SMALL LETTER R
73 | 00000073 | LATIN SMALL LETTER S
74 | 00000074 | LATIN SMALL LETTER T
75 | 00000075 | LATIN SMALL LETTER U
76 | 00000076 | LATIN SMALL LETTER V
77 | 00000077 | LATIN SMALL LETTER W
78 | 00000078 | LATIN SMALL LETTER X
79 | 00000079 | LATIN SMALL LETTER Y
7A | 0000007A | LATIN SMALL LETTER Z
7B | 0000007B | LEFT CURLY BRACKET
7C | 0000007C | VERTICAL LINE
7D | 0000007D | RIGHT CURLY BRACKET
7E | 0000007E | TILDE
7F | 0000007F | DELETE
80 | 00000080 | PADDING CHARACTER (PAD)
81 | 00000081 | HIGH OCTET PRESET (HOP)
82 | 00000082 | BREAK PERMITTED HERE (BPH)
83 | 00000083 | NO BREAK HERE (NBH)
84 | 00000084 | INDEX (IND)
85 | 00000085 | NEXT LINE (NEL)
86 | 00000086 | START OF SELECTED AREA (SSA)
87 | 00000087 | END OF SELECTED AREA (ESA)
88 | 00000088 | CHARACTER TABULATION SET (HTS)
89 | 00000089 | CHARACTER TABULATION WITH JUSTIFICATION (HTJ)
8A | 0000008A | LINE TABULATION SET (VTS)
8B | 0000008B | PARTIAL LINE FORWARD (PLD)
8C | 0000008C | PARTIAL LINE BACKWARD (PLU)
8D | 0000008D | REVERSE LINE FEED (RI)
8E | 0000008E | SINGLE-SHIFT TWO (SS2)
8F | 0000008F | SINGLE-SHIFT THREE (SS3)
90 | 00000090 | DEVICE CONTROL STRING (DCS)
91 | 00000091 | PRIVATE USE ONE (PU1)
92 | 00000092 | PRIVATE USE TWO (PU2)
93 | 00000093 | SET TRANSMIT STATE (STS)
94 | 00000094 | CANCEL CHARACTER (CCH)
95 | 00000095 | MESSAGE WAITING (MW)
96 | 00000096 | START OF GUARDED AREA (SPA)
97 | 00000097 | END OF GUARDED AREA (EPA)
98 | 00000098 | START OF STRING (SOS)
99 | 00000099 | SINGLE GRAPHIC CHARACTER INTRODUCER (SGCI)
9A | 0000009A | SINGLE CHARACTER INTRODUCER (SCI)
9B | 0000009B | CONTROL SEQUENCE INTRODUCER (CSI)
9C | 0000009C | STRING TERMINATOR (ST)
9D | 0000009D | OPERATING SYSTEM COMMAND (OSC)
9E | 0000009E | PRIVACY MESSAGE (PM)
9F | 0000009F | APPLICATION PROGRAM COMMAND (APC)
A0 | 000000A0 | NO-BREAK SPACE
A1 | 00001E02 | LATIN CAPITAL LETTER B WITH DOT ABOVE
A2 | 00001E03 | LATIN SMALL LETTER B WITH DOT ABOVE
A3 | 000000A3 | POUND SIGN
A4 | 0000010A | LATIN CAPITAL LETTER C WITH DOT ABOVE
A5 | 0000010B | LATIN SMALL LETTER C WITH DOT ABOVE
A6 | 00001E0A | LATIN CAPITAL LETTER D WITH DOT ABOVE
A7 | 000000A7 | SECTION SIGN
A8 | 00001E80 | LATIN CAPITAL LETTER W WITH GRAVE
A9 | 000000A9 | COPYRIGHT SIGN
AA | 00001E82 | LATIN CAPITAL LETTER W WITH ACUTE
AB | 00001E0B | LATIN SMALL LETTER D WITH DOT ABOVE
AC | 00001EF2 | LATIN CAPITAL LETTER Y WITH GRAVE
AD | 000000AD | SOFT HYPHEN
AE | 000000AE | REGISTERED SIGN
AF | 00000178 | LATIN CAPITAL LETTER Y WITH DIAERESIS
B0 | 00001E1E | LATIN CAPITAL LETTER F WITH DOT ABOVE
B1 | 00001E1F | LATIN SMALL LETTER F WITH DOT ABOVE
B2 | 00000120 | LATIN CAPITAL LETTER G WITH DOT ABOVE
B3 | 00000121 | LATIN SMALL LETTER G WITH DOT ABOVE
B4 | 00001E40 | LATIN CAPITAL LETTER M WITH DOT ABOVE
B5 | 00001E41 | LATIN SMALL LETTER M WITH DOT ABOVE
B6 | 000000B6 | PILCROW SIGN
B7 | 00001E56 | LATIN CAPITAL LETTER P WITH DOT ABOVE
B8 | 00001E81 | LATIN SMALL LETTER W WITH GRAVE
B9 | 00001E57 | LATIN SMALL LETTER P WITH DOT ABOVE
BA | 00001E83 | LATIN SMALL LETTER W WITH ACUTE
BB | 00001E60 | LATIN CAPITAL LETTER S WITH DOT ABOVE
BC | 00001EF3 | LATIN SMALL LETTER Y WITH GRAVE
BD | 00001E84 | LATIN CAPITAL LETTER W WITH DIAERESIS
BE | 00001E85 | LATIN SMALL LETTER W WITH DIAERESIS
BF | 00001E61 | LATIN SMALL LETTER S WITH DOT ABOVE
C0 | 000000C0 | LATIN CAPITAL LETTER A WITH GRAVE
C1 | 000000C1 | LATIN CAPITAL LETTER A WITH ACUTE
C2 | 000000C2 | LATIN CAPITAL LETTER A WITH CIRCUMFLEX
C3 | 000000C3 | LATIN CAPITAL LETTER A WITH TILDE
C4 | 000000C4 | LATIN CAPITAL LETTER A WITH DIAERESIS
C5 | 000000C5 | LATIN CAPITAL LETTER A WITH RING ABOVE
C6 | 000000C6 | LATIN CAPITAL LETTER AE
C7 | 000000C7 | LATIN CAPITAL LETTER C WITH CEDILLA
C8 | 000000C8 | LATIN CAPITAL LETTER E WITH GRAVE
C9 | 000000C9 | LATIN CAPITAL LETTER E WITH ACUTE
CA | 000000CA | LATIN CAPITAL LETTER E WITH CIRCUMFLEX
CB | 000000CB | LATIN CAPITAL LETTER E WITH DIAERESIS
CC | 000000CC | LATIN CAPITAL LETTER I WITH GRAVE
CD | 000000CD | LATIN CAPITAL LETTER I WITH ACUTE
CE | 000000CE | LATIN CAPITAL LETTER I WITH CIRCUMFLEX
CF | 000000CF | LATIN CAPITAL LETTER I WITH DIAERESIS
D0 | 00000174 | LATIN CAPITAL LETTER W WITH CIRCUMFLEX
D1 | 000000D1 | LATIN CAPITAL LETTER N WITH TILDE
D2 | 000000D2 | LATIN CAPITAL LETTER O WITH GRAVE
D3 | 000000D3 | LATIN CAPITAL LETTER O WITH ACUTE
D4 | 000000D4 | LATIN CAPITAL LETTER O WITH CIRCUMFLEX
D5 | 000000D5 | LATIN CAPITAL LETTER O WITH TILDE
D6 | 000000D6 | LATIN CAPITAL LETTER O WITH DIAERESIS
D7 | 00001E6A | LATIN CAPITAL LETTER T WITH DOT ABOVE
D8 | 000000D8 | LATIN CAPITAL LETTER O WITH STROKE
D9 | 000000D9 | LATIN CAPITAL LETTER U WITH GRAVE
DA | 000000DA | LATIN CAPITAL LETTER U WITH ACUTE
DB | 000000DB | LATIN CAPITAL LETTER U WITH CIRCUMFLEX
DC | 000000DC | LATIN CAPITAL LETTER U WITH DIAERESIS
DD | 000000DD | LATIN CAPITAL LETTER Y WITH ACUTE
DE | 00000176 | LATIN CAPITAL LETTER Y WITH CIRCUMFLEX
DF | 000000DF | LATIN SMALL LETTER SHARP S
E0 | 000000E0 | LATIN SMALL LETTER A WITH GRAVE
E1 | 000000E1 | LATIN SMALL LETTER A WITH ACUTE
E2 | 000000E2 | LATIN SMALL LETTER A WITH CIRCUMFLEX
E3 | 000000E3 | LATIN SMALL LETTER A WITH TILDE
E4 | 000000E4 | LATIN SMALL LETTER A WITH DIAERESIS
E5 | 000000E5 | LATIN SMALL LETTER A WITH RING ABOVE
E6 | 000000E6 | LATIN SMALL LETTER AE
E7 | 000000E7 | LATIN SMALL LETTER C WITH CEDILLA
E8 | 000000E8 | LATIN SMALL LETTER E WITH GRAVE
E9 | 000000E9 | LATIN SMALL LETTER E WITH ACUTE
EA | 000000EA | LATIN SMALL LETTER E WITH CIRCUMFLEX
EB | 000000EB | LATIN SMALL LETTER E WITH DIAERESIS
EC | 000000EC | LATIN SMALL LETTER I WITH GRAVE
ED | 000000ED | LATIN SMALL LETTER I WITH ACUTE
EE | 000000EE | LATIN SMALL LETTER I WITH CIRCUMFLEX
EF | 000000EF | LATIN SMALL LETTER I WITH DIAERESIS
F0 | 00000175 | LATIN SMALL LETTER W WITH CIRCUMFLEX
F1 | 000000F1 | LATIN SMALL LETTER N WITH TILDE
F2 | 000000F2 | LATIN SMALL LETTER O WITH GRAVE
F3 | 000000F3 | LATIN SMALL LETTER O WITH ACUTE
F4 | 000000F4 | LATIN SMALL LETTER O WITH CIRCUMFLEX
F5 | 000000F5 | LATIN SMALL LETTER O WITH TILDE
F6 | 000000F6 | LATIN SMALL LETTER O WITH DIAERESIS
F7 | 00001E6B | LATIN SMALL LETTER T WITH DOT ABOVE
F8 | 000000F8 | LATIN SMALL LETTER O WITH STROKE
F9 | 000000F9 | LATIN SMALL LETTER U WITH GRAVE
FA | 000000FA | LATIN SMALL LETTER U WITH ACUTE
FB | 000000FB | LATIN SMALL LETTER U WITH CIRCUMFLEX
FC | 000000FC | LATIN SMALL LETTER U WITH DIAERESIS
FD | 000000FD | LATIN SMALL LETTER Y WITH ACUTE
FE | 00000177 | LATIN SMALL LETTER Y WITH CIRCUMFLEX
FF | 000000FF | LATIN SMALL LETTER Y WITH DIAERESIS

<<less
Download (0.45MB)
Added: 2007-07-28 License: Perl Artistic License Price:
818 downloads
JASA 0.35

JASA 0.35


JASA project is a high-performance auction simulation software in Java. more>>
JASA project is a high-performance auction simulation software in Java.
It is designed for performing experiments in agent-based computational economics. JASA implements variants of the double-auction market, which is commonly used to run real-world market places such as stock exchanges.
It is designed to be highly extensible, so that other types of auctions can easily be implemented. The software also provides base classes for implementing simple adaptive trading agents.
It was developed for research carried out at the Agent Applications, Research and Technology group of Liverpool University.
Enhancements:
- An implementation of the Gjerstad-Dickhaut strategy has been added, contributed by Marek Marcinkiewicz; see uk.ac.liv.auction.agent.GDStrategy.
- An implemention of the ZI-U strategy has been added, contributed by Jinzhong Niu; see uk.ac.liv.auction.agent.RandomUnconstrainedStrategy
- A control strategy that bids at the true equilibrium-price has been added; see uk.ac.liv.auction.agent.EquilibriumPriceStrategy
- A strategy has been added that decorates another strategy by bidding a markup on top of the component strategy see uk.ac.liv.auction.agent.MarkupStrategyDecorator
- The auction console View menu now allows the following graphs to be displayed:
- the true supply and demand of all agents in the auction
- the reported supply and demand of all agents in the auction
- the current auction state (matched and unmatched offers)
<<less
Download (27.0MB)
Added: 2007-01-09 License: GPL (GNU General Public License) Price:
1021 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 2
  • 1
  • 2