CONFIRMATION #H4YWHZ
- MSP -> FCA (Kalispell)
- Delta 2393
- 9:58p MSP -> 11:46p FCA
def dump_arrests(qset): | |
header = [ | |
'name', | |
'dob', | |
'address', | |
'transient', | |
'sex', | |
'race', | |
'agency', | |
'booking_county', |
""" | |
this tests a local instance of hmda explorer running at localhost:8000" | |
""" | |
import re | |
import datetime | |
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
driver = webdriver.Chrome() |
from __future__ import unicode_literals | |
import re | |
from regulations3k.models import Part, Section | |
from regulations3k.scripts.ecfr_importer import LEGACY_PARTS | |
REG_BASE = '/policy-compliance/rulemaking/regulations/{}/' | |
SECTION_RE = re.compile('(?:\N{SECTION SIGN}|Section|12 CFR)\W+([^\s]+)') | |
PARTS_RE = re.compile( | |
r'(?P<part>\d{4})[.-](?P<section>[0-9A-Z]+)(?P<ids>\([a-zA-Z0-9)(]+)?') |
import datetime | |
from dateutil import parser | |
def current_age(birth_date): | |
"""Return current age for a string or datetime.date birth date.""" | |
if isinstance(birth_date, datetime.date): | |
dob = birth_date | |
else: |
Original page | Link on page | 301 | 404 |
---|---|---|---|
/about-us/newsroom/consumer-financial-protection-bureau-to-oversee-debt-collectors-2/ | /askcfpb/search?selected_facets=category_exact:Debt%20Collection | /askcfpb/search/?selected_facets=category_exact:Debt%20Collection | /ask-cfpb/category-Debt Collection/ |
/about-us/blog/understanding-reverse-mortgages/ | /askcfpb/search?selected_facets=category_exact:Mortgages&selected_facets=tag_exact:reverse%20mortgage | /askcfpb/search/?selected_facets=category_exact:Mortgages&selected_facets=tag_exact:reverse%20mortgage | /ask-cfpb/category-Mortgages/ |
/about-us/newsroom/consumer-financial-protection-bureau-report-finds-confusion-in-reverse-mortgage-market/ | /askcfpb/search?selected_facets=category_exact:Mortgages&selected_facets=tag_exact:reverse%20mortgage | /askcfpb/search/?selected_facets=category_exact:Mortgages&selected_facets=tag_exact:reverse%20mortgage | /ask-cfpb/category-Mortgages/ |
/about-us/newsroom/consumer-financial-protecti |
May 31, 2021
It has been more than a year since I started tracking cases and deaths in our respective counties on March 21, 2020.
Rochelle's Eagle County jumped way ahead of us all in March 2020, with an explosion of skier cases. Case and death counts per capita were among the most dramatic in the nation. Thankfully, Eagle County settled down, cases leveled off and deaths went practically flat. Now Rochelle's county is the lowest among all our counties for deaths per thousand.
John Prine kept a bungalow near the water in Gulfport, FL, a bohemian beach town next to St. Petersburg.
On Monday, when things didn't look good for Prine, the mayor of Gulfport asked people to come out on their porches at 6 p.m. and sing their favorite Prine song. The Tampa Bay Times, which is now printing papers only two days a week thanks to the pandemic, sent a photographer to shoot video of the porches.
https://www.tampabay.com/narratives/2020/04/07/in-gulfport-a-brief-but-loving-tribute-to-john-prine/
I used a paying_for_college query of notifications as a test of where to use an order_by
clause.
We have 193K notifications, unorderd by default. 179K of them have '1' in their oid
field.
from paying_for_college.models import Notification
nosort = Notification.objects.filter(oid__contains='1')
first = Notification.objects.order_by('timestamp').filter(oid__contains='1')
last = Notification.objects.filter(oid__contains='1').order_by('timestamp')