Main > Free Download Search >

Free how do i know if im pregnant software for linux

how do i know if im pregnant

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1843
@1 Know Your Events 1.0

@1 Know Your Events 1.0


Let your site visitors view or search events posted by you. more>> Let your site visitors view or search events posted by you. Support image upload.<<less
Download (12KB)
Added: 2009-04-11 License: Freeware Price: Free
195 downloads
BitWise IM for Linux 1.7.3

BitWise IM for Linux 1.7.3


It is for Linux, direct connect, sending messages, etc. more>> BitWise IM is an instant messenger with many advanced features, encrypted using proven, industry-standard methods, available for Windows, Mac OS X and Linux, direct connect, sending messages, etc. without a server, its own network that does not rely on another system, committed to privacy with no ads or spyware. Explore BitWises features Select a feature on the left
"I am more than pleased with BitWise and have been trying to get others to con-
sider switching over from other IM programs." - Submitted on a user survey
What are BitWise Personal, Plus and Professional?
BitWise Personal is for personal/home use and is free. Personal may not be used for any business or organization.
BitWise Plus is also for personal/home use, but offers additional encryption and security features for a small, one-time fee.
BitWise Professional is business-class instant messaging, providing administration, user rights, technical support, and more.
<<less
Download (3.20MB)
Added: 2009-04-21 License: Freeware Price: Free
188 downloads
Mono-Readline 0.0.1

Mono-Readline 0.0.1


Mono-Readline is a simple little assembly for .Net (specifically Mono) that provides support for GNU Readline. more>>
Mono-Readline is a simple little assembly for .Net (specifically Mono) that provides support for GNU Readline support within Mono applications.

Mono-Readline project is based on the code of Martin Baulig in the Mono debugger. I just took it and made it all nice and autoconf/automake enabled.

Its pretty straight forward, but here is a short sample program:

using Mono.ReadLine;
using System;
using System.Reflection;

public class Test {

public static void Main(string[] args) {
GnuReadLine readline = new GnuReadLine();
Console.WriteLine("Monkeys!");

string the_prompt = "This is a test: ";
string result;
while (true) {
result = readline.ReadLine(the_prompt);
if (result != null) {
readline.AddHistory(result);
} else {
break;
}
}
}
}

You should be able to compile this with mcs -r:mono.readline test.cs and get a little executable program that keeps going until you hit CTRL-D. There is lots of other fun you could do such as setting up continuation prompts and what not. Basically, most of this is ripped from Martins code in the mono debugger.

But wait, odds are youre going to get some funky error saying it cant find the package or something like that. If thats the case, make sure you have MONO_PATH="/usr/local/lib" set before running the program and compiling. For example to compile run:

MONO_PATH="/usr/local/lib" mcs -r:mono.readline test.cs

And then to run type:

MONO_PATH="/usr/local/lib" mono test.exe

Im not a real Mono pro, but my hope is that this could possibly help someone else out. Im thinking that in the future I may also include a patch for IronPython.

As always, if you have comments or patches, please let me know.
<<less
Download (0.29MB)
Added: 2006-03-31 License: GPL (GNU General Public License) Price:
1305 downloads
Know Base 1.3

Know Base 1.3


Know Base project consists of knowledge, document, and project management tool. more>>
Know Base project consists of knowledge, document, and project management tool.

Know Base is a Web-based knowledge management system. It allows users to share files and projects across multiple business divisions.

A unique notification system alerts users when projects are modified, or when new projects are added that match their search terms.

<<less
Download (0.035MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1010 downloads
Fair NAT 0.80

Fair NAT 0.80


Fair NAT is a script for configuring NAT on dedicated Linux routers. more>>
Fair NAT is a script for configuring NAT on dedicated Linux routers. This is the home of my linux router shaper script which allows something like fair bandwidth sharing among clients in the local network. The script is not great or anything - please dont expect the holy grail here - I just thought Id publish it because many people helped me write it and maybe someone has some use for it. I bet there are still lots of things that can be improved. Sorry about the crappy design of this page, I dont have time to put more effort in better looks.
You have a certain number of Clients (User A - User N) in your LAN which are connected by a Switch (or a Hub or BNC) to the Linux Router which is supposed to act as a gateway to the internet. The trouble now is, User B has a lot of downloads running and User C uploads stuff day and night, which leaves User A who only wants to use an interactive SSH shell in the rain, since B and C already use up all bandwidth the internet connection offers.
What we need to do is to share available bandwidth fairly among clients. In order to achieve this, I first tried several searches at Google and Freshmeat. This turned up quite a lot of results, like the Linux Advanced Routing & Traffic Control HOWTO which is a must-read and also contains great scripts, like the Wondershaper for single users. Another great general purpose script I found was HTB.init, which doesnt do anything by default, but gives you an easy way to setup HTB queues. In case you prefer CBQ, theres a CBQ.init too. If you dont know what Im talking about, read the HOWTO above or continue reading here.
Since I never found a script that did exactly what I wanted, I decided to write my own. Its designed to be an all-I-need script, therefore it does not just setup Traffic Shaping, but Masquerading and Port Forwarding too. In short, it does everything that has to do with IPTables and Traffic Control. I use HTB (Hierarchical Token Bucket) to share bandwidth among clients (one class per client). On top of that I added a PRIO queue to prioritize interactive traffic on a per-user basis. On top of PRIO I set SFQ to treat connections fairly. In version 0.72, experimental support for IPP2P to recognize peer-to-peer traffic was added.
This is the simplified scheme for routing:
HTB class (for bandwidth sharing)
|
-- PRIO (for prioritizing interactive traffic)
|
--- Interactive: SFQ (to treat concurrent connections fairly)
--- Normal: SFQ
--- High-Traffic: SFQ
[ --- P2P: SFQ (if IPP2P support is enabled only) ]
I bet this can still be improved and Im always interested in ways to do so. In case you want another class structure, this can be done by replacing the parent_class and user_class functions in the script. See CLASS_MODE in Configuration section and the function documentation in the script for details. Feel free to send me your own functions with a short explanation, if you want me to make them available for everybody.
Heres a "real" graphic, which shows the complete qdisc/class structure on $DEV_LAN if you use the unmodified example configuration file. This graphic was created using a hacked version of Stef Coenes show.pl script and GraphViz. Click here to see it, but I warn you: its quite big. Heres a similar picture, which includes IPP2P support. Note that there are more filter rules (the blue arrows) now which put the filesharing traffic into the users prio band 4.
Main features:
- This is a variable with a space-separated list of features that should be enabled. Default is all enabled if you dont set this variable.
- PROC:
- Allow Fair NAT to change some system variables in /proc, like setting /proc/sys/net/ipv4/ip_forward to 1.
- MODULES:
- Try to load kernel modules for QoS first.
- RESET:
- Fair NAT will replace all existing iptables rules with a very basic (empty) configuration. Not healthy for firewalls. You can disable this feature to keep the original rules in place. See Firewall Support below.
- NAT:
- Allow Fair NAT to configure NAT. You could disable this if you prefer to set this up yourself / let your firewall do it.
- FORWARD:
- Allow Fair NAT to configure Port Forwarding. Same as NAT, you can disable this if you dont need it.
- QOS_DOWN:
- Shape download traffic. If you know a little bit about traffic shaping and believe that download shaping is completely useless, feel free to disable this.
- QOS_UP:
- Shaping upload traffic can be disabled also. If you disable this and QOS_DOWN also, you could use Fair NAT for setting up NAT and Port Forwarding only, although thats not really the purpose of the script ;-)
- TOS:
- Allow Fair NAT to modify the TOS (type-of-service) field of packets. Right now, Fair NAT relies on this TOS field for shaping, so using this feature is highly recommended.
<<less
Download (0.031MB)
Added: 2006-06-29 License: GPL (GNU General Public License) Price:
1214 downloads
Firewall Generator 3.0

Firewall Generator 3.0


Firewall Generator is a CGI script that generates a firewall. more>>
Firewall Generator is a CGI script that generates a bash shell script that contains a list of commands for configuring a set of firewall rules.

It is the best solution to know something about system security.
<<less
Download (0.002MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1206 downloads
vidiprinter 0.4

vidiprinter 0.4


vidiprinter provides a display of the BBCs vidiprinter for soccer fans. more>>
vidiprinter provides a display of the BBCs vidiprinter for soccer fans.

Please suggest/mail me any aesthetic improvements as Im no artist. Most alterations can be achieved in the global declarations of the python script. The background images are in the images directory.

<<less
Download (0.024MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1206 downloads
Akeni Instant Messaging IM - Pro 1.2.75

Akeni Instant Messaging IM - Pro 1.2.75


Akeni Instant Messaging - Pro is a client/server instant messaging platform. more>>
Akeni Instant Messaging - Pro is a client/server instant messaging platform that allows companies to host their own secured private IM system. The client has an user interface similar to AIM, ICQ, or MSN Messenger. It supports all the standard IM features such as chat, group conference, presence management, file transfer, offline messages and emergency alert/notification. Extra features include contact management and optional tabbed chat sessions.

The server has administration tools like managing user accounts, client-side logging capabilities and peer-to-peer file transfers. Akeni Pro Messenger can be setup on a private network without connecting to the internet and can easily be setup for use inside and outside the company firewall.

<<less
Download (3.1MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1225 downloads
RSS-IM Gateway 2.0

RSS-IM Gateway 2.0


RSS-IM Gateway is a tool for publishing an RSS feed over IM networks. more>>
The RSS-IM Gateway allows any site with an RSS feed to make their feed available via the IM network of their choice. It is very easy to set up.
Just create a new IM nick on your favorite network (links here) - something like "MySiteIM" always works - fill out the blanks in the config.im file, and your headlines are viewable on that network automatically, including from most cell phones if you use AIM or MSN. It works with AIM, ICQ, YIM and Jabber.
This project is a derivative of the SDBA Revolution IM Application Server version 1.85 and includes all files you will need. You will need to have an uptodate version of Perl with XML::RSS, in addition to the other libraries required.
Using:
- Make sure Perl is set up correctly, with all libraries (including XML::RSS!).
- Open config.im and put in your chosen nick and password for the bot, edit the network (default is AIM), and put in the URL to your feed.
- Start sdba.pl from the command line.
- Message the nick you chose from any IM client.
<<less
Download (0.071MB)
Added: 2005-04-26 License: The Apache License Price:
1642 downloads
pr2nntp 0.1

pr2nntp 0.1


pr2nntp is a gate from RSS to NNTP and RSS readers killer. more>>
pr2nntp is a gate from RSS to NNTP and RSS readers killer. The project is quite flexible, easy to use and maintain. Im using this program from december 2006 and very happy with it.

At this moment all documentation comes in russian only.

<<less
Download (0.045MB)
Added: 2007-02-27 License: GPL (GNU General Public License) Price:
969 downloads
Sonic Action Beta 3

Sonic Action Beta 3


Sonic Action is a multiplatform Sonic fangame based on the SRB2 story. more>>
Sonic Action is the first SRB2 Town related game. Anywhere, instead of the standard story that you read everyday, this time the viewpoint is more orientated to Sonic.
But Im not saying that well not appear in the game, nothing of that kind. Im planning to get we appear in the game. So dont ask me about that.
The engine of Sonic Action is incredibly good: you can think that Sega made it. Thats because six months of developing can do wonderful things. And this is not developed using programs such as Game Maker, MFF or TGF, normally used for make fangames, its programmed in C++ with Allegro.
And is more: Tails92 will port the different versions of Sonic Action to other OS like Linux or FreeBSD (Sonic Action is orignally programmed for Windows).
The story is very original, as far as the fangames stories that I know.. But you can get more info in the Sonic Action sections (scroll down the menu).
Enhancements:
- New levels: Badnik City and Eggman Base (the last is incomplete).
<<less
Download (0.77MB)
Added: 2006-10-05 License: GPL (GNU General Public License) Price:
728 downloads
Unclassified NewsBoard 1.6.2

Unclassified NewsBoard 1.6.2


Unclassified NewsBoard (UNB) is an Internet bulletin board system with Jabber integration, Unicode support. more>>
Unclassified NewsBoard (UNB) is an Internet bulletin board system with Jabber integration, Unicode support, and Access Control Lists.
The Unclassified NewsBoard (short UNB) is an open-source, PHP-based internet bulletin board system, mostly like those you may already know. But the difference is in a lot of details that make your life with this board, both as administrator and user, much easier.
Youll be surprised how easy things can be and how fast you can work with such a system! The Unclassified NewsBoard has a lot of innovative features the world has never seen before in this way. I run this project in my spare time, mostly because over two years ago, none of the freely available forum systems fully convinced me and because I found fun in that job.
Main features:
- Native real-time Jabber IM notification on new posts
- Detailed access rights management with an Access Control List
- Intuitive usage: commands are where you expect them to be
- Real unread posts selection, without cookies
- Robust BB code parser with syntax checking and nesting tags support
- Good scalability: Everything you need - nothing less and nothing more
- Full Unicode support (i18n), multiple designs and languages
- Automated installation; configuration in the integrated web interface
- Compatible with any operating system that supports PHP and MySQL
- XHTML 1.0 and CSS 2.1 compliant
<<less
Download (0.81MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1221 downloads
Kitty Hooch Photo Manager 0.3

Kitty Hooch Photo Manager 0.3


Kitty Hooch Photo Manager can process photos where you need to copy, resize, create a thumbnail and write some text. more>>
Kitty Hooch Photo Manager is something I wrote for myself I thought Id share. I use it to process photos where I need to copy, resize, create a thumbnail and write some text. I got sick of gimping (sick of gimp really) and automated this to produce text files or PHP strings too.

If you call it from Quanta it will even regester everything in your project so its one step from picking a list of photos and commenting on them to uploading. Sorry, you have to write your own PHP libraries.

This requires ImageMagick. I just added the thumbnailing and I know how to make it a lot faster, but Im too tired to do it now. In case youre wondering if you can do anything with Kommander, this is EXACTLY the type of thing I had in mind for it. This may not be what you need, but with a few minutes of editing the output patterns it may be a dream come true. Enjoy.

<<less
Download (0.073MB)
Added: 2006-09-12 License: GPL (GNU General Public License) Price:
1139 downloads
Net::YahooMessenger 0.16

Net::YahooMessenger 0.16


Net::YahooMessenger is a Perl interface to the Yahoo!Messenger IM protocol. more>>
Net::YahooMessenger is a Perl interface to the Yahoo!Messenger IM protocol.

SYNOPSIS

use Net::YahooMessenger;

my $yahoo = Net::YahooMessenger->new(
id => your_yahoo_id,
password => your_password,
);
$yahoo->login or die "Cant login Yahoo!Messenger";
$yahoo->send(recipient_yahoo_id, Hello World!);

MAINTAINERS WANTED

This module is not in active maintenance now. Thus it doesnt play well with recent Yahoo! protocol updates. If you are interested in taking over this module on CPAN, please let me know your CPAN author ID to me at miyagawa[at]cpan.org.

Net::YahooMessenger is a client class for connecting with the Yahoo!Messenger server, and transmitting and receiving a message.

Since implement of a protocol is the result of analyzing and investigating a packet, it has an inadequate place. However, it is working as expected usually.

<<less
Download (0.016MB)
Added: 2006-12-11 License: Perl Artistic License Price:
1052 downloads
SNIMMER 1.0

SNIMMER 1.0


SNIMMER stands for Single Network Instant Messaging Mediation and Relay. more>>
SNIMMER stands for Single Network Instant Messaging Mediation and Relay. SNIMMER can talk to any IM network, and can relay instant messages from one IM network to another.

Currently, one cannot use AOL messenger to chat with users on MSN, Yahoo!, or GTalk and vice-versa. SNIMMER overcomes instant messenger non-interoperability.

It has been designed primarily to help webmasters to chat with Web visitors on any IM network using any instant messenger.

What you will need:

1) Internet connection
2) IM account that you always use
3) Create a set of IM accounts for all networks (eg. AOL, ICQ, Yahoo, MSN) that you want to receive visitors from. It is essential that you create brand new accounts that were not used by you for personal chat, otherwise snimmer will clash with you online.
4) Web server where you can run a CGI script. A sample script that comes with this package is written in python but you can re-write it in your favorite language - it is very simple.
5) You neeed Python to be installed on your web server. Also you will need python-xmpp library installed too.

You can grab python here: http://www.python.org/

XMPPPY library download:

http://sourceforge.net/project/showfiles.php?group_id=97081&package_id=103821

6) You should know how to add CGI scripts to pages and how to display results. Sample script works but youll probably want a better integration with your page.
7) You have to know what jabber servers and what jabber transports you are going to use.

You can deploy your own or you can try the ones that are publicly available. You can refer to this page to find the server for you:

http://www.jabber.org/user/publicservers.shtml

In the simplest case youll need to replace example.com with the name of the server you have picked. Though it is not neccessary that transport should be on the same server. You can use transports from other servers if their policies allow that.

How to install it:

1) get it from http://www.snimmer.com/snimmer/snimmer.tar and unpack it
2) open credentials.py with a text editor. You will see something like this (lines numbers are added for readability - they should not be present in the actual file):

1 clients={
2 snimmer@example.com:{
3 login:snimmer,
4 server:example.com,
5 password:snimmer,
6 transports:{
7 xmpp:(example.com,,),
8 # icq:(icq.example.com,123456789,ICQ_password,),
9 # yahoo:(yahoo.example.com,Yahoo_login,Yahoo_password),
10 # msn:(msn.example.com,MSN_login@hotmail.com,MSN_password),
11 # aim:(aim.example.com,AIM_screenname,AIM_password),
13 },
14 },
15
16 ## This is another connection. If you want to be able to receive two calls at the same time
17 ## uncomment it. To receive even more calls - add more such sections
18 # snimmer2@example.com:{
19 # login:snimmer2,
20 # server:example.com,
21 # password:snimmer,
22 # transports:{
23 # icq:(icq.example.com,123456780,ICQ_password2,),
24 # },
25 # },
26
27 }
28
29 SPOOL=rc:snimmerspool
30 SPOOL=r/tmp/snimmerspool
31
32 publisher_im=icq
33 publisher_screenname=123456789
34
35 blocked_ips=blocked.txt
<<less
Download (0.020MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1107 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5