Exhibit HH
UNITED STATES DISTRICT COURT FOR THE DISTRICT OF MARYLAND
STATE OF MARYLAND, ET AL., Plaintiffs, v.
Exhibit HH
UNITED STATES DISTRICT COURT FOR THE DISTRICT OF MARYLAND
STATE OF MARYLAND, ET AL., Plaintiffs, v.
EXHIBIT J
IN THE UNITED STATES DISTRICT COURT FOR THE DISTRICT OF MARYLAND NORTHERN DIVISION
AMERICAN FEDERATION OF STATE, COUNTY AND MUNICIPAL EMPLOYEES,
Name | City | State | Square Footage | |
---|---|---|---|---|
11 W QUINCY COURT | CHICAGO | IL | 106606 | |
1202 BUILDING | SEATTLE | WA | 181195 | |
12021 BUILDING | SEATTLE | WA | 0 | |
122 W 3RD ST BUILDING | GREENSBURG | PA | 8962 | |
18 W. JACKSON | CHICAGO | IL | 9506 | |
1801 N. LYNN ST. | ARLINGTON | VA | 364917 | |
22ND & STOUT ST SURFACE PARKING LOT | DENVER | CO | 0 | |
230 S. STATE ST. | CHICAGO | IL | 25250 | |
2306 E. BANNISTER ROAD | KANSAS CITY | MO | 405607 |
<dash-e-card> | |
<dash-e-icon> | |
<img src="https://ha.spdustin.com/local/dash-e-card/svg-filled/clear-day.svg"> | |
</dash-e-icon> | |
<dash-e-temp> | |
70º | |
</dash-e-temp> | |
<dash-e-warnings> | |
</dash-e-warnings> | |
<dash-e-clock> |
A Pen by Dustin Miller on CodePen.
trump = load_tweets_from_mongodb(dbname='TrumpTweets') | |
obama = load_tweets_from_mongodb(dbname='ObamaTweets') |
def load_tweets_from_mongodb(dbname, collection='tweet'): | |
df = odo('mongodb://localhost/{}::{}'.format(dbname, collection), | |
pd.DataFrame) | |
df.drop(['user_id', 'usernameTweet', 'url'], axis=1, inplace=True) | |
df = df.replace(0, np.NAN) | |
df.dropna(how='any', inplace=True) | |
df['reply_to_retweet_ratio'] = np.divide(df['nbr_reply'], | |
df['nbr_retweet']) | |
df['reply_to_like_ratio'] = np.divide(df['nbr_reply'], | |
df['nbr_favorite']) |
FROM TWEETS STARTING HERE: HTTPS://TWITTER.COM/RRRRNESSA/STATUS/667019978550317056
I am going to tell you guys the process of how I became an refugee admitted to the United States of American and how long it actually is. But I'd like you to keep in mind that the process to admit Syrian refugees to the U.S.A is even more complex.
Okay so first things first you apply for refugee status with a U.N agency. The application process isn't just a piece of paper. You have to submit ALL your documents. Birth certificates, report cards from school, IDs, driver licenses, passports, old utility bills. If you're displaced, you have to provide proof that you are displaced. That your house was bombed/burned or that there are squatters in it.
You have to write down your story. All your family members do. Where you were born, where you are now, what you're doing, everything.
You have to provide them with names of ALL your family members, dead and alive. All your friends, neighbors, teachers. Everyone. You have to provide t
I hereby claim:
To claim this, I am signing this object:
/** | |
* Note: This example is _purposefully verbose_, for ease of reading. | |
* | |
* In an ideal world, your generic function would return the list items, and | |
* another function would actually be enqueued in the SOD call that calls | |
* (in IE9) just Array.forEach() through them for one-by-one processing, | |
* for example. Hope this helps! | |
*/ | |
// This function will console.log items from the list you specify in the |