text
stringlengths
14
5.22M
meta
dict
__index_level_0__
int64
0
9.97k
input_ids
listlengths
128
128
attention_mask
listlengths
128
128
labels
listlengths
128
128
Q: Selecting a specific User Certificate on a given URL Below is the sample code which am making use of , upon access of this url am shown a dialog box with the list of user certificates available, here, from the table any one of the user certificates should be selected after that click OK , which takes you to the landing page. The following is already tried, Handle Alert, Get Window handles and even iframe i.e Select ifarme, after spending few hours it became evident that the issue is as described below. Issue What is happening here is that the Open Browser line in the below code is not getting completed until i make the appropriate user certificate selection, hence, HELLO1 or any other code is not executed until i make the selection. Which means that either i need to pass a parameter at the time of URL request itself to make that selection or ?? Does robot framework / selenium support any other way to get the user certificate selected OR using javascript in robot framework. *** Settings *** Documentation OAM OAuth TestSuite Library SeleniumLibrary Library String Library Process Library Collections Library json *** Variables *** ${waittime}= 10s *** Test Cases *** SELECT USER CERTIFICATE [Tags] aminhell [Documentation] sample ${ID}= Open Browser http://wren22uiy.us.iyio.com:8879/odd.html Chrome options=add_argument("--ignore-certificate-errors") Select Frame Select a Certificate LOG TO CONSOLE HELLO1 ${message} = Get Window handles LOG TO CONSOLE HELLO2 LOG TO CONSOLE ${message} A: After having done a research in this topic, it seems that there is no easy way to solve this situation: * *The Chrome is not easily manageable by AutoIT Library *The "Open Browser" or any keyword is stuck while the certificate is not selected I found an "infrastructure" workaround that I would like to share with you consisting on using a proxy that will select the certificate for you. You can install the Nginx and configure make it select the certificate for you, and then test the website directly by HTTP. The nginx.conf I used: worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 0; ssl_session_cache off; proxy_ssl_session_reuse off; server { listen 8335; server_name localhost; location / { proxy_pass https://localhost:8443/; proxy_ssl_verify off; proxy_ssl_certificate keys/A123456.crt.pem; proxy_ssl_certificate_key keys/A123456.key.pem; proxy_ssl_session_reuse off; } } server { listen 8336; server_name localhost; location / { proxy_pass https://localhost:8443/; proxy_ssl_verify off; proxy_ssl_certificate keys/B123457.crt.pem; proxy_ssl_certificate_key keys/B123457.key.pem; proxy_ssl_session_reuse off; } } } HINT: If you use P12 as certificate/key file, it is possible to extract certificate and key by using the following openssl commands: openssl pkcs12 -in filename.p12 -nocerts -nodes -out filename.key.pem openssl pkcs12 -in filename.p12 -clcerts -nokeys -out filename.crt.pem The RF test cases: TESTCASE001 - Certificate for A123456 [Teardown] Close All Browsers Open Browser http://localhost:8335/myapp Chrome Page Should Contain A123456 TESTCASE002 - Certificate for B123457 [Teardown] Close All Browsers Open Browser http://localhost:8336/myapp Chrome Page Should Contain B123457
{ "redpajama_set_name": "RedPajamaStackExchange" }
3,455
[ 128000, 48, 25, 8593, 287, 264, 3230, 2724, 32502, 389, 264, 2728, 5665, 21883, 374, 279, 6205, 2082, 902, 1097, 3339, 1005, 315, 1174, 5304, 2680, 315, 420, 2576, 1097, 6982, 264, 7402, 3830, 449, 279, 1160, 315, 1217, 35537, 2561, 11, 1618, 11, 505, 279, 2007, 904, 832, 315, 279, 1217, 35537, 1288, 387, 4183, 1306, 430, 4299, 10619, 1174, 902, 5097, 499, 311, 279, 20948, 2199, 627, 791, 2768, 374, 2736, 6818, 11, 14078, 14302, 11, 2175, 13956, 13777, 323, 1524, 49513, 602, 1770, 8593, 422, 74960, 11, 1306, 10374, 2478, 4207, 433, 6244, 30576, 430, 279, 4360, 374, 439, 7633, 3770, 382, 43106, 198, 3923, 374, 12765, 1618, 374, 430, 279, 5377, 16889, 1584, 304, 279, 3770, 2082, 374, 539, 3794, 8308, 3156, 602, 1304 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 48, 25, 8593, 287, 264, 3230, 2724, 32502, 389, 264, 2728, 5665, 21883, 374, 279, 6205, 2082, 902, 1097, 3339, 1005, 315, 1174, 5304, 2680, 315, 420, 2576, 1097, 6982, 264, 7402, 3830, 449, 279, 1160, 315, 1217, 35537, 2561, 11, 1618, 11, 505, 279, 2007, 904, 832, 315, 279, 1217, 35537, 1288, 387, 4183, 1306, 430, 4299, 10619, 1174, 902, 5097, 499, 311, 279, 20948, 2199, 627, 791, 2768, 374, 2736, 6818, 11, 14078, 14302, 11, 2175, 13956, 13777, 323, 1524, 49513, 602, 1770, 8593, 422, 74960, 11, 1306, 10374, 2478, 4207, 433, 6244, 30576, 430, 279, 4360, 374, 439, 7633, 3770, 382, 43106, 198, 3923, 374, 12765, 1618, 374, 430, 279, 5377, 16889, 1584, 304, 279, 3770, 2082, 374, 539, 3794, 8308, 3156, 602, 1304, -100 ]
Bad year looming for Giants unless defense improves quickly by: Associated Press AP Photo/Michael Ainsworth EAST RUTHERFORD, N.J. (AP) — The New York Giants are in trouble again, and it has nothing to do with either of the quarterbacks or the offense. The defense was horrible in an opening loss to Dallas. Coordinator James Bettcher's unit will have to improve dramatically and quickly after a 35-17 road loss to the defending NFC East champion Cowboys. If not, this is shaping up to be a third straight season out of the playoffs, and a seventh in eight years. For sure, these are only quick thoughts after the first game of the schedule. However, things have to improve for co-owner John Mara not to make changes after this season. The Giants offered little resistance to Dak Prescott and company, thanks in large part to missed tackles, blown coverages, lack of coverage, no pass rush and inexperience. New York started six players on defense 25 years old or less, and nine 28 or younger. "My confidence has not been shaken," linebacker and defensive captain Alex Ogletree said Monday. "We have a great defense. It's just a matter of us doing it, and doing it on Sunday." Coach Pat Shurmur said the key heading into Sunday's home opener against the Bills (1-0) will be showing players where they can be better. "Everything there is correctable," Shurmur said. "We need to just get back to work. I think there were some good things in the game, but those are obviously overshadowed by the things that contributed to the loss." The offense didn't help enough despite gaining moving the ball effectively. "It's not about the defense, it's both sides doing their job," quarterback Eli Manning said Monday after a good debut to his record 16th season with the Giants. "Sometimes you have those high-scoring games, we have to do our part to match. We had the opportunities. That's the unfortunate part." The offense showed a lot, gaining 470 yards. Manning threw for 306 yards, no interceptions and a touchdown. NFL Offensive Rookie of the Year Saquon Barkley gained 120 yards on 11 carries to kick off his second season. Tight end Evan Engram had career highs of 11 catches for 116 yards, and scored a touchdown. The negative was 2 for 11 on third-down attempts and couldn't keep up against a high-powered Dallas offense. WHAT NEEDS HELP After drafting DeAndre Baker late in the first round, the Giants touted the Georgia cornerback as a great coverage guy who would give the team two shutdown players at the position, along with veteran Janoris Jenkins. Baker looked lost in his first game, giving up an early big play to Michael Gallup on a sideline go route, and a 21-yard touchdown to Amari Cooper in the third quarter. On both plays he trailed the receiver. The revamped offensive line, which added Kevin Zeitler at guard and Mike Remmers at tackle on the right side, was good. Manning was sacked once after being dumped 47 times last season. The running game gained 151 yards on 17 carries, an 8.9 yard average. Let's continue picking on the rookies. Defensive tackle Dexter Lawrence II was the 17th pick overall in the draft and many felt he would give the defense a run stopper and a pass rush. Dallas was limited to 89 yards rushing on 30 carries, but the 21 year old from Clemson was invisible most of the game. He had one assisted tackle — that's it. Not a good start. Zeitler hurt a shoulder but Shurmur does not think he will miss much time, if any. Receiver Sterling Shepard, who had six catches for 42 yards, sustained a concussion. Linebacker Kareem Martin sprained a knee and his status is uncertain. 158.3 — Dak Prescott threw for 405 yards, four touchdowns, no interceptions and was not sacked in posting a perfect 158.3 passing rating against the Giants. It was the second straight game he threw four TDs against New York, and his yardage was the highest total by an opponent since the Saints' Drew Brees threw for 505 yards on Nov. 1, 2015. The Giants need to turn this around quickly. Bad starts have been the norm the past two seasons. They started 0-5 in 2017 en route to a 3-13 mark, and 1-7 last year under Shurmur in going 5-11. If they are going to do anything this season, they need a dose of quick confidence injected by a win over the Bills. More NY Giants Blitz Stories Giants finish second in NFC East; 2021 opponents set by Jonas Miller / Jan 4, 2021 ALBANY, N.Y. (NEWS10) -- The New York Giants' season ended last night when the Washington Football Team defeated the Philadelphia Eagles. The team had 6-10 record in their first season under Head Coach Joe Judge. The Giants' full 2021 schedule won't be released until the spring, but the slate of teams they'll face has been finalized. They are listed below along with their 2020 regular-season record. NY Blitz Digital Huddle: Week 17 by Jared Phillips / Dec 31, 2020 Albany, N.Y. (NEWS10) — Jared Phillips is joined by Liana Bonavita for this week's Digital Huddle to discuss the Giants' fading defense, where the offense can find a spark, and what the Giants need to do to be able to pull out a win over Dallas this weekend. NY Blitz Gridiron Update: Week 17 Albany, N.Y. (NEWS10) — There's one playoff scenario for the Giants this weekend and it's pretty simple: beat the Cowboys Sunday afternoon, then watch the Eagles beat Washington Sunday night. That first step is much easier said than done.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,382
[ 128000, 17519, 1060, 65564, 369, 30835, 7389, 9232, 36050, 6288, 198, 1729, 25, 26475, 8612, 198, 2599, 11064, 10482, 60808, 362, 1354, 20069, 198, 36, 6483, 432, 1406, 3087, 37, 4373, 11, 452, 3587, 13, 320, 2599, 8, 2001, 578, 1561, 4356, 30835, 527, 304, 12544, 1578, 11, 323, 433, 706, 4400, 311, 656, 449, 3060, 315, 279, 61591, 477, 279, 17193, 13, 578, 9232, 574, 28201, 304, 459, 8736, 4814, 311, 19051, 627, 65404, 7957, 68688, 9211, 596, 5089, 690, 617, 311, 7417, 29057, 323, 6288, 1306, 264, 220, 1758, 12, 1114, 5754, 4814, 311, 279, 29269, 48305, 6460, 18824, 41405, 627, 2746, 539, 11, 420, 374, 46620, 709, 311, 387, 264, 4948, 7833, 3280, 704, 315, 279, 31855, 11, 323, 264, 31487, 304, 8223, 1667, 627 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 17519, 1060, 65564, 369, 30835, 7389, 9232, 36050, 6288, 198, 1729, 25, 26475, 8612, 198, 2599, 11064, 10482, 60808, 362, 1354, 20069, 198, 36, 6483, 432, 1406, 3087, 37, 4373, 11, 452, 3587, 13, 320, 2599, 8, 2001, 578, 1561, 4356, 30835, 527, 304, 12544, 1578, 11, 323, 433, 706, 4400, 311, 656, 449, 3060, 315, 279, 61591, 477, 279, 17193, 13, 578, 9232, 574, 28201, 304, 459, 8736, 4814, 311, 19051, 627, 65404, 7957, 68688, 9211, 596, 5089, 690, 617, 311, 7417, 29057, 323, 6288, 1306, 264, 220, 1758, 12, 1114, 5754, 4814, 311, 279, 29269, 48305, 6460, 18824, 41405, 627, 2746, 539, 11, 420, 374, 46620, 709, 311, 387, 264, 4948, 7833, 3280, 704, 315, 279, 31855, 11, 323, 264, 31487, 304, 8223, 1667, 627, -100 ]
Saturday, January, 18, 2020 Stable on home turf, Rajasthan CM Ashok Gehlot attacks RSS, BJP and PM Modi While addressing the special assembly session on Friday convened to discuss the constitution, Gehlot said, 'RSS's dominance in all areas is increasing.' Published: 30th November 2019 11:26 PM | Last Updated: 30th November 2019 11:27 PM | A+A A- Rajasthan CM Ashok Gehlot (Photo | PTI) By Rajesh Asnani After stabilizing the internal tussle within State Congress, Rajasthan CM Ashok Gehlot has now increased his attacks on RSS, BJP and PM Modi. In a scathing criticism of RSS, Gehlot said that RSS is working like an 'extra-Constitutional Authority' in the country and no one can become a Minister, Chief Minister nor Prime Minister, without their will. Gehlot is currently on a firm footing in the state after the merger of all BSP MLA's in Congress, the results of the by-elections and local body elections has made him politically stronger. Sources within congress say that's the reason he is seen in increasingly aggressive mode. While addressing the special assembly session on Friday convened to discuss the constitution, Gehlot said, "RSS's dominance in all areas is increasing. During the Emergency, Sanjay Gandhi was accused of acting as an' Extra Constitutional Authority 'in the country. Whether he used to do it or not, everyone knows, but today the RSS is working as an 'Extra Constitutional Authority' in the country. No one can get any position without their will." Gehlot dared RSS to convert into a political party and come out in the open. "My advice to the RSS is that they should convert themselves into a political party. At some point you may have given in writing that you will not enter politics, that was a different matter. Now you are ruling the country, you should give in writing that the RSS is the government, irrespective of the name of the BJP", he added. Political experts believe that Gehlot is in a stronger position in Congress in the ongoing internal tussle between him and his deputy CM, Sachin Pilot. This is due to the Congress winning 1 seat in the by-election and further, with an impressive victory in 23 of the 49 urban civic bodies in Rajasthan have made him stronger. All of this has led to Gehlot increasing political attacks on RSS , BJP and Modi with High Command's support with him. Sources within congress say that Gehlot has ruffled PM Modi too and is one of the only people who continue to attack him, after Rahul Gandhi stepping down from the Congress President's post and former Finance minister Chidambaram's arrest. Gehlot was also the election in-charge of Gujarat and had almost won Congress the elections. He also played a key role in Ahmed Patel getting elected in Rajya Sabha from Gujarat. PM Modi had also put all his might in defeating Gehlot's son in Jodhpur and was heard in a rally saying, " we have heard that the CM is close to the Gandhi family." "Rajasthan and Gujarat are neighbouring states and recently Gehlot had said that Gujarat is a hub for liquor which had prompted a response from the Gujarat CM , Vijay Rupani, as well. Recently Congress High Command trusted Gehlot when the MLAs from Maharashtra were sent to Jaipur to save them from poaching and Gehlot was also instrumental in sending former PM, Manmohan Singh, to Rajya Sabha from Rajasthan. Currently, he is also focusing on Nehru-Gandhi and Indira in many of the welfare schemes in the state", said one of Gehlot's close associate. This confidence led him to state in the Rajasthan Assembly on Friday, "The people of the entire state embraced me openly, so I became the Chief Minister for the third time. Even BJP workers used to say that Ashok Gehlot should be the CM ." But BJP says that while Gehlot is attacking their party, it is Sachin pilot who is the real target. "People have not openly supported Congress. The Congress government has been formed in Rajasthan with a small difference of votes, everyone knows that Gehlot is actually targeting BJP to bring down Sachin Pilot", BJP State spokesperson, Mukesh Pareek said. Ashok Gehlot Rajasthan RSS BJP Section 144 imposed in Jammu and Kashmir's Kishtwar concerning various issues Sourav Ganguly refuses to comment on MS Dhoni omission from BCCI contracts Non-BJP-ruled states raise objections to NPR methodology at MHA-convened meet Polls to nearly 13,000 gram panchayats in Jammu and Kashmir likely to be held in February Sanjay Raut should not have made comment about Indira Gandhi: NCP leader Sharad Pawar Complaint against Rajinikanth for defaming Periyar BJP is trying to make India a Hindi-speaking Hindu nation: DMK leader Kanimozhi
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
9,195
[ 128000, 34774, 11, 6186, 11, 220, 972, 11, 220, 2366, 15, 198, 626, 481, 389, 2162, 60090, 11, 87440, 18582, 14937, 564, 74680, 9363, 8951, 30374, 11, 41167, 323, 5975, 35489, 198, 8142, 28118, 279, 3361, 14956, 3882, 389, 6740, 95898, 311, 4358, 279, 16812, 11, 74680, 9363, 1071, 11, 364, 70080, 596, 44592, 304, 682, 5789, 374, 7859, 24314, 29986, 25, 220, 966, 339, 6841, 220, 679, 24, 220, 806, 25, 1627, 5975, 765, 8155, 16459, 25, 220, 966, 339, 6841, 220, 679, 24, 220, 806, 25, 1544, 5975, 765, 362, 93580, 362, 7058, 49, 1662, 72649, 18582, 14937, 564, 74680, 9363, 320, 10682, 765, 19932, 40, 340, 1383, 26291, 4385, 1666, 77, 5676, 198, 6153, 27276, 4954, 279, 5419, 259, 1892, 273, 2949, 3314, 8151, 11 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 34774, 11, 6186, 11, 220, 972, 11, 220, 2366, 15, 198, 626, 481, 389, 2162, 60090, 11, 87440, 18582, 14937, 564, 74680, 9363, 8951, 30374, 11, 41167, 323, 5975, 35489, 198, 8142, 28118, 279, 3361, 14956, 3882, 389, 6740, 95898, 311, 4358, 279, 16812, 11, 74680, 9363, 1071, 11, 364, 70080, 596, 44592, 304, 682, 5789, 374, 7859, 24314, 29986, 25, 220, 966, 339, 6841, 220, 679, 24, 220, 806, 25, 1627, 5975, 765, 8155, 16459, 25, 220, 966, 339, 6841, 220, 679, 24, 220, 806, 25, 1544, 5975, 765, 362, 93580, 362, 7058, 49, 1662, 72649, 18582, 14937, 564, 74680, 9363, 320, 10682, 765, 19932, 40, 340, 1383, 26291, 4385, 1666, 77, 5676, 198, 6153, 27276, 4954, 279, 5419, 259, 1892, 273, 2949, 3314, 8151, 11, -100 ]
package com.phaseii.rxm.roomies.database.dao; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.net.Uri; import com.phaseii.rxm.roomies.database.contract.RoomiesContract; import com.phaseii.rxm.roomies.database.model.RoomiesModel; import com.phaseii.rxm.roomies.database.model.UserDetails; import com.phaseii.rxm.roomies.database.provider.UserDetailsProvider; import com.phaseii.rxm.roomies.utils.QueryParam; import com.phaseii.rxm.roomies.utils.ServiceParam; import java.util.ArrayList; import java.util.List; import java.util.Map; import static android.provider.BaseColumns._ID; import static com.phaseii.rxm.roomies.database.contract.RoomiesContract.UserDetails.USER_SENDER_ID; import static com.phaseii.rxm.roomies.database.contract.RoomiesContract.UserDetails.USER_USERNAME; import static com.phaseii.rxm.roomies.database.contract.RoomiesContract.UserDetails.USER_USER_ALIAS; import static com.phaseii.rxm.roomies.utils.RoomiesHelper.listToProjection; /** * Created by Snehankur on 6/29/2015. */ public class UserDetailsDaoImpl implements RoomiesDao { private Context mContext; private String[] projection; private String selection; private String[] selectionArgs; private String sortOrder; private UserDetails user; private ContentValues values; private Uri userDetailsUri; public UserDetailsDaoImpl(Context mContext) { this.mContext = mContext; } @Override public List<? extends RoomiesModel> getDetails(Map<ServiceParam, ?> queryMap) { List<QueryParam> projectionList = (List<QueryParam>) queryMap.get(ServiceParam.PROJECTION); List<QueryParam> selectionList = (List<QueryParam>) queryMap.get(ServiceParam.SELECTION); List<String> selectionArgsList = (List<String>) queryMap.get(ServiceParam.SELECTION_ARGS); String sortOrder = (String) queryMap.get(ServiceParam.SORT_ORDER); String[] projection = listToProjection(projectionList); selection = null; selectionArgs = null; if (null != selectionList && selectionList.size() > 0) { for (QueryParam select : selectionList) { if (null == selection) { selection = select.toString() + "=?"; } else { selection = selection + " AND " + select.toString() + "=?"; } } } if (null != selectionArgsList && null != selection && selectionArgsList.size() > 0) { selectionArgs = new String[selectionArgsList.size()]; selectionArgsList.toArray(selectionArgs); } String queryArg = null; Map<QueryParam, String> queryParams = (Map<QueryParam, String>) queryMap.get (ServiceParam.QUERY_ARGS); if (null != queryParams && queryParams.size() > 0) { for (QueryParam param : queryParams.keySet()) { if (param.equals(QueryParam.USER_ID)) { queryArg = "month/" + queryParams.get(param); } else if (param.equals(QueryParam.USER_ALIAS)) { queryArg = "room/" + queryParams.get(param); } else if (param.equals(QueryParam.SENDER_ID)) { queryArg = "room/" + queryParams.get(param); } } } if (null != queryArg) { userDetailsUri = Uri.withAppendedPath(UserDetailsProvider.CONTENT_URI, queryArg); } else { userDetailsUri = UserDetailsProvider.CONTENT_URI; } Cursor cursor = null; List<UserDetails> userDetailsList = new ArrayList<>(); try { cursor = mContext.getContentResolver().query(userDetailsUri, projection, selection, selectionArgs, sortOrder); if (null != cursor) { cursor.moveToFirst(); while (!cursor.isAfterLast()) { UserDetails user = new UserDetails(); user.setUserId(cursor.getColumnIndex(_ID) >= 0 ? cursor.getInt(cursor .getColumnIndex(_ID)) : -1); user.setUsername(cursor.getColumnIndex(USER_USERNAME) >= 0 ? cursor.getString (cursor.getColumnIndex(USER_USERNAME)) : null); user.setUserAlias( cursor.getColumnIndex(USER_USER_ALIAS) >= 0 ? cursor.getString(cursor .getColumnIndex(USER_USER_ALIAS)) : null); user.setSenderId(cursor.getColumnIndex(USER_SENDER_ID) >= 0 ? cursor.getString(cursor.getColumnIndex(USER_SENDER_ID)) : null); userDetailsList.add(user); cursor.moveToNext(); } } } finally { if (null != cursor && !cursor.isClosed()) { cursor.close(); } } return userDetailsList; } @Override public int insertDetails(Map<ServiceParam, ? extends RoomiesModel> detailsMap) { user = (UserDetails) detailsMap.get(ServiceParam.MODEL); int row = 0; values = new ContentValues(); values.put(RoomiesContract.UserDetails.USER_USERNAME, null != user.getUsername() ? user .getUsername() : null); values.put(RoomiesContract.UserDetails.USER_USER_ALIAS, null != user.getUserAlias() ? user.getUserAlias() : null); values.put(RoomiesContract.UserDetails.USER_SENDER_ID, null != user.getSenderId() ? user .getSenderId() : null); Uri resultUri = mContext.getContentResolver().insert(UserDetailsProvider.CONTENT_URI, values); row = Integer.parseInt(resultUri.getLastPathSegment()); return row; } /** * * @param detailsMap * @return */ @Override public int deleteDetails(Map<ServiceParam, ?> detailsMap) { return 0; } @Override public int updateDetails(Map<ServiceParam, ?> detailsMap) { prepareStatement(detailsMap); int rowsUpdated = mContext.getContentResolver().update(UserDetailsProvider.CONTENT_URI, values, selection, selectionArgs); return rowsUpdated; } public void prepareStatement(Map<ServiceParam, ?> detailsMap) { List<QueryParam> selectionList = (List<QueryParam>) detailsMap.get(ServiceParam.SELECTION); List<String> selectionArgsList = (List<String>) detailsMap.get(ServiceParam.SELECTION_ARGS); if (null != selectionList && selectionList.size() > 0) { selection = null; for (QueryParam select : selectionList) { if (null == selection) { selection = select.toString() + "=?"; } else { selection = selection + " AND " + select.toString() + "=?"; } } } if (null != selectionArgsList && null != selection && selectionArgsList.size() > 0) { selectionArgs = new String[selectionArgsList.size()]; selectionArgsList.toArray(selectionArgs); } if (null != detailsMap.get(ServiceParam.MODEL)) { values = new ContentValues(); user = (UserDetails) detailsMap.get(ServiceParam.MODEL); if (null != user.getUsername()) { values.put(RoomiesContract.UserDetails.USER_USERNAME, user.getUsername()); } if (null != user.getUserAlias()) { values.put(RoomiesContract.UserDetails.USER_USER_ALIAS, user.getUserAlias()); } if (null != user.getSenderId()) { values.put(RoomiesContract.UserDetails.USER_SENDER_ID, user.getSenderId()); } if (null != user.getPhone()) { values.put(RoomiesContract.UserDetails.USER_PHONE, user.getPhone()); } if (null != user.getLocation()) { values.put(RoomiesContract.UserDetails.USER_LOCATION, user.getLocation()); } if (null != user.getAboutMe()) { values.put(RoomiesContract.UserDetails.USER_ABOUT_ME, user.getAboutMe()); } } } }
{ "redpajama_set_name": "RedPajamaGithub" }
5,990
[ 128000, 271, 1757, 470, 65549, 3893, 46448, 76, 22788, 552, 15412, 16289, 401, 475, 2151, 5521, 12900, 6359, 280, 475, 2151, 5521, 9512, 280, 475, 2151, 15412, 31029, 280, 475, 2151, 5181, 36877, 401, 475, 470, 65549, 3893, 46448, 76, 22788, 552, 15412, 52735, 56585, 552, 14396, 280, 475, 470, 65549, 3893, 46448, 76, 22788, 552, 15412, 3272, 56585, 552, 1747, 280, 475, 470, 65549, 3893, 46448, 76, 22788, 552, 15412, 3272, 7494, 7955, 280, 475, 470, 65549, 3893, 46448, 76, 22788, 552, 15412, 29406, 7494, 7955, 5290, 280, 475, 470, 65549, 3893, 46448, 76, 22788, 552, 8576, 16060, 2044, 280, 475, 470, 65549, 3893, 46448, 76, 22788, 552, 8576, 14181, 2044, 401, 475, 1674, 2013, 11315, 280, 475, 1674, 2013, 5937, 280, 475, 1674, 2013, 10312, 401 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 271, 1757, 470, 65549, 3893, 46448, 76, 22788, 552, 15412, 16289, 401, 475, 2151, 5521, 12900, 6359, 280, 475, 2151, 5521, 9512, 280, 475, 2151, 15412, 31029, 280, 475, 2151, 5181, 36877, 401, 475, 470, 65549, 3893, 46448, 76, 22788, 552, 15412, 52735, 56585, 552, 14396, 280, 475, 470, 65549, 3893, 46448, 76, 22788, 552, 15412, 3272, 56585, 552, 1747, 280, 475, 470, 65549, 3893, 46448, 76, 22788, 552, 15412, 3272, 7494, 7955, 280, 475, 470, 65549, 3893, 46448, 76, 22788, 552, 15412, 29406, 7494, 7955, 5290, 280, 475, 470, 65549, 3893, 46448, 76, 22788, 552, 8576, 16060, 2044, 280, 475, 470, 65549, 3893, 46448, 76, 22788, 552, 8576, 14181, 2044, 401, 475, 1674, 2013, 11315, 280, 475, 1674, 2013, 5937, 280, 475, 1674, 2013, 10312, 401, -100 ]
James Hoff LP/DL New York based conceptual artist James Hoff returns to PAN with 'Blaster', a document of his explorations of computer viruses as agents within the composition process. Specifically, Hoff used the Blaster virus to infect 808 beats and then utilized the mutated results as building blocks for seven new compositions. Hoff's interest in computer viruses lies in their ability to self distribute through (and ultimately disrupt) networks of communication and Hoff's agency as an artist centers on placing these parasitic forms into pre-existing genres, such as dance music. BLASTER is a timely exploration of the infectious qualities of sound, and how it too, as a carrier, makes it's way through social networks, reduced to bits and programmed to infiltrate and replicate. "Viruses, like art, need a host. Preferably a popular one." Interested in ways in which the virus works could mutate and spread socially, the first side of 'Blaster' contains these sonic presentations, and the second houses all of the artist's infected samples and serves as a scratch record for DJ's, an object of utility, and ultimately a provoca- tion, mobilizing its new hosts as a point of potential transmission. Blaster is a logical progression from Hoff's PAN debut LP "How Wheeling Feels when the Ground Walks Away", which dealt with aural documents of riots and disruptions and the record is part of a larger body of work by the artist that also includes virus paintings. The LP is mastered and cut by Rashad Becker at D&M. The artwork was constructed using viral images from the artist and typography by Bill Kouligas.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,912
[ 128000, 29184, 43822, 198, 12852, 15302, 43, 198, 3648, 4356, 3196, 44901, 10255, 7957, 43822, 4780, 311, 73381, 449, 364, 5028, 2352, 518, 264, 2246, 315, 813, 48539, 811, 315, 6500, 42068, 439, 13307, 2949, 279, 18528, 1920, 13, 45863, 11, 43822, 1511, 279, 2563, 2352, 17188, 311, 34527, 220, 11770, 34427, 323, 1243, 34716, 279, 85922, 3135, 439, 4857, 10215, 369, 8254, 502, 62644, 627, 39, 1885, 596, 2802, 304, 6500, 42068, 15812, 304, 872, 5845, 311, 659, 16822, 1555, 320, 438, 13967, 24927, 8, 14488, 315, 10758, 323, 43822, 596, 9266, 439, 459, 10255, 19169, 389, 25012, 1521, 33403, 49086, 7739, 1139, 864, 50457, 36744, 11, 1778, 439, 15612, 4731, 13, 15195, 30751, 374, 264, 32100, 27501, 315, 279, 50600, 29600, 315, 5222, 11, 323, 1268 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 29184, 43822, 198, 12852, 15302, 43, 198, 3648, 4356, 3196, 44901, 10255, 7957, 43822, 4780, 311, 73381, 449, 364, 5028, 2352, 518, 264, 2246, 315, 813, 48539, 811, 315, 6500, 42068, 439, 13307, 2949, 279, 18528, 1920, 13, 45863, 11, 43822, 1511, 279, 2563, 2352, 17188, 311, 34527, 220, 11770, 34427, 323, 1243, 34716, 279, 85922, 3135, 439, 4857, 10215, 369, 8254, 502, 62644, 627, 39, 1885, 596, 2802, 304, 6500, 42068, 15812, 304, 872, 5845, 311, 659, 16822, 1555, 320, 438, 13967, 24927, 8, 14488, 315, 10758, 323, 43822, 596, 9266, 439, 459, 10255, 19169, 389, 25012, 1521, 33403, 49086, 7739, 1139, 864, 50457, 36744, 11, 1778, 439, 15612, 4731, 13, 15195, 30751, 374, 264, 32100, 27501, 315, 279, 50600, 29600, 315, 5222, 11, 323, 1268, -100 ]
Information & Tips about Ginger? With so many exciting lobster and crab dishes to look forward to, you'll be insane to give this a miss. In all honesty, this seafood broth is one of the best we have tried so far and it is the result of boiling lobsters, prawns, mussels and clams for hours.
{ "redpajama_set_name": "RedPajamaC4" }
621
[ 128000, 15218, 612, 26788, 922, 68394, 5380, 2409, 779, 1690, 13548, 80815, 323, 60512, 26863, 311, 1427, 4741, 311, 11, 499, 3358, 387, 35118, 311, 3041, 420, 264, 3194, 627, 644, 682, 48948, 11, 420, 53405, 45993, 374, 832, 315, 279, 1888, 584, 617, 6818, 779, 3117, 323, 433, 374, 279, 1121, 315, 50937, 41253, 12855, 11, 550, 41096, 11, 296, 32964, 323, 1206, 4214, 369, 4207, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 15218, 612, 26788, 922, 68394, 5380, 2409, 779, 1690, 13548, 80815, 323, 60512, 26863, 311, 1427, 4741, 311, 11, 499, 3358, 387, 35118, 311, 3041, 420, 264, 3194, 627, 644, 682, 48948, 11, 420, 53405, 45993, 374, 832, 315, 279, 1888, 584, 617, 6818, 779, 3117, 323, 433, 374, 279, 1121, 315, 50937, 41253, 12855, 11, 550, 41096, 11, 296, 32964, 323, 1206, 4214, 369, 4207, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Titanic Tales I saw an interesting drama-documentary recently on the Titanic, this April marking the ninety-seventy anniversary of its sinking. It would seem that, amongst other things, some of the rivets were faulty, made from poor quality iron, the heads of which sheered off under the strain of impact. The programme also touched on the pathology, so to speak, of the iceberg in question, which seemingly had been at sea for up to two years prior to the fatal impact. But I really wanted to focus on some of the mythology surrounding the disaster. I suppose it's to be expected that lots of people were said to have premonitions after the event, or subsequent significance was read into particular things. In 1898 Morgan Robertson, an American writer and psychic, published a novel entitled Futility, in which a gigantic liner called the Titan collides with an iceberg and sinks mid-Atlantic. One of the passengers on the Titanic, William Thomas Stead, a prominent English journalist, drowned in the sinking, was alleged to have secretly carried a mummy of an Egyptian priestess of Amon-Ra, on board, replete with curse on all. The mummy, so the story goes, appeared on deck at the moment the iceberg struck. In fact it never left the British Museum! But Stead himself had previously a short story in 1892, entitled From the Old World to the New, in which a liner picks up the survivors from another ship sunk by an iceberg. Another coincidence, of course, but the captain of his liner was called E. J. Smith, the same name as the captain of the Titanic. After the event premonition tales were manifold, stories of people intending to sail but deciding against on the basis of some foreboding. Among the best of these is that of Colin McDonald, the second engineer, who refused to sign on for the voyage because he-so it was claimed-knew something terrible was going to happen. A number of prospective passengers refused to sail for the same reason. One suspects that mundane reasons for not going required a retrospective justification; for, as always, the owl of Minerva only ever flies at dusk! Oh, and the band did not play 'Nearer, My God, to Thee' at the last but a jaunty ragtime dance. Now, if I were to face death that is exactly what I would want to hear. :-)) Labels: history, ship sinkings, titanic Our Girl in Havana! Osculum Infame, or Kiss my Devilish Arse! The Witches of Warboys A Queen for All Seasons The Voodoo Pantheon Reading Algernon Blackwood Asahara Lighthouses: a Mystery and a Tragedy A Forgotten Serial Killer Oh, How I Hate Feminism! Beards; a Cycle of Fashion Life and Art: My Thoughts on H. P. Lovecraft Highgate-the City of the Dead Hitler-the Making of an Anti-Semite No, I Will NEVER move to Revolutionary Road This is my First!
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
92
[ 128000, 95240, 292, 54955, 198, 40, 5602, 459, 7185, 20156, 83333, 661, 6051, 389, 279, 89862, 11, 420, 5936, 36024, 279, 78976, 7962, 688, 88, 22310, 315, 1202, 62193, 13, 1102, 1053, 2873, 430, 11, 24059, 1023, 2574, 11, 1063, 315, 279, 44229, 1441, 1051, 58671, 11, 1903, 505, 8009, 4367, 11245, 11, 279, 14971, 315, 902, 1364, 12616, 1022, 1234, 279, 26800, 315, 5536, 13, 578, 18629, 1101, 24891, 389, 279, 77041, 11, 779, 311, 6604, 11, 315, 279, 89135, 304, 3488, 11, 902, 23490, 1047, 1027, 520, 9581, 369, 709, 311, 1403, 1667, 4972, 311, 279, 19094, 5536, 627, 4071, 358, 2216, 4934, 311, 5357, 389, 1063, 315, 279, 59492, 14932, 279, 21426, 13, 358, 23289, 433, 596, 311, 387, 3685, 430, 10283, 315, 1274, 1051 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 95240, 292, 54955, 198, 40, 5602, 459, 7185, 20156, 83333, 661, 6051, 389, 279, 89862, 11, 420, 5936, 36024, 279, 78976, 7962, 688, 88, 22310, 315, 1202, 62193, 13, 1102, 1053, 2873, 430, 11, 24059, 1023, 2574, 11, 1063, 315, 279, 44229, 1441, 1051, 58671, 11, 1903, 505, 8009, 4367, 11245, 11, 279, 14971, 315, 902, 1364, 12616, 1022, 1234, 279, 26800, 315, 5536, 13, 578, 18629, 1101, 24891, 389, 279, 77041, 11, 779, 311, 6604, 11, 315, 279, 89135, 304, 3488, 11, 902, 23490, 1047, 1027, 520, 9581, 369, 709, 311, 1403, 1667, 4972, 311, 279, 19094, 5536, 627, 4071, 358, 2216, 4934, 311, 5357, 389, 1063, 315, 279, 59492, 14932, 279, 21426, 13, 358, 23289, 433, 596, 311, 387, 3685, 430, 10283, 315, 1274, 1051, -100 ]
Q: Induction. Circular track and fuel stations The sides of a circular track contain a sequence of cans of gasoline. The total amount in the cans is sufficient to enable a certain car to make one complete circuit of the track, and it could all fit into the car's gas tank at one time. Use mathematical induction to prove that it is possible to find an initial location for placing the car so that it will be able to traverse the entire track by using the various amounts of gasoline in the cans that it encounters along the way. This question has been asked here before but I don't really understand the answers. I'd like to solve this by induction. A: We proceed by induction on $n$, which is the number of cans. In the case that $n=1$, it is clear that the result holds since the $1$ can that exists contains sufficient fuel for the car to travel around the track, and so we can place the car at this $1$ can of fuel, let it fill up with the fuel that is in the can, and then travel around the track. Now suppose that the result holds for every possible placement of $n$ cans and any possible division of the total fuel into those cans. Consider an arrangement of $n+1$ cans. Since the total amount of the fuel in the cans is sufficient to travel around the track, at least one of the cans contains enough fuel for the car to travel to the next can. (As otherwise the total amount of fuel would only be enough to cover a distance strictly smaller than the total distance between the cans, which is of course the distance around the track.) Consider this can that contains enough fuel to get to the next can. Call it $C$. Let the can which appears after $C$ be called $D$, and imagine adding the fuel contained in $D$ to the fuel contained in $C$. This gives us an (imaginary) arrangement of $n$ cans which together contain enough fuel to travel around the track, and so by the induction hypothesis, there is a point on the track where we can place the car so that it can travel around the track. Place the real (non-imaginary) car at the same point on the track and let it start circling the track. It is then able to travel to $C$ since the real cans before $C$ are identical to the imaginary cans before $C$. There is enough fuel in the real can $C$ for it to reach the real can $D$, and so it can reach $D$. Once it reaches $D$, it tops up with the fuel contained in $D$, and then it has exactly the same amount of fuel as the imaginary car contains at this point on the track. Its journey from here on is therefor identical to the imaginary car's, and so it follows that it will be able to complete its journey around the track. There is thus a location on the track where we can place the car such that it completes its journey around the track, and so the result follows by induction. A: suppose there was one can, then it can be placed at the start. now suppose there are n cans positioned, this can get you $n/l$ of the track of length $l$. if you have $n+1$ cans then you have enough $n$ cans and can get $n/l$ at least with some combo if $n$ cans by first assumption. now you either have enough gas to make it around the track or the next gas can is placed within reach $n-$amount of gas of small can in distance$/l$ and you can get around the track.
{ "redpajama_set_name": "RedPajamaStackExchange" }
7,173
[ 128000, 48, 25, 2314, 2720, 13, 46861, 3839, 323, 10633, 17789, 578, 11314, 315, 264, 28029, 3839, 6782, 264, 8668, 315, 43732, 315, 46595, 13, 578, 2860, 3392, 304, 279, 43732, 374, 14343, 311, 7431, 264, 3738, 1841, 311, 1304, 832, 4686, 16622, 315, 279, 3839, 11, 323, 433, 1436, 682, 5052, 1139, 279, 1841, 596, 6962, 13192, 520, 832, 892, 13, 5560, 37072, 38156, 311, 12391, 430, 433, 374, 3284, 311, 1505, 459, 2926, 3813, 369, 25012, 279, 1841, 779, 430, 433, 690, 387, 3025, 311, 38646, 279, 4553, 3839, 555, 1701, 279, 5370, 15055, 315, 46595, 304, 279, 43732, 430, 433, 35006, 3235, 279, 1648, 627, 2028, 3488, 706, 1027, 4691, 1618, 1603, 719, 358, 1541, 956, 2216, 3619, 279, 11503, 13, 358, 4265, 1093, 311 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 48, 25, 2314, 2720, 13, 46861, 3839, 323, 10633, 17789, 578, 11314, 315, 264, 28029, 3839, 6782, 264, 8668, 315, 43732, 315, 46595, 13, 578, 2860, 3392, 304, 279, 43732, 374, 14343, 311, 7431, 264, 3738, 1841, 311, 1304, 832, 4686, 16622, 315, 279, 3839, 11, 323, 433, 1436, 682, 5052, 1139, 279, 1841, 596, 6962, 13192, 520, 832, 892, 13, 5560, 37072, 38156, 311, 12391, 430, 433, 374, 3284, 311, 1505, 459, 2926, 3813, 369, 25012, 279, 1841, 779, 430, 433, 690, 387, 3025, 311, 38646, 279, 4553, 3839, 555, 1701, 279, 5370, 15055, 315, 46595, 304, 279, 43732, 430, 433, 35006, 3235, 279, 1648, 627, 2028, 3488, 706, 1027, 4691, 1618, 1603, 719, 358, 1541, 956, 2216, 3619, 279, 11503, 13, 358, 4265, 1093, 311, -100 ]
Q: A word for decorations added to letters Is there a word for the artistic decorations that are often added to letters in some type-faces / fonts (e.g. caligraphy, etc.) I'm thinking like a serif, but as far as I know, (I'm open to correction) a serif is a specific tail that's added to some letters, whereas I'm looking for a word that encapsulates all the different types of decorative strokes or flourishes that can be added to letters. A: The word you are looking for is swash, which is a term of art in typesetting. The OED's 1989 definition for this is: *Printing Applied to old-style capital letters having flourished strokes designed to fill up unsightly gaps between adjacent letters. Most italic faces, for example, use a sloped roman by default for their capitals, reserving the swash versions for the true italic capitals as non-default alternates. Robert Bringhurst defines swash rather better than the OED does in his Elements of Typographic Style: Swash A letterform reveling in luxury. Some swash letters carry extra flourishes; others simply occupy an abnormally large ration of space. Swash letters are usually cursive and swash typefaces therefore usually italic. True italic capitals (as distinct from sloped roman capitals) are usually swash. Here, also from Bringhurst, is an illustration of the difference. Compare his lines 3.1 and 4.1: Here from the Cooper Italic Pro face is another illustration of swash alternates: Notice how the line that reads: Dusted off. Whittled into shape. occurs twice. The first time it uses true italic (cursive, with swash) capitals for the D and the W, and the second time it uses false italic (sloped roman) capitals for those two letters. The difference between italic and roman is NOT the slope or slant; rather, it's the letterforms themselves. (As you see, the Georgia face we use does not have true italic capitals. Alas.) Bringhurst further observes that: Herman Zapf's Zapf Renaissance italic and Robert Slimbach's Poetica are faces in which the swash can be extended to the lower case. Here is a demo of Zapf Rennaisance swash italics: But for super-swash, nothing can beat Herman Zapf's Zapfino, a script face not an italic one. Here's a demo: And here is another: Whereas here is a Poetica demo:
{ "redpajama_set_name": "RedPajamaStackExchange" }
3,011
[ 128000, 48, 25, 362, 3492, 369, 48679, 3779, 311, 12197, 2209, 1070, 264, 3492, 369, 279, 32692, 48679, 430, 527, 3629, 3779, 311, 12197, 304, 1063, 955, 2269, 2492, 611, 34080, 320, 68, 1326, 13, 1652, 93170, 11, 5099, 6266, 720, 40, 2846, 7422, 1093, 264, 90848, 11, 719, 439, 3117, 439, 358, 1440, 11, 320, 40, 2846, 1825, 311, 27358, 8, 264, 90848, 374, 264, 3230, 9986, 430, 596, 3779, 311, 1063, 12197, 11, 20444, 358, 2846, 3411, 369, 264, 3492, 430, 43669, 24031, 682, 279, 2204, 4595, 315, 46536, 53572, 477, 20415, 21168, 430, 649, 387, 3779, 311, 12197, 382, 32, 25, 578, 3492, 499, 527, 3411, 369, 374, 2064, 1003, 11, 902, 374, 264, 4751, 315, 1989, 304, 4595, 52189, 13, 578, 507, 1507, 596 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 48, 25, 362, 3492, 369, 48679, 3779, 311, 12197, 2209, 1070, 264, 3492, 369, 279, 32692, 48679, 430, 527, 3629, 3779, 311, 12197, 304, 1063, 955, 2269, 2492, 611, 34080, 320, 68, 1326, 13, 1652, 93170, 11, 5099, 6266, 720, 40, 2846, 7422, 1093, 264, 90848, 11, 719, 439, 3117, 439, 358, 1440, 11, 320, 40, 2846, 1825, 311, 27358, 8, 264, 90848, 374, 264, 3230, 9986, 430, 596, 3779, 311, 1063, 12197, 11, 20444, 358, 2846, 3411, 369, 264, 3492, 430, 43669, 24031, 682, 279, 2204, 4595, 315, 46536, 53572, 477, 20415, 21168, 430, 649, 387, 3779, 311, 12197, 382, 32, 25, 578, 3492, 499, 527, 3411, 369, 374, 2064, 1003, 11, 902, 374, 264, 4751, 315, 1989, 304, 4595, 52189, 13, 578, 507, 1507, 596, -100 ]
Is Command & Control Management Inefficient? When most people think of how businesses are organized, they visualize command and control management: the pine tree visual with the leaders at the top. Since we are entering the Western festive season here are some appropriate images to illustrate this. The traditional 'Christmas Tree' pyramid, with senior management at the top and orders cascading down though ever thicker branches is essentially what most of us learn from our schooling: head teacher, deputy head etc...political systems are the same. For this reason most of us assume big businesses are the same as small ones, but scaled up with more people. They're not. Large companies are typically comprised of lots of units. Very simplistically, a large company internally looks more like a snowflake. There is a central management team trapped at the center, and in theory each of their business entities connects up to them. Each business unit feeds into the quarterly earnings focused central leadership and are frequently autonomous to each other. The reality is often a much more misshapen model than the perfect fractal of a snowflake, with the left hand not knowing what the right hand is doing repeated multiple times. A third layer of complexity is the partnership network with supply chains, business process outsourcing and alignment with other businesses on a global level. We are at an unprecedented period historically in terms of cross cultural global business collaboration, and companies are finding themselves grappling with all the issues outlined above across multiple time zones and continents. Those that aren't will soon find themselves in this position if they are to survive. (At a Fujitsu event I spoke at last week in London an attendee mentioned how if two years ago you'd said they would have an office in Costa Rica people would think you'd lost your mind it was so unimaginable: they have one today). The challenge for modern businesses is the time it takes to inform up and down the line of management what is going on, and the relative value of this in getting things done in a timely fashion. There are signs that command and control is breaking down, not least because of the huge pressure on leadership to stay informed in order to make intelligent decisions. Command and control strategic decision making increasingly depends on a complex collaboration matrix that is only as good as the information that populates it: feeding this to the top of the management tree is time consuming and context is often misunderstood in communication. Modern technology - Social CRM, Enterprise 2.0 etc - provides real power in context to workforces, and companies like HCL are empowering their workforce by turning the traditional management pyramid upside down, with the executive team serving their 55,000 employees. What do you think? do you believe time to market and productivity would be enhanced by deprecating command and control management?
{ "redpajama_set_name": "RedPajamaC4" }
4,656
[ 128000, 3957, 7498, 612, 7935, 9744, 763, 43870, 5380, 4599, 1455, 1274, 1781, 315, 1268, 9873, 527, 17057, 11, 814, 51187, 3290, 323, 2585, 6373, 25, 279, 34697, 5021, 9302, 449, 279, 6164, 520, 279, 1948, 13, 8876, 584, 527, 16661, 279, 11104, 59937, 3280, 1618, 527, 1063, 8475, 5448, 311, 41468, 420, 627, 791, 8776, 364, 59703, 9119, 6, 47897, 11, 449, 10195, 6373, 520, 279, 1948, 323, 10373, 76057, 2277, 1523, 3582, 3596, 59884, 23962, 374, 16168, 1148, 1455, 315, 603, 4048, 505, 1057, 68721, 25, 2010, 11326, 11, 27158, 2010, 5099, 1131, 75785, 6067, 527, 279, 1890, 627, 2520, 420, 2944, 1455, 315, 603, 9855, 2466, 9873, 527, 279, 1890, 439, 2678, 6305, 11, 719, 31790, 709, 449, 810, 1274, 13, 2435, 2351, 539, 13 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 3957, 7498, 612, 7935, 9744, 763, 43870, 5380, 4599, 1455, 1274, 1781, 315, 1268, 9873, 527, 17057, 11, 814, 51187, 3290, 323, 2585, 6373, 25, 279, 34697, 5021, 9302, 449, 279, 6164, 520, 279, 1948, 13, 8876, 584, 527, 16661, 279, 11104, 59937, 3280, 1618, 527, 1063, 8475, 5448, 311, 41468, 420, 627, 791, 8776, 364, 59703, 9119, 6, 47897, 11, 449, 10195, 6373, 520, 279, 1948, 323, 10373, 76057, 2277, 1523, 3582, 3596, 59884, 23962, 374, 16168, 1148, 1455, 315, 603, 4048, 505, 1057, 68721, 25, 2010, 11326, 11, 27158, 2010, 5099, 1131, 75785, 6067, 527, 279, 1890, 627, 2520, 420, 2944, 1455, 315, 603, 9855, 2466, 9873, 527, 279, 1890, 439, 2678, 6305, 11, 719, 31790, 709, 449, 810, 1274, 13, 2435, 2351, 539, 13, -100 ]
American gun enthusiasts love using Switzerland as a shimmering example of a country where high gun ownership rates are paired with low levels of gun-related violence. Reading some of the articles shared by the National Rifle Association (NRA), one may get the impression that Switzerland is even more gun-crazed than the most conservative of red states – even NPR ran a story about how Switzerland's "entrenched gun culture" is embraced by citizens "as young as 10 years old". Not only could most NRA members not find Switzerland on a map or name any of its four national languages, but the very argument that Switzerland is a safe yet gun-loving haven comparable to the United States uses some of the most faulty logic in the entire gun debate. First and foremost, Switzerland has a form of mandatory conscription whereby every male over 18 must attend three months of military training, with refresher courses every few years. Thus, the majority of guns in Switzerland are army-issued. This means that most gun owners are not only given their guns by the army, but were trained by the government in their safe use. Being part of the Swiss militia means that men who own guns have been screened for past legal infractions or mental health issues, and they have even had to go through physical training before being issued their firearms. Few, if any, in the U.S. have suggested mandating training for gun owners, and as much as 40% of gun sales in America are conducted without any form of background check. Furthermore, since 2008, the Swiss government has required that owners of military-issued weapons leave their ammunition in central arsenals. Additionally, the sale of firearms, while still relatively free compared to its European neighbors, is not at the unchecked levels of the American gun market. Swiss law allows citizens over the age of 18 with no criminal or mental health record to apply for a permit to purchase up to three firearms. In the U.S. there is no equivalent procedure to obtain a permit from the government, and the gun lobby has fiercely opposed any proposal to create such a system. In fact, the NRA is so opposed to background checks that they lobbied against a bill that would have made a national gun registry illegal because it provided for background checks at gun shows. Another key distinction between Switzerland and the U.S. is the respective gun culture of these two nations. In Switzerland, those who own weapons outside of the military are taught to be quieter with their guns and learn from a young age how to use and store the weapon safely. The Swiss Sports Shooting Association runs over 3,000 clubs, including many for young people to teach them responsible gun ownership. Furthermore, a large number of sport shooters choose to leave their guns and/or ammunition at the gun range. On top of these differences, the Swiss also lack the United States' fanatical gun culture. No far-right groups like "Open Carry" exist in Switzerland, nor are there highways banners advertising upcoming gun shows, car dealers who give away guns with the purchase of a car, and gun rights are far less important as a test of conservatism in Swiss politics. In my ten years living in Switzerland, I never once saw a gun which was not in military-trained hands. In contrast, after spending only a month in Texas, I had already seen dozens of books on gun rights, heard all about the local gun show, and heard state politicians at many levels of government spew rhetoric about their adoration for the 2nd Amendment. One can sympathize with those wishing to make this comparison, as Switzerland has the world's fourth highest number of guns per capita, yet their gun death ratio is a fraction of that of the United States (about 0.5 deaths per 100,000 compared to America's 5). There are also plenty of other statistical factors at play in this fruitless comparison, such as Switzerland's 45.7 guns per 100 people compared to America's 88.8. Additionally, violent crime rates in Switzerland are significantly lower even if firearm-related deaths are substracted. This could be due to Switzerland's small population size or its high GDP per capita. Even at the political level, Switzerland is quintessentially different than the U.S. With a population that could fit into New York City, the country allows for much more local direct democracy and lacks the enormous lobbying and campaign donation machines America has. All of these factors influence the politicization of gun control in these respective countries, and accentuate the differences between them. America has a gun problem; of this there can be little doubt. The gun crime rate, as well as the gun ownership rate, are significantly higher than in any other developed nation. In an attempt to justify its position, the gun lobby frequently takes Switzerland as its inspiration, a country they see as both strongly pro-gun and unusually safe. While it may seem intuitive to most people, it is worth emphasizing that America is not Switzerland. The Swiss experience cannot be replicated in the United States due to the vast differences between these countries, differences that must be pointed out in order to break down the comparisons made between them. Not only do the Swiss own fewer guns, but most of the guns they do own are military-issued to men trained to use them, and many of these men don't even store their ammunition at home. Switzerland also lacks the morose obsession with guns that has emerged over the past several decades in America. Even if the U.S. is willing to realistically discuss its gun problem and consider increased regulation, it will still not be fair to compare it with the Swiss example.
{ "redpajama_set_name": "RedPajamaC4" }
416
[ 128000, 29518, 6166, 43448, 3021, 1701, 30221, 439, 264, 76461, 287, 3187, 315, 264, 3224, 1405, 1579, 6166, 15637, 7969, 527, 35526, 449, 3428, 5990, 315, 6166, 14228, 9349, 13, 18242, 1063, 315, 279, 9908, 6222, 555, 279, 5165, 48138, 10229, 320, 45, 5726, 705, 832, 1253, 636, 279, 21455, 430, 30221, 374, 1524, 810, 6166, 1824, 8875, 291, 1109, 279, 1455, 15692, 315, 2579, 5415, 1389, 1524, 45300, 10837, 264, 3446, 922, 1268, 30221, 596, 330, 306, 55071, 6166, 7829, 1, 374, 43603, 555, 10495, 330, 300, 3995, 439, 220, 605, 1667, 2362, 3343, 2876, 1193, 1436, 1455, 53509, 3697, 539, 1505, 30221, 389, 264, 2472, 477, 836, 904, 315, 1202, 3116, 5426, 15823, 11, 719, 279, 1633, 5811, 430, 30221, 374, 264, 6220, 3686, 6166, 77700 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 29518, 6166, 43448, 3021, 1701, 30221, 439, 264, 76461, 287, 3187, 315, 264, 3224, 1405, 1579, 6166, 15637, 7969, 527, 35526, 449, 3428, 5990, 315, 6166, 14228, 9349, 13, 18242, 1063, 315, 279, 9908, 6222, 555, 279, 5165, 48138, 10229, 320, 45, 5726, 705, 832, 1253, 636, 279, 21455, 430, 30221, 374, 1524, 810, 6166, 1824, 8875, 291, 1109, 279, 1455, 15692, 315, 2579, 5415, 1389, 1524, 45300, 10837, 264, 3446, 922, 1268, 30221, 596, 330, 306, 55071, 6166, 7829, 1, 374, 43603, 555, 10495, 330, 300, 3995, 439, 220, 605, 1667, 2362, 3343, 2876, 1193, 1436, 1455, 53509, 3697, 539, 1505, 30221, 389, 264, 2472, 477, 836, 904, 315, 1202, 3116, 5426, 15823, 11, 719, 279, 1633, 5811, 430, 30221, 374, 264, 6220, 3686, 6166, 77700, -100 ]
Arcade Fire's self-titled debut EP is finally on Spotify: Stream 2003 effort also known as Us Kids Know features an early version of "No Cars Go" on December 11, 2017, 1:30pm The self-titled debut EP from Arcade Fire, known by some fans as Us Kids Know, is finally streaming online. Take a listen to the seven-track effort below via Spotify. Recorded in Maine during the summer of 2002, the Arcade Fire EP was self-released via the band's website and sold at their shows. Not long after, the band signed to Merge and released Funeral in 2004. The full-length led to such a rabid fanbase that Merge re-released Arcade Fire on their website before remastering it for a physical release in 2005. The seven-track effort includes an early version of "No Cars Go", a live staple that was re-recorded for the band's sophomore album, Neon Bible. (Read: 13 Things You Didn't Know About Arcade Fire and Funeral) In the age of streaming, the EP has never been available before. However, coming off the release of Everything Now, which featured one of the best songs of the year in its title track, the band apparently decided it was time to unearth the early effort as an early Christmas gift for fans. Take a listen: Arcade Fire EP Artwork: Arcade Fire EP Tracklist: 01. Old Flame 02. I'm Sleeping in a Submarine 03. No Cars Go 04. The Woodlands National Anthem 05. My Heart is an Apple 06. Headlights Look Like Diamonds 07. Vampire/Forest Fire Best Indie Best Indie Albums Best Indie Rock Debut EP EP Stream Indie music Releases Alice in Chains announce North American tour for 2018 Charli XCX wants you to "Unlock It" on new song: Stream
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,310
[ 128000, 37909, 1037, 6785, 596, 659, 2442, 15621, 17755, 19613, 374, 5616, 389, 41637, 25, 9384, 198, 1049, 18, 5149, 1101, 3967, 439, 4073, 23338, 14521, 4519, 459, 4216, 2373, 315, 330, 2822, 36231, 6122, 702, 263, 6790, 220, 806, 11, 220, 679, 22, 11, 220, 16, 25, 966, 5298, 198, 791, 659, 2442, 15621, 17755, 19613, 505, 65307, 6785, 11, 3967, 555, 1063, 7359, 439, 4073, 23338, 14521, 11, 374, 5616, 17265, 2930, 13, 12040, 264, 9020, 311, 279, 8254, 54566, 5149, 3770, 4669, 41637, 627, 6607, 291, 304, 30890, 2391, 279, 7474, 315, 220, 1049, 17, 11, 279, 65307, 6785, 19613, 574, 659, 5621, 4778, 4669, 279, 7200, 596, 3997, 323, 6216, 520, 872, 5039, 13, 2876, 1317, 1306, 11, 279, 7200, 8667, 311, 41185, 323 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 37909, 1037, 6785, 596, 659, 2442, 15621, 17755, 19613, 374, 5616, 389, 41637, 25, 9384, 198, 1049, 18, 5149, 1101, 3967, 439, 4073, 23338, 14521, 4519, 459, 4216, 2373, 315, 330, 2822, 36231, 6122, 702, 263, 6790, 220, 806, 11, 220, 679, 22, 11, 220, 16, 25, 966, 5298, 198, 791, 659, 2442, 15621, 17755, 19613, 505, 65307, 6785, 11, 3967, 555, 1063, 7359, 439, 4073, 23338, 14521, 11, 374, 5616, 17265, 2930, 13, 12040, 264, 9020, 311, 279, 8254, 54566, 5149, 3770, 4669, 41637, 627, 6607, 291, 304, 30890, 2391, 279, 7474, 315, 220, 1049, 17, 11, 279, 65307, 6785, 19613, 574, 659, 5621, 4778, 4669, 279, 7200, 596, 3997, 323, 6216, 520, 872, 5039, 13, 2876, 1317, 1306, 11, 279, 7200, 8667, 311, 41185, 323, -100 ]
<?php // autoload.php @generated by Composer require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInit297c18b577058f4031cf8059e53092b3::getLoader();
{ "redpajama_set_name": "RedPajamaGithub" }
304
[ 128000, 1340, 1230, 271, 322, 81597, 2348, 571, 16583, 555, 79871, 271, 4408, 7785, 1328, 12530, 565, 662, 3434, 75994, 70963, 15624, 2348, 2412, 693, 79871, 20175, 10216, 1013, 3888, 18163, 66, 972, 65, 23411, 24824, 69, 13074, 16, 9991, 21032, 24, 68, 17252, 6083, 65, 18, 487, 456, 9360, 545, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 1340, 1230, 271, 322, 81597, 2348, 571, 16583, 555, 79871, 271, 4408, 7785, 1328, 12530, 565, 662, 3434, 75994, 70963, 15624, 2348, 2412, 693, 79871, 20175, 10216, 1013, 3888, 18163, 66, 972, 65, 23411, 24824, 69, 13074, 16, 9991, 21032, 24, 68, 17252, 6083, 65, 18, 487, 456, 9360, 545, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Home / Research & Publications / Items of Interest Jenny Baker / Monday, January 4, 2021 / Categories: TIP, 2021, 583 TIPTopics: Allyship as a Sustained Practice in Graduate School Andrew Tenbrink, Mallory Smith, Georgia LaMarre, Laura Pineault, Tyleen Lopez, & Molly Christophersen "You have to act as if it were possible to radically transform the world. And you have to do it all the time."--Angela Davis The zeitgeist of 2020 could be characterized by a heightened awareness of the ways that individuals, organizations, and societal structures interact and impact the world around them. Long-standing social inequalities (Acker, 2006) at the intersection of race, gender, and social class have been heavy topics of public discourse in response to police brutality and racial injustice against Black people (SIOP, 2020). The compounding effects of the COVID-19 pandemic on low-income communities underscores the structural disadvantages that still exist in society today (Center for Disease Control, 2020; Kochhar, 2020). This convergence of factors has spurred a "social awakening" (Suyemoto et al., 2020, p. 2) and has activated a sense of urgency to combat all forms of institutionalized discrimination along the lines of race, class, gender, sexuality, and other social locations (e.g., Bonilla-Silva, 2017). In light of this "social awakening," we have observed numerous examples across industries to promote diversity, equity, and inclusion. Part of this includes individuals practicing critical allyship—engaging in a cyclic praxis of reflecting on one's own privilege, seeking resources to learn about systems of power, privilege, and oppression, and acting in solidarity with marginalized individuals (whether they be in one's in-group or out-group). The important role of allyship in supporting and advocating for specific marginalized groups is well documented in the I-O literature (e.g., Cheng et al., 2018; Creary, 2020; Thoroughgood et al., 2020). In fact, content generated on the topic of allyship has surged in recent months. Here, we build off those discussions to highlight everyday allyship behaviors that graduate students can engage in and that cut across demographic lines. We acknowledge that this more general approach can erase the unique allyship behaviors that are crucial for specific marginalized groups; however, we aim to establish a foundation for understanding and building allyship in graduate school and beyond. We encourage our readers to continue to educate themselves on the unique challenges that different marginalized individuals face and how to most effectively support and advocate for them. What Is Allyship? Early writers such as Evans and Wall (1991) and Ayvazian (1995) defined the word "allies" as people in privileged positions who take action to challenge or undermine the systems of privilege from which they benefit. Modern definitions of allyship echo these core themes. However, some scholars and, even more so, activists have called to phase out self-labelling terminology such as "ally" or "allies," criticizing their use as mere labels that individuals adopt for themselves without embodying the crux of the definition: taking action (Carlson et al., 2019). That is, there is a push to conceptualize allyship as a verb, not a noun. As Mia McKenzie, editor-in-chief of the activism blog Black Girl Dangerous, writes: Ally cannot be a label that someone stamps onto you—or, god forbid, that you stamp on to yourself—so you can then go around claiming it as some kind of identity. It's not an identity. It's an active thing that must be done over and over and over again, in the largest and smallest ways, every day. It is important to note that we are all called to this work. We are not invariably dichotomized as "privileged and powerful" or "marginalized and oppressed," just as we are not defined by one aspect of our identity. Rather, we are collective beings with multiple identities, some oppressed, some privileged. For example, as graduate students with access to higher education, we have a shared power and privilege that others do not have (Gómez, 2019). In each moment that we find ourselves in a position of power, we are accountable for being proactive and acting in solidarity with those on the other side of the coin (see Nixon, 2019 for more information on the coin model and the intersecting nature of the coins). We advance this thinking here by conceptualizing allyship as an active practice guided by three recursive and iterative steps: self-examination and critical thinking, awareness and education, and action. Step 1: Self-Examination and Critical Thinking The first step requires a self-examination of your own identities and privileges, which includes taking inventory of how you benefit from the privileges at the cost of oppressing others. Try this activity to explore your own social identity, and learn more about the history of privilege and oppression in American society here. These exercises may give rise to guilt, discomfort, anger, and shame. Sit with these feelings, and then move through them, as they can be paralyzing and self-indulgent in nature (Carlson et al., 2019, p. 5). During this self-examination, those pursuant of allyship are encouraged to remain mindful and reflective of their intentions, as well as their impact, when supporting and advocating for specific individuals in their lives (Cheng et al., 2019). For example, Edwards (2006) describes the different intentions allies can embody, demonstrating the importance of engaging in allyship for social justice (and not self-interest or altruism): Individuals engaging in allyship for self-interest tend to only confront oppressive behavior when someone they care about is being targeted. Individuals engaging in allyship for altruism normally act out of guilt and place blame on individuals of the majority group rather than recognizing their own participation in the system of oppression. Despite having positive intentions, acting out of altruism often leads individuals to speak for the oppressed as opposed to with them. Individuals engaging in allyship for social justice commit to and work with oppressed communities to advance that community and dismantle systemic oppression. They take purposeful and deliberate action to accept their privilege, work toward liberating the oppressed and themselves, and recognize how interconnected different forms of oppression are and the limitations of only working to address one form of oppression at a time. Step 2: Awareness and Education An essential next step in allyship is educating oneself through listening and learning. A recent systematic review of the allyship literature aptly coins this step, "Listen + Shut Up + Learn" (Carlson et al., 2019). You can find publicly available workshops and materials, such as Cornell University's upcoming Building Allyship Series and the Academy of Management Social Issues in Management Division's Racial Justice at the Intersection of Business and Society panel series. Another avenue to educate oneself is by seeking out both academic and nonacademic writing and media on this topic, acknowledging that systemic forces can gatekeep minority perspectives from scholarly journals and from academia more generally (Fotaki, 2013; Ray, 2019). Some examples of resources are Podcasts addressing intersectional issues of race, gender, and social class, such as Code Switch, Do the Work, Intersectionality Matters, and Yo, Is This Racist? Journals outside of the top-tier I-O outlets, such as the recent issues in the Journal of Social Issues on ableism and in Equality, Diversity and Inclusion's Special Issue: Black Lives Matter: Black Community Voices. Community-based resources, such as A Progressive Style Guide from Sum of Us, to language in support of intersectionality and cross-sector power building to Dr. Jennifer M. Gómez's (2020) compilation of resources for correcting bias in tenure and promotion and addressing anti-Black racism in academia and beyond. Step 3: Action Along with self-reflection and education, which are crucial aspects of allyship, it is even more important to transfer this awareness and learning into action. Contemporary I-O scholarship categorizes ally behaviors into support and advocacy (e.g., Brown & Ostrove, 2013; Cheng et al., 2019; Gardner et al., 2020): Support: Ally support provides psychological and/or tangible resources for individuals with stigmatized identities. Support behaviors help minoritized persons feel valued and engaged rather than marginalized and psychologically exhausted (see self-verification theory; Swann, 2012). Example behaviors include being present and listening to the unique struggles faced by individuals, participating in ally trainings, attending educational or social events held by marginalized groups, and receiving disclosures of invisible identities, such as sexual orientation, religious affiliation, and disability status, with acceptance and understanding (DiStefano et al., 2000; Law et al., 2011). Advocacy: Ally advocacy involves more outward and proactive support, such as directly confronting instances of prejudice or discrimination, educating peers, calling for better organizational policies and resources that support stigmatized groups, and actively engaging in advocacy organizations (e.g., Czopp & Monteith, 2003). One form of daily advocacy is amplifying marginalized voices (Carlson et al., 2019). For example, When a peer offers a great idea in class, highlight it and give them credit. Validate their perspectives in the moment during class or group meetings instead of waiting until afterward to tell them one-on-one. Speak up if you hear or see discriminatory behavior, even if this risks your personal interests. Let a professor know when a reading they have assigned or an assignment prompt is not appropriate or even harmful to a marginalized group. Correct a classmate who makes comments that are discriminatory. It is not always easy to identify discrimination when it happens (see the confronting prejudiced responses model; Ashburn-Nardo et al., 2008), but it is important to bring attention to and to challenge these behaviors when possible. Unique Opportunities for Advocacy and Support in Our Graduate Student Roles As graduate students, we dynamically shift from being students to researchers to instructors on a day-to-day basis. In the sections below, we highlight unique opportunities to engage in allyship in each of these roles and, in doing so, acknowledge what we as graduate students can do to promote diversity, inclusion, and equity in academia and beyond (Liu et al., 2020). As researchers, we can challenge ourselves and each other to be intentional about who we read, who we cite, the language we use in writing, and the populations we study in research. There are opportunities to learn from and to incorporate the brilliant theoretical and empirical work of marginalized scholars at each stage of the research process (Roberts et al., 2020). Literature search. Intentionally seek out and read work by scholars with marginalized identities. Putting this work on your radar increases the likelihood of citing and amplifying these voices, as well as being informed by perspectives that are commonly left out of academic research and discussions. Literature review. Take inventory of the representation of scholars cited in your published and unpublished work. Are they mainly men? White? Western centric? Are you only citing the most "popular," heavily cited work on a topic, or are you also integrating the perspectives and voices of those who are often gatekept from our top-tier journals (King et al., 2018)? To hold yourself accountable, we encourage you to participate in citation practice challenges and other related efforts (e.g., #CiteASista). Going deeper, take time to understand the history and background of the people we commonly cite. Many of the scholars that we commonly cite or were foundational scholars were racist, were homophobic, supported eugenics, and so on. If we continue to heavily rely on these scholars' work, it is critical that we also acknowledge the problematic aspects of these individuals (and also how that might inform how we interpret their work). I-O in particular has many things that we can highlight in our history and practices that are problematic (e.g., testing and assessment; see Testing and Assessment With Persons and Communities of Color). Designing and conducting research. Seek out marginalized, minoritized, and underrepresented samples—combatting the WEIRD (Western, educated, industrialized, rich, democratic; Henrich et al., 2010) and white-collar (Diaz & Bergman, 2013) samples dominating I-O psychology. If homogeneity is inherent in your samples, take time to acknowledge the limitations and bias introduced rather than making sweeping, generalized claims about the theoretical and practical implications. Analyzing and writing up results. Intentionally use inclusive, respectful language (see Bergman, 2019) and consider incorporating forms of reflexivity into your quantitative research process (see Ryan & Golden, 2006). We also echo recent calls to test and report the presence or absence of demographic effects, even if noncentral to your research question(s) (see the Avery & Volpone, 2020 chapter,"The Perils of Ignoring Demographic Differences on Micro Organizational Research"). Central here is that these small, nonperformative, and individual efforts, when taken in the collective, have the potential to resoundingly dismantle pervasive systems and practices of oppression in the academy. As instructors, we hold positional power that can catalyze allyship effectiveness if yielded appropriately (Cheng et al., 2019). Allyship for educators is unique depending on one's identity, experience, and familiarity with social justice issues (Brown & Ostrove, 2013). However, there are many actions that educators can take in the classroom to recognize oppression, to support those experiencing oppression, and to ensure that oppression is not perpetuated in their classes. For example, educators may make time to discuss social injustices and to encourage dialogue and understanding among students. Further, educators can allow students to contribute to the conversation with the perspectives of their own identity-group memberships while being cautious not to tokenize minoritized students by asking them to speak for their entire identity group. Incorporating Culturally Sustaining Pedagogy (CSP) into your classrooms (e.g., Paris, 2012) is one concrete way to build students' skills and knowledge for engaging in allyship. For guidance here, we recommend the work of Dr. Django Paris, who has dedicated his career to bringing educational and cultural justice to inquiry and pedagogy through CSP. This type of pedagogy challenges the standard, white-washed American education by incorporating the voices and cultures of other groups (Django & Alim, 2017). Many instructors are also taking action by diversifying their syllabi, incorporating the great work of marginalized scholars that are often excluded from psychology courses. For inspiration on how to increase representation throughout curricula (Thomas & Ashburn‐Nardo, 2020), see Dr. Erica Hsiung Wojcik's BIPOC-Authored Psychology Papers spreadsheet intended for use by instructors of undergraduate/graduate-level psychology courses to help diversify their syllabi, as well as the syllabus of Dr. Jin Goh's Seminar on the Social Psychology of Race and Racism. Although the journey to allyship within an academic setting may feel daunting, it is imperative to make these efforts in order to ensure that our students are well-informed and equipped to prevent the further perpetuation of discrimination, harm, and inequity—both inside and outside of the classroom. Our Limitations and Your Allyship Journey We acknowledge that our authorship team lacks representation on certain dimensions of diversity (Reyes, 2018). Several systemic forces may have shaped the composition of our team (predominantly White, female, heterosexual, advanced degree holders, etc.), such as systemic discrimination related to opportunities to be an author (King et al., 2018), graduate school admittance (APA, 2020), and tendencies to write with the in-group of known others rather than seeking out underrepresented minoritized students. We disclose our positionality here to fully acknowledge how our authorship team's composition may have biased and influenced this narrative, as well as to role model the first step to engaging in allyship: critical self-reflection. See below for additional readings to get you started on or to catalyze your allyship journey: "What's in a Name? A Synthesis of "Allyship" Elements From Academic and Activist Literature" "Beyond Allyship: Motivations for Advantaged Group Members to Engage in Action for Disadvantaged Groups" "Whiteness in Organizations: From White Supremacy to Allyship" "Intersecting Viruses: A Clarion Call for a New Direction in Diversity Theorizing" Reflecting on our team's limitations, we reemphasize that the resources we provided are not exhaustive, especially when it comes to the unique perspectives, challenges, and needs of specific groups. So, please do NOT stop here. Modeling the second step to engaging in allyship behaviors, we are each in the process of building our awareness and education, and this article is limited to our current knowledge and experiences. We as graduate students—and as the future of academia—have unique opportunities to elicit sustained change that go beyond interpersonal or momentary acts of social activism. Allyship is not new, nor would it be reasonable for it to be treated as a trend spurred on by the events of 2020. The effects of oppressive systems have been in place and have been compounding for generations. Individuals who are most impacted by this oppression are usually the ones who are fighting the hardest for change—often with little to no support. At various points in time, others may join in, spurred by a critical event, but their activism and advocacy are often only momentary. We can no longer accept this as the status quo. Sustained change demands more than momentary social activism. It requires critical reflection, personal ownership, and commitment to change our repeated, daily actions in ways that dismantle, rather than reproduce, systems of social inequity (Sumerau et al., 2020). We believe that I-O graduate students are in a unique position to contribute to sustaining the momentum around allyship and activism through our future roles as academics and as organizational change makers. We have the ability and responsibility to strive toward more inclusivity and representation in higher education, research, SIOP, and all workplaces. We are pledging to incorporate this effort in our everyday lives, and we call on you to join us. We extend our deepest gratitude and thanks to Shannon Cheng, Dr. Jennifer M. Gómez, and Edward Scott for their thoughtful review and invaluable contributions to this article. Andrew Tenbrink is a 5th-year PhD student in I-O psychology. He received his BS in Psychology from Kansas State University. His research interests include selection, assessment, and performance management, with a specific focus on factors affecting the performance appraisal process. Currently, Andrew has a 1-year assistantship working as a quantitative methods consultant in the Department of Psychology's Research Design and Analysis Unit at Wayne State University. Andrew is expected to graduate in the summer of 2021. After earning his PhD, he would like to pursue a career in academia. [email protected] | @AndrewPTenbrink Mallory Smith completed her Master of Arts in I-O Psychology in the spring of 2020. Prior to graduate school, she earned her BA in Psychology and German from Wayne State University. Her interests include factors influencing employee attitudes, efficacy, and perceptions of justice during organizational change. After graduation, Mallory started a new job in the healthcare industry, leveraging both her I-O skillset and background in information technology to support digital transformation, enhance work processes, and encourage employee adoption of new innovations. [email protected] | @mallorycsmith Georgia LaMarre is a 4th-year PhD student in I-O psychology. She completed her undergraduate education at the University of Waterloo before moving over the border to live in Michigan. Georgia is currently working as an organizational development intern at a consulting firm while pursuing research interests in team decision making, workplace identity, and paramilitary organizational culture. After graduate school, she hopes to apply her I-O knowledge to help solve problems in public-sector organizations. [email protected] Laura Pineault is a 5th-year PhD candidate in I-O psychology. Her research interests lie at the intersection of leadership and work–life organizational culture, with emphasis on the impact of work–life organizational practices on the leadership success of women. Laura graduated with Distinction from the Honours Behaviour, Cognition and Neuroscience program at the University of Windsor in June 2016. Currently, Laura serves as the primary graduate research assistant for a NSF RAPID grant (Work, Family, and Social Well-Being Among Couples in the Context of COVID-19; NSF #2031726) and is a quantitative methods consultant for the Department of Psychology's Research Design and Analysis Unit at Wayne State University. Laura is expected to graduate in the spring of 2021. [email protected] | @LPineault Tyleen Lopez is a 3rd-year PhD student in I-O psychology. She received her BA in Psychology from St. John's University in Queens, New York. Her research interests include diversity/inclusion, leadership, and well-being in the workplace. Tyleen is currently a graduate research assistant and lab manager for Dr. Lars U. Johnson's LeadWell Research lab at Wayne State University. Tyleen is expected to graduate in the spring of 2023. After earning her PhD, she would like to pursue a career in academia. [email protected] | @tyleenlopez Molly Christophersen is pursuing a Master of Arts in I-O Psychology. She earned her BA in Sociology from Michigan State University in 2016. Her interests include workforce training and employee development. After graduate school, she has her sights set on an applied career in the private sector—ideally in a role where she can help businesses train and develop their employees, effectively helping individuals to grow within their organization. [email protected] | @molly_kate32 RSS Uncategorized Expand/Collapse 109 RSS Member News Expand/Collapse 392 RSS Items of Interest Expand/Collapse 123 RSS Calls and Announcements Expand/Collapse 33 RSS Announcements Expand/Collapse 26 RSS Call for Papers Expand/Collapse 6 RSS Governance Expand/Collapse 16 RSS Meetings Expand/Collapse 9 RSS 2021 Annual Conference Expand/Collapse 72 RSS TIP Expand/Collapse 0 RSS 2016 Expand/Collapse 35 RSS 533 Expand/Collapse 27 RSS 2021 Expand/Collapse 12 RSS Allied Organizations Expand/Collapse 17 RSS Advocacy Expand/Collapse 32 RSS Business Resources Expand/Collapse 7 RSS Education Resources Expand/Collapse 10 RSS Foundation News Expand/Collapse 7 RSS Honors & Awards Expand/Collapse 3 RSS I-O Careers Expand/Collapse 53 RSS Newsbriefs Expand/Collapse 2 RSS Press Releases Expand/Collapse 12 RSS Remote Work Resources Expand/Collapse 38 RSS Science & Practice Topics Expand/Collapse
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
5,202
[ 128000, 7778, 611, 8483, 612, 62770, 611, 19974, 315, 25074, 198, 41, 18314, 29492, 611, 7159, 11, 6186, 220, 19, 11, 220, 2366, 16, 198, 14, 29312, 25, 350, 3378, 11, 220, 2366, 16, 11, 220, 23493, 198, 27712, 2898, 454, 1233, 25, 82570, 5383, 439, 264, 328, 592, 2692, 28082, 304, 44825, 6150, 198, 41598, 18165, 1347, 771, 11, 32498, 683, 9259, 11, 16272, 5034, 12331, 265, 11, 30928, 42609, 957, 11, 350, 982, 268, 45315, 11, 612, 58500, 95693, 89089, 198, 22336, 617, 311, 1180, 439, 422, 433, 1051, 3284, 311, 61127, 5276, 279, 1917, 13, 1628, 499, 617, 311, 656, 433, 682, 279, 892, 1210, 313, 10976, 8458, 17200, 198, 791, 78258, 79500, 315, 220, 2366, 15, 1436, 387, 32971, 555, 264, 60487, 17985, 315 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 7778, 611, 8483, 612, 62770, 611, 19974, 315, 25074, 198, 41, 18314, 29492, 611, 7159, 11, 6186, 220, 19, 11, 220, 2366, 16, 198, 14, 29312, 25, 350, 3378, 11, 220, 2366, 16, 11, 220, 23493, 198, 27712, 2898, 454, 1233, 25, 82570, 5383, 439, 264, 328, 592, 2692, 28082, 304, 44825, 6150, 198, 41598, 18165, 1347, 771, 11, 32498, 683, 9259, 11, 16272, 5034, 12331, 265, 11, 30928, 42609, 957, 11, 350, 982, 268, 45315, 11, 612, 58500, 95693, 89089, 198, 22336, 617, 311, 1180, 439, 422, 433, 1051, 3284, 311, 61127, 5276, 279, 1917, 13, 1628, 499, 617, 311, 656, 433, 682, 279, 892, 1210, 313, 10976, 8458, 17200, 198, 791, 78258, 79500, 315, 220, 2366, 15, 1436, 387, 32971, 555, 264, 60487, 17985, 315, -100 ]
Paxman History - Details of surviving Davey Paxman portable steam engines. Effective Date: These regulations are effective on September 19, 2013. Applicability Date: In general, these final regulations apply to taxable years beginning on or after January 1, 2014.
{ "redpajama_set_name": "RedPajamaC4" }
5,601
[ 128000, 47, 710, 1543, 11346, 482, 12589, 315, 40746, 20851, 88, 71421, 1543, 23665, 20930, 21787, 627, 68639, 2696, 25, 4314, 14640, 527, 7524, 389, 6250, 220, 777, 11, 220, 679, 18, 13, 1883, 416, 2968, 2696, 25, 763, 4689, 11, 1521, 1620, 14640, 3881, 311, 59453, 1667, 7314, 389, 477, 1306, 6186, 220, 16, 11, 220, 679, 19, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 47, 710, 1543, 11346, 482, 12589, 315, 40746, 20851, 88, 71421, 1543, 23665, 20930, 21787, 627, 68639, 2696, 25, 4314, 14640, 527, 7524, 389, 6250, 220, 777, 11, 220, 679, 18, 13, 1883, 416, 2968, 2696, 25, 763, 4689, 11, 1521, 1620, 14640, 3881, 311, 59453, 1667, 7314, 389, 477, 1306, 6186, 220, 16, 11, 220, 679, 19, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Communicate With Your Galactic Family! All of humanity has ancestral connections to the stars. Those humans who are destined to remember this are what we call Starseeds. Learn more about Starseeds here. Do You Feel Like You Have Galactic Beings Among Your Team of Guides & Angels? If you feel that you have Galactics, Arcturians, Sirians, or Pleiadians on your team, this is exactly what I'm talking about when I say Star Family. You don't necessarily have to recall exactly where your Galactic origins are, or where your galactic guides might come from. You might have a deep inner feeling that your roots, your true place of origin, is in the stars. As Starseeds, or ascending humans, there is benefit in connecting with our Galactic families who are of Christ light and of the crystalline Christ consciousness. As you walk the ascension path, connecting with your star brothers and sisters who have already ascended into the 5th, 7th, 9th, 11th dimensional planes of existence becomes more and more important. These beings are ready and willing to serve you in ascending and elevating your vibration. Although our star families are often more highly evolved, this does not mean we are inferior. In fact, the reason why there's so much attention and energy on planet earth at this time is because humanity has an unprecedented opportunity in this physical lifetime to fully embody 100% source God consciousness. To learn more about what it means to be a divine human click here. The opportunity you have is to become divine humans in the physical world. Not only in the higher dimensions, but actually bring the higher light onto the new awakened earth. This is the golden age. This is the new paradigm. This is what we are moving into and it's an opportunity for humans alone. You can, in this lifetime, reach a higher vibration within a physical body than any other being. Being human is a beautiful opportunity and yet, there is immense help, guidance, and love from the stars. How Do You Connect with Your Star Family? Interestingly, connecting with your Galactic Family starts off in the exact same way as connecting with Angels, Ascended Masters, or your higher self. It's made possible by opening your heart, entering inward, raising your vibration, and expanding your consciousness to become a vibrational match with the higher dimensional star beings. Once you elevate to this state, there's a few ways in which your team can connect. Dreams are a common way to connect. Telepathically is another common way. There is the light ship connection – where your team actually materializes as a light ship in order to link with you. Lower levels of emotion, doubt, insecurity will block your ability to connect. Your star family often looks much different. If they are of the light, if they are of Christ consciousness, they honor your free will. Like Angels, you have to call them in and ask for them to make the connection. It's essential to let go of fear. They don't want to scare you. If they reach out to make the connection and you respond with terror and fear, they're going to back off and not reach out because that fear energy limits your growth and limits your potential. Your star family wants to help you ascend and triggering fear to make the connection has an adverse effect on that process. Eliminate fear, cleanse your energy, and clear out lower vibrational energies and past life experiences. Do a full emotional cleansing. When you cleanse out and release the lower levels, you empower yourself to tune in at a higher level. This includes tuning into Angels and your star family. Before connecting with any light being, ask, "Are you of the light? Are you in alignment with Christ consciousness?" If they are, they will say yes. Congratulations! You have met a guide who can serve and support you. All beings have to answer this question authentically and truthfully. They cannot lie and say they are of Christ consciousness if they are not. If they're not, they may shrug their shoulders and walk away or they may say, "Oh no, you got me." That's when you release them and call in your star family, who are of Christ consciousness, because that's who can help you ascend and who are worthwhile to connect with. There are thousands of different Galactics in all kinds of different shapes, sizes, colors, and dimensions. Open your heart and ask them to make the connection. This is a powerful invocation before meditation or when you are outside at night, looking up at the stars. Sirians are incredible alchemists and can help you in transmuting your physical body into the golden divine enlightened human being you authentically are. There are the Arcturians, who are an incredible collective with immense healing and clearing capabilities. Of the thousands of different Galactic beings, there are so many who have fully ascended, who are fully embodying Christ consciousness, and who can serve and guide you in your ascension. If the idea of connecting with your star family lights you up, invite them in. This is not required. You can work with Ascended Masters who have ascended on earth. However, if it resonates with you, you do have the option as a Starseed to work with the Galactics. It can be a fun, empowering, and exciting thing to do. If it speaks to your heart, call in your Galactic family and let them then guide you as to what is possible. There is much more in store for us when we work together in these powerful ascension times. ← Receive A Divine Attunement for Chakras & Open Pathways to Inter-dimensional Experience!
{ "redpajama_set_name": "RedPajamaC4" }
2,129
[ 128000, 82023, 349, 3161, 4718, 76317, 12517, 4999, 2460, 315, 22706, 706, 78771, 13537, 311, 279, 9958, 13, 13266, 12966, 889, 527, 51687, 311, 6227, 420, 527, 1148, 584, 1650, 800, 2648, 6910, 627, 24762, 810, 922, 800, 2648, 6910, 1618, 627, 5519, 1472, 32833, 9086, 1472, 12522, 76317, 2893, 826, 22395, 4718, 8068, 315, 60545, 612, 43145, 5380, 2746, 499, 2733, 430, 499, 617, 10845, 69069, 11, 1676, 302, 324, 5493, 11, 17177, 5493, 11, 477, 33540, 72, 21398, 389, 701, 2128, 11, 420, 374, 7041, 1148, 358, 2846, 7556, 922, 994, 358, 2019, 7834, 12517, 627, 2675, 1541, 956, 14647, 617, 311, 19635, 7041, 1405, 701, 76317, 33472, 527, 11, 477, 1405, 701, 15730, 24045, 28292, 2643, 2586, 505, 13, 1472, 2643, 617, 264, 5655, 9358 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 82023, 349, 3161, 4718, 76317, 12517, 4999, 2460, 315, 22706, 706, 78771, 13537, 311, 279, 9958, 13, 13266, 12966, 889, 527, 51687, 311, 6227, 420, 527, 1148, 584, 1650, 800, 2648, 6910, 627, 24762, 810, 922, 800, 2648, 6910, 1618, 627, 5519, 1472, 32833, 9086, 1472, 12522, 76317, 2893, 826, 22395, 4718, 8068, 315, 60545, 612, 43145, 5380, 2746, 499, 2733, 430, 499, 617, 10845, 69069, 11, 1676, 302, 324, 5493, 11, 17177, 5493, 11, 477, 33540, 72, 21398, 389, 701, 2128, 11, 420, 374, 7041, 1148, 358, 2846, 7556, 922, 994, 358, 2019, 7834, 12517, 627, 2675, 1541, 956, 14647, 617, 311, 19635, 7041, 1405, 701, 76317, 33472, 527, 11, 477, 1405, 701, 15730, 24045, 28292, 2643, 2586, 505, 13, 1472, 2643, 617, 264, 5655, 9358, -100 ]
Event - 29 April 2020 Singapore Budget Webinar for SMEs Hawksford is excited to partner with the American Chamber of Commerce in Singapore and host a webinar about the Singapore Budget and the key measures put in place by the Singapore government to help SMEs cope and grow amidst COVID-19 challenges. Singapore has now released three rounds of budget measures for businesses and households in response to the COVID-19 pandemic- 'Unity', 'Resilience', and 'Solidarity'. The recently announced Solidarity Budget which includes revised Government revenue and expenditure plans for the current financial year with measures amounting to more than twice the level of support provided during the Global Financial Crisis in 2009. Altogether, Singapore will be drawing on S$21 billion from its reserves to support the country through the Covid-19 outbreak. As SMEs have been especially impacted, various initiatives have been included in the three budget measures to address the key concerns: cash flow, costs, and credit. A number of programs have been expanded and enhanced to support SMEs at this time in order to build a stronger economy. Programs such as the Wage Credit Scheme and SME Working Capital Loan preserve jobs as well as alleviate capital concerns, while initiatives supporting the digitization, restructuring, and operations transformation are being introduced in programs such as the SMEs Go Digital Programme, the Productivity Solutions Grant, and the Enterprise Development Grant. We're pleased to partner with the American Chamber of Commerce in Singapore and host a webinar to discuss key portions of the three budget measures that aim to support SMEs and how SMEs may take advantage of such programs. Singapore Budget Insights for SMEs Key portions of the three budget measures that aim to support SMEs How SMEs may take advantage of such programs Who should attend: Singapore based Startups, SMEs or multinational companies from any sector looking to expand into Singapore Companies and entrepreneurs who want to grow their business in Asia via Singapore and learn about its benefits Date: Wednesday, 6 May 2020 Time: 11.00 am - 12:00 pm SGT (Singapore time) Cost: Complimentary for American Chamber of Commerce Singapore members. $18 for all other attendees To join us for the webinar, please click the button to register. Salvatore di Chiara, Head of Account Management, Hawksford Salvatore is a qualified Certified Public accountant in Italy and gained substantial experience in strategic, commercial and operational advice for large European corporations investing in Asia. Salvatore supervises and coordinates the accounting and tax team, advising local and international clients in Singapore and Malaysia, with a focus on Industrial Investments, Oil & Gas, ICT and Luxury. Taisha Grace Antony, Senior Analyst PS-Engage Taisha Grace Antony is a public policy specialist, having worked in intergovernmental organisations, academic institutions, government think tanks and the private sector. Most recently, she worked at TRPC Pte. Ltd., a tech and ICT policy consultancy, where her research covered topics such as digital governance, cybersecurity, cloud computing, cross-border data flows, ecommerce, trade modernisation and digitisation efforts in areas such as health and education. Concurrently, she was also the Director of Engagements at the Asia Cloud Computing Association (ACCA), where she regularly engaged in policy dialogue with governments through multi-stakeholder meetings and written public consultation responses. About the Moderator: Mr. Ang Yuit|Vice President for Strategies, Development & Digitalisation; Chairman; SMECentre@ASME Mr Ang Yuit joined the Executive Council as a Council Member in 2009. Currently serving as Vice President (Membership & Training), Mr Ang spearheads several initiatives and activities, chiefly focused on the Association's membership and training, as well as representing ASME at various events and meetings. Mr Ang spearheaded ASME'S shared services digitalization initiative, SMECEN – an initiative that offers a range of functional processes. Ranging from accounting to human resource administration and payroll, the initiative will benefit SMEs in streamlining their work processes, from initiation for 2 years. About the American Chamber of Commerce Singapore The American Chamber of Commerce in Singapore (AmCham) is the largest and the most active international business association in Singapore and Southeast Asia, with over 5,000 members representing more than 600 companies. The Chamber is comprised of 13 industry-specific committees and conducts nearly 200 events per year. Their goal is to provide the information and facilitate the access and connections that give members insight into the local, regional, and global operating environment, enhance their professional capabilities, and enable them to make well-informed business decisions. Hawksford is a leading provider of company formation, providing administration services and business support from small to medium-sized to large companies in Asia and Europe. We have more than 80 multilingual professionals, in a strategic location in Hong Kong, who are fluent in Mandarin, Cantonese, English, German, Spanish, Czech and Italian. With 200 staff across Asia and 450 globally, based in China, Hong Kong, Singapore and London, Jersey and Milan our people are experienced and highly qualified.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,237
[ 128000, 1585, 482, 220, 1682, 5936, 220, 2366, 15, 198, 92928, 28368, 5000, 14080, 369, 79867, 82, 198, 39, 30378, 8350, 374, 12304, 311, 8427, 449, 279, 3778, 32479, 315, 31480, 304, 21181, 323, 3552, 264, 63660, 922, 279, 21181, 28368, 323, 279, 1401, 11193, 2231, 304, 2035, 555, 279, 21181, 3109, 311, 1520, 79867, 82, 37586, 323, 3139, 65904, 20562, 12, 777, 11774, 627, 92928, 706, 1457, 6004, 2380, 20101, 315, 8199, 11193, 369, 9873, 323, 29939, 304, 2077, 311, 279, 20562, 12, 777, 28522, 12, 364, 38410, 518, 364, 1079, 321, 1873, 518, 323, 364, 47041, 10981, 4527, 578, 6051, 7376, 22925, 10981, 28368, 902, 5764, 32828, 10423, 13254, 323, 45426, 6787, 369, 279, 1510, 6020, 1060, 449, 11193, 3392, 287, 311, 810, 1109, 11157, 279 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1585, 482, 220, 1682, 5936, 220, 2366, 15, 198, 92928, 28368, 5000, 14080, 369, 79867, 82, 198, 39, 30378, 8350, 374, 12304, 311, 8427, 449, 279, 3778, 32479, 315, 31480, 304, 21181, 323, 3552, 264, 63660, 922, 279, 21181, 28368, 323, 279, 1401, 11193, 2231, 304, 2035, 555, 279, 21181, 3109, 311, 1520, 79867, 82, 37586, 323, 3139, 65904, 20562, 12, 777, 11774, 627, 92928, 706, 1457, 6004, 2380, 20101, 315, 8199, 11193, 369, 9873, 323, 29939, 304, 2077, 311, 279, 20562, 12, 777, 28522, 12, 364, 38410, 518, 364, 1079, 321, 1873, 518, 323, 364, 47041, 10981, 4527, 578, 6051, 7376, 22925, 10981, 28368, 902, 5764, 32828, 10423, 13254, 323, 45426, 6787, 369, 279, 1510, 6020, 1060, 449, 11193, 3392, 287, 311, 810, 1109, 11157, 279, -100 ]
Medicine Cardiology & Angiology Management of Hypertension Current Practice and the Application of Landmark Trials Editors: Papademetriou, Vasilios, Andreadis, Emmanuel A., Geladari, Charalampia (Eds.) There is no book about Hypertension with such a concept in the existing literature in the field All the major hypertension trials discussed in a book – pros, cons, effects on international guidelines, unmet needs The reader will be introduced in the first section on how to read and understand a scientific paper Discusses major hypertension trials covering their effects on international guidelines and current medical practice Contains guidance for physicians and scientists on how to use biostatistics and to evaluate their use in trials Features guidance on how to read scientific literature specific to hypertension medicine to gain the maximal understanding This book is a valuable tool to assist both cardiovascular physicians and scientists learning the intricacies of hypertension research and its milestone studies. All major hypertension trials have been reviewed in this book in chronological order with extensive discussion of the study population, study design, and outcomes and with a special focus on what knowledge they offered, their strengths and weaknesses, statistical errors, impact on international guidelines and unmet needs. Importantly, the book also offers physicians and young scientists with basic knowledge regarding medical biostatistics. It is of critical importance for a scientist involved in the field to understand deeply the process of analyzing medical data. Moreover, the accurate interpretation of the results is central for applying evidence-based medicine in everyday clinical practice. Management of Hypertension: Current Practice and the Application of Landmark Trials is a critical tool to assist in the education of physicians and researchers in the field, providing a separate section on pioneer researchers in hypertension and urging readers to become bright exemplars for scientists wishing to pursue a career in academic medicine and hypertension research. Dr Vasilios Papademetriou, MD, is a professor of medicine at Georgetown University School of Medicine, and staff cardiologist at Veterans Affairs Medical Centre in Washington, DC. He is the director of cardiovascular research, interventional hypertension and vascular medicine program, and co-director of the Cardiac Catheterization Laboratory at the Veterans Affairs Medical Centre. Dr Papademetriou's clinical interests include cardiac catheterization, PCI/STENTS, myocardial biopsies, pericardiocentesis, stress and transesophageal echocardiography, and revascularization of high risk patients. He runs a large clinic of patients with resistant hypertension and dyslipidemia, while his research is focused on hypertension and vascular biology, dyslipidemia, atherosclerosis, acute coronary syndromes/acute MI, and cardiovascular complications of diabetes. He has special interest in device-based treatment of patients with resistant hypertension and he is one of the principal investigators of the Renal Denervation projects. He has been a principal investigator for many "investigator initiated" and multicenter clinical trials and received numerous research grants from both public funding and industrial sponsors. Dr Emmanuel A. Andreadis, MD, PhD is the director of the Fourth Department of Internal Medicine and the Head of the Hypertension and Cardiovascular Disease Prevention Center at Evangelismos General Hospital, in Athens, Greece, which has been recognized as an ESH Center of Excellence since 2012. Recently, Dr Andreadis and the Center became affiliated with the Hypertension and Vascular Medicine Clinic of the Veterans Affairs Medical Center, in Washington, DC, USA. He trained extensively in hypertension at the University Department of Medicine & Therapeutics and the Glasgow Blood Pressure Clinic, Western Infirmary, Glasgow, UK, and he is an ESH Clinical Hypertension Specialist. He is also a European Fellow on Medical Angiology having trained at the Saint Mary's Hospital, in London, UK. Dr Andreadis is a member of the European Society of Hypertension and the Hellenic Society of Hypertension. His research focuses on hypertension and especially on blood pressure monitoring. He is a highly talented and experienced clinician, with over 35 years of experience in hospital and clinic settings in both acute and primary care. He is highly familiar with the diagnosis and treatment of multiple disease states and health concerns. Dr Charalampia V. Geladari, MD is a senior Internal Medicine Resident and a Research Fellow at the Hypertension and Cardiovascular Prevention Clinic, Fourth Department of Internal Medicine at Evangelismos General Hospital, in Athens, Greece, and also at the Hypertension and Vascular Medicine Clinic, of the Veterans Affairs Medical Center, in Washington, DC, USA. She has previously been a postdoctoral cardiovascular fellow at Beth Israel Deaconess Medical Center, Harvard University, Boston Massachusetts. "The book is intended for medical scientists, researchers, and physicians who specialize in hypertension treatment. The book is outstanding in providing the landmark studies that have changed the practice of the management of hypertension. … I would recommend this book to anyone interested in this exciting and important field." (Sanbir S Sidhu, Doody's Book Reviews, May 24, 2019) The Importance of Applying Evidence-Based Medicine in Clinical Practice Karagiannis, Thomas Medical Biostatistics: Basic Concepts Bougioukas, Konstantinos I. (et al.) Arterial Hypertension and Cardiovascular Risk Cifkova, Renata The VA Co-operative Studies; The First RCTs in Cardiovascular Disease – A Tribute to Edward D. Freis Papademetriou, Vasilios (et al.) The Role of Dietary Modifications in Controlling Blood Pressure Dimitriadis, K. (et al.) Hypertension Management in the Elderly Nasser, Samar A. (et al.) Management of Hypertension in Diabetes Mellitus Doumas, Michael (et al.) Chronic Kidney Disease and Hypertension Jose, Pedro A. (et al.) Hypertension Management in African Americans: The AASK and Other Landmark Trial Application Li, Ping (et al.) Comparison Therapies in the Treatment of Hypertension. The ASCOT and ACCOMPLISH Trial Magkas, Nikolaos (et al.) Outcomes of Different Antihypertensive Regimens Fujiwara, Takeshi (et al.) Advantages and Disadvantages in Clinical Trials Kostis, William J. (et al.) Arterial Hypertension: What Is the Optimal Goal of Treatment? Andreadis, Emmanuel A. (et al.) Methods of Blood Pressure Assessment Used in Milestone Hypertension Trials Chen, Yi (et al.) The Life and the Major Scientific Contributions of Irvine Page Neurogenic Mechanisms in Pre-hypertension and Pharmacologic Approaches to the Prevention and Treatment of Hypertension: Highlights of Professor Stevo Julius' Scientific Contributions Egan, Brent M. New Frontiers in Cardiovascular Research: Microfluidic Modeling of Cardiovascular Diseases and Applications for Hypertension Research Papademetriou, Iason T. Vasilios Papademetriou Emmanuel A. Andreadis Charalampia Geladari Springer International Publishing AG, part of Springer Nature XXIII, 302
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,478
[ 128000, 13613, 55103, 6938, 31226, 612, 7568, 31226, 198, 23030, 315, 39515, 531, 2711, 198, 5520, 28082, 323, 279, 7473, 315, 11680, 4075, 70544, 198, 21690, 25, 32743, 329, 35926, 462, 283, 11, 650, 30149, 3614, 11, 1628, 888, 285, 11, 61544, 362, 2637, 45482, 329, 2850, 11, 4969, 278, 1141, 689, 320, 2782, 82, 29275, 3947, 374, 912, 2363, 922, 39515, 531, 2711, 449, 1778, 264, 7434, 304, 279, 6484, 17649, 304, 279, 2115, 198, 2460, 279, 3682, 63308, 19622, 14407, 304, 264, 2363, 1389, 8882, 11, 1615, 11, 6372, 389, 6625, 17959, 11, 653, 4150, 3966, 198, 791, 6742, 690, 387, 11784, 304, 279, 1176, 3857, 389, 1268, 311, 1373, 323, 3619, 264, 12624, 5684, 198, 24374, 83972, 3682, 63308, 19622, 18702, 872, 6372, 389, 6625 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 13613, 55103, 6938, 31226, 612, 7568, 31226, 198, 23030, 315, 39515, 531, 2711, 198, 5520, 28082, 323, 279, 7473, 315, 11680, 4075, 70544, 198, 21690, 25, 32743, 329, 35926, 462, 283, 11, 650, 30149, 3614, 11, 1628, 888, 285, 11, 61544, 362, 2637, 45482, 329, 2850, 11, 4969, 278, 1141, 689, 320, 2782, 82, 29275, 3947, 374, 912, 2363, 922, 39515, 531, 2711, 449, 1778, 264, 7434, 304, 279, 6484, 17649, 304, 279, 2115, 198, 2460, 279, 3682, 63308, 19622, 14407, 304, 264, 2363, 1389, 8882, 11, 1615, 11, 6372, 389, 6625, 17959, 11, 653, 4150, 3966, 198, 791, 6742, 690, 387, 11784, 304, 279, 1176, 3857, 389, 1268, 311, 1373, 323, 3619, 264, 12624, 5684, 198, 24374, 83972, 3682, 63308, 19622, 18702, 872, 6372, 389, 6625, -100 ]
With a single-lane footprint, nothing stops the flow of traffic. The 3-pump hydraulic system delivers multi-function power for faster cycle times so nothing stops your productivity. With no DPF, nothing slows you down with regenerations. Did we mention the roomy comfort of its full-sized cab? This machine really is all and nothing.
{ "redpajama_set_name": "RedPajamaC4" }
4,794
[ 128000, 2409, 264, 3254, 2922, 2194, 43972, 11, 4400, 18417, 279, 6530, 315, 9629, 13, 578, 220, 18, 2320, 1538, 44175, 1887, 28421, 7447, 34849, 2410, 369, 10819, 11008, 3115, 779, 4400, 18417, 701, 26206, 13, 3161, 912, 423, 20280, 11, 4400, 70270, 499, 1523, 449, 1239, 804, 811, 13, 14910, 584, 6420, 279, 3130, 88, 6981, 315, 1202, 2539, 28935, 22239, 30, 1115, 5780, 2216, 374, 682, 323, 4400, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 2409, 264, 3254, 2922, 2194, 43972, 11, 4400, 18417, 279, 6530, 315, 9629, 13, 578, 220, 18, 2320, 1538, 44175, 1887, 28421, 7447, 34849, 2410, 369, 10819, 11008, 3115, 779, 4400, 18417, 701, 26206, 13, 3161, 912, 423, 20280, 11, 4400, 70270, 499, 1523, 449, 1239, 804, 811, 13, 14910, 584, 6420, 279, 3130, 88, 6981, 315, 1202, 2539, 28935, 22239, 30, 1115, 5780, 2216, 374, 682, 323, 4400, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Box Office Results for December 23, 2011 This weekend, scoring his first number one film in a lead role since his last turn as Ethan Hunt, Tom Cruise scaled to the top of the charts over the Christmas session with his latest spy sequel Mission: Impossible – Ghost Protocol, which topped the North American box office in its first round of wide release. The top three spots were all sophomore sequels playing musical chairs from last week's rankings as the batch of new holiday releases were met with more modest turn-outs settling for slots in the middle of the top ten. Overall sales were somewhat slow but activity picked up dramatically on Christmas Sunday and studios are hoping that the week ahead will see heavy traffic at multiplexes thanks to the extra time off so many people will have. Christmas Eve is always a soft moviegoing day due to last-minute holiday distractions and theaters closing early so with it falling on the prime day of Saturday this year, weekend grosses took a beating for every movie. Expanding nationwide after five days of exclusive play on large-format screens, Mission: Impossible – Ghost Protocol was the top film among moviegoers over Santa weekend grossing an estimated $46.2M over the four-day Friday-to-Monday period. The fourth installment in the long-running Paramount series averaged $13,402 from 3,448 theaters including IMAX sites, which was very good given the hit all films took on Christmas Eve. It also picked up a sizable co-producer in Skydance, which was welcomed greatly due to the departure of Paula Wagner, Tom Cruise's former partner and co-producer of the first three films. Adding in the earlier limited run in IMAX and other large-format venues, the cume stands at a solid $78.6M with a red hot holiday week still to come when everyday has the potential to behave like a Saturday. The CinemaScore grade was a good A-. Mission: Impossible – Ghost Protocol will easily beat the $134M domestic final of the last film, 2006's Mission: Impossible III, and although it is too early to conclude, it also has a shot at challenging the $215.4M of 2000's Mission: Impossible 2 to become the top-grossing installment of the series. After the disappointing results five years ago of the last flick, and all the negative publicity Cruise attracted in recent years, most thought this franchise could make a comeback like this. Overseas it dominated again with an estimated $43M through Sunday lifting the international total to $140M and the global cume to $219M including Monday's domestic take. Dropping in its second weekend to second place was the tentpole sequel Sherlock Holmes: A Game of Shadows with an estimated $31.8M over four days raising the 11-day tally to $90.6M for Warner Bros. and Silver. Even factoring out the Christmas Eve effect, it was a large decline for pricey pic coming off of a softer-than-expected opening as the three-day period fell by half. All the new choices for grown-ups certainly affected the turn out and teens are not contributing significantly to the grosses. Fellow sophomore sequel Alvin and the Chipmunks: Chipwrecked fared a little better dropping from its opening frame to an estimated Friday-to-Monday take of $20M ranking third for the session. The Fox 2000 and Regency release has taken in $56.9M in 11 days. With kids now out of school and on break, the studios are expecting stellar daily grosses for the next week. Columbia and MGM's much-hyped The Girl With the Dragon Tattoo opened in fourth place with a mediocre start grossing an estimated $19.4M over the four-day holiday weekend and $27.7M since debuting on Tuesday night. Directed by David Fincher, this film is more of an adaptation of the best-selling novel and less a remake of the 2009 Swedish film of the same name. It averaged $6,658 from 2,914 locations and like other films is hoping to pick up solid numbers during the holiday week ahead. Reviews were quite good and the Daniel Craig and Rooney Mara starrer has even scored some notices during awards season, however, the darker and violent subject matter coupled with intense competition for the attention of mature adults led to an underwhelming result over the happy and cheery yuletide holiday. Still, a domestic final of $100M cannot be ruled out this early in the run as moviegoers continue to catch up on films they are interested in. Steven Spielberg had a bumpy start to his Christmas double feature offering for North American movie fans. The animated action adventurer The Adventures of Tintin bowed to just $16.1M this four-day weekend, according to estimates, with $20.8M across the six-day debut period of Wednesday-to-Monday. The domestic total including the earlier run in Quebec, which began on December 9 is $24.1M. The 3D Paramount and Columbia release played in 3,087 theaters and averaged $5,215 over four days but with sensational reviews is hoping to find American audiences over time. The property is not too well-known in the United States, which always posed a challenge. The Adventures of Tintin opened in Europe and most international territories in October and has banked a stellar $240M+ overseas already making the U.S. not too important to the overall picture. While the film was marketed towards parents and kids, it's true audience is more of the true film fans that were waiting to see Spielberg make another adventure film. Also not fast and furious out of the gate, but well-positioned to gain some ground during the holiday week ahead, was the Matt Damon drama We Bought a Zoo, which opened on Friday and collected an estimated $15.6M over the long weekend from 3,117 locations for a $5,005 average. The PG-rated film was not based on any brand that would lead to upfront excitement and Damon is not much of a box office draw outside of the action genre so 20th Century Fox has been counting on positive buzz from regular moviegoers to help it sell the film. Two rounds of sneak previews weeks ago and the two days of nationwide release before Christmas Day were intended to get the feel-good film in front of ordinary people who would then spread strong word-of-mouth over the holidays allowing those recommendations to kick in from December 25 onwards. An encouraging A grade from CinemaScore indicates that the product is indeed pleasing ticket buyers so We Bought a Zoo numbers will have to be watched in the days and weeks ahead. Reviews have been mixed and won't help the cause too much, but working in the film's favor is that it is the only truly American film for grown-ups among all the major films this holiday week. Other films feature some combination of foreign settings, characters, and actors. Studio research showed that the We Bought a Zoo audience was 58% female and 59% 25 and older. The World War I drama War Horse enjoyed a solid debut on Christmas Sunday with $7.5M on opening day and an estimated $15M for the two-day Sunday-Monday span. Released by Touchstone, the PG-13 DreamWorks and Reliance film averaged a strong $6,324 over only two days and was able to capitalize on good reviews and the brand name of Steven Spielberg who shot the film while The Adventure of Tintin's extensive effects work was being done. DreamWorks is hoping for a long run with good notices from audiences during the holiday week ahead to help sell it to a wider audience, while banking on nods from the various awards shows coming up, including the most important Academy Awards. Also opening on Christmas Day was the thriller The Darkest Hour, which bowed to $3M on Sunday and $5.5M over two days. The Summit and New Regency release averaged only $2,367 across two days from 2,324 playdates and earned a discouraging C+ CinemaScore grade. Holdovers with modest grosses rounded out the top ten. The New Line comedy New Year's Eve tumbled to an estimated $5M giving the ensemble pic a disappointing $34.3M to date. Fox Searchlight and Ad Hominem's awards contender The Descendants grossed an estimated $3.4M boosting the total to $33.7M. The top ten films grossed an estimated $178M over the Friday-to-Monday period, while the Top 20 hauled in roughly $200M thanks to a major rebound on Sunday and Monday. Last Christmas, Universal Pictures and Paramount Pictures' Little Fockers debuted with $34M; and the 2009 Christmas saw 20th Century Fox's Avatar remain in the top spot with $75.6M. December 23, 2011 to December 25, 2011 Top Ten 1. Mission: Impossible – Ghost Protocol Paramount Pictures (Viacom) and Skydance Productions 2. Sherlock Holmes: A Game of Shadows Warner Bros. Pictures (TimeWarner) and Silver Pictures 3. Alvin and the Chipmunks: Chipwrecked Fox 2000 Pictures (Fox) and Regency Enterprises 4. The Girl With the Dragon Tattoo Columbia Pictures (Sony) and Metro-Goldwyn-Mayer Pictures (Spyglass) 5. The Adventures of Tintin Paramount Pictures (Viacom) and Columbia Pictures (Sony) 6. We Bought a Zoo 20th Century Fox (Fox) 7. War Horse a Touchstone release (Disney) DreamWorks Pictures (DreamWorks SKG) and Reliance Entertainment 8. The Darkest Hour a Summit release New Regency Pictures (Regency Enterprises) 9. New Year's Eve New Line Cinema (TimeWarner) 10. The Descendants a Fox Searchlight release (Fox) Ad Hominem Enterprises 1. Little Fockers Universal Pictures (NBCUniversal) and Paramount Pictures (Viacom) 2. True Grit 3. Tron: Legacy Walt Disney Pictures (Disney) 4. The Chronicles of Narnia: The Voyage of the Dawn Treader Fox 2000 Pictures (Fox) and Walden Media 5. Yogi Bear Warner Bros. Pictures (TimeWarner) 6. The Fighter a Paramount (Viacom) and Weinstein Co. release 7. Gulliver's Travels 8. Black Swan Fox Searchlight Pictures (Fox) 9. Tangled Walt Disney Animation Studios (Disney) 10. The Tourist a Columbia release (Sony) 1. Avatar 2. Sherlock Holmes 3. Alvin and the Chipmunks: The Squeakquel 4. It's Complicated Universal Pictures (NBCUniversal) 5. The Blind Side a Warner Bros. release (TimeWarner) 6. Up in the Air Paramount Pictures (Viacom) 7. The Princess and the Frog 8. Nine The Weinstein Company and Relativity Media 9. Did You Hear About the Morgans? Columbia Pictures (Sony) and Castle Rock Entertainment (TimeWarner) 10. Invictus ~ by Matt Whitfield on December 30, 2011. Posted in Film, Matt, Movies, Uncategorized Tags: 20th Century Fox, 3D, Academy Awards, Ad Hominem Enterprises, Alcon Entertainment, Alvin and the Chipmunks: Chipwrecked, Alvin and the Chipmunks: The Squeakquel, Avatar, Black Swan, Box Office Results for December 23 2011, Castle Rock Entertainment, CinemaScore, Columbia Pictures, Daniel Craig, David Fincher, Did You Hear About the Morgans?, Disney, DreamWorks Pictures, Ethan Hunt, Fox, Fox 2000 Pictures, Fox Entertainment Group, Fox Searchlight Pictures, GK Films, Gulliver's Travels, IMAX, Invictus, It's Complicated, Little Fockers, Matt Damon, Metro-Goldwyn-Mayer Pictures, MGM, Mission Impossible Ghost Protocol, Mission: Impossible 2, Mission: Impossible III, NBCUniversal, New Line Cinema, New Regency Pictures, New Year's Eve, Nine, Paula Wagner, RealD 3D, Regency Enterprises, Relativity Media, Reliance Entertainment, Rooney Mara, Sherlock Holmes, Sherlock Holmes: A Game of Shadows, Silver Pictures, Skydance Productions, Sony, Sony Pictures Entertainment, Spyglass, Spyglass Entertainment, Steven Spielberg, Summit Entertainment, Tangled, The Adventures of Tintin, The Blind Side, The Chronicles of Narnia: The Voyage of the Dawn Treader, The Darkest Hour, The Descendants, The Fighter, The Girl With the Dragon Tattoo, The Princess and the Frog, The Tourist, The Weinstein Company, TimeWarner, Tom Cruise, Touchstone Pictures, Tron: Legacy, True Grit, Universal Pictures, Up in the Air, Viacom, Walden Media, Walt Disney Animation Studios, Walt Disney Pictures, Walt Disney Studios Motion Pictures, War Horse, Warner Bros. Pictures, We Bought a Zoo, World War I, Yogi Bear
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,444
[ 128000, 1642, 8410, 18591, 369, 6790, 220, 1419, 11, 220, 679, 16, 198, 2028, 9178, 11, 20413, 813, 1176, 1396, 832, 4632, 304, 264, 3063, 3560, 2533, 813, 1566, 2543, 439, 63264, 27690, 11, 8529, 47477, 31790, 311, 279, 1948, 315, 279, 27223, 927, 279, 10280, 3882, 449, 813, 5652, 21930, 35861, 24098, 25, 83752, 1389, 26099, 25590, 11, 902, 40901, 279, 4892, 3778, 3830, 5274, 304, 1202, 1176, 4883, 315, 7029, 4984, 13, 578, 1948, 2380, 19300, 1051, 682, 51498, 11506, 2053, 5737, 18273, 26993, 505, 1566, 2046, 596, 33407, 439, 279, 7309, 315, 502, 13560, 19786, 1051, 2322, 449, 810, 27946, 2543, 85075, 52945, 369, 16087, 304, 279, 6278, 315, 279, 1948, 5899, 13, 28993, 6763, 1051, 14738, 6435, 719, 5820, 13061, 709, 29057, 389, 10280 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1642, 8410, 18591, 369, 6790, 220, 1419, 11, 220, 679, 16, 198, 2028, 9178, 11, 20413, 813, 1176, 1396, 832, 4632, 304, 264, 3063, 3560, 2533, 813, 1566, 2543, 439, 63264, 27690, 11, 8529, 47477, 31790, 311, 279, 1948, 315, 279, 27223, 927, 279, 10280, 3882, 449, 813, 5652, 21930, 35861, 24098, 25, 83752, 1389, 26099, 25590, 11, 902, 40901, 279, 4892, 3778, 3830, 5274, 304, 1202, 1176, 4883, 315, 7029, 4984, 13, 578, 1948, 2380, 19300, 1051, 682, 51498, 11506, 2053, 5737, 18273, 26993, 505, 1566, 2046, 596, 33407, 439, 279, 7309, 315, 502, 13560, 19786, 1051, 2322, 449, 810, 27946, 2543, 85075, 52945, 369, 16087, 304, 279, 6278, 315, 279, 1948, 5899, 13, 28993, 6763, 1051, 14738, 6435, 719, 5820, 13061, 709, 29057, 389, 10280, -100 ]
The UK's most famous Pub Landlord, Al Murray, will be visiting The Red Lion in Bletchley, Milton Keynes, on Friday February 5. It comes after the pub won a competition in partnership with pub operator, Punch, and brewer, Ramsgate Brewery. The Red Lion, part of the Punch pub group, was entered into a prize draw whereby the winner would be visited by Al Murray. The popular comedian known for his publican persona, The Pub Landlord, will be visiting the pub Friday evening, at 6.30pm. He will be helping Guy Plumb and his bar staff by serving behind the bar, meeting customers, taking photos and signing autographs. Customers and fans of Al Murray are very welcome to visit The Red Lion at Lock View Lane on the day to meet the comedian for themselves.
{ "redpajama_set_name": "RedPajamaC4" }
9,733
[ 128000, 791, 6560, 596, 1455, 11495, 23435, 11680, 26680, 11, 1708, 28253, 11, 690, 387, 17136, 578, 3816, 33199, 304, 426, 1169, 331, 3258, 11, 58447, 82603, 11, 389, 6740, 7552, 220, 20, 627, 2181, 4131, 1306, 279, 6814, 2834, 264, 10937, 304, 15664, 449, 6814, 5793, 11, 54275, 11, 323, 17109, 261, 11, 15504, 2034, 349, 66727, 627, 791, 3816, 33199, 11, 961, 315, 279, 54275, 6814, 1912, 11, 574, 10862, 1139, 264, 22643, 4128, 49001, 279, 13946, 1053, 387, 12263, 555, 1708, 28253, 627, 791, 5526, 51912, 3967, 369, 813, 586, 276, 29055, 11, 578, 23435, 11680, 26680, 11, 690, 387, 17136, 279, 6814, 6740, 11714, 11, 520, 220, 21, 13, 966, 5298, 627, 1548, 690, 387, 10695, 26340, 1856, 3635, 323, 813, 3703, 5687, 555 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 791, 6560, 596, 1455, 11495, 23435, 11680, 26680, 11, 1708, 28253, 11, 690, 387, 17136, 578, 3816, 33199, 304, 426, 1169, 331, 3258, 11, 58447, 82603, 11, 389, 6740, 7552, 220, 20, 627, 2181, 4131, 1306, 279, 6814, 2834, 264, 10937, 304, 15664, 449, 6814, 5793, 11, 54275, 11, 323, 17109, 261, 11, 15504, 2034, 349, 66727, 627, 791, 3816, 33199, 11, 961, 315, 279, 54275, 6814, 1912, 11, 574, 10862, 1139, 264, 22643, 4128, 49001, 279, 13946, 1053, 387, 12263, 555, 1708, 28253, 627, 791, 5526, 51912, 3967, 369, 813, 586, 276, 29055, 11, 578, 23435, 11680, 26680, 11, 690, 387, 17136, 279, 6814, 6740, 11714, 11, 520, 220, 21, 13, 966, 5298, 627, 1548, 690, 387, 10695, 26340, 1856, 3635, 323, 813, 3703, 5687, 555, -100 ]
Chinese Engineers Might Design A Massive High-Speed Railway To Connect China And The US Sophie Song, The proposed line would begin in north-east China and run up through Siberia, pass through a tunnel underneath the Pacific Ocean then cut through Alaska and Canada to reach the continental US. Amanda Macias/Business Insider Digging a hole to China may not sound as crazy in the near future as it does now. That's because some ambitious Chinese engineers are considering plans to build a high-speed railway line beneath the Pacific Ocean that would connect China with the continental United States. For some perspective on just how huge such a project would be, it would take 200 kilometers (125 miles) of undersea tunnel just to connect Russia and Alaska, said Wang Mengshu, a railway expert at the Chinese Academy of Engineering, the Beijing Times reported on Thursday. But Wang insisted the idea is not as crazy as it sounds. "Right now, we're already in discussions," Wang said. "Russia has already been thinking about this for many years." To reach the U.S. from China, it would require 13,000 kilometers of tracks, and it would take a train two days to make the trip if its average speed is 220 miles per hour, according to the Guardian. A high-speed train enters Beijing railway station. Jason Lee/Reuters China's tunnel technology is ready for the challenge, China Daily reported. The technology is part of China's current plans to build a high-speed railway between the southeastern province of Fujian and the island of Taiwan, which will be funded by China. The trans-Pacific project, named the "China-Russia-Canada-America" line, would require a considerable feat of engineering. If realized, it would be the world's longest undersea tunnel, four times the length of the Channel Tunnel, which connects England and France. Wang outlined plans for a few other ambitious high-speed railway projects. One project's rail lines would extend from London to Paris, then to Berlin, Warsaw, Kiev and Moscow, where it would split into two routes, with one ending in Kazakhstan and the other in China's Manchuria region. A second project's rail lines would run from Urumqi in China to Central Asia, then to Iran and Turkey, ending in Germany. Construction has begun for both projects inside China, and the parts of both projects outside the country are still being negotiated with foreign governments. All of the projects are part of China's drive to take its high-speed railway construction technology abroad. As proof of China's interest in pursuing this goal, on each of his recent visits to other countries, Chinese Premier Li Keqiang made it a habit to recommend Chinese railway construction technology. Most recently, he recommended the technology to leaders during his four-country visit to Africa this week. Read the original article on International Business Times. Copyright 2019. Follow International Business Times on Twitter. More: International Business Times China Train Transportation
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,811
[ 128000, 46023, 49796, 34351, 7127, 362, 82564, 5234, 95577, 55556, 2057, 13313, 5734, 1628, 578, 2326, 198, 86332, 648, 19508, 345, 791, 11223, 1584, 1053, 3240, 304, 10411, 40607, 5734, 323, 1629, 709, 1555, 68600, 689, 11, 1522, 1555, 264, 26711, 30456, 279, 16867, 22302, 1243, 4018, 1555, 28366, 323, 7008, 311, 5662, 279, 58636, 2326, 627, 32, 36645, 7553, 3557, 16675, 2108, 46099, 198, 38198, 3252, 264, 14512, 311, 5734, 1253, 539, 5222, 439, 14599, 304, 279, 3221, 3938, 439, 433, 1587, 1457, 13, 3011, 596, 1606, 1063, 32855, 8620, 25175, 527, 13126, 6787, 311, 1977, 264, 1579, 30699, 40106, 1584, 24923, 279, 16867, 22302, 430, 1053, 4667, 5734, 449, 279, 58636, 3723, 4273, 627, 2520, 1063, 13356, 389, 1120, 1268, 6908, 1778, 264, 2447, 1053, 387 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 46023, 49796, 34351, 7127, 362, 82564, 5234, 95577, 55556, 2057, 13313, 5734, 1628, 578, 2326, 198, 86332, 648, 19508, 345, 791, 11223, 1584, 1053, 3240, 304, 10411, 40607, 5734, 323, 1629, 709, 1555, 68600, 689, 11, 1522, 1555, 264, 26711, 30456, 279, 16867, 22302, 1243, 4018, 1555, 28366, 323, 7008, 311, 5662, 279, 58636, 2326, 627, 32, 36645, 7553, 3557, 16675, 2108, 46099, 198, 38198, 3252, 264, 14512, 311, 5734, 1253, 539, 5222, 439, 14599, 304, 279, 3221, 3938, 439, 433, 1587, 1457, 13, 3011, 596, 1606, 1063, 32855, 8620, 25175, 527, 13126, 6787, 311, 1977, 264, 1579, 30699, 40106, 1584, 24923, 279, 16867, 22302, 430, 1053, 4667, 5734, 449, 279, 58636, 3723, 4273, 627, 2520, 1063, 13356, 389, 1120, 1268, 6908, 1778, 264, 2447, 1053, 387, -100 ]
ROBOTC.net forums - View topic - Can you create a project? Can you create a project? I have been playing with the RobotC client software. It is a very nice program with lots of help for the API and programing concepts. One thing I am not seeing is setting up a project so you can compile and link multiple .c files in a single program. I only seem to be able to build one file at a time. Is this supported? Re: Can you create a project? There is no precompiler or make mechanism in ROBOTC. You can use the #include to, well, include other .c or .h files. Beware though, that files cannot be included twice in your program or the compiler will choke and die. to add another c file. That works for me, at the most there will be one more .c file. You can include multiple files using #include "filename" To view the Directories preferences, go to Window > Menu Level > and select Expert. Then go to View > Preferences > Detailed Preferences.
{ "redpajama_set_name": "RedPajamaC4" }
9,686
[ 128000, 1308, 53971, 34, 5181, 25907, 482, 2806, 8712, 482, 3053, 499, 1893, 264, 2447, 5380, 6854, 499, 1893, 264, 2447, 5380, 40, 617, 1027, 5737, 449, 279, 26945, 34, 3016, 3241, 13, 1102, 374, 264, 1633, 6555, 2068, 449, 10283, 315, 1520, 369, 279, 5446, 323, 2068, 287, 19476, 13, 3861, 3245, 358, 1097, 539, 9298, 374, 6376, 709, 264, 2447, 779, 499, 649, 19742, 323, 2723, 5361, 662, 66, 3626, 304, 264, 3254, 2068, 13, 358, 1193, 2873, 311, 387, 3025, 311, 1977, 832, 1052, 520, 264, 892, 13, 2209, 420, 7396, 5380, 697, 25, 3053, 499, 1893, 264, 2447, 5380, 3947, 374, 912, 864, 34720, 477, 1304, 17383, 304, 12076, 53971, 34, 13, 1472, 649, 1005, 279, 674, 1012, 311, 11, 1664, 11, 2997, 1023 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1308, 53971, 34, 5181, 25907, 482, 2806, 8712, 482, 3053, 499, 1893, 264, 2447, 5380, 6854, 499, 1893, 264, 2447, 5380, 40, 617, 1027, 5737, 449, 279, 26945, 34, 3016, 3241, 13, 1102, 374, 264, 1633, 6555, 2068, 449, 10283, 315, 1520, 369, 279, 5446, 323, 2068, 287, 19476, 13, 3861, 3245, 358, 1097, 539, 9298, 374, 6376, 709, 264, 2447, 779, 499, 649, 19742, 323, 2723, 5361, 662, 66, 3626, 304, 264, 3254, 2068, 13, 358, 1193, 2873, 311, 387, 3025, 311, 1977, 832, 1052, 520, 264, 892, 13, 2209, 420, 7396, 5380, 697, 25, 3053, 499, 1893, 264, 2447, 5380, 3947, 374, 912, 864, 34720, 477, 1304, 17383, 304, 12076, 53971, 34, 13, 1472, 649, 1005, 279, 674, 1012, 311, 11, 1664, 11, 2997, 1023, -100 ]
Ike is an Anatolian Shepherd dog born in with his goat herd. He has guarded goats his entire life. He came to live with us when he was almost 2 years old. He had next to no socialization or training but had been a working livestock guardian dog. When he came to live with us and guard our goats, we had to neuter him a few months after joining our ranch. His testosterone was raging and he was bark rather aggressively at people who did not live here. Some aggressive barking and intense protective demeanor is necessary and required, but there is also a limit to what is appropriate. After neutering, I started to see a different Ike with people. He was no longer overly intense in his interactions with visitors because he would stand down when I told him to. However, no visitor ever doubted Ike would guard those goats with his life. Ike was also gentle with his goats and let kid goats climb on him. We had lost our previous head male guard and felt Ike was on his way to being our new "Larick". We had some recurring health issues with him that seemed to never fully heal. In 2017, we had a predator attack on the ranch that resulted in my main female Askbash being killed. No goats or llamas were harmed, but we lost our Willow. I noticed in the year after the attack that Ike seemed unwell. He seemed depressed and out of sorts and was just plain grumpy. He was snarling and snapping at baby goats. He never let them climb on him any more and was getting testy with the other dogs. Ike visited the vet several times and a few health issues kept coming up which we kept treating but he never seemed to feel well. We coukdn't find anything obvious to explain how he had seemed to age….grow old almost overnight …. and his personality change. I still believe he was ornery because of pain even if we could not find it. The change of how he was with his goats was too much to just be an off day. We made the decision to let Ike go and rest in peace. His body no longer hurts, he no longer has to work and guard, and he no longer needs to fight with the other dogs or predators in the woods. I really still miss him greatly and the security for protection I always felt he provided. I know he was in pain and was not happy, but now he can rest.
{ "redpajama_set_name": "RedPajamaC4" }
9,225
[ 128000, 40, 441, 374, 459, 96664, 89108, 59646, 5679, 9405, 304, 449, 813, 54392, 59213, 13, 1283, 706, 64263, 71932, 813, 4553, 2324, 13, 1283, 3782, 311, 3974, 449, 603, 994, 568, 574, 4661, 220, 17, 1667, 2362, 13, 1283, 1047, 1828, 311, 912, 3674, 2065, 477, 4967, 719, 1047, 1027, 264, 3318, 51876, 47132, 5679, 627, 4599, 568, 3782, 311, 3974, 449, 603, 323, 7771, 1057, 71932, 11, 584, 1047, 311, 26878, 261, 1461, 264, 2478, 4038, 1306, 18667, 1057, 39161, 13, 5414, 40032, 574, 70517, 323, 568, 574, 54842, 4856, 49139, 520, 1274, 889, 1550, 539, 3974, 1618, 13, 4427, 19738, 293, 34552, 323, 19428, 29219, 94115, 374, 5995, 323, 2631, 11, 719, 1070, 374, 1101, 264, 4017, 311, 1148, 374, 8475, 13, 4740, 26878, 4776 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 40, 441, 374, 459, 96664, 89108, 59646, 5679, 9405, 304, 449, 813, 54392, 59213, 13, 1283, 706, 64263, 71932, 813, 4553, 2324, 13, 1283, 3782, 311, 3974, 449, 603, 994, 568, 574, 4661, 220, 17, 1667, 2362, 13, 1283, 1047, 1828, 311, 912, 3674, 2065, 477, 4967, 719, 1047, 1027, 264, 3318, 51876, 47132, 5679, 627, 4599, 568, 3782, 311, 3974, 449, 603, 323, 7771, 1057, 71932, 11, 584, 1047, 311, 26878, 261, 1461, 264, 2478, 4038, 1306, 18667, 1057, 39161, 13, 5414, 40032, 574, 70517, 323, 568, 574, 54842, 4856, 49139, 520, 1274, 889, 1550, 539, 3974, 1618, 13, 4427, 19738, 293, 34552, 323, 19428, 29219, 94115, 374, 5995, 323, 2631, 11, 719, 1070, 374, 1101, 264, 4017, 311, 1148, 374, 8475, 13, 4740, 26878, 4776, -100 ]
Amid a mounting outcry, Defense Secretary Ash Carter halted Pentagon efforts to recollect money given to thousands of California National Guard members. Soldiers were asked to repay bonuses of $15,000 or more, which had been doled out improperly by recruiters during the wars in Iraq and Afghanistan. Hari Sreenivasan talks to David Cloud of the Los Angeles Times and Sgt. 1st Class Robert Richmond. But first: The Defense Department today tried to defuse a burgeoning controversy surrounding recruitment bonuses for soldiers. The Pentagon faced a mounting outcry for trying to recoup enlistment bonuses from thousands of California National Guard members. But Defense Secretary Ash Carter interrupted a visit today to NATO headquarters in Brussels to address the issue. ASHTON CARTER, Secretary of Defense: I have ordered the suspension of all efforts to collect reimbursement from affected California Guard members, and that suspension will continue until I'm satisfied that our process is working. Over the weekend, The Los Angeles Times reported California Guard soldiers are being asked to repay bonuses of $15,000 or more. The payments were an effort to meet enlistment goals during the wars in Iraq and Afghanistan. They were intended for soldiers with skills in high demand, but recruiters doled them out improperly. Some of the soldiers say, it's not their fault. SGT. 1ST CLASS BRYAN STROTHER, California National Guard: I had done everything that they had asked of me. These were promises that were made. The push to take back the bonus money has also drawn angry reactions from Congress. Secretary Carter says he wants all the cases resolved by July 1. We take a closer look at this now with Los Angeles Times reporter David Cloud, who broke this story, and Sergeant 1st Class Robert Richmond. He reenlisted in the California National Guard in 2006 and received a $15,000 bonus, but then was told he needed to pay the money back. David, what's happening now in terms of what the secretary of defense said today? What does his order do? Well, his order halts the recoupment of all of these cases right now, and sets up a process to essentially speed up the appeals process that many soldiers have gone through and have, you know, in a very frustrating way, you know, gone through years of efforts to try to get this recoupment stopped. So, the Pentagon is setting up a process to speed up those appeals. How did we get here? How did we get to the point that he had to say, stop this? It's a long tale that really began in 2006, when the Guard and the Army as a whole needed troops to go to Iraq and to Afghanistan. So, they started paying large bonuses, and they started paying without a lot of controls. And, in fact, there was a fair amount of fraud in what was done. Soldiers didn't know about that. They — most soldiers didn't know about that. They took the money in good faith, completed their enlistments. And then, a decade later, they get a bill from the Pentagon or from the National Guard saying, you have got to pay us this money back. A lot of them are justifiably shocked. Robert Richmond, you were one of those soldiers that had this happen to them. How much did this money mean to you when you got it? And, more important, what happened to you when you were requested to return it? SGT. 1ST CLASS ROBERT RICHMOND, U.S. Army Special Forces: Well, for me personally, the money meant something. For other soldiers, because I'm just one of many, it meant the world. These other soldiers, it probably was everything, that they relied on that bonus solely for this. For me, I partially relied on it. I had choices to go into the civilian sector, where I could earn a lot more money, even working as an adviser in a civilian capacity. But I asked if I was eligible for a bonus. They said I was eligible for $15,000 for six years. I knew for a fact that that enlistment would send me back to Iraq. However, it was enough. And with the camaraderie of being with my unit, it was enough for me to make the decision to go ahead and enlist for another six years. When they came back 10 years — you know, nine years later, actually, and said I have to pay this money back, I was in shock, in awe. And the more that it went on, I just felt betrayed. I felt it just — it lacked empathy. I felt like I was some sort of a criminal, and they're — going to give it back right now, or they were going to ruin my life financially, turning me in. And it was very threatening. David, you said the government has already recouped, what, about $22 million of it. What happens to the people who have repaid sums of money that perhaps shouldn't have? That's a very good question and is one that will be difficult to untangle. There are soldiers I know, one in particular, who owed $46,000, and to pay that off, he and his family refinanced their home. So, they took steps that cost them money to pay off the money. To now go back and make them whole will not be an easy task. But it's one that I think the Pentagon will look at. I mean, this has generated so much outrage in Congress and so much attention that I think people who, you know, did take the steps to pay the money back, even thinking that they didn't really owe it, will in some sense be made whole. I'm not sure they will be made totally whole, but they will get some money back. Robert, I see you shaking you head. One of the people that David spoke to in the story, she said, you know, go ahead, fine, take the money back, but give me my years back, too. SGT. 1ST CLASS ROBERT RICHMOND: Yes, it certainly won't make me whole. You know, what I did in the military and what I did — you know, what happened to me, that — I signed a contract. I did that. That's fine. If you gave me my $15,000 bonus back, that would hardly make me whole, because by — with what they did to me, they ruined my credit. They ruined my finances. I have so many financial losses as a result. And I'm just — I'm in the middle of the group. There are soldiers out there that have probably suffered so bad financially and emotionally that they will never be able to recover just by giving them their money back. It's not even close. David, it seems — there seems to be some agreement right now in Congress to say, this is horrible. By coincidence, there's an election two weeks out. And part of your reporting showed that Congress was notified about this a couple of years ago. Yes. That's an interesting part of the story. I mean, when the story broke on Saturday, you know, in the days after, you had a lot of members of Congress putting out press releases expressing a lot of outrage about it, saying something needed to be done. As the story came out, it turned out the California Guard had gone to members of the California delegation two years earlier and asked them to pass a provision that would have helped allay some of these cases. The provision wasn't passed at the time. Several members did initially propose it. It was dropped because it would have cost money. And this was a time when sequestration, across-the-board cuts in the military budget were happening. There was just a resistance to doing that sort of thing. So, nothing happened until it appeared in our newspaper. Robert, you set up a petition online, and I'm assuming that even before that, you have been listening to and hearing from other soldiers. Give us a sense of how widespread this is. We are focusing on California right now, but there are National Guard members across the country. SGT. 1ST CLASS ROBERT RICHMOND: That's absolutely right. When I first received my letter, I honestly thought I was the only one. And while I was calling people and asking questions, I came to find out there was nearly 17,000 soldiers affected, was the first number I heard. Then I heard it was 16,000 in California and at least 1,000 nationwide. Recently, by doing my petition, people write to me all the time because I have my contact information in there. I recently was reached out to by somebody from the actual Navy who is having the same issues. All right, Sergeant 1st Class Robert Richmond and David Cloud of The L.A. Times, thank you both for joining us tonight. SGT. 1ST CLASS ROBERT RICHMOND: Thank you very much.
{ "redpajama_set_name": "RedPajamaC4" }
4,537
[ 128000, 6219, 307, 264, 34739, 88963, 11, 16777, 12667, 14937, 25581, 61195, 35636, 9045, 311, 1421, 25627, 3300, 2728, 311, 9214, 315, 7188, 5165, 12542, 3697, 13, 75531, 1051, 4691, 311, 54438, 33321, 315, 400, 868, 11, 931, 477, 810, 11, 902, 1047, 1027, 656, 839, 704, 75298, 555, 93940, 2391, 279, 25981, 304, 11340, 323, 21139, 13, 98545, 328, 4542, 39924, 276, 13739, 311, 6941, 15161, 315, 279, 9853, 12167, 8691, 323, 56760, 13, 220, 16, 267, 3308, 8563, 35348, 627, 4071, 1176, 25, 578, 16777, 6011, 3432, 6818, 311, 711, 817, 264, 90669, 26654, 14932, 34102, 33321, 369, 15201, 627, 791, 35636, 17011, 264, 34739, 88963, 369, 4560, 311, 1421, 13649, 88724, 479, 33321, 505, 9214, 315, 7188, 5165, 12542, 3697, 13, 2030, 16777, 12667, 14937 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 6219, 307, 264, 34739, 88963, 11, 16777, 12667, 14937, 25581, 61195, 35636, 9045, 311, 1421, 25627, 3300, 2728, 311, 9214, 315, 7188, 5165, 12542, 3697, 13, 75531, 1051, 4691, 311, 54438, 33321, 315, 400, 868, 11, 931, 477, 810, 11, 902, 1047, 1027, 656, 839, 704, 75298, 555, 93940, 2391, 279, 25981, 304, 11340, 323, 21139, 13, 98545, 328, 4542, 39924, 276, 13739, 311, 6941, 15161, 315, 279, 9853, 12167, 8691, 323, 56760, 13, 220, 16, 267, 3308, 8563, 35348, 627, 4071, 1176, 25, 578, 16777, 6011, 3432, 6818, 311, 711, 817, 264, 90669, 26654, 14932, 34102, 33321, 369, 15201, 627, 791, 35636, 17011, 264, 34739, 88963, 369, 4560, 311, 1421, 13649, 88724, 479, 33321, 505, 9214, 315, 7188, 5165, 12542, 3697, 13, 2030, 16777, 12667, 14937, -100 ]
Liverpool analysis – Virgil van Dijk prompts transfer question as Klopp could make big changes Van Dijk prompts transfer question It takes a lot to down Virgil van Dijk. So when the Liverpool defender let out an audible yelp before crumbling to the turf early in the second half, he could probably hear the collective gasp from those watching back on Merseyside fearing the worst. Replays, though, revealed Van Dijk had been cut above the right eye by a stray elbow from clumsy Red Bull Salzburg substitute Rasmus Kristensen, who would later deck Kostas Tsimikas in similar fashion. Painful, yes, and requiring a staple or two, but not too much of a long-term problem. However, the minor fright placed into sharp focus an ongoing transfer poser for Jurgen Klopp. Do Liverpool need to buy another centre-back? Dejan Lovren's departure has left the Reds with three senior options. One of those, Joel Matip, has been absent since June and has started only one top-flight game in 10 months, although he could be back for the Premier League opener at Leeds United on September 12. So when Van Dijk exited at the Red Bull Arena on Tuesday afternoon, Joe Gomez was instead partnered with Nat Phillips, who spent last season on loan at Stuttgart and has made just a solitary senior appearance for the Reds. After that, the choice is limited. Fabinho could perhaps do a job at centre-back, albeit not for any length of time. And it's far too early for any of the Academy hopefuls, as much as Billy Koumetio has stepped up over the last week. See also Man City morning headlines as Zinchenko makes amends and Pep delivers verdict on defeat Then there's the question of a diminished competition for places, with Gomez less than stellar for most of the first half and responsible for Salzburg's second goal. Van Dijk will be patched up for the Community Shield against Arsenal on Saturday. But his scare is a reminder to Liverpool of a situation that could well need addressing before the transfer window closes in October. Klopp given midfield poser If pre-season is usually an opportunity for fringe players to stake their claim, this abbreviated version has proven the opposite. Jurgen Klopp has instead utilised the short warm-up programme to pretty much signpost Liverpool's starting line-up for Wembley this weekend. In truth, absences have in any case limited scope for experimentation, with Alex Oxlade-Chamberlain, Divock Origi, Xherdan Shaqiri, Trent Alexander-Arnold, Harry Wilson, Joel Matip and Jordan Henderson all missing. And, if anything, the performance in Salzburg saw some likely starters in danger of playing their way on to the bench. What did you make of Liverpool's performance vs Salzburg? Let us know in the comments below Fabinho relies on rhythm, and takes time to regain his form after any spell on the sidelines. The short turnaround in seasons, however, means that luxury isn't available, and his fitful display here – epitomised when mugged for Salzburg's opener – has put pressure on his place, not least with Gini Wijnaldum solid, Naby Keita energetic and both Curtis Jones and James Milner making a positive difference from the bench. Neco Williams had a tough time at right-back as his learning curve became apparent – Milner would be another option in the position – while Takumi Minamino and later two-goal Rhian Brewster were lively in a way the disappointing Roberto Firmino was not. See also The United States wins the Gold Cup for the seventh time - international football Klopp's Wembley selection has become more difficult in a way he wouldn't have wanted. Salzburg show the Arsenal way As preparation for Saturday, the first 20 minutes was absolutely ideal. Having gifted Arsenal two goals in their 2-1 defeat at the Emirates last month, Liverpool were once again handing out presents in the face of some simple high pressing. The Gunners are unlikely to change their approach too much, having had further success with it in beating Manchester City and Chelsea to win the FA Cup. Klopp, then, knows his team needs to be switched on mentally as much as anything else this weekend. Of course, it's always dangerous drawing conclusions from pre-season friendlies. Had this been a competitive game, Jerome Onguene would have seen red for upending a clean-through Sadio Mane in the first half rather than being given a ticking off and a yellow. Premier League champions Liverpool are ready to defend their crown as the new season approaches. The Reds are ready to return to training after a short break and begin preparations for the new season. Follow all the latest news from inside Melwood and Liverpool's pre-season preparations with updates from Paul Gorst, Ian Doyle and the rest of the ECHO team. You will also receive an extra weekly newsletter with all the latest from behind-the-scenes at Melwood from Paul. It's free, easy and takes no time at all. First just click on this link to our newsletter sign-up centre. Once you're there, put your email address where it says at the top, then click on the Liverpool FC newsletter. There are other ones too if you want them as well. When you've made your choice, press the Update Preference button at the bottom. See also Giants supervisor Gabe Kapler defends Pablo Sandoval That's it! Your emails will come through to your inbox from that moment on. It's that simple. And those irked by an admittedly below-par Liverpool display should remember how the anguished reaction to comprehensive defeat to Napoli at Murrayfield last summer was ultimately extremely misplaced. Salzburg, surprisingly robust throughout, had already played several more warm-up games and that sharpness was evident in the opening half-hour, while Liverpool, at least in that difficult period, showed signs of having spent a week in training camp. That makes a difference. And so too, thankfully, did the 1,250 supporters who were allowed inside to watch, making this the first time the Reds had played in front of fans since March. A small step. But a sign football, how we know and love, is on its way back. Previous Usain Bolt, the speediest person alive, checks optimistic for coronavirus Next Pleasurable (?) Mariners defeat Very Entertaining Padres, temporarily seize title of Funnest Crew in Baseball
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,742
[ 128000, 93705, 6492, 1389, 9734, 61887, 5355, 423, 19275, 52032, 8481, 3488, 439, 94931, 1436, 1304, 2466, 4442, 198, 46324, 423, 19275, 52032, 8481, 3488, 198, 2181, 5097, 264, 2763, 311, 1523, 9734, 61887, 5355, 423, 19275, 627, 4516, 994, 279, 25715, 29315, 1095, 704, 459, 80415, 379, 1290, 1603, 89417, 311, 279, 60090, 4216, 304, 279, 2132, 4376, 11, 568, 1436, 4762, 6865, 279, 22498, 6962, 79, 505, 1884, 10307, 1203, 389, 8930, 37523, 579, 81625, 279, 12047, 627, 697, 28897, 11, 3582, 11, 10675, 13000, 423, 19275, 1047, 1027, 4018, 3485, 279, 1314, 8071, 555, 264, 62490, 46811, 505, 94318, 3816, 22353, 8375, 79302, 28779, 432, 82888, 27973, 35117, 11, 889, 1053, 3010, 9722, 735, 537, 300, 350, 15124, 1609, 300, 304, 4528, 11401, 627, 47 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 93705, 6492, 1389, 9734, 61887, 5355, 423, 19275, 52032, 8481, 3488, 439, 94931, 1436, 1304, 2466, 4442, 198, 46324, 423, 19275, 52032, 8481, 3488, 198, 2181, 5097, 264, 2763, 311, 1523, 9734, 61887, 5355, 423, 19275, 627, 4516, 994, 279, 25715, 29315, 1095, 704, 459, 80415, 379, 1290, 1603, 89417, 311, 279, 60090, 4216, 304, 279, 2132, 4376, 11, 568, 1436, 4762, 6865, 279, 22498, 6962, 79, 505, 1884, 10307, 1203, 389, 8930, 37523, 579, 81625, 279, 12047, 627, 697, 28897, 11, 3582, 11, 10675, 13000, 423, 19275, 1047, 1027, 4018, 3485, 279, 1314, 8071, 555, 264, 62490, 46811, 505, 94318, 3816, 22353, 8375, 79302, 28779, 432, 82888, 27973, 35117, 11, 889, 1053, 3010, 9722, 735, 537, 300, 350, 15124, 1609, 300, 304, 4528, 11401, 627, 47, -100 ]
Q: Fetching relation to PFObject cloud code I have a PFUser that has a days relation to a Day PFObject. In my database it looks like this: { "_id": "WjLAnMuRmp", "name": "c", "_created_at": { "$date": "2016-08-04T15:28:51.759Z" }, "_updated_at": { "$date": "2016-08-24T19:44:44.774Z" }, "days": [ { "__type": "Pointer", "className": "Day", "objectId": "BrQwmKAbJC" }, { "__type": "Pointer", "className": "Day", "objectId": "6wuDMl4kKI" } ] } Pretty straight forward. In my cloud code, I'm trying to send up a PFUser objectId, then fetch all the days they have and iterate over them. For some strange reason I keep getting 0 returned when I do a relation query. Here is what I'm working with: Parse.Cloud.define("getDayAveragesForUser", function(request, response) { console.log("-getDayAveragesForUser"); // Create the query on the User class var fetchedUser = new Parse.User({id:request.params.userObjectId}); console.log("the fetched user: " + fetchedUser.id); var relation = fetchedUser.relation("days"); var query = relation.query(); query.limit(365); query.ascending("createdAt"); query.find({ success: function(results) { console.log("Successfully retrieved " + results.length + " Days."); }, error: function(error) { console.log("Error: " + error.code + " " + error.message); } }); }); When I print the fetchedUser.id it's correct so I know I'm on the right user. This seems based on the documentation example: var relation = user.relation("likes"); relation.query().find({ success: function(list) { // list contains the posts that the current user likes. } }); This should be working fine. === I just add this to my Cloud Code to test: var days = fetchedUser.get("days"); console.log("type of: " + typeof days); which from this I get: type of: undefined A: The reason is that your days are not saved as relations but as a pointers. And in parse relations and pointers are handled in different ways. In order to fetch the days pointer you need to change your query to look like the following: var userQuery = new Parse.Query(Parse.User); userQuery.include("days"); // include the days pointer in the results userQuery.get(request.params.userObjectId, { success: function(user) { // This function will *not* be called. console.log(user.get("days")); // print the days to console }, error: function(error) { } });
{ "redpajama_set_name": "RedPajamaStackExchange" }
7,306
[ 128000, 48, 25, 22882, 287, 12976, 311, 29515, 1211, 9624, 2082, 358, 617, 264, 29515, 1502, 430, 706, 264, 2919, 12976, 311, 264, 6187, 29515, 1211, 627, 644, 856, 4729, 433, 5992, 1093, 420, 25, 720, 517, 262, 9177, 307, 794, 330, 54, 73, 43, 2127, 40220, 49, 1331, 761, 262, 330, 609, 794, 330, 66, 761, 262, 9177, 7266, 3837, 794, 341, 286, 5312, 1045, 794, 330, 679, 21, 12, 2318, 12, 2371, 51, 868, 25, 1591, 25, 3971, 13, 26439, 57, 702, 262, 1173, 262, 9177, 12030, 3837, 794, 341, 286, 5312, 1045, 794, 330, 679, 21, 12, 2318, 12, 1187, 51, 777, 25, 2096, 25, 2096, 13, 24472, 57, 702, 262, 1173, 262, 330, 14097, 794, 2330, 286, 341, 310, 13568, 1337, 794, 330, 9261 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 48, 25, 22882, 287, 12976, 311, 29515, 1211, 9624, 2082, 358, 617, 264, 29515, 1502, 430, 706, 264, 2919, 12976, 311, 264, 6187, 29515, 1211, 627, 644, 856, 4729, 433, 5992, 1093, 420, 25, 720, 517, 262, 9177, 307, 794, 330, 54, 73, 43, 2127, 40220, 49, 1331, 761, 262, 330, 609, 794, 330, 66, 761, 262, 9177, 7266, 3837, 794, 341, 286, 5312, 1045, 794, 330, 679, 21, 12, 2318, 12, 2371, 51, 868, 25, 1591, 25, 3971, 13, 26439, 57, 702, 262, 1173, 262, 9177, 12030, 3837, 794, 341, 286, 5312, 1045, 794, 330, 679, 21, 12, 2318, 12, 1187, 51, 777, 25, 2096, 25, 2096, 13, 24472, 57, 702, 262, 1173, 262, 330, 14097, 794, 2330, 286, 341, 310, 13568, 1337, 794, 330, 9261, -100 ]
Ouzinkie :: View topic - I sure missed playing lapture! I sure missed playing lapture! Posted: Thu May 11, 2006 9:57 pm Post subject: I sure missed playing lapture! I missed playing lapture this year! I was really looking foward to coming for easter! i just saw about 20 minutes ago the lapture picture that is on the home page on the news today! the news reporter said she had no idea what Lapture was! and it was really funny because my chaperone and i were just got done talking about the game! I was reallly supprised! well I better go to bed, I have a big day tomarrow. I am working at the Coho carnivel! Good Night, Sleep Tight, Don't Let The Bed Bugs Bite!
{ "redpajama_set_name": "RedPajamaC4" }
6,516
[ 128000, 46, 5308, 771, 648, 3588, 2806, 8712, 482, 358, 2771, 13942, 5737, 326, 12114, 4999, 40, 2771, 13942, 5737, 326, 12114, 4999, 17827, 25, 36992, 3297, 220, 806, 11, 220, 1049, 21, 220, 24, 25, 3226, 9012, 3962, 3917, 25, 358, 2771, 13942, 5737, 326, 12114, 4999, 40, 13942, 5737, 326, 12114, 420, 1060, 0, 358, 574, 2216, 3411, 282, 83071, 311, 5108, 369, 384, 2352, 0, 602, 1120, 5602, 922, 220, 508, 4520, 4227, 279, 326, 12114, 6945, 430, 374, 389, 279, 2162, 2199, 389, 279, 3754, 3432, 0, 279, 3754, 19496, 1071, 1364, 1047, 912, 4623, 1148, 445, 12114, 574, 0, 323, 433, 574, 2216, 15526, 1606, 856, 523, 3271, 606, 323, 602, 1051, 1120, 2751, 2884, 7556, 922, 279, 1847, 0, 358, 574, 312 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 46, 5308, 771, 648, 3588, 2806, 8712, 482, 358, 2771, 13942, 5737, 326, 12114, 4999, 40, 2771, 13942, 5737, 326, 12114, 4999, 17827, 25, 36992, 3297, 220, 806, 11, 220, 1049, 21, 220, 24, 25, 3226, 9012, 3962, 3917, 25, 358, 2771, 13942, 5737, 326, 12114, 4999, 40, 13942, 5737, 326, 12114, 420, 1060, 0, 358, 574, 2216, 3411, 282, 83071, 311, 5108, 369, 384, 2352, 0, 602, 1120, 5602, 922, 220, 508, 4520, 4227, 279, 326, 12114, 6945, 430, 374, 389, 279, 2162, 2199, 389, 279, 3754, 3432, 0, 279, 3754, 19496, 1071, 1364, 1047, 912, 4623, 1148, 445, 12114, 574, 0, 323, 433, 574, 2216, 15526, 1606, 856, 523, 3271, 606, 323, 602, 1051, 1120, 2751, 2884, 7556, 922, 279, 1847, 0, 358, 574, 312, -100 ]
T-34-85 (D-5T) RANK 4 FRANCE Somua SM PACK BUYINFO This page is about the Soviet medium tank T-34-85 (D-5T). For other versions, see T-34 (Family). T-34-57 III Rank Battle rating: AB RB SB Medium tank Research:40 000 Purchase:150 000 Show in game 2.1 Survivability and armour 2.2 Mobility 2.3 Modifications and economy 3 Armaments 3.1 Main armament 3.1.1 Ammunition 3.1.2 Ammo racks 3.2 Machine guns 5.1 Development 5.3 Combat usage 5.4 In-game description The T-34-85 (D-5T) is a rank III Soviet medium tank with a battle rating of 5.0 (AB/RB/SB). It was introduced during the Closed Beta Test for Ground Forces before Update 1.41. This T-34 model is introduced with the formidable 85 mm gun on a tank mount. With a newer, strengthened turret, it can prove to be a menace at its battle rating. Though formidable, the Soviet upgraded the 85 mm gun to the improved ZiS-S-53 variant on the T-34-85 model. Operational and visual characteristics of the T-34-85(D-5T) are as similar and as common to previous T-34 lineage of tanks as they come, with the exception of a new turret and more powerful cannon. Players experienced in operating previous models of the T-34 in Rank II should have little to no difficulty in adjusting to this vehicle. The same can be said, unfortunately, about opposition forces facing this vehicle. The T-34-85(D-5T) inherits both its predecessors' strengths and weaknesses. The T34-85 works very well with other allied tanks (British and American) that it is often paired with in RB and SB. It retains high mobility and an effective main gun, allowing it to quickly get to capture points (usually following M18s, which are often first at the scene). Here the T-34-85 (D-5T) can capture the points and then hold them until heavier reinforcements arrive. This means that often the team will have early superiority over the capture points. Survivability and armour Armourfront / side / back Hull45 / 45 / 45 Turret54 / 54 / 54 Crew4 people Visibility100 % The armour scheme of the T-34 should be familiar enough now to any players researching towards the T-34-85 (D-5T). Though there are minor differences in some hull armour thickness compared to previous tanks like the T-34 (1942) and T-34-57, they are negligible enough that it shouldn't worry any players nor enemies facing the T-34-85 (D-5T). However, the consequence is that the overall T-34 armour is now quite inadequate against pretty much any enemy tank weaponry it can face in the battle rating. Any shot to the hull, apart from high oblique angle of attacks, would more likely than not penetrate and destroy the tank's interior. The biggest difference of the T-34-85 (D-5T) compared to past variants is the much larger turret housing the 85 mm D-5T gun. However, the armour protection of the turret is also not so changed compared to the 57 mm or 76 mm turrets seen in the preceding T-34s. Though the angles are much sharper, the turret thickness of only 54 mm and of cast construction means that most shots at the turret are likely to penetrate. The number of crew in the turret is also retained, as the commander still acts as the gunner, which lowers survivability overall. Given the extremely packed nature of the T-34-85 (D-5T)'s interior with fuel, ammo, and crew; any penetrating shots will more likely than not destroy the entire T-34-85 (D-5T). The best survival strategy is to not get hit, using the T-34-85 (D-5T)'s mobility to evade the enemy's field of fire. Armour type: Rolled homogeneous armour (hull, turret roof, cupola roof) Cast homogeneous armour (turret, cupola, driver's hatch, MG port) Front (Slope angle) Hull 45 mm (60°) Front glacis 45 mm (60°) Lower glacis 75 mm (59-70°) Driver's hatch 30-65 mm (30-77°) Machine gun port 45 mm (39-40°) Top 45 mm Bottom 45 mm (47-49°) Top 45 mm (46°) Bottom 20 mm Turret 54 mm (1-84°) Turret front 90-200 mm (0-78°) Gun mantlet 54 mm (17-22°) 54 mm (12-13°) 20 mm Cupola 54 mm 20 mm Suspensions wheels and tracks are 20 mm thick. Speedforward / back AB62 / 10 km/h RB and SB55 / 9 km/h Number of gears5 forward 1 back Weight32.0 t AB954 hp RB and SB500 hp Power-to-weight ratio AB29.8 hp/t RB and SB15.6 hp/t The T-34-85 (D-5T)'s mobility should also be quite familiar to players who have researched through the other T-34s towards this tank. The new 85 mm gun and the associated weight increase did little to affect this performance. Players can still rely on the T-34-85 (D-5T) to manoeuvre the battlefield easily and swiftly enough to reach our surround decisive areas to respond to enemy presence. Reverse speed is still lacklustre on the T-34-85 (D-5T), so withdrawal tactics after attacking the enemy should be planned with care so the enemy does not get the opportunity to shoot the T-34-85 (D-5T) before it slides back into cover. Weight (tons) Engine power (horsepower) Power-to-weight ratio (hp/ton) 62 10 32 775 954 24.22 29.81 55 9 442 500 13.81 15.63 Modifications and economy Repair costBasic → Reference AB1 800 → 2 316 RB2 100 → 2 702 SB2 600 → 3 346 Total cost of modifications34 500 Talisman cost1 300 Crew training44 000 Experts150 000 Aces550 Research Aces390 000 Reward for battleAB / RB / SB 70 / 110 / 130 % 154 / 154 / 154 % Crew Replenishment Horizontal Drive 85mm_APHE_ammo_pack Adjustment of Fire Elevation Mechanism Artillery Support Main armament 85 mm D-5T cannon Ammunition55 rounds Reloadbasic crew → aces 10.8 → 8.3 s Vertical guidance-5° / 28° Main article: D-5T (85 mm) The new 85 mm D-5T cannon is wonders compared to the 76 mm and 57 mm cannons that armed preceding T-34s. Its best trait comes in the large 85 mm shell that contains a massive explosive charge. Upon any penetration on an enemy target, the 85 mm can easily cripple the interior upon exploding inside. This often leads to easy one-shots on enemy tanks when hit in the sides, easily going in and tearing apart the crew compartments. Though the penetration values of the 85 mm is an improvement compared to the 76 mm, it is still rather lacklustre compared to the enemies the T-34-85 (D-5T) will face. Tanks like Panther and Tigers have enough armour that fighting from the front will require very careful aiming. Not to mention the rather long reload makes encounters with multiple enemies at close range impractical, requiring snappy manoeuvres on the T-34's part to avoid getting shot at. 85 mm D-5T Turret rotation speed (°/s) Reloading rate (seconds) Aced 55 -5°/+28° ±180° N/A 23.8 32.9 40.0 44.2 47.1 10.79 9.60 8.80 8.30 Penetration statistics Type of Penetration @ 0° Angle of Attack (mm) BR-365K APHE 148 143 126 106 90 77 BR-365A APHEBC 135 133 125 115 106 97 O-365K HE 10 10 10 10 10 10 Shell details Mass (kg) Fuse delay Fuse sensitivity Explosive Mass (TNT equivalent) (g) BR-365K APHE 792 9.2 1.2 14 73.92 47° 60° 65° BR-365A APHEBC 792 9.2 1.2 14 164 48° 63° 71° O-365K HE 793 9.54 0 0.1 660 79° 80° 81° Ammo racks rack empty 55 52 (+3) 40 (+15) 38 (+17) 36 (+19) 31 (+24) 25 (+30) 19 (+36) 13 (+42) 7 (+48) 1 (+54) No Ammo racks of the T-34-85 (D-5T) Turret and side empty: 36 (+19) shells. 7.62 mm DT machine gun (coaxial) Ammunition1 890 rounds Belt capacity63 rounds Fire rate600 shots/min Main article: DT (7.62 mm) The small calibre of the DT machine gun makes it largely ineffective against all armoured vehicles but the ones with an open compartment. It still can be used to ping targets as a rangefinding help or to mow down minor obstacles blocking your line of sight. The clip capacity is quite poor as it relies on a magazine of 63 bullets instead of a belt like similar machine guns from other nations. 7.62 mm DT Capacity (Belt) Coaxial 1,890 (63) 600 N/A N/A Although this tank is classified as a medium tank, it should still be handled with care. The vehicle's armour thickness around the hull is inherited from the previous T-34 models and remains unchanged; not considered reliably accurate to resist impacts of any weapon except for smaller calibre cannons (<57 mm). Angling can result in ricochets even from the most powerful armaments, such as the cannon of the Tiger H1 in some conditions. The tank does retain a high top speed and acceleration, allowing it to outmanoeuvre its more common but heavier German counterparts in its rank. The 85 mm D-5T cannon is sufficient when fighting against Tiger tanks from the front (less than 100 m away), but is accosted by a Panther from the front, aiming for the very middle of the left or right side turret mantlet (100 mm), where the T-34's shells are guaranteed to penetrate. Due to the fact that the only other thing worth noting about this vehicle compared to its predecessors is its upgraded weaponry, the T-34-85 (D-5T)'s armour protection in this battle rating and rank are considered only barely sufficient when countering similar vehicle in its class. Almost all vehicles (excluding some SPAA) such as the common German Tigers, Panthers, USSR KV, IS and even other T-34 tanks will have little difficulty disabling or outright destroying this vehicle with a single shot in most conditions. When engaging the common Tiger tank and Panzer IV models, each of these vehicles retains the design flaw of 90° flat armour plates on the front and sides of each respective vehicle. The T-34-85 (D-5T)'s cannon should have little to no difficulty in penetrating this and destroying the opposition's vehicle in a single shot if this weakness is exploited. The Panther and occasional Tiger II models are considerably more dangerous and difficult to dispatch when encountering them head-on due to the thicker and sloped armour through which the 85 mm cannon of the T-34 cannot penetrate. In head-on engagements, operators of this vehicle should note to precisely target the right and left side turret mantlet of each respective vehicles instead. Time expended in attempting to find a penetration confirmation indication on the cross-hair (AB) when inspecting the sloped front plate is time wasted and instead, should be focused on precise targeting of the mantlet. Of note for the Panther tank is the vehicle's slow turret traverse and as such, if opportunity presents itself, the operator of the T-34-85 (D-5T) should utilize the vehicle's significant manoeuvrability advantage to out-flank and destroy the target in a single shot and prepare to switch and engage the next target, or to retreat. Other more common tanks such as opposition USSR KV, IS and T-34 models are usually less of a concern than the common Panther tank, as most of these respective tanks also inherit the weakness of somewhat slopped frontal chassis and turret armour which can be easily penetrated even from significant distances. Regardless, these vehicle's operation and design strengths and weaknesses are also inherited from vehicles of the previous ranks and battle ratings, only having their turret and weapons differing by being more powerful than their predecessors. All of which can still penetrate to critically disable to destroy the T-34-85 (D-5T) in one or two shots. One should always consider using the BR-365A shell as it has a huge amount of HE filler and can penetrate most Tanks at its BR, including un-angled Tigers and Panthers. Once the shell has penetrated, the HE filler can easily destroy or disable a huge amount of tank crew or modules. especially in some of the more cramped tank interiors. Enemies worth noting: Panther A/D, Tiger II (P): The Panthers are one of the most common tanks around BR 5.7, and they pose a great threat with their deadly long 75 mm cannon, thick frontal armour and adequate speed. You want to avoid engaging them at long range as the T-34 has only x3.5 scope magnification, making long range shooting super hard. Engage the Panthers within 500 m and avoid shooting their frontal hull. Their biggest weak spot is the gun mantlet, which is only 100 mm thick and has a flat part in the middle. That is where you want to aim at, the T-34's APHE has sufficient damage to instantly destroy the Panther even from its turret. The second weak spot is of course the sides, guaranteeing an instant kill. Generally APHE is enough to deal with the Panthers. For the Tiger II P, aim at the vertical area of the frontal turret which is also 100 mm. The best tactic is still to flank it however. Tiger H1/E: The Tiger's weak spots are the opposite with the Panthers. Their hull are unsloped and rather thin, while the gun mantlet is weirdly shaped and can absorb quite some shells. The best engaging range remains the same, within 500 m. If the Tiger is angling, aim at the turret ring to disable the gunner and destroy the turret traverse, or aim at the hull side below the side skirt, which is only 60 mm. If it is not angling, aim between the driver's vision port and the MG for an instant kill. Avoid shooting at these two parts as they tend to bounce/absorb shells. For the Tiger E, don't shoot at the lower glacis as there will be add-on tracks installed there, making it harder to penetrate. Ho-Ri Production: In a frontal engagement, APCR is required as the APHE shells don't have enough penetration. With APCR loaded, aim at the further sides of the fighting compartment, away from the gun, because the further from the gun, the thinner the armour gets, with the thinnest part being around 160 mm unsloped. Penetrating there will knock out its loader, gunner or commander, or detonate the ammo. Of course, the best way is still side-shooting with APHE. Panzer IV/70(V), Jagdpanzer 38(t): These small tank destroyers with their well angled frontal armour can be quite a problem from a distance. With APHE, you can disable their transmission by shooting at their lower glacis. Now if you can, flank them. The 85 mm APHE does a great job at penetrating sloped, thin armour, so you don't have to get to their absolute sides. For the Pz IV/70, you can also aim at the downward part of the gun mantlet since the shell might ricochet downwards into the hull, knocking out every crew member. The Jagdpanzer 38(t) doesn't have this problem, so side-shooting is required to destroy it effectively. M4A3E2 Jumbo: This is another common enemy. It is recommended to use the BR-365A, the one with less pen but more explosive filler. The reason is that it is better at penetrating sloped armour, which the Jumbo has. With that shell you can easily destroy a M4A3E2 who's not angling. If it is, aim at the hull side just above the tracks, or load APCR and shoot straight at its gun mantlet. Against a 75 mm M4A3E2 you can relax a bit as it will struggle to penetrate your armour, but your cupola is a rather large weak spot and a shot through there can knock out the T-34. Be more careful with the M4A3E2 76 W, as they can easily pierce through your armour. Excellent firepower: adequate penetration, destructive damage and good reload rate Has two types of APHE for players to choose from: BR-365K with higher pen but less TNT, and BR-365A with less pen but plenty of TNT, either of which are enough to one-shot most tanks it faces 56 km/h top speed and great manoeuvrability allows it to reposition or flank easily Similar playstyle with the previous T-34s which is beginner-friendly Fast turret traverse to easily deal with targets from multiple directions Sloped hull and round frontal turret might bounce low-penetrating guns like the 75 mm M3 on early M4 Shermans Armour is extremely thin, providing very limited protection against common guns (American 76 mm, British 17 pdr, German 75 mm & 88 mm, etc) Only 4 closely packed crew members, a well-aimed shot tends to kill them all 5° gun depression angle is below average, limiting its capability in hilly maps Struggles to deal with tough tanks (M4A3E2, Tigers & Panthers) due to not having APCR Poor reverse speed can get the player killed Will not reach the 56 km/h in a short period of time, as most of the time you will be at 40-50 km/h Large turret profile makes it easier to get spotted and shot Awkward to place bushes on upper front hull due to the obstruction of MG port and driver's optics The T-34, in its introduction, was a huge shock to the German army when they invaded as they did not have the adequate anti-tank weaponry to defeat the T-34 and its heavier companion KV-1 tank. However, by 1943, the Germans began introducing newer tanks or upgrading their current tanks. They upgraded their Panzer IVs with the 75 mm KwK 40 gun, which could penetrate the T-34, and introduced the Tiger I and Panther tanks into their forces, which could not only destroy the T-34s easily, but can also take in the 76.2 mm shells the T-34 fires. The inferior firepower the T-34 forced the T-34 forces to close into a very close distance during the Battle of Kursk with the Tigers and Panthers in order to get to the sides and fire at the weaker armour. While the Soviets were victorious against the German offensive, the T-34s suffered high losses with this strategy. The T-34's slow improvement from the 1941 model was due to the decision to keep changes to the model low to keep costs low and productivity high. This worked well in the first two years against the Germans, but the Battle of Kursk showed that the newer German tanks now outgun the T-34s. Soviet High Command, once conservative on the T-34's upgrades, now opted for an increase in the T-34 armament to be able to counter the German tanks. During the development, an interim solution for the problem was the equipping of the 57 mm ZiS-4M gun onto the T-34, which has better penetration capabilities compared to the 76.2 F-34 guns. This tank, the T-34-57, performed as an adequate "tank-hunter", but the small HE shell on the 57 mm gun made it a poor tank armament so this was only an interim solution until a better design is made. Testings with various guns in Soviet inventory against captured German tanks showed that the most capable gun was the 85 mm 52-K anti-aircraft gun. With this discovery, the 52-K underwent development to make derivatives able to be mounted onto a tank. The cannon was able to penetrate the front of the Tiger from 500 m out, the turret side from 600 m away, and the hull side from 800 m away. However, the cannon was much larger than the F-34 gun and so a much larger turret was necessary to house the gun. The solution to this was to transfer the turret from the cancelled T-43 tank program onto the T-34, this increased the turret ring diameter from the original 1,425 mm into 1,600 mm, which required a retooling in the manufacturing plants. While this delayed T-34 production, the 85 mm was finally able to be mounted onto the T-34 as the T-34-85. The T-34-85, aside from the enlarged turret ring for the new turret, uses the same T-34 hull design. Armour was still about 45 mm thick, sloped at 60 degrees for a 90 mm effective thickness. The Christie suspension was retained, as well as the diesel engine. However, the biggest difference in the tank design is the three-man turret, though a turret basket is still exempt from the design. Before, the two-man turret on the older T-34 had the commander forced to do his job and the gunner's, the three-man turret on the T-34-85 separated the commander's duty by having a separate gunner to fire the gun, leaving the commander to do his job commanding the tank as a whole. The larger turret also has space for a radio (previously in the hull by the assistant driver), allowing the commander to effectively communicate between tank units. Aside from the enlarged turret ring, new turret, and the 85 mm gun, the internal specifications of the T-34 and its pros and cons were nearly identical to the older variants. The 85 mm gun on the T-34-85 was able to penetrate 125 mm of armour at 500 m away at a 90° meet angle with normal AP rounds. The 85 mm gun was derived from the 52-K anti-aircraft gun, which was developed from Vasilliy Grabin and Fyodor Petrov's design bureaus. Petrov's bureaus produced the 85 mm D-5T gun while Grabin's design, after being taken over by A. Savin, produced the 85 mm ZiS-53 gun. During trials in the Gorokhoviesky Proving Grounds, it was found that the ZiS-53 gun was much better than the D-5T and was much simpler, which was redesignated as the ZiS-S-53 after Savin's initials. However, as the new turret was optimized with the D-5T gun, the T-34-85 started with the D-5T as the T-34-85 Model 1943, which ran on from February to March 1944. After March 1944, the 85 mm ZiS-5 was used as the armament of the T-34-85 Model 1944. During its production life from 1943 to 1958, up to 48,950 T-34-85s were created (22,559 of which during World War II), consisting of more than half of the total 84,070 T-34 units created in its entire production life since 1940. Combat usage From its introduction onwards, the T-34-85s were the main tank in Soviet service, with the older T-34s still being used as they are lost from combat and retribution and replaced. The T-34-85's 85 mm gun armour penetration and front turret armour nearly doubled compared to the older T-34, yet retain the same speed, mobility, and armour compared to it. The T-34-85 was vastly superior to the German's Panzer IVs and StuG IIIs, and though it was still ineffective in protection and armour penetration to the Panther and the Tiger I, it gave it a better edge in firepower to compete against them due to the higher armour penetration value on the 85 mm shells. The T-34-85s maintain numerical superiority throughout the entire war due to the Soviet's industrial base and design concept of mass producing single designs, while the Germans focus on newer, better tanks such as the heavier Tiger II, which restricted productivity and made logistics a hard job to maintain. The T-34-85s were the main Soviet spearhead weapon during Operation Bagration and its future offensives up until the Battle of Berlin. After the fall of Nazi Germany, the Soviets use the T-34-85s again in their invasion of Manchuria to fulfil their promise to invade Japan after the fall of Germany. The combined-arms forces of their armoured units overran the Japanese positions in Manchuria and were pushed all the way to a distance from the Yalu River. The Japanese surrender order was given out by the emperor on August 14, which was not carried out as a cease-fire until August 17. After the end of World War II, the T-34-85s were given out in massive quantities to Soviet-occupied territories and their allies. The next action the T-34-85s faced was in the Korean War, in the hands of the North Koreans. The North Korean armoured forces are able to assault deep into South Korea with these tanks as South Koreans were severely under-equipped in anti-tank weaponry, only armed with US-supplied M24 Chaffees and regular bazookas, which were useless against the T-34s. It wasn't until the deployment of US troops into the Korean peninsula that the tide turned against the North Koreans and their tanks. The US sent their M4A3E8 Shermans, M26 Pershings, and "Super Bazookas" to arm the troops there. All these weapons are able to destroy the T-34-85s, with the M26 Pershing being able to penetrate straight through the front and back of the T-34-85 armour with HVAP rounds. The Shermans are able to go on par with the T-34-85s, but the better optic quality and crew training gave them an edge against the T-34-85s. These anti-tank weapons supplied by the coalition caused the North Koreans to suffer major tank losses and after their supply lines were cut by the US landings at Inchon, the armoured vehicles were abandoned as the North Koreans retreated. T-34-85s were still encountered once the Chinese became involved in the war, where they were accompanied with IS-2s as well. Though pure tank-to-tank battles between the two sides were scarce after 1950 due to combined-arms units used on both sides. Past the Korean War, the T-34-85s were clearly obsolete with the development of newer tanks being developed worldwide. Despite that, many countries still use T-34-85s as their main tank or as reserves, even the Soviets and Finnish continue using them until the late 1960s. Warsaw Pact countries used them in large quantities and were involved in many conflicts within these countries, such as the East German uprising in June 1953, Hungarian revolution in 1956, Coup by Greek junta in July 1974, and the Turkish invasion in July-August 1974. The T-34-85s also saw conflicts in the Middle East in the hands of Syrians, Egyptians, Jordanians, and Iraq; Vietnam with the North Vietnamese, and in the Bosnian War in the Bosnian Serb Army. African countries such as Somalia and Angola still use T-34-85s in their armies, and they could even be seen in the recent conflicts in Yemen and in Ukraine. Despite their age, it seems that the T-34-85 was to become a tank that will persist in the hands of smaller countries for years to come. During late 1944, the Soviets were already searching for a successor to the T-34s that use most of the newest tank technology found in recent years. The result was the T-44 medium tank, which did not enter service in time to see widespread usage and even combat during World War II. The T-44 underwent further development and redesigning to become a tank that would surpass the T-34 in the most produced tank in existence, the T-54 tank. In-game description This tank was developed based on the T-34 at factory No. 183's design bureau by installing a new three-man cast turret with the 85 mm D-5T cannon. This weapon, with a length of 51.6 calibres, was created based on an artillery cannon with improved ballistics. The cannon's armour-piercing rounds reached a muzzle velocity of 795 m/s and according to standard firing data, it was able to penetrate the Tiger's frontal armour at a range of 500-800 metres. The hexagonal shaped turret had an expanded traverse circle and slightly sloping sides, and its dimensions significantly exceeded those of the mass-produced T-34 turret equipped with a 76.2 mm cannon. The vehicle's commander also fulfilled the role of spotter as before, since the massive size of the weapon's breech prevented a third man from fitting into the turret. The turret's roof featured a cast command cupola with a two-leaved hatch and observation instrument, a ventilation hatch with an armoured hood, the PTK-5 surveillance device and a round loader's hatch. The turret's armour had been increased, so its sides, front and command cupola walls were 75 mm thick, the turret roof 20 mm thick and the cupola roof 15 mm thick. Its air filtering system was improved by installing the new Multicyclone air filter. Thanks to this, some motors worked for up to several hundred hours without repair, which was an almost unobtainable figure for T-34 Mod. 1941-1943 tanks. Production of the tank began in January 1944. In total, 255 of them were made. Of them, 5 were command tank variants and were equipped with the RSB-F radio set, while the others were equipped with the 9RS radio set. The vehicles began to join battle units (primarily Guards Tank Brigades) in 1944 and were used alongside the old T-34s. Tanks of this model actively participated in the liberation of Right-bank Ukraine in the spring of 1944, and in battles in Finland and Norway in battle units on the Karelian front. Skins and camouflages for the T-34-85 (D-5T) from live.warthunder.com. Just another soviet T-34? Disagree, here's why... T-34-85 (D-5T) - HowToPlay1337 T-34-85 (D-5T) - Tank Review - Winning The World - Napalmratte T-34-85 (D-5T), Russian Tier-3 Medium Tank - Angry Nerd Gaming T-34-85 (D-5T) Tank Review - NUSensei Links to the articles on the War Thunder Wiki that you think will be useful for the reader, for example: reference to the series of the vehicles; links to approximate analogues of other nations and research trees. [Wikipedia] T-34 variants [Tanks Encyclopedia] T-34-85 USSR medium tanks T-28 T-28 (1938) · T-28 · T-28E T-34-76 T-34 (Prototype) · T-34 (1940) · T-34 (1941) · T-34 (1st Gv.T.Br.) · T-34 (1942) · T-34E STZ · T-34E T-34-57 T-34-57 · T-34-57 (1943) T-34-85 T-34-85 (D-5T) · T-34-85 · T-34-85E T-34-100 T-34-100 T-44 T-44 · T-44-100 · T-44-122 T-54 T-54 (1947) · T-54 (1949) · T-54 (1951) T-55 T-55A · T-55AM-1 T-62 T-62 · T-62M-1 T-64 T-64A (1971) · T-64B T-72 T-72A · T-72AV (TURMS-T) · T-72B · T-72B (1989) · T-72B3 T-80 T-80B · T-80U · T-80BVM T-90 Т-90А Trophies/Lend-Lease Germany ▂T-III · ▂T-V Great Britain ▂МК-IX "Valentine" USA ▂M3 Medium · ▂M4A2 Retrieved from "https://wiki.warthunder.com/index.php?title=T-34-85_(D-5T)&oldid=109962" USSR ground vehicles Third rank ground vehicles
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,048
[ 128000, 51, 12, 1958, 12, 5313, 320, 35, 12, 20, 51, 340, 49, 16395, 220, 19, 17067, 8606, 198, 50982, 4381, 14031, 34432, 198, 87073, 6775, 198, 2028, 2199, 374, 922, 279, 19953, 11298, 13192, 350, 12, 1958, 12, 5313, 320, 35, 12, 20, 51, 570, 1789, 1023, 11028, 11, 1518, 350, 12, 1958, 320, 15547, 4390, 51, 12, 1958, 12, 3226, 198, 23440, 19856, 198, 43993, 10959, 512, 1905, 29074, 26313, 198, 42094, 13192, 198, 28528, 25, 1272, 220, 931, 198, 43941, 25, 3965, 220, 931, 198, 7968, 304, 1847, 198, 17, 13, 16, 29878, 344, 2968, 323, 47777, 198, 17, 13, 17, 63410, 198, 17, 13, 18, 96716, 323, 8752, 198, 18, 13287, 24469, 198, 18, 13, 16, 4802, 6916, 2908, 198, 18, 13, 16, 13 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 51, 12, 1958, 12, 5313, 320, 35, 12, 20, 51, 340, 49, 16395, 220, 19, 17067, 8606, 198, 50982, 4381, 14031, 34432, 198, 87073, 6775, 198, 2028, 2199, 374, 922, 279, 19953, 11298, 13192, 350, 12, 1958, 12, 5313, 320, 35, 12, 20, 51, 570, 1789, 1023, 11028, 11, 1518, 350, 12, 1958, 320, 15547, 4390, 51, 12, 1958, 12, 3226, 198, 23440, 19856, 198, 43993, 10959, 512, 1905, 29074, 26313, 198, 42094, 13192, 198, 28528, 25, 1272, 220, 931, 198, 43941, 25, 3965, 220, 931, 198, 7968, 304, 1847, 198, 17, 13, 16, 29878, 344, 2968, 323, 47777, 198, 17, 13, 17, 63410, 198, 17, 13, 18, 96716, 323, 8752, 198, 18, 13287, 24469, 198, 18, 13, 16, 4802, 6916, 2908, 198, 18, 13, 16, 13, -100 ]
Hotels Vacations and Travel Wordwide Vacation Inspiration Vacation Packages To Venice Beach California Seriously, the warmest month for the Southern California city is September. from the Downtown Arts District to the yoga-loving hippies in Venice Beach. Check out our complete guide to Los Angeles. When the weather's nice, follow Vancouverites down to the shores of English Bay to Kitsilano "Kits" Beach. Often compared to L.A.'s Venice Beach. 30 will cost you CA$3.50 (about $2.70) hourly and. Hotels on the West Coast. There's never a bad time to visit the West Coast, especially when you get the inside scoop on how to find cheap hotels through Travelocity. When is the best time to book a hotel in the west? Anytime! National Lampoons Christmas Vacation Blu Ray Though not quite as giddily frivolous as Caddyshack, Harold Ramis's National Lampoon's Vacation is marked by its unevenness. This is the same transfer as the 2010 Blu-ray release, which bolsters. Nov 8, 2017. It's clear that National Lampoon's Christmas Vacation is a timeless classic but I think Elf has established itself in the same collection Don't miss these other relaxing vacations that don't require a passport. If you can't make it to Italy for a romantic ride down a canal, California might have the next best thing. Walk along the. Graco Urbanlite Classic Connect Travel System Some of the more expensive gifts they have asked for were a Cuisinart Baby Food Maker and Bottle Warmer for $120.99, a Graco Fast Action Fold Sport Click Connect Travel System Tangerine for $279.99, a. We put Graco's Ready2Grow Classic Connect LX stroller through the same brake test we've used for years with every stroller The beach was here long before an idealistic real estate developer dubbed it Venice, but today Venice Beach is both a town and a recreational seashore, one of the funkiest, most varied and fun beach scenes in the Los Angeles area. Start building your travel bucket list by exploring our cruise ports. Royal Caribbean cruise ships sail to the world's hottest vacation spots. Begin planning your next vacation here. Mar 15, 2019 · California Beach Cities Day Trip: Long Beach, Huntington Beach, Venice Beach. Caribbean vacation packages provided by Apple Vacations. Check out our Punta Cana Caribbean Specials for great deals. Venice, Italy From a quintessential gondola ride through the. Couples can begin their stay at a luxury beach resort in the southern region, the perfect place to lounge in the sun and indulge in spa. Venice, California. With our playful one-of-a-kind style and central location, live like a local at The Kinney hotel in Venice Beach. Grab your entourage and truly experience So Cal – from courtyard loungin' to beach cruisin' – our house is your house. Experience Italy with this lovely vacation package, leading you through Rome (Italy's treasure with two millennia of artistic achievement);Cinque Terre (five miles of rocky coast with five small villages overlooking the sea, in the midst of two capes with hundreds of miles of beautiful paths); Florence (Michelangelo's David, Botticelli's Birth of Venus, and Raphael's La Velata) and Venice. Winter holiday festivities evoke scenes of winter carnivals, skiing and snow-drenched landscapes, but in Southern California. end of the beach, where unleashed canines can frolic in the sand and. American Airlines will also launch 10 new routes in the new year, including service from Chicago to Bangor, Charleston, and Myrtle Beach; Dallas-Fort Worth to. offering direct flights from San Jose. It seemed like a fair prediction with successful online publications such as Lonely Planet and TripAdvisor enabling travelers to research and book their own vacations. Antarctica, Venice and the. Atlas Cruise, Tour and Luxury Travel Experts. Atlas Cruises & Tours is a leading retail travel agency in the United States. Our agents have the knowledge and expertise you need when planning a vacation. Manhattan Vacation Rentals Upper East Side The West Gulf Beaches offer a variety of beach rentals, from luxury homes to relaxed cottages. With a wide selection of beachfront, bay front, canal front, and private, island interior home, your family will find the perfect vacation getaway. Steve Croman, who owns 140 apartment buildings in Manhattan, admitted to multiple counts of mortgage. who Venice Beach. Venice Beach is known as having an entertaining and lively boardwalk scene and attracting quirky characters! This is a part of what makes Venice Beach so popular and one of the 10 best California beaches known. You can find artists, outdoor bodybuilders, roller skaters and belly dancers near and on the beach, entertaining the. That's why we've put together a comprehensive guide to all the major travel deal sites for plane tickets, hotels and home rentals, car rentals, cruises, and vacation packages. From surfing classes. Venice Vacation Packages. Want to book a vacation to Venice? Whether you are off for a romantic vacation, family trip, or an all-inclusive holiday, Venice vacation packages on TripAdvisor make planning your trip simple and affordable. As the largest state in the U.S., California offers. head to Huntington, Venice and Malibu Beaches. Experienced longboard surfers will head to Ventura County's Rincon or County Line for point. Though you may want to take on all 22 miles of the shorefront Marvin Braude Bike Trail—which spans from Will Rogers State Beach in the north all the way to Torrance in the south—most tourists stay. Train vacations. or Venice, no worries—it's easy to add a few nights at, say, the world-famous Belmond Hotel Cipriani, located on Giudecca Island, overlooking the Venetian canals. At first glance, So, do as modern Angelenos do and head to Erewhon in Venice, Urban Radish in DTLA. While outsiders may scoff when we take vacations (especially when they see us at the beach in Santa Monica on a. Venice City Beach is the main beach in the Venice District of Los Angeles. It stretches from the Venice Pier up to the north end of the Venice District at the city border with Santa Monica.The central hub of Venice Beach is at an area known as Muscle Beach, a nickname earned for the outdoor workout facilities and muscle display platform. Whether you want to explore ancient ruins or just work on your tan on a sunny island, Greece offers vacations for. ending your journey in Venice. Greek Isles Cruise Princess Cruises 24844 Ave. With a choice location on Ocean Front Walk in world-famous Venice Beach, AIR Venice captures the essence of a sophisticated, casual and contemporary beach culture and lifestyle experience. Surrounded by ocean breezes, panoramic views, seaside dining, shopping, and nightlife. 5 Rose Ave, Venice, CA 90291. CONTACT. Host Chris Harrison talks constantly about the protagonists' "journey to find love" while the show assaults the viewer with an onslaught of romantic clichés: flowers, champagne, hot tubs, exotic. I realized that having our own businesses meant that our home could be anywhere — a bungalow on the beach in Southern California or a ship in the. house sit for them when they went on extended. Venice Beach California is located in the western part of Los Angeles.It has gained fame because of its colorful boardwalks, bohemian residential areas and stunning beaches and canals. Tobacco mogul Abbot Kinney founded it in the year 1905. Rather than being the rich asshole Burners imagine, Feldman says, he lives in a rent-controlled apartment in Venice Beach and drives a 10-year old. jets in our professional lives and default-world. Experience the Most Enchanting City in the West. Start your California vacation at picturesque San Francisco, the gateway to the West Coast. From the Golden Gate Bridge to Fisherman's Wharf and Alcatraz, the legendary cable cars, the City by the Bay is a favorite for repeat travelers. Best Place For Family Vacation In Eastern Us Where To Buy A Hiking Stick In San Antonio Our suggestions for free things to do in Las Vegas during your vacation. PLUS, a way to get free admission to dozens of the most popular tourist attractions. With an abundance of historic missions in San Antonio, this could be any of the five former Spanish. Where To Buy A Hiking Stick In San Antonio Our suggestions for free things to do in Las Vegas during your vacation. PLUS, a way to get free admission to dozens of the most popular tourist attractions. With an abundance of historic missions in San Antonio, this could be any of the five former Spanish. Across the pedestrian boulevard is a strip of arcades This post was contributed by a community member. Now that summer vacations are drawing to a close and you're beginning to schedule fall activities, are you ready for the get-togethers coming up? When. So as our group chartered the southern-most end of Mexico's Baja California peninsula — where the Sea of Cortez meets the Pacific Ocean — for a close-up of the iconic Arch and Lover's Beach. The best vacations happen when kid-friendly hotels offer accommodations to meet the needs of each family member. Book your Venice trip today. Located right on the Venice Lido beach, the Hotel Excelsior Venice Lido Resort offers guests relief from the congestion and crowds in the center of Venice. CA SELLER OF TRAVEL 2121867-40. Web. The 10 Best California Beaches. Venice Beach Along with the classic California sand and surf, 30 Cheap Beach Vacations for Travelers on a Budget Tiled steps lead up a sloped lawn to a three-bedroom Midcentury Modern house near the end of a cul-de-sac in Malibu's upper Broad Beach area. Although modest. With the escalation of short-term. How to select the perfect vacation rental in Los Angeles. Thanks to its worldwide dominance of the silver screen, the City of Angels is bursting at the seams with iconic sights, from the Hollywood Sign to the Sunset Strip to the Venice Beach boardwalk. 20 Best Bed And Breakfast Burlington Vermont So much so, in fact, that new, best-selling dishes are often. and I guess I thought it would be good for breakfast as a waffle because I stuffed the chocolate in the mold, put them in the freezer. Mr. Walker, who is 50 and seeking a third term in a state where nearly everyone already All Included Disney Vacation In California Hotels Near Singapore International Airport How Do Travel Agents Get Paid For Cruises Alleghany County School District Vacations Here Comes The Stuanch Paki Travel Agent Travel Insurance For Terminal Cancer Patients Cheapest Single Night Hotel Salt Lake City Best Beaches For Vacation In Florida May All Inclusive Bungalo Vacations In Key West The Savvy Backpacker Packing List Europe What Hotels Is Occidental College Close To Amy Lowell Poetry Travelling Scholarship Events In Dever For Networing Travel Agents Best Value Vacation Now During Holidays In Us Vacation Rentals North Carolina Mountains Cheap Weekend Cruise Vacations In June 2019 How To Get A Cheap All Inclusive Vacation Tauck Australia River Cruises European 2019 Best Bed And Breakfast Inns Bethany Beach De Hiking Trails In Dinosaur National Monument Cheap Bed And Breakfast Berwick Upon Tweed Warm Weather Vacations In The Us In February Willamette Country Music Festival Camping Best Bed And Breakfast Lakeside In Florida What Underwear Is Recommended For Hiking Powered by WordPress. Theme: Fino by: Design By freepsdworld.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,081
[ 128000, 20780, 2053, 31626, 811, 323, 18589, 9506, 9328, 198, 82889, 367, 79577, 198, 82889, 367, 64484, 2057, 56750, 13011, 7188, 198, 89441, 11, 279, 8369, 478, 2305, 369, 279, 16642, 7188, 3363, 374, 6250, 13, 505, 279, 44985, 17979, 11182, 311, 279, 27102, 77700, 44656, 552, 304, 56750, 13011, 13, 4343, 704, 1057, 4686, 8641, 311, 9853, 12167, 627, 4599, 279, 9282, 596, 6555, 11, 1833, 23393, 3695, 1523, 311, 279, 63263, 315, 6498, 9332, 311, 62993, 321, 5770, 330, 42, 1220, 1, 13011, 13, 36016, 7863, 311, 445, 885, 3238, 82, 56750, 13011, 13, 220, 966, 690, 2853, 499, 9362, 3, 18, 13, 1135, 320, 9274, 400, 17, 13, 2031, 8, 47729, 323, 627, 20780, 2053, 389, 279, 4410, 16377, 13, 2684, 596, 2646, 264, 3958 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 20780, 2053, 31626, 811, 323, 18589, 9506, 9328, 198, 82889, 367, 79577, 198, 82889, 367, 64484, 2057, 56750, 13011, 7188, 198, 89441, 11, 279, 8369, 478, 2305, 369, 279, 16642, 7188, 3363, 374, 6250, 13, 505, 279, 44985, 17979, 11182, 311, 279, 27102, 77700, 44656, 552, 304, 56750, 13011, 13, 4343, 704, 1057, 4686, 8641, 311, 9853, 12167, 627, 4599, 279, 9282, 596, 6555, 11, 1833, 23393, 3695, 1523, 311, 279, 63263, 315, 6498, 9332, 311, 62993, 321, 5770, 330, 42, 1220, 1, 13011, 13, 36016, 7863, 311, 445, 885, 3238, 82, 56750, 13011, 13, 220, 966, 690, 2853, 499, 9362, 3, 18, 13, 1135, 320, 9274, 400, 17, 13, 2031, 8, 47729, 323, 627, 20780, 2053, 389, 279, 4410, 16377, 13, 2684, 596, 2646, 264, 3958, -100 ]
Media win concessions from MLB in photo dispute March 7, 2008 · Media organizations sat down with representatives from Major League Baseball on Wednesday in an attempt… March 7, 2008 · Media organizations sat down with representatives from Major League Baseball on Wednesday in an attempt to resolve a dispute over new conditions for credential applications that members of the press must submit to be able to cover a league event. Some of the objectionable restrictions include: a seven-photo limit on photos that may be displayed online from each game; restrictions on recording audio and video from 45 minutes prior to a scheduled game until the game is finished; prior written notice of the intention to display non-text accounts; and prohibiting game photographs to be used in a photo gallery. After the meeting, the league agreed to allow the use of photo galleries and more than doubled the number of photographs that can be used online from a single game. Baseball officials also agreed that certain games deserved more coverage than others and that they will discuss changing the 72-hour limit on archiving multi-media. "While we still have some fundamental disagreements over any restrictions, we applaud MLB's willingness to meet with us as we navigate the complexities of new media," the Associated Press Sports Editors said in a statement. "We will continue to talk and believe we can get this resolved before the end of the season." Others at the meeting included AP Sports Editor Terry Taylor; Mike Fannin, the managing editor for sports and features at the Kansas City Star; Editor Tim Franklin of the Baltimore Sun; Editor Henry Freeman of The Journal News in White Plains, N.Y.; and Garry Howard, the Milwaukee Journal Sentinel's assistant managing editor for sports. Jonathon Dube, president of the Online News Association, wrote a letter to Commissioner Allan G. "Bud" Selig earlier in the week in which he explained how the restrictions would "interfere with our members' ability to do their jobs as journalists and cover news of public importance." Many other news associations and publications, including Sports Illustrated and The New York Times, have denounced the restrictions with statements and letters of protest calling for negotiations. National Press Photographers Association President Tony Overman also expressed his concerns to Selig. "Your new terms impose a form of prior restraint on the use of visual images that will negatively impact the editorial independence of our members and the press as a whole," Overman wrote. — Alanna Malone
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,388
[ 128000, 12950, 3243, 62608, 505, 41217, 304, 6685, 26086, 198, 28623, 220, 22, 11, 220, 1049, 23, 9787, 7972, 11351, 7731, 1523, 449, 24005, 505, 17559, 9130, 38258, 389, 8079, 304, 459, 4879, 90578, 28623, 220, 22, 11, 220, 1049, 23, 9787, 7972, 11351, 7731, 1523, 449, 24005, 505, 17559, 9130, 38258, 389, 8079, 304, 459, 4879, 311, 9006, 264, 26086, 927, 502, 4787, 369, 41307, 8522, 430, 3697, 315, 279, 3577, 2011, 9502, 311, 387, 3025, 311, 3504, 264, 10966, 1567, 627, 8538, 315, 279, 46655, 481, 17294, 2997, 25, 264, 8254, 67467, 4017, 389, 7397, 430, 1253, 387, 12882, 2930, 505, 1855, 1847, 26, 17294, 389, 14975, 7855, 323, 2835, 505, 220, 1774, 4520, 4972, 311, 264, 13847, 1847, 3156, 279, 1847, 374, 8220, 26, 4972 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 12950, 3243, 62608, 505, 41217, 304, 6685, 26086, 198, 28623, 220, 22, 11, 220, 1049, 23, 9787, 7972, 11351, 7731, 1523, 449, 24005, 505, 17559, 9130, 38258, 389, 8079, 304, 459, 4879, 90578, 28623, 220, 22, 11, 220, 1049, 23, 9787, 7972, 11351, 7731, 1523, 449, 24005, 505, 17559, 9130, 38258, 389, 8079, 304, 459, 4879, 311, 9006, 264, 26086, 927, 502, 4787, 369, 41307, 8522, 430, 3697, 315, 279, 3577, 2011, 9502, 311, 387, 3025, 311, 3504, 264, 10966, 1567, 627, 8538, 315, 279, 46655, 481, 17294, 2997, 25, 264, 8254, 67467, 4017, 389, 7397, 430, 1253, 387, 12882, 2930, 505, 1855, 1847, 26, 17294, 389, 14975, 7855, 323, 2835, 505, 220, 1774, 4520, 4972, 311, 264, 13847, 1847, 3156, 279, 1847, 374, 8220, 26, 4972, -100 ]
We want to create folders, which contain only specific document types, such as lab exams, bills, orders, case number, etc. This information would be contained in the metadata for every document and folder. We want to limit the document upload to that folder by folder type, (e.g. labs, bills, orders, etc.) We want to prevent the user from checking-in a document to the wrong folder.
{ "redpajama_set_name": "RedPajamaC4" }
2,968
[ 128000, 1687, 1390, 311, 1893, 30342, 11, 902, 6782, 1193, 3230, 2246, 4595, 11, 1778, 439, 10278, 40786, 11, 19123, 11, 10373, 11, 1162, 1396, 11, 5099, 13, 1115, 2038, 1053, 387, 13282, 304, 279, 11408, 369, 1475, 2246, 323, 8695, 13, 1226, 1390, 311, 4017, 279, 2246, 8298, 311, 430, 8695, 555, 8695, 955, 11, 320, 68, 1326, 13, 51048, 11, 19123, 11, 10373, 11, 5099, 6266, 1226, 1390, 311, 5471, 279, 1217, 505, 13598, 3502, 264, 2246, 311, 279, 5076, 8695, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 1687, 1390, 311, 1893, 30342, 11, 902, 6782, 1193, 3230, 2246, 4595, 11, 1778, 439, 10278, 40786, 11, 19123, 11, 10373, 11, 1162, 1396, 11, 5099, 13, 1115, 2038, 1053, 387, 13282, 304, 279, 11408, 369, 1475, 2246, 323, 8695, 13, 1226, 1390, 311, 4017, 279, 2246, 8298, 311, 430, 8695, 555, 8695, 955, 11, 320, 68, 1326, 13, 51048, 11, 19123, 11, 10373, 11, 5099, 6266, 1226, 1390, 311, 5471, 279, 1217, 505, 13598, 3502, 264, 2246, 311, 279, 5076, 8695, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Tiles laid on the diagonal are most commonly cut on a 45-degree angle. Cut tiles are an integral part of any ceramic tile installation. You may need to cut tiles to fit the perimeter of the room, to fit around obstacles, or to remove a portion of the tile to fit a second tile into it. If your room is out of square, an odd angle, or you are laying your tiles on a diagonal, you need to make angular cuts in the tiles. Cutting angles is not very different than making straight cuts; measurement is the most important part. Getting the right angle for each cut is crucial. Unless you are cutting a tile in half from point to point, use a tool that helps you calculate the correct angle. If your room is out of square, use a tool such as a speed square to determine the angle the tiles need to be cut to fit. Once you have the angle, place the speed square on the tile to duplicate the angle. Use a grease pencil to mark the tile where the cut will be made. Many tile cutters have an option for making 45-degree and other angled cuts. The tray portion of the cutter the tile rests on can change direction to hold the tile firmly in place in either a 90- or 45-degree angle. If you are cutting tiles for the diagonal, or removing the corner of a tile for a tile insert, you are likely cutting on a 45-degree angle. Once you know how much tile needs to be removed, set the tile on the tray and tilt it to the 45-degree angle. Line up the section that needs to be removed with the tray, then make your cut. In a diagonal tile pattern, at least every other tile along the perimeter needs to be cut, if not every tile along the perimeter. Both pieces of a cut tile sometimes can be used by flipping over the cut portion and installing it next to the first tile laid. Other times, however, you need to make a fresh cut for each tile installed. Tile up to the section that needs to be cut so you leave a gap. Take a loose tile and lay it directly on top of the nearest installed tile to the gap. Take a second tile and place it in the gap, allowing it to overlap the first loose tile. Draw a line where the second tile overlaps the first; this is the section to cut. Another common angle cut made in ceramic tiles is for a tile insert. Ceramic tiles frequently are installed with one or more corners clipped of,f and an accent tile installed in the missing space. The accent tile is installed at an angle to the four field tiles that have their corners clipped off to accommodate it. To make the most accurate cuts in this scenario, lay out the four field tiles as if you were installing them. Set the accent tile on the corner where the four tiles meet. Trace its perimeter with a grease pencil, and cut along the pencil line to get the correct angle of cuts. Asaff, Sarabeth. "Tips on Cutting Angles for Ceramic Tile." Home Guides | SF Gate, http://homeguides.sfgate.com/tips-cutting-angles-ceramic-tile-69916.html. Accessed 22 April 2019.
{ "redpajama_set_name": "RedPajamaC4" }
7,670
[ 128000, 59465, 17551, 389, 279, 38336, 527, 1455, 17037, 4018, 389, 264, 220, 1774, 38775, 9392, 627, 38766, 21130, 527, 459, 26154, 961, 315, 904, 43124, 10228, 14028, 13, 1472, 1253, 1205, 311, 4018, 21130, 311, 5052, 279, 47442, 315, 279, 3130, 11, 311, 5052, 2212, 32116, 11, 477, 311, 4148, 264, 13651, 315, 279, 10228, 311, 5052, 264, 2132, 10228, 1139, 433, 13, 1442, 701, 3130, 374, 704, 315, 9518, 11, 459, 10535, 9392, 11, 477, 499, 527, 35744, 701, 21130, 389, 264, 38336, 11, 499, 1205, 311, 1304, 20932, 15455, 304, 279, 21130, 13, 63525, 27030, 374, 539, 1633, 2204, 1109, 3339, 7833, 15455, 26, 19179, 374, 279, 1455, 3062, 961, 627, 29755, 279, 1314, 9392, 369, 1855, 4018, 374, 16996, 13, 11115, 499, 527, 14713 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 59465, 17551, 389, 279, 38336, 527, 1455, 17037, 4018, 389, 264, 220, 1774, 38775, 9392, 627, 38766, 21130, 527, 459, 26154, 961, 315, 904, 43124, 10228, 14028, 13, 1472, 1253, 1205, 311, 4018, 21130, 311, 5052, 279, 47442, 315, 279, 3130, 11, 311, 5052, 2212, 32116, 11, 477, 311, 4148, 264, 13651, 315, 279, 10228, 311, 5052, 264, 2132, 10228, 1139, 433, 13, 1442, 701, 3130, 374, 704, 315, 9518, 11, 459, 10535, 9392, 11, 477, 499, 527, 35744, 701, 21130, 389, 264, 38336, 11, 499, 1205, 311, 1304, 20932, 15455, 304, 279, 21130, 13, 63525, 27030, 374, 539, 1633, 2204, 1109, 3339, 7833, 15455, 26, 19179, 374, 279, 1455, 3062, 961, 627, 29755, 279, 1314, 9392, 369, 1855, 4018, 374, 16996, 13, 11115, 499, 527, 14713, -100 ]
Providing the same quality as our full size steel cargo load bar, we manufacture our Steel Full Size Pickup Truck Load Bars with the same high grade materials we use for the tractor trailer load bars. If you need a different length for your application we can make the cargo bar to fit your specific needs. These bars are made to order. Choose options below carefully.
{ "redpajama_set_name": "RedPajamaC4" }
7,203
[ 128000, 36919, 287, 279, 1890, 4367, 439, 1057, 2539, 1404, 9699, 26735, 2865, 3703, 11, 584, 30847, 1057, 12783, 8797, 8645, 75560, 34785, 9069, 57206, 449, 279, 1890, 1579, 12239, 7384, 584, 1005, 369, 279, 59785, 19809, 2865, 16283, 13, 1442, 499, 1205, 264, 2204, 3160, 369, 701, 3851, 584, 649, 1304, 279, 26735, 3703, 311, 5052, 701, 3230, 3966, 627, 9673, 16283, 527, 1903, 311, 2015, 13, 22991, 2671, 3770, 15884, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 36919, 287, 279, 1890, 4367, 439, 1057, 2539, 1404, 9699, 26735, 2865, 3703, 11, 584, 30847, 1057, 12783, 8797, 8645, 75560, 34785, 9069, 57206, 449, 279, 1890, 1579, 12239, 7384, 584, 1005, 369, 279, 59785, 19809, 2865, 16283, 13, 1442, 499, 1205, 264, 2204, 3160, 369, 701, 3851, 584, 649, 1304, 279, 26735, 3703, 311, 5052, 701, 3230, 3966, 627, 9673, 16283, 527, 1903, 311, 2015, 13, 22991, 2671, 3770, 15884, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
The making of a writer "A common question asked of writers is, 'When did you decide to become a writer?' The answer of course is that we didn't decide anything. It was decided for us. I firmly believe that mythical godmothers make appearances at our cradles, and bestow their gifts. The godmother who might have blessed me with a singing voice did not show up; the goddess of dance was nowhere in sight; the chef-to-the-angels was otherwise engaged. Only one made the journey to my cradle, and she whispered, 'You will be a storyteller.' " - Mary Higgins Clark ("Touched by an Angel") "People always want to know when and where you write. As if there's a secret methodology to be followed. It has never seemed to me to matter to the work -- which is the writer's 'essential gesture' (I quote Roland Barthes), the hand held out for society to grasp -- whether the creator writes at noon or midnight, in a cork-lined room as Proust did or a shed as Amoz Oz did in his early days. "Perhaps the questioner is more than just curious, yearning for a jealously kept prescription on how to be a writer. There is none. Writing is the one profession for which there is no professional training. 'Creative' writing courses can teach the aspirant only how to look at his or her writing critically, not how to create. The only school for the writer is the library -- reading, reading. A journey through realms of how far, wide and deep writing can venture in the endless perspectives of human life. Learning from other writers' perceptions that you have to find your way to yours, at the urge of the most powerful sense of yourself -- creativity." - Nadine Gordimer ("Being a Product of Your Dwelling Place") "My love of writing grew out of my love of reading, with which my very life is identified. I can't imagine a mental life, a spiritual existence, not inetricably bound up with language of a formal, mediated nature. Telling stories, choosing an appropriate language with which to express each story: This seems to me quintessentially human, one of the great adventures of our species." - Joyce Carol Oates ("The Importance of Childhood) "Writers learn their craft, above all, from other writers. From reading. They learn it from immersing themselves in books....Perhaps they will have been encouraged along the way by a single, pivotal person; perhaps they will have learned perseverance after much rejection; perhaps they will get the recognition of readers and peers. Come what may, they must go to their desks alone." - Marie Arana (Introduction to The Writing Life) I find the sentiments expressed above interesting because they express my own experience: I am, by nature, a solitary person when it comes to writing (although not for visual art, which seems to draw on an entirely different part of my psyche), and have learned my trade through reading and practice, plus the quietly intimate work of editing novels and stories by other writers. Yet here in the fantasy/mythic arts field, as well as in children's literature and folklore scholarship, many people I know have gained valuable professional training through classes, workshops, and MA programs; and/or they keep their skills honed through membership in writing groups. There is no right or wrong way to become a writer; it's a matter of finding out which method of learning the craft (and continuing to learn it) works best for each of us. This aspect of the creative temperament is a subject that comes up often in our household, because my husband and I are very different. Howard works in the collaborative field of theatre and thrives when creatively engaged with others; the hardest parts of his work are those (like grant writing and admin work) that require him to sit at a desk alone. I am entirely the opposite. I crave silence and solitude, shutting out the clamour of the outside world in order to hear the quiet voice of my own imagination; and have a much harder time integrating the social aspects of my profession (and of life in general) with the hours and hours of solitary labour required to produce a book. Each of us needs a different tempo of life to do our best work, and creating a household that works for both of us is one of the challenges of a two-artist marriage. (There are different kinds of challenges, of course, for the single artist; as well as for artists with small children, artists in partnership with non-artists, etc..) What makes a writer? Reading, reading, reading -- yes, I agree with the writers quoted above that reading widely and voraciously is the first and most important step. But the world we build around us is also what makes us artists, for good or ill. The ways we learn to write, and to keep on writing, do not happen in a vacuum: they're affected by the lives we lead, the commitments we have, the compromises we make, and the people we are. I'd be interested to hear your thoughts on the subject, and your own experience. Post script: For those who prefer their work spaces to be quiet and isolated (like I do), I recommend "What Great Artists Need: Solitude," in which Danish writer Dorthe Nors reflects on lessons learned from Igmar Bergman (The Atlantic, 2014) Pictures: In the Golden Days by John Melhuish Strudwick (1849-1937); The Gift That is Better Than Rubies by Eleanor Fortescue Brickdale (1872-1945); readers by Albert Moore (1841-1893) & Valentine Cameron Prinsep (1838-1904), Poetry by Simeon Solomon (1840-1905); Beatrice by Maria Spartali Stillman (1844-1927); Heidi and Peter Reading Together by Jessie Willcox Smith (1863-1935); and Reading Aloud by Julius LeBlanc Steward (1855-1919). in On reading, On writing, The Pre-Raphaelites and the Arts & Crafts movement | Permalink | Comments (5) My apologies for the lack of a post yesterday (Tuesday). This blog's server, Typepad, was down all morning -- and by the time they had the platform up and running again, I was deep into my manuscript-in-progress. The post I'd planned for you is below, with yet more lovely art from the Pre-Raphaelite era. I've enjoyed spending two weeks posting about the Pre-Raphaelites -- and could very easily keep going on the subject -- but I'm also aware that not everyone here is obsessed with Victorian art. I've got a few more PRB posts in the works, but I'll mix them up now with other posts on the usual topics: the writing life, the art-making process, fantasy, fairy tales, book recommendations and journeys through the Devon hills with Tilly, our mythic Animal Guide.... The photograph at the top of this post, by the way, is from my recent road trip to Kelmscott Manor, taken at the manor's doorway by Marja Lee Kruÿt. in Myth & Moor updates, The Pre-Raphaelites and the Arts & Crafts movement | Permalink | Comments (9) On becoming a writer From "A Real Life Education" by novelist, playwright, and screenwriter Susan Minot: "I never wanted to be a writer. That is, I never had the notion I wanted to be a writer. I started the way other people did, writing compositions in school. I liked doing that; it pulled at my imagination with a sort of elastic tension I enjoyed. The same thing happened when I made up games with friends or put on plays with my brothers and sisters. There was something about elaborating on the world that gave great pleasure. "But I also also enjoyed art class -- art wasn't even like a class it was so good; you got to make things with your hands -- and I liked science. Who wouldn't? We got to go outside and collect pollywogs in the pond. We got to dissect frogs and see the secret goings-on inside. If I had a thought about it, which I didn't because I was not practical, I would have pictured myself as an artist. I could picture painting in a studio with easels and brushes, or, even better, out in a landscape with a box of paints. "But a writer? I had no picture in my mind of what being a writer was. How could I aspire to that? I'd never met a writer. What did a writer actually do? What did a writer have, words? I did not come from a literary family, despite the fact that two siblings and one step-sister became writers too. (And I would not be surprised if there were more to come.) My youngest sister, Eliza, who is a novelist, believes that part of it was our having to relay information among the siblings -- there were seven of us and a lot going on -- which encouraged our putting things into words." "When I left home for boarding school," Minot notes later in the essay, "I began to write on my own -- prose poetry, journal writing. It was the first time I had a room of my own, and I found that writing was a way both of being alone and of finding what was going on inside of myself. Instead of doing homework, I wrote pages of stream-of-consciousness long into the night. "The novelist Jim Harrison has said that he is suspicious of any budding writer who is not drunk with words. I was completely inebriated. I was compelled to write; it became a compulsion. I wrote out of desperation. In the great turmoil and gloom and euphoria of adolescence, I found there was nowhere to express the chaos of the emotions I was feeling, nowhere but in words. I began to rely so much on writing that I was living a double-life -- one in the world and one on the page. The one on the page was more intense, more satisfying and for a long time much more real.... "I am very fortunate to make my living by writing, though I feel I got to this point through no more design than having followed an often bewildered instinct and by simply always writing. I believe that what an artist needs most, more than inspiration or financial consulation or encouragement or talent or love or luck, is endurance. Often the abstraction of using only words frustrates me -- I write on paper with a dipped pen and ink, and type on a manual typewriter in order to have some three-dimensional activities with my hands -- but again and again I discover how far words are capable of going, both in the world and on the page. The fact is, this side of the mind, nothing goes father than words. With words I am able to do those things that first intrigued me when I was young, those things that made me feel most alive -- I am able to paint pictures, collect things from muddy ponds, dissect insides, make things up, put on costumes, direct the lights, inspect hearts, entertain, dream. "And, if it goes well, I might convey some of that vitality to others, and so give back a drop into that huge pool of what other artists have, as strangers, given me: a reason to live." Pictures: A portrait of the artist's daughter, Gladys Holman Hunt, by William Holman Hunt (1827-1910), a founding member of The Pre-Raphaelite Brotherhood; "Fairy Tales" by Mary L. Gow (1851-1929); a portrait of Katie Lewis by Edward Burne-Jones (1833-1898); a sketch of Elisabeth Siddal reading by Dante Gabriel Rossetti, PRB (1828-1882); and a portrait of Winifred Robers by Eleanor Fortescue Brickdale (1872-1945). Words: The passages above come from "A Real Life Education" by Susan Minot, published in The Writing Life, edited by Marie Arana (Public Affairs, 2003); all rights reserved by the author. in On writing, The Pre-Raphaelites and the Arts & Crafts movement | Permalink | Comments (2) The art of creating a life If your general impression of Pre-Raphaelite women is that they all drooped languidly among the lilies, beautiful and passive, their role confined to inspiring the famous men around them...well, think again. There were many fine women artists and artisans in Pre-Raphaelite circles and the Arts & Crafts movement, including the painters whose work is above: Kate Bunce, Evelyn de Morgan, Maria Spartali Stillman, Eleanor Fortescue Brickdale, Emma Sandys, and Joanna Mary Boyce. They pushed against restrictive Victorian norms of gender, class, and sexuality to lead creative, courageous lives, making art and craftwork that still inspires their fellow Romantics today. One of my personal favorites is Barabara Leigh Smith Bodichon, a painter of landscapes and nature studies faithful to the plein air doctrine of early Pre-Raphaelitism. Few of her paintings survive today -- and those that do, I have to admit, don't place her in the top tier of Victorian artists. But viewing her life in its entirety as a work of art, I stand in awe of what she created. How could we not be inspired by Barbara Bodichon? She palled around with Morris, Rossetti, and Elizabeth Siddal; she was best friends with George Eliot; she foraged and botanized with the great landscape designer Getrude Jeckyll; and she was a hugely important figure in the early British feminist movement. When she wasn't off climbing remote mountains with her women friends, her rucksack crammed with art supplies, she published the influential English Women's Journal, established the Society of Female Artists (while pressuring the Royal Academy schools to open their doors to women), ran a popular London salon for discussion of art and politics, and was the co-founder (with Emily Davies) of Britain's first university college for women: Girton College at Cambridge. As part of the Langham Place Group, Barbara fought for four fundamental rights which benefit every woman in Britain to this day: the right to vote, the right of access to education, the right to work and keep ones own wages, and the right for married women to retain their own legal identity and property. She changed the world she lived in, while also pursuing love affairs, international adventures, and living a rich, full artist's life. She was vivid, she was brave, she was beloved by her many friends, she was mourned by thousands when she died, crowds thronging the streets as her funeral passed by... ...and then she was largely forgotten. Historian and feminist scholar Pam Hirsch suggests one reason why. Barabara, she notes, "did many things, and historians seem to find it easier to understand and write about a man who pursued one 'great' goal. Women's lives and women's histories often look different, more diffuse and (perhaps) harder to evaluate." Born in Sussex in 1827, Barbara was the daughter of a radical Member of Parliament, Ben Leigh Smith; granddaughter of the abolitionist William Smith; and cousin to Florence Nightingale. Her parents were never married, although they had six children together -- a shocking breach of Victorian propriety which strongly impacted Barbara's early life. The family was financially comfortable (Ben Leigh Smith had inherited property in Hastings), well-connected politically, but were not welcome in the more respectable circles of society. "When each of his children reached 21," writes Sussex historian Helena Wojtczak, "Ben broke with tradition and custom by treating his daughters the same as his sons, giving them investments which brought each an annual income of £300. The combination of an unconventional upbringing and a private income placed Barbara in an extraordinary position for a mid-Victorian woman. Whereas most women were raised to be obedient and expected only to marry, bear children and live in subordination to a husband, Barbara was free to live her life almost as she pleased. Money could not buy everything, however; for example her brother Ben went to Jesus College Cambridge in 1848, but Barbara was denied such academic opportunities, since no university would admit women. But she did not succumb to housewifery; she became a painter and social reformer. Despite her wealth Barbara eschewed high society and allied herself with the bohemian, the artistic, and the downtrodden." Barbara herself said, charmingly: "I am one of the cracked people of the world and I like to herd with the cracked, such as...queer Americans, democrats, socialists, artists, poor devils or angels; and am never happy in an English genteel family life. I try to do it like other people, but I long always to be off on some wild adventure, or long to lecture on a tub at St. Giles, or go off to see the Mormons, or ride off into the interior on horseback alone and leave the world for a month." I wish I could have known Barbara Bodichon, and her whole vibrant circle of smart, fearless women. I'd like to gather them all around the dinner table, along with a few smart, fearless friends of my own. We'd open a bottle of wine and sit back to to hear their stories -- marveling at all the things that have changed, and commiserating about all the things that haven't. And then we'd tell them, thank you. We'd tell them that we never take the rights they won for us for granted. And we hope that we, too, can make the world better for those who follow after us. Pre-Raphaelite Women: To learn more about the Barbara Bodichon, I recommend Pam Hirsch's fascinating biography: Barbara Leigh Smith Bodichon: Artist and Rebel (Chatto & Windus, 1998), and Charlotte Moore's reminiscence: "Aunt Barbara's Fireplace" (The Spectator, June 2010). To learn more about the women of the Pre-Raphaelite movement, I recommend two excellent blogs: Stephanie Graham Piña's Pre-Raphaelite Sisterhood, and Kirsty Stonell Walker's The Kissed Mouth. Credits: The quote by Helena Wojtczak is from a short article on Bodichon which appeared on the Hastings Press website, and now can be found on the Victorian Web; all rights reserved by the author. Some of my text above first appeared on Myth & Moor in 2011 (in the "Inspiring Women" series of posts). in The Pre-Raphaelites and the Arts & Crafts movement | Permalink | Comments (22) Grandfather's Garden Studio In her charming little book Three Houses, novelist Angela Thirkell looks back on the houses of her late-Victorian childhood -- including The Grange, an 18th century house in North End Lane in West Kensington, London, the home of Angela's grandparents: Pre-Raphaelite painter Edward Burne-Jones and his wife Georgie. "On Sunday my grandparents kept open house," Angela remembers. "Two or three extra places were laid at lunch for any friends who might drop in, but whoever came, I sat next to my grandfather. I was allowed to blow into the froth of his beer, 'to make a bird's nest,' or to have all the delicious outside from the mashed potatoes when they had been browned in the oven. If, disregarding the truth, I said that at home my toast was always buttered on both sides, my statement was gravely accepted and the toast buttered accordingly. There can have been few granddaughters who were so systematically spoiled as I was and it is a legend that the only serious difference of opinion which ever arose between Gladstone and Burne-Jones was as to which of them spoiled an adored granddaughter more." After lunch, the children were left to their own pursuits: to explore the house, play games in the garden, or sneak into her grandfather's Garden Studio: a long, white, rough-cast building between the orchard and the road. "It was a little alarming to us: the red-tiled entrance and steps which led down to the furnace-room where we were never allowed to go and where anything, one felt, might live; the iron grills in the floor to let in the warm air for winter days; the tall narrow slit in the outer wall through which the larger finished pictures were passed. Sometimes those pictures went to exhibitions, but more often straight to the friend or patron (in the very best sense of the word) who had commissioned them and was content to wait for years if need be for the perfect expression of the artist's mind. "In this studio there was a very high set of steps with a higher and lower platform on which the artist worked at the upper portions of his pictures. I remember sitting on these steps, my head wrapped in a many-colored piece of silk and bound with a coronet, while my grandfather made studies of crown and drapery for one of the mourning queens in the great unfinished picture of Arthur in Avalon which is now in the Tate Gallery. "Because there is a certain likeness between the little girl who wore the coronet and some of her grandfather's pictures, she has also been asked whether she sat to him. As far as I can remember he never used me for a model except on that one occassion when I wore the crown and veil. Nor in any case could he have drawn me often, as I was not yet eight years old when he died. "Neither did my mother who was a pure 'Burne-Jones type' sit to him much. The curious thing is -- and it ought to open a fresh field of inquiry into heredity -- that the type which my grandfather evolved for himself was transmitted to some of his descendants. In his earlier pictures there is a reflection of my grandmother in large-eyed women of normal, or almost low stature, as against the excessively long-limbed women of his later style. But the hair of these early women is not hers, it is the hair of Rossetti's women, the masses of thick wavy hair which we knew in 'Aunt Janey,' the beautiful Mrs. William Morris. When I remember her, Aunt Janey's hair was nearly white, but there was still the same masses of it, waving from head to tip. To anyone who knew her, Rossetti's pictures -- with the exception of his later exaggerated types -- were absolutely true. The large deep-set eyes, the full lips, the curved throat, the overshadowing hair were all there. Even in old age she looked like a queen as she moved about the house in long white draperies, her hands in a white muff, crowned by her glorious hair." Sometimes after Sunday lunch at The Grange, the children were put into a carriage "and taken to other gardens with studios in them, where our parents would talk and pace the paths, and we would play among rose trees and apple trees and the very sooty creeping ivy peculiar to London gardens. "All through the long afternoons the gardens waited for us. Draycott Lodge, where the Holman Hunts lived; Beavor Lodge and the Richmonds; the Vale, home of the de Morgans -- all bricks and mortar now. Melbury Road, even then only a ghost of its old self where the Princeps used to have their friends in a yet more golden age, and where the Watts still lived. Grove End Road, with Tadema's stories which were so difficult to understand until his own infectious laugh warned you that he had reached the point, the agate window and the brazen stairs. Hampstead, Chelsea, Hammersmith, gardens were waiting for us everywhere and people who made noble pictures and were constant friends." Although the circle of mythic artists here in Devon isn't quite so illustrious as the one Angela grew up in (Burne-Jones and his friends were, by then, among the most celebrated artists of their time), her words make me wonder what younger generations here in Chagford will remember about their myth-rattled, paint-spattered, faery-haunted parents and grandparents. And if any of them will write about it one day. If they do, I hope they will be kind. The passage above is from Three Houses by Angela Thirkell (Oxford University Press, 1931); all rights reserved by the author's estate. The paintings and photographs are identified in the picture captions. (Run your cursor over the images to see them.) in Age & memory, Houses & Domythic Arts, The Pre-Raphaelites and the Arts & Crafts movement | Permalink | Comments (6) notes from a Dartmoor studio on folklore, fairy tales, fantasy, mythic arts & mythic living by Terri Windling "Everything is held together with stories. That is all that is holding us together, stories and compassion." - Barry Lopez on folklore & fairy tales on mythic fiction & art on the creative process mythic resources dartmoor mythic arts the modern fairies project my book website "Storytellers ought not to be too tame. They ought to be wild creatures who function adequately in society. They are best in disguise. If they lose all their wildness, they cannot give us the truest joys." - Ben Okri Go here for an archive of past posts listed by date and subject. If you'd like to support my work, I now have a Patreon page. I still feel a little shy about it, so here are the reasons why I've taken the leap. Please note that Patreon funds are for making books and art, not for Myth & Moor. This blog is a nonprofit endeavor, offered in the spirit of gift exchange for all who create, study, and love Mythic Arts. "It is Story that heals us, that shapeshifts us, that saves us." - Sylvia V. Linsteadt Paintings credits (top to bottom): H.J. Ford, Warwick Goble, Charles Robinson, Adrienne Ségur Marianne Stokes, Alan Lee, Brian Froud & Arthur Rackham. Drawings by Terri Winding & Arthur Rackham. patreon page • newsletter • books site • about myth & moor • on fairy tales • on mythic arts
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
5,603
[ 128000, 791, 3339, 315, 264, 7061, 198, 30233, 4279, 3488, 4691, 315, 16483, 374, 11, 364, 4599, 1550, 499, 10491, 311, 3719, 264, 7061, 20837, 578, 4320, 315, 3388, 374, 430, 584, 3287, 956, 10491, 4205, 13, 1102, 574, 6773, 369, 603, 13, 358, 32620, 4510, 430, 84219, 10087, 6489, 3058, 1304, 27351, 520, 1057, 1589, 329, 645, 11, 323, 1888, 363, 872, 21258, 13, 578, 10087, 27510, 889, 2643, 617, 33944, 757, 449, 264, 26139, 7899, 1550, 539, 1501, 709, 26, 279, 52190, 315, 15612, 574, 28211, 304, 14254, 26, 279, 30806, 4791, 10826, 12, 526, 2053, 574, 6062, 17045, 13, 8442, 832, 1903, 279, 11879, 311, 856, 1589, 72455, 11, 323, 1364, 58366, 11, 364, 2675, 690, 387, 264, 41106, 7218, 3238, 6360, 12, 10455, 83197 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 791, 3339, 315, 264, 7061, 198, 30233, 4279, 3488, 4691, 315, 16483, 374, 11, 364, 4599, 1550, 499, 10491, 311, 3719, 264, 7061, 20837, 578, 4320, 315, 3388, 374, 430, 584, 3287, 956, 10491, 4205, 13, 1102, 574, 6773, 369, 603, 13, 358, 32620, 4510, 430, 84219, 10087, 6489, 3058, 1304, 27351, 520, 1057, 1589, 329, 645, 11, 323, 1888, 363, 872, 21258, 13, 578, 10087, 27510, 889, 2643, 617, 33944, 757, 449, 264, 26139, 7899, 1550, 539, 1501, 709, 26, 279, 52190, 315, 15612, 574, 28211, 304, 14254, 26, 279, 30806, 4791, 10826, 12, 526, 2053, 574, 6062, 17045, 13, 8442, 832, 1903, 279, 11879, 311, 856, 1589, 72455, 11, 323, 1364, 58366, 11, 364, 2675, 690, 387, 264, 41106, 7218, 3238, 6360, 12, 10455, 83197, -100 ]
Tiefenstein steht für: Tiefenstein (Adelsgeschlecht), Adelsgeschlecht Tiefenstein (Görwihl), Ortsteil von Görwihl im Hotzenwald im Landkreis Waldshut Tiefenstein (Idar-Oberstein), Stadtteil der rheinland-pfälzischen Stadt Idar-Oberstein im Landkreis Birkenfeld Siehe auch: Tiefstein
{ "redpajama_set_name": "RedPajamaWikipedia" }
2,760
[ 128000, 51, 4843, 62756, 55483, 7328, 1473, 350, 4843, 62756, 320, 2654, 301, 2034, 60478, 273, 14244, 705, 2467, 301, 2034, 60478, 273, 14244, 198, 350, 4843, 62756, 320, 38, 9603, 86, 7141, 75, 705, 45440, 5455, 321, 6675, 109563, 86, 7141, 75, 737, 8166, 5797, 54006, 737, 11680, 56042, 285, 51668, 939, 332, 198, 350, 4843, 62756, 320, 769, 277, 24540, 655, 12711, 705, 55192, 56732, 2761, 68132, 258, 1974, 2320, 69, 30902, 89, 18211, 55192, 5336, 277, 24540, 655, 12711, 737, 11680, 56042, 285, 37919, 2779, 31202, 198, 51955, 383, 11168, 512, 350, 4843, 12711, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 51, 4843, 62756, 55483, 7328, 1473, 350, 4843, 62756, 320, 2654, 301, 2034, 60478, 273, 14244, 705, 2467, 301, 2034, 60478, 273, 14244, 198, 350, 4843, 62756, 320, 38, 9603, 86, 7141, 75, 705, 45440, 5455, 321, 6675, 109563, 86, 7141, 75, 737, 8166, 5797, 54006, 737, 11680, 56042, 285, 51668, 939, 332, 198, 350, 4843, 62756, 320, 769, 277, 24540, 655, 12711, 705, 55192, 56732, 2761, 68132, 258, 1974, 2320, 69, 30902, 89, 18211, 55192, 5336, 277, 24540, 655, 12711, 737, 11680, 56042, 285, 37919, 2779, 31202, 198, 51955, 383, 11168, 512, 350, 4843, 12711, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Busytown by Jolisa Gracewood 1:31PM Mar 17, 2014 • Read Post Busytown: School bully Hebe, 13:31 Mar 17, 2014 Yes. All of it. Kate Hannah, 13:32 Mar 17, 2014 I'm starting to think that this might have rather a lot to do with it - https://secure.zeald.com/nzinitiative/Research/Teacher%20Quality%20and%20Student%20Achievement%20The%20New%20Zealand%20Context?mv_pc=13233 Auckland • Since Mar 2010 • 107 posts Report Reply Greg Wood, 13:58 Mar 17, 2014 This one post might be the most important document for an entire generation. Share this one, and share it hard. The kids currently can't, and they don't deserve what sewage is coming down the pipe, fed through to us from a failing system elsewhere and seemingly -- irony isn't even close, here -- unfiltered by critical thinking. Share it for the kids. And, god help us, the rest of us. Now back in Aucktown • Since Dec 2006 • 86 posts Report Reply Danielle, 14:00 Mar 17, 2014 This post is so fucking righteously badass I want it engraved on stone tablets. MxDEJ, 14:01 Mar 17, 2014 That some teachers are better than others is both incredibly obvious and important. More than that, it's entirely within the Minister of Education's purview, making it incredibly relevant (unlike poverty, hunger, or racism, which are somewhat different in that regard). Danielle, in reply to MxDEJ, 14:13 Mar 17, 2014 That some teachers are better than others is both incredibly obvious and important. But this isn't about improving teachers: it's about undermining the union. It's always, ALWAYS about breaking up the union. Carol Green, 14:19 Mar 17, 2014 An excellent post, Jolisa, thank you for putting so eloquently what I feared was happening. I have also seen these things happen in the UK, further dividing a very divided education system. I hope as many people as possible read this and that it informs their choice at the upcoming election. Auckland • Since Jul 2008 • 53 posts Report Reply BenWilson, 14:29 Mar 17, 2014 Great post Jolisa. Thalia KR, 14:31 Mar 17, 2014 After a decade of lurking, I have signed up in order to say thank you for this. Keep em coming! The conversations I was part of about yesterday's news showed kiwi teachers - and I know some *excellent* ones - are feeling acutely demoralised by the trail of breadcrumbs you describe. My mother, a teacher for her whole adult life, called it 'an act of abandonment'. So schoolkids will suffer not just because their day is dominated by teaching to the test but because many of their best teachers, particularly those who have clear alternative career opportunities, will leave. I'm currently obsessed with the idea of unschooling, but simultaneously proud to hear from friends around the world how very good our education system is, in relative terms. I guess MPs' kids mostly go to schools that will get more money in the brave new world. I don't mean that they want to change policy to benefit their kids (if they thought hard they'd realise their kids would be worse off) but that they perhaps don't have a lot of personal stake in thinking hard about the damage it would do to poor schools. Wellington • Since Mar 2014 • 5 posts Report Reply Steve Barnes, 14:38 Mar 17, 2014 Ms Parata, they wrote in an editorial, has "revealed the Cabinet's firm conviction that freemarket ideology is as applicable to purchasing school education as it is to buying a BMW or a nice dinner at one of Tony Astle ONZM's restaurants." There, fixed it for you Ms Parata. I too spluttered into my coffee when I read about Hekia Parata's plans to link school funding to student "progress.". The stupidity of such a statement would have shocked me had I not known where it came from. Now I shall draw a long bow… It is obvious to me that if you want to sell something you have to have some objective measure of its worth, like its ranking with other offerings of its kind, otherwise how would you know how much to flog it for? Plus, a business is surely worth more if its workers have no power?. Oh excellent post BTW Rob Stowell, 15:00 Mar 17, 2014 Brilliant, Jolissa, And what you describe is *extremely* infuriating. Destroying what you don't- can't won't- understand is vandalism. That's what I see - combined with concern-troll murmurs of 'killing them with low expectations.' Hope Chris Hipkins really get's his teeth into this. Katita, 15:32 Mar 17, 2014 my long, slow realisation that the testing-tail was wagging the educational dog I was reading this post and thinking to myself "jesus do none of these clowns watch The Wire" and there you are - linked straight in to it. I both snorted and chortled. My daughter starts primary school later this year. I won't be voting National or Parata for many reasons. I'm not sure if I agree it's been a policy striptease - slowly revealing the true horror underneath or just a complete cock-up of off the cuff policy driven by sound-bite without any evidence-based input. Trevor Nicholls, 15:35 Mar 17, 2014 NZ schools // UK hospitals. Demoralise, downgrade, sell off. Mahal, 15:48 Mar 17, 2014 This, this, all of this. Auckland • Since Apr 2007 • 31 posts Report Reply tussock, 15:52 Mar 17, 2014 The real trick here is there's an enormous amount of money to be had. With a partnership school all your incomes are higher and all your outgoings are lower and it's government guaranteed forever, or at least until people stop voting for the bastards. I mean, it's not as rich a pickings as the private prisons, because you can't just arbitrarily double your private school population like you can with prisons, unless you shut a randomised bunch of public schools each year or something. And there's the trick. Pull all the top teachers and students out of the poorest schools, hand them more money for leaving, then close the school that got "worse" in their absence so you can do it all over again. The awesome thing with the constant testing is there's always somewhere going to be headed downhill over any particular school year. And all you have to do to start a "partnership" school of your own is donate some dosh to the National party. Easy as tau. Dan Salmon, 16:02 Mar 17, 2014 Having watched the coach of a 'top' auckland private boys school blatantly cheat (yelling false information at the opposition team to put them off) in the last minute of a sports game yesterday (when two schools were locked neck and neck) i kept thinking - performance pay - performance bonus. The expression on his face when they ultimately lost wasn't a good one for young men who should be learning grace and dignity under pressure. If that's the future, we need to do everything we can to keep it out of our public schools. On a more constructive note: every study i have seen shows parental education background and early childhood as the biggest predictors of successful life outcomes. Any party that really wants to address these issues needs to ensure children are born into health, unstressed, literate homes. It's a long game, but the only way to change anything. Auckland • Since Mar 2011 • 40 posts Report Reply Euan Mason, in reply to MxDEJ, 16:26 Mar 17, 2014 So hunger, poverty and racism don't influence education? It really doesn't affect your education if you and your parents live below the poverty line because their skin was the wrong colour for the boss, and you go to school hungry? Yeah right. Great post Jolisa, really f-ing great post. This issue makes me so angry. Keep up the good work, and let's shout this from the rooftops throughout the election season. Canterbury • Since Jul 2008 • 259 posts Report Reply Steve Barnes, in reply to tussock, 16:38 Mar 17, 2014 The real trick here is there's an enormous amount of money to be had. With a partnership school all your incomes are higher and all your outgoings are lower and it's government guaranteed forever, or at least until people stop voting for the bastards. Come September I hope we see the true nature of NZ voters and not the realisation of the National Propaganda Machine's spin. We are continually told that "Life under Labour and the Greens will be a disaster greater than any disaster that has gone before" We are continually told that "National is ahead in the polls and Labour and the Greens are sinking like a stone" We are continually told that "John Key is the only person that can pull New Zealand together, he is the "chosen one"' We are continually told that "Everybody on the opposition benches is an idiot or a fool" We are continually told that "Only National has the answers" We are continually told We are continually told....... "If you tell a lie big enough and keep repeating it, people will eventually come to believe it. The lie can be maintained only for such time as the State can shield the people from the political, economic and/or military consequences of the lie. It thus becomes vitally important for the State to use all of its powers to repress dissent, for the truth is the mortal enemy of the lie, and thus by extension, the truth is the greatest enemy of the State." There are those that say he never said it but that, I fear, is just another lie. Ianmac, 16:44 Mar 17, 2014 Before the last (or was it the one before?) there was no mention of Charter Schools yet the planning had begun especially with the employment as CEO Education of that English woman, who surprise surprise was well skilled in Charter Schools. After the election it became a demand from ACT, apparently, when in fact the groundwork had already started. Now we have the spectre of Bulk Funding (solve the NOVApay problem?) and sooner or later Performance Pay, and funding of Schools by the Performance/progress of the children. Thin edge etc. Jolisa. A brilliant portrayal and a dire warning to parents and kids. I wonder if the Herald would publish your work, or North and South? Sofie Bribiesca, in reply to Ianmac, 17:01 Mar 17, 2014 I'm thinking maybe Scoop might take an opinion piece but whaddoIknow? I've already suggested Chris Hipkins might peruse. If others push the opposition MPs, maybe they can get behind a concerted campaign to advise the public quickly Kevin McCready, 17:23 Mar 17, 2014 Thalia KR I have to disagree with you about the conservatives thinking one step further and realising they would create a society that's ultimately damaging to their own interests. I disagree because I think that it a fundamental misunderstanding of the conservative mind, as opposed to the liberal mind. The extremist conservatives who are running the country truly believe that some people are better off dead. They think it will improve the gene pool. I have had discussions for example on drug policy with conservatives who are very very well aware that their policies lead to more deaths. They are happy for this to happen for the reasons I've given. The conservative mind is also driven by fear. The problem in the small world of NZ politics is that liberals are swamped by extremist conservatives on their end of the spectrum. Auckland • Since Jun 2013 • 119 posts Report Reply Kumara Republic, 17:23 Mar 17, 2014 And the private school system is no silver bullet. At least from my own jaundiced experiences, private schools are less about excellence, and more about grooming the next generation of old-money and new-money snobs. And with high-decile public schools, they're really just cherry-picking the kids from stable and affluent families - there were allegations of school zone gerrymandering not too long ago. I fear for the brilliant but autistic and other PDD-NOS kids who get written off by the GERM warmongers. My folks found out the hard way that square pegs didn't fit in round holes, even after making the hammer bigger, and what they ended up with was a pale imitation of a hikikomori. They ultimately put the blame on Tomorrow's Schools, and had they been in the know at the time, they would have sent me to a public school with the help of a teacher aide. And one more point: how many charter school owners and advocates would actually send their kids to one? Anne M, 17:26 Mar 17, 2014 The worst teacher my daughter had, the one that handed out worksheets with 1950s geography to fill in and whose idea of creative writing was getting them to re-write a previous student's poem would be considered the best under an assessed-by-simplistic-multi-choice-test system. We've just volunteered to help the Greens this election Kumara Republic, in reply to Kevin McCready, 17:27 Mar 17, 2014 I have had discussions for example on drug policy with conservatives who are very very well aware that their policies lead to more deaths. They are happy for this to happen for the reasons I've given. To cut a long story short, it's a branch of Shock Doctrine disaster capitalism. In my view, disaster capitalism is the most recent manifestation of mistaking the Broken Window fallacy for a training manual. And is it putting on a tin-foil hat to suggest that the Novopay debacle is a covert method of attempting to wear down the teacher unions' fighting spirit? HORansome, 18:16 Mar 17, 2014 What makes this all the more depressing to me is that I'm a) training to be a primary school teacher at the moment and b) already pretty disappointed by how National Standards have led to only two parts of the curriculum (English and Mathematics) being taught (the other six parts tend to be taught in the spare hour teachers manage to find in a week; not joking). So, now I'm thinking "Is this really the profession for me?" and if I'm thinking that, an awful lot of registered teachers must be thinking that to. If I were a conspiracy theorist (as opposed to a conspiracy theory theorist), I'd think this was part of a plan to rid the world of our existing teachers and bring in a new class of people who ready students for their weekly pieces of assessment. Tāmaki Makaurau • Since Sep 2008 • 441 posts Report Reply Tell You What: A Nonfiction Giveaway! Beware of the Leopard Busytown Archive About Jolisa Gracewood Travels with Baby - Iceland! NZ Listener Ben.geek.nz Around the World in 180 Days Marianne Elliott @nzdodo
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,831
[ 128000, 15423, 16820, 785, 555, 622, 337, 10994, 32171, 6798, 198, 16, 25, 2148, 8971, 2947, 220, 1114, 11, 220, 679, 19, 7436, 4557, 3962, 198, 15423, 16820, 785, 25, 6150, 64176, 198, 1548, 1395, 11, 220, 1032, 25, 2148, 2947, 220, 1114, 11, 220, 679, 19, 198, 9642, 13, 2052, 315, 433, 627, 80469, 48361, 11, 220, 1032, 25, 843, 2947, 220, 1114, 11, 220, 679, 19, 198, 40, 2846, 6041, 311, 1781, 430, 420, 2643, 617, 4856, 264, 2763, 311, 656, 449, 433, 18722, 2485, 1129, 26189, 13, 3059, 4852, 916, 9809, 89, 2381, 54679, 14, 28528, 14, 46165, 4, 508, 34174, 4, 508, 438, 4, 508, 14428, 4, 508, 72685, 7986, 4, 508, 791, 4, 508, 3648, 4, 508, 60562, 15697, 4, 508, 2014, 30 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 15423, 16820, 785, 555, 622, 337, 10994, 32171, 6798, 198, 16, 25, 2148, 8971, 2947, 220, 1114, 11, 220, 679, 19, 7436, 4557, 3962, 198, 15423, 16820, 785, 25, 6150, 64176, 198, 1548, 1395, 11, 220, 1032, 25, 2148, 2947, 220, 1114, 11, 220, 679, 19, 198, 9642, 13, 2052, 315, 433, 627, 80469, 48361, 11, 220, 1032, 25, 843, 2947, 220, 1114, 11, 220, 679, 19, 198, 40, 2846, 6041, 311, 1781, 430, 420, 2643, 617, 4856, 264, 2763, 311, 656, 449, 433, 18722, 2485, 1129, 26189, 13, 3059, 4852, 916, 9809, 89, 2381, 54679, 14, 28528, 14, 46165, 4, 508, 34174, 4, 508, 438, 4, 508, 14428, 4, 508, 72685, 7986, 4, 508, 791, 4, 508, 3648, 4, 508, 60562, 15697, 4, 508, 2014, 30, -100 ]
Our regular auctions of musical instruments and equipment have developed a keen following both locally and online. It's helped us establish some record prices including a proud moment when we sold a limited edition 'JS Berlin Legend' Patrick Eggle electric guitar. It was made for the Irish blues and rock legend Rory Gallagher which helped it to sell for £29,500, including buyer's premium. We have also sold guitars for more modest prices such as a left-handed Rickenbacker 4001 Bass guitar in a fitted case which made £1,400. The auctions always include a large selection of violins, accordions, pianos and keyboards alongside less well-known instruments such as phono fiddles. Examples of items sold recently include a hammer price of £1250 for a vintage Fantina Sonatina piano accordion in a fitted case, £550 for a Jones Concertina and £180 for a traditional violin, bow and case, labelled John G Murdoch. We also sold a set of Northumbria small pipes for £300 and a Zimmerman baby grand piano made £400, evidence of the breadth of instruments we see and sell. And no music sale is complete without a good selection of speakers, amps, microphones, gramophones and stereo equipment. We sold an HMV 102 gramophone with instruction book and songster needles for a respectable £210 and a selection of vintage radio/amplifier valves for £90. And given the popularity of vinyl, it's no surprise to see turntables doing well at auction like a vintage Linn Sondek LP12 turntable which made £440. Please complete the form below if you have an item you would like valuing or visit our website for details of future sales and how to view and buy.
{ "redpajama_set_name": "RedPajamaC4" }
6,443
[ 128000, 8140, 5912, 71232, 315, 18273, 24198, 323, 7241, 617, 8040, 264, 27989, 2768, 2225, 24392, 323, 2930, 13, 1102, 596, 9087, 603, 5813, 1063, 3335, 7729, 2737, 264, 12691, 4545, 994, 584, 6216, 264, 7347, 14002, 364, 12830, 20437, 28033, 6, 20199, 39175, 3491, 9249, 17418, 13, 1102, 574, 1903, 369, 279, 18088, 44695, 323, 7091, 13314, 83421, 79087, 902, 9087, 433, 311, 4662, 369, 7083, 1682, 11, 2636, 11, 2737, 26171, 596, 15193, 13, 1226, 617, 1101, 6216, 60594, 369, 810, 27946, 7729, 1778, 439, 264, 2163, 37240, 432, 9890, 1445, 261, 220, 3443, 16, 37053, 17418, 304, 264, 29441, 1162, 902, 1903, 7083, 16, 11, 3443, 627, 791, 71232, 2744, 2997, 264, 3544, 6727, 315, 4738, 1354, 11, 14902, 919, 11, 60166, 437, 323, 71402 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 8140, 5912, 71232, 315, 18273, 24198, 323, 7241, 617, 8040, 264, 27989, 2768, 2225, 24392, 323, 2930, 13, 1102, 596, 9087, 603, 5813, 1063, 3335, 7729, 2737, 264, 12691, 4545, 994, 584, 6216, 264, 7347, 14002, 364, 12830, 20437, 28033, 6, 20199, 39175, 3491, 9249, 17418, 13, 1102, 574, 1903, 369, 279, 18088, 44695, 323, 7091, 13314, 83421, 79087, 902, 9087, 433, 311, 4662, 369, 7083, 1682, 11, 2636, 11, 2737, 26171, 596, 15193, 13, 1226, 617, 1101, 6216, 60594, 369, 810, 27946, 7729, 1778, 439, 264, 2163, 37240, 432, 9890, 1445, 261, 220, 3443, 16, 37053, 17418, 304, 264, 29441, 1162, 902, 1903, 7083, 16, 11, 3443, 627, 791, 71232, 2744, 2997, 264, 3544, 6727, 315, 4738, 1354, 11, 14902, 919, 11, 60166, 437, 323, 71402, -100 ]
From cup final and derby day goals to the dramatic title-winning strike that spawned a thousand vowels, Sergio Aguero has always been Manchester City's man for the big occasion. The Argentine international is arguably the most prolific big-game marksman in Premier League history, and Aguero's record in fixtures of magnitude and significance is so abnormally consistent that you'd be tempted to check if he had rabbit's feet inside his boots. His phenomenal big-match numbers are down to his unique ability rather than any element of luck however, and Aguero has a unique set of game-turning attributes that few can match. In his youth, Aguero's grandparents gifted him the nickname "Kun" due to his resemblance to a character from the Japanese cartoon Kum-Kum – a moniker that now feels suitably ironic with Aguero regularly leaving opposing defenders looking completely inanimate. Sergio Aguero's Premier League debut double against Swansea City on the 15th of August 2011 was a foreshadowing moment for the then 23-year old, who has since gone on to become the club's record goal-scorer. But it was Aguero's goal at White Hart Lane a fortnight later in City's 5-1 mauling of Spurs that kickstarted his phenomenal long-running record against the Premier League's biggest and best. In total, Sergio Aguero has plundered 40 goals in his 62 Premier League appearances against Manchester United, Liverpool, Arsenal, Chelsea and Tottenham Hotspur collectively. It's a strike-rate that almost defies belief. Tottenham Hotspur have been on the receiving end of Aguero's explosive finishing 10 times since 2011, though remarkably enough, the Argentine hasn't found the net against Spurs since May 2015. Aguero bagged his 10 goals against Spurs inside his first 8 appearances against them, including a single 4-goal haul against them in October 2014. In the always heated Manchester Derby, Aguero has produced the goal-scoring goods 8 times. Aguero scored his 8th derby goal this season in City's 3-1 win over United in November, a strike that put him level with Bobby Charlton as the joint 4th top scorer in Manchester Derby history. Wayne Rooney tops the Manchester Derby historical charts with 11 goals, though Aguero still has ample time to catch up and overtake the former England international. Aguero has a chance to cut the 4-goal deficit when United meet City at Old Trafford in mid-March.. Aguero's sensational hattrick against Arsenal earlier this month brought his Premier League career total against the Gunners to 8, while his crucial deadlock breaker against Liverpool in early January was his 7th goal against the Merseysiders – all of which were scored at The Etihad. Chelsea have also been singed by Aguero's red-hot right foot. The Blues have seen the former Atletico Madrid star score 7 times against them in the Premier League. Aguero scored twice against Chelsea in this season's Charity Shield too, but he hasn't registered in the league against them since April 2017. The 30-year old will fancy his chances of bringing that record up to speed on Sunday however. It might surprise you to learn that the 2 seasons in which Sergio Aguero made his least number of Premier League appearances for Manchester City (23 apps in 13/14, and 25 in 17/18), were the 2 seasons that the Citizens won the title since their Abu Dhabi takeover in 2008. In truth, the relatively low appearance figures Aguero posted during City's title-winning seasons were coincidental rather than a hint of a pattern or correlation. Throughout his City career, Aguero has always been central to the team's pursuit of silverware, as evidenced in his fantastic performances and the goal scoring prowess he has displayed this season. Aguero is just a couple of goals shy of the Premier League's current leading goalscorer Mohamed Salah. Arsenal's Pierre-Emerick Aubameyang also stands between Aguero and top spot, though the Argentine's goals per game record suggests that he's still in prime position to make a run for the Golden Boot – an award he has won just once, back in 2014/15. Aguero has scored 0.66 goals on average per Premier League appearance this season, putting him ahead of his rivals in that metric. All 4 of his chart-topping antagonists have been on penalty duty for their respective clubs at various points in the season too, though none of Aguero's 14 goals were hit from the spot. In fact, if you strip out the penalties scored by Salah, Aubameyang and Kane in 2018/19, Aguero is out on his own as the Premier League's leading scorer from open play. Alongside his big-game scoring habit, Aguero has routinely been City's most consistent breakthrough provider this season. As proven by numerous statistical studies, scoring the first goal in any Premier League fixture significantly increases a team's chances of winning the game, and 50% of Aguero's 14 goals this season have been the opening goal in City's fixtures. On Sunday afternoon, City will be banking on another critical contest impact from Aguero in their latest Premier League test against Chelsea at the Etihad Stadium. Fresh from 6 goals in his last 5 appearances in league and cup for the Citizens, Aguero seems to be fine tuning his predatory instincts ahead of what promises to be a white-knuckle final third of the season. Against a Chelsea defence that has kept just 1 clean sheet in 7 Premier League away matches, and shipped 6 goals in the last 2 of those fixtures alone, there is every chance that Aguero will perform the role of big-game talisman again for City this weekend. These are the situations and matches that Aguero thrives in – when the chips are down and City's need is at its greatest, Kun usually provides. Click here to read our detailed Manchester City vs Chelsea match preview, predictions and free betting tips. Categories: Blog, Football, and Premier League. Tags: Chelsea, Man City, Manchester City, Premier League, Sergio Aguero, and Title race. Team Tag: Chelsea and manchester city. League: England Premier League. Sports: Football.
{ "redpajama_set_name": "RedPajamaC4" }
4,279
[ 128000, 3915, 10747, 1620, 323, 91770, 1938, 9021, 311, 279, 22520, 2316, 27875, 13471, 430, 53634, 264, 16579, 79556, 11, 66294, 77408, 2382, 706, 2744, 1027, 19922, 4409, 596, 893, 369, 279, 2466, 13402, 627, 791, 82822, 6625, 374, 36659, 279, 1455, 63100, 2466, 19959, 15785, 1543, 304, 20210, 9130, 3925, 11, 323, 77408, 2382, 596, 3335, 304, 38764, 315, 26703, 323, 26431, 374, 779, 671, 86336, 13263, 430, 499, 4265, 387, 54980, 311, 1817, 422, 568, 1047, 39824, 596, 7693, 4871, 813, 26302, 627, 16366, 57492, 2466, 46804, 5219, 527, 1523, 311, 813, 5016, 5845, 4856, 1109, 904, 2449, 315, 15369, 4869, 11, 323, 77408, 2382, 706, 264, 5016, 743, 315, 1847, 65051, 287, 8365, 430, 2478, 649, 2489, 627, 644, 813, 12822, 11, 77408, 2382, 596 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 3915, 10747, 1620, 323, 91770, 1938, 9021, 311, 279, 22520, 2316, 27875, 13471, 430, 53634, 264, 16579, 79556, 11, 66294, 77408, 2382, 706, 2744, 1027, 19922, 4409, 596, 893, 369, 279, 2466, 13402, 627, 791, 82822, 6625, 374, 36659, 279, 1455, 63100, 2466, 19959, 15785, 1543, 304, 20210, 9130, 3925, 11, 323, 77408, 2382, 596, 3335, 304, 38764, 315, 26703, 323, 26431, 374, 779, 671, 86336, 13263, 430, 499, 4265, 387, 54980, 311, 1817, 422, 568, 1047, 39824, 596, 7693, 4871, 813, 26302, 627, 16366, 57492, 2466, 46804, 5219, 527, 1523, 311, 813, 5016, 5845, 4856, 1109, 904, 2449, 315, 15369, 4869, 11, 323, 77408, 2382, 706, 264, 5016, 743, 315, 1847, 65051, 287, 8365, 430, 2478, 649, 2489, 627, 644, 813, 12822, 11, 77408, 2382, 596, -100 ]
8 Ways Your Social Media Content is Annoying Your Audience By Socialmediatoday.com | May 17, 2019 08:06 (edited) As marketers, we all tend to think that our content is always great. We provide value in a fun, memorable way, speaking to our audience in a manner that they enjoy. While it would be great if that were true, the sad reality is that if we aren't careful, our content can do more harm than good. And since both paid and organic success on social media hinges on a high-quality content strategy, it's important for brands to understand what their audience does and doesn't want to see. Luckily for us, Adobe recently conducted a new study of 1,000 U.S. consumers, which outlines what, specifically, annoys them most about content from brands. Want to keep your social media audience happy and engaged? Avoid these common mistakes. 39% of consumers are annoyed by content that's too wordy or poorly written Humans are fallible, and grammatical mistakes are bound to happen when creating a ton of content. Just keep in mind that too wordy, or poorly written content, is a big turnoff for consumers. Be clear, concise and accurate with your language. Have another team member review your content for quality just to be safe. Perfection is not a feasable goal, but keep in mind consumers want easy to understand and digest content. 28% of consumers are annoyed by content that's poorly designed Visual content rules the roost on social media, and it's crucially important to ensure that all of your content is visually appealing, where possible. If creative design isn't your forte, lean on a team member to help you out, or consider starting with a free slide template from a platform like Canva. At the end of the day, you're creating content with a view to convert social media consumers into customers, and your efforts simply won't be as effective if your material is unattractive. The majority of consumers are annoyed by content that gets too personalized and creepy Personalization is an amazing thing - however too much of it is just plain creepy. The key to not turning off consumers is being relevant to their situation, but not so exact that it freaks them out. Facebook has had a lot of bad press about data sharing, so you wouldn't want your marketing message to get overshadowed by someone feeling like you are spying on them. Offer a valuable solution to their presumed situation, not a creepy nudge that you know everything about them. 23% of consumers are annoyed by content that has been seen before, or is stale Brands in every industry are constantly pumping out content trying to achieve the same goal, but with this competition comes the mantra of 'curating' over 'creating' content. Be careful with this - the more a consumer sees a concept, the less impact it'll have. If your brand is the 3rd or 4th to have shared the same piece of content, it looks lame and of lesser value. Consider putting your own spin on curated content to freshen things up a bit. Consumers are often annoyed by content that isn't personalized to them As a counterbalance to point three, consumers do actually prefer content that relates to their specific question or personal situation. It's important to create content with an audience in mind, so that everything you publish will appeal to them in some way. The relevance and relatability of your content will position your brand as a resource for consumers. 21% of consumers are annoyed by content that isn't optimized for their device Facebook recommends focusing on mobile-first creative as a best practice for advertising. This is smart, considering most social media content consumption takes place on a mobile device. Considering that screen size can vary widely across devices, it's in your best interest to customize content to the device it will be consumed on. Make everything robust, easy to read and great to look at on any device. 17% of consumers are annoyed by content without video or images While people do still enjoy reading, consumers enjoy content with video or fun imagery more than text only. Every social media platform skews greatly towards using photos and videos, so you should look to make this a standard in your overarching content strategy. 16% of consumers are annoyed by content which promotes something they've already purchased How frustrating is it to buy something only to see a coupon for said item after the fact? Save yourself some trouble, and be considerate of what kind of content you serve to both customers and those who haven't become a customer yet. You have much more control over this through social advertising. From a content strategy perspective, consider it a best practice to avoid publishing redundant promotions to people who've already converted, and can't utilize them. Avoid the above mistakes and you'll minimize the risk of annoying your social media audience. After all, if they don't like your content, they'll be far less likely to buy from you.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,914
[ 128000, 23, 42419, 4718, 9983, 7972, 9059, 374, 1556, 2201, 7169, 4718, 66000, 198, 1383, 9983, 4503, 266, 6423, 916, 765, 3297, 220, 1114, 11, 220, 679, 24, 220, 2318, 25, 2705, 320, 62503, 340, 2170, 55572, 11, 584, 682, 8541, 311, 1781, 430, 1057, 2262, 374, 2744, 2294, 13, 1226, 3493, 907, 304, 264, 2523, 11, 33596, 1648, 11, 12365, 311, 1057, 10877, 304, 264, 11827, 430, 814, 4774, 627, 8142, 433, 1053, 387, 2294, 422, 430, 1051, 837, 11, 279, 12703, 8903, 374, 430, 422, 584, 7784, 956, 16994, 11, 1057, 2262, 649, 656, 810, 11682, 1109, 1695, 13, 1628, 2533, 2225, 7318, 323, 17808, 2450, 389, 3674, 3772, 80934, 389, 264, 1579, 22867, 2262, 8446, 11, 433, 596, 3062, 369, 16097, 311, 3619, 1148, 872 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 23, 42419, 4718, 9983, 7972, 9059, 374, 1556, 2201, 7169, 4718, 66000, 198, 1383, 9983, 4503, 266, 6423, 916, 765, 3297, 220, 1114, 11, 220, 679, 24, 220, 2318, 25, 2705, 320, 62503, 340, 2170, 55572, 11, 584, 682, 8541, 311, 1781, 430, 1057, 2262, 374, 2744, 2294, 13, 1226, 3493, 907, 304, 264, 2523, 11, 33596, 1648, 11, 12365, 311, 1057, 10877, 304, 264, 11827, 430, 814, 4774, 627, 8142, 433, 1053, 387, 2294, 422, 430, 1051, 837, 11, 279, 12703, 8903, 374, 430, 422, 584, 7784, 956, 16994, 11, 1057, 2262, 649, 656, 810, 11682, 1109, 1695, 13, 1628, 2533, 2225, 7318, 323, 17808, 2450, 389, 3674, 3772, 80934, 389, 264, 1579, 22867, 2262, 8446, 11, 433, 596, 3062, 369, 16097, 311, 3619, 1148, 872, -100 ]
Home TV Shows The Supermen of Today: Looking at the Strength of Both Portrayals. The Supermen of Today: Looking at the Strength of Both Portrayals. The Season 2 Premiere of CW's Supergirl introduced Teen Wolf star, Tyler Hoechlin, as one of DC's most iconic heroes: Superman. When the first promotional images of this new, live-action, Superman were released, many fans were a bit skeptical of the casting choice in Hoechlin. But when given the chance to prove himself, Hoechlin showed that he was ready to bring a fresh; yet familiar, take on the Man of Steel. In a very simple way, Hoechlin showed us what a bright, hopeful, and heroic Superman looks like. to the point where everyone thinks they need to choose a side (ex: Team Hoechlin vs. Team Cavill / Team Bale vs. Team Affleck). Can't we just be happy that there are so many different stories, from different perspectives, being told of these characters with such rich histories? Don't get me wrong, criticism can be a good thing. These characters are so iconic and so deeply cherished by millions of people, it's almost natural for us to be critical of the way they are being portrayed to the masses. But, I see A LOT of unfair (and often times misinformed) criticism in the media that just eggs people on to fight over who they think is better, and I see very little positive feedback that helps fans celebrate characters and actors. So, instead of doing a "Why Tyler Hoechlin/Henry Cavill is Da Best Supes Evr" post, I think it's important that we take a second to appreciate the strengths of both of these very talented Men of Steel. First of all, the dude looks awesome as Superman. Of all the great actors that have dawned the red cape, Henry Cavill stands out as the one who most closely resembles the comic book depictions. But beyond that, Henry Cavill brings a depth to the character of Clark Kent/Superman that hasn't been seen in previous movies or TV shows. We're used to seeing Superman as a more seasoned hero who understands his place as Earth's guardian, and who is loved by pretty much everyone. But that's not this Superman. Cavill's Superman is a "rookie" hero who is working through what his role really should be, and who is either feared or misunderstood, but rarely admired. This unique perspective gives us some insight into what it would actually be like to be Superman. What would it be like to grow up thinking you're a normal kid only to find out you're actually an alien with incredible powers? What would it be like to struggle with figuring out how you should or shouldn't use these powers? What would it be like if despite your best efforts to help people, you were always feared and thought of as a threat? These questions are explored in a very real way with Cavill's Superman. It's great to be able to admire the qualities of justice and selflessness in Superman, but we're able to admire those qualities even more if we can see the journey he went through to get there. Tyler Hoechlin's Superman is very reminiscent of the joyful, optimistic hero that audiences saw in the late 70's to early 90's with Christopher Reeve's Superman movies and Deane Caine's Lois and Clark TV show. Hoechlin delivers all of the well-known and expected ideals of Superman while wearing a smile. Perhaps his greatest strength in the portrayal of this character lies in the Clark Kent persona. Tyler Hoechlin's run on Supergirl ended yesterday after appearing on two episodes, but it's fair to say that he's given us a performance that we'll be talking about for a while. There is obviously a lot more to say about both Tyler Hoechlin's and Henry Cavill's performances as Superman. As I stated earlier, this is a beloved character that fans are very protective of, and any actor who decides to take on a role as the Man of Steel will be met with some intense reactions. But my hope is that once in a while we can all just take a step back and appreciate the stories and performances being given to us- because this age of superhero movies and TV shows won't last forever.
{ "redpajama_set_name": "RedPajamaC4" }
5,660
[ 128000, 7778, 6007, 37380, 578, 7445, 5794, 315, 11450, 25, 21815, 520, 279, 32937, 315, 11995, 5896, 11872, 1147, 627, 791, 7445, 5794, 315, 11450, 25, 21815, 520, 279, 32937, 315, 11995, 5896, 11872, 1147, 627, 791, 14598, 220, 17, 69924, 315, 41135, 596, 6433, 2431, 2881, 11784, 24138, 26296, 6917, 11, 32320, 87469, 331, 3817, 11, 439, 832, 315, 11162, 596, 1455, 27373, 23757, 25, 38809, 13, 3277, 279, 1176, 35382, 5448, 315, 420, 502, 11, 3974, 26115, 11, 38809, 1051, 6004, 11, 1690, 7359, 1051, 264, 2766, 44929, 315, 279, 25146, 5873, 304, 87469, 331, 3817, 13, 2030, 994, 2728, 279, 6140, 311, 12391, 5678, 11, 87469, 331, 3817, 8710, 430, 568, 574, 5644, 311, 4546, 264, 7878, 26, 3686, 11537, 11, 1935, 389, 279, 2418 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 7778, 6007, 37380, 578, 7445, 5794, 315, 11450, 25, 21815, 520, 279, 32937, 315, 11995, 5896, 11872, 1147, 627, 791, 7445, 5794, 315, 11450, 25, 21815, 520, 279, 32937, 315, 11995, 5896, 11872, 1147, 627, 791, 14598, 220, 17, 69924, 315, 41135, 596, 6433, 2431, 2881, 11784, 24138, 26296, 6917, 11, 32320, 87469, 331, 3817, 11, 439, 832, 315, 11162, 596, 1455, 27373, 23757, 25, 38809, 13, 3277, 279, 1176, 35382, 5448, 315, 420, 502, 11, 3974, 26115, 11, 38809, 1051, 6004, 11, 1690, 7359, 1051, 264, 2766, 44929, 315, 279, 25146, 5873, 304, 87469, 331, 3817, 13, 2030, 994, 2728, 279, 6140, 311, 12391, 5678, 11, 87469, 331, 3817, 8710, 430, 568, 574, 5644, 311, 4546, 264, 7878, 26, 3686, 11537, 11, 1935, 389, 279, 2418, -100 ]
Keely Deininger loved her job in design at a Marks and Spencer supplier. But she gave it up to look after her three children: "One day, I called my mother and asked her to look after the children. I took a plane to Vietnam. Once there, she started designing clothes: "I became an accidental entrepreneur overnight." Her story is part of a report that suggests the UK economy could be given a £250bn boost if women's start-ups were given the same funding as men. The government-commissioned report estimates there are 1.1 million "missing" female-run firms and sets out eight ways of boosting the number of female entrepreneurs. The funding for Keely Deininger's Angel Face business came from a colleague, rather than a formal loan from a bank or venture capital fund. She had no company name or business plan and had done no research before she started her company. "I have faced many challenges along my journey; cash flow being one of them, being incredibly time-poor another. "I ran my business between school runs, karate lessons, shopping, making the dinner and putting three kids to bed. For me, it is now a priority to support other mothers to be successful in the workforce," she says. The government-commissioned report - the Rose report - suggests that one way to get more women, regardless of whether they are mothers, into the workforce or starting businesses is to create a code asking them to report gender funding. Alison Rose, who led the review, said the shortfall was hurting the economy. Ms Rose, the head of Royal Bank of Scotland's corporate, commercial and private banking business, said: "I firmly believe that the disparity that exists between female and male entrepreneurs is unacceptable and holding the UK back." "The unrealised potential for the UK economy is enormous," said Ms Rose, who is also deputy chief executive of NatWest. Mr Jenrick said: "Today's striving businesswomen are too often facing barriers to setting up and growing their own enterprise. These barriers don't just hold back women, they hold back every single one of us." NatWest, owned by RBS, is to be the first signatory to the code, which commits financial investors to setting out gender funding, while the Treasury will establish a new "investing in female entrepreneurs code" to show a gender split of the investments they make annually. Released on International Women's Day, the report said that 6% of UK women run their own businesses compared with 15% in Canada, almost 11% in the US and more than 9% in Australia and the Netherlands. That rises to £250bn - the equivalent of four years' economic growth - if women were backed to the same extent as men. Image caption A survey for the review found access to funding is the number one barrier, mentioned by almost twice as many women as men. The report said only one in three UK entrepreneurs is female, which it describes as "a gender gap equivalent of 1.1 million missing businesses". The report describes the UK as the "start-up capital of Europe", with a 5.1% growth rate in the number of new businesses between 2013-2017. An "expert in resident" programme could be offered to entrepreneurs. The report also suggested banks should design products to help parent entrepreneurs manage family care.
{ "redpajama_set_name": "RedPajamaC4" }
439
[ 128000, 6746, 989, 1611, 258, 5248, 10456, 1077, 2683, 304, 2955, 520, 264, 49195, 323, 36221, 19353, 627, 4071, 1364, 6688, 433, 709, 311, 1427, 1306, 1077, 2380, 2911, 25, 330, 4054, 1938, 11, 358, 2663, 856, 6691, 323, 4691, 1077, 311, 1427, 1306, 279, 2911, 13, 358, 3952, 264, 11277, 311, 23315, 627, 12805, 1070, 11, 1364, 3940, 30829, 15447, 25, 330, 40, 6244, 459, 50016, 29349, 25402, 10246, 21364, 3446, 374, 961, 315, 264, 1934, 430, 13533, 279, 6560, 8752, 1436, 387, 2728, 264, 7083, 5154, 11328, 7916, 422, 3278, 596, 1212, 27859, 1051, 2728, 279, 1890, 11006, 439, 3026, 627, 791, 3109, 11733, 2796, 291, 1934, 17989, 1070, 527, 220, 16, 13, 16, 3610, 330, 31716, 1, 8954, 23831, 19339, 323, 7437, 704, 8223, 5627 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 6746, 989, 1611, 258, 5248, 10456, 1077, 2683, 304, 2955, 520, 264, 49195, 323, 36221, 19353, 627, 4071, 1364, 6688, 433, 709, 311, 1427, 1306, 1077, 2380, 2911, 25, 330, 4054, 1938, 11, 358, 2663, 856, 6691, 323, 4691, 1077, 311, 1427, 1306, 279, 2911, 13, 358, 3952, 264, 11277, 311, 23315, 627, 12805, 1070, 11, 1364, 3940, 30829, 15447, 25, 330, 40, 6244, 459, 50016, 29349, 25402, 10246, 21364, 3446, 374, 961, 315, 264, 1934, 430, 13533, 279, 6560, 8752, 1436, 387, 2728, 264, 7083, 5154, 11328, 7916, 422, 3278, 596, 1212, 27859, 1051, 2728, 279, 1890, 11006, 439, 3026, 627, 791, 3109, 11733, 2796, 291, 1934, 17989, 1070, 527, 220, 16, 13, 16, 3610, 330, 31716, 1, 8954, 23831, 19339, 323, 7437, 704, 8223, 5627, -100 ]
I am in the process of experimenting​ with video clones of myself for my new series on my YouTube Channel "ArtChick TV". Each video I document clones of myself to display different personas from the good me to the bad me. This video on display I refer to as "Lucid Dreamer". It starts​ out with a short sequence of me snoring and the other me unable to sleep. I wanted to add a bit of humor to my videos and to draw in my audience. Each video is different too. This one is by far my favorite. I'm interested to document other actors as well. So if you are an actor looking for something unique to add to your reel contact me. Or perhaps you have a service or product you would like to promote and in need of mini commercial for your social media platforms. I am open to be creative and provide you with something different for a change. In today's day in age attention span is slim and you only have so much of a window to grab hold of your audience. Let's create something unique together and have fun in the process too!
{ "redpajama_set_name": "RedPajamaC4" }
8,689
[ 128000, 40, 1097, 304, 279, 1920, 315, 60257, 16067, 449, 2835, 67007, 315, 7182, 369, 856, 502, 4101, 389, 856, 13674, 13740, 330, 9470, 1163, 875, 6007, 3343, 9062, 2835, 358, 2246, 67007, 315, 7182, 311, 3113, 2204, 32525, 505, 279, 1695, 757, 311, 279, 3958, 757, 13, 1115, 2835, 389, 3113, 358, 8464, 311, 439, 330, 41745, 307, 18308, 261, 3343, 1102, 8638, 16067, 704, 449, 264, 2875, 8668, 315, 757, 4224, 5620, 323, 279, 1023, 757, 12153, 311, 6212, 13, 358, 4934, 311, 923, 264, 2766, 315, 28485, 311, 856, 6946, 323, 311, 4128, 304, 856, 10877, 627, 4959, 2835, 374, 2204, 2288, 13, 1115, 832, 374, 555, 3117, 856, 7075, 13, 358, 2846, 8173, 311, 2246, 1023, 20142, 439, 1664, 13, 2100, 422, 499, 527 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 40, 1097, 304, 279, 1920, 315, 60257, 16067, 449, 2835, 67007, 315, 7182, 369, 856, 502, 4101, 389, 856, 13674, 13740, 330, 9470, 1163, 875, 6007, 3343, 9062, 2835, 358, 2246, 67007, 315, 7182, 311, 3113, 2204, 32525, 505, 279, 1695, 757, 311, 279, 3958, 757, 13, 1115, 2835, 389, 3113, 358, 8464, 311, 439, 330, 41745, 307, 18308, 261, 3343, 1102, 8638, 16067, 704, 449, 264, 2875, 8668, 315, 757, 4224, 5620, 323, 279, 1023, 757, 12153, 311, 6212, 13, 358, 4934, 311, 923, 264, 2766, 315, 28485, 311, 856, 6946, 323, 311, 4128, 304, 856, 10877, 627, 4959, 2835, 374, 2204, 2288, 13, 1115, 832, 374, 555, 3117, 856, 7075, 13, 358, 2846, 8173, 311, 2246, 1023, 20142, 439, 1664, 13, 2100, 422, 499, 527, -100 ]
Mayes County deputy fatally shoots man OSBI: Man reportedly fired at deputy The Oklahoma State Bureau of Investigation says a deputy in Mayes County fatally shot a man early New Year's Day.Authorities say a Mayes County deputy responded to a call early Wednesday in Chelsea. Once there, the deputy encountered a man standing on his porch with a gun.OSBI says the man reportedly fired at the deputy, and the deputy returned fire, killing the man. The Mayes County sheriff requested that OSBI investigate the shooting.The man's name has not yet been released, pending notification of relatives. The deputy's name hasn't been released.Crime footer CHELSEA, Okla. — The Oklahoma State Bureau of Investigation says a deputy in Mayes County fatally shot a man early New Year's Day. Authorities say a Mayes County deputy responded to a call early Wednesday in Chelsea. Once there, the deputy encountered a man standing on his porch with a gun. OSBI says the man reportedly fired at the deputy, and the deputy returned fire, killing the man. The Mayes County sheriff requested that OSBI investigate the shooting. The man's name has not yet been released, pending notification of relatives. The deputy's name hasn't been released.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
1,446
[ 128000, 11356, 288, 6406, 27158, 72461, 44727, 893, 198, 3204, 8768, 25, 2418, 18307, 14219, 520, 27158, 198, 791, 23640, 3314, 22555, 315, 47997, 2795, 264, 27158, 304, 3297, 288, 6406, 72461, 6689, 264, 893, 4216, 1561, 9941, 596, 6187, 34958, 1385, 2019, 264, 3297, 288, 6406, 27158, 16846, 311, 264, 1650, 4216, 8079, 304, 27616, 13, 9843, 1070, 11, 279, 27158, 23926, 264, 893, 11509, 389, 813, 45747, 449, 264, 6166, 58154, 8768, 2795, 279, 893, 18307, 14219, 520, 279, 27158, 11, 323, 279, 27158, 6052, 4027, 11, 13419, 279, 893, 13, 578, 3297, 288, 6406, 40839, 11472, 430, 10293, 8768, 19874, 279, 10658, 11829, 893, 596, 836, 706, 539, 3686, 1027, 6004, 11, 15639, 11801, 315, 29658, 13, 578, 27158, 596, 836, 12775, 956, 1027, 6004 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 11356, 288, 6406, 27158, 72461, 44727, 893, 198, 3204, 8768, 25, 2418, 18307, 14219, 520, 27158, 198, 791, 23640, 3314, 22555, 315, 47997, 2795, 264, 27158, 304, 3297, 288, 6406, 72461, 6689, 264, 893, 4216, 1561, 9941, 596, 6187, 34958, 1385, 2019, 264, 3297, 288, 6406, 27158, 16846, 311, 264, 1650, 4216, 8079, 304, 27616, 13, 9843, 1070, 11, 279, 27158, 23926, 264, 893, 11509, 389, 813, 45747, 449, 264, 6166, 58154, 8768, 2795, 279, 893, 18307, 14219, 520, 279, 27158, 11, 323, 279, 27158, 6052, 4027, 11, 13419, 279, 893, 13, 578, 3297, 288, 6406, 40839, 11472, 430, 10293, 8768, 19874, 279, 10658, 11829, 893, 596, 836, 706, 539, 3686, 1027, 6004, 11, 15639, 11801, 315, 29658, 13, 578, 27158, 596, 836, 12775, 956, 1027, 6004, -100 ]
Brady and Offense Elevate Patriots to Victory 36-20 Over Saints Posted on September 17, 2017 by Sam Gordon in New England Patriots // 0 Comments NEW ORLEANS, LA - SEPTEMBER 17: Tom Brady #12 and Rex Burkhead #34 of the New England Patriots react after a touchdown against the New Orleans Saints at the Mercedes-Benz Superdome on September 17, 2017 in New Orleans, Louisiana. (Photo by Chris Graythen/Getty Images) Fans can now breathe a sigh of relief after the New England Patriots routed the New Orleans Saints 36-20. Last week's loss gave the Patriots a much-needed reality check with many skeptical of the Patriots moving with elite fashion in Julian Edelman's absence. The team put those worries to bed for now after going back to their roots as a quick pass team. Signal-caller Tom Brady from the first bell, was outstanding becoming only the second 40-year-old quarterback in NFL history since Warren Moon to have three touchdowns and 400 yards in one game. Dorsett catching on fast; running backs involved like they should be "To be 0-1 with a 10-day break felt like a year," Brady said after the game. The Patriots even with their receiver position running dry, made do with what they had with Philip Dorsett catching three balls for 68 yards despite seemingly still learning the offense as he has been with team less than a month. The Patriots may have hinted at what is to come for their offense with the use of their fastest running backs Dion Lewis and James White as wide receivers in the slot. The versatility of all their offensive pieces will be counted on in the future. Deatrich Wise Jr. Igniting Patriots Pass Rush; Defense Shows Improvement and Rookie Deatrich Wise Jr. was a constant force on the defensive line and has given the Patriots a great rushing presence which is what they needed desperately. Trey Flowers applied pressure as well with the two men in the middle Adam Butler and Malcom Brown stopped the two power backs Mark Ingram II. and Adrian Peterson only rushing for 78 total yards. While the defense is still giving up a huge amount of yards, this was a great test and they passed. Injury updates for key players Rob Gronkowski landed awkwardly on a catch and run injuring his groin in the process. Luckily, Gronkowski will more than likely be back on the field next week after spending the rest of the game on the sideline walking with no limp and riding the stationary bike. Gronkowski proceeded to tell reporters simply "I'm good" about the injury and while he may be featured on the injury report, it can comfortably be said that he will be in the starting lineup next week. Rex Burkhead left very early with an injury to his ribs after scoring the first touchdown of the game. Nothing much else has been disclosed about the injury and we will keep you posted on the extent of the injury. Chris Hogan and Philip Dorsett were on and off the field with minor injuries and luckily seem just fine as the Patriots need all the depth they can get at the receiver position. Eric Rowe left the game with a groin injury and like Burkhead, the severity of the injury is still undisclosed at this time. Rowe surprisingly started over all-pro Malcolm Butler and has played very well this year in his second year with the team. The Patriots will be back at it next week at home against the Houston Texans. Kickoff is set for 1 p.m. Sam Gordon Deatrich Wise Jr. Eric Rowe Philip Dorsett
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
5,953
[ 128000, 6971, 7759, 323, 4206, 1137, 55664, 349, 33617, 311, 49427, 220, 1927, 12, 508, 6193, 33319, 198, 17827, 389, 6250, 220, 1114, 11, 220, 679, 22, 555, 8388, 26952, 304, 1561, 9635, 33617, 443, 220, 15, 18149, 198, 21242, 2794, 877, 11954, 11, 13256, 482, 74869, 2505, 74467, 220, 1114, 25, 8529, 36470, 674, 717, 323, 42907, 71740, 2025, 674, 1958, 315, 279, 1561, 9635, 33617, 14085, 1306, 264, 26079, 2403, 279, 1561, 27008, 33319, 520, 279, 34328, 63321, 7445, 67, 638, 389, 6250, 220, 1114, 11, 220, 679, 22, 304, 1561, 27008, 11, 29974, 13, 320, 10682, 555, 11517, 24255, 3473, 21560, 12041, 340, 76887, 649, 1457, 37397, 264, 31238, 315, 16337, 1306, 279, 1561, 9635, 33617, 73317, 279, 1561, 27008, 33319, 220, 1927, 12, 508 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 6971, 7759, 323, 4206, 1137, 55664, 349, 33617, 311, 49427, 220, 1927, 12, 508, 6193, 33319, 198, 17827, 389, 6250, 220, 1114, 11, 220, 679, 22, 555, 8388, 26952, 304, 1561, 9635, 33617, 443, 220, 15, 18149, 198, 21242, 2794, 877, 11954, 11, 13256, 482, 74869, 2505, 74467, 220, 1114, 25, 8529, 36470, 674, 717, 323, 42907, 71740, 2025, 674, 1958, 315, 279, 1561, 9635, 33617, 14085, 1306, 264, 26079, 2403, 279, 1561, 27008, 33319, 520, 279, 34328, 63321, 7445, 67, 638, 389, 6250, 220, 1114, 11, 220, 679, 22, 304, 1561, 27008, 11, 29974, 13, 320, 10682, 555, 11517, 24255, 3473, 21560, 12041, 340, 76887, 649, 1457, 37397, 264, 31238, 315, 16337, 1306, 279, 1561, 9635, 33617, 73317, 279, 1561, 27008, 33319, 220, 1927, 12, 508, -100 ]
Sam Bourgi NFT avatar startup Genies valued at $1B following Series C funding round Nonfungible token platforms incorporating Web3 and the Metaverse continue to attract sizable investments from venture capital firms. 3476 Total views 58 Total shares Own this piece of history Collect this article as an NFT Nonfungible token (NFT) startup Genies has secured $150 million in Series C funding at a valuation of $1 billion, making it the latest crypto-focused platform to attain "unicorn" status. The funding round was led by California-based private equity firm Silver Lake, which manages $88 billion in assets as of 2021, with additional participation from existing investors Tamarack Global, BOND and NEA. Genies said the funding will go toward increasing internal capacity in its engineering department as well as investing in new technologies. Founded in 2017, Genies is an avatar technology company that first set out to target social media and messaging platforms. Now, it's trying to capitalize on the Metaverse, a sort of catch-all phrase for companies looking to bridge the physical and virtual worlds. The platform enables users to create avatars that can be deployed in virtual worlds. Its NFT marketplace, dubbed "The Warehouse," is built with Dapper Labs. Genies claims to have gained 99% market share for celebrity avatars through official partnerships with Universal Music Group and Warner Music Group. Related: White Star Capital raises $120M for Ubisoft-backed Web3 investment fund Since peaking in September 2021, monthly NFT sales have moderated significantly. Source: NonFungible While NFT sales have slowed considerably from their peak last September, metaverse projects appear to be breathing new life into the industry. Data from analytics firm Nansen recently revealed that the NFT market's metaverse segment is growing rapidly despite its overly speculative nature. Nansen classifies land, real estate NFTs, avatars and utility NFTs as metaverse plays. Despite extreme volatility, the NFT market is growing at a faster clip than the broader cryptocurrency market, according to Nansen. #Venture Capital What is Solana (SOL) Pay, and how does it work? What the Russia-Ukraine war has revealed about crypto NFT-focused holding company raises $50M Series A NFT-focused Animoca Brands valued at $5B following $358M raise $75M Blockchain Founders Fund II backs portfolio of P2E and Web3 projects
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,574
[ 128000, 24903, 39475, 8376, 198, 45, 4082, 21359, 21210, 9500, 552, 33647, 520, 400, 16, 33, 2768, 11378, 356, 11006, 4883, 198, 8284, 79706, 1260, 4037, 15771, 52913, 5000, 18, 323, 279, 6344, 23247, 3136, 311, 9504, 79198, 22538, 505, 26255, 6864, 19339, 627, 17678, 21, 10884, 6325, 198, 2970, 10884, 13551, 198, 14516, 420, 6710, 315, 3925, 198, 48604, 420, 4652, 439, 459, 452, 4082, 198, 8284, 79706, 1260, 4037, 320, 45, 4082, 8, 21210, 9500, 552, 706, 27528, 400, 3965, 3610, 304, 11378, 356, 11006, 520, 264, 51262, 315, 400, 16, 7239, 11, 3339, 433, 279, 5652, 19566, 52373, 5452, 311, 36861, 330, 93457, 1, 2704, 627, 791, 11006, 4883, 574, 6197, 555, 7188, 6108, 879, 25452, 7626, 15347, 11940, 11, 902, 29972, 400, 2421, 7239 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 24903, 39475, 8376, 198, 45, 4082, 21359, 21210, 9500, 552, 33647, 520, 400, 16, 33, 2768, 11378, 356, 11006, 4883, 198, 8284, 79706, 1260, 4037, 15771, 52913, 5000, 18, 323, 279, 6344, 23247, 3136, 311, 9504, 79198, 22538, 505, 26255, 6864, 19339, 627, 17678, 21, 10884, 6325, 198, 2970, 10884, 13551, 198, 14516, 420, 6710, 315, 3925, 198, 48604, 420, 4652, 439, 459, 452, 4082, 198, 8284, 79706, 1260, 4037, 320, 45, 4082, 8, 21210, 9500, 552, 706, 27528, 400, 3965, 3610, 304, 11378, 356, 11006, 520, 264, 51262, 315, 400, 16, 7239, 11, 3339, 433, 279, 5652, 19566, 52373, 5452, 311, 36861, 330, 93457, 1, 2704, 627, 791, 11006, 4883, 574, 6197, 555, 7188, 6108, 879, 25452, 7626, 15347, 11940, 11, 902, 29972, 400, 2421, 7239, -100 ]
The SAP® AMI Integration for Utilities software covers functions such as billing and customer relation management. As a result, you benefit from the MDUS system's high scalability, its ability to work with the smallest utilities and metering systems of up to several million metering points. The system will deliver a high degree of data transparency with bi-directional flow of information and control. In February, SAP AG and Landis+Gyr announced the signing of a software development cooperation agreement for the integration of Landis+Gyr's advanced metering infrastructure with the SAP® for Utilities solution portfolio using enterprise services. The integration will enable certain end-to-end business processes – from the meter to the business applications – and deliver a new level of transparency and availability of energy data that can enable higher process and energy efficiency for your business.
{ "redpajama_set_name": "RedPajamaC4" }
2,523
[ 128000, 791, 37321, 12175, 6912, 40, 41169, 369, 36094, 3241, 14861, 5865, 1778, 439, 34631, 323, 6130, 12976, 6373, 13, 1666, 264, 1121, 11, 499, 8935, 505, 279, 14306, 2078, 1887, 596, 1579, 94840, 11, 1202, 5845, 311, 990, 449, 279, 25655, 30519, 323, 23819, 287, 6067, 315, 709, 311, 3892, 3610, 23819, 287, 3585, 13, 578, 1887, 690, 6493, 264, 1579, 8547, 315, 828, 28330, 449, 6160, 34149, 278, 6530, 315, 2038, 323, 2585, 627, 644, 7552, 11, 37321, 15432, 323, 11680, 285, 10, 38, 11160, 7376, 279, 16351, 315, 264, 3241, 4500, 23915, 9306, 369, 279, 18052, 315, 11680, 285, 10, 38, 11160, 596, 11084, 23819, 287, 14054, 449, 279, 37321, 12175, 369, 36094, 6425, 20136, 1701, 20790, 3600, 627, 791, 18052, 690, 7431, 3738, 842 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 791, 37321, 12175, 6912, 40, 41169, 369, 36094, 3241, 14861, 5865, 1778, 439, 34631, 323, 6130, 12976, 6373, 13, 1666, 264, 1121, 11, 499, 8935, 505, 279, 14306, 2078, 1887, 596, 1579, 94840, 11, 1202, 5845, 311, 990, 449, 279, 25655, 30519, 323, 23819, 287, 6067, 315, 709, 311, 3892, 3610, 23819, 287, 3585, 13, 578, 1887, 690, 6493, 264, 1579, 8547, 315, 828, 28330, 449, 6160, 34149, 278, 6530, 315, 2038, 323, 2585, 627, 644, 7552, 11, 37321, 15432, 323, 11680, 285, 10, 38, 11160, 7376, 279, 16351, 315, 264, 3241, 4500, 23915, 9306, 369, 279, 18052, 315, 11680, 285, 10, 38, 11160, 596, 11084, 23819, 287, 14054, 449, 279, 37321, 12175, 369, 36094, 6425, 20136, 1701, 20790, 3600, 627, 791, 18052, 690, 7431, 3738, 842, -100 ]
Abe is slipping Abe Departs from His Own Winning Formula in Battling COVID-19 By Dr Corey Wallace Australian Outlook, Australian Institute of International Affairs, March 4, 2020 Prime Minister Abe Shinzo's leadership longevity goes beyond the eponymous "Abenomics" economic program and his self-confident regional diplomacy. Built on a judiciously cultivated appearance of administrative competence and political stability, a key selling point has been an aptitude for crisis management. In this regard, Abe's already record-breaking seven-year premiership starkly contrasts with the Democratic Party of Japan's (DPJ) three-year stint in power (2009-2012). The latter period was characterized by haphazard, personalized responses to national crises, intra-party bickering, circumvention of the bureaucracy, and a revolving door approach to top ministerial positions—including the premiership. After reclaiming the Liberal Democratic Party (LDP) presidency and "taking back Japan" by winning the 2012 elections for the LDP, Abe has not shied away from reminding voters of the dangers of a return to DPJ-style governance. Prime Minister Abe has sharpened this contrast by limiting turnover in high-level cabinet positions, top bureaucratic posts, and in his circle of personal advisers. His finance minister and deputy prime minister (Aso Taro), chief cabinet secretary (Suga Yoshihide), administrative deputy chief cabinet secretary (Sugita Kazuhiro), and key foreign policy adviser and first ever head of the National Security Council/National Security Secretariat (Yachi Shotaro), were with Abe on day one of his administration. Until September last year, he had had only two foreign ministers, one (Kono Taro) subsequently becoming his defence minister. Hasegawa Eiichi, Izumi Hiroto, and Imai Takuya have also been with Abe as special advisors from the start. This has resulted in the formation of an informal "leading small group" that has enhanced policy planning, crisis management, and public communications in various policy domains. Abe has also employed institutional enhancements. Influenced by both American and British models, the creation of a Japanese National Security Council (NSC) and a supporting National Security Secretariat (NSS) in the Cabinet Secretariat has helped improve information sharing and analysis within the bureaucracy and clarified working relationships between administrative officials and political leaders. Abe has also asserted greater control over the bureaucracy by introducing a new cabinet-centred process for making top level personnel appointments. Traditionally, Japanese prime ministers have struggled to assert themselves over the bureaucracy, especially at times of national crisis, or felt insufficiently supported by their officials. These institutional enhancements have contributed to centralising political power and decision making around the prime minister and his office (Kantei) and the Cabinet and its secretariat. These informal and institutional mechanisms for crisis management have not, however, helped Prime Minister Abe in his response to the Coronavirus (COVID-19) crisis. The National Security Secretariat has been a non-entity as disease control sits outside its focus on national security, economic strategy, and geopolitics. Abe has also not been able to count on the steadying hand of his former national security adviser, Yachi Shotaro, due to his recent retirement. Japan also lacks a similar "control tower" mechanism that would perform a role like the United States' Centers for Disease Control and Prevention (CDC) ideally would, by collecting and analysing information, providing expert advice to officials and local authorities on travel restrictions, quarantines, and isolation, and taking a leading role in public communications during crises. The Abe administration did not set up a COVID-19 task force in the Cabinet Secretariat until two weeks after the first domestic case was reported (January 16), when the government finally decided to restrict the entry of recent travellers to Hubei Province. It took over a month for an expert advisory group to be set up, with a "Basic Plan" for limiting COVID-19's spread only communicated to the public on February 25. All the while, the Diamond Princess saga was festering in the background, bringing with it increasing domestic and international concern over the administration's handling of the quarantine. Abe appears to have overcorrected, in the process revealing dysfunction in the leading small group that has hitherto served Abe well. Not more than a few days after the announcement of the COVID-19 Basic Plan, Abe made an unprecedented and abrupt announcement requesting Japanese elementary, junior and senior high schools nationwide to close for up to five weeks. It was subsequently revealed that Abe made this decision without consulting Chief Cabinet Secretary Suga or Deputy Chief Cabinet Secretary Sugita and went against the advice of Education Minister Haguida Koichi, arguably his closest political ally. Even before COVID-19, press reports pointed to a strained working relationship between Abe and Suga which had divided the Cabinet and the Kantei. While officials in Tokyo's Kasumigaseki have generally submitted to the centralization of political power and administration around the Kantei and Cabinet over the last seven years, Abe's actions have also ignited built-up resentments within the bureaucracy. Word got out in the media about the lack of consultation and internal fissures, and Abe was forced to admit in parliament that he had made this decision on his own and that it was not directly based on advice from his expert advisory group. Abe framed it as a personal, "political" decision for which he would take full responsibility, but it appeared reminiscent of one of Abe's favourite talking points—the DPJ era's ad hoc crisis management. Furthermore, the feasibility of Japan's public institutions, companies, and parents adapting in such a short period of time has for many betrayed a lack of awareness of the ultimate impact of Abe's decision. This compounds a perception problem that has consistently dogged Abe, namely that he is out of touch with the day-to-day problems faced by the general public. His policy focus has not always accorded with public priorities, and in some cases has been unpopular. Examples include Abe's obsession with constitutional change, conservative educational reforms, corporate tax reductions, and the legalization of casinos in Japan. Furthermore, the various scandals involving potential influence peddling have reinforced a sense that Abe is uninterested in public transparency. Some have also started to wonder if the Abe cabinet's COVID-19 response is symptomatic of a fatigued and complacent administration. Of course, being perceived as out of touch has not always been a major problem for Abe precisely due to the ability to communicate competence and steadiness in domestic administrative and diplomatic matters alongside robust economic performance. However, last October's consumption tax rise put the economy on the back foot and infrastructure investment is also slowing ahead of the Olympics. A dramatic reduction in tourists due to COVID-19, particularly from China, will likely accompany decreased foreign demand for Japanese products and components as the Chinese economy grinds to a standstill and regional supply chains are affected. Together with the ubiquitous calls for jishuku (self-restraint) and a likely slump in economic activity in Japan itself, Japan's economy is expected to enter a recession. In foreign affairs, the ability for Abe to showcase a reaffirmed Japan-China relationship ahead of the Olympics and as part of his political legacy has fallen victim to COVID-19 with Xi Jinping's visit, the first by a Chinese leader to Japan in over a decade, being delayed. Abe can only hope that President Trump does not ratchet up the diplomatic pressure on Japan as American election season progresses. Abe has built enough political capital to last out through the Olympics—assuming they go ahead, and the COVID-19 situation does not dramatically worsen. It is still very possible Abe will lead the LDP to another victory in elections likely to take place in late 2020 or early 2021. Whether the progress of COVID-19 is slowed over the next month may well, however, dictate how much influence Abe will have to anoint his successor and influence post-Abe policy. Over the next month the Japanese public will be considering whether the hit to the economy and major disruption of people's livelihood due to the government's management of COVID-19 has been worth it. Dr Corey Wallace was formerly the Einstein postdoctoral fellow at the Graduate School of East Asian Studies at Freie Universität Berlin (2015-2019). From April 2020 he will be Assistant Professor in the Faculty of Foreign Languages at Kanagawa University, Yokohama, Japan. He holds a master's degree (University of Canterbury) as well as a PhD from the University of Auckland. Labels: Abe Shinzo, Aso Taro, Coronavirus, Japan, Olympics, Politics Kennan March 6, 2020 at 2:42 AM Abe announced the two weeks quarantine of people arriving from China and South Korea to be quarantined for two weeks. In a sense, that's bold and right tactics. I however wonder if he is really aware of its possible blows to Japan's trade with the two significant business partners. Furthermore, president Trump might well make similar action against Japan. I sincerely wish that Abe had made such bold (or reckless) decision with the awareness of their possible effects on Nikkei, Tankan and national polls etc. Or he might again, as has been for years since the Mori-Kake scandal, face the national rage unprepared. Irresponsible and desperate Monday in Washington March 9 2020 Monday in Washington March 2, 2020
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
1,318
[ 128000, 32, 1395, 374, 64802, 198, 32, 1395, 4241, 7183, 505, 5414, 21189, 74065, 31922, 304, 33267, 2785, 20562, 12, 777, 198, 1383, 2999, 55752, 39956, 198, 75341, 42158, 11, 13673, 10181, 315, 7327, 23298, 11, 5587, 220, 19, 11, 220, 2366, 15, 198, 33406, 9675, 56239, 35549, 13028, 596, 11692, 58219, 5900, 7953, 279, 384, 621, 90492, 330, 5953, 268, 24203, 1, 7100, 2068, 323, 813, 659, 51817, 1748, 15481, 62340, 13, 34154, 389, 264, 5860, 9824, 398, 67166, 11341, 315, 23541, 58266, 323, 5054, 20334, 11, 264, 1401, 11486, 1486, 706, 1027, 459, 20697, 3993, 369, 11501, 6373, 627, 644, 420, 5363, 11, 56239, 596, 2736, 3335, 55407, 8254, 4771, 6954, 77178, 38246, 398, 83379, 449, 279, 11650, 8722, 315, 6457, 596, 320, 10510, 41, 8 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 32, 1395, 374, 64802, 198, 32, 1395, 4241, 7183, 505, 5414, 21189, 74065, 31922, 304, 33267, 2785, 20562, 12, 777, 198, 1383, 2999, 55752, 39956, 198, 75341, 42158, 11, 13673, 10181, 315, 7327, 23298, 11, 5587, 220, 19, 11, 220, 2366, 15, 198, 33406, 9675, 56239, 35549, 13028, 596, 11692, 58219, 5900, 7953, 279, 384, 621, 90492, 330, 5953, 268, 24203, 1, 7100, 2068, 323, 813, 659, 51817, 1748, 15481, 62340, 13, 34154, 389, 264, 5860, 9824, 398, 67166, 11341, 315, 23541, 58266, 323, 5054, 20334, 11, 264, 1401, 11486, 1486, 706, 1027, 459, 20697, 3993, 369, 11501, 6373, 627, 644, 420, 5363, 11, 56239, 596, 2736, 3335, 55407, 8254, 4771, 6954, 77178, 38246, 398, 83379, 449, 279, 11650, 8722, 315, 6457, 596, 320, 10510, 41, 8, -100 ]
About OpenAZ Attraction of Top Business Attraction of Top Talent UNITY Agent Sign the UNITY Pledge Phoenix Suns become first NBA team to sign the UNITY Pledge The Phoenix Suns have become the first NBA team to sign the UNITY Pledge in support of full inclusion and equality in the workplace, housing, and public accommodations for all Arizonans, including gay and transgender people. The Phoenix Suns joins over 1,500 businesses and organizations including the Arizona Diamondbacks, San Francisco Giants, Frys Food & Drug Stores, GoDaddy, Professional Firefighters of Arizona, PetSmart, Yelp and Coca-Cola in supporting a fully inclusive Arizona. Currently, five municipalities have ordinances that ban discrimination; however, Arizona has no statewide laws that protect gay and transgender individuals from being fired based on their sexual orientation or gender identity, or discriminated against in housing and public accommodations. "We are dedicated to the principle of treating everyone as equals," said Suns president, Jason Rowley. "With the signing of the UNITY Pledge, we aim to publicly show support of our diverse community," concluded Rowley. Created by ONE Community, a member based coalition of LGBTQ and allied individuals and businesses; the UNITY Pledge is a public declaration to support and advance workplace equality and non-discrimination policies in housing and public accommodations for LGBTQ individuals and their allies in Arizona. "We thank the Phoenix Suns for standing up for equality, and understanding that fully inclusive non-discrimination policies are not only the right thing to do, but also enhance the quality of life for everyone in our great state," said Angela Hughey, President of ONE Community. "No matter who you root for, everyone deserves the opportunity to work hard and provide for their families and those they love," she added. Angela Hughey ONE Community Foundation.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
9,617
[ 128000, 10714, 5377, 24476, 198, 13675, 1335, 315, 7054, 8184, 198, 13675, 1335, 315, 7054, 55607, 198, 57273, 21372, 198, 7412, 279, 57184, 393, 4995, 198, 79925, 74068, 3719, 1176, 17846, 2128, 311, 1879, 279, 57184, 393, 4995, 198, 791, 23503, 74068, 617, 3719, 279, 1176, 17846, 2128, 311, 1879, 279, 57184, 393, 4995, 304, 1862, 315, 2539, 28286, 323, 22526, 304, 279, 27465, 11, 11983, 11, 323, 586, 55713, 369, 682, 1676, 17403, 598, 11, 2737, 8485, 323, 28307, 1274, 13, 578, 23503, 74068, 29782, 927, 220, 16, 11, 2636, 9873, 323, 11351, 2737, 279, 17368, 25328, 25082, 11, 5960, 13175, 30835, 11, 435, 42426, 12369, 612, 26166, 39402, 11, 6122, 35, 23290, 11, 21931, 6785, 79161, 315, 17368, 11, 11586, 34917, 11, 86414, 323, 63954, 66277 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 10714, 5377, 24476, 198, 13675, 1335, 315, 7054, 8184, 198, 13675, 1335, 315, 7054, 55607, 198, 57273, 21372, 198, 7412, 279, 57184, 393, 4995, 198, 79925, 74068, 3719, 1176, 17846, 2128, 311, 1879, 279, 57184, 393, 4995, 198, 791, 23503, 74068, 617, 3719, 279, 1176, 17846, 2128, 311, 1879, 279, 57184, 393, 4995, 304, 1862, 315, 2539, 28286, 323, 22526, 304, 279, 27465, 11, 11983, 11, 323, 586, 55713, 369, 682, 1676, 17403, 598, 11, 2737, 8485, 323, 28307, 1274, 13, 578, 23503, 74068, 29782, 927, 220, 16, 11, 2636, 9873, 323, 11351, 2737, 279, 17368, 25328, 25082, 11, 5960, 13175, 30835, 11, 435, 42426, 12369, 612, 26166, 39402, 11, 6122, 35, 23290, 11, 21931, 6785, 79161, 315, 17368, 11, 11586, 34917, 11, 86414, 323, 63954, 66277, -100 ]
Q: Spree - i18n gem issue I got a problem with a new version of spree gem (branch: '2-3-stable'). When i try to install it, I receive this error. my_store$ rails server The git source https://github.com/spree/spree_gateway.git is not yet checked out. Please run `bundle install` before trying to start your application my_store$ bundle install Bundler could not find compatible versions for gem "i18n": In Gemfile: spree (= 2.3.1) ruby depends on spree_core (= 2.3.1) ruby depends on i18n (= 0.6.9) ruby rails (= 4.1.2) ruby depends on activesupport (= 4.1.2) ruby depends on i18n (0.6.11) But according to gem list i got both of this gems installed i18n (0.6.11, 0.6.9). Can someone help me to fix this problem A: Copy from comment section: Sorry. i figured it out myself simple execution of bundle update and then bundle install command fixed my issue
{ "redpajama_set_name": "RedPajamaStackExchange" }
3,459
[ 128000, 48, 25, 3165, 770, 482, 602, 972, 77, 19269, 4360, 358, 2751, 264, 3575, 449, 264, 502, 2373, 315, 79728, 19269, 320, 18424, 25, 364, 17, 12, 18, 5594, 481, 1861, 3277, 602, 1456, 311, 4685, 433, 11, 358, 5371, 420, 1493, 627, 2465, 15153, 3, 43700, 3622, 198, 791, 16749, 2592, 3788, 1129, 5316, 916, 27832, 770, 27832, 770, 65149, 33899, 374, 539, 3686, 10273, 704, 13, 5321, 220, 1629, 1595, 35618, 4685, 63, 1603, 4560, 311, 1212, 701, 3851, 271, 2465, 15153, 3, 13190, 4685, 198, 33, 86465, 1436, 539, 1505, 18641, 11028, 369, 19269, 330, 72, 972, 77, 4764, 763, 32245, 1213, 512, 220, 79728, 39838, 220, 17, 13, 18, 13, 16, 8, 46307, 14117, 389, 198, 256, 79728, 15834, 39838, 220, 17, 13 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 48, 25, 3165, 770, 482, 602, 972, 77, 19269, 4360, 358, 2751, 264, 3575, 449, 264, 502, 2373, 315, 79728, 19269, 320, 18424, 25, 364, 17, 12, 18, 5594, 481, 1861, 3277, 602, 1456, 311, 4685, 433, 11, 358, 5371, 420, 1493, 627, 2465, 15153, 3, 43700, 3622, 198, 791, 16749, 2592, 3788, 1129, 5316, 916, 27832, 770, 27832, 770, 65149, 33899, 374, 539, 3686, 10273, 704, 13, 5321, 220, 1629, 1595, 35618, 4685, 63, 1603, 4560, 311, 1212, 701, 3851, 271, 2465, 15153, 3, 13190, 4685, 198, 33, 86465, 1436, 539, 1505, 18641, 11028, 369, 19269, 330, 72, 972, 77, 4764, 763, 32245, 1213, 512, 220, 79728, 39838, 220, 17, 13, 18, 13, 16, 8, 46307, 14117, 389, 198, 256, 79728, 15834, 39838, 220, 17, 13, -100 ]
PayPal goes international PayPal has adopted a more cosmopolitan approach, claiming its electronic payment service will soon translate in to three currencies - dollars, euros and pounds By Margaret Kane | September 26, 2002 -- 14:02 GMT (07:02 PDT) | Topic: Networking The online payment company plans to launch a multicurrency service around 10 October, allowing customers to accept payments in euros and UK pounds. The company also plans to open up to other currencies, including Canadian dollars, yen and possibly Australian dollars, in the next few months, chief operating officer David Sacks said. Currently PayPal accepts only US dollars. PayPal's electronic payment system, popular on auction sites, allows customers to collect payments online, with PayPal acting as a go-between for the payer and the recipient. The payer sends money to PayPal using a credit card or cheque, or uses funds in a PayPal account. Recipients can store money in their PayPal account, transfer the money to a separate bank account or have PayPal cut them a cheque. The new service will allow account holders to maintain multiple accounts in the three currencies. Using the new service, a buyer in Germany could send euros to a seller in the United States. PayPal will perform currency conversions at either end, Sacks said, although there will be fees involved. The move should open up the company to a larger market, analysts said. "There are online payment providers that claim to be international, but you still have to be US merchant, or if you're in Europe you have to settle in US dollars," said Ken Kerr, senior research analyst at Gartner. "This opens up the whole (European) continent for PayPal." PayPal already has a broad international audience. Around 25 percent of all transactions involve at least one party who is outside the United States. And around 2 million of the company's 17.8 million accounts are held outside the United States as well. But the real goal is to move beyond international transactions to intra-national transactions, Sacks said. "What we really haven't penetrated yet is intra-country: People selling things in euros or pounds within the UK or Germany. By launching this we'll be able to serve a huge volume of transactions that we didn't before," he said. There are a few companies already operating on that turf overseas, including NoChex in the United Kingdom. But PayPal may have some muscle behind it, namely online auction company eBay, which agreed in July to buy PayPal in an all-stock deal, worth about $1.3bn. The merger goes to a vote next month. eBay already has operations in 20 countries worldwide, and Sacks said PayPal sees "exciting possibilities" in working with eBay's international operations, though the new service was not designed with that in mind. Gartner's Kerr did sound one note of caution regarding potential regulatory and legal problems. PayPal has already run into legal hot water at home, including problems with banking regulations and gambling laws. Adding more countries means adding more rules. "Each country will have different regulations... I would guess their legal team will stay employed," Kerr said. For everything Internet-related, from the latest legal and policy-related news, to domain name updates, see ZDNet UK's Internet News Section. Have your say instantly, and see what others have said. Go to the ZDNet news forum. Let the editors know what you think in the Mailroom. Cloud Internet of Things Security Data Centers More from Margaret Kane Motorola splits into two companies Microsoft to buy Aquantive for $6 billion Blogging your baby HP's top lawyer leaves, won't testify Critical Cisco DCNM flaws: Patch right now as PoC exploits are released The need to patch Cisco Data Center Network Manager for Nexus switches becomes even more urgent. Reserve Bank seeks help as it migrates data centre kit to Cisco The successful supplier will be responsible for delivering compute hardware and associated software to the Reserve Bank of Australia for the next five years. ... Senator unveils bill to stop the US from sharing intel with countries using Huawei 5G The legislation comes just as the UK is set to decide whether to upgrade its telecom network with Huawei. TPG complains of 'wireless attack' by 5G on fixed line broadband If only a certain telco had not dropped plans to create its own mobile networks, nor try to merge with the number three mobile operator.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
1,090
[ 128000, 21243, 20577, 5900, 6625, 198, 21243, 20577, 706, 18306, 264, 810, 56754, 86009, 5603, 11, 21039, 1202, 14683, 8323, 2532, 690, 5246, 15025, 304, 311, 2380, 36702, 482, 11441, 11, 33588, 323, 16701, 198, 1383, 38649, 46656, 765, 6250, 220, 1627, 11, 220, 1049, 17, 1198, 220, 975, 25, 2437, 25497, 320, 2589, 25, 2437, 46557, 8, 765, 34011, 25, 60563, 198, 791, 2930, 8323, 2883, 6787, 311, 7195, 264, 92520, 5198, 2532, 2212, 220, 605, 6664, 11, 10923, 6444, 311, 4287, 14507, 304, 33588, 323, 6560, 16701, 627, 791, 2883, 1101, 6787, 311, 1825, 709, 311, 1023, 36702, 11, 2737, 12152, 11441, 11, 58440, 323, 11000, 13673, 11441, 11, 304, 279, 1828, 2478, 4038, 11, 10388, 10565, 9640, 6941, 328, 7977, 1071, 13, 25122, 36431, 27441 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 21243, 20577, 5900, 6625, 198, 21243, 20577, 706, 18306, 264, 810, 56754, 86009, 5603, 11, 21039, 1202, 14683, 8323, 2532, 690, 5246, 15025, 304, 311, 2380, 36702, 482, 11441, 11, 33588, 323, 16701, 198, 1383, 38649, 46656, 765, 6250, 220, 1627, 11, 220, 1049, 17, 1198, 220, 975, 25, 2437, 25497, 320, 2589, 25, 2437, 46557, 8, 765, 34011, 25, 60563, 198, 791, 2930, 8323, 2883, 6787, 311, 7195, 264, 92520, 5198, 2532, 2212, 220, 605, 6664, 11, 10923, 6444, 311, 4287, 14507, 304, 33588, 323, 6560, 16701, 627, 791, 2883, 1101, 6787, 311, 1825, 709, 311, 1023, 36702, 11, 2737, 12152, 11441, 11, 58440, 323, 11000, 13673, 11441, 11, 304, 279, 1828, 2478, 4038, 11, 10388, 10565, 9640, 6941, 328, 7977, 1071, 13, 25122, 36431, 27441, -100 ]
import { __decorate, __metadata } from 'tslib'; import { ɵɵdefineInjectable, ɵɵinject, Injectable } from '@angular/core'; import { Angulartics2 } from 'angulartics2'; var Angulartics2Intercom = /** @class */ (function () { function Angulartics2Intercom(angulartics2) { var _this = this; this.angulartics2 = angulartics2; this.angulartics2.setUserProperties .subscribe(function (x) { return _this.setUserProperties(x); }); this.angulartics2.setUserPropertiesOnce .subscribe(function (x) { return _this.setUserProperties(x); }); } Angulartics2Intercom.prototype.startTracking = function () { var _this = this; this.angulartics2.pageTrack .pipe(this.angulartics2.filterDeveloperMode()) .subscribe(function (x) { return _this.pageTrack(x.path); }); this.angulartics2.eventTrack .pipe(this.angulartics2.filterDeveloperMode()) .subscribe(function (x) { return _this.eventTrack(x.action, x.properties); }); }; Angulartics2Intercom.prototype.pageTrack = function (path) { try { this.eventTrack('Pageview', { url: path }); } catch (e) { if (!(e instanceof ReferenceError)) { throw e; } } }; Angulartics2Intercom.prototype.eventTrack = function (action, properties) { try { Intercom('trackEvent', action, properties); } catch (e) { if (!(e instanceof ReferenceError)) { throw e; } } }; Angulartics2Intercom.prototype.setUserProperties = function (properties) { try { if (properties.userId && !properties.user_id) { properties.user_id = properties.userId; } Intercom('boot', properties); } catch (e) { if (!(e instanceof ReferenceError)) { throw e; } } }; Angulartics2Intercom.ngInjectableDef = ɵɵdefineInjectable({ factory: function Angulartics2Intercom_Factory() { return new Angulartics2Intercom(ɵɵinject(Angulartics2)); }, token: Angulartics2Intercom, providedIn: "root" }); Angulartics2Intercom = __decorate([ Injectable({ providedIn: 'root' }), __metadata("design:paramtypes", [Angulartics2]) ], Angulartics2Intercom); return Angulartics2Intercom; }()); export { Angulartics2Intercom }; //# sourceMappingURL=angulartics2-intercom.js.map
{ "redpajama_set_name": "RedPajamaGithub" }
88
[ 128000, 475, 314, 1328, 49076, 11, 1328, 18103, 335, 505, 364, 2641, 2808, 1025, 475, 314, 220, 61599, 61599, 1312, 14055, 481, 11, 220, 61599, 61599, 33233, 11, 30615, 335, 505, 3542, 4328, 5433, 1025, 475, 314, 7568, 360, 472, 1233, 17, 335, 505, 364, 526, 360, 472, 1233, 17, 2412, 959, 7568, 360, 472, 1233, 17, 3386, 884, 284, 4258, 571, 1058, 642, 320, 1723, 1754, 341, 262, 734, 7568, 360, 472, 1233, 17, 3386, 884, 93564, 360, 472, 1233, 17, 8, 341, 286, 767, 721, 576, 284, 420, 280, 286, 420, 13, 526, 360, 472, 1233, 17, 284, 6590, 360, 472, 1233, 17, 280, 286, 420, 13, 526, 360, 472, 1233, 17, 65604, 8062, 198, 310, 662, 9569, 2993, 320, 87, 8, 314, 471, 721, 576 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 475, 314, 1328, 49076, 11, 1328, 18103, 335, 505, 364, 2641, 2808, 1025, 475, 314, 220, 61599, 61599, 1312, 14055, 481, 11, 220, 61599, 61599, 33233, 11, 30615, 335, 505, 3542, 4328, 5433, 1025, 475, 314, 7568, 360, 472, 1233, 17, 335, 505, 364, 526, 360, 472, 1233, 17, 2412, 959, 7568, 360, 472, 1233, 17, 3386, 884, 284, 4258, 571, 1058, 642, 320, 1723, 1754, 341, 262, 734, 7568, 360, 472, 1233, 17, 3386, 884, 93564, 360, 472, 1233, 17, 8, 341, 286, 767, 721, 576, 284, 420, 280, 286, 420, 13, 526, 360, 472, 1233, 17, 284, 6590, 360, 472, 1233, 17, 280, 286, 420, 13, 526, 360, 472, 1233, 17, 65604, 8062, 198, 310, 662, 9569, 2993, 320, 87, 8, 314, 471, 721, 576, -100 ]
SCSCS Veterans Ready to Tackle Search for Victory in 2016 Mount Joy, Pennsylvania (April 12, 2016) – Knowledge and expertise gained throughout multiple years in the sport and the Super Cup Stock Car Series definitely showed in many statistical categories once again in 2015, but there was one noticeable column that was empty. Drivers with only 28 combined starts accounted for all the wins last season, and several that are contenders every year want to change that trend back around. Brent Nelson has continuously improved on consistency and performance since joining the series in 2010 and getting his first career victory in 2013. Nevertheless, the Petersburg, West Virginia driver would like to move forward from the third place position in the final standings that he has held over the last two seasons. Part of that effort for the No. 80 team will be running a new setup in hopes of allowing even better results. "It has been a very busy off season preparing for 2016," Nelson said. "Our goal is to come to each track prepared so track time can be used for fine tuning. We are working hard to make sure that we are ready to hit the track running." Nelson has a new associate sponsor on board, Airtek Inc. out of Irwin, Pennsylvania, as part of the effort for 2016. Another family from the Mountain State that has been seen in the SCSCS pit area every season is the Harrisons out of Renick. Harvey Harrison comes off one of the best seasons of his career, finishing runner up in the 2015 points. Managing to get the monkey off their back after a few tough seasons, the three-time series race winner and entire Harrison's Motorsports team enters 2016 with renewed confidence to once again contend for the championship. "Well, there is always room for improvement in racing," Summer Harrison, Harvey's daughter and a crucial member of the family effort, pointed out. "Everyone is always getting better and the competition keeps getting tougher. I think if dad can go out there and continue to have a blast and run up front, the wins will come." 'Having a Blast' was a phrase heard from Harvey on multiple occasions throughout the year after several noticeably strong performances in which he never finished worse than fourth with his No. 51 Southern Coal Corporation Chevrolet. "Attitude goes a long way and there's no doubt that dad has one of the best attitudes in the series," Summer stated. "I think the combination of dad keeping his head up through a tough couple seasons and getting his confidence in the car and his driving ability back will carry us into victory lane this season." One new opportunity since the season finale was the addition of Harvey to the series advisory board, a real honor for the family. "It really speaks volumes about you when your fellow competitors think enough of you to join a board that is really steering the boat for the series." Harvey's son and Summer's brother Brian Harrison also returns for another full season, as he continues his pursuit for career win number one. "Brian has spent a lot of time studying up on old footage from last season, whether it be from the GoPro's mounted on the chassis or from the in car footage we took of him driving," Summer analyzed. "I think Brian is getting closer; I think this will be his year. "Overall, we are just really excited about what this season has in store for our whole family. I feel like this could be our best year yet. We just can't wait to put on show for all of the Super Cup fans." Another longstanding family in the series is the Kromers from Walnutport, Pennsylvania. Kevin Kromer has been a full time competitor since 2009, but all of those past seasons put together had nowhere as many obstacles as 2015. With a newly acquired car, a good amount of work put into updating its body and other parts, and a fresh outlook for 2016, Kevin is optimistic for a turnaround back to the success he has seen the seasons before with his No. 77. "I think we'll be alright," Kevin Kromer noted. "We put in a new steering column and a lot of different little things. We'll turn it around this year." The endeavors to get back to his winning ways will kick off at a facility that he has won at twice already, Midvale Speedway. "I hope to win right off the bat," Kevin added. "We're looking forward to getting going." Now that Kevin's son Kyle Kromer enters his fourth season of competition, he can start being considered as one of the series veterans as well. However, there are still goals for the college freshman to accomplish despite two most improved driver awards in the last three years. "I would like to make it into the top five in consecutive races, and then top three, and the ultimate goal would be a win," Kyle said. "Most of all, I hope we can go the season without any malfunctions." Kyle Kromer has displayed impressive speed at Midvale in the past, but has not ended up with the finishes to show for it. A season ago he ran laps comparable with the fastest cars, but was involved in a lap one accident. Two years prior, a lead lap run was curtailed by a blown engine. "I enjoy running there, despite my past results," Kyle indicated. "I hope that I could run a full race this time." In addition to these five drivers that combine for nearly 180 career starts, a host of others with a variety of steel-bodied stock car experience will be on hand for the upcoming season opener. It will take place on Saturday, May 14 at Midvale Speedway in Ohio as part of Frontier Tool and Equipment Rental night. Additional updates and information leading up to the start of the season are available at www.supercupstockcarseries.com as well as the official Facebook page (www.facebook.com/SCSCSRacing) and on Twitter @SCSCSRacing. Organizations looking for information about taking part on a sponsorship or marketing level, including events scheduled to air on MAVTV and LucasOilRacing.tv can contact [email protected].
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
5,034
[ 128000, 3624, 3624, 50, 40432, 32082, 311, 350, 52622, 7694, 369, 49427, 304, 220, 679, 21, 198, 16683, 28237, 11, 20355, 320, 29146, 220, 717, 11, 220, 679, 21, 8, 1389, 33025, 323, 19248, 18661, 6957, 5361, 1667, 304, 279, 10775, 323, 279, 7445, 11098, 12937, 3341, 11378, 8659, 8710, 304, 1690, 29564, 11306, 3131, 1578, 304, 220, 679, 20, 11, 719, 1070, 574, 832, 43426, 3330, 430, 574, 4384, 13, 46837, 449, 1193, 220, 1591, 11093, 8638, 41853, 369, 682, 279, 15160, 1566, 3280, 11, 323, 3892, 430, 527, 68739, 1475, 1060, 1390, 311, 2349, 430, 9327, 1203, 2212, 627, 33, 8135, 27562, 706, 31978, 13241, 389, 29237, 323, 5178, 2533, 18667, 279, 4101, 304, 220, 679, 15, 323, 3794, 813, 1176, 7076, 12845, 304, 220, 679 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 3624, 3624, 50, 40432, 32082, 311, 350, 52622, 7694, 369, 49427, 304, 220, 679, 21, 198, 16683, 28237, 11, 20355, 320, 29146, 220, 717, 11, 220, 679, 21, 8, 1389, 33025, 323, 19248, 18661, 6957, 5361, 1667, 304, 279, 10775, 323, 279, 7445, 11098, 12937, 3341, 11378, 8659, 8710, 304, 1690, 29564, 11306, 3131, 1578, 304, 220, 679, 20, 11, 719, 1070, 574, 832, 43426, 3330, 430, 574, 4384, 13, 46837, 449, 1193, 220, 1591, 11093, 8638, 41853, 369, 682, 279, 15160, 1566, 3280, 11, 323, 3892, 430, 527, 68739, 1475, 1060, 1390, 311, 2349, 430, 9327, 1203, 2212, 627, 33, 8135, 27562, 706, 31978, 13241, 389, 29237, 323, 5178, 2533, 18667, 279, 4101, 304, 220, 679, 15, 323, 3794, 813, 1176, 7076, 12845, 304, 220, 679, -100 ]
When is it ok to have an abortion? BRAND NEW DIVAN BASE WITH MATTRESS ........ SINGLE £55.00 DOUBLE £85.00 KING £99.00 FREE SAME DAY DELIVERY ........B&W BEDS ...... By LizzieBirdswrth June 3, 2019 in General Discussions WiseOwl182 18 hours ago, Longcol said: Go on then - explain. The unborn foetus doesn't suddenly become a person the moment the head pops out, it's a gradual process. On the day before birth (which is what was originally being discussed here) the 'foetus' is a fully developed person, as human as he or she will be the next day when the umbilical cord is cut. 2 hours ago, alchemist said: Abortion. From Wikipedia, the free encyclopedia. An abortion is when a pregnancy ends early without the birth of any live children. A developing human takes about thirty-nine weeks to grow and be born. Normally, this occurs about forty weeks after the mother's last menstrual period. What you have described is birth and therefore bringing about its death would be murder not abortion There's no difference between a "foetus" the day before birth, and the baby born the next day, other than it has travelled down the birth canal. Killing it either side of that birth canal is still murdering a human being. I'm not against abortion but the time limits are for good reason, and discussing whether or not it's ok to abort a baby one day before it's birthday is like debating whether or not it's ok to murder people. Yeah but 18 minutes ago, WiseOwl182 said: These "progressives" will support ANYTHING that is anti - bourgeois, anti - traditional, as they see it. Just like feminism, same sex marriage and pro mass immigration, etc. They latch on to all these issues purely as part of a globalist/humanist agenda. Edited June 4, 2019 by Yeah but Longcol Parlez-vous daft? 4 hours ago, WiseOwl182 said: Thank you for your clarification - agree fully with that. 13 hours ago, Yeah but said: They latch on to all these issues purely as part of a globalist/humanist agenda. You say that like globalism and humanism are a bad thing? 2 hours ago, Halibut said: The society that you enjoy and thrive in wasn't built on humanism. It was built on the traditions, institutions and structures that the likes of you seem intent on tearing down. 57 minutes ago, Yeah but said: So... What exactly is it that you object to regarding humanism? 25 minutes ago, Cyclone said: Its not that I'm against all aspects of humanism as such, forget that, its just that the west is the, lets say, least worst, place on earth to live, and it was built on certain values and structures through institutions and traditions that reckless lefties seem to want to tear down. Anti west Corbyn and the like, that are idolised by silly lefty millennials, were totally taken in by Soviet and Chinese propaganda, omitting the harshness, the camps, the secret police and so on; would they have preferred to live under that? ...what was the thread about again? 😂 I'm not sure how we got to that from this topic though, the right to have an abortion is something that women had to fight for, it's progressive and an important right of bodily autonomy and self control. There are still many countries where women don't have this freedom, even some parts of the USA, which is about as Western Civilisation as it gets! It may seem that I have gone off on a bit of a tangent there, but I like to put things in a wider context, to point out the broader agendas that are often behind particular issues. lil-minx92 On 04/06/2019 at 00:17, ECCOnoob said: People can argue all they want. People can make their own warped interpretations but the fact is clear. That fetus is nothing more than part of a womans body until it is born, snipped off and surviving on its own. Finally we have clarity! You should be employed at the local maternity unit to explain this to the women who suffered a late term miscarriage. Im sure they would no longer feel like they lost a baby. Having attended many abortions as a nurse, it is a most distressing sight, no matter at what stage the foetus is at.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,281
[ 128000, 4599, 374, 433, 5509, 311, 617, 459, 20710, 5380, 13396, 4064, 16560, 47360, 1111, 22984, 4874, 386, 22342, 7973, 46196, 67859, 7083, 2131, 13, 410, 57372, 7083, 5313, 13, 410, 74911, 7083, 1484, 13, 410, 16655, 84590, 38788, 24711, 65924, 46196, 33, 92436, 83364, 50, 22666, 35047, 1383, 445, 89087, 66370, 2332, 81, 339, 5651, 220, 18, 11, 220, 679, 24, 304, 3331, 98225, 198, 54, 1082, 46, 27515, 10828, 198, 972, 4207, 4227, 11, 5843, 2119, 1071, 512, 11087, 389, 1243, 482, 10552, 627, 791, 86333, 12018, 64476, 3250, 956, 15187, 3719, 264, 1732, 279, 4545, 279, 2010, 48700, 704, 11, 433, 596, 264, 53722, 1920, 13, 1952, 279, 1938, 1603, 7342, 320, 8370, 374, 1148, 574, 13517, 1694, 14407, 1618, 8, 279, 364, 831, 64476 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 4599, 374, 433, 5509, 311, 617, 459, 20710, 5380, 13396, 4064, 16560, 47360, 1111, 22984, 4874, 386, 22342, 7973, 46196, 67859, 7083, 2131, 13, 410, 57372, 7083, 5313, 13, 410, 74911, 7083, 1484, 13, 410, 16655, 84590, 38788, 24711, 65924, 46196, 33, 92436, 83364, 50, 22666, 35047, 1383, 445, 89087, 66370, 2332, 81, 339, 5651, 220, 18, 11, 220, 679, 24, 304, 3331, 98225, 198, 54, 1082, 46, 27515, 10828, 198, 972, 4207, 4227, 11, 5843, 2119, 1071, 512, 11087, 389, 1243, 482, 10552, 627, 791, 86333, 12018, 64476, 3250, 956, 15187, 3719, 264, 1732, 279, 4545, 279, 2010, 48700, 704, 11, 433, 596, 264, 53722, 1920, 13, 1952, 279, 1938, 1603, 7342, 320, 8370, 374, 1148, 574, 13517, 1694, 14407, 1618, 8, 279, 364, 831, 64476, -100 ]
Communication skills are obviously vitally important for all of us in any context, but they're especially important for those wanting to be great managers and/or leaders, and they're especially important during these current, difficult times. Just as obviously, communication is a two-way process and involves listening just as much (if not more) as it involves talking. Many people, however, fail to perform this (that is, the listening) part of the communication process effectively, either because they forget to do it at all, or they view it as a primarily passive activity. But when conducted properly and effectively, listening should be approached as one would approach any other activity. Remember to listen next time you're communicating; and implement the following strategies next time you're listening as part of your attempts to communicate more effectively and notice the significant benefits that can be realised. Prepare for your involvement in the interaction by ensuring you've turned off or blocked out any potential distractions phones, email alerts etc). Don't interrupt, finish other people's sentences, or draw conclusions before the other person has finished what they have to say. Treat the other person, and their opinions, with respect (you don't have to agree with them, but they do have a right to their opinion). Actively encourage the other person to express their views by letting them know you're genuinely interested (this can be achieved by responding with a genuine "ah ha" or a nod at regular intervals). Display to the other person the fact that you're listening by, at regular and appropriate moments, briefly summarising their opinions and/or reflecting on what they're saying or feeling. Ideally, use the other person's words and language as much as possible. This can also provide a way of checking whether you've understood the other person or not and help avoid continuing the conversation based on misinterpretations. If you're not sure you understand the other person, then don't be afraid to check in with them. Listen not just with your ears but also with your eyes and body (for example, maintain steady eye contact and nod, or engage in other appropriate behaviours). Practicing these strategies does NOT mean you have to agree with everything the other person is saying. Rather it means doing all you can to understand what they're saying so you can then acknowledge what's important to them, and subsequently decide how best to respond. Active listening has several benefits. First, it enables people to listen attentively to others. Second, it avoids misunderstandings. Third, it tends to engage and open people up, making it easier for them to say more. If both parties do this, the chances of being able to develop a solution become much greater. The following article was supplied by Icon Business Solutions of which Tony Gattari is an accredited business advisor. Received this email from a friend? Click here to sign up and receive your 60 Seconds Monthly Inspiration.
{ "redpajama_set_name": "RedPajamaC4" }
9,528
[ 128000, 66511, 7512, 527, 14224, 13458, 750, 3062, 369, 682, 315, 603, 304, 904, 2317, 11, 719, 814, 2351, 5423, 3062, 369, 1884, 19762, 311, 387, 2294, 20258, 323, 5255, 6164, 11, 323, 814, 2351, 5423, 3062, 2391, 1521, 1510, 11, 5107, 3115, 13, 4702, 439, 14224, 11, 10758, 374, 264, 1403, 27896, 1920, 323, 18065, 14624, 1120, 439, 1790, 320, 333, 539, 810, 8, 439, 433, 18065, 7556, 627, 8607, 1274, 11, 4869, 11, 3775, 311, 2804, 420, 320, 9210, 374, 11, 279, 14624, 8, 961, 315, 279, 10758, 1920, 13750, 11, 3060, 1606, 814, 10894, 311, 656, 433, 520, 682, 11, 477, 814, 1684, 433, 439, 264, 15871, 28979, 5820, 13, 2030, 994, 13375, 10489, 323, 13750, 11, 14624, 1288, 387, 25735, 439, 832, 1053, 5603 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 66511, 7512, 527, 14224, 13458, 750, 3062, 369, 682, 315, 603, 304, 904, 2317, 11, 719, 814, 2351, 5423, 3062, 369, 1884, 19762, 311, 387, 2294, 20258, 323, 5255, 6164, 11, 323, 814, 2351, 5423, 3062, 2391, 1521, 1510, 11, 5107, 3115, 13, 4702, 439, 14224, 11, 10758, 374, 264, 1403, 27896, 1920, 323, 18065, 14624, 1120, 439, 1790, 320, 333, 539, 810, 8, 439, 433, 18065, 7556, 627, 8607, 1274, 11, 4869, 11, 3775, 311, 2804, 420, 320, 9210, 374, 11, 279, 14624, 8, 961, 315, 279, 10758, 1920, 13750, 11, 3060, 1606, 814, 10894, 311, 656, 433, 520, 682, 11, 477, 814, 1684, 433, 439, 264, 15871, 28979, 5820, 13, 2030, 994, 13375, 10489, 323, 13750, 11, 14624, 1288, 387, 25735, 439, 832, 1053, 5603, -100 ]
(video) Gilbert Burns Speaks on Having Full Camp and Healthy Weight Cut for Kamaru Usman Fight In a recent interview, Gilbert Burns spoke about the advantage of having a full camp going into his world title fight against Kamaru Usman. Posted on Last updated: February 10, 2021 By: Author Rory Robinson Gilbert Burns newly admitted that preparing for Karmaru Usman is the first time that he's had a full training camp for a welterweight fight. During a recent interview, Burns explained the advantages of having a full camp to prepare for his title fight. Plus, he spoke about the weight cut preparing for the fight. Gilbert Burns was on a roll in the last calendar year of his UFC career until he was sidelined with COVID-19. The virus ultimately snatched away Burn's chances of fighting Kamaru Usman for the UFC welterweight title. At first, Gilbert was devastated that his title chances slipped away. However, now Burns believes that being sick from the virus was a blessing, or else he would have tried to fight anyway. Burns on Full Camp and Weight Cut Now, Burns will get his chance to face Usman at UFC 258. Burns spoke with TSN about the matchup, as well as his preparation leading up to the event. Talking to @aaronbronsteter, Gilbert Burns discusses the advantages of having a full camp and easy weight cut ahead of his welterweight title shot at #UFC258 (Prelims Saturday at 8pm et on TSN5): https://t.co/04yggqbsA7 pic.twitter.com/Y6uoXI96h5 — SportsCentre (@SportsCentre) February 10, 2021 "This is (the first time at welterweight) I had a full camp. 8 weeks and I'm feeling very good about this one," said Burns. "All my lightweight performances, I've had a full camp. This time at welterweight, I don't need to worry so much about (the) weight cut. " Next, Gilbert began to speak about the strategy that he's implemented in the camp. Especially because he and his team understand Usman's game due to being teammates with each other. "My coaches and teammates know his strengths. So yeah, it's great to be ready and I don't need to worry about dieting. Just training, getting better and working (in) different situations." UFC 258 takes place on February 13, 2021, at the UFC's Apex Center. The Welterweight title fight between Usman and Burns will serve as the main event of the evening. Early prelims begin at 6:30 pm EST, with the event being available to stream on Fight Pass. Categories: Categories MMA News / UFC Gilbert BurnsKamaru UsmanUFC 258 Khabib Nurmagomedov Reveals The Fantasy MMA Matchup He Would Make Jon Anik Backs Joe Rogan Despite Social Media Criticism of Latest Commentary Work
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
9,521
[ 128000, 41842, 8, 46092, 51016, 12587, 10011, 389, 20636, 8797, 9702, 323, 44454, 16923, 20223, 369, 735, 15924, 84, 4073, 1543, 19143, 198, 644, 264, 3293, 7274, 11, 46092, 51016, 12570, 922, 279, 9610, 315, 3515, 264, 2539, 3190, 2133, 1139, 813, 1917, 2316, 4465, 2403, 735, 15924, 84, 4073, 1543, 627, 17827, 389, 8155, 6177, 25, 7552, 220, 605, 11, 220, 2366, 16, 3296, 25, 7030, 83421, 28280, 198, 98137, 9339, 51016, 13945, 16584, 430, 20646, 369, 735, 2227, 31244, 4073, 1543, 374, 279, 1176, 892, 430, 568, 596, 1047, 264, 2539, 4967, 3190, 369, 264, 12724, 466, 4870, 4465, 13, 12220, 264, 3293, 7274, 11, 51016, 11497, 279, 22934, 315, 3515, 264, 2539, 3190, 311, 10772, 369, 813, 2316, 4465, 13, 12623, 11, 568, 12570, 922 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 41842, 8, 46092, 51016, 12587, 10011, 389, 20636, 8797, 9702, 323, 44454, 16923, 20223, 369, 735, 15924, 84, 4073, 1543, 19143, 198, 644, 264, 3293, 7274, 11, 46092, 51016, 12570, 922, 279, 9610, 315, 3515, 264, 2539, 3190, 2133, 1139, 813, 1917, 2316, 4465, 2403, 735, 15924, 84, 4073, 1543, 627, 17827, 389, 8155, 6177, 25, 7552, 220, 605, 11, 220, 2366, 16, 3296, 25, 7030, 83421, 28280, 198, 98137, 9339, 51016, 13945, 16584, 430, 20646, 369, 735, 2227, 31244, 4073, 1543, 374, 279, 1176, 892, 430, 568, 596, 1047, 264, 2539, 4967, 3190, 369, 264, 12724, 466, 4870, 4465, 13, 12220, 264, 3293, 7274, 11, 51016, 11497, 279, 22934, 315, 3515, 264, 2539, 3190, 311, 10772, 369, 813, 2316, 4465, 13, 12623, 11, 568, 12570, 922, -100 ]
At long last, preorders have opened for unlocked version of the Galaxy S8 and Galaxy S8+ in the United States. The international versions of the unlocked phones have been available on Amazon since launch, but this is the first time that US consumers will be able to buy the appropriate models of the unlocked phones from Samsung or Best Buy, while saving nearly $100 in the process. As with most unlocked phones, the unlocked Galaxy S8 and S8+ will work with a majority of the mobile carriers in the US, as long as you're willing to pay an activation fee, sign up for service and switch out your SIM card. Buying an unlocked model means you won't have to deal with bloatware though. Starting today, you can place preorders for unlocked Galaxy S8 and S8+ models on Samsung.com as well as BestBuy.com. Prices start at $724.99 for the unlocked 64GB Galaxy S8 and $824.99 for the unlocked 64GB Galaxy S8+. Both phones will be available in the Midnight Black color scheme. While there are certainly benefits to owning an unlocked version of a flagship device, ZDNet points out that Samsung doesn't have the best track record when it comes to releasing software updates in a timely fashion for its unlocked devices. If you prefer to have the latest version of Android and the most recent security updates on your phone, you might want to hold off and see how Samsung performs. The unlocked Galaxy S8 and S8+ are expected to begin shipping at the end of May.
{ "redpajama_set_name": "RedPajamaC4" }
6,181
[ 128000, 1688, 1317, 1566, 11, 864, 8076, 617, 9107, 369, 36718, 2373, 315, 279, 20238, 328, 23, 323, 20238, 328, 23, 10, 304, 279, 3723, 4273, 13, 578, 6625, 11028, 315, 279, 36718, 18084, 617, 1027, 2561, 389, 8339, 2533, 7195, 11, 719, 420, 374, 279, 1176, 892, 430, 2326, 13723, 690, 387, 3025, 311, 3780, 279, 8475, 4211, 315, 279, 36718, 18084, 505, 18907, 477, 7252, 11544, 11, 1418, 14324, 7154, 400, 1041, 304, 279, 1920, 627, 2170, 449, 1455, 36718, 18084, 11, 279, 36718, 20238, 328, 23, 323, 328, 23, 10, 690, 990, 449, 264, 8857, 315, 279, 6505, 35991, 304, 279, 2326, 11, 439, 1317, 439, 499, 2351, 10032, 311, 2343, 459, 15449, 11307, 11, 1879, 709, 369, 2532, 323, 3480, 704, 701, 23739, 3786 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1688, 1317, 1566, 11, 864, 8076, 617, 9107, 369, 36718, 2373, 315, 279, 20238, 328, 23, 323, 20238, 328, 23, 10, 304, 279, 3723, 4273, 13, 578, 6625, 11028, 315, 279, 36718, 18084, 617, 1027, 2561, 389, 8339, 2533, 7195, 11, 719, 420, 374, 279, 1176, 892, 430, 2326, 13723, 690, 387, 3025, 311, 3780, 279, 8475, 4211, 315, 279, 36718, 18084, 505, 18907, 477, 7252, 11544, 11, 1418, 14324, 7154, 400, 1041, 304, 279, 1920, 627, 2170, 449, 1455, 36718, 18084, 11, 279, 36718, 20238, 328, 23, 323, 328, 23, 10, 690, 990, 449, 264, 8857, 315, 279, 6505, 35991, 304, 279, 2326, 11, 439, 1317, 439, 499, 2351, 10032, 311, 2343, 459, 15449, 11307, 11, 1879, 709, 369, 2532, 323, 3480, 704, 701, 23739, 3786, -100 ]
Home/Heroes of the Storm/Tanks/E.T.C. E.T.C. Build Guide "You can't kill the metal!" Last updated on Oct 27, 2020 at 06:00 by Oxygen 35 comments Welcome to our guide for E.T.C., a Tank in Heroes of the Storm. Within these pages, you will find everything required to understand how best to play this hero, in both different map styles and team compositions. E.T.C. in Tier List 1. E.T.C.'s Overview 2. E.T.C.'s Strengths and Weaknesses 3. E.T.C.'s Talent Build Cheatsheet 4. E.T.C.'s Synergies and Counters 5. E.T.C.'s Maps 6. E.T.C.'s Tips and Tricks E.T.C.'s Overview E.T.C. is a disruptive and resilient Tank. Teammates will find his outstanding ability to initiate, peel, and provide an unusually high utility as an archetypal Tank useful. His limited damage output, however, means that E.T.C. players must work well with allies in order to secure kills. E.T.C.'s Strengths and Weaknesses Hard to kill and gank, making him an outstanding scout Multiple reliable crowd control Abilities and interrupts Some team support in the form of area of effect buffs Flexible Heroic Ability choices Dependent on good positioning Very limited sustained damage output, making him poor at claiming Mercenary Camps Predictable playstyle E.T.C.'s Talent Build Cheatsheet This standard build provides superior survivability, utility, and crowd control. Key aspects of the build lie in greatly improving the disruption potential of Face Melt. Although Mosh Pit is suggested as a Heroic Ability, Stage Dive can be a valid choice as well for certain strategies. E.T.C.'s Synergies and Counters E.T.C. synergizes with E.T.C.'s aggressive crowd control-oriented Ability set makes him particularly useful to any Hero who is able to follow up on said crowd control with their own Ability combo. E.T.C. is countered by E.T.C. may struggle against Heroes that have ways of avoiding his Powerslide, reliably interrupt Mosh Pit, or otherwise kiting him. E.T.C.'s Maps E.T.C.'s stronger maps E.T.C.'s average maps E.T.C.'s weaker maps Having a well-rounded Ability set, E.T.C. works well on most Maps. His sub-par PvE damage dealing capacity, however, makes him a poor choice on any Map featuring Objectives that need to be taken out quickly. E.T.C.'s Tips and Tricks Use Powerslide along with Face Melt to easily push opponents towards or away from your teammates. Make the best out of Rockstar's Armor by using Guitar Solo whenever you are being attacked. Capitalise on Stage Dive's global range to split push or soak Experience. Keep track of enemy crowd control so that Mosh Pit is not interrupted. E.T.C. is the most evident example of an archetypal Tank who thrives in group play, thanks to Powerslide and his innate toughness. As such, E.T.C. is typically picked in aggressive team compositions with plenty of follow up to capitalise on his reliable initiate. Although nearly impossible to gank, he is not a particularly strong solo laner, and should instead remain with allies to support them in various ways. Scouting is one important task that E.T.C. can fulfill better than most Heroes. As needed, Stage Dive turns E.T.C. into a potent split-pusher, allowing a team to safely pressure two Objectives at once after the laning phase. 27 Oct. 2020 (talents page): Talents and builds reviewed and updated. 07 Sep. 2020 (talents page): Talents and builds reviewed and updated. 19 Jul. 2020 (talents page): Talents reviewed and updated. 05 Apr. 2020 (talents page): Description and recommendation updated for Pinball Wizard. 11 Oct. 2019 (abilities page): Abilties section reviewed. 11 Oct. 2019 (talents page): Talents section updated. 21 Jan. 2018 (this page): Guide fully updated. 26 Apr. 2017 (this page): Guide updated for Genji's patch and moved to the new format. Mal'Ganis Build Guide More Guides from Oxygen E.T.C. Build Guide Jaina Build Guide Diablo Build Guide Oxygen is a veteran of the MOBA genre, which he has been playing for nearly 15 years. He has coached some of Heroes of the Storm's most prominent North American players and teams alike, including Team Liquid. As a Master player, he enjoys playing all Heroes and roles. Blaze Guide D.Va Guide Deathwing Guide Leoric Guide
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
5,332
[ 128000, 7778, 24240, 2382, 288, 315, 279, 22620, 17146, 4129, 26729, 844, 732, 627, 36, 844, 732, 13, 8012, 13002, 330, 2675, 649, 956, 5622, 279, 9501, 25765, 5966, 6177, 389, 5020, 220, 1544, 11, 220, 2366, 15, 520, 220, 2705, 25, 410, 555, 87669, 220, 1758, 6170, 198, 14262, 311, 1057, 8641, 369, 469, 844, 732, 2637, 264, 32494, 304, 38099, 315, 279, 22620, 13, 25218, 1521, 6959, 11, 499, 690, 1505, 4395, 2631, 311, 3619, 1268, 1888, 311, 1514, 420, 12084, 11, 304, 2225, 2204, 2472, 9404, 323, 2128, 62644, 627, 36, 844, 732, 13, 304, 36332, 1796, 198, 16, 13, 469, 844, 732, 3238, 82, 35907, 198, 17, 13, 469, 844, 732, 3238, 82, 32937, 82, 323, 42264, 2136, 288, 198, 18, 13, 469, 844 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 7778, 24240, 2382, 288, 315, 279, 22620, 17146, 4129, 26729, 844, 732, 627, 36, 844, 732, 13, 8012, 13002, 330, 2675, 649, 956, 5622, 279, 9501, 25765, 5966, 6177, 389, 5020, 220, 1544, 11, 220, 2366, 15, 520, 220, 2705, 25, 410, 555, 87669, 220, 1758, 6170, 198, 14262, 311, 1057, 8641, 369, 469, 844, 732, 2637, 264, 32494, 304, 38099, 315, 279, 22620, 13, 25218, 1521, 6959, 11, 499, 690, 1505, 4395, 2631, 311, 3619, 1268, 1888, 311, 1514, 420, 12084, 11, 304, 2225, 2204, 2472, 9404, 323, 2128, 62644, 627, 36, 844, 732, 13, 304, 36332, 1796, 198, 16, 13, 469, 844, 732, 3238, 82, 35907, 198, 17, 13, 469, 844, 732, 3238, 82, 32937, 82, 323, 42264, 2136, 288, 198, 18, 13, 469, 844, -100 ]
In addition, the USDA states that adults should consume three servings of milk, cheese or yogurt a day. A serving size is 1 cup of milk or yogurt, 1.5 ounces of natural cheese or 2 ounces of processed cheese. Note: if you're concerned about the hormones in milk opt for organic milk instead. Of course there are alternative "milk" products that also have load of benefits on health: almond milk (Dr. Celeste's favorite), rice milk, hemp milk, etc. So grab you a cold one and enjoy! If you are in the Maryland area please join us for Surrender Your Void, June 1, 1-4 at Largo Community Church. The cost is $39. It's time to surrender ALL that has kept you stuck!
{ "redpajama_set_name": "RedPajamaC4" }
388
[ 128000, 644, 5369, 11, 279, 61091, 5415, 430, 12884, 1288, 25024, 2380, 79049, 315, 14403, 11, 17604, 477, 55575, 264, 1938, 13, 362, 13788, 1404, 374, 220, 16, 10747, 315, 14403, 477, 55575, 11, 220, 16, 13, 20, 49138, 315, 5933, 17604, 477, 220, 17, 49138, 315, 15590, 17604, 627, 9290, 25, 422, 499, 2351, 11920, 922, 279, 44315, 304, 14403, 3469, 369, 17808, 14403, 4619, 13, 5046, 3388, 1070, 527, 10778, 330, 76, 34263, 1, 3956, 430, 1101, 617, 2865, 315, 7720, 389, 2890, 25, 63168, 14403, 320, 9023, 13, 23519, 5455, 596, 7075, 705, 20228, 14403, 11, 42063, 14403, 11, 5099, 627, 4516, 11894, 499, 264, 9439, 832, 323, 4774, 4999, 2746, 499, 527, 304, 279, 23481, 3158, 4587, 5249, 603, 369, 55166, 910, 4718, 19743 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 644, 5369, 11, 279, 61091, 5415, 430, 12884, 1288, 25024, 2380, 79049, 315, 14403, 11, 17604, 477, 55575, 264, 1938, 13, 362, 13788, 1404, 374, 220, 16, 10747, 315, 14403, 477, 55575, 11, 220, 16, 13, 20, 49138, 315, 5933, 17604, 477, 220, 17, 49138, 315, 15590, 17604, 627, 9290, 25, 422, 499, 2351, 11920, 922, 279, 44315, 304, 14403, 3469, 369, 17808, 14403, 4619, 13, 5046, 3388, 1070, 527, 10778, 330, 76, 34263, 1, 3956, 430, 1101, 617, 2865, 315, 7720, 389, 2890, 25, 63168, 14403, 320, 9023, 13, 23519, 5455, 596, 7075, 705, 20228, 14403, 11, 42063, 14403, 11, 5099, 627, 4516, 11894, 499, 264, 9439, 832, 323, 4774, 4999, 2746, 499, 527, 304, 279, 23481, 3158, 4587, 5249, 603, 369, 55166, 910, 4718, 19743, -100 ]
I've written a blogpost on how to cross-compile Go 1.4 apps on Windows/Linux/Docker for the Omega, including Go web-apps. Hope you find it useful. I have a bunch of instructions on building and running Go on the Omega here. It's based on the info above.
{ "redpajama_set_name": "RedPajamaC4" }
5,635
[ 128000, 40, 3077, 5439, 264, 5117, 2252, 389, 1268, 311, 5425, 12, 21065, 6122, 220, 16, 13, 19, 10721, 389, 5632, 95425, 15302, 13973, 369, 279, 44409, 11, 2737, 6122, 3566, 20624, 82, 13, 18231, 499, 1505, 433, 5505, 627, 40, 617, 264, 15860, 315, 11470, 389, 4857, 323, 4401, 6122, 389, 279, 44409, 1618, 13, 1102, 596, 3196, 389, 279, 3630, 3485, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 40, 3077, 5439, 264, 5117, 2252, 389, 1268, 311, 5425, 12, 21065, 6122, 220, 16, 13, 19, 10721, 389, 5632, 95425, 15302, 13973, 369, 279, 44409, 11, 2737, 6122, 3566, 20624, 82, 13, 18231, 499, 1505, 433, 5505, 627, 40, 617, 264, 15860, 315, 11470, 389, 4857, 323, 4401, 6122, 389, 279, 44409, 1618, 13, 1102, 596, 3196, 389, 279, 3630, 3485, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
"Ambiguity is more convincing than certainty" -- me What the critics are saying about "THE CLOSE ENCOUNTERS MAN" "A book that smartly refuses to simplify anything. The mystery of UFOs persists, as does the mystery of J. Allen Hynek. Yet thanks to Mark O'Connell, the latter is now a bit less mysterious." (The Los Angeles Review) My Visit to a Real UFO Landing Site! In my last post I told the story of finding the "Close Encounters of the Third Kind" game at an antique store in Chattanooga, TN, while driving back to Wisconsin from Atlanta the other day, but that's only the first part of the story... A few hours later we were traveling through western Kentucky, and came upon the exit for a town called Hopkinsville. I had noticed it on the drive down but hadn't had the time to stop. But I made a solemn vow that we would pull over on the way home and see what there was to see. My wife Mxxxxx understood. Hopkinsville, Kentucky, you see, is right up the highway from Kelly, Kentucky, and together they form the site of the "Kelly-Hopkinsville" alien invasion... How could I not stop? In August, 1955, the Sutton family were enjoying a quiet Sunday night with some friends on their isolated farm off the Old Madisonville Road in Kelly, when a UFO landed in the gully behind the house. Soon after, strange little creatures -- "shiny men" -- started to approach the house, apparently trying to get it... For 4 hours the Suttons fought off the little creatures with rifles and shotguns, but the little things seemed impervious to gunfire... Finally, frightened out of their wits, the family made a run for it, packing into two pickup trucks and racing to the police station in Hopkinsville. Thanks to the diligent investigative work of two amateur UFOlogists, the incident has been documented in minute, terrifying detail. And thanks to a map drawn by one of those investigators, Isabel Davis, I knew exactly where to go... Visit www.kellyky.com Just like in 1955, Kelly barely exists. It consists of a few houses, a church and a sign, in front of which I'm standing. It's a nice sign, but I wondered why it showed an old locomotive instead of one of these more unique symbols: Skeptics said they were chimps that had escaped from a nearby circus... Seriously, which would you rather be known for? Anyway, that road you see behind me and the sign is the Old Madisonville Road, and if you follow it a short way to the left (or north), you come across this... Somewhere back in those woods... two worlds met. This, I believe, is the entrance to the Sutton farm, or at least this is pretty damn close. It leads east into the woods and into a gully off the Old Madisonville Road, seen here. It's a very quiet place, and if you listen hard you can almost hear the gunshots of the terrified Sutton clan as they fought off the invaders... I would have walked back to the woods, but I wasn't sure if this was private property, and I didn't want to hear -- or feel -- any modern day gunshots. Pretty cool moment, though. Honest-to-God UFO landing sites are few and far between, so it's a real kick to actually get to see one, exactly as it was when the UFO landed... The case was never explained by the Air Force's Project Blue Book, because it was never investigated by Blue Book. But Dr. J. Allen Hynek new and trusted the two civilian investigators and felt that something very real had happened to the Suttons that night. But here's what's really weird about the case: when you read the two reports and the newspaper accounts of the incident you quickly realize that there were in fact Air Force officers as well as non-military government investigators from an unnamed agency swarming all over the Sutton farm after the incident... Here's my final tally, complied for my Hynek bio: The Hopkinsville New Era reported that four Military Policepersons from Fort Campbell responded to the Hopkinsville Police Department's APB The Madisonville, Kentucky Messenger reported that "At least a carload of Military Police sped to the scene." Russell N. Ferguson, Jr., confirmed in a 1996 letter that Military Police from Fort Campbell were among the investigators present at the Sutton farm that night Bud Ledwith was present in the Sutton home when Pfc Gary F. Hodson made a sketch of the little man and spaceship based on Billy Ray Taylor's description; Ledwith reported that Hodson was there as a private citizen Ledwith offered his own sketches to "an Air Force officer," who declined – someone besides Hodson, of course, who was not an officer The Evansville, Indiana, Press, reported that "Ft. Campbell authorities today sent Major Albert Coren to the scene to investigate" Major John E. Albert reported to 1st Sgt. Charles N. Kirk that he had driven to the Sutton farm and investigated the incident at the suggestion of unnamed personnel at Ft. Douglas Captain Robert J. Hertell reported to 1st Sgt. Kirk that "a couple" officers went to the Sutton farm on their own time Hopkinsville Police Chief Greenwell stated "definitely" that Air Force Intelligence was present at the farm, as were multiple MPs, Pfc. Hodson and two men from an unnamed agency at Standiford Air Field in Lousiville, KY Miss Glennie told amateur UFO investigator Albert Andre that "three investigators" from Fort Campbell visited the farm, got descriptions of the creature from Sutton family members, then returned within a matter of hours with a model of the creature that passed the family's inspection A conservative head count arrives at a total of 13 MPs, officers and Intelligence operatives from Fort Campbell descending on the Sutton farm between August 21st and 22nd, as well as two men from an unknown, possibly civilian agency. At what point does unofficial become official? At least one of the officers was at the Sutton farm at the suggestion of his commanding officer. At least one was there at the direct request of his CO, although perhaps not technically under orders. At least one was with Air Force Intelligence. Can you see why I wanted to see the site of the world's most famous alien invasion? Even today, 60 years later, the incident is still shrouded in mystery... Give me a case like this over Roswell any day. Posted by Mark UFO'Connell at 6:01 PM Labels: "Lucky" Sutton, Air Force, alien, alien invasion, chimpanzee, Dr. J. Allen Hynek, flying saucer, Isabel Davis, Kelly-Hopkinsville, little green men, Project Blue Book, Sutton, UFO thekamisama said... That's actually the adjacent property. It is where they do the yearly Kelly Little Green Men festival every August though! Mark UFO'Connell said... I know, but the sign says "Kelly" in big letters! The Close Encounters Man You've seen the movie; now read the book! My Little E.T. Mark UFO'Connell The Men in Black are really bad at their jobs I've been a bit out of the UFO loop lately, for a variety of reasons, but I'm back to talk about a very important issue in UFOlogy ... The Danger of Wanting "Tic Tac" UFOS to Be Real The danger of wanting to UFOs to be real is on display everywhere, it seems. Wherever you look, people are believing all sorts of ridiculou... It's All About the Links What a great day I had today. I was meeting my friend, Best Man and blogging mentor Axxx for lunch, but when I got to the restaurant I bumpe... High Strangeness Throughout the Ages Human or Alien? UFO Denial Boast to Boast AM The UFO Game My Sincere, Overdue Apology Kodachrome The Comedy! UFO Crash Team UFO Hoaxsters & Charlatans BeWITNESS: The Roswell Post-Its Kodachrome Apocalypse The UFO Trail Sincerity Is Not Synonymous with Accuracy My Star Trek Scrapbook Bob Larkin Star Trek Art The Other Side of Truth Synchronicity, Irish Style The Big Study SLOW SWAN SONG, Part Four
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,275
[ 128000, 30233, 3172, 27843, 488, 374, 810, 40661, 1109, 44743, 1, 1198, 757, 198, 3923, 279, 23531, 527, 5605, 922, 330, 17673, 50806, 73362, 36119, 50, 26819, 702, 30233, 2363, 430, 7941, 398, 41716, 311, 40821, 4205, 13, 578, 23347, 315, 49044, 82, 67145, 11, 439, 1587, 279, 23347, 315, 622, 13, 20661, 10320, 48045, 13, 14968, 9523, 311, 4488, 507, 6, 39594, 11, 279, 15629, 374, 1457, 264, 2766, 2753, 26454, 1210, 320, 791, 9853, 12167, 10506, 340, 5159, 19545, 311, 264, 8976, 49044, 47524, 13207, 4999, 644, 856, 1566, 1772, 358, 3309, 279, 3446, 315, 9455, 279, 330, 8084, 10984, 93102, 315, 279, 21530, 17262, 1, 1847, 520, 459, 47691, 3637, 304, 97943, 11, 32023, 11, 1418, 10043, 1203, 311, 21073, 505, 20005, 279, 1023, 1938 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 30233, 3172, 27843, 488, 374, 810, 40661, 1109, 44743, 1, 1198, 757, 198, 3923, 279, 23531, 527, 5605, 922, 330, 17673, 50806, 73362, 36119, 50, 26819, 702, 30233, 2363, 430, 7941, 398, 41716, 311, 40821, 4205, 13, 578, 23347, 315, 49044, 82, 67145, 11, 439, 1587, 279, 23347, 315, 622, 13, 20661, 10320, 48045, 13, 14968, 9523, 311, 4488, 507, 6, 39594, 11, 279, 15629, 374, 1457, 264, 2766, 2753, 26454, 1210, 320, 791, 9853, 12167, 10506, 340, 5159, 19545, 311, 264, 8976, 49044, 47524, 13207, 4999, 644, 856, 1566, 1772, 358, 3309, 279, 3446, 315, 9455, 279, 330, 8084, 10984, 93102, 315, 279, 21530, 17262, 1, 1847, 520, 459, 47691, 3637, 304, 97943, 11, 32023, 11, 1418, 10043, 1203, 311, 21073, 505, 20005, 279, 1023, 1938, -100 ]
Research ArticleSjögren Syndrome Sjögren Syndrome without Focal Lymphocytic Infiltration of the Salivary Glands Rohan Sharma, Kaustubh S. Chaudhari, Biji T. Kurien, Kiely Grundahl, Lida Radfar, David M. Lewis, Christopher J. Lessard, He Li, Astrid Rasmussen, Kathy L. Sivils and R. Hal Scofield The Journal of Rheumatology March 2020, 47 (3) 394-399; DOI: https://doi.org/10.3899/jrheum.181443 Rohan Sharma From the Arthritis and Clinical Immunology Program, Oklahoma Medical Research Foundation, Oklahoma City, Oklahoma; Department of Neurology, University of Arkansas Medical Sciences Center, Little Rock, Arkansas; Medical and Research Services, Oklahoma City Department of Veterans Affairs Medical Center; Departments of Medicine and Pathology, University of Oklahoma Health Sciences Center; College of Dentistry, University of Oklahoma Health Sciences Center, Oklahoma City, Oklahoma, USA. Kaustubh S. Chaudhari Biji T. Kurien Kiely Grundahl Lida Radfar David M. Lewis Christopher J. Lessard Astrid Rasmussen Kathy L. Sivils R. Hal Scofield ORCID record for R. Hal Scofield For correspondence: [email protected] Objective Primary Sjögren syndrome (SS) is characterized by a focal lymphocytic infiltrate in exocrine glands. We describe patients who lacked this key feature. Methods. We evaluated patients with sicca in a comprehensive clinic at which medical, dental, and ophthalmological examinations were performed. All subjects underwent a minor salivary gland biopsy with focus score calculation. Extraglandular manifestations were also determined. We categorized subjects as high, intermediate, or low in terms of expression of interferon (IFN)-regulated genes. Results. About 20% (51 of 229, 22%) of those classified as having primary SS had a focus score of zero. Compared to those with anti-Ro positivity and a focus score > 1.0, the patients with focus score of zero (who by classification criteria must be anti-Ro–positive) were statistically less likely to have anti-La (or SSB) and elevated immunoglobulin, as well as less severe corneal staining. The focus score zero patients were less likely to have elevated expression of IFN-regulated genes in peripheral blood mononuclear cells than anti-Ro–positive SS patients with a focal salivary infiltrate. Conclusion. There are only a few clinical differences between patients with primary SS with focus score zero and those with both anti-Ro and a focus score > 1.0. The small subset of focus score zero patients tested did not have elevated expression of IFN-regulated genes, but did have systemic disease. Thus, extraglandular manifestations are perhaps more related to the presence of anti-Ro than increased IFN. This may have relevance to pathogenesis of SS. Key Indexing Terms: PRIMARY SJÖGREN SYNDROME AUTOANTIBODIES Sjögren syndrome (SS) is a chronic autoimmune disease characterized by lymphocytic infiltration of exocrine glands. Salivary and lacrimal gland involvement presenting as sicca syndrome is the most common manifestation of SS. Involvement of other exocrine glands such as those of respiratory, gastrointestinal, and genitourinary tracts can be seen concomitantly with SS sicca1. Extraglandular manifestations of the disease include arthralgia, arthritis, Raynaud phenomenon, lymphadenopathy, small airway disease, systemic vasculitis, interstitial nephritis, splenomegaly, myositis, peripheral neuropathy, and lymphoma2. The disease burden of SS in the United States is around 2–3 million patients, making it the second most prevalent inflammatory rheumatological disease3. Focal lymphocytic infiltration of salivary glands and anti-Ro/SSA serum autoantibodies are the cardinal features of SS and are part of the current classification criteria4,5. Focal lymphocytic infiltration is measured by focus score, defined as the number of mononuclear cell infiltrates containing at least 50 inflammatory cells per 4 mm2 of glandular section. A focus score of 1 or greater is considered positive. All the patients with primary SS in our large cohort underwent minor salivary gland biopsy and histological examination; we found that a significant percentage had a focus score of zero. Thus, these patients lacked one of the 2 cardinal features of SS. We investigated the differences (if any) between the patients with primary SS with focus score zero and those with non-zero focus scores. We evaluated individuals with sicca in the Oklahoma Medical Research Foundation (OMRF) Sjögren's Syndrome Research Clinic6,7,8,9. Subjects were evaluated by a rheumatologist, an ophthalmologist (or optometrist), and a dentist. The dentist performed an oral examination consisting of measurement of stimulated and timed whole unstimulated salivary flow, a lip biopsy, and collection and storage of saliva. Evaluation did not include sialography or scintigraphy. The ocular specialist performed ocular surface staining with Lissamine green and fluorescein, an unanesthetized Schirmer I test, and collection and storage of tears. The ocular vital dye score was determined using the quantitative dot-counting method according to both the van Bijsterveld10 and ocular staining score methods11, rather than by descriptive features. A physician completed a detailed history and physical examination, including general medical, rheumatological, and neurological evaluations. Blood samples were collected for extraction and storage of DNA, RNA, and serum. Anti-Ro (SSA) and anti-La (SSB) autoantibodies were determined by multiple methods6. All patients were tested for rheumatoid factor, antinuclear antibodies, and autoantibodies associated with other connective tissue disorders. Subjects also had hepatitis C serology, complete blood count with differential, immunoglobulin profile, and urinalysis. If patients gave a history of a past diagnosis of rheumatoid arthritis, mixed connective tissue disease, systemic sclerosis, myositis, primary biliary cirrhosis, multiple sclerosis, or systemic lupus erythematosus, classification criteria for these illnesses were specifically ascertained by history, medical record review, and testing for the corresponding autoantibodies. Minor salivary gland pathology was determined by a dental pathologist with calculation of focus score following the method of Daniels12 as follows: number of lymphocytic foci adjacent to normal-appearing acini with > 50 cells observed divided by area studied (mm2) × 4 mm2. As delineated in the recent guidelines13, which we followed, focus score calculation does not take into account nonfocal lymphocytic infiltration, which may be present despite a focus score of zero. Subjects were classified according to the American-European Consensus Group (AECG) and the American College of Rheumatology/European League Against Rheumatism (ACR/EULAR) criteria for SS4,5,14,15, both of which require one of anti-Ro/La or a focus score > 1.0. Thus, all subjects classified as having SS with a focus score < 1.0 must have anti-Ro under the ACR/EULAR criteria or either anti-Ro or anti-La under the AECG criteria. Clinical diagnosis of SS is by expert opinion and does not rely on these classification criteria, which are formulated for research purposes only. All subjects had a clinical diagnosis of SS made at the time of the evaluation in the OMRF Sjögren's Syndrome Research Clinic. We determined mRNA expression by microarray, as described16,17. We categorized individual patients as having high, intermediate, or low interferon (IFN)-regulated gene expression by unsupervised hierarchical clustering using centroid linkage with uncentered correlation18. We used Cluster 3.018 for clustering of gene expression and visualized these results in Java TreeView19. We compared the patients with focus score zero with those with focus scores of < 1 and ≥ 1, regarding classification criteria and extraglandular manifestations, using SAS software for data analysis. We used chi-square or Fisher's exact test for comparisons between the groups. Understanding the need for correction for multiple comparisons we agreed upon an α of 0.005 for statistical significance, so p values < 0.005 were considered statistically significant. Because this was an investigative study, we used the α of 0.005 rather than Bonferroni correction, which is more conservative in its estimation and therefore more likely to give false-negative results. Given the a priori hypothesis for the IFN-regulated gene expression studies and the small number of statistical tests, no correction for multiple comparisons was made. All procedures were approved by the Oklahoma Medical Research Foundation Institutional Review Board (no. 11-03). Each participant provided written informed consent prior to entering the study. Among 229 subjects classified as having primary SS, we found 51 with focus score zero (FS = 0, 22%), 167 with focus score positive (FS ≥ 1, 73%), and 11 with focus score between 0 and 1 (0 < FS < 1, 5%). No patient with a focus score of zero had a gland replaced by fibrosis, and all subjects had adequate tissue for examination and calculation of focus score. All subjects with a focus score < 1 had anti-Ro/SSA in their sera. This is, of course, by definition of the criteria, which require either a focus score ≥ 1.0 or autoantibodies. For focus score–positive patients, we included only those with positive anti-Ro for study to match with the focus score zero patients, all of whom have anti-Ro. Nonetheless, subjects with FS = 0 were statistically less likely to have anti-La (or SSB) detected than subjects with FS ≥ 1 (10/51, 19.6% vs 98/167, 58.7%, respectively; p < 0.001). There was a statistical trend for only the 0 < FS < 1 subjects to have less anti-La compared to FS ≥ 1 subjects (Table 1). Classification criteria among subjects with primary Sjögren syndrome with a focus score > 1 (FS > 1), a focus score of zero (FS = 0), and a focus score between zero and 1 (0 < FS < 1). All subjects answered positively at least 1 dry eye question and 1 dry mouth question from the AECG criteria. We next examined the presence or absence of the classification criteria (Table 1). When considering the AECG sicca criteria, all subjects answered positively to at least 1 dry mouth and 1 dry eye question. Thus, there was no statistical difference in the presence of sicca symptoms among the groups. Similarly, there was no difference in the presence of an abnormal Schirmer test among the 3 groups; however, abnormal Lissamine green corneal staining was statistically more common among subjects with FS ≥ 1.0 compared to those with FS of zero (p = 0.0032; Table 1). Whole unstimulated salivary flow did not differ between the 3 groups. Comparing disease manifestations not identified in the classification criteria but part of the Sjögren's Syndrome Disease Activity Index (SSDAI)20,21, we found only a few differences between the groups. Elevated serum IgG, a manifestation within the biological domain of the SSDAI, was significantly higher in focus score–positive subjects compared to those with focus score zero (p = 0.0003; Table). Otherwise, neither salivary gland enlargement nor other extraglandular manifestations differed among the 3 groups (Table 2). Manifestations from the European Sjögren's Syndrome Disease Activity Index among subjects with primary Sjögren syndrome with a focus score > 1 (FS > 1), a focus score of zero (FS = 0), and a focus score between zero and 1 (0 < FS < 1). Previous reports show that increased expression of IFN-regulated genes in peripheral blood cells is highly correlated with the presence of anti-Ro among patients with primary SS16,17,22. We hypothesized that this might not be the case among those with anti-Ro but no salivary gland mononuclear cell infiltrate. Indeed, we found that subjects with focus score zero were less likely to have high expression of IFN-regulated gene than anti-Ro positive subjects with a focus score ≥ 1.0 (Table 3). We had peripheral blood gene expression data for 6 of the 47 subjects with a focal score of zero, and none clustered with the high-IFN group. Among those with a focal score ≥ 1 and anti-Ro positivity, 31 of 47 were in the high-IFN group by cluster analysis (p = 0.001, Fisher's exact test). Four of the anti-Ro–positive subjects with focus score zero had low IFN-regulated gene expression and 2 had intermediate expression by the cluster analyses. Meanwhile, among the anti-Ro-positive comparison group of subjects with focus score ≥ 1, only 15 had intermediate and 5 had low expression of IFN-regulated genes in peripheral blood cells (Table 3). Interferon-regulated gene expression categorized by unsupervised hierarchical clustering among subjects with primary Sjögren syndrome, some with a focus score (FS) > 1 on minor salivary gland pathology and some with a focus score of zero. Focus score is the quantitative measure of focal sialadenitis, and along with serum anti-Ro antibodies is the cardinal feature of SS. Presence of one of them is required to classify patients in a research setting, while a diagnosis of the disease is made on clinical grounds. We found that the 2 subgroups with and without focal infiltration were not clinically different, other than having higher degree of corneal staining with Lissamine green, serum anti-La antibodies, and elevated IgG in patients with FS ≥ 1. Hypergammaglobulinemia, elevated IgG, and serum anti-La antibodies are highly associated with the presence of anti-Ro23. Higher degree of Lissamine green staining without significantly different Schirmer test results in these patients points to a greater degree of corneal involvement even in the absence of markedly different tear production. This may be due to an alteration in protein secretion in tears, causing a qualitative loss of function. Few studies have analyzed patients with SS without focal sialadenitis. These studies found associations of high focus score with clinical disease manifestations, but generally these studies have parsed patients with SS as focus score above 3 or 4 and < 3 or 4. For instance, a recent study found that a focus score > 4.0 was associated with interstitial lung disease24. Other work found associations of focus scores above 3 with lymphoma25. A longitudinal study found focus score ≥ 1.0 was associated with worsening Schirmer test results26. A study of 265 subjects with SS showed an association of positive focus score with stimulated salivary flow as well as decayed/missed/filled (DMF) teeth27. We did not examine stimulated salivary flow or DMF teeth. Carubbi and colleagues28 examined a large group of patients (n = 794), of whom 72 (19%) had a focus score of zero. These investigators found a number of differences between subjects with focus score zero and those with a focus score ≥ 1.0 including xerostomia, salivary gland enlargement, hematological involvement, central nervous system involvement, and hypergammaglobulinemia. However, no correction for multiple comparisons was made in that study, which, given the lack of an a priori hypothesis concerning any differences between the groups, we thought necessary to perform. Examining the results from Carubbi, et al, we found that only hypergammaglobulinemia and hematological involvement remained statistically significant after multiple corrections. Using univariate logistic regression, Carubbi, et al found focus score ≥ 1 was associated with lymphoma28. We did not have enough patients with lymphoma (only 1 in our cohort) to make any assessment. Thus, our study and previous ones comparing subjects with and without a positive focus score are largely in agreement, especially considering that hypergammaglobulinemia and elevated IgG are generally correlative. Our findings have implications for clinical diagnosis of SS. Diagnosis is inherently difficult because it requires multiple specialties, and it is often difficult to find expertise for SS in a dentist, ophthalmologist, and pathologist at one center. Because the FS ≥ 1 and FS = 0 groups are not remarkably different regarding clinical manifestations, in the presence of sicca symptoms with serum anti-Ro antibody, a clinical diagnosis of SS can be made essentially without the need for tissue biopsy. However, there will remain the subset of seronegative patients with SS who may require a salivary gland biopsy for clinical diagnosis. At our institution, we would rarely make a diagnosis without one of anti-Ro or focal lymphocytic infiltration of salivary glands. Others may not take this approach, and instead make a clinical diagnosis without salivary gland pathology even in the absence of anti-Ro. The research classification will continue to require one of salivary gland biopsy or serum autoantibodies concomitant with the clinical findings. These clinical findings, along with differences in expression of IFN-related genes, have even greater implications regarding the pathogenesis of the disease. First, manifestation of sicca syndrome without focal infiltration of exocrine glands points to another pathology of gland dysfunction without gland destruction, perhaps antimuscarinic 3 receptor autoantibodies or altered expression of aquaporin molecules. Clearly, these patients without focal infiltrates do not have immune-mediated destruction of the salivary glands. Second, the difference in IFN-regulated gene expression between the 2 groups delineates differences in underlying pathogenesis. Previous investigations found that increased expression of IFN-regulated genes in SS is highly related to anti-Ro positivity. However, we did not find a high degree of expression of this set of genes among the patients with anti-Ro but with no focal salivary gland infiltrate. Unsupervised hierarchical clustering analyses showed a statistically significant lower expression of IFN-regulated genes among anti-Ro–positive, focus score zero SS subjects compared to anti-Ro–positive with a focal infiltrate (Table 3). One possibility is that cells infiltrating the salivary gland are the source of IFN that is driving expression of genes in peripheral blood cells. The data are clear that the salivary glands are a site of development of lymphocytes and that B cells infiltrating the salivary gland produce anti-Ro29,30. These cells may also serve as antigen-presenting cells and produce IFN. Alternatively, IFN produced in some other location could be critical to the production of anti-Ro as well as to development of the lymphocytic salivary gland infiltrate that characterizes the disease. Finally, there could be factors such as genetics of genes such as OAS117 that influence all 3 factors of anti-Ro, IFN production, and infiltration of the gland. SS can be divided into those with only exocrine gland features versus those that also have systemic or extraglandular features. Data suggest that the presence of anti-Ro identifies the latter group31. The FS = 0, anti-Ro–positive patients had a similar degree of extraglandular manifestations compared to the group with focus score ≥ 1.0 and anti-Ro. Thus, extraglandular disease is associated with anti-Ro regardless of the presence of focal sialadenitis. However, this was not the case for increased expression of IFN-regulated genes, which was not found among FS = 0 patients despite the presence of extraglandular manifestations. Thus, anti-Ro, not expression of IFN-regulated genes, is the correlate of extraglandular manifestations. Because almost all subjects had no previous diagnosis of SS, medications that might alter IFN, including hydroxychloroquine, were not prescribed. There are several limitations to our study. We had only a small number of subjects in whom we studied expression of IFN-regulated genes in peripheral blood cells. That is, this was a sample of convenience, so our results and conclusions must be considered preliminary. We do not have longitudinal data. Further, we do not have reliable data concerning the onset of disease, which is difficult to ascertain when talking to patients, many of whom have had sicca for years. Perhaps subjects with focal score of zero have early-stage disease and will develop focal lymphocytic infiltration over time. Our study did not address whether pathological findings might change over the course of the illness, although studies of sequential biopsies have not shown changed pathology32. Minor salivary gland histopathology results are variable in a given subject33; more extensive examination of multiple tissue sections might have revealed focal infiltration in some FS = 0 subjects. Finally, pathology findings in the minor salivary glands may not reflect pathology in the major salivary glands. We did not examine the major salivary glands in our cohort. A significant fraction of patients coming to a comprehensive sicca evaluation clinic who were classified as having primary SS had no focal infiltrate upon pathological examination of minor salivary gland biopsy specimens. These subjects had only a few clinical differences compared to those with both anti-Ro and a focus score ≥ 1. There were fewer signs of severe dry eyes among the patients who were anti-Ro-positive and focus score-negative. In addition, we found statistically less anti-La as well as fewer elevated immunoglobulin levels in these subjects. These serological findings are of interest because both factors are highly associated with the presence of anti-Ro. In addition, we found the subjects with primary SS who had no focal infiltrate but did have anti-Ro positivity did not have elevated expression of IFN-regulated genes, another characteristic highly correlated with anti-Ro. Thus, these patients who were focus score–negative and anti-Ro–positive differed from patients with focus score ≥ 1 and who were anti-Ro–positive in interesting ways that might shed light on aspects of the pathogenesis of SS. Supported in part by US National Institutes of Health grants AR053483, AR060804, AI0822714, and GM104938, and US Department of Veterans Affairs grant BX001451. Accepted for publication May 1, 2019. Fox RI . Sjogren's syndrome. Lancet 2005;366:321–31. Al-Hashimi I, Khuder S, Haghighat N, Zipp M . Frequency and predictive value of the clinical manifestations in Sjogren's syndrome. J Oral Pathol Med 2001;30:1–6. Helmick CG, Felson DT, Lawrence RC, Gabriel S, Hirsch R, Kwoh CK, Estimates of the prevalence of arthritis and other rheumatic conditions in the United States. Part I. Arthritis Rheum 2008;58:15–25. Vitali C, Bombardieri S, Jonsson R, Moutsopoulos HM, Alexander EL, Carsons SE, Classification criteria for Sjogren's syndrome: A revised version of the European criteria proposed by the American-European Consensus Group. Ann Rheum Dis 2002;61:554–8. Shiboski CH, Shiboski SC, Seror R, Criswell LA, Labetoulle M, Lietman TM, et al; International Sjögren's Syndrome Criteria Working Group . 2016 American College of Rheumatology/European League Against Rheumatism classification criteria for primary Sjögren's syndrome: a consensus and data-driven methodology involving three international patient cohorts. Arthritis Rheumatol 2017;69:35–45. Rasmussen A, Ice JA, Li H, Grundahl K, Kelly JA, Radfar L, Comparison of the American-European Consensus Group Sjogren's syndrome classification criteria to newly proposed American College of Rheumatology criteria in a large, carefully characterised sicca cohort. Ann Rheum Dis 2014;73:31–8. Harris VM, Sharma R, Cavett J, Kurien BT, Liu K, Koelsch KA, Klinefelter's syndrome (47,XXY) is in excess among men with Sjogren's syndrome. Clin Immunol 2016;168:25–9. Rare X chromosome abnormalities in systemic lupus erythematosus and Sjogren's syndrome. Arthritis Rheum 2017;69:2187–92. Danda D, Truong D, Bagavant H, Anti-La positive, anti-Ro negative subset of primary Sjogren's syndrome: anti-La is a reality but is the disease? Clin Exp Rheumatol 2017;35:438–44. van Bijsterveld OP . Diagnostic tests in the Sicca syndrome. Arch Ophthalmol 1969;82:10–4. Whitcher JP, Heidenreich AM, Kitagawa K, Zhang S, A simplified quantitative method for assessing keratoconjunctivitis sicca from the Sjogren's Syndrome International Registry. Am J Ophthalmol 2010;149:405–15. Daniels TE . Labial salivary gland biopsy in Sjogren's syndrome. Assessment as a diagnostic criterion in 362 suspected cases. Arthritis Rheum 1984;27:147–56. Fisher BA, Daniels T, Bombardieri M, Brown RM, Morgan P, Standardisation of labial salivary gland histopathology in clinical trials in primary Sjogren's syndrome. Ann Rheum Dis 2017;76:1161–8. Criswell L, Baer A, Challacombe S, Lanfranchi H, American College of Rheumatology classification criteria for Sjogren's syndrome: a data-driven, expert consensus approach in the Sjogren's International Collaborative Clinical Alliance cohort. Arthritis Care Res 2012;64:475–87. . 2016 American College of Rheumatology/European League Against Rheumatism classification criteria for primary Sjögren's syndrome: A consensus and data-driven methodology involving three international patient cohorts. Ann Rheum Dis 2017;76:9–16. Lessard CJ, Sivils KL . Interferons in Sjögren's syndrome: genes, mechanisms, and effects. Front Immunol 2013;4:290. Reksten TR, Adrianto I, Identification of a Sjogren's syndrome susceptibility locus at OAS1 that influences isoform switching, protein expression, and responsiveness to type I interferons. PLoS Genet 2017;13:e1006820. de Hoon MJ, Imoto S, Nolan J, Miyano S . Open source clustering software. Bioinformatics 2004;20:1453–4. Saldanha AJ . Java Treeview - extensible visualization of microarray data. Bioinformatics 2004;20:3246–8. Ravaud P, Bowman SJ, Baron G, Tzioufas A, Theander E, EULAR Sjogren's syndrome disease activity index: development of a consensus systemic disease activity index for primary Sjogren's syndrome. Ann Rheum Dis 2010;69:1103–9. Brito-Zeron P, Bootsma H, EULAR Sjogren's syndrome disease activity index (ESSDAI): a user guide. RMD Open 2015;1:e000022. Emamian ES, Leon JM, Grandits M, Baechler EC, Gaffney PM, Peripheral blood gene expression profiling in Sjogren's syndrome. Genes Immun 2009;10:285–96. Retamozo S, Gandia M, Akasbi M, Perez-De-Lis M, Diaz-Lagares C, Monoclonal gammopathy related to Sjogren syndrome: a key marker of disease prognosis and outcomes. J Autoimmun 2012;39:43–8. Kakugawa T, Sakamoto N, Ishimoto H, Shimizu T, Nakamura H, Nawata A, Lymphocytic focus score is positively related to airway and interstitial lung diseases in primary Sjogren's syndrome. Respir Med 2018;137:95–102. Risselada AP, Kruize AA, Goldschmeding R, Lafeber FP, Bijlsma JW, van Roon JA . The prognostic value of routinely performed minor salivary gland assessments in primary Sjogren's syndrome. Ann Rheum Dis 2014;73:1537–40. Haldorsen K, Moen K, Jacobsen H, Brun JG . Exocrine function in primary Sjogren syndrome: natural course and prognostic factors. Ann Rheum Dis 2008;67:949–54. Bookman AA, Shen H, Cook RJ, Bailey D, McComb RJ, Rutka JA, Whole stimulated salivary flow: correlation with the pathology of inflammation and damage in minor salivary gland biopsy specimens from patients with primary Sjogren's syndrome but not patients with sicca. Arthritis Rheum 2011;63:2014–20. Carubbi F, Alunno A, Cipriani P, Bartoloni E, Baldini C, Quartuccio L, A retrospective, multicenter study evaluating the prognostic value of minor salivary gland histology in a large cohort of patients with primary Sjogren's syndrome. Lupus 2015;24:315–20. Maier-Moore JS, Smith K, Lewis D, Antibody-secreting cell specificity in labial salivary glands reflects the clinical presentation and serology in patients with Sjogren's syndrome. Arthritis Rheum 2014;66:3445–56. Tengner P, Halse AK, Haga HJ, Wahren-Herlenius M . Detection of anti-Ro/SSA and anti-La/SSB autoantibody-producing cells in salivary glands from patients with Sjogren's syndrome. Arthritis Rheum 1998;41:2238–48. Davidson BK, Kelly CA, Griffiths ID . Primary Sjogren's syndrome in the North East of England: A long-term follow-up study. Rheumatology 1999;38:245–53. Teppo H, Revonta M . A follow-up study of minimally invasive lip biopsy in the diagnosis of Sjogren's syndrome. Clin Rheumatol 2007;26:1099–103. Wright JM, Cooley CA, Nunn ME . Reproducibility of biopsy grade in Sjogren's syndrome. J Oral Pathol Med 2001;30:408–12. You are going to email the following Sjögren Syndrome without Focal Lymphocytic Infiltration of the Salivary Glands Rohan Sharma, Kaustubh S. Chaudhari, Biji T. Kurien, Kiely Grundahl, Lida Radfar, David M. Lewis, Christopher J. Lessard, He Li, Astrid Rasmussen, Kathy L. Sivils, R. Hal Scofield The Journal of Rheumatology Mar 2020, 47 (3) 394-399; DOI: 10.3899/jrheum.181443 PROMIS Provides a Broader Overview of Health-related Quality of Life Than the ESSPRI in Evaluation of Sjögren Syndrome Long-term Safety of Rituximab in Primary Sjögren Syndrome: The Experience of a Single Center Correlation Between Subjective and Objective Severity of Oral and Ocular Dryness in Primary Sjögren Syndrome Show more Sjögren Syndrome
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
360
[ 128000, 28528, 13659, 50, 73, 62997, 1466, 57496, 198, 50, 73, 62997, 1466, 57496, 2085, 435, 3768, 445, 32800, 511, 70504, 763, 85846, 367, 315, 279, 8375, 344, 661, 480, 8329, 198, 49, 57572, 61115, 11, 23109, 592, 392, 71, 328, 13, 921, 8039, 77007, 11, 426, 35973, 350, 13, 32375, 3675, 11, 30558, 989, 48327, 17137, 11, 445, 4849, 21254, 24470, 11, 6941, 386, 13, 21256, 11, 26035, 622, 13, 9865, 569, 11, 1283, 14851, 11, 39616, 307, 432, 10753, 44061, 11, 65298, 445, 13, 328, 6362, 82, 323, 432, 13, 20442, 50159, 2630, 198, 791, 10139, 315, 71636, 46313, 2508, 5587, 220, 2366, 15, 11, 220, 2618, 320, 18, 8, 220, 20077, 12, 18572, 26, 59670, 25, 3788, 1129, 48886, 2726, 14, 605, 13, 20422, 24 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 28528, 13659, 50, 73, 62997, 1466, 57496, 198, 50, 73, 62997, 1466, 57496, 2085, 435, 3768, 445, 32800, 511, 70504, 763, 85846, 367, 315, 279, 8375, 344, 661, 480, 8329, 198, 49, 57572, 61115, 11, 23109, 592, 392, 71, 328, 13, 921, 8039, 77007, 11, 426, 35973, 350, 13, 32375, 3675, 11, 30558, 989, 48327, 17137, 11, 445, 4849, 21254, 24470, 11, 6941, 386, 13, 21256, 11, 26035, 622, 13, 9865, 569, 11, 1283, 14851, 11, 39616, 307, 432, 10753, 44061, 11, 65298, 445, 13, 328, 6362, 82, 323, 432, 13, 20442, 50159, 2630, 198, 791, 10139, 315, 71636, 46313, 2508, 5587, 220, 2366, 15, 11, 220, 2618, 320, 18, 8, 220, 20077, 12, 18572, 26, 59670, 25, 3788, 1129, 48886, 2726, 14, 605, 13, 20422, 24, -100 ]
Washington DC, United States Lincoln, 25 Progressive Communications Strategist see his Washington DC city guide a bit about Lincoln Lincoln would like you to know that the current administration that some Americans decided to send to DC is nothing like the city — creative, compassionate, and diverse. These things are extremely important to him, as he works as a progressive communications strategist in the hope to make the world a better place. In the meantime, his city guide will certainly improve your trip to Washington DC. That's something too. "Get shit done" @aCreativeDC SLIDE by Calvin Harris and Frank Ocean The Good Wife! You can be anyone in the world for one day only, who would it be? OBAMA, of course. A Barney book with me as the star and my face superimposed on a character Austin! Currently playing in your earphones: Internet Slang What's that Coke Cherry Frank & Oak Almond creamer and honey! Moscow Mule! Lion King! 30 other things about Lincoln I'm in progressive political PR (say that 3x fast) and support clients on a range of issues including juvenile justice, reproductive health, and comprehensive sex ed. I do it because I'm passionate about amplifying the voices and work of commonly excluded groups of people, and love having the privilege of working on multiple issues at once. I also do it because my firm is a space where I'm able to be open and loud about my identity, opinions, and politics alongside like-minded people. What's the worst job you've ever had and why was it so effing bad? That time I was a camp counselor in high school. The camp was in Texas. In the Summer. It was an outside day-camp. It was hot. I don't remember much else, because I blocked it (and the sweat) from my memory. Were you born and raised in Washington DC? If not, where did you grow up and what brought you to Washington DC? Nope! I was born and raised in Farmersville, Texas. A small town where you know everyone, and everyone knows you. Good and bad! In high school, I felt like I was being pulled to DC. So, against the advice of counsel (my parents), I only applied to colleges in DC. I graduated from George Washington University in 2016. What's your current hood in Washington DC and what's the best/worst thing about it? I just moved to Mt. Vernon square in April! I'm already obsessed. Everything you could ever want is right there, or a short walk away. There's a bakery, coffee shop, grocery store, bars, and about 10 restaurants all within a 5 minute walk from my door. The worst thing about it is that like most of DC, it's currently being gentrified. Signs of this include a lot of construction and an an apparent shift in the makeup of the community. It sucks that I'm now a part of this, but I'm dedicated to attempting to offset my presence here by supporting existing community organizations. What kind of music do you listen to and what kind of music do you absolutely HATE? I'm such a Spotify stan. My best friend and I have been making monthly collaborative Spotify playlists every month since September 2014! I listen to a lot of pop, hip-hop, rap, and acoustic. I really like covers, and I'm always looking around spotify for new music. However, I can't go more than 2 minutes of listening to country or rock music before exiting the bar I definitely didn't intend to enter. Work Song - Hozier. Also, anything by Drake pre-if you're reading this it's too late. Name the best TV shows of all time, and what makes them so good? Shameless, because it's the antithesis of all of those cliche, and played-out "American family next door" sitcoms - and it revels in it. Also, I'm still healing from The Good Wife ending. That was one of my favorite shows because it was very fast paced, played out current-events, and juggled several different plot lines without dropping the ball. Name some spots in Washington DC that are good for a Tinder date. We have a lot of great coffee shops, but DON'T HAVE A DATE AT A COFFEE SHOP, PEOPLE! Whenever the universe is unkind to me, and I happen to be sitting by a first-time date at a coffee shop, I make it a point to pause my music and be a silent third wheel. I'm nosey. Sorry. Take a tinder date for drinks at Columbia room, a bike ride to airplane park, or if you're feeling real confident - take them canoeing on the Potomac! Which public figure would you want to see "roasted"? (every public figure is fair game). #45. There's enough material there for a Game of Thrones-length roast sesh. Who's your hero and where in Washington DC would you take them out for a serious hang? I don't really have a "hero" - because now we have social media, which gives people ample time to reveal problematic behavior or ignorance. But someone I really admire is James Baldwin. I would take him to graffiti bridge to look at the view and learn more about him, since I only know him through pages of his books. When my bank account agrees, I'm a huge fan of Frank and Oak, Everlane, and Granna. I normally shop exclusively online, because who has the damn time? When I'm looking for fast fashion, I usually head for H&M, Urban, or UNIQLO. Capitol Hill. Because I run into enough pretentious suited-up yopros in other parts of the district! In college, I would love to read or do work in the great hall of the library of congress. It's beautifully intimidating. But, my library card expired upon graduation, and I haven't had a chance to apply for a new resident one since it's only in person and only open during work hours. One day! Where do you go in Washington DC for a casual night out? Dacha beer garden or Barcelona wine bar! Also, the Shaw area has a lot of nice & low-key spots. Where would you go in Washington DC to celebrate some freaking good news? Cocktail tasting at Columbia room! It's a little pricey, but it's definitely an experience. My best friend's brother took us there for graduation, but I've always wanted to go back. They change the menu out based on the season - and really go all out. It's a 3-5 course drink tasting paired with eats. You get a personal bartender and the ambiance is dark and stormy. What's your choice of transportation in Washington DC and why? Walking! DC is a really walkable city, and I love walking through the different neighborhoods and noticing how each one is unique. Also, there's always some sort of protest, sidewalk concert, or something else going on that you'll miss if you uber or metro all the time. What are the Washington DC spots a first-time visitor can't miss? No surprise, but DC has a lot of great and FREE.99 museums. I would say the new National Museum of African American History and the National Portrait Gallery are must sees. After being all #cultured, you can't miss the food and nightlife! U street is a one stop shop for both. What are the Washington DC spots tourists should run from screaming? The White House. Tomorrow's your last day in Washington DC. How do you spend it? Would start out with a walk down the Georgetown waterfront, grab coffee and a Kolache at Compass Coffee, and have a big brunch with friends on a rooftop. Then, head to Chinatown to listen to some sidewalk music before walking through the National Portrait Gallery. For dinner, it would be a Cambodian and Taiwanese feast at Maketto. After recovering, we would head out to U Street. 801, velvet lounge, Brixton, and Flash (if they don't have a cover) all in that order. Of course, we couldn't leave U Street without waiting in line at 3am for &Pizza! Athens! I studied abroad there, and constantly felt full by the people's kindness, the delicious food, and the ancient history! There's a huge creative culture there, and it's not as overloaded with fellow tourists as other European cities I've been to. Also.. it's a short boat ride or plane away from Greek islands. I don't think I will ever see a more beautiful view than a Santorini sunset. lincolnmondy
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,128
[ 128000, 39231, 11162, 11, 3723, 4273, 198, 51697, 22808, 11, 220, 914, 198, 9685, 535, 26545, 29323, 380, 198, 4151, 813, 6652, 11162, 3363, 8641, 198, 64, 2766, 922, 25379, 198, 51697, 22808, 1053, 1093, 499, 311, 1440, 430, 279, 1510, 8735, 430, 1063, 9053, 6773, 311, 3708, 311, 11162, 374, 4400, 1093, 279, 3363, 2001, 11782, 11, 60961, 11, 323, 17226, 13, 4314, 2574, 527, 9193, 3062, 311, 1461, 11, 439, 568, 4375, 439, 264, 23053, 17320, 65235, 304, 279, 3987, 311, 1304, 279, 1917, 264, 2731, 2035, 13, 763, 279, 33953, 11, 813, 3363, 8641, 690, 7995, 7417, 701, 8577, 311, 6652, 11162, 13, 3011, 596, 2555, 2288, 627, 1, 1991, 17619, 2884, 702, 90317, 64046, 5744, 198, 8143, 12420, 555, 51983, 21750, 323, 9454, 22302 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 39231, 11162, 11, 3723, 4273, 198, 51697, 22808, 11, 220, 914, 198, 9685, 535, 26545, 29323, 380, 198, 4151, 813, 6652, 11162, 3363, 8641, 198, 64, 2766, 922, 25379, 198, 51697, 22808, 1053, 1093, 499, 311, 1440, 430, 279, 1510, 8735, 430, 1063, 9053, 6773, 311, 3708, 311, 11162, 374, 4400, 1093, 279, 3363, 2001, 11782, 11, 60961, 11, 323, 17226, 13, 4314, 2574, 527, 9193, 3062, 311, 1461, 11, 439, 568, 4375, 439, 264, 23053, 17320, 65235, 304, 279, 3987, 311, 1304, 279, 1917, 264, 2731, 2035, 13, 763, 279, 33953, 11, 813, 3363, 8641, 690, 7995, 7417, 701, 8577, 311, 6652, 11162, 13, 3011, 596, 2555, 2288, 627, 1, 1991, 17619, 2884, 702, 90317, 64046, 5744, 198, 8143, 12420, 555, 51983, 21750, 323, 9454, 22302, -100 ]
45 Iraqi protesters shot dead by security forces after torching Iranian consulate By John Davison and Alaa Marjani Reuters Posted November 28, 2019 10:09 am Updated November 28, 2019 9:35 pm 1:54 Dozens of anti-government protesters killed across Iraq WATCH: Dozens of anti-government protesters killed across Iraq Iraqi security forces shot dead at least 45 protesters on Thursday after demonstrators stormed and torched an Iranian consulate overnight, in what could mark a turning point in the uprising against the Tehran-backed authorities. At least 29 people died in the southern city of Nassiriya when troops opened fire on demonstrators who blocked a bridge before dawn on Thursday and later gathered outside a police station. Police and medical sources said dozens of others were wounded. Four people were killed in Baghdad, where security forces opened fire with live ammunition and rubber bullets against protesters near a bridge over the Tigris river, the sources said, and twelve died in clashes in Najaf. 1:47 Violence escalates in Iraq as Iranian consulate burned Violence escalates in Iraq as Iranian consulate burned In Nassiriya thousands of mourners took to the streets, defying a curfew to bury their dead after the mass shooting. Video of protesters cheering in the night as flames billowed from the consulate were a stunning image after years in which Tehran's influence among Shi'ite Muslims in Arab states has been a defining factor in Middle East politics. The bloodshed that followed was one of the most violent days since the uprising began at the start of October, with anti-corruption demonstrations that swelled into a revolt against authorities seen by young demonstrators as stooges of Tehran. READ MORE: 1 killed, 21 wounded as violent protests continue in Iraq Iran closed the Mehran border crossing to Iraq on Thursday night because of security reasons, the semi-official Mehr news agency reported, citing a local border official. "With attention to the recent events and the unrest in the country of Iraq the Mehran border has been closed from tonight," Mojtaba Soleimani, the manager of the border post said, according to Mehr. He said it was not clear when the border would reopen. In Najaf, a city of ancient pilgrimage shrines that serves as seat of Iraq's powerful Shi'ite clergy, the Iranian consulate was reduced to a charred ruin after it was stormed overnight. The protesters, overwhelmingly Shi'ite, accused the Iraqi authorities of turning against their own people to defend Iran. 1:21 Anti-government protests continue to escalate in Iraq Anti-government protests continue to escalate in Iraq "All the riot police in Najaf and the security forces started shooting at us as if we were burning Iraq as a whole," a protester who witnessed the burning of the consulate told Reuters, asking not to be identified. China reports 17 more cases of viral pneumonia ahead of Lunar New Year travel Puerto Ricans outraged after warehouse of emergency supplies went unused Another protester, Ali, described the attack on the consulate as "a brave act and a reaction from the Iraqi people. We don't want the Iranians." But he predicted more violence: "There will be revenge from Iran, I'm sure. They're still here and the security forces are going to keep shooting at us." Iran's foreign ministry condemned the attack and demanded "the Iraqi government's firm response to the aggressors." READ MORE: 7 killed after Iraqi security forces open fire on protesters: sources So far, the authorities have been unyielding in response to the unrest, shooting dead hundreds of demonstrators with live ammunition and tear gas, while floating proposals for political reform that the protesters dismiss as trivial and cosmetic. Prime Minister Adel Abdul Mahdi has so far rejected calls to resign, after meetings with senior politicians that were attended by the commander of Iran's Revolutionary Guards' Quds Force, the elite unit that directs its militia allies abroad. Abdul Mahdi on Thursday summoned a senior military commander in Dhi Qar province, where Nassiriya is located, to Baghdad to explain why the situation had deteriorated, a military statement said. "Cut the hands" In a statement that indicated more violence was to come, the military commander of the Popular Mobilisation Forces (PMF), an umbrella group of paramilitary groups whose most powerful factions are close to Iran, suggested the overnight unrest in Najaf was a threat to Shi'ite clergy based in the city. 0:41 Nine dead in Iraq after protesters clash with security forces Nine dead in Iraq after protesters clash with security forces The paramilitary fighters would use full force against anyone who threatened Iraq's most senior Shi'ite cleric, Grand Ayatollah Ali al-Sistani, commander Abu Mahdi al-Muhandis said in a statement posted on the PMF website. "We will cut the hand of anyone trying to get near al-Sistani," he said. Influential populist cleric Moqtada al-Sadr issued a fresh call for the government to resign, while warning those who torched the embassy that they risked provoking a violent backlash from the authorities. READ MORE: Anti-government protesters in Iraq burn down Iranian consulate: officials "Do not give them cover to end your revolution, and stay clear of religious sites," he said in a statement on Twitter. If the government does not resign, "this is the beginning of the end of Iraq," he said. Fanar Haddad, senior research fellow at the National University of Singapore's Middle East Institute, said the government and its paramilitary allies could use the consulate incident to justify crushing the demonstrations. "It sends a message to Iran, but it also works to the advantage of people like Muhandis," he said. The paramilitaries could use the consulate incident as "a pretext to clamp down, framing what happened as a threat against Sistani." Sistani himself has appeared to back the protesters since the unrest erupted, calling on politicians to meet the popular demands for reform. Authorities set up "crisis cells" in several provinces to try to restore order, a military statement said on Thursday. They would be led by provincial governors but include military leaders who would take charge of local security forces. © 2019 Reuters IraqIraq ProtestsIraq Violenceanti-government protests iraqiraq protests deathsiraq anti-government protestsIraq death tollIraq protesters killediraq baghdad deaths 1455 Read Toronto braces for winter storm
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,871
[ 128000, 1774, 31334, 26827, 6689, 5710, 555, 4868, 8603, 1306, 7990, 287, 28501, 99517, 198, 1383, 3842, 5460, 3416, 323, 1708, 5418, 2947, 73, 5676, 197, 36978, 198, 17827, 6841, 220, 1591, 11, 220, 679, 24, 220, 605, 25, 2545, 1097, 198, 16593, 6841, 220, 1591, 11, 220, 679, 24, 220, 24, 25, 1758, 9012, 198, 16, 25, 4370, 3234, 19059, 315, 7294, 46704, 26827, 7577, 4028, 11340, 198, 65592, 25, 3234, 19059, 315, 7294, 46704, 26827, 7577, 4028, 11340, 198, 97818, 72, 4868, 8603, 6689, 5710, 520, 3325, 220, 1774, 26827, 389, 7950, 1306, 67508, 86087, 323, 5801, 2454, 459, 28501, 99517, 25402, 11, 304, 1148, 1436, 1906, 264, 13353, 1486, 304, 279, 70506, 2403, 279, 53795, 46128, 11527, 627, 1688, 3325, 220, 1682, 1274, 8636, 304 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1774, 31334, 26827, 6689, 5710, 555, 4868, 8603, 1306, 7990, 287, 28501, 99517, 198, 1383, 3842, 5460, 3416, 323, 1708, 5418, 2947, 73, 5676, 197, 36978, 198, 17827, 6841, 220, 1591, 11, 220, 679, 24, 220, 605, 25, 2545, 1097, 198, 16593, 6841, 220, 1591, 11, 220, 679, 24, 220, 24, 25, 1758, 9012, 198, 16, 25, 4370, 3234, 19059, 315, 7294, 46704, 26827, 7577, 4028, 11340, 198, 65592, 25, 3234, 19059, 315, 7294, 46704, 26827, 7577, 4028, 11340, 198, 97818, 72, 4868, 8603, 6689, 5710, 520, 3325, 220, 1774, 26827, 389, 7950, 1306, 67508, 86087, 323, 5801, 2454, 459, 28501, 99517, 25402, 11, 304, 1148, 1436, 1906, 264, 13353, 1486, 304, 279, 70506, 2403, 279, 53795, 46128, 11527, 627, 1688, 3325, 220, 1682, 1274, 8636, 304, -100 ]
"These make real mouth-watering 'Pig-cicles'! They take a while to cook, and when you eat them, you'll have pork fat smeared from ear to ear! Mmm! Mmm! I like to smoke with hickory wood, but any of your favorite will suffice." These ribs were the hit of my 4th of July party. I couldn't believe how quickly the disappeared. Even the kids ate them, what a great mess they made! They were delish!! I've been looking for the 'right' rib recipe for a long time and this one is WONDERFUL! A little too sweet and cinnamony for my taste but I would make again with less of those ingredients. This recipe was excellent. We had out neighbors over and they loved it as well.
{ "redpajama_set_name": "RedPajamaC4" }
9,840
[ 128000, 68879, 1304, 1972, 11013, 55051, 287, 364, 47, 343, 1824, 4440, 6, 0, 2435, 1935, 264, 1418, 311, 4394, 11, 323, 994, 499, 8343, 1124, 11, 499, 3358, 617, 36167, 8834, 91567, 1636, 505, 2487, 311, 2487, 0, 386, 3906, 0, 386, 3906, 0, 358, 1093, 311, 16603, 449, 305, 875, 683, 7732, 11, 719, 904, 315, 701, 7075, 690, 77256, 10246, 9673, 56249, 1051, 279, 4295, 315, 856, 220, 19, 339, 315, 5887, 4717, 13, 358, 7846, 956, 4510, 1268, 6288, 279, 29496, 13, 7570, 279, 6980, 30912, 1124, 11, 1148, 264, 2294, 9622, 814, 1903, 0, 2435, 1051, 1624, 819, 51447, 40, 3077, 1027, 3411, 369, 279, 364, 1315, 6, 20735, 11363, 369, 264, 1317, 892, 323, 420, 832, 374, 98467, 11645, 50736, 4999, 32 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 68879, 1304, 1972, 11013, 55051, 287, 364, 47, 343, 1824, 4440, 6, 0, 2435, 1935, 264, 1418, 311, 4394, 11, 323, 994, 499, 8343, 1124, 11, 499, 3358, 617, 36167, 8834, 91567, 1636, 505, 2487, 311, 2487, 0, 386, 3906, 0, 386, 3906, 0, 358, 1093, 311, 16603, 449, 305, 875, 683, 7732, 11, 719, 904, 315, 701, 7075, 690, 77256, 10246, 9673, 56249, 1051, 279, 4295, 315, 856, 220, 19, 339, 315, 5887, 4717, 13, 358, 7846, 956, 4510, 1268, 6288, 279, 29496, 13, 7570, 279, 6980, 30912, 1124, 11, 1148, 264, 2294, 9622, 814, 1903, 0, 2435, 1051, 1624, 819, 51447, 40, 3077, 1027, 3411, 369, 279, 364, 1315, 6, 20735, 11363, 369, 264, 1317, 892, 323, 420, 832, 374, 98467, 11645, 50736, 4999, 32, -100 ]
Veterans reflect on experience after Honor Flight to Washington, D.C. Group hopes to send more veterans to see nation's war memorials Updated: 9:27 PM CDT Jun 21, 2016 Veterans who took a May trip to Washington, D.C., through Heartland Honor Flight reunited Tuesday to commemorate the experience. Veterans who took a May trip to Washington, D.C., through Heartland Honor Flight reunited Tuesday to commemorate the experience.The reunion and sharing of photographs helped bring back all of the emotions of the experience."From the time you first arrive on the plane, it just overwhelms you with all the flags and the way they designed it," said veteran Ralph Keller.He went on the Honor Flight trip with his son, making a one-day round trip to see the nation's capital and the monuments that honor veterans."It was an honor of my lifetime to be able to return back to Washington, D.C., where I served for four years," said veteran Jim Comfort.KMBC 9 News anchor Matt Evans, who went along for the trip in May, spoke at Tuesday's reunion. It was an emotional night for the veterans and the family members for whom they served."The biggest surprise was when we came back and saw that many people lined up (at the airport) to greet us," said Keller. "I thought they did a marvelous job. Everything just worked out. It couldn't have been better."If you'd like to help send a veteran on a future Honor Flight trip, you can do so here. KANSAS CITY, Mo. — The reunion and sharing of photographs helped bring back all of the emotions of the experience. Veterans praised, thanked on Honor Flight trip to Washington Honor Flight veterans get hero's welcome home to KCI Honor Flight veterans savor opportunity to see D.C. memorials "From the time you first arrive on the plane, it just overwhelms you with all the flags and the way they designed it," said veteran Ralph Keller. He went on the Honor Flight trip with his son, making a one-day round trip to see the nation's capital and the monuments that honor veterans. "It was an honor of my lifetime to be able to return back to Washington, D.C., where I served for four years," said veteran Jim Comfort. KMBC 9 News anchor Matt Evans, who went along for the trip in May, spoke at Tuesday's reunion. It was an emotional night for the veterans and the family members for whom they served. "The biggest surprise was when we came back and saw that many people lined up (at the airport) to greet us," said Keller. "I thought they did a marvelous job. Everything just worked out. It couldn't have been better." If you'd like to help send a veteran on a future Honor Flight trip, you can do so here.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,168
[ 128000, 91177, 598, 8881, 389, 3217, 1306, 43044, 27675, 311, 6652, 11, 423, 732, 627, 2878, 16388, 311, 3708, 810, 26905, 311, 1518, 7140, 596, 4208, 16420, 10522, 198, 16593, 25, 220, 24, 25, 1544, 5975, 356, 10822, 12044, 220, 1691, 11, 220, 679, 21, 198, 91177, 598, 889, 3952, 264, 3297, 8577, 311, 6652, 11, 423, 732, 2637, 1555, 18449, 1974, 43044, 27675, 77979, 7742, 311, 83623, 279, 3217, 627, 91177, 598, 889, 3952, 264, 3297, 8577, 311, 6652, 11, 423, 732, 2637, 1555, 18449, 1974, 43044, 27675, 77979, 7742, 311, 83623, 279, 3217, 11829, 58384, 323, 11821, 315, 25232, 9087, 4546, 1203, 682, 315, 279, 21958, 315, 279, 3217, 1210, 3915, 279, 892, 499, 1176, 17782, 389, 279, 11277, 11, 433, 1120, 17201, 1026, 499, 449 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 91177, 598, 8881, 389, 3217, 1306, 43044, 27675, 311, 6652, 11, 423, 732, 627, 2878, 16388, 311, 3708, 810, 26905, 311, 1518, 7140, 596, 4208, 16420, 10522, 198, 16593, 25, 220, 24, 25, 1544, 5975, 356, 10822, 12044, 220, 1691, 11, 220, 679, 21, 198, 91177, 598, 889, 3952, 264, 3297, 8577, 311, 6652, 11, 423, 732, 2637, 1555, 18449, 1974, 43044, 27675, 77979, 7742, 311, 83623, 279, 3217, 627, 91177, 598, 889, 3952, 264, 3297, 8577, 311, 6652, 11, 423, 732, 2637, 1555, 18449, 1974, 43044, 27675, 77979, 7742, 311, 83623, 279, 3217, 11829, 58384, 323, 11821, 315, 25232, 9087, 4546, 1203, 682, 315, 279, 21958, 315, 279, 3217, 1210, 3915, 279, 892, 499, 1176, 17782, 389, 279, 11277, 11, 433, 1120, 17201, 1026, 499, 449, -100 ]
Saint-Alban-de-Roche () is a commune in the Isère department in southeastern France. Population See also Communes of the Isère department References Communes of Isère Isère communes articles needing translation from French Wikipedia
{ "redpajama_set_name": "RedPajamaWikipedia" }
8,132
[ 128000, 57475, 65473, 6993, 6953, 11151, 78, 1557, 1754, 374, 264, 79245, 304, 279, 2209, 12339, 9476, 304, 83209, 9822, 382, 54471, 271, 10031, 1101, 198, 18461, 8699, 315, 279, 2209, 12339, 9476, 271, 32812, 271, 18461, 8699, 315, 2209, 12339, 198, 3957, 12339, 1081, 8699, 9908, 33921, 14807, 505, 8753, 27685, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 57475, 65473, 6993, 6953, 11151, 78, 1557, 1754, 374, 264, 79245, 304, 279, 2209, 12339, 9476, 304, 83209, 9822, 382, 54471, 271, 10031, 1101, 198, 18461, 8699, 315, 279, 2209, 12339, 9476, 271, 32812, 271, 18461, 8699, 315, 2209, 12339, 198, 3957, 12339, 1081, 8699, 9908, 33921, 14807, 505, 8753, 27685, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
New Central Register and Certification Scheme for Building Safety Managers launched The Building Safety Alliance, an independent industry led 'not for profit' organisation, is launched with the purpose of implementing the certification of competent individuals wishing to deliver the role of building safety manager (BSM) and a publicly accessible register of those certified by the scheme. The Grenfell Tower tragedy brought to the fore how the safety of all buildings needs to be ensured. Recognising the role they play in delivering safe buildings, representatives of both the public and private sector have come together to deliver the change in culture needed and the uniform standard of competence that residents should expect from those responsible for their safety. The Building Safety Alliance will deliver initially two functions: • The certification of individual building safety managers (BSMs) or Nominated Individuals within the BSM (organisation) (both referred to as BSMs here); and • A publicly accessible register of those certified by the scheme. In due course, they will also work with others to evaluate how organisations who wish to deliver the function of the BSM can be assessed as having the organisational capability to do so and how to assist contractors and suppliers to higher risk buildings to deliver a competent workforce that understands how to ensure that residential buildings are safe for residents. The Building Safety Alliance will play an essential role in helping to improve the competence of those responsible for managing buildings so they can deliver safe homes for people. The Building Safety Bill, published on 5 July 2021, confirmed the new statutory role of the BSM, a concept first developed by Dame Judith Hackitt in her Review. Anthony Taylor, Interim Chair of the Building Safety Alliance said: "I'm proud to continue to take forward and implement the recommendations from Working Group 8 (WG8) of the Competence Steering Group. When we were initially asked to develop the competence requirements for the new statutory role of BSM, we recognised that for the framework to work, we also needed to set up wider structures that would support the development of and drive for a recognised and uniform standard of competence. "One of our key recommendations was the need for a register that would allow residents and accountable persons to check if the BSM for their building, meets the minimum competence requirements. Government is looking at Industry to deliver this, so we stepped forward with our wide consortium from across both the private and public sectors." Bob Smytherman, Chairman of the Federation of Private Residents Associations (representing 1000's of long -leaseholders across England & Wales) said: "Our leaseholder members will find themselves with new duties and responsibilities under the Building Safety Bill to ensure our buildings are as safe as possible. Our members will be looking to the Building Safety Manager as the stakeholder responsible for the day-to day building safety management of our buildings. "We have a crucial role to play in the Building Safety Alliance, to make sure Building Safety Managers are not only competent but also understand the resident perspective when appointed to make our buildings safe. After all, these buildings are our homes and we pay the service charges." "We look forward to the register coming into existence, so that we can feel safer in our buildings, confident that any of the certified Building Safety Managers on the registers will meet the national competence standard most appropriate standard for our homes." The WG8 Competence Framework is now being translated into a MHCLG sponsored Publicly Available Specification (PAS), and once finalised, this PAS 8673 will be the standard to which the Building Safety Alliance will certify candidate BSMs against, before allowing them onto the Register. The PAS is being developed in parallel to the legislation to make sure certified BSMs will be delivered by the time the legislation becomes enforced. For further information and updates please register your interest here. PreviousInspecting drylining finishes – the facts NextTrappco welcomes C G reynolds to portfolio of customers
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
1,472
[ 128000, 3648, 10913, 8618, 323, 51310, 44881, 369, 17283, 19220, 62534, 11887, 198, 791, 17283, 19220, 23590, 11, 459, 9678, 5064, 6197, 364, 1962, 369, 11626, 6, 22139, 11, 374, 11887, 449, 279, 7580, 315, 25976, 279, 28706, 315, 40883, 7931, 46227, 311, 6493, 279, 3560, 315, 4857, 7296, 6783, 320, 7497, 44, 8, 323, 264, 17880, 15987, 4254, 315, 1884, 23759, 555, 279, 13155, 627, 791, 39224, 67643, 22703, 31926, 7263, 311, 279, 2291, 1268, 279, 7296, 315, 682, 14016, 3966, 311, 387, 59754, 627, 18398, 3876, 279, 3560, 814, 1514, 304, 24944, 6220, 14016, 11, 24005, 315, 2225, 279, 586, 323, 879, 10706, 617, 2586, 3871, 311, 6493, 279, 2349, 304, 7829, 4460, 323, 279, 14113, 5410, 315, 58266, 430, 11062, 1288, 1755, 505, 1884, 8647 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 3648, 10913, 8618, 323, 51310, 44881, 369, 17283, 19220, 62534, 11887, 198, 791, 17283, 19220, 23590, 11, 459, 9678, 5064, 6197, 364, 1962, 369, 11626, 6, 22139, 11, 374, 11887, 449, 279, 7580, 315, 25976, 279, 28706, 315, 40883, 7931, 46227, 311, 6493, 279, 3560, 315, 4857, 7296, 6783, 320, 7497, 44, 8, 323, 264, 17880, 15987, 4254, 315, 1884, 23759, 555, 279, 13155, 627, 791, 39224, 67643, 22703, 31926, 7263, 311, 279, 2291, 1268, 279, 7296, 315, 682, 14016, 3966, 311, 387, 59754, 627, 18398, 3876, 279, 3560, 814, 1514, 304, 24944, 6220, 14016, 11, 24005, 315, 2225, 279, 586, 323, 879, 10706, 617, 2586, 3871, 311, 6493, 279, 2349, 304, 7829, 4460, 323, 279, 14113, 5410, 315, 58266, 430, 11062, 1288, 1755, 505, 1884, 8647, -100 ]
... public convenience and necessity, which remains today, in Pan-American Bus Lines Operation, 1 MCC 190, 203 ( 1936): "The question, in substance, is whether the new operation or service will serve a useful public purpose, responsive to a public demand... Interstate Commerce Commission Reports: Motor carrier cases - Page 803 by United States. Interstate Commerce Commission - 1938 Interstate Commerce Commission Reports: Motor carrier cases ..., Volume 40 United States. Interstate Commerce Commission - Carriers - 1944 ...carriers. Discussing the question whether such new coordinated motor-rail service could be authorized "without endangering or impairing the operations of...existing carriers contrary to the public interest" division 5, citing the Barker case and reaffirming the principles there followed, spoke as follows... ...require the proposed operation ; and in failing to find that the proposed service cannot be performed without endangering or impairing the operations of...existing carriers, contrary to the public interest, and it urges that the application be denied. In reply, applicant urges that the evidence establish... Interstate Commerce Acts Annotated United States. Interstate Commerce Commission, United States - Interstate commerce - 1930 ...or service will serve a useful public purpose, responsive to a public demand or need; whether this purpose can and will be served as well by existing lines or carriers; whether it can be served by applicant with a new operation or service proposed without endangering... I.C.C. Practitioners' Journal, Volume 39, Issue 3 Carriers - 1972 ...operation or service will serve useful public purpose, responsive to public demand or need; whether this purpose can and will be served as well by existing...lines or carriers; and whether it can be served by Salem with new operation or service proposed without endangering or impairing operations of existing... ...will serve a useful public purpose responsive to a public demand or need; whether this purpose can or will be served as well by existing lines or carriers; and whether it can be served by applicant without endangering or impairing operations of existing carriers contrary to public interest. 1 MCC... Interstate Commerce Commission Reports: Motor carrier cases, Volume 77 ...can and will be served as well by existing carriers, and (c) whether it can be served by applicant in the new operation or service proposed without endangering...existing carriers contrary to the public interest. (See Pan American Bus Lines Operation, 1 MCC 190, at page 203). In addition to these questions, applicant... First Supplemental Civil Functions Appropriation Bill for 1941: Hearings ... United States. Congress. Senate. Committee on Appropriations - United States - 1940 - 360 pages ...or service will serve a useful public purpose, responsive to a public demand or need; whether this purpose can and will be served as well by existing...service proposed without endangering or impairing the operation of existing carriers contrary to the public interest." Intervener also cites the casu of... United States. Congress. Senate. Committee on Appropriations - 1940 ...or service will serve a useful public purpose, responsive to a public demand or need; whether this purpose can and will be served as well by existing...service proposed without endangering or impairing the operation of existing carriers contrary to the public interest." Intervener also cites the case of... First Supplemental Civil Functions Apropriation Bill for 1941: Hearings ... Opinions and Decisions of the Public Service Commission of Wisconsin, Volume 21 Public Service Commission of Wisconsin - Public utilities - 1941 ...or service will serve a useful public purpose, responsive to a public demand or need; whether this purpose can and will be served as well by existing...existing carriers contrary to the public interest." Applicant has referred us to a long line of cases decided under part I of the act, in which we held...
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,595
[ 128000, 1131, 586, 19679, 323, 32961, 11, 902, 8625, 3432, 11, 304, 11233, 24145, 19111, 39333, 17145, 11, 220, 16, 99352, 220, 7028, 11, 220, 9639, 320, 220, 7285, 21, 1680, 330, 791, 3488, 11, 304, 20278, 11, 374, 3508, 279, 502, 5784, 477, 2532, 690, 8854, 264, 5505, 586, 7580, 11, 27078, 311, 264, 586, 7631, 9522, 3386, 2513, 31480, 9849, 29140, 25, 18079, 19115, 5157, 482, 5874, 220, 20899, 198, 1729, 3723, 4273, 13, 66593, 31480, 9849, 482, 220, 7285, 23, 198, 3386, 2513, 31480, 9849, 29140, 25, 18079, 19115, 5157, 61453, 20880, 220, 1272, 198, 23175, 4273, 13, 66593, 31480, 9849, 482, 3341, 17740, 482, 220, 6393, 19, 198, 1131, 7063, 17740, 13, 66379, 287, 279, 3488, 3508, 1778, 502, 47672, 9048, 3880, 607, 2532 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1131, 586, 19679, 323, 32961, 11, 902, 8625, 3432, 11, 304, 11233, 24145, 19111, 39333, 17145, 11, 220, 16, 99352, 220, 7028, 11, 220, 9639, 320, 220, 7285, 21, 1680, 330, 791, 3488, 11, 304, 20278, 11, 374, 3508, 279, 502, 5784, 477, 2532, 690, 8854, 264, 5505, 586, 7580, 11, 27078, 311, 264, 586, 7631, 9522, 3386, 2513, 31480, 9849, 29140, 25, 18079, 19115, 5157, 482, 5874, 220, 20899, 198, 1729, 3723, 4273, 13, 66593, 31480, 9849, 482, 220, 7285, 23, 198, 3386, 2513, 31480, 9849, 29140, 25, 18079, 19115, 5157, 61453, 20880, 220, 1272, 198, 23175, 4273, 13, 66593, 31480, 9849, 482, 3341, 17740, 482, 220, 6393, 19, 198, 1131, 7063, 17740, 13, 66379, 287, 279, 3488, 3508, 1778, 502, 47672, 9048, 3880, 607, 2532, -100 ]
Phase I-II trial of oral cyclophosphamide, prednisone and lenalidomide for the treatment of patients with relapsed and refractory multiple myeloma Donna E. Reece, Esther Masih-Khan, Eshetu G. Atenafu, Victor H. Jimenez-Zepeda, Peter Anglin, Christine Chen, Vishal Kukreti, Joseph R. Mikhael, Suzanne Trudel This single institution, open label Phase I-II dose escalation trial evaluated the safety and efficacy of the combination of lenalidomide (Revlimid®), cyclophosphamide and prednisone (CPR) in patients with relapsed/refractory multiple myeloma. The maximal administered dose of CPR consisted of cyclophosphamide 300 mg/m2 on day 1, 8, and 15, lenalidomide 25 mg on d 1-21 and prednisone 100 mg every other day in a 28-d cycle. Between November 2007 and June 2009, 32 patients were entered in cohorts of three at three dose levels. The median age was 64 years, 59% were male, with a median two prior regimens. Responding patients could stay on treatment until progression. The full-dose CPR regimen produced no dose-limiting toxicity and was delivered for a median of 16 months (3·5-65 months) with acceptable safety and tolerance. The overall response rate (≥ partial response) was 94% at a median follow up of 28 months. The median progression-free survival was 16·1 months [95% confidence interval (CI); 10·9-22·5 months], while the median overall survival was 27·6 months (95% CI; 16·8-36·6 months). Only the beta-2 microglobulin level at protocol entry correlated with a better survival (P = 0·047). These observations compare favourably with other 2- and 3- drug combinations for relapsed/refractory myeloma, and suggest that CPR should be evaluated further in the setting of relapsed/refractory disease, or in newly diagnosed patients. https://doi.org/10.1111/bjh.13100 Lenalidomide Refractory multiple myeloma Relapsed 10.1111/bjh.13100 Dive into the research topics of 'Phase I-II trial of oral cyclophosphamide, prednisone and lenalidomide for the treatment of patients with relapsed and refractory multiple myeloma'. Together they form a unique fingerprint. Lenalidomide Medicine & Life Sciences 100% Prednisone Medicine & Life Sciences 76% Multiple Myeloma Medicine & Life Sciences 74% beta 2-Microglobulin Medicine & Life Sciences 20% Safety Medicine & Life Sciences 17% Survival Medicine & Life Sciences 16% Reece, D. E., Masih-Khan, E., Atenafu, E. G., Jimenez-Zepeda, V. H., Anglin, P., Chen, C., Kukreti, V., Mikhael, J. R., & Trudel, S. (2015). Phase I-II trial of oral cyclophosphamide, prednisone and lenalidomide for the treatment of patients with relapsed and refractory multiple myeloma. British journal of haematology, 168(1), 46-54. https://doi.org/10.1111/bjh.13100 Phase I-II trial of oral cyclophosphamide, prednisone and lenalidomide for the treatment of patients with relapsed and refractory multiple myeloma. / Reece, Donna E.; Masih-Khan, Esther; Atenafu, Eshetu G. et al. In: British journal of haematology, Vol. 168, No. 1, 01.01.2015, p. 46-54. Reece, DE, Masih-Khan, E, Atenafu, EG, Jimenez-Zepeda, VH, Anglin, P, Chen, C, Kukreti, V, Mikhael, JR & Trudel, S 2015, 'Phase I-II trial of oral cyclophosphamide, prednisone and lenalidomide for the treatment of patients with relapsed and refractory multiple myeloma', British journal of haematology, vol. 168, no. 1, pp. 46-54. https://doi.org/10.1111/bjh.13100 Reece DE, Masih-Khan E, Atenafu EG, Jimenez-Zepeda VH, Anglin P, Chen C et al. Phase I-II trial of oral cyclophosphamide, prednisone and lenalidomide for the treatment of patients with relapsed and refractory multiple myeloma. British journal of haematology. 2015 Jan 1;168(1):46-54. doi: 10.1111/bjh.13100 Reece, Donna E. ; Masih-Khan, Esther ; Atenafu, Eshetu G. et al. / Phase I-II trial of oral cyclophosphamide, prednisone and lenalidomide for the treatment of patients with relapsed and refractory multiple myeloma. In: British journal of haematology. 2015 ; Vol. 168, No. 1. pp. 46-54. @article{c5658294bcb34c5ea1e5c6afdd2cb688, title = "Phase I-II trial of oral cyclophosphamide, prednisone and lenalidomide for the treatment of patients with relapsed and refractory multiple myeloma", abstract = "This single institution, open label Phase I-II dose escalation trial evaluated the safety and efficacy of the combination of lenalidomide (Revlimid{\textregistered}), cyclophosphamide and prednisone (CPR) in patients with relapsed/refractory multiple myeloma. The maximal administered dose of CPR consisted of cyclophosphamide 300 mg/m2 on day 1, 8, and 15, lenalidomide 25 mg on d 1-21 and prednisone 100 mg every other day in a 28-d cycle. Between November 2007 and June 2009, 32 patients were entered in cohorts of three at three dose levels. The median age was 64 years, 59% were male, with a median two prior regimens. Responding patients could stay on treatment until progression. The full-dose CPR regimen produced no dose-limiting toxicity and was delivered for a median of 16 months (3·5-65 months) with acceptable safety and tolerance. The overall response rate (≥ partial response) was 94% at a median follow up of 28 months. The median progression-free survival was 16·1 months [95% confidence interval (CI); 10·9-22·5 months], while the median overall survival was 27·6 months (95% CI; 16·8-36·6 months). Only the beta-2 microglobulin level at protocol entry correlated with a better survival (P = 0·047). These observations compare favourably with other 2- and 3- drug combinations for relapsed/refractory myeloma, and suggest that CPR should be evaluated further in the setting of relapsed/refractory disease, or in newly diagnosed patients.", keywords = "Cyclophosphamide, Lenalidomide, Prednisone, Refractory multiple myeloma, Relapsed", author = "Reece, {Donna E.} and Esther Masih-Khan and Atenafu, {Eshetu G.} and Jimenez-Zepeda, {Victor H.} and Peter Anglin and Christine Chen and Vishal Kukreti and Mikhael, {Joseph R.} and Suzanne Trudel", note = "Publisher Copyright: {\textcopyright} 2014 John Wiley & Sons Ltd. Copyright: Copyright 2017 Elsevier B.V., All rights reserved.", doi = "10.1111/bjh.13100", T1 - Phase I-II trial of oral cyclophosphamide, prednisone and lenalidomide for the treatment of patients with relapsed and refractory multiple myeloma AU - Reece, Donna E. AU - Masih-Khan, Esther AU - Atenafu, Eshetu G. AU - Jimenez-Zepeda, Victor H. AU - Anglin, Peter AU - Chen, Christine AU - Kukreti, Vishal AU - Mikhael, Joseph R. AU - Trudel, Suzanne N1 - Publisher Copyright: © 2014 John Wiley & Sons Ltd. Copyright: Copyright 2017 Elsevier B.V., All rights reserved. N2 - This single institution, open label Phase I-II dose escalation trial evaluated the safety and efficacy of the combination of lenalidomide (Revlimid®), cyclophosphamide and prednisone (CPR) in patients with relapsed/refractory multiple myeloma. The maximal administered dose of CPR consisted of cyclophosphamide 300 mg/m2 on day 1, 8, and 15, lenalidomide 25 mg on d 1-21 and prednisone 100 mg every other day in a 28-d cycle. Between November 2007 and June 2009, 32 patients were entered in cohorts of three at three dose levels. The median age was 64 years, 59% were male, with a median two prior regimens. Responding patients could stay on treatment until progression. The full-dose CPR regimen produced no dose-limiting toxicity and was delivered for a median of 16 months (3·5-65 months) with acceptable safety and tolerance. The overall response rate (≥ partial response) was 94% at a median follow up of 28 months. The median progression-free survival was 16·1 months [95% confidence interval (CI); 10·9-22·5 months], while the median overall survival was 27·6 months (95% CI; 16·8-36·6 months). Only the beta-2 microglobulin level at protocol entry correlated with a better survival (P = 0·047). These observations compare favourably with other 2- and 3- drug combinations for relapsed/refractory myeloma, and suggest that CPR should be evaluated further in the setting of relapsed/refractory disease, or in newly diagnosed patients. AB - This single institution, open label Phase I-II dose escalation trial evaluated the safety and efficacy of the combination of lenalidomide (Revlimid®), cyclophosphamide and prednisone (CPR) in patients with relapsed/refractory multiple myeloma. The maximal administered dose of CPR consisted of cyclophosphamide 300 mg/m2 on day 1, 8, and 15, lenalidomide 25 mg on d 1-21 and prednisone 100 mg every other day in a 28-d cycle. Between November 2007 and June 2009, 32 patients were entered in cohorts of three at three dose levels. The median age was 64 years, 59% were male, with a median two prior regimens. Responding patients could stay on treatment until progression. The full-dose CPR regimen produced no dose-limiting toxicity and was delivered for a median of 16 months (3·5-65 months) with acceptable safety and tolerance. The overall response rate (≥ partial response) was 94% at a median follow up of 28 months. The median progression-free survival was 16·1 months [95% confidence interval (CI); 10·9-22·5 months], while the median overall survival was 27·6 months (95% CI; 16·8-36·6 months). Only the beta-2 microglobulin level at protocol entry correlated with a better survival (P = 0·047). These observations compare favourably with other 2- and 3- drug combinations for relapsed/refractory myeloma, and suggest that CPR should be evaluated further in the setting of relapsed/refractory disease, or in newly diagnosed patients. KW - Cyclophosphamide KW - Lenalidomide KW - Prednisone KW - Refractory multiple myeloma KW - Relapsed U2 - 10.1111/bjh.13100 DO - 10.1111/bjh.13100
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,713
[ 128000, 31833, 358, 76644, 9269, 315, 21308, 44448, 385, 764, 24527, 66796, 11, 4255, 26209, 606, 323, 2479, 278, 307, 316, 579, 369, 279, 6514, 315, 6978, 449, 1375, 9381, 323, 19914, 2992, 5361, 856, 301, 7942, 198, 8161, 3458, 469, 13, 57921, 346, 11, 84738, 20459, 7141, 16222, 10118, 11, 469, 939, 95517, 480, 13, 362, 2002, 2642, 84, 11, 33412, 473, 13, 11641, 21198, 11419, 752, 14151, 11, 11291, 7568, 3817, 11, 46993, 25507, 11, 88252, 278, 735, 3178, 2171, 72, 11, 15466, 432, 13, 43342, 4317, 301, 11, 85252, 1183, 664, 301, 198, 2028, 3254, 15244, 11, 1825, 2440, 28673, 358, 76644, 19660, 71389, 9269, 26126, 279, 7296, 323, 41265, 315, 279, 10824, 315, 2479, 278, 307, 316, 579, 320, 37284, 4763, 307, 12175, 705 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 31833, 358, 76644, 9269, 315, 21308, 44448, 385, 764, 24527, 66796, 11, 4255, 26209, 606, 323, 2479, 278, 307, 316, 579, 369, 279, 6514, 315, 6978, 449, 1375, 9381, 323, 19914, 2992, 5361, 856, 301, 7942, 198, 8161, 3458, 469, 13, 57921, 346, 11, 84738, 20459, 7141, 16222, 10118, 11, 469, 939, 95517, 480, 13, 362, 2002, 2642, 84, 11, 33412, 473, 13, 11641, 21198, 11419, 752, 14151, 11, 11291, 7568, 3817, 11, 46993, 25507, 11, 88252, 278, 735, 3178, 2171, 72, 11, 15466, 432, 13, 43342, 4317, 301, 11, 85252, 1183, 664, 301, 198, 2028, 3254, 15244, 11, 1825, 2440, 28673, 358, 76644, 19660, 71389, 9269, 26126, 279, 7296, 323, 41265, 315, 279, 10824, 315, 2479, 278, 307, 316, 579, 320, 37284, 4763, 307, 12175, 705, -100 ]
Hydaticus arabicus är en skalbaggsart som beskrevs av Guignot 1951. Hydaticus arabicus ingår i släktet Hydaticus och familjen dykare. Inga underarter finns listade i Catalogue of Life. Källor Dykare arabicus
{ "redpajama_set_name": "RedPajamaWikipedia" }
4,001
[ 128000, 31916, 67, 780, 355, 52412, 59344, 19106, 665, 42913, 21946, 5981, 472, 1794, 9234, 74, 7430, 82, 1860, 4673, 625, 354, 220, 6280, 16, 13, 10320, 67, 780, 355, 52412, 59344, 6892, 18382, 602, 1776, 2357, 5964, 295, 10320, 67, 780, 355, 12218, 44526, 24041, 14282, 74, 548, 13, 763, 6885, 1234, 5408, 74165, 1160, 1037, 602, 32321, 361, 315, 9601, 382, 42, 33351, 269, 4815, 35, 73640, 548, 198, 277, 370, 59344, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 31916, 67, 780, 355, 52412, 59344, 19106, 665, 42913, 21946, 5981, 472, 1794, 9234, 74, 7430, 82, 1860, 4673, 625, 354, 220, 6280, 16, 13, 10320, 67, 780, 355, 52412, 59344, 6892, 18382, 602, 1776, 2357, 5964, 295, 10320, 67, 780, 355, 12218, 44526, 24041, 14282, 74, 548, 13, 763, 6885, 1234, 5408, 74165, 1160, 1037, 602, 32321, 361, 315, 9601, 382, 42, 33351, 269, 4815, 35, 73640, 548, 198, 277, 370, 59344, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Soak the black rice overnight in cold water. Drain and place rice in a heatproof bowl and add ¾ cup of water and ¼ teaspoon of salt. Place the bowl in a larger pot (double boiler) with a lid and steam for up to an hour, or until rice is tender. Mix together the coconut, sesame seeds, ½ teaspoon of salt, teriyaki sauce and 2 tbsp brown sugar together in a small bowl, then mix in with the cooked rice and serve.
{ "redpajama_set_name": "RedPajamaC4" }
8,951
[ 128000, 4516, 587, 279, 3776, 20228, 25402, 304, 9439, 3090, 13, 62368, 323, 2035, 20228, 304, 264, 8798, 16157, 19763, 323, 923, 220, 68496, 10747, 315, 3090, 323, 220, 42973, 42384, 315, 12290, 13, 11004, 279, 19763, 304, 264, 8294, 3419, 320, 4429, 28725, 8, 449, 264, 27431, 323, 20930, 369, 709, 311, 459, 6596, 11, 477, 3156, 20228, 374, 28682, 627, 59183, 3871, 279, 34557, 11, 92223, 19595, 11, 220, 27154, 42384, 315, 12290, 11, 2024, 16618, 14966, 19737, 323, 220, 17, 64975, 14198, 13465, 3871, 304, 264, 2678, 19763, 11, 1243, 6651, 304, 449, 279, 30205, 20228, 323, 8854, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 4516, 587, 279, 3776, 20228, 25402, 304, 9439, 3090, 13, 62368, 323, 2035, 20228, 304, 264, 8798, 16157, 19763, 323, 923, 220, 68496, 10747, 315, 3090, 323, 220, 42973, 42384, 315, 12290, 13, 11004, 279, 19763, 304, 264, 8294, 3419, 320, 4429, 28725, 8, 449, 264, 27431, 323, 20930, 369, 709, 311, 459, 6596, 11, 477, 3156, 20228, 374, 28682, 627, 59183, 3871, 279, 34557, 11, 92223, 19595, 11, 220, 27154, 42384, 315, 12290, 11, 2024, 16618, 14966, 19737, 323, 220, 17, 64975, 14198, 13465, 3871, 304, 264, 2678, 19763, 11, 1243, 6651, 304, 449, 279, 30205, 20228, 323, 8854, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Mendoza, Argentina is best known for its charcoal-grilled meats and bustling wine industry. It's also home to the Universidad de Congreso, and one of API's amazing study abroad programs! Our Society, Development & Spanish Language program is a fantastic option for students who want a variety of classes and also want to hone in on their Spanish skills. In addition, this program includes internship opportunities, service-learning opportunities, AND an international excursion! You truly get the best of API's services and resources when you enroll in this program. Here's a little more about why we love it! Several studies have shown that fully immersing yourself in a language is the best way to pick it up! The Society, Development & Spanish Language Program allows some students to take classes alongside Argentinian students. Classes are taught in both Spanish and English. Although a language course is required, this program is open to all levels of Spanish speakers. Students take a language placement test to learn more about the best course options for them. In addition to Spanish, students have plenty of options when it comes to other coursework. Some of the classes offered include Latin American Studies, International Relations, Ecology, Creative Writing, Viticulture & Tourism, and more. Students interested in more hands-on experience can choose to add an internship or volunteer opportunity to their program. Universidad de Congreso offers an internship course for students. In addition, students can volunteer in areas such as wildlife protection as well as helping at-risk youth. There are so many ways to get involved in Mendoza! API is here to help you find those opportunities and get signed up, if you so choose. Because Mendoza is home to some of the world's most unique landscapes, this program is a truly fantastic option for anyone who likes nature! Our Resident Director, Rodrigo, takes students all over the area to see the best of Argentina's outdoors. These trips include a therapeutic visit to the Cacheuta Thermal Baths (where you can try mud therapy and soak in a natural sauna!), as well as a hiking trip to the nearby Andes Mountains. While on this program, some students also choose to travel to beautiful Iguazu Falls. Opportunities for sightseeing outside of API excursions are abundant, and students in this program tend to be adventurous. It is easy to find people willing to take fun weekend trips! International excursion included in program cost! A big concern for most students and their families is the cost of studying abroad. API is committed to remaining affordable while also giving students the best experience possible. While other study abroad providers may expect students to pay more if they want to visit other countries, API includes an international excursion to Santiago, Chile in the program cost. This is a really memorable excursion that many past students have said is their favorite part of the Mendoza program. It includes tours of Santiago plus a day trip (and paddle boarding, if the weather permits!) in nearby Valparaiso; a stunning town next to the Pacific Ocean. Students who enroll in our Mendoza program are also able to fully immerse themselves in Argentina's culture by living with a host family during the semester. The families provide 3 meals per day and laundry service. Also included is internet access. There is truly no better way to learn Spanish than to spend time in a Spanish-speaking country with local families! Some of our alumni have formed lifelong friendships with their host families. If you're curious about what living with a host family is like, one of our current student bloggers has shared more of her experience. Time is almost up to join us in Mendoza next semester! Applications are due December 1! Want to learn more? Read more about our program or give us a call at 1-800-844-4124. We can't wait to hear from you & we hope to see you next semester!
{ "redpajama_set_name": "RedPajamaC4" }
108
[ 128000, 44, 96528, 11, 32164, 374, 1888, 3967, 369, 1202, 61203, 25313, 4473, 63875, 323, 90256, 13378, 5064, 13, 1102, 596, 1101, 2162, 311, 279, 67613, 409, 7409, 50864, 11, 323, 832, 315, 5446, 596, 8056, 4007, 22917, 7620, 0, 5751, 13581, 11, 11050, 612, 15506, 11688, 2068, 374, 264, 14964, 3072, 369, 4236, 889, 1390, 264, 8205, 315, 6989, 323, 1101, 1390, 311, 52122, 304, 389, 872, 15506, 7512, 13, 763, 5369, 11, 420, 2068, 5764, 60859, 10708, 11, 2532, 71856, 10708, 11, 3651, 459, 6625, 95440, 0, 1472, 9615, 636, 279, 1888, 315, 5446, 596, 3600, 323, 5070, 994, 499, 52880, 304, 420, 2068, 13, 5810, 596, 264, 2697, 810, 922, 3249, 584, 3021, 433, 4999, 35862, 7978, 617, 6982, 430, 7373, 4998, 388, 287, 6261 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 44, 96528, 11, 32164, 374, 1888, 3967, 369, 1202, 61203, 25313, 4473, 63875, 323, 90256, 13378, 5064, 13, 1102, 596, 1101, 2162, 311, 279, 67613, 409, 7409, 50864, 11, 323, 832, 315, 5446, 596, 8056, 4007, 22917, 7620, 0, 5751, 13581, 11, 11050, 612, 15506, 11688, 2068, 374, 264, 14964, 3072, 369, 4236, 889, 1390, 264, 8205, 315, 6989, 323, 1101, 1390, 311, 52122, 304, 389, 872, 15506, 7512, 13, 763, 5369, 11, 420, 2068, 5764, 60859, 10708, 11, 2532, 71856, 10708, 11, 3651, 459, 6625, 95440, 0, 1472, 9615, 636, 279, 1888, 315, 5446, 596, 3600, 323, 5070, 994, 499, 52880, 304, 420, 2068, 13, 5810, 596, 264, 2697, 810, 922, 3249, 584, 3021, 433, 4999, 35862, 7978, 617, 6982, 430, 7373, 4998, 388, 287, 6261, -100 ]
The original scan for this article is at: https://chroniclingamerica.loc.gov/lccn/sn82015415/1909-08-11/ed-1/seq-7/. Hawaiian Star, August 11, 1909, page 7: SCHWERIN'S OBJECTIONS TO THE WIRELESS SAN FRANCISCO, August 4.--Jack Binns, the Cockney wireless operator who stuck pluckily to his apparatus during the trying hours following the collision of the big ocean liners Republic and Florida in the Atlantic ocean last January, and thus is said to have saved the lives of 1600 passengers, is no hero, never was and never will be, according to R. P. Schwerin, vice-president and general manager of the Pacific Mail Steamship Company. "The story that Binus operated his wireless machine by storage batteries is buncombe," declared Schwerin. "It requires the motors of a vessel to run the wireless telegraph; the motors require engines and the engines require steam. When the water struck the engine-room of the Republic the wireless machine was rendered useless and all the talk of Binns' heroic conduct was made out of whole cloth. WILL NOT INSTALL WIRELESS. In this wise Schwerin responds to the query: "Will the Pacific Mail Steamship Company install wireless telegraph mechanisms upon its transpacific liners to safeguard the lives of passengers?" The Pacific Mail vice-president declares with emphasis that wireless has not in any degree added to the safety of a single vessel, notwlthstanding the fact that reports of the extraordinary efficiency of this latest application of electrical energy are being published daily. Schwerin does not know of a single wreck that has been averted through the use of wireless mechanisms, and is of the opinion that the installation of the apparatus upon ocean-going vessels is for commercial purposes only. "The only effect the wireless had upon the Republic and Florida collision was to instill confidence in the passengers by bringing numerous steamships to the aid of the disabled vessels. It could not possibly have aided the Columbia, which went down a year ago. The Columbia was rammed by a steam schooner, and went down in eight minutes. In what way could the wireless have aided the passengers of that steamer? I do not know of a single instance in which the wireless has contributed to the safeguarding of any vessel. "It is true that we have considered installing wireless machines on the transpacific steamships, but the manufacturers have been unable to provide us with suitable apparatus. The present type, which is capable of sending a message only 500 miles, or possibly 1000 miles at night, is of no use to us. The manufacturers now advise us that they will furnish a two and one-half kilowatt machine which will send a message 1500 miles, but we, as a matter of fact, are waiting until they perfect a machine suitable to our needs. "If we were now to install wireless on our Pacific steamers it would be of no advantage to any one. There are stations here and at Hawaii. There is one in Japan which has only recently been opened to the use of merchant steamers and only for the receipt of messages of distress. There is no wireless station in China. Intercourse then naturally would be restricted to tho United States and the Hawaiian islands. On the Atlantic, where hundreds of business men are traveling in both directions and anxious to keep in touch with the stock markets and business conditions I consider the wireless important. But here our passengers are mostly in quest of health or of pleasure. "On the Atlantic the wireless has been immensely popularized by the passengers, who find amusement in communicating with friends on nearby steamers. It is a fine amusement to wire back and forth from the steamers, and I think the bulk of the wireless business on the Atlantic comes from such intercourse. I fail to see that the wireless in any way protects a vessel from disaster. "We don't care anything about reporting that our steamers are a few hundred miles out at sea or will arrive at a certain hour. They are run on railroad schedules, and their positions are determined with some degree of accuracy." All of which is intended by General Manager Schwerin as an answer to an oft-repeated inquiry as to whether the big Pacific Mail liners will ever be equipped with wireless apparatus. United States Early Radio History > Radio at Sea > Radio Use During Emergencies
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,884
[ 128000, 791, 4113, 8737, 369, 420, 4652, 374, 520, 25, 3788, 1129, 7562, 292, 2785, 15589, 3074, 15006, 14489, 13631, 641, 77, 72691, 18248, 10559, 868, 14, 7028, 24, 12, 2318, 12, 806, 14, 291, 12, 16, 14, 13565, 12, 22, 76969, 39, 37069, 1122, 7834, 11, 6287, 220, 806, 11, 220, 7028, 24, 11, 2199, 220, 22, 512, 50, 2198, 40451, 691, 13575, 43683, 36, 37868, 5257, 3247, 468, 7618, 38873, 198, 69791, 17067, 27267, 86527, 11, 6287, 220, 19, 33501, 33731, 30444, 4511, 11, 279, 35027, 3520, 21401, 5793, 889, 16075, 628, 1983, 1570, 311, 813, 41705, 2391, 279, 4560, 4207, 2768, 279, 19277, 315, 279, 2466, 18435, 96474, 5545, 323, 9784, 304, 279, 23179, 18435, 1566, 6186, 11, 323, 8617, 374, 1071, 311, 617, 6924 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 791, 4113, 8737, 369, 420, 4652, 374, 520, 25, 3788, 1129, 7562, 292, 2785, 15589, 3074, 15006, 14489, 13631, 641, 77, 72691, 18248, 10559, 868, 14, 7028, 24, 12, 2318, 12, 806, 14, 291, 12, 16, 14, 13565, 12, 22, 76969, 39, 37069, 1122, 7834, 11, 6287, 220, 806, 11, 220, 7028, 24, 11, 2199, 220, 22, 512, 50, 2198, 40451, 691, 13575, 43683, 36, 37868, 5257, 3247, 468, 7618, 38873, 198, 69791, 17067, 27267, 86527, 11, 6287, 220, 19, 33501, 33731, 30444, 4511, 11, 279, 35027, 3520, 21401, 5793, 889, 16075, 628, 1983, 1570, 311, 813, 41705, 2391, 279, 4560, 4207, 2768, 279, 19277, 315, 279, 2466, 18435, 96474, 5545, 323, 9784, 304, 279, 23179, 18435, 1566, 6186, 11, 323, 8617, 374, 1071, 311, 617, 6924, -100 ]
Muscomorpha é uma infraordem de dípteros da subordem Brachycera que inclui um número alargado e muito diverso de insectos. O agrupamento inclui a maior parte das espécies pertencentes ao agrupamento Brachycera, e, por consequência, a maioria das moscas conhecidas, entre as quais a mosca-doméstica, as moscas-da-fruta e as varejeiras. Neste grupo, as antenas são curtas, geralmente tri-segmentadas, com uma arista dorsal. Taxonomia A infraordem Cyclorrapha inclui as seguintes superfamílias: Secção Aschiza Superfamília Platypezoidea Superfamília Syrphoidea Secção Schizophora Subsecção Acalyptratae Superfamília Conopoidea Superfamília Tephritoidea Superfamília Nerioidea Superfamília Diopsoidea Superfamília Sciomyzoidea Superfamília Sphaeroceroidea Superfamília Lauxanioidea Superfamília Opomyzoidea Superfamília Ephydroidea Superfamília Carnoidea Subsecção Calyptratae Superfamília Muscoidea Superfamília Oestroidea Superfamília Hippoboscoidea Ligações externas The Tree of Life Web Project: Brachycera Brachycera
{ "redpajama_set_name": "RedPajamaWikipedia" }
6,559
[ 128000, 62698, 884, 269, 4055, 4046, 10832, 49276, 541, 336, 409, 102503, 418, 6398, 3067, 1207, 541, 336, 3320, 613, 3418, 2473, 1744, 18916, 2005, 4543, 31311, 453, 867, 2172, 384, 34850, 21797, 78, 409, 27080, 437, 13, 507, 40574, 455, 10628, 18916, 2005, 264, 46591, 20108, 6754, 16948, 20243, 552, 18713, 967, 21938, 15190, 40574, 455, 10628, 3320, 613, 3418, 2473, 11, 384, 11, 4247, 12777, 24625, 11, 264, 17154, 11015, 6754, 23518, 25295, 71583, 17449, 11, 9465, 439, 934, 2852, 264, 23518, 936, 14766, 87192, 3074, 11, 439, 23518, 25295, 66997, 51478, 16382, 384, 439, 348, 548, 3841, 51185, 13, 452, 18223, 38610, 11, 439, 3276, 28043, 30710, 44278, 300, 11, 98992, 12826, 2463, 7962, 9247, 11354, 11, 470, 10832, 802, 9265, 96146, 382, 32449, 14609 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 62698, 884, 269, 4055, 4046, 10832, 49276, 541, 336, 409, 102503, 418, 6398, 3067, 1207, 541, 336, 3320, 613, 3418, 2473, 1744, 18916, 2005, 4543, 31311, 453, 867, 2172, 384, 34850, 21797, 78, 409, 27080, 437, 13, 507, 40574, 455, 10628, 18916, 2005, 264, 46591, 20108, 6754, 16948, 20243, 552, 18713, 967, 21938, 15190, 40574, 455, 10628, 3320, 613, 3418, 2473, 11, 384, 11, 4247, 12777, 24625, 11, 264, 17154, 11015, 6754, 23518, 25295, 71583, 17449, 11, 9465, 439, 934, 2852, 264, 23518, 936, 14766, 87192, 3074, 11, 439, 23518, 25295, 66997, 51478, 16382, 384, 439, 348, 548, 3841, 51185, 13, 452, 18223, 38610, 11, 439, 3276, 28043, 30710, 44278, 300, 11, 98992, 12826, 2463, 7962, 9247, 11354, 11, 470, 10832, 802, 9265, 96146, 382, 32449, 14609, -100 ]
EDWARD ALLINGHAM BEBO Edward is an English given name. It is derived from the Anglo-Saxon name Ēadweard, composed of the elements ēad "wealth, fortune; prosperous" and weard "guardian, protector". Contents 1 History 2 Variant forms 3 People called Edward Medieval Modern Royalty and nobility Politicians Artists and intellectuals Sports. WebAfter you log in to Edward Jones Online Account Access, look for: The small, locked padlock on your web browser (most likely near the address bar). This indicates TLS technology is used. "https://" at the beginning of the website address, or URL. The "s" means you're on a secure site. "Auto Complete" Disabled. WebThe name Edward is primarily a male name of English origin that means Wealthy Guardian. Edward Cullen, fictional vampire from TWILIGHT novel series by Stephenie Meyer. People who like the name Edward also like: William, Oliver, Henry, Benjamin, Charles, Alexander, Jasper, Alice, Elizabeth, Charlotte, Amelia, Eleanor, Emma, Violet Names like Edward. Luke William Allingham. Dalton Daniel Allison. Reina E Allison Rakibe Bebo. Harper McCoy Bechtel Dexter Edward Robert Brooks. Blanchard. WebEdward VI, (born October 12, , London, England—died July 6, , London), king of England and Ireland from to Edward was King Henry VIII's only legitimate son; his mother, Henry's third wife, Jane Seymour, died 12 days after his birth. Although Edward has traditionally been viewed as a frail child who was never in good health, some recent . 1 e b Willson, Edward t 1 1 f. Turner, Jeptha Bebo, John. Bedford, E. Beno, John. Best, Charles Allingham, Andrew. 10 10 f. Allingliam, John. Luke William Allingham. Dalton Daniel Allison Thomas Edward Barnes. Darby E Barnett. Jonathan Barnett Becky Bebo. Harper McCoy Bechtel. Edward is an English given name. It is derived from the Anglo-Saxon name Ēadweard, composed of the elements ēad "wealth, fortune; prosperous" and weard "guardian, protector". Contents 1 History 2 Variant forms 3 People called Edward Medieval Modern Royalty and nobility Politicians Artists and intellectuals Sports. also known as: Donna Allington: Donna Allingham: Donna Bates: Robert Bebo. Bebo is a social networking website that helps you connect to your friends. Jan 16, · Edward, byname Edward the Elder, (died July 17, , Farndon on Dee, England), Anglo-Saxon king in England, the son of Alfred the Great. As ruler of the West Saxons, or Wessex, from to , Edward extended his authority over almost all of England by conquering areas that previously had been held by Danish invaders. Sep 10, · Who Was Edward VII? Edward VII became king upon the death of his mother, Queen Victoria, in A popular member of social and sporting circles, Edward VII strengthened England's ties with. Mar 31, · Edward VIII was a popular member of the British royal family and heir to the throne. In , then known as the Prince of Wales, Edward met and fell in love with American socialite Wallis Simpson. WebSep 10, · Who Was Edward VII? Edward VII became king upon the death of his mother, Queen Victoria, in A popular member of social and sporting circles, Edward VII strengthened England's ties with. robets robesch roberty edward murphy sr robertsonl roberts/rucker roberts becerramontile becerra fernandez de lara bebon bebo beberwyk bebee beazer. WebMar 31, · Edward VIII was a popular member of the British royal family and heir to the throne. In , then known as the Prince of Wales, Edward met and fell in love with American socialite Wallis Simpson. Web2 days ago · Prince Edward has always taken an interest in the arts and briefly worked in TV production, forming his own production company, Ardent Productions, and working on shows including "The Grand. After you log in to Edward Jones Online Account Access, look for: The small, locked padlock on your web browser (most likely near the address bar). This indicates TLS technology is used. "https://" at the beginning of the website address, or URL. The "s" means you're on a secure site. "Auto Complete" Disabled. WebOct 10, · Edward. masc. proper name, from Old English Eadweard, literally "prosperity-guard," from ead "wealth, prosperity" (see Edith) + weard "guardian" (see ward (n.)). Among the 10 most popular names for boys . Jack Anthony Edward J Anthony, Lillian R WW II Bebo, Dora E Married 1 Sep Bebo, Geraldine L WILLIAM ALLINGHAM. TheEviction with translations by Edward Walsh, of considerable spirit and faithfulness. So the neck o f oppression bebo wed. LAFRANCE ORDAZ DRYDEN EDWARD MATNEY STUDER ASHLAND AYTES BALBI BATA BEBO BECHEL East Brookline Street — Continued G Reddigan Edward 18 janitor 55 here h Eustis Street — Continued u Bebo Alice — f 83 housewife 26 34 Langdon v Lussier. blue exorcist episode english dub cartoon world|various testing metrics WebNov 16, · The 13th-century Plantagenet king Henry III named his son and successor after the saint, and seven subsequent kings of England were also named Edward. This is one of the few Old English names to be used throughout Europe (in various spellings). A famous bearer was the British composer Edward Elgar (). , Anttila, Ero Edward, PG, , Anttila, Evelyn, PG, 18 , Bebo, Geraldine L, MG, 5 , Trueman, Margaret Allingham, MG, OU fmt 2h 8, | VICI gry @ ars woh; g76s | L Hashes bebo Sooke Teg ati \u www.fczi.ru, www.fczi.ru| www.fczi.ru is a fair inquir in nearly all ae. Allen, Edward L, IV. CO Allen, Florett N Allingham, Robert 'Kent' K Cooper, William 'Bebo' E, III. Jan 16, · Edward (plural Edwards) (historical) A gold coin produced in the reign of King Edward. quotations. , James Hogg, Mary Burnet. It is indeed the same golden Edward, with three holes in it, with which I presented my Mary on her birthday, in her eighteenth year, to buy a new suit for the holidays. WebWelcome to Online Access. User ID. Show Password. Password. Save user ID on this device. Log In. Find your user ID | Reset your password. Homepage | Edward Jones Find a Financial Advisor Match with the financial advisor for you. While financial goals aren't achieved overnight, the right process and financial advisor can help. Get started Learn more about The Market and Investing Working with Edward Jones Choosing a Financial Advisor Inflation Tide May Be Coming. Rob Mellor, David White, Ann Schmiedekamp, Edward & James Hunt, shirin, Kbza, Nick Rougvie, itchyfrog, David Allingham, baz lalor, Simon Barrett. WebEdward is an English given name. It is derived from the Anglo-Saxon name Ēadweard, composed of the elements ēad "wealth, fortune; prosperous" and weard "guardian, protector". Contents 1 History 2 Variant forms 3 People called Edward Medieval Modern Royalty and nobility Politicians Artists and intellectuals . Eduardo Mendoza, Eduardo Moctezuma Matos, Edward Bourke, Edward Chandler Kath Smith, Katherine Bebo, Katherine Knotts, Katherine Roberts. (Edward Perronet) · All hail the power of Jesus' name! Goodbye, goodbye to Summer, For the Summer's nearly done (Allingham) · Goodbye, goodbye. Jackson works in literary programs at PEN America. Bebo. Bebo and I used to kick it. Then we didn't. But the fact. robinvale gazules fitzgibbon el eo en ei eh ek ej ee ed eg ef ea durairaj nsc stratemeyer sandwell nsf nsx zwengauer allingham steven sicheng awaji.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,447
[ 128000, 1507, 29266, 13398, 1753, 74593, 7354, 4782, 198, 85601, 374, 459, 6498, 2728, 836, 13, 1102, 374, 14592, 505, 279, 60259, 6354, 52936, 836, 10044, 240, 329, 906, 569, 11, 24306, 315, 279, 5540, 10044, 241, 329, 330, 31633, 11, 33415, 26, 71407, 1, 323, 584, 569, 330, 27190, 1122, 11, 63261, 3343, 36962, 220, 16, 11346, 220, 17, 40392, 7739, 220, 18, 9029, 2663, 22653, 78248, 18766, 11284, 10231, 323, 13348, 1429, 16307, 9818, 53204, 323, 83936, 13482, 13, 5000, 6153, 499, 1515, 304, 311, 22653, 12201, 8267, 8785, 9742, 11, 1427, 369, 25, 578, 2678, 11, 16447, 11262, 1039, 389, 701, 3566, 7074, 320, 3646, 4461, 3221, 279, 2686, 3703, 570, 1115, 15151, 42754, 5557, 374, 1511, 13, 330, 2485, 53236, 520, 279, 7314, 315 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1507, 29266, 13398, 1753, 74593, 7354, 4782, 198, 85601, 374, 459, 6498, 2728, 836, 13, 1102, 374, 14592, 505, 279, 60259, 6354, 52936, 836, 10044, 240, 329, 906, 569, 11, 24306, 315, 279, 5540, 10044, 241, 329, 330, 31633, 11, 33415, 26, 71407, 1, 323, 584, 569, 330, 27190, 1122, 11, 63261, 3343, 36962, 220, 16, 11346, 220, 17, 40392, 7739, 220, 18, 9029, 2663, 22653, 78248, 18766, 11284, 10231, 323, 13348, 1429, 16307, 9818, 53204, 323, 83936, 13482, 13, 5000, 6153, 499, 1515, 304, 311, 22653, 12201, 8267, 8785, 9742, 11, 1427, 369, 25, 578, 2678, 11, 16447, 11262, 1039, 389, 701, 3566, 7074, 320, 3646, 4461, 3221, 279, 2686, 3703, 570, 1115, 15151, 42754, 5557, 374, 1511, 13, 330, 2485, 53236, 520, 279, 7314, 315, -100 ]
← Movie Preview: Red State sickos serve up the "Red Pill" Documentary Preview: The War on a Christmas Crackpot — "'Twas the Fight Before Christmas" → Documentary Review: All Hail the Founding Foodie — "Julia" Posted on November 10, 2021 by Roger Moore The first time Julia Child appeared on TV, it was on "Educational Television" in Boston in the 1960s. She was to plug her culture-shifting new cookbook, "Mastering the Art of French Cooking." But what she was most concerned about was having something plugged in for her. She needed a hot plate, and the malnourished TV operation at WGBH wasn't sure they could provide one. It was for a book talk program, after all. But she insisted, in that bizarre, fluty/fruity, patrician-accented voice, that it was simply a must. And when she showed up, a lifelong member of the production crew there recalls, she made an omelet, live on the show. She brought the ingredients, her own pan and walked the program host and the viewing audience through the mesmerizing, mouth-watering process of how to make one perfectly. "No one had an omelet pan in greater Boston," that crew member marvels. And if Boston, of all places, didn't, how many could there have been in all of America? That's the country and culinary sophistication that Julia Child, ex-OSS agent-handler and office clerk, rare female graduate of Paris's famed Le Cordon Bleu cooking academy and new New Englander walked into on that set. A nation of tinfoil-covered TV dinners, SPAM hors d'oeuvres and "convenience" eaters was about to have its taste buds and its mind blown. That culture shock is the great take-away from the fun and fascinating new documentary, "Julia." Here's a film, opening in a nation overrun with cooking shows and entire TV networks devoted to food and a whole section of society labeling itself "foodies." And bless her big, butter-basted heart, here's the woman changed it. Interviewing friends and relatives, chefs from America and France and the World's Chef, Spanish-born José Andrés, professional acquaintances and TV cooks who followed her, "Julia" digs deeper into Child than the delightful, fictionalized "Julie & Julia" of a few years back, and captures a true pioneer in her element. Yes, we see that first omelet on the primitive TV of the Kennedy "Camelot" era. We see the accidents, the improvising, the unflappable chattering on that made her "inimitable," until, well everyone from comedians to cooks to anybody you met on the street could offer a fair imitation of PBS's first superstar. "Save the liver!" Yes, she stumbled into the Dan Aykroyd "Saturday Night Live" sketch in the '70s, laughed, and proceeded to show it to dinner guests on video for years afterward, a bit of gory, affectionate mockery she wholly embraced. The film starts with a bracing montage of Julia cooking-on-TV moments and quotes — "I find that if people are not very interested in food, I'm not very interested in them." — set to Jimi Hendrix's "Let Me Stand Next to Your Fire." It takes in her upper class upbringing in Pasadena, her Smith College education and the start of World War II. That's where she jumped into government clerical work, and eventually made her way to the OSS, which would morph into the CIA. That's where she met and fell in love with her greatest influence, the dashing epicurean Paul Child — her tour guide to the finer things, her champion, her TV cue card writer and biggest fan. Co-directors Betsy West and Julie Cohen are covering a lot of familiar ground in this Sony Classics/CNN Films production, so they make quick work of it. There was already a definitive PBS documentary, and "Julie & Julia" skipped through her life with no less than Meryl Streep putting everyone else's Julia Child impersonation to shame. The co-directors of "RBG" come closest to breaking new ground in recalling Child's old fashioned, ignorant homophobia, something she (like Fred Rogers, as we saw in his documentary) abandoned the moment she learned better. But even Child's twilight years — bristling at the "farm to table" fuss of those who followed her, refusing to slow down or give up her various TV gigs, her battles with PBS, which took her for granted in ways they never did her fellow Founding Icon, Mister Rogers — have a triumphant air as showcased here. Here was a "broad" with moxie, staying power and charisma. There would be no dimming of the light, just an ABC's "Good Morning, America" gig, endless chat show appearances and one last PBS series with Jacques Pepin as a victory lap for the Woman Who Changed Eating in America when no one thought that could be done. Rating: PG-13 for brief strong language/sexual reference, and some thematic elements Cast: Julia Child, José Andrés, Ina Garten, Danièle Mazet-Delpeuch, Jacques Pepin, Charles Gibson, Ruth Reichl Credits: Directed by Julie Cohen and Betsy West. A Sony Pictures Classics release.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,271
[ 128000, 72958, 14270, 32341, 25, 3816, 3314, 14363, 437, 8854, 709, 279, 330, 6161, 35236, 702, 7676, 661, 32341, 25, 578, 5111, 389, 264, 10280, 56045, 19644, 2001, 7326, 51, 16514, 279, 19143, 13538, 10280, 1, 11651, 198, 7676, 661, 10506, 25, 2052, 473, 607, 279, 12595, 287, 12369, 648, 2001, 330, 29185, 689, 702, 17827, 389, 6841, 220, 605, 11, 220, 2366, 16, 555, 29607, 20832, 198, 791, 1176, 892, 40394, 9576, 9922, 389, 6007, 11, 433, 574, 389, 330, 98982, 1697, 41445, 1, 304, 10406, 304, 279, 220, 5162, 15, 82, 13, 3005, 574, 311, 20206, 1077, 7829, 7666, 18148, 502, 77204, 11, 330, 18532, 287, 279, 5277, 315, 8753, 57410, 1210, 2030, 1148, 1364, 574, 1455, 11920, 922, 574, 3515, 2555, 59329, 304, 369, 1077 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 72958, 14270, 32341, 25, 3816, 3314, 14363, 437, 8854, 709, 279, 330, 6161, 35236, 702, 7676, 661, 32341, 25, 578, 5111, 389, 264, 10280, 56045, 19644, 2001, 7326, 51, 16514, 279, 19143, 13538, 10280, 1, 11651, 198, 7676, 661, 10506, 25, 2052, 473, 607, 279, 12595, 287, 12369, 648, 2001, 330, 29185, 689, 702, 17827, 389, 6841, 220, 605, 11, 220, 2366, 16, 555, 29607, 20832, 198, 791, 1176, 892, 40394, 9576, 9922, 389, 6007, 11, 433, 574, 389, 330, 98982, 1697, 41445, 1, 304, 10406, 304, 279, 220, 5162, 15, 82, 13, 3005, 574, 311, 20206, 1077, 7829, 7666, 18148, 502, 77204, 11, 330, 18532, 287, 279, 5277, 315, 8753, 57410, 1210, 2030, 1148, 1364, 574, 1455, 11920, 922, 574, 3515, 2555, 59329, 304, 369, 1077, -100 ]
Over the last decades, phytodepuration has been considered an efficient technology to treat wastewaters. The present study reports a bench scale depuration assay of swine wastewater using Lemna minor. The highest observed growth rate obtained in swine wastewater was 3.1 ± 0.3 gDW m−2 day−1 and the highest nitrogen and phosphorus uptake were 140 mg N m−2 day−1 and 3.47 mg P m−2 day−1, respectively. The chemical oxygen demand removal efficiency in the swine wastewater assay was 58.9 ± 2.0%. Furthermore, the biomass valorisation by anaerobic co-digestion with swine wastewater was assessed. Results showed a clear improvement in specific methane production rate (around 40%) when compared to mono-substrate anaerobic digestion. The highest methane specific production, 131.0 ± 0.8 mL CH4 g−1 chemical oxygen demand, was obtained with a mixture containing 100 g of duckweed per liter of pre-treated swine wastewater. The water-nutrients-energy nexus approach showed to be promising for swine waste management. Keywords: Anaerobic co-digestion, Biogas, Biomass production, Duckweed, Lemna minor, Swine slurry.
{ "redpajama_set_name": "RedPajamaC4" }
8,664
[ 128000, 1959, 279, 1566, 11026, 11, 1343, 16820, 536, 79, 2060, 706, 1027, 6646, 459, 11297, 5557, 311, 4322, 41421, 365, 11796, 13, 578, 3118, 4007, 6821, 264, 13731, 5569, 2219, 2060, 65033, 315, 2064, 483, 77681, 1701, 48506, 3458, 9099, 13, 578, 8592, 13468, 6650, 4478, 12457, 304, 2064, 483, 77681, 574, 220, 18, 13, 16, 20903, 220, 15, 13, 18, 342, 55319, 296, 34363, 17, 1938, 34363, 16, 323, 279, 8592, 47503, 323, 33088, 30969, 69575, 1051, 220, 6860, 14060, 452, 296, 34363, 17, 1938, 34363, 16, 323, 220, 18, 13, 2618, 14060, 393, 296, 34363, 17, 1938, 34363, 16, 11, 15947, 13, 578, 11742, 24463, 7631, 17065, 15374, 304, 279, 2064, 483, 77681, 65033, 574, 220, 2970, 13, 24, 20903, 220, 17, 13, 15, 14697 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1959, 279, 1566, 11026, 11, 1343, 16820, 536, 79, 2060, 706, 1027, 6646, 459, 11297, 5557, 311, 4322, 41421, 365, 11796, 13, 578, 3118, 4007, 6821, 264, 13731, 5569, 2219, 2060, 65033, 315, 2064, 483, 77681, 1701, 48506, 3458, 9099, 13, 578, 8592, 13468, 6650, 4478, 12457, 304, 2064, 483, 77681, 574, 220, 18, 13, 16, 20903, 220, 15, 13, 18, 342, 55319, 296, 34363, 17, 1938, 34363, 16, 323, 279, 8592, 47503, 323, 33088, 30969, 69575, 1051, 220, 6860, 14060, 452, 296, 34363, 17, 1938, 34363, 16, 323, 220, 18, 13, 2618, 14060, 393, 296, 34363, 17, 1938, 34363, 16, 11, 15947, 13, 578, 11742, 24463, 7631, 17065, 15374, 304, 279, 2064, 483, 77681, 65033, 574, 220, 2970, 13, 24, 20903, 220, 17, 13, 15, 14697, -100 ]
Kevin has over 20 years of experience as a biologist and environmental scientist. He manages EOR's Iowa operations. He specializes in wetland science, wildlife biology, and environmental regulation including planning, permitting, reclamation, and mitigation. Kevin has extensive knowledge of the Clean Water Act, the National Environmental Policy Act, the Endangered Species Act, the Food Security Act (Farm Bill), and the Safe Water Drinking Act.
{ "redpajama_set_name": "RedPajamaC4" }
5,170
[ 128000, 48781, 706, 927, 220, 508, 1667, 315, 3217, 439, 264, 88704, 323, 12434, 28568, 13, 1283, 29972, 469, 878, 596, 21357, 7677, 13, 1283, 46672, 304, 14739, 1974, 8198, 11, 30405, 34458, 11, 323, 12434, 19812, 2737, 9293, 11, 62174, 11, 312, 34084, 11, 323, 66860, 13, 16768, 706, 16781, 6677, 315, 279, 9785, 10164, 3298, 11, 279, 5165, 25027, 11216, 3298, 11, 279, 4060, 97409, 51567, 3298, 11, 279, 12369, 8398, 3298, 320, 72094, 8766, 705, 323, 279, 23088, 10164, 83681, 3298, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 48781, 706, 927, 220, 508, 1667, 315, 3217, 439, 264, 88704, 323, 12434, 28568, 13, 1283, 29972, 469, 878, 596, 21357, 7677, 13, 1283, 46672, 304, 14739, 1974, 8198, 11, 30405, 34458, 11, 323, 12434, 19812, 2737, 9293, 11, 62174, 11, 312, 34084, 11, 323, 66860, 13, 16768, 706, 16781, 6677, 315, 279, 9785, 10164, 3298, 11, 279, 5165, 25027, 11216, 3298, 11, 279, 4060, 97409, 51567, 3298, 11, 279, 12369, 8398, 3298, 320, 72094, 8766, 705, 323, 279, 23088, 10164, 83681, 3298, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Since its founding in 1920, the League of Women Voters has studied and acted on public policy issues. League action is based on the positions that come from research, study and discussion. Over the years, the League has been engaged in policy issues such as ending child labor, insuring civil rights for all, establishing water rights, limiting nuclear proliferation, protecting the environment and keeping the vote open to all. The positions taken by the League at the local, state and national levels form a solid platform for action. 1970s: ERA, campaign finance reform and voting rights, League-hosted presidential debates, and men were welcomed in membership. Advocated for "Motor Voter" registration, health care and clean elections . . . and more issues to come! The League is organized like the three levels of government: National, State and Local.
{ "redpajama_set_name": "RedPajamaC4" }
8,384
[ 128000, 12834, 1202, 36330, 304, 220, 5926, 15, 11, 279, 9130, 315, 11215, 83822, 706, 20041, 323, 31532, 389, 586, 4947, 4819, 627, 71207, 1957, 374, 3196, 389, 279, 10093, 430, 2586, 505, 3495, 11, 4007, 323, 10430, 627, 1959, 279, 1667, 11, 279, 9130, 706, 1027, 17045, 304, 4947, 4819, 1778, 439, 13696, 1716, 9511, 11, 1672, 1711, 8431, 3268, 369, 682, 11, 31692, 3090, 3268, 11, 33994, 11499, 53840, 11, 22973, 279, 4676, 323, 10494, 279, 7055, 1825, 311, 682, 627, 791, 10093, 4529, 555, 279, 9130, 520, 279, 2254, 11, 1614, 323, 5426, 5990, 1376, 264, 6573, 5452, 369, 1957, 627, 4468, 15, 82, 25, 45120, 11, 4901, 17452, 15180, 323, 16043, 3268, 11, 9130, 39689, 291, 13621, 37635, 11, 323, 3026, 1051, 32069, 304 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 12834, 1202, 36330, 304, 220, 5926, 15, 11, 279, 9130, 315, 11215, 83822, 706, 20041, 323, 31532, 389, 586, 4947, 4819, 627, 71207, 1957, 374, 3196, 389, 279, 10093, 430, 2586, 505, 3495, 11, 4007, 323, 10430, 627, 1959, 279, 1667, 11, 279, 9130, 706, 1027, 17045, 304, 4947, 4819, 1778, 439, 13696, 1716, 9511, 11, 1672, 1711, 8431, 3268, 369, 682, 11, 31692, 3090, 3268, 11, 33994, 11499, 53840, 11, 22973, 279, 4676, 323, 10494, 279, 7055, 1825, 311, 682, 627, 791, 10093, 4529, 555, 279, 9130, 520, 279, 2254, 11, 1614, 323, 5426, 5990, 1376, 264, 6573, 5452, 369, 1957, 627, 4468, 15, 82, 25, 45120, 11, 4901, 17452, 15180, 323, 16043, 3268, 11, 9130, 39689, 291, 13621, 37635, 11, 323, 3026, 1051, 32069, 304, -100 ]
If you do not have the Khan Academy as one of your favorites in you browser, you will do yourself a real service by checking it out and adding it. Founded by a Salman Khan, a former hedge fund analyst, the Khan Academy is a non-profit online school dedicated to providing free education to anyone in the world. Mr. Khan and his team provide thousands of teaching videos and exercises to test knowledge. They have also developed tools that allow both teachers and students to learn smarter and get immediate feedback in order to track their progress through their coursework. The Khan Academy is accessible to all ages, levels of education, and areas of interest. I mention the Khan Academy now because there are now available videos about American civics that cover topics such as taxes, Medicare, debts and deficits, etc. Included under the American civics tab are two videos about government pensions that many readers may find interesting. Hopefully, they will continue to add more and get into more advanced topics of pension accounting and actuarial science.
{ "redpajama_set_name": "RedPajamaC4" }
5,288
[ 128000, 2746, 499, 656, 539, 617, 279, 25273, 16192, 439, 832, 315, 701, 27672, 304, 499, 7074, 11, 499, 690, 656, 6261, 264, 1972, 2532, 555, 13598, 433, 704, 323, 7999, 433, 13, 78811, 555, 264, 69743, 25273, 11, 264, 4846, 42766, 3887, 18738, 11, 279, 25273, 16192, 374, 264, 2536, 28926, 2930, 2978, 12514, 311, 8405, 1949, 6873, 311, 5606, 304, 279, 1917, 13, 4491, 13, 25273, 323, 813, 2128, 3493, 9214, 315, 12917, 6946, 323, 23783, 311, 1296, 6677, 13, 2435, 617, 1101, 8040, 7526, 430, 2187, 2225, 13639, 323, 4236, 311, 4048, 47578, 323, 636, 14247, 11302, 304, 2015, 311, 3839, 872, 5208, 1555, 872, 75533, 13, 578, 25273, 16192, 374, 15987, 311, 682, 17051, 11, 5990, 315, 6873, 11, 323, 5789, 315, 2802, 627 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2746, 499, 656, 539, 617, 279, 25273, 16192, 439, 832, 315, 701, 27672, 304, 499, 7074, 11, 499, 690, 656, 6261, 264, 1972, 2532, 555, 13598, 433, 704, 323, 7999, 433, 13, 78811, 555, 264, 69743, 25273, 11, 264, 4846, 42766, 3887, 18738, 11, 279, 25273, 16192, 374, 264, 2536, 28926, 2930, 2978, 12514, 311, 8405, 1949, 6873, 311, 5606, 304, 279, 1917, 13, 4491, 13, 25273, 323, 813, 2128, 3493, 9214, 315, 12917, 6946, 323, 23783, 311, 1296, 6677, 13, 2435, 617, 1101, 8040, 7526, 430, 2187, 2225, 13639, 323, 4236, 311, 4048, 47578, 323, 636, 14247, 11302, 304, 2015, 311, 3839, 872, 5208, 1555, 872, 75533, 13, 578, 25273, 16192, 374, 15987, 311, 682, 17051, 11, 5990, 315, 6873, 11, 323, 5789, 315, 2802, 627, -100 ]
We asked sewing industry professionals to give us their reflections on 2015 and predictions for the year ahead. So far we've heard from Sara Lawson of Sew Sweetness and Mandy Leins of Mandalei Quilts. Next up is Jenny Rushmore of Cashmerette and Cashmerette Patterns, co-founder of the Curvy Sewing Collective. Jenny's new Cashmerette Patterns are the first line specifically designed for curves, in sizes 12 – 28, and cup sizes C – H. Jenny: This was the year of people trying traditionally "difficult" garment sewing. Particular stand-outs were the popularity of the Closet Case Files Ginger Jeans— I live in mine!– and the rise of bra-making, spurred on by the fantastic modern bra designs of Orange Lingerie. Jenny: I absolutely love listening to podcasts, and always have one on when I'm sewing. This year, I've been listening to even more sewing podcasts. In particular, I love the new Seamwork Radio podcast from Colette Patterns (I was the first guest!) and Abby Glassenberg's While She Naps podcast. SMS: Who do you think are rising stars in the industry? Jenny: I'm continually impressed by the new independent pattern designers, like Kelli Ward of True Bias and Heather Lou of Closet Case Files. They're filling niches that were previously under-served in the sewing community and sparking a lot of love! SMS: What did you do this year that you're most proud of? Jenny: I launched my own pattern company, Cashmerette Patterns! For years I've been dreaming of patterns that would fit and suit my curvy body, and to not have to do endless adjustments any more. I decided that maybe I was the person to do something about it, and now I have a line of patterns that are designed for curves, in sizes 12 – 28, and cup sizes C – H. Say goodbye to Full Bust Adjustments! SMS: What can we expect from you in 2016? Any big projects, life changes or goals you can share? Jenny: I'm looking forward to launching more curve-friendly patterns and figuring out other ways I can help women learn to be more confident through sewing.
{ "redpajama_set_name": "RedPajamaC4" }
4,767
[ 128000, 1687, 4691, 52319, 5064, 15749, 311, 3041, 603, 872, 63851, 389, 220, 679, 20, 323, 20492, 369, 279, 1060, 8469, 13, 2100, 3117, 584, 3077, 6755, 505, 44020, 75951, 315, 50313, 27687, 2136, 323, 386, 13634, 2009, 1354, 315, 24789, 1604, 72, 3489, 321, 2641, 13, 9479, 709, 374, 52179, 35175, 6518, 315, 23139, 1195, 6672, 323, 23139, 1195, 6672, 63823, 11, 1080, 36927, 315, 279, 13182, 14029, 50313, 287, 60018, 13, 52179, 596, 502, 23139, 1195, 6672, 63823, 527, 279, 1176, 1584, 11951, 6319, 369, 37033, 11, 304, 12562, 220, 717, 1389, 220, 1591, 11, 323, 10747, 12562, 356, 1389, 473, 627, 41, 18314, 25, 1115, 574, 279, 1060, 315, 1274, 4560, 36342, 330, 13798, 3951, 1, 60718, 52319, 13, 3744, 24553, 2559, 85075, 1051, 279 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1687, 4691, 52319, 5064, 15749, 311, 3041, 603, 872, 63851, 389, 220, 679, 20, 323, 20492, 369, 279, 1060, 8469, 13, 2100, 3117, 584, 3077, 6755, 505, 44020, 75951, 315, 50313, 27687, 2136, 323, 386, 13634, 2009, 1354, 315, 24789, 1604, 72, 3489, 321, 2641, 13, 9479, 709, 374, 52179, 35175, 6518, 315, 23139, 1195, 6672, 323, 23139, 1195, 6672, 63823, 11, 1080, 36927, 315, 279, 13182, 14029, 50313, 287, 60018, 13, 52179, 596, 502, 23139, 1195, 6672, 63823, 527, 279, 1176, 1584, 11951, 6319, 369, 37033, 11, 304, 12562, 220, 717, 1389, 220, 1591, 11, 323, 10747, 12562, 356, 1389, 473, 627, 41, 18314, 25, 1115, 574, 279, 1060, 315, 1274, 4560, 36342, 330, 13798, 3951, 1, 60718, 52319, 13, 3744, 24553, 2559, 85075, 1051, 279, -100 ]
Spanish village Watch the video > The Poble Espanyol Built for the 1929 International Exhibition, the spanish village (Poble Espanyol) was created from the desire to concentrate the soul of Spain in a single space. Today most of its constructions remain intact and are scale reproductions of buildings, squares and streets of different regions of Spain. Strolling through Poble Espanyol you'll discover not only buildings, but also artisans you can watch live as they work, as well as viewing pieces of contemporary art by universal figures like Dalí, Picasso, Miró o Guinovart. And don't miss the new Feeling Spain audiovisual installations, which will take you on a virtual trip through the geography and the most authentic traditions of Spanish culture. With a varied programme of events for the family and adult public, and shops, workshops, bars and restaurants open every day, Poble Espanyol is packed with life 365 days a year. Family activities, shows, music, cuisine...Poble Espanyol has everything you need to enjoy, on your own or in company, a day in the open air in unbeatable surroundings, without leaving Barcelona. Spanish village (Poble Espanyol de Barcelona) in numbers full scale buildings visitors a year points of cutting-edge technology Its creators visited 1,600 towns and villages of the Iberian Peninsula and Southern Portugal to choose the buildings to be represented at Poble Espanyol? It was intended that Poble Espanyol would be demolished when the 1929 International Exhibition was over, but it continued to function thanks to its great success and the good critical reviews it got? Some scenes from Perfume – The story of a murderer, directed by Tom Tykwer and based on the book of the same name by Patrick Süskind, were filmed in Poble Espanyol? According to Michael Eisner, president of Walt Disney from 1984 to 2005, Poble Espanyol inspired the Disney theme parks?
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,485
[ 128000, 62897, 14458, 198, 14581, 279, 2835, 6235, 791, 393, 51093, 469, 1508, 88, 337, 198, 55400, 369, 279, 220, 5926, 24, 7327, 68033, 11, 279, 78132, 14458, 320, 47, 51093, 469, 1508, 88, 337, 8, 574, 3549, 505, 279, 12876, 311, 37455, 279, 13836, 315, 18157, 304, 264, 3254, 3634, 13, 11450, 1455, 315, 1202, 96939, 7293, 35539, 323, 527, 5569, 14843, 5247, 315, 14016, 11, 32440, 323, 14708, 315, 2204, 13918, 315, 18157, 13, 800, 16608, 1555, 393, 51093, 469, 1508, 88, 337, 499, 3358, 7142, 539, 1193, 14016, 11, 719, 1101, 100130, 499, 649, 3821, 3974, 439, 814, 990, 11, 439, 1664, 439, 20705, 9863, 315, 19225, 1989, 555, 20789, 12678, 1093, 29210, 2483, 11, 67283, 11, 14603, 1832, 297, 4673, 258, 869, 472, 13 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 62897, 14458, 198, 14581, 279, 2835, 6235, 791, 393, 51093, 469, 1508, 88, 337, 198, 55400, 369, 279, 220, 5926, 24, 7327, 68033, 11, 279, 78132, 14458, 320, 47, 51093, 469, 1508, 88, 337, 8, 574, 3549, 505, 279, 12876, 311, 37455, 279, 13836, 315, 18157, 304, 264, 3254, 3634, 13, 11450, 1455, 315, 1202, 96939, 7293, 35539, 323, 527, 5569, 14843, 5247, 315, 14016, 11, 32440, 323, 14708, 315, 2204, 13918, 315, 18157, 13, 800, 16608, 1555, 393, 51093, 469, 1508, 88, 337, 499, 3358, 7142, 539, 1193, 14016, 11, 719, 1101, 100130, 499, 649, 3821, 3974, 439, 814, 990, 11, 439, 1664, 439, 20705, 9863, 315, 19225, 1989, 555, 20789, 12678, 1093, 29210, 2483, 11, 67283, 11, 14603, 1832, 297, 4673, 258, 869, 472, 13, -100 ]
Huawei Y5 es un teléfono inteligente de la compañía de telecomunicaciones china Huawei. El lanzamiento del teléfono inteligente funcionó bajo el control del sistema operativo de Google Android 5.1 Lollipop. El dispositivo ha sido equipado con comunicación 4G LTE. El teléfono inteligente tiene un chipset Qualcomm MSM8909 Snapdragon 210, un procesador de cuatro núcleos, (cada núcleo funciona a una frecuencia de 1,1 Ghz), y el chip de gráficos Adreno 306 la batería reemplazable de polímero de litio tiene una capacidad de 2000 mAh. Además el Huawei Y5 tiene un acelerómetro incorporado. Esta equipado con dispositivo de lector de tarjetas de memoria microSD. El teléfono tiene una pantalla táctil de TFT LCD capacitiva con una diagonal de 4,5 y una resolución de 480 x 854 píxeles. Enlaces externos Teléfonos inteligentes Teléfonos móviles Huawei Teléfonos móviles introducidos en 2015 Dispositivos Android
{ "redpajama_set_name": "RedPajamaWikipedia" }
9,587
[ 128000, 82478, 38685, 816, 20, 1560, 653, 4194, 23774, 73497, 90745, 6960, 4194, 451, 1208, 64403, 7583, 4194, 451, 60505, 3609, 12712, 33625, 4194, 82478, 38685, 13, 4072, 84246, 23666, 1624, 19227, 73497, 90745, 6960, 28963, 1832, 63512, 658, 2585, 1624, 29928, 2040, 29350, 4194, 451, 5195, 8682, 220, 20, 13, 16, 445, 90644, 13, 4072, 96099, 6520, 35071, 26458, 2172, 390, 46915, 5840, 4194, 19, 38, 52498, 13, 4194, 6719, 19227, 73497, 90745, 6960, 4194, 10462, 1994, 653, 92814, 62502, 68591, 21381, 24, 83155, 220, 8848, 11, 653, 29394, 5477, 409, 77108, 308, 6792, 9326, 437, 11, 320, 66, 2649, 308, 6792, 9326, 78, 87996, 264, 5203, 82205, 65072, 409, 220, 16, 11, 16, 24855, 89, 705, 379, 658, 16797, 409, 1099, 64501, 17038, 2467, 55983, 220 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 82478, 38685, 816, 20, 1560, 653, 4194, 23774, 73497, 90745, 6960, 4194, 451, 1208, 64403, 7583, 4194, 451, 60505, 3609, 12712, 33625, 4194, 82478, 38685, 13, 4072, 84246, 23666, 1624, 19227, 73497, 90745, 6960, 28963, 1832, 63512, 658, 2585, 1624, 29928, 2040, 29350, 4194, 451, 5195, 8682, 220, 20, 13, 16, 445, 90644, 13, 4072, 96099, 6520, 35071, 26458, 2172, 390, 46915, 5840, 4194, 19, 38, 52498, 13, 4194, 6719, 19227, 73497, 90745, 6960, 4194, 10462, 1994, 653, 92814, 62502, 68591, 21381, 24, 83155, 220, 8848, 11, 653, 29394, 5477, 409, 77108, 308, 6792, 9326, 437, 11, 320, 66, 2649, 308, 6792, 9326, 78, 87996, 264, 5203, 82205, 65072, 409, 220, 16, 11, 16, 24855, 89, 705, 379, 658, 16797, 409, 1099, 64501, 17038, 2467, 55983, 220, -100 ]
ERCOT stakeholders meet regularly in a number of forums to discuss and develop Protocols and procedures that govern the ERCOT System and its wholesale and retail markets. In the ERCOT stakeholder process – from working groups, task forces, and subcommittees, to the Technical Advisory Committee and the ERCOT Board of Directors – Market Participants, along with ERCOT Staff, work together to ensure a reliable bulk electric system and equitable access to the ERCOT markets. For more information on each of the stakeholder bodies, including specific procedures, subscription email lists, and seated representatives, please visit the specific page.
{ "redpajama_set_name": "RedPajamaC4" }
6,887
[ 128000, 28534, 1831, 39210, 3449, 15870, 304, 264, 1396, 315, 25907, 311, 4358, 323, 2274, 11970, 22792, 323, 16346, 430, 2633, 279, 57152, 1831, 744, 323, 1202, 35557, 323, 11040, 11987, 13, 763, 279, 57152, 1831, 18783, 4346, 1920, 1389, 505, 3318, 5315, 11, 3465, 8603, 11, 323, 1207, 17869, 30900, 11, 311, 279, 27766, 45013, 10554, 323, 279, 57152, 1831, 8925, 315, 46085, 1389, 8152, 52878, 11, 3235, 449, 57152, 1831, 17381, 11, 990, 3871, 311, 6106, 264, 15062, 20155, 9249, 1887, 323, 77109, 2680, 311, 279, 57152, 1831, 11987, 13, 1789, 810, 2038, 389, 1855, 315, 279, 18783, 4346, 13162, 11, 2737, 3230, 16346, 11, 15493, 2613, 11725, 11, 323, 47413, 24005, 11, 4587, 4034, 279, 3230, 2199, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0 ]
[ 28534, 1831, 39210, 3449, 15870, 304, 264, 1396, 315, 25907, 311, 4358, 323, 2274, 11970, 22792, 323, 16346, 430, 2633, 279, 57152, 1831, 744, 323, 1202, 35557, 323, 11040, 11987, 13, 763, 279, 57152, 1831, 18783, 4346, 1920, 1389, 505, 3318, 5315, 11, 3465, 8603, 11, 323, 1207, 17869, 30900, 11, 311, 279, 27766, 45013, 10554, 323, 279, 57152, 1831, 8925, 315, 46085, 1389, 8152, 52878, 11, 3235, 449, 57152, 1831, 17381, 11, 990, 3871, 311, 6106, 264, 15062, 20155, 9249, 1887, 323, 77109, 2680, 311, 279, 57152, 1831, 11987, 13, 1789, 810, 2038, 389, 1855, 315, 279, 18783, 4346, 13162, 11, 2737, 3230, 16346, 11, 15493, 2613, 11725, 11, 323, 47413, 24005, 11, 4587, 4034, 279, 3230, 2199, 13, -100, -100, -100, -100, -100, -100, -100, -100 ]
Соколско друштво Крагујевац је спортско друштво витешког карактера основано 1907. године у Крагујевцу. Соколски покрет је покрет спортског карактера са идеолошком суштином, настао у Чешкој, одакле се проширио на друге словенске територије. Историјат Гимнастичка друштва Поклоници гимнастике у Крагујевцу 27. марта 1894. године оснивају Гимнастичко друштво Душан Силни, а 1905. године оснива се, на предлог угледних градских првака, Крагујевачко друштво за гимнастику. Крајем 1907. године на јавном часу, које је приредило Крагујевачко друштво за гимнастику, учествовали су и вежбачи Београдског сокола, што је убрзало прихватање соколске идеје у Крагујевцу. Крагујевачки Соко На ванредној скупштини Друштво мења име у Соко. Први председник новог Друштва био је дотадашњи председник Крагујевачког друштва за гимнастику, Коста Сретеновић, професор Гимназије, а први начелник Живан Маџаревић, учитељ гимнастике. Друштво је вежбало у једној великој шупи без таванице, а лети на пољани. Када је Коста Сретеновић прешао у Београд, 1909. године, на месту председника заменио га је капетан Михаило Мика Ковачевић, под чијим вођством Друштво постиже значајне резултате. Први сарадници били су му: генерал Миленко Варјачић, секретар суда Ђорђе Ђура Брзаковић, професор Михаило Лукић, учитељ Михаило Катић и професорка Зорица Дединац Ковачевић. Спортски рад са чланством био је на завидном нивоу а број чланова је растао. Капетан Ковачевић је и личним примером утицао на чланство, не само да предано вежбају, већ и да се у приватном животу владају соколски. Активна је била и његова супруга Зорка, чиме се указивало на потребу еманципације жена и њиховог укључивања у друштвени живот. Упоредо са пропагандом међу школском омладином, вршена је и пропаганда соколства међу женама - упис у Женски одбор. Током 1909. године Крагујевац постаје водећи град у витешким и националним манифестацијама. На крају 1910. године број чланова Друштва износио је: 155 чланова изнад 18 година, 82 вежбача, 26 подмладак вежбача од 14-18 година, 75 дечака од 7-14 година и 9 чланова стручног одбора. Дана 26. фебруара 1912. године у Београду, на Другој редовној скупштини предводничких одбора, за надзорника Шумадијске дивизије са седиштем у Крагујевцу изабран је начелник Соколског друштва у Крагујевцу, Јан Свобода, наставник гимнасике у Гимназији. Од септембра 1912. до децембра 1913. године, за време Балканских ратова, Друштво није радило. Скоро сви чланови управе и велики број старијих чланова вежбача имали су ратни распоред. Дана 2. марта 1914. године у Крагујевцу је одржана скупштина Савеза Соколских друштава Душан Силни. Због надахнутог патриотског говора, председник Крагујевачког соколског друштва, Михајло Ковачевић, је, након Сарајевског атентата, проглашен непријатељем Аустроугарске монархије. Он и Соколско друштво Крагујевац поменути су у меморандуму Бечке владе, у коме се за Сарајевски атентат окривљује Краљевина Србија. Поред њега окосницу тадашње управе чинила су и три официра који су били чланови организације Уједињење или смрт (Црна рука). За време Првог светског рата рад Друштва је био забрањен. После Првог светског рата рад Друштво је обновљен. 1929. године при Друштву су основана два одсека: позоришни и музички. Друштво је имало и своју књижницу. Дана 15. јуна 1930. године формиран је коњички одсек, а 16. отобра исте године основана је мачевалачка секција. На Божић 1931. године при Друштву је основано Лутково позориште. Соколско друштво Крагујевац-Матица 1932. године Друштво је мења име у Соколско друштво Крагујевац – Матица, јер се из њега издвојило Соколско друштво Крагујевац I. Старешине Соколско друштво Крагујевац – Матица били су: професори Стеван Нешић и Стеван Јовановић, судије Ђура Брзаковић и Драгутин Димитријевић Гуне и адвокат Драгољуб Миловановић Бена. На Видовдан 1932. године Друштво је обележило двадесетпетогодишњицу рада великом прославом. Напад Немачке на Краљвину Југославију означио је крај легалног деловања Соколске организације. 21. октобра 1941. године у Шумарицама, међу осталим Крагујевчанима, стрељани су и старешине Соколске жупе професор Милоје Павловић и Соколског друштва Крагујевац – Матица, Драгољуб Миловановић Бена. Током Другог светског рата чанови Друштва прикључују се антифашистичким покретима отпора, Југословенској војсци у отаџбини и партизанима. Приступање Равногорском покрету утицало је да након рата рад Друштва буде онемогућен. Соколско друштво Крагујевац I Соколско друштво Крагујевац I основано је 1932. године издвајањем из Соколског друштва Крагијевац. Деловало је у насељу Радничка колонија. Старешине су били: Милан Јовановић, генерал Божин Хаџи-Илић и учитељ Петар Јевђевић. И Соколско друштво Крагујевац I имало је у позоришни одсек и музичку секцију. Шумадијска соколска жупа Дана 16. јануара 1921. године формирана је Шумадијска соколска жупа са седиштем у Крагујевцу. 1929. године Шумадијска соколска жупа мења име у Соколска жупа Крагујевац. 1940. године у свом саставу имала је 21 друштво и 94 сеоске соколске чете. Срарешине су били Стеван Нешић, Милоје Павловић и Стева Јовановић. Шумадијска соколска жупа учествовала је на међународним соколским слетовима у Прагу 1926, 1932. и 1938. године и у Софији 1936. и 1939. године. Данас Године 1996, 55 година, на иницијативу Јевђе Јевђовића, из породице Јевђовић која је дала више истакнутих чланова Друштва, обновљен је рад Соколског друштва Крагујевац – Матица. Као правни следбеник Соколског друштва Душан Силни и Соколског друштва Крагујевац – Матица, 1999. године Друштво је званично регистровано у Министарству за омладину и спорт. Члан је Савеза Српски соко а обновљена је сарадња са чешким, словачким, руским, лужичкосрпским, словеначким Соколима. Најстарији члан тада обновљеног Друштва био је Танасије Ташко Голић, један од носилаца олимпијске бакље за Олимпијаду у Берлину 1936. године, који је пред Други светски рат био начелник Соколског друштва Крагујевац-Матица. Слетови и манифестације Дана 24. јуна/7. јула 1909. године јавни час у Београду, у оквиру припрема V Свесловенски Јуначко – Соколски слет. На Видовдан 1910. године. крагујевачко Друштво са београдским и пиротским представљало је Краљевину Србију на V Српском слету у сремској Раваници Дана 26. јуна 1910. године V слет Бугарских јунака и Словенских сокола у Софији Дана 5. септембра 1910. године прослава стогодишњице Варваринске битке Године 1911. Други свесоколски слет у Загребу. Дана 3. децембра. 1911. године одржано је Прво Соколско академско вече у просторијама Прве крагујевачке пивнце. Јавни час у Јагодини је одржан 3. и 4. јуна 1912. године. Године 1912. VI Свесловенски слет у Прагу – такмичарско одељење Крагујевачких сокола освојило је прво место у категорији гимнастичка врста. Године 1921. слет у Осијеку Године 1922. слет у Љубљани Године 1930. у Београду Соколски домови Акција за изградњу Соколског дома у Крагујевцу започела је пре Балканских ратова. Дом је завршен 1925. године (зграда данашњег Књажевско-српског театра). Други Соколски дом, данашња Соколана, подигнут је 1929. године као друштвени дом у новоизграђеном насељу Радничка колонија, највећем плански изграђеном насељу у држави, по угледу на немачка и енглеска насеља Евидентиран је као културно добро и под заштитом је Завода за заштиту споменика. Користило га је Соколско друштво Крагујевац I. Референце Литература Спољашње везе Zablude o kraljevskim sokolima Sokolski Savez Srbije Kratka istorija Sokolskog pokreta СОКОЛСКА ДРУШТВА Соколске организације Крагујевац
{ "redpajama_set_name": "RedPajamaWikipedia" }
4,518
[ 128000, 19871, 115291, 120134, 7952, 104711, 1830, 101450, 36479, 115466, 3865, 117356, 101878, 10589, 9015, 246, 1532, 84714, 103104, 120134, 7952, 104711, 1830, 101450, 5927, 27055, 12426, 117372, 100670, 123282, 58060, 1506, 101554, 106785, 220, 7028, 22, 13, 100739, 106159, 14257, 36479, 115466, 3865, 117356, 33742, 110800, 382, 19871, 115291, 80112, 100889, 101640, 9015, 246, 1532, 100889, 101640, 84714, 103104, 66144, 14837, 100670, 123282, 58060, 1506, 5524, 1506, 112141, 124015, 101098, 5524, 101455, 105558, 12507, 11, 13373, 102879, 1482, 14257, 100876, 47067, 48199, 117356, 11, 53419, 16248, 100536, 5524, 1532, 41291, 30480, 31203, 1482, 13373, 81842, 1532, 92207, 106903, 53671, 108291, 1840, 117356, 1532, 382, 31274, 102169, 1840, 117356, 8131, 271, 38214, 16494, 14525, 111786, 13433, 7952, 104711, 1830, 94538, 720, 17279, 15088, 3114, 102221, 15458, 25756, 16494 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 19871, 115291, 120134, 7952, 104711, 1830, 101450, 36479, 115466, 3865, 117356, 101878, 10589, 9015, 246, 1532, 84714, 103104, 120134, 7952, 104711, 1830, 101450, 5927, 27055, 12426, 117372, 100670, 123282, 58060, 1506, 101554, 106785, 220, 7028, 22, 13, 100739, 106159, 14257, 36479, 115466, 3865, 117356, 33742, 110800, 382, 19871, 115291, 80112, 100889, 101640, 9015, 246, 1532, 100889, 101640, 84714, 103104, 66144, 14837, 100670, 123282, 58060, 1506, 5524, 1506, 112141, 124015, 101098, 5524, 101455, 105558, 12507, 11, 13373, 102879, 1482, 14257, 100876, 47067, 48199, 117356, 11, 53419, 16248, 100536, 5524, 1532, 41291, 30480, 31203, 1482, 13373, 81842, 1532, 92207, 106903, 53671, 108291, 1840, 117356, 1532, 382, 31274, 102169, 1840, 117356, 8131, 271, 38214, 16494, 14525, 111786, 13433, 7952, 104711, 1830, 94538, 720, 17279, 15088, 3114, 102221, 15458, 25756, 16494, -100 ]
TSX-V: SNG The Atlantis Project consists of two prospecting permits covering 31,778 hectares on the east half of NTS Sheet 66H14. The property covers 21 square kilometres of highly prospective Archean mafic volcanic rocks which were first identified on Geological Survey of Canada maps published in 2002. The property is 55 km north-northwest of Agnico Eagle's Amaruq Deposit, currently being prepared for production. Amaruq in turn is 54 km north-northwest of the Third Portage and Vault Deposits. The Meadowbank and Vault Deposits at the Meadowbank Mine are hosted in a mixed succession of Archean metavolcanics and metasedimentary rocks whereas the Amaruq Deposit is hosted in Archean mafic and ultramafic rocks. For the complex as a whole, Agnico Eagle declared Proven and Probable Reserves as of December 31, 2017 of 24.771 Mt @ 3.40 g/t Aui. In the early 1990's, Comaplex Resources Ltd. discovered by prospecting the showings which became the Meadowbank, Vault and Amaruq Deposits. The volcanic outlier covered by the Atlantis Project was unknown at that time, appearing on a geological map in 2002 (Geological Survey of Canada Open File 4236). Nunavut Mining Recorder records show that the Atlantis Project area was on the eastern edge of a large block of prospecting permits granted to Uranium North from 2011 to 2013; no exploration appears to have been conducted in the immediate project area. Silver Range considers the Atlantis Project to be highly prospective to host economic gold mineralization given the proximity of the project to the Meadowbank Mine Complex and the fact that the target is underlain by the same rock types hosting the Amaruq Deposit. Silver Range intends to conduct preliminary prospecting, mapping and sampling at Atlantis during the coming summer exploration season. i Paquin Bilodeau, D. et al (2018) Technical Report on the Mineral Resources and Mineral Reserves at Meadowbank Gold Complex including the Amaruq Satellite Mine Development, Nunavut, Canada as at December 31, 2017. NI 43-101 Report prepared for Agnico Eagle Mines Ltd. Maps & Photos Tree River Yandle Noomut South Kitikmeot Gold Project Keep up to Date Subscribe to News Roundup 2021 - Request a Meeting © 2021 Silver Range Resources Ltd.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,860
[ 128000, 10155, 55, 20198, 25, 328, 6269, 198, 791, 88035, 5907, 17610, 315, 1403, 22199, 287, 29790, 18702, 220, 2148, 11, 23592, 81743, 389, 279, 11226, 4376, 315, 452, 10155, 28841, 220, 2287, 39, 975, 13, 578, 3424, 14861, 220, 1691, 9518, 52957, 315, 7701, 33547, 1676, 1557, 276, 296, 2642, 292, 67164, 23902, 902, 1051, 1176, 11054, 389, 80850, 24507, 315, 7008, 14370, 4756, 304, 220, 1049, 17, 13, 578, 3424, 374, 220, 2131, 13437, 10411, 5392, 2419, 11285, 315, 4701, 77, 4042, 36895, 596, 3383, 31244, 80, 49571, 11, 5131, 1694, 10235, 369, 5788, 13, 3383, 31244, 80, 304, 2543, 374, 220, 4370, 13437, 10411, 5392, 2419, 11285, 315, 279, 21530, 5896, 425, 323, 42497, 78150, 1220, 627, 791, 89842, 17469, 323, 42497, 78150, 1220, 520 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 10155, 55, 20198, 25, 328, 6269, 198, 791, 88035, 5907, 17610, 315, 1403, 22199, 287, 29790, 18702, 220, 2148, 11, 23592, 81743, 389, 279, 11226, 4376, 315, 452, 10155, 28841, 220, 2287, 39, 975, 13, 578, 3424, 14861, 220, 1691, 9518, 52957, 315, 7701, 33547, 1676, 1557, 276, 296, 2642, 292, 67164, 23902, 902, 1051, 1176, 11054, 389, 80850, 24507, 315, 7008, 14370, 4756, 304, 220, 1049, 17, 13, 578, 3424, 374, 220, 2131, 13437, 10411, 5392, 2419, 11285, 315, 4701, 77, 4042, 36895, 596, 3383, 31244, 80, 49571, 11, 5131, 1694, 10235, 369, 5788, 13, 3383, 31244, 80, 304, 2543, 374, 220, 4370, 13437, 10411, 5392, 2419, 11285, 315, 279, 21530, 5896, 425, 323, 42497, 78150, 1220, 627, 791, 89842, 17469, 323, 42497, 78150, 1220, 520, -100 ]
See all the Guitar Chord book & DVD publishers we stock below, and click to view the products from each brand. New to Guitar Jar Magazine? Visit the guitar magazine website to view a wide range of guitar lessons, reviews, articles and more. Follow us on Facebook and Twitter, or sign up to our Mailing List.
{ "redpajama_set_name": "RedPajamaC4" }
3,094
[ 128000, 10031, 682, 279, 47759, 921, 541, 2363, 612, 18584, 36717, 584, 5708, 3770, 11, 323, 4299, 311, 1684, 279, 3956, 505, 1855, 6883, 627, 3648, 311, 47759, 31651, 22168, 30, 19545, 279, 17418, 14756, 3997, 311, 1684, 264, 7029, 2134, 315, 17418, 18872, 11, 8544, 11, 9908, 323, 810, 627, 12763, 603, 389, 5690, 323, 6405, 11, 477, 1879, 709, 311, 1057, 386, 14612, 1796, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 10031, 682, 279, 47759, 921, 541, 2363, 612, 18584, 36717, 584, 5708, 3770, 11, 323, 4299, 311, 1684, 279, 3956, 505, 1855, 6883, 627, 3648, 311, 47759, 31651, 22168, 30, 19545, 279, 17418, 14756, 3997, 311, 1684, 264, 7029, 2134, 315, 17418, 18872, 11, 8544, 11, 9908, 323, 810, 627, 12763, 603, 389, 5690, 323, 6405, 11, 477, 1879, 709, 311, 1057, 386, 14612, 1796, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Please Click on the above picture to enter our home on the web. and A Crafty Dog Boutique- Featuring custom embroidery and handpainted items. Copyright 2000-2011 Shantelshelties.org, all rights reserved. Unauthorized copying, reproduction, republishing, posting, or duplicating of any of the material on this website is prohibited without express written permission from Shantelshelties.org. This website was created and is maintained by Designed By Serena. For more information about this website email: [email protected].
{ "redpajama_set_name": "RedPajamaC4" }
3,574
[ 128000, 5618, 9369, 389, 279, 3485, 6945, 311, 3810, 1057, 2162, 389, 279, 3566, 627, 438, 362, 24969, 88, 14588, 91217, 12, 52331, 2587, 85927, 323, 1450, 79, 31329, 3673, 627, 13857, 220, 1049, 15, 12, 679, 16, 1443, 519, 301, 939, 3903, 552, 2726, 11, 682, 3268, 4694, 13, 64202, 32139, 11, 39656, 11, 2109, 2600, 287, 11, 17437, 11, 477, 27444, 1113, 315, 904, 315, 279, 3769, 389, 420, 3997, 374, 27010, 2085, 3237, 5439, 8041, 505, 1443, 519, 301, 939, 3903, 552, 2726, 13, 1115, 3997, 574, 3549, 323, 374, 18908, 555, 48525, 3296, 92090, 13, 1789, 810, 2038, 922, 420, 3997, 2613, 25, 1446, 7304, 31, 939, 519, 301, 939, 3903, 552, 2726, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 5618, 9369, 389, 279, 3485, 6945, 311, 3810, 1057, 2162, 389, 279, 3566, 627, 438, 362, 24969, 88, 14588, 91217, 12, 52331, 2587, 85927, 323, 1450, 79, 31329, 3673, 627, 13857, 220, 1049, 15, 12, 679, 16, 1443, 519, 301, 939, 3903, 552, 2726, 11, 682, 3268, 4694, 13, 64202, 32139, 11, 39656, 11, 2109, 2600, 287, 11, 17437, 11, 477, 27444, 1113, 315, 904, 315, 279, 3769, 389, 420, 3997, 374, 27010, 2085, 3237, 5439, 8041, 505, 1443, 519, 301, 939, 3903, 552, 2726, 13, 1115, 3997, 574, 3549, 323, 374, 18908, 555, 48525, 3296, 92090, 13, 1789, 810, 2038, 922, 420, 3997, 2613, 25, 1446, 7304, 31, 939, 519, 301, 939, 3903, 552, 2726, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
MarxhausenTribute, a photo by Mal Dog on Flickr. Artist and professor Reinhold Marxhausen used to tell his students that they were tools in God's hands, and he'd ask them "How has God used you today?" If an artist has a good tool, he uses it a lot, to the point the tool becomes well-worn and very familiar. A tool is not made to just sit in a toolbox, ready to work, but not being used. One of my favorite Art professors, mentors, and inspirations. He passed away this weekend, after living with Alzheimer's since 1994. No one will ever be able to be as creative, light-hearted, and out-of-the-box as he was, but I keep his picture on my desk at school to remind me that my job is to help kids see the world in new ways.
{ "redpajama_set_name": "RedPajamaC4" }
9,334
[ 128000, 12331, 87, 77247, 51, 1936, 1088, 11, 264, 6685, 555, 8560, 14588, 389, 55458, 627, 41409, 323, 14561, 47169, 6416, 28187, 77247, 1511, 311, 3371, 813, 4236, 430, 814, 1051, 7526, 304, 4359, 596, 6206, 11, 323, 568, 4265, 2610, 1124, 330, 4438, 706, 4359, 1511, 499, 3432, 7673, 1442, 459, 10255, 706, 264, 1695, 5507, 11, 568, 5829, 433, 264, 2763, 11, 311, 279, 1486, 279, 5507, 9221, 1664, 2695, 1540, 323, 1633, 11537, 13, 362, 5507, 374, 539, 1903, 311, 1120, 2503, 304, 264, 68970, 11, 5644, 311, 990, 11, 719, 539, 1694, 1511, 627, 4054, 315, 856, 7075, 5277, 45724, 11, 76707, 11, 323, 12979, 811, 13, 1283, 5946, 3201, 420, 9178, 11, 1306, 5496, 449, 44531, 596, 2533, 220, 2550, 19, 627, 2822 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 12331, 87, 77247, 51, 1936, 1088, 11, 264, 6685, 555, 8560, 14588, 389, 55458, 627, 41409, 323, 14561, 47169, 6416, 28187, 77247, 1511, 311, 3371, 813, 4236, 430, 814, 1051, 7526, 304, 4359, 596, 6206, 11, 323, 568, 4265, 2610, 1124, 330, 4438, 706, 4359, 1511, 499, 3432, 7673, 1442, 459, 10255, 706, 264, 1695, 5507, 11, 568, 5829, 433, 264, 2763, 11, 311, 279, 1486, 279, 5507, 9221, 1664, 2695, 1540, 323, 1633, 11537, 13, 362, 5507, 374, 539, 1903, 311, 1120, 2503, 304, 264, 68970, 11, 5644, 311, 990, 11, 719, 539, 1694, 1511, 627, 4054, 315, 856, 7075, 5277, 45724, 11, 76707, 11, 323, 12979, 811, 13, 1283, 5946, 3201, 420, 9178, 11, 1306, 5496, 449, 44531, 596, 2533, 220, 2550, 19, 627, 2822, -100 ]
A Guatemalan circus worker's life has forever been changed. And not in a good way. Earlier this month, Cipriano Alvarez - a 55-year-old man in charge of feeding 13 circus tigers - was nearly mauled to death. While sticking his arms in the tiger enclosure to change the water, the animals attacked ripping off both of his arms before he could be rescued. Unfortunately, his arms were unable to be reattached. Mr. Alvarez took the job in order to earn some money to feed his family and now he may never be able to work again. This is just another example of how dangerous things can get when you put wild animals like tigers and people in close proximity. Last year a woman in the UK and a man in China both lost their lives after being attacked by tigers at a zoo. And tigers are routinely shot down after escaping their enclosures. The circus animals were being held in a Guatemala before they found a permanent home in Belize. If the circus had been in performing in Guatemala, it would have been illegal, that's because that nation, along with three other Central American countries including, Costa Rica, Panama, and El Salvador prohibit using wild animals in circuses. Their officials know that using animals in entertainment is not only cruel but dangerous, as Mr. Alvarez's story proves. Yet, Belize is one of the few countries in the region that still doesn't have a national ban against using animals in entertainment. But that can change. Belizean officials should not allow this circus or any other to perform inside their borders. Please sign the petition and encourage the Government of Belize to ban wild animal performances in circuses and any other type of entertainment.
{ "redpajama_set_name": "RedPajamaC4" }
7,204
[ 128000, 32, 4673, 38346, 33383, 68124, 12128, 596, 2324, 706, 16058, 1027, 5614, 13, 1628, 539, 304, 264, 1695, 1648, 13, 47993, 420, 2305, 11, 356, 575, 462, 5770, 77815, 482, 264, 220, 2131, 4771, 6418, 893, 304, 6900, 315, 26040, 220, 1032, 68124, 259, 33214, 482, 574, 7154, 60014, 839, 311, 4648, 627, 8142, 38072, 813, 11977, 304, 279, 52835, 58912, 311, 2349, 279, 3090, 11, 279, 10099, 18855, 78214, 1022, 2225, 315, 813, 11977, 1603, 568, 1436, 387, 45433, 13, 19173, 11, 813, 11977, 1051, 12153, 311, 387, 312, 68597, 627, 12555, 13, 77815, 3952, 279, 2683, 304, 2015, 311, 7380, 1063, 3300, 311, 5510, 813, 3070, 323, 1457, 568, 1253, 2646, 387, 3025, 311, 990, 1578, 627, 2028, 374, 1120, 2500, 3187, 315, 1268, 11660 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 32, 4673, 38346, 33383, 68124, 12128, 596, 2324, 706, 16058, 1027, 5614, 13, 1628, 539, 304, 264, 1695, 1648, 13, 47993, 420, 2305, 11, 356, 575, 462, 5770, 77815, 482, 264, 220, 2131, 4771, 6418, 893, 304, 6900, 315, 26040, 220, 1032, 68124, 259, 33214, 482, 574, 7154, 60014, 839, 311, 4648, 627, 8142, 38072, 813, 11977, 304, 279, 52835, 58912, 311, 2349, 279, 3090, 11, 279, 10099, 18855, 78214, 1022, 2225, 315, 813, 11977, 1603, 568, 1436, 387, 45433, 13, 19173, 11, 813, 11977, 1051, 12153, 311, 387, 312, 68597, 627, 12555, 13, 77815, 3952, 279, 2683, 304, 2015, 311, 7380, 1063, 3300, 311, 5510, 813, 3070, 323, 1457, 568, 1253, 2646, 387, 3025, 311, 990, 1578, 627, 2028, 374, 1120, 2500, 3187, 315, 1268, 11660, -100 ]
Physio Newmarket & St Heliers Our experienced team of physiotherapists in Newmarket & St Heliers will spend the time to ensure a correct initial diagnosis then provide the education needed to aid recovery. Stu Ross Stu completed his Bachelor of Health Science (Physiotherapy) in 2002 and Postgraduate Diploma in Musculoskeletal Manipulative Physiotherapy in 2012. Stu is the owner of Refine Health. He has been behind the wheel here for the past 8 years helping things run smoothly! He worked as physiotherapist for New Zealand Mens Hockey and Takapuna Premiere Rugby. He then spent five years working as a physiotherapist in London, which included a position at Tottenham Hotspur Football Club as the Academy physiotherapist. After this, he was a senior physiotherapist for Her Majesty's Defence Medical Rehabilitation Centre (Headley Court), rehabilitating defence force personel returning from Afghanistan and Iraq. Nick Ewart Nick qualified as a Physiotherapist here in Auckland before travelling to the University of Alberta in Canada where he gained his Masters degree, majoring in Sports Physiotherapy. He has since worked in private practice for over 20 years, and has also worked with a number of sports teams and organisations including the Auckland Cricket Team, the Auckland Rugby Union, New Zealand Cricket and the Ponsonby Rugby Club. Nick has a hands-on approach when his treating his patients, and has a particular interest in assisting his patients with gym-based strengthening and rehabilitation as they recover from their injury and return to full fitness. In his spare time Nick is a keen golfer, and exercises regularly at the Olympic Pools and Fitness Centre. Will Simpson Originally from Wellington, Will completed his training at the University of Otago and graduated in 2013. He has a strong interest in musculoskeletal rehabilitation and biomechanical optimization, helping clients to not only recover but improve in their chosen field. Will has a sporting history in football and track and field, competing both at a national and international level. Recently he has completed his SSI SCUBA divemaster training in Thailand while travelling around South East Asia in 2017. Pauline Thorp Pauline completed her BHSc physiotherapy degree in 2002 with a post graduate diploma in Acupuncture. She has worked in a range of Musculoskeltal physiotherapy clinics throughout the years and has a special interest in Clinical Pilates to help her clients reach their full potential. Pauline has a 'hands on' approach to treating her clients, with a combination of soft tissue techniques, mobilisation, strength and conditioning, and accupuncture to help them on their path to injury recovery. Pauline is an ex competitive swimmer, and over the past few years has competed at a national age group level in triathlon, Half Ironman and offroad adventure running races including the Tarawera 50km ultra. Kate Birks Kate completed her Physiotherapy training at The University of Nottingham in the UK and graduated in 2012. She has worked in private practices in the UK and with professionals and local sports clubs. Kate moved over to NZ in 2015 where she continued her passion for physio. She uses a 'hands on' approach combined with acupuncture, mobilisation techniques and strength & conditioning to achieve optimal results. Kate is trained in the Functional Movement Screen (FMS) and Y Balance Test which are specialised assessments aimed at identifying dysfunctional movement patterns. Kate has competed at National Level for athletics and enjoys snowboarding, crossfit, netball & the gym. Kate has run 2 marathons and competed at the Masters Games for swimming.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,977
[ 128000, 67171, 822, 1561, 19859, 612, 800, 16183, 4918, 198, 8140, 10534, 2128, 315, 4571, 822, 700, 391, 1705, 304, 1561, 19859, 612, 800, 16183, 4918, 690, 8493, 279, 892, 311, 6106, 264, 4495, 2926, 23842, 1243, 3493, 279, 6873, 4460, 311, 12576, 13654, 627, 626, 84, 21116, 198, 626, 84, 8308, 813, 42090, 315, 6401, 10170, 320, 67171, 822, 46755, 8, 304, 220, 1049, 17, 323, 3962, 28770, 77131, 304, 5444, 79134, 86255, 62011, 22948, 13101, 822, 46755, 304, 220, 679, 17, 13, 800, 84, 374, 279, 6506, 315, 8718, 483, 6401, 13, 1283, 706, 1027, 4920, 279, 13587, 1618, 369, 279, 3347, 220, 23, 1667, 10695, 2574, 1629, 39511, 4999, 1548, 6575, 439, 4571, 822, 700, 60329, 369, 1561, 17340, 24157, 41342, 323, 34390, 391, 8733 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 67171, 822, 1561, 19859, 612, 800, 16183, 4918, 198, 8140, 10534, 2128, 315, 4571, 822, 700, 391, 1705, 304, 1561, 19859, 612, 800, 16183, 4918, 690, 8493, 279, 892, 311, 6106, 264, 4495, 2926, 23842, 1243, 3493, 279, 6873, 4460, 311, 12576, 13654, 627, 626, 84, 21116, 198, 626, 84, 8308, 813, 42090, 315, 6401, 10170, 320, 67171, 822, 46755, 8, 304, 220, 1049, 17, 323, 3962, 28770, 77131, 304, 5444, 79134, 86255, 62011, 22948, 13101, 822, 46755, 304, 220, 679, 17, 13, 800, 84, 374, 279, 6506, 315, 8718, 483, 6401, 13, 1283, 706, 1027, 4920, 279, 13587, 1618, 369, 279, 3347, 220, 23, 1667, 10695, 2574, 1629, 39511, 4999, 1548, 6575, 439, 4571, 822, 700, 60329, 369, 1561, 17340, 24157, 41342, 323, 34390, 391, 8733, -100 ]
Mehrangarh Fort Mehrangarh Fort is an ancient royal fort with a splendid architecture and a diverse history. Located in the city of Jodhpur , it is one of Rajasthan's most magnificent royal forts, and covers a total area of 1200 acres. The fort complex is located on a hilltop which is about 122 metres above the ground level. Mehrangarh fort was built by a Rajput ruler called Rao Jodha in the year 1459 AD. Architecture/Structure Mehrangarh fort is spread over an area of 5 km or 1200 acres. It is built on a hill that is 125 m high and lies on the outskirts of Jodhpur city. This fort has a total of seven gates, each of which were built by different rulers. Its complex consists of various palaces, a museum, and some temple quarters. The main palaces inside Mehrangarh Fort include – Moti Mahal ("The Palace of Pearls") Phool Mahal ("The Palace of Flowers") Zenana Dude Takht Vilas Sheesh Mahal ("The Palace of Mirrors") Janki Mahal The museum inside the fort exhibits a rich collection of palanquins, musical instruments, royal cradles, costumes, arms, furniture and paintings belonging to the family of rulers who lived here through the years. The main temples inside this fort are - Chamundi Devi Mandir (dedicated to the famous Hindu Goddess Durga) and Nagnechiaji Mandir (dedicated to a Hindu Goddess called Kuldevi). The exterior of the fort is beautiful and spacious and offers a stunning panoramic view of the city of Jodhpur which, with its blue buildings appears like a lovely blue carpet laid at the foot of the hill. Additional Information for Visitors Mehrangarh Fort is open to visitors between 9 AM and 5.30 PM every day, on all days of the week. An entry fee of INR 100 per head is applicable for every Indian national (adult) visitor to this place, INR 50 for senior citizens and military personnel (Indian) and for foreigners (adult), the entrance fee applicable is INR 500 per head. Additional fees are applicable for camera (INR 100), video camera (INR 200), tour escort (INR 120) and audio guide (INR 120 - 180). Jodhpur is well connected to cities across India, and is also in close proximity to Jaipur which is connected to other parts of the world. The city can be reached by air, rail or road. By air – Mehrangarh Fort is around 9.5 kms away from Jodhpur's domestic airport. Visitors can reach this airport or the nearest international airport at Jaipur from any part of India or the world, and can hire a cab, bus or autorickshaw from here to reach - within - hour. By rail – The nearest railway station to Mehrangarh Fort is the Jodhpur Junction railway station which is 6 kms away. This can be reached from any city in India easily, and visitors can hire cab, bus or autorickshaw from here to reach the fort. By road – People can also travel to Jodhpur by road on bus, auto-rickshaw or cabs from nearby cities from neighbouring regions. Constructed by Rao Jodha in 1459, the Mehrangarh Fort sits like a crown on top of a 410feet high hill in Jodhpur. The majestic entrance of the fort has seven gates for specific purposes and beautiful palaces inside its premises. The fascinating history of the palace along with magnificent courtyards, galleries, and a museum that draws the attention of many visitors from around the world.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,204
[ 128000, 44, 56088, 526, 277, 71, 11246, 198, 44, 56088, 526, 277, 71, 11246, 374, 459, 14154, 30336, 12108, 449, 264, 70960, 18112, 323, 264, 17226, 3925, 13, 42867, 304, 279, 3363, 315, 622, 347, 21888, 324, 1174, 433, 374, 832, 315, 87440, 596, 1455, 41792, 30336, 75652, 11, 323, 14861, 264, 2860, 3158, 315, 220, 4364, 15, 27464, 627, 791, 12108, 6485, 374, 7559, 389, 264, 24898, 3565, 902, 374, 922, 220, 8259, 37356, 3485, 279, 5015, 2237, 627, 44, 56088, 526, 277, 71, 12108, 574, 5918, 555, 264, 26291, 631, 49080, 2663, 89000, 622, 347, 4317, 304, 279, 1060, 220, 9591, 24, 9827, 627, 92051, 14, 23807, 198, 44, 56088, 526, 277, 71, 12108, 374, 9041, 927, 459, 3158, 315, 220, 20, 13437, 477, 220, 4364 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 44, 56088, 526, 277, 71, 11246, 198, 44, 56088, 526, 277, 71, 11246, 374, 459, 14154, 30336, 12108, 449, 264, 70960, 18112, 323, 264, 17226, 3925, 13, 42867, 304, 279, 3363, 315, 622, 347, 21888, 324, 1174, 433, 374, 832, 315, 87440, 596, 1455, 41792, 30336, 75652, 11, 323, 14861, 264, 2860, 3158, 315, 220, 4364, 15, 27464, 627, 791, 12108, 6485, 374, 7559, 389, 264, 24898, 3565, 902, 374, 922, 220, 8259, 37356, 3485, 279, 5015, 2237, 627, 44, 56088, 526, 277, 71, 12108, 574, 5918, 555, 264, 26291, 631, 49080, 2663, 89000, 622, 347, 4317, 304, 279, 1060, 220, 9591, 24, 9827, 627, 92051, 14, 23807, 198, 44, 56088, 526, 277, 71, 12108, 374, 9041, 927, 459, 3158, 315, 220, 20, 13437, 477, 220, 4364, -100 ]
Jordan with his sister Ellie, seven, and mum Angela. A former Dundee United player who twice battled cancer is set to take part in a fund raising trek in memory of a friend. Jordan Moore, 22, was diagnosed with skin cancer at the age of just 19, limiting his playing time. He battled the disease during his time at Tannadice, having signed up to play for the Arabs in his teens. The club made the decision to release him in December two years ago after he had struggled to make an impact on the first team following his illness in 2014. He previously told the Tele he was now "concentrating on helping people". Now, he is set to take part in a charity event on Wednesday, where — along with friends — he will trek along the West Highland Way and round off the endeavour with a climb up Ben Nevis. The event, which will raise money for two charities — Teenage Cancer Trust and Cardiac Risk in the Young — is the brainchild of Jordan and is in honour of friend Phil O'Donnell. Speaking to the Tele, Jordan said: "I just want to help out and give back, after all the help and support I received. "Also, if we can create more awareness and get people to talk about it more, it will really help all the people affected by it — young people like me, who are diagnosed, need some help. "We start on Wednesday. Jackie McNamara, Simon Donnelly and Darren Jackson are all on board. "They also played with Phil as part of the team that stopped Rangers winning 10 in a row. "I've done a bit of training, so I'm really looking forward to it — we intend to run most of the West Highland Way. Last year, Jordan revealed to the Tele he had decided to hang up his boots and spoke of his fight. He said: "Football has been my whole life, so moving on from that now is incredibly tough. "I went straight up to Dundee to train full-time as soon as I left school aged 16. I loved my time in Dundee. It's a brilliant city to live in.
{ "redpajama_set_name": "RedPajamaC4" }
3,160
[ 128000, 71524, 449, 813, 13219, 89361, 11, 8254, 11, 323, 39959, 38243, 627, 32, 4846, 75015, 2176, 3723, 2851, 889, 11157, 75440, 9572, 374, 743, 311, 1935, 961, 304, 264, 3887, 19054, 45688, 304, 5044, 315, 264, 4333, 627, 71524, 20832, 11, 220, 1313, 11, 574, 29704, 449, 6930, 9572, 520, 279, 4325, 315, 1120, 220, 777, 11, 33994, 813, 5737, 892, 627, 1548, 75440, 279, 8624, 2391, 813, 892, 520, 350, 1036, 329, 560, 11, 3515, 8667, 709, 311, 1514, 369, 279, 58709, 304, 813, 27294, 627, 791, 6469, 1903, 279, 5597, 311, 4984, 1461, 304, 6790, 1403, 1667, 4227, 1306, 568, 1047, 28214, 311, 1304, 459, 5536, 389, 279, 1176, 2128, 2768, 813, 17563, 304, 220, 679, 19, 627, 1548, 8767, 3309, 279, 13875, 568, 574 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 71524, 449, 813, 13219, 89361, 11, 8254, 11, 323, 39959, 38243, 627, 32, 4846, 75015, 2176, 3723, 2851, 889, 11157, 75440, 9572, 374, 743, 311, 1935, 961, 304, 264, 3887, 19054, 45688, 304, 5044, 315, 264, 4333, 627, 71524, 20832, 11, 220, 1313, 11, 574, 29704, 449, 6930, 9572, 520, 279, 4325, 315, 1120, 220, 777, 11, 33994, 813, 5737, 892, 627, 1548, 75440, 279, 8624, 2391, 813, 892, 520, 350, 1036, 329, 560, 11, 3515, 8667, 709, 311, 1514, 369, 279, 58709, 304, 813, 27294, 627, 791, 6469, 1903, 279, 5597, 311, 4984, 1461, 304, 6790, 1403, 1667, 4227, 1306, 568, 1047, 28214, 311, 1304, 459, 5536, 389, 279, 1176, 2128, 2768, 813, 17563, 304, 220, 679, 19, 627, 1548, 8767, 3309, 279, 13875, 568, 574, -100 ]
Jimmy Sheirgill's Your Honor is one of the best OTT shows around 'Yahan par kpyi bhi farishta nahi hai' (No one is an angel out here) When Jimmy Sheirgill mouths this line somewhere in the middle of this well crafted 12 episode crime series currently streaming on Sony LIV, as a viewer you nod in approval. After all, as a 50 something judge who is peaking his career and is gearing up for that big seat there in the high court, he is not just believable but also righteous. However, all the value system starts crumbling down soon enough when his only son in the late teens [Pulkit Makol] ends up finding himself in a hit-n-run case. A number of players get involved. A CRPF officer [Varun Badola] who is carrying an emotional debt, a senior cop [Mita Vashisht] who is honest to the core but then doesn't mind bending for a larger cause, an insider gangster on the rise [Kunj Anand] who is more of a businessman than a criminal, a rustic outsider gangster [Yashpal Sharma] who doesn't allow his inferiority complex to come in the way of his big game-plan, an upstart lawyer [Parul Gulati] who wants to do everything as per the book and a granny [Suhasini Mulay] who has 'insaaf' in her blood. Well, with so many characters coming together, Your Honor – with a unique Ludhiana setting where Sikh as well as UP 'bhaiyaa' ganglords collide on a daily basis – is a thrilling drama with ample twists and turns galore. What starts off as a possible father-son tale with former trying to safeguard the interests of the latter turns out to be a far layered drama that one could have envisaged. In fact this is the best part of this E Niwas directed series, adapted from Israeli series Kvodo, as there are no predictable moments with the guessing game constantly on. What is particularly exciting is to see the supremely cold and manipulative, yet calculative and intelligent character brought to screen by Jimmy. He plays it subtle, which is a far cry from the character that he played in Rangbaaz Phir Se, raises his volume may be just twice in the series, and quietly goes about getting the job done. Of course, a lot of it is also due to the manner in which everything is written on paper. However, to bring it all on camera is a different ballgame altogether and this is where Jimmy brings to fore his experience of around 25 years. This is one of the major reasons why Your Honor stays on to be a cat and mouse game as Jimmy keeps spinning a web of lies and deceit in practically every episode. So whether it is Varun, his wife [Richa Pallod], Mita, Parul, Suhasini, Kunj or even other supportive characters played by Bikramjeet Kanwarpal [a rival judge] – just about no one is spared from the games he plays. Meanwhile, it's the game played by director E Niwas with the sequence of events that he has to hid disposal as well as the master twist that he brings towards the end that makes Your Honor super exciting from start to finish. Yes, for those used to witnessing the setting of a series in a Delhi or a Mumbai, a Ludhiana set up may seem a bit distant. Also, the manner in which Puklit's guilt keeps taking a toll on him every now and then seems way too stretched as well. Ditto about his interactions with his granny as well as the sports teacher [Taniya Kalra]. Moreover, as is the situation currently, no series can perhaps be made without liberal dose of cuss words and that's the case here as well. That said, it is still justified due to the crime setting. Thankfully though, there is zero nudity in the series, which is some mercy. The dialogues though are just right for the core plot of Your Honor and you particularly like the interrogation scenes, as well as the procedures followed with the nitty-gritty of the law explained well to the audiences and that too in s subtle way instead of being forcefully fed. This is also the key mainstay of Your Honor, which is that nothing is really forcefully fed to the audience. It all flows organically and though the middle portions of the series could have been a bit tighter, the performances (especially by Jimmy Sheirgill and Mita Vashisht) as well as the heart-stopping twist in the climax more than makes up for it all. One of the best OTT shows that is currently streaming today, Your Honor is Jimmy Sheirgill's own Drishyam. Rating: ***1/2 #YourHonor #OTT #JimmySheirgill Previous Breathe 2, Shakuntala Devi, Durgavati, Sherni, Chhori – Vikram Malhotra has 'abundant' line of films ahead for his Abundantia Entertainment Next When 'outsider' Kartik Aaryan managed to get connected to Shah Rukh Khan through Chak De! India girl Sagarika Ghatge
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,719
[ 128000, 86755, 3005, 404, 70, 484, 596, 4718, 43044, 374, 832, 315, 279, 1888, 8775, 51, 5039, 2212, 198, 6, 56, 22826, 1370, 597, 3368, 72, 293, 6151, 3117, 285, 76909, 308, 52206, 47151, 6, 320, 2822, 832, 374, 459, 34426, 704, 1618, 340, 4599, 28933, 3005, 404, 70, 484, 65609, 420, 1584, 15038, 304, 279, 6278, 315, 420, 1664, 34558, 220, 717, 9417, 9977, 4101, 5131, 17265, 389, 21533, 445, 3166, 11, 439, 264, 26792, 499, 16387, 304, 14765, 13, 4740, 682, 11, 439, 264, 220, 1135, 2555, 11913, 889, 374, 1069, 1802, 813, 7076, 323, 374, 81822, 709, 369, 430, 2466, 10954, 1070, 304, 279, 1579, 5590, 11, 568, 374, 539, 1120, 92495, 719, 1101, 42805, 13, 4452, 11, 682, 279, 907, 1887, 8638, 89417, 1523 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 86755, 3005, 404, 70, 484, 596, 4718, 43044, 374, 832, 315, 279, 1888, 8775, 51, 5039, 2212, 198, 6, 56, 22826, 1370, 597, 3368, 72, 293, 6151, 3117, 285, 76909, 308, 52206, 47151, 6, 320, 2822, 832, 374, 459, 34426, 704, 1618, 340, 4599, 28933, 3005, 404, 70, 484, 65609, 420, 1584, 15038, 304, 279, 6278, 315, 420, 1664, 34558, 220, 717, 9417, 9977, 4101, 5131, 17265, 389, 21533, 445, 3166, 11, 439, 264, 26792, 499, 16387, 304, 14765, 13, 4740, 682, 11, 439, 264, 220, 1135, 2555, 11913, 889, 374, 1069, 1802, 813, 7076, 323, 374, 81822, 709, 369, 430, 2466, 10954, 1070, 304, 279, 1579, 5590, 11, 568, 374, 539, 1120, 92495, 719, 1101, 42805, 13, 4452, 11, 682, 279, 907, 1887, 8638, 89417, 1523, -100 ]
On May 1, 2009 vertigo systems GmbH joined METRO Group's Future Store Initiative and complements the activities of 85 companies with interactive innovations in retail technology and POS media. ›innovations already in use‹ is the slogan of METRO Group's recently launched hypermarket of the future in Tönisvorst in Northern Germany. We are part of it: vertigo systems contributed the interactive kid's table packed with entertaining casual games for the youngest guests. Side effect included: kids are fascinated by the multiplayer games - whereas grown-ups enjoy a relaxed shopping experience.
{ "redpajama_set_name": "RedPajamaC4" }
3,105
[ 128000, 1966, 3297, 220, 16, 11, 220, 1049, 24, 5309, 7992, 6067, 32577, 11096, 37922, 1308, 5856, 596, 12781, 9307, 38756, 323, 1946, 1392, 279, 7640, 315, 220, 5313, 5220, 449, 21416, 46045, 304, 11040, 5557, 323, 27592, 3772, 627, 69209, 6258, 869, 811, 2736, 304, 1005, 378, 117, 374, 279, 52637, 315, 37922, 1308, 5856, 596, 6051, 11887, 17508, 19859, 315, 279, 3938, 304, 350, 24233, 285, 37215, 267, 304, 17355, 10057, 13, 1226, 527, 961, 315, 433, 25, 5309, 7992, 6067, 20162, 279, 21416, 10585, 596, 2007, 19937, 449, 30311, 16736, 3953, 369, 279, 39637, 15051, 13, 17072, 2515, 5343, 25, 6980, 527, 61914, 555, 279, 39828, 3953, 482, 20444, 15042, 27859, 4774, 264, 31467, 12185, 3217, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 1966, 3297, 220, 16, 11, 220, 1049, 24, 5309, 7992, 6067, 32577, 11096, 37922, 1308, 5856, 596, 12781, 9307, 38756, 323, 1946, 1392, 279, 7640, 315, 220, 5313, 5220, 449, 21416, 46045, 304, 11040, 5557, 323, 27592, 3772, 627, 69209, 6258, 869, 811, 2736, 304, 1005, 378, 117, 374, 279, 52637, 315, 37922, 1308, 5856, 596, 6051, 11887, 17508, 19859, 315, 279, 3938, 304, 350, 24233, 285, 37215, 267, 304, 17355, 10057, 13, 1226, 527, 961, 315, 433, 25, 5309, 7992, 6067, 20162, 279, 21416, 10585, 596, 2007, 19937, 449, 30311, 16736, 3953, 369, 279, 39637, 15051, 13, 17072, 2515, 5343, 25, 6980, 527, 61914, 555, 279, 39828, 3953, 482, 20444, 15042, 27859, 4774, 264, 31467, 12185, 3217, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Chelsea star asks for revenge after FA Cup final defeat To get news directly on the go, download the Real Chelsea Fans App Chelsea were beaten 1-0 by Leicester City in the final of the FA Cup, as the Blues were handed their second defeat in a row. A second half strike from Youri Tielemans was enough for the Foxes to win the game, as VAR cancelled out a late Ben Chilwell's strike. Speaking after the game Chelsea skipper Cesar Azpilicueta admitted that the team was disappointed in the defeat. The Chelsea skipper also revealed that the Blues must return to winning ways, starting with Tuesday's Premier League clash against Leicester City. Azpilicueta said: "It's hard to take but in less than three days we are back and playing again, so we have to recover and go for it. "Tuesday is a massive game for our Champions League qualification. We are in a position where everything is in our hands and now is the moment, the last week of the Premier League. "We want to be in the top four and qualify for the Champions League and we have to show it on the pitch." Meanwhile, Leicester City defender Daniel Amartey drew the wrath of the Blues fans when he threw away the Chelsea pennant during the Foxes celebration after beating Chelsea. RUMOUR: BARCELONA ADD AZPILICUETA TO THEIR FULL-BACK TRANSFER SHORTLIST FOR THIS SUMMER CHELSEA SUCCESSFUL PARTNERSHIPS: THE MORATA-AZPI CONNECTION Azpilicueta Agrees With Lampard On One Thing TWO CHELSEA PLAYERS IN PREMIER LEAGUE TEAM OF THE WEEK
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,487
[ 128000, 87406, 6917, 17501, 369, 37169, 1306, 15358, 11098, 1620, 18506, 198, 1271, 636, 3754, 6089, 389, 279, 733, 11, 4232, 279, 8976, 27616, 42896, 1883, 198, 87406, 1051, 31394, 220, 16, 12, 15, 555, 58849, 4409, 304, 279, 1620, 315, 279, 15358, 11098, 11, 439, 279, 33425, 1051, 23415, 872, 2132, 18506, 304, 264, 2872, 627, 32, 2132, 4376, 13471, 505, 4718, 72, 59825, 3516, 598, 574, 3403, 369, 279, 13585, 288, 311, 3243, 279, 1847, 11, 439, 44608, 26765, 704, 264, 3389, 7505, 921, 321, 9336, 596, 13471, 627, 33117, 1306, 279, 1847, 27616, 10936, 716, 356, 33340, 15757, 79, 321, 292, 84, 1955, 16584, 430, 279, 2128, 574, 25406, 304, 279, 18506, 627, 791, 27616, 10936, 716, 1101, 10675, 430, 279, 33425, 2011, 471, 311 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 87406, 6917, 17501, 369, 37169, 1306, 15358, 11098, 1620, 18506, 198, 1271, 636, 3754, 6089, 389, 279, 733, 11, 4232, 279, 8976, 27616, 42896, 1883, 198, 87406, 1051, 31394, 220, 16, 12, 15, 555, 58849, 4409, 304, 279, 1620, 315, 279, 15358, 11098, 11, 439, 279, 33425, 1051, 23415, 872, 2132, 18506, 304, 264, 2872, 627, 32, 2132, 4376, 13471, 505, 4718, 72, 59825, 3516, 598, 574, 3403, 369, 279, 13585, 288, 311, 3243, 279, 1847, 11, 439, 44608, 26765, 704, 264, 3389, 7505, 921, 321, 9336, 596, 13471, 627, 33117, 1306, 279, 1847, 27616, 10936, 716, 356, 33340, 15757, 79, 321, 292, 84, 1955, 16584, 430, 279, 2128, 574, 25406, 304, 279, 18506, 627, 791, 27616, 10936, 716, 1101, 10675, 430, 279, 33425, 2011, 471, 311, -100 ]
News Sports SFBJ Life Opinion Obituaries E-Edition Legals Drop in degree holders won't help S.D.'s attainment goal Megan Raposa [email protected] It's been almost a year since the South Dakota Board of Regents set a high bar for the state's young workforce. The regents last October decided on a goal of seeing two-thirds of under-35 workers with some type of post-secondary credential or college degree. That goal has also been adopted by the state Department of Education, Gov. Dennis Daugaard and the South Dakota Workforce Development Council. Since then, the state's public school enrollment remained flat, and newly released census data shows the number of four-year degree holders in state's largest city has actually declined. The 2015 American Community Survey shows a slight dip in the number of Sioux Falls residents with a bachelor's degree or higher, following three years of consistent (though narrow) increases. RELATED: Do you need a college degree to succeed in S.D.? It's not a significant dip—33 percent to 32.1 percent—but it's far from a step in the right direction for a state focused on seeing more degrees, not fewer. The number of Sioux Falls residents with either some college but no degree, or an associate degree increased by about 1 percent, keeping level the number of people with some post-high school schooling. But can the state really reach its educational attainment goal with incremental growth? The goal is ambitious to start with, considering fewer than 4 in 10 South Dakota workers currently have an associate degree or higher. That aside, if the state really wants to forge onward along the path to more degrees before 2025, it's going to need more than 1 percent increases (or, in the case of public university enrollment, 0.25 percent increases). Follow education watchdog reporter Megan Raposa on Twitter @mlraposa and subscribe to The Highlighter, an education newsletter for parents.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
321
[ 128000, 14710, 13482, 24360, 15327, 9601, 60767, 507, 4590, 84, 5548, 469, 13737, 2400, 7765, 1147, 198, 20463, 304, 8547, 29809, 2834, 956, 1520, 328, 920, 3238, 82, 93965, 5915, 198, 44, 16133, 23097, 12252, 198, 76, 4714, 12252, 31, 867, 355, 38491, 916, 198, 2181, 596, 1027, 4661, 264, 1060, 2533, 279, 4987, 28972, 8925, 315, 78777, 743, 264, 1579, 3703, 369, 279, 1614, 596, 3995, 32027, 627, 791, 1239, 812, 1566, 6664, 6773, 389, 264, 5915, 315, 9298, 1403, 45726, 315, 1234, 12, 1758, 7487, 449, 1063, 955, 315, 1772, 30483, 41307, 477, 7926, 8547, 13, 3011, 5915, 706, 1101, 1027, 18306, 555, 279, 1614, 6011, 315, 11930, 11, 25428, 13, 35727, 14569, 38060, 569, 323, 279, 4987, 28972, 5664, 9009, 11050, 9251, 627, 12834, 1243 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 14710, 13482, 24360, 15327, 9601, 60767, 507, 4590, 84, 5548, 469, 13737, 2400, 7765, 1147, 198, 20463, 304, 8547, 29809, 2834, 956, 1520, 328, 920, 3238, 82, 93965, 5915, 198, 44, 16133, 23097, 12252, 198, 76, 4714, 12252, 31, 867, 355, 38491, 916, 198, 2181, 596, 1027, 4661, 264, 1060, 2533, 279, 4987, 28972, 8925, 315, 78777, 743, 264, 1579, 3703, 369, 279, 1614, 596, 3995, 32027, 627, 791, 1239, 812, 1566, 6664, 6773, 389, 264, 5915, 315, 9298, 1403, 45726, 315, 1234, 12, 1758, 7487, 449, 1063, 955, 315, 1772, 30483, 41307, 477, 7926, 8547, 13, 3011, 5915, 706, 1101, 1027, 18306, 555, 279, 1614, 6011, 315, 11930, 11, 25428, 13, 35727, 14569, 38060, 569, 323, 279, 4987, 28972, 5664, 9009, 11050, 9251, 627, 12834, 1243, -100 ]
I'm so glad to see the IIA recognise Pat Phelan as the tech titan he is, by awarding him Overall Netvisionary prize for 2008. No one deserves it more than Pat. As well as being a complete telecoms rockstar, his hardworking ethic underpins every part of his business. He's invested so much time, effort and ideas into other businesses. Helping them out, giving advice. Generosity SV-style. For the rest of us that couldn't make it to tonight's expensive IIA Netvisionary awards show, the real place to watch out for winners live was Twitter. Between the IIA and Pat we were kept bang up to date until this, of course! Huge congrats to all of the winners, especially to Marie Boran of Silicon Republic, Marcus MacInnes of Pixie, double winner Michele Neylon and Johnny Beirne of DownloadMusic.ie. Brilliant! Twitter really is a fantastic resource for finding things like this out. Well done to everyone – I'm looking forward to seeing the photos! very well deserved by all the winners – especially my twitter buddies!
{ "redpajama_set_name": "RedPajamaC4" }
7,354
[ 128000, 40, 2846, 779, 16089, 311, 1518, 279, 358, 5987, 44917, 7281, 2405, 77200, 439, 279, 13312, 86612, 568, 374, 11, 555, 10292, 287, 1461, 28993, 9558, 13311, 661, 22643, 369, 220, 1049, 23, 13, 2360, 832, 30675, 433, 810, 1109, 7281, 13, 1666, 1664, 439, 1694, 264, 4686, 60505, 82, 7091, 12134, 11, 813, 2653, 21837, 65947, 1234, 75658, 1475, 961, 315, 813, 2626, 13, 1283, 596, 29091, 779, 1790, 892, 11, 5149, 323, 6848, 1139, 1023, 9873, 13, 91801, 1124, 704, 11, 7231, 9650, 13, 2672, 22828, 17939, 11549, 627, 2520, 279, 2800, 315, 603, 430, 7846, 956, 1304, 433, 311, 18396, 596, 11646, 358, 5987, 9558, 13311, 661, 23146, 1501, 11, 279, 1972, 2035, 311, 3821, 704, 369, 26526, 3974, 574, 6405, 13, 28232, 279 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 40, 2846, 779, 16089, 311, 1518, 279, 358, 5987, 44917, 7281, 2405, 77200, 439, 279, 13312, 86612, 568, 374, 11, 555, 10292, 287, 1461, 28993, 9558, 13311, 661, 22643, 369, 220, 1049, 23, 13, 2360, 832, 30675, 433, 810, 1109, 7281, 13, 1666, 1664, 439, 1694, 264, 4686, 60505, 82, 7091, 12134, 11, 813, 2653, 21837, 65947, 1234, 75658, 1475, 961, 315, 813, 2626, 13, 1283, 596, 29091, 779, 1790, 892, 11, 5149, 323, 6848, 1139, 1023, 9873, 13, 91801, 1124, 704, 11, 7231, 9650, 13, 2672, 22828, 17939, 11549, 627, 2520, 279, 2800, 315, 603, 430, 7846, 956, 1304, 433, 311, 18396, 596, 11646, 358, 5987, 9558, 13311, 661, 23146, 1501, 11, 279, 1972, 2035, 311, 3821, 704, 369, 26526, 3974, 574, 6405, 13, 28232, 279, -100 ]
Summer Intensives Bell Schedule – SY22-23 "It is not only one person's work, it's really a partnership and collaboration during all these years." - Christo About Duke Ellington School of the Arts Project (DESAP) In 1999, The John F. Kennedy Center for the Performing Arts, The George Washington University, and The Ellington Fund, formalized their long-time collaboration into the Duke Ellington School of the Arts Project (DESAP), a non-profit organization. Shortly thereafter, in recognition of the leading role in arts education that Duke Ellington School of the Arts (Ellington) has traditionally played and the importance of a fully integrated academic and arts curriculum, DC Public Schools (DCPS) entered into an agreement with DESAP. This agreement determined that it was in the best interests of DCPS, Ellington's students, and the community served by Ellington for DESAP to manage and operate Ellington in a unique partnership with DCPS. Today, the goal of DESAP continues to be providing high school students with an educational experience that includes college preparatory academics, pre-professional artistic training, and access to the cultural and intellectual resources of the District of Columbia. The DESAP Board of Directors consists of representatives from each of the three partners, the school, and the Ellington Community (i.e., current parents or alumni). Ex officio members include the DCPS Superintendent, the SHADE President, and Ellington's Principal. See the Board of Directors roster and descriptions of the partners below. DESAP Board of Directors Amber Golden, President Ari Q. Fitzgerald, Esq., Vice President | Ellington Fund Gregory Squires, Esq., Treasurer | George Washington University Kay Twomey, Secretary Aristide J. Collins, Jr., George Washington University Representative Robin Y. Harris, Ellington Representative (faculty and alumni) Jeanette S. McCune, Kennedy Center Representative Stephanie Phillips, Esq., Ellington Fund Representative Kym Rice, Ph.D., George Washington University Representative Edrick D. Rhodes, Kennedy Center Representative Maxine H. Stone, Ellington Representative Sylvia Davis White, Ellington Fund Representative Sandi M. Logan, Principal & Head of School Amber Golden, SHADE Parent Group President DESAP Partner Organizations
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
668
[ 128000, 51787, 1357, 729, 1924, 198, 85238, 24416, 1389, 16466, 1313, 12, 1419, 198, 12348, 374, 539, 1193, 832, 1732, 596, 990, 11, 433, 596, 2216, 264, 15664, 323, 20632, 2391, 682, 1521, 1667, 10246, 12, 3771, 78, 198, 10714, 27453, 13852, 4910, 6150, 315, 279, 17979, 5907, 320, 39087, 2599, 340, 644, 220, 2550, 24, 11, 578, 3842, 435, 13, 24573, 5955, 369, 279, 70748, 17979, 11, 578, 10058, 6652, 3907, 11, 323, 578, 13852, 4910, 13492, 11, 16287, 1534, 872, 1317, 7394, 20632, 1139, 279, 27453, 13852, 4910, 6150, 315, 279, 17979, 5907, 320, 39087, 2599, 705, 264, 2536, 28926, 7471, 13, 67587, 46095, 11, 304, 18324, 315, 279, 6522, 3560, 304, 19071, 6873, 430, 27453, 13852, 4910, 6150, 315, 279, 17979, 320, 43810, 4910, 8 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 51787, 1357, 729, 1924, 198, 85238, 24416, 1389, 16466, 1313, 12, 1419, 198, 12348, 374, 539, 1193, 832, 1732, 596, 990, 11, 433, 596, 2216, 264, 15664, 323, 20632, 2391, 682, 1521, 1667, 10246, 12, 3771, 78, 198, 10714, 27453, 13852, 4910, 6150, 315, 279, 17979, 5907, 320, 39087, 2599, 340, 644, 220, 2550, 24, 11, 578, 3842, 435, 13, 24573, 5955, 369, 279, 70748, 17979, 11, 578, 10058, 6652, 3907, 11, 323, 578, 13852, 4910, 13492, 11, 16287, 1534, 872, 1317, 7394, 20632, 1139, 279, 27453, 13852, 4910, 6150, 315, 279, 17979, 5907, 320, 39087, 2599, 705, 264, 2536, 28926, 7471, 13, 67587, 46095, 11, 304, 18324, 315, 279, 6522, 3560, 304, 19071, 6873, 430, 27453, 13852, 4910, 6150, 315, 279, 17979, 320, 43810, 4910, 8, -100 ]