bonjour for windows
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 634
OpenOffice.org for Linux
free OpenOffice - Open source multi-platform office suite more>>
OpenOffice.org is the open source project through which Sun Microsystems is releasing the technology for the popular StarOffice productivity suite.
It is an international office suite that will run on all major platforms and provide access to all functionality and data through open-component based APIs and an XML- based file format.
It establishes the necessary facilities to make this open source technology available to the developer community.
<<lessIt is an international office suite that will run on all major platforms and provide access to all functionality and data through open-component based APIs and an XML- based file format.
It establishes the necessary facilities to make this open source technology available to the developer community.
Download (76.4MB)
Added: 2009-04-07 License: Freeware Price:
199 downloads
Bomns for Linux 0.99.1
Bomns for Linux is a fast-paced multiplayer deathmatch arcade game. more>>
Bomns for Linux project is a fast-paced multiplayer deathmatch arcade game.
Its gameplay is best described as "old-school," as it is based on the popular text-based Bomns franchise.
It has several modern conveniences, however, such as a level editor and GTK2 configuration tool.
Despite the name, Bomns for Linux is quite portable and can easily be built on nearly any platform.
<<lessIts gameplay is best described as "old-school," as it is based on the popular text-based Bomns franchise.
It has several modern conveniences, however, such as a level editor and GTK2 configuration tool.
Despite the name, Bomns for Linux is quite portable and can easily be built on nearly any platform.
Download (MB)
Added: 2006-12-07 License: GPL (GNU General Public License) Price:
1052 downloads
Bowzilla for Linux
Bowzilla is a mini Game for 2 players. more>>
Bowzilla is a mini Game for 2 players. Leaned against the old QBasic Gorilla, you must fire at your opponent in real-time.
Particularly the realistic blood is to be considered with the lightning strike. You have to find a whole in the target range. However, you should not expect to much from it.
<<lessParticularly the realistic blood is to be considered with the lightning strike. You have to find a whole in the target range. However, you should not expect to much from it.
Download (7.1MB)
Added: 2005-10-07 License: Freeware Price:
1479 downloads
Domino for openSUSE 0.3
Domino theme compiled for openSUSE and related reptiles. more>>
Domino theme compiled for openSUSE and related reptiles.
For the original sources and screenshots go to http://www.kde-look.org/content/show.php?content=42804
<<lessFor the original sources and screenshots go to http://www.kde-look.org/content/show.php?content=42804
Download (MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
555 downloads
JCalendar for Swing 0.1
JCalendar is a Swing component for selecting a date. more>>
JCalendar is a Swing component for selecting a date. JCalendar is easy to configure, highly customizable, and has an attractive user interface. The distribution includes a demo application so that you can preview your customized component.
Main features:
- Easy to configure
- Highly customizable. See properties.
- Attractive user interface
<<lessMain features:
- Easy to configure
- Highly customizable. See properties.
- Attractive user interface
Download (MB)
Added: 2005-11-14 License: The Apache License 2.0 Price:
1452 downloads
pybonjour 1.1.0
pybonjour provides a pure Python interface (via ctypes) to Apple Bonjour and compatible DNS-SD libraries (such as Avahi). more>>
pybonjour provides a pure Python interface (via ctypes) to Apple Bonjour and compatible DNS-SD libraries (such as Avahi).
The application allows Python scripts to take advantage of Zero Configuration Networking (Zeroconf) to register, discover, and resolve services on both local and wide-area networks.
Since pybonjour is implemented in pure Python, scripts that use it can easily be ported to Mac OS X, Windows, Linux, and other systems that run Bonjour.
Examples
The following scripts are included in the examples directory of the pybonjour source distribution.
Registering a Service
register.py Script
import select
import sys
import pybonjour
name = sys.argv[1]
regtype = sys.argv[2]
port = int(sys.argv[3])
def register_callback(sdRef, flags, errorCode, name, regtype, domain):
if errorCode == pybonjour.kDNSServiceErr_NoError:
print Registered service:
print name =, name
print regtype =, regtype
print domain =, domain
sdRef = pybonjour.DNSServiceRegister(name = name,
regtype = regtype,
port = port,
callBack = register_callback)
try:
try:
while True:
ready = select.select([sdRef], [], [])
if sdRef in ready[0]:
pybonjour.DNSServiceProcessResult(sdRef)
except KeyboardInterrupt:
pass
finally:
sdRef.close()
Example Output
$ python register.py TestService _test._tcp 1234
Registered service:
name = TestService
regtype = _test._tcp.
domain = local.
Browsing for and Resolving Services
browse_and_resolve.py Script
import select
import sys
import pybonjour
regtype = sys.argv[1]
timeout = 5
resolved = []
def resolve_callback(sdRef, flags, interfaceIndex, errorCode, fullname,
hosttarget, port, txtRecord):
if errorCode == pybonjour.kDNSServiceErr_NoError:
print Resolved service:
print fullname =, fullname
print hosttarget =, hosttarget
print port =, port
resolved.append(True)
def browse_callback(sdRef, flags, interfaceIndex, errorCode, serviceName,
regtype, replyDomain):
if errorCode != pybonjour.kDNSServiceErr_NoError:
return
if not (flags & pybonjour.kDNSServiceFlagsAdd):
print Service removed
return
print Service added; resolving
resolve_sdRef = pybonjour.DNSServiceResolve(0,
interfaceIndex,
serviceName,
regtype,
replyDomain,
resolve_callback)
try:
while not resolved:
ready = select.select([resolve_sdRef], [], [], timeout)
if resolve_sdRef not in ready[0]:
print Resolve timed out
break
pybonjour.DNSServiceProcessResult(resolve_sdRef)
else:
resolved.pop()
finally:
resolve_sdRef.close()
browse_sdRef = pybonjour.DNSServiceBrowse(regtype = regtype,
callBack = browse_callback)
try:
try:
while True:
ready = select.select([browse_sdRef], [], [])
if browse_sdRef in ready[0]:
pybonjour.DNSServiceProcessResult(browse_sdRef)
except KeyboardInterrupt:
pass
finally:
browse_sdRef.close()
Example Output
$ python browse_and_resolve.py _test._tcp
Service added; resolving
Resolved service:
fullname = TestService._test._tcp.local.
hosttarget = bumble.local.
port = 1234
...
<<lessThe application allows Python scripts to take advantage of Zero Configuration Networking (Zeroconf) to register, discover, and resolve services on both local and wide-area networks.
Since pybonjour is implemented in pure Python, scripts that use it can easily be ported to Mac OS X, Windows, Linux, and other systems that run Bonjour.
Examples
The following scripts are included in the examples directory of the pybonjour source distribution.
Registering a Service
register.py Script
import select
import sys
import pybonjour
name = sys.argv[1]
regtype = sys.argv[2]
port = int(sys.argv[3])
def register_callback(sdRef, flags, errorCode, name, regtype, domain):
if errorCode == pybonjour.kDNSServiceErr_NoError:
print Registered service:
print name =, name
print regtype =, regtype
print domain =, domain
sdRef = pybonjour.DNSServiceRegister(name = name,
regtype = regtype,
port = port,
callBack = register_callback)
try:
try:
while True:
ready = select.select([sdRef], [], [])
if sdRef in ready[0]:
pybonjour.DNSServiceProcessResult(sdRef)
except KeyboardInterrupt:
pass
finally:
sdRef.close()
Example Output
$ python register.py TestService _test._tcp 1234
Registered service:
name = TestService
regtype = _test._tcp.
domain = local.
Browsing for and Resolving Services
browse_and_resolve.py Script
import select
import sys
import pybonjour
regtype = sys.argv[1]
timeout = 5
resolved = []
def resolve_callback(sdRef, flags, interfaceIndex, errorCode, fullname,
hosttarget, port, txtRecord):
if errorCode == pybonjour.kDNSServiceErr_NoError:
print Resolved service:
print fullname =, fullname
print hosttarget =, hosttarget
print port =, port
resolved.append(True)
def browse_callback(sdRef, flags, interfaceIndex, errorCode, serviceName,
regtype, replyDomain):
if errorCode != pybonjour.kDNSServiceErr_NoError:
return
if not (flags & pybonjour.kDNSServiceFlagsAdd):
print Service removed
return
print Service added; resolving
resolve_sdRef = pybonjour.DNSServiceResolve(0,
interfaceIndex,
serviceName,
regtype,
replyDomain,
resolve_callback)
try:
while not resolved:
ready = select.select([resolve_sdRef], [], [], timeout)
if resolve_sdRef not in ready[0]:
print Resolve timed out
break
pybonjour.DNSServiceProcessResult(resolve_sdRef)
else:
resolved.pop()
finally:
resolve_sdRef.close()
browse_sdRef = pybonjour.DNSServiceBrowse(regtype = regtype,
callBack = browse_callback)
try:
try:
while True:
ready = select.select([browse_sdRef], [], [])
if browse_sdRef in ready[0]:
pybonjour.DNSServiceProcessResult(browse_sdRef)
except KeyboardInterrupt:
pass
finally:
browse_sdRef.close()
Example Output
$ python browse_and_resolve.py _test._tcp
Service added; resolving
Resolved service:
fullname = TestService._test._tcp.local.
hosttarget = bumble.local.
port = 1234
...
Download (0.015MB)
Added: 2007-06-15 License: MIT/X Consortium License Price:
862 downloads
infoRSS 1.1.2 for Firefox
infoRSS displays RSS, Atom, HTML and NNTP feed in a scrolling area the status bar. more>> <<less
Download (0.48MB)
Added: 2007-07-16 License: MPL (Mozilla Public License) Price:
832 downloads
LOOP for Firefox 0.57
LOOP for Firefox is an extension that provides a revolutionary way to document web pages while browsing the Internet. more>>
LOOP for Firefox is an extension that provides a revolutionary way to document web pages while browsing the Internet.
You can seamlessly document URLs with the click of a button and then download or combine the web pages with other files to a single PDF.
<<lessYou can seamlessly document URLs with the click of a button and then download or combine the web pages with other files to a single PDF.
Download (0.10MB)
Added: 2007-07-17 License: MPL (Mozilla Public License) Price:
830 downloads
Linux in a window of Windows 4.0-r0
Linux in a window of Windows. Run the Debian Linux appliance in the free VMware Player side by side with Windows. This is a full desktop Gnome install... more>> <<less
Download (455993KB)
Added: 2009-04-13 License: Freeware Price: Free
196 downloads
Knotify for Pidgin 0.1
Knotify for Pidgin is a plugin for the Pidgin chat client that uses Knotify to do notifications. more>>
Knotify for Pidgin is a plugin for the Pidgin chat client that uses Knotify to do notifications. This is for those who like pidgin but dont like the lack of KDE integration.
<<less Download (0.003MB)
Added: 2007-07-23 License: LGPL (GNU Lesser General Public License) Price:
826 downloads
InfoLister 0.9f for Firefox
InfoLister is an extension that lists installed extensions and themes. more>>
InfoLister is an extension that lists installed extensions and themes.
The user comments section here is for extension reviews. To leave feedback or report a bug please send me an e-mail.
<<lessThe user comments section here is for extension reviews. To leave feedback or report a bug please send me an e-mail.
Download (0.071MB)
Added: 2007-04-25 License: MPL (Mozilla Public License) Price:
912 downloads
Glass KDM for PCLinuxOS
Glass KDM for PCLinuxOS is a new KDM theme for PCLinuxOS featuring a clear glass login frame. more>>
Glass KDM for PCLinuxOS is a new KDM theme for PCLinuxOS featuring a clear glass login frame.
<<less Download (MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
962 downloads
Screensavers for Xandros 4.x
Screensavers for Xandros 4.x contains twelve different screensavers you can try out for Xandros. more>>
Screensavers for Xandros 4.x contains twelve different screensavers you can try out for Xandros. They are static builds, so they should work out of the box. You may need OpenAL for the Really Slick Screensavers, and the sound is a bit scratchy, since I compiled the thing with Arts so the sounds would work all the time.
You dont have to have OpenAL installed though, you just wont get sound. Kanjisaver needs the Chineese fonts installed in order to function properly, so if you deselected those, pop in your Xandros cd and install them before installing it.
Other than that, the rest *should* work out of the box just fine. There are additional builds available, but this only gives me 12 spots. Simply right-click save the link for the package you want. Then Double click to install.
Additional info at http://forums.xandros.com/viewtopic.php?t=26918
P.S. Thanks to all the authors of these fine screensavers.
Main features:
- Flower Attack
- Kanjisaver
- KBiof
- KCad
- KCometen3
- KFieldlines
- KFlocks
- Kogs
- SmoothSlideSaver
- Really Slick Screensavers
- Kannasaver
- Tropical TuxSaver
<<lessYou dont have to have OpenAL installed though, you just wont get sound. Kanjisaver needs the Chineese fonts installed in order to function properly, so if you deselected those, pop in your Xandros cd and install them before installing it.
Other than that, the rest *should* work out of the box just fine. There are additional builds available, but this only gives me 12 spots. Simply right-click save the link for the package you want. Then Double click to install.
Additional info at http://forums.xandros.com/viewtopic.php?t=26918
P.S. Thanks to all the authors of these fine screensavers.
Main features:
- Flower Attack
- Kanjisaver
- KBiof
- KCad
- KCometen3
- KFieldlines
- KFlocks
- Kogs
- SmoothSlideSaver
- Really Slick Screensavers
- Kannasaver
- Tropical TuxSaver
Download (MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
1012 downloads
Operator 0.7 for Firefox
Operator is a Firefox extension that lets you combine information on Web sites with applications in ways that are useful. more>>
Operator is a Firefox extension that lets you combine information on Web sites with applications in ways that are useful.
For instance, Flickr + Google Maps, Upcoming.org + Google Calendar, Yahoo! Local + your address book, and many more possibilities and permutations.
All of these scenarios are possible due to Microformats, an emerging standard for injecting semantics into HTML.
You can use Operator to debug your microformats. Holding down the Ctrl key when you select a microformat action will show you the HTML that corresponds to that microformat. In addition, holding down the Shift key when you select a microformat action will display our internal representation of the microformat data.
If a microformat doesnt show up, but you believe there is one, it might be because the microformat is invalid. You can turn on debug mode in options to see invalid microformats.
Also, Operator was designed to be extensible. You can add more microformats and more handlers for existing microformats. For more information, check out handler-example.js and microformat-example.js in the Operator extension directory after you have installed Operator. New microformats and handlers should be placed in a directory called "microformats" in your profile directory.
I understand that I used a different way to do the translation for this version of the extension (JS file). For the next version, I will move the translation into a properties file.
<<lessFor instance, Flickr + Google Maps, Upcoming.org + Google Calendar, Yahoo! Local + your address book, and many more possibilities and permutations.
All of these scenarios are possible due to Microformats, an emerging standard for injecting semantics into HTML.
You can use Operator to debug your microformats. Holding down the Ctrl key when you select a microformat action will show you the HTML that corresponds to that microformat. In addition, holding down the Shift key when you select a microformat action will display our internal representation of the microformat data.
If a microformat doesnt show up, but you believe there is one, it might be because the microformat is invalid. You can turn on debug mode in options to see invalid microformats.
Also, Operator was designed to be extensible. You can add more microformats and more handlers for existing microformats. For more information, check out handler-example.js and microformat-example.js in the Operator extension directory after you have installed Operator. New microformats and handlers should be placed in a directory called "microformats" in your profile directory.
I understand that I used a different way to do the translation for this version of the extension (JS file). For the next version, I will move the translation into a properties file.
Download (0.059MB)
Added: 2007-07-24 License: MPL (Mozilla Public License) Price:
825 downloads
Sysinfo for Pardus 1.4.2
Sysinfo for Pardus is OpenSuses sysinfo:/ kioslave ported to Pardus more>>
Sysinfo for Pardus is OpenSuses sysinfo:/ kioslave ported to Pardus
<<less Download (0.80MB)
Added: 2007-07-18 License: GPL (GNU General Public License) Price:
828 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above bonjour for windows search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed