Skip to content

Instantly share code, notes, and snippets.

@jhannah
Last active January 28, 2023 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhannah/4659532da44743a01a6926ce914efb61 to your computer and use it in GitHub Desktop.
Save jhannah/4659532da44743a01a6926ce914efb61 to your computer and use it in GitHub Desktop.
Nebraska Bills Introduced after Jan 25th
Repo / HOWTO: https://github.com/jhannah/legislature_calendar/tree/main/experiments/CSV_dumps
So here are all the Nebraska Bills (LB)
NOT Resolutions (LR)
NOT Appropriation Bills (LB#####A)
introduced after Jan 25th of any year
sqlite> select h.date, b.bill_number, b.title, b.state_link
from bills b, history h
where b.bill_id = h.bill_id
and h.action = "Date of introduction"
and substr(b.bill_number, 1, 2) = 'LB'
and substr(b.bill_number, -1, 1) != 'A'
and substr(h.date, 6, 5) > '01-25';
2020-07-23|LB1222|Adopt the Municipal Police Oversight Act|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=42917
2021-09-13|LB6|Set boundaries of Supreme Court judicial districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46674
2021-09-13|LB2|Set district boundaries of the Representatives in the Congress of the United States|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46676
2021-09-13|LB4|Set boundaries of legislative districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46678
2021-09-13|LB11|Set boundaries of legislative districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46683
2021-09-13|LB3|Set boundaries of legislative districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46677
2021-09-13|LB10|Set boundaries of legislative districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46695
2021-09-13|LB5|Set boundaries of public service commissioner districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46671
2021-09-13|LB13|Set boundaries of legislative districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46698
2021-09-13|LB8|Set district boundaries for members of the Board of Regents of the University of Nebraska|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46672
2021-09-13|LB12|Change the number of members of the Legislature|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46670
2021-09-13|LB9|Set district boundaries of the Representatives in the Congress of the United States|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46696
2021-09-13|LB14|Appropriate funds for special session expenses|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46667
2021-09-13|LB1|Set district boundaries of the Representatives in the Congress of the United States|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46675
2021-09-13|LB7|Set boundaries of State Board of Education districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46673
2021-09-15|LB15|Provide for counting Nebraska residents in Nebraska prisons for redistricting purposes|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=46687
2011-04-26|LB699|Change boundaries of Supreme Court judicial districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=14480
2011-05-05|LB704|Change boundaries of the Representatives in the Congress of the United States districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=14476
2011-05-05|LB702|Change boundaries of State Board of Education districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=14478
2011-05-05|LB703|Change boundaries of legislative districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=14237
2011-05-05|LB700|Change boundaries of public service commissioner districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=14479
2011-05-05|LB701|Change boundaries of Board of Regents of the University of Nebraska districts|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=14477
2015-05-07|LB664|Provide duties for the Nebraska Oil and Gas Conservation Commission relating to disposal of wastewater|https://nebraskalegislature.gov/bills/view_bill.php?DocumentID=27386
2021 was a "Special Session," so those are known exceptions.
And the rest were introduced because the Governor said so? Or other exceptions?
✗ ls -1 NE
2009-2010_101st_Legislature
2011-2012_102nd_Legislature
2013-2014_103rd_Legislature
2015-2016_104th_Legislature
2017-2018_105th_Legislature
2019-2020_106th_Legislature
2021-2021_107th_Legislature_1st_Special_Session
2021-2022_107th_Legislature
2023-2024_108th_Legislature
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment