GovTrack opens up information on US legislature


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News GovTrack opens up information on US legislature
# 1  
Old 07-24-2008
GovTrack opens up information on US legislature

07-24-2008 01:00 PM
Since 2004, GovTrack.us has housed information about the United States Congress, including 10 years of bills, voting records, and contact information for individual members of Congress. Visitors can also find out who represents them and search the database for committee assignments, legislative statistics, and the Congressional Record, which is the official record of daily proceedings in Congress. All the code that makes GovTrack run is open source, and all the information stored there is freely available to everyone.



Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

[bash] Extra tab opens

Hello everyone, This code is working right using mate-terminal but with xfce4-terminal for some reason, it open up an extra tab... Could someone please help me out to understand why this is happening? #!/bin/bash cd "$(dirname "$0")"/files tab=" --tab" title=" --title" options=()... (2 Replies)
Discussion started by: soichiro
2 Replies

2. Shell Programming and Scripting

Bash menu opens and closes

Ever since I added these two code blocks to my bash menu it just opens and closes right away. I use a batch file that worked fine until these codes were added and I am not sure what is wrong. Basically, what I am trying to do in the additional section is if the answer is "Y" then it goes back... (13 Replies)
Discussion started by: cmccabe
13 Replies

3. OS X (Apple)

Programatically change which opens a file type

Hi there, If we have 2 apps on our customers machines that can both open files of a certain file extension, is there any way via shell commands to set which application should be the default? Essentially, I'm hoping to replicate Get Info > Open With > Change All, but using a script. Thanks... (0 Replies)
Discussion started by: davewg
0 Replies

4. Shell Programming and Scripting

Position to last line when vi opens a file.

Any Idea without entering any keystroke I can go to end of line in vi when I opening the file. When I am opening Vi I want to goto last line. when I give vi + filename it does not work. Any clue why it does not work. Thanks. (3 Replies)
Discussion started by: ekb
3 Replies

5. IP Networking

Port that a process opens up

Hi all, I have a process with PID as 12456. Could you please let me know how do i find out what is the port that process listens upon in Linux? Thanks in Advance, Pankajakshan (2 Replies)
Discussion started by: Pankajakshan
2 Replies

6. Linux

Port that a process opens up

Hi all, I have a process with PID as 12456. Could you please let me know how do i find out what is the port that process listens upon in Linux? Thanks in Advance, Pankajakshan (1 Reply)
Discussion started by: Pankajakshan
1 Replies

7. UNIX for Dummies Questions & Answers

Selectionbox, script which opens more than one file at once?

hello everybody I´m very new at shell and programming :eek: and i have the following question/problem: I need a script for framemaker (based on shell) which opens a new document from a template (.fm). Then imports a .doc file and then save it as a .mif. Actually my script works with one... (3 Replies)
Discussion started by: tio86
3 Replies

8. AIX

Vi opens automatically when i login to a unix box

When I login to a unix box using a putty session , I'm landed in a vi editor, instead of my home directory,I'm guessing instead of pointing me to my home directory, the system points me to /usr/bin/vi. As a result, everytime I log into the system I open up a vi editor and am in there. how do i... (3 Replies)
Discussion started by: ramky79
3 Replies

9. UNIX for Dummies Questions & Answers

VI opens slow

when ever I try to vi a file that resides on another machines it takes forever for it to open. Does anyone have any ideas why it would be doing this? I have 7 unix machines and the only two that do this are both running tru64. (6 Replies)
Discussion started by: Moca4444
6 Replies
Login or Register to Ask a Question
VOTEQUORUM_GETINFO(3)				    Corosync Cluster Engine Programmer's Manual 			     VOTEQUORUM_GETINFO(3)

NAME
votequorum_getinfo - Get information about the VoteQuorum service SYNOPSIS
#include <corosync/votequorum.h> int votequorum_getinfo(votequorum_handle_t *handle, unsigned int nodeid, struct votequorum_info *info); DESCRIPTION
The votequorum_getinfo function is used to get information about the voteing system and its nodes. The votequorum_info structure is defined as follows: struct votequorum_info { unsigned int node_id; unsigned int node_votes; unsigned int node_expected_votes; unsigned int highest_expected; unsigned int total_votes; unsigned int quorum; unsigned int flags; }; #define VOTEQUORUM_INFO_FLAG_DIRTY 1 #define VOTEQUORUM_INFO_FLAG_DISALLOWED 2 #define VOTEQUORUM_INFO_FLAG_TWONODE 4 #define VOTEQUORUM_INFO_FLAG_QUORATE 8 The members starting node_ hold information specific to the requested nodeid, the other are general to the voting system. RETURN VALUE
This call returns the CS_OK value if successful, otherwise an error is returned. BUGS
Callbacks are not support at the moment. ERRORS
The errors are undocumented. SEE ALSO
votequorum_overview(8), votequorum_finalize(3), votequorum_fd_get(3), votequorum_dispatch(3), corosync Man Page 2009-01-26 VOTEQUORUM_GETINFO(3)