text
stringlengths
14
5.22M
meta
dict
__index_level_0__
int64
0
9.97k
input_ids
sequencelengths
128
128
attention_mask
sequencelengths
128
128
labels
sequencelengths
128
128
As a 'water cooler' of sorts for this community, we meet some amazing people. Patrick Mahoney has been inspiring his local community to leverage modern excel and shares with us a really useful technique to create a dynamic dimension table using Power Pivot and Power Query. One of my colleagues and I have been geeking out the last few years over all things Power (Query, Pivot, View, and now BI). We have made slow but eventual progress on getting people we work with to learn and leverage these powerful tools. We finally have some that get the basics, like using unpivot columns routinely in their queries and not overusing calculated columns ("Rows before Co-s", I always say), and have created some common resources for our new local community. I suggested one of these to Rob as a potential PowerPivotPro article, and he said "yes" (how cool is that?). We all use Date/Calendar tables routinely. And what is a Date table but a flexible table of pre-populated columns (calculated with M and/or DAX) that brings some useful time structure to your model? If you build models from multiple transactional systems that contain either the Employee ID or Logon ID of the person doing the transacting, it is also helpful to have a shared common People Table (flexible and pre-populated columns that brings a useful organizational structure to your model) that your fellow PowerPivoters can use. If you work in IT, perhaps you could make this available as a web service or can connect to the database directly, but most may have a report that can be exported/refreshed monthly that has a list of all employees with those IDs, along with other organization/people details (Employee Name, Supervisor, Department, Job Level, Location, Building, etc.). Consider the partial potentially familiar example "organization" below. Although this is not a true org chart (we know each person's immediate "supervisor" only), it is straight forward with the PATH() function to generate a virtual org chart, by adding some calculated columns. The PATH() function in this case iterates through your table building a string showing supervisor/employee relationships all the way up the chain (delimited by the pipe symbol '|'), as shown in the Path column below. From this Path string, we can generate the calculated columns Level1, Level2, and Level3 that show the management names for the Employee in each row that can be used in slicers, visuals, etc. (see below for the DAX expressions). If a Supervisor's name exactly matched one in the Employee field, we would just use those two fields in the PATH() expression; however, in this case, the Employee ID and Supervisor ID fields must be used. Note that the "supervisor" of the boss (ID=1015) is not in our list of employees, which generates a PATH() error; however, we can fix that with a new calculated column with an IF() statement to have the top person in the organization (usually the CEO, but Author in this example) report to themselves. You could work this correction and PATH() into the same column/expression, but here it is done in two steps/columns. Now that we have the string of Supervisor IDs in each person's management chain, we need to add more columns to look up the Supervisor Name for each level in the organization, using LOOKUPVALUE() and PATHITEM(). The PATHITEM() picks the ID out at the specified position, and we use LOOKUPVALUE() to find the name for that ID from the Employee column. Here are the DAX expressions for the calculated columns described above. Since we want this to be a source for multiple data models and files, we need to load the data into a table. If we chose to only load into a data model (Connection Only), the desired data would not be available when we "Get Data" from this workbook. I wasn't sure the calculated columns would be there at first with Load To… Table (vs. just the query columns), but was relieved when they showed up. Now, when you "Get Data" from your People file, your new People Table is available. Now that we have a People Table, we can use it. Here are the first rows of a fictional fact table showing order status changes from a transactional system that includes an Employee ID column. When you bring in the People data to a new model, you often won't need the entire long list. For example, the transactional system may only used by a small subset of employees. In these cases, you can use a join in the query to only bring in the People rows that match a Logon/Employee ID in the current dataset (similar to adjusting the range of your Date table for the given dataset). In your People query, just do a Merge with your Transactions query with either an Inner Join or Right Outer Join (shown), and then just remove the Transactions column filled with all those "Table" values you see (we don't need it; remember, we just merged so we could eliminate those extra People Table rows). Once the People data are in the model as a dimension table, it's all downhill from there. You can use the organization/employee metadata fields (Department, Location, Job Level, etc.) or the calculated columns for each Level (drill down through the organization hierarchy is usually a crowd pleaser). I have been liking the Dot Plot Custom Visual by MAQ Software lately, as you can display lots of information concisely; here is the count of transactions for each employee by Level 3, color coded by Level 2 in the organization. You can spice up the visualization even more by adding in other dimension tables. For example, if you work on a multi-building campus and your People table includes building numbers, you can also add a dimension table into your model with the GPS coordinates for each building and create map visuals over the campus map. I'm sure we aren't the first to make new friends across the company, trading help with Excel/Power BI for new data for our models. Note: you may need to convince your facilities department that you aren't planning a missile strike or something before they give you the GPS coordinates for each building. And while you'll usually work with the most recent People file, it comes in handy to keep the past files, too. Security access reviews are a breeze when you can quickly see if people have changed jobs/departments and no longer need access, for example. And you can generate some interesting HR metrics for your company (hires/exits, new to/left a given department, level changes, job changes, supervisor changes, etc.). I got some help on these last measures from the Power BI community to get them right and performant (basically a slowly changing dimension (SCD) exercise on an ever-growing table, which is beyond the scope of this article and has been covered by much better DAXers than me). I hope the concept of a locally shared People Table is helpful to some of you. Thanks to Rob for letting me be a temporary "pro". And thanks to my powerpivot colleague, Kevin Overstreet, for reviewing this and suggesting the title. Thank you. This post just re-opened and solved a pending issue for our product table. Perfect timing! I can move into the new year with a clean slate for projects. Glad it helped. I always like it too when one of these posts addresses something I'm stuck on. Do you find that finding the path up the levels is better with calculated columns than Power Query? I've done something similar before, but it was all through Power Query with successive joins. In my case, I am better in DAX than M, but agree there is often a M or DAX solution. We have many levels in our company, so I thought PATH() was simpler as it does it all in one shot. What are the key functions you used in M? Honestly, it was just joining the table to itself iteratively (once for each level of supervisor we wanted). You basically create two copies of the table, then join one to the other on the person, then join it again on the Supervisor, then join it again on the Level 2, etc. No M needed, just interface. The M solution works very nicely, and all from the UI is a clean approach. I'm not sure how many times M will need to "read" the table that it joins into memory. Perhaps it's 1 time per join? Hopefully it can just read it once regardless of the # of times it joins to the other table. If not, you can add a Table.Buffer() step to your code, and that will read the other table just once. The only reason I mention this is for refresh times against a gateway. If you have a huge employee table, this refresh could take a while, potentially timing out the refresh (current limit is 2 hours). Calculated column is done AFTER the data pull, and will not count against the 2 hour limit. The expected size of the PATH columns should be relatively small in terms of cardinality, so the extra space from creating in DAX vs M should be minimal. Great post! I tried this out today. I wonder what other uses there might be for PATH(). PATH() can be a little finicky (conditions must be right in all rows for both columns), but it is pretty unique in what it does. So far, I've only used it for Supervisor/Employee, but it could help in any multi-step hierarchy. Many thanks Patrick. PowerPivotPro is the go to reference! This is great. However, when I look at level 2, I get a "(Blank)" value and when I click it, the record ends up being level 1. How do I omit level 1 showing up as blank in level 2? Same thing happens in Level 3, there is a (Blank) value and when clicked "Level 2" names show. I want to omit those records from showing. Many thanks! Sorry for delay. Glad you are using this approach. The blank rows come from the fact that, for example, the Level2 person you may be filtered on doesn't have a value in the Level3 column that you may be using in your visual. There are at least two ways to address it. In this case, the Level 2 person data would still show but at least you'd see their name instead of blank. The other is to filter your visual to not show blanks; however if you are drilling through a Levels hierarchy, you would have to do it for each level. You could also build blank exclusion into your measure by adding a Pathlength() column and in your measure use a variable to find the min Pathlength() (i.e., number of levels for the ranking person shown), and filter where [PathLength] is > min Pathlength.
{ "redpajama_set_name": "RedPajamaC4" }
3,146
[ 128000, 2170, 264, 364, 13284, 36921, 6, 315, 21522, 369, 420, 4029, 11, 584, 3449, 1063, 8056, 1274, 13, 20199, 16566, 2596, 706, 1027, 34147, 813, 2254, 4029, 311, 33164, 6617, 25555, 323, 13551, 449, 603, 264, 2216, 5505, 15105, 311, 1893, 264, 8915, 13167, 2007, 1701, 7572, 98993, 323, 7572, 11615, 627, 4054, 315, 856, 18105, 323, 358, 617, 1027, 56739, 287, 704, 279, 1566, 2478, 1667, 927, 682, 2574, 7572, 320, 2929, 11, 98993, 11, 2806, 11, 323, 1457, 48153, 570, 1226, 617, 1903, 6435, 719, 42835, 5208, 389, 3794, 1274, 584, 990, 449, 311, 4048, 323, 33164, 1521, 8147, 7526, 13, 1226, 5616, 617, 1063, 430, 636, 279, 32874, 11, 1093, 1701, 22355, 16471, 8310, 40076, 304, 872, 20126, 323, 539, 927, 985, 16997, 8310 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2170, 264, 364, 13284, 36921, 6, 315, 21522, 369, 420, 4029, 11, 584, 3449, 1063, 8056, 1274, 13, 20199, 16566, 2596, 706, 1027, 34147, 813, 2254, 4029, 311, 33164, 6617, 25555, 323, 13551, 449, 603, 264, 2216, 5505, 15105, 311, 1893, 264, 8915, 13167, 2007, 1701, 7572, 98993, 323, 7572, 11615, 627, 4054, 315, 856, 18105, 323, 358, 617, 1027, 56739, 287, 704, 279, 1566, 2478, 1667, 927, 682, 2574, 7572, 320, 2929, 11, 98993, 11, 2806, 11, 323, 1457, 48153, 570, 1226, 617, 1903, 6435, 719, 42835, 5208, 389, 3794, 1274, 584, 990, 449, 311, 4048, 323, 33164, 1521, 8147, 7526, 13, 1226, 5616, 617, 1063, 430, 636, 279, 32874, 11, 1093, 1701, 22355, 16471, 8310, 40076, 304, 872, 20126, 323, 539, 927, 985, 16997, 8310, -100 ]
1. I no longer worry about what people think of MY choices. 2. I let go of past actions of my parents. I see them as human beings with flaws like everyone else. 4. I stopped worrying about when I will hit it "big". Like what is that about. I am hitting it "big" now with being able to do what I do! 5. I stopped worrying about failure. Its ALL part of the picture. Some things DON'T work. But the lessons DO! 6. I started to believe in my close friendships and not look for problems. So when a real issue DOES come up, its real and its handled. 7. Worrying doesn't really help you or any situation. You have to work on learning not to worry. For some people its faith in a higher spirit or God, that helps. Others its finding grounded realism that works. Worrying just adds stress and stress can lead to a host of health problems. My life has become freer and I want yours to be freer too!!
{ "redpajama_set_name": "RedPajamaC4" }
457
[ 128000, 16, 13, 358, 912, 5129, 11196, 922, 1148, 1274, 1781, 315, 18725, 11709, 627, 17, 13, 358, 1095, 733, 315, 3347, 6299, 315, 856, 6699, 13, 358, 1518, 1124, 439, 3823, 23837, 449, 41859, 1093, 5127, 775, 627, 19, 13, 358, 10717, 40876, 922, 994, 358, 690, 4295, 433, 330, 16548, 3343, 9086, 1148, 374, 430, 922, 13, 358, 1097, 20129, 433, 330, 16548, 1, 1457, 449, 1694, 3025, 311, 656, 1148, 358, 656, 4999, 20, 13, 358, 10717, 40876, 922, 8060, 13, 11699, 13398, 961, 315, 279, 6945, 13, 4427, 2574, 45373, 17773, 990, 13, 2030, 279, 18872, 9503, 4999, 21, 13, 358, 3940, 311, 4510, 304, 856, 3345, 63081, 323, 539, 1427, 369, 5435, 13, 2100, 994, 264, 1972, 4360, 58363, 2586, 709, 11, 1202 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 16, 13, 358, 912, 5129, 11196, 922, 1148, 1274, 1781, 315, 18725, 11709, 627, 17, 13, 358, 1095, 733, 315, 3347, 6299, 315, 856, 6699, 13, 358, 1518, 1124, 439, 3823, 23837, 449, 41859, 1093, 5127, 775, 627, 19, 13, 358, 10717, 40876, 922, 994, 358, 690, 4295, 433, 330, 16548, 3343, 9086, 1148, 374, 430, 922, 13, 358, 1097, 20129, 433, 330, 16548, 1, 1457, 449, 1694, 3025, 311, 656, 1148, 358, 656, 4999, 20, 13, 358, 10717, 40876, 922, 8060, 13, 11699, 13398, 961, 315, 279, 6945, 13, 4427, 2574, 45373, 17773, 990, 13, 2030, 279, 18872, 9503, 4999, 21, 13, 358, 3940, 311, 4510, 304, 856, 3345, 63081, 323, 539, 1427, 369, 5435, 13, 2100, 994, 264, 1972, 4360, 58363, 2586, 709, 11, 1202, -100 ]
Nearly 85 million passengers departed from and arrived at LAX in 2017. Many of those travelers were from other countries and other states and used Lyft rideshare services to get to their ultimate destinations. They also use Lyft to get around town during their stays here in Los Angeles. Most Lyft rides are uneventful, but sometimes the vehicles are involved in accidents. What happens if you're from another country or state, and you're injured in an accident involving a Lyft vehicle? After seeking medical attention, contact our Los Angeles Lyft Accident Lawyer. You probably needn't worry about insurance. Lyft's insurance covers its drivers for just about any eventuality. You'll want the accident documented by an accident investigation and police report, so call 911. Ask that an officer be dispatched to the scene. You'll want paramedics there too if you're injured. They'll document your complaints of pain and take you to the nearest emergency room. Jurisdiction involves the authority of a court to hear controversies and make decisions. Every state in the United States has its own set of courts. If an accident happened in Texas, the Texas courts have jurisdiction to hear the case, and if an accident happened in Minnesota, the Minnesota courts have jurisdiction. Since your accident occurred in California, the California courts would have jurisdiction to hear and decide any personal injury lawsuit that you might file. Venue differs from jurisdiction. Venue deals with which court in the California court system your personal injury case would be heard in. Since your accident and injuries occurred in Los Angeles County, your case would be properly filed in the Los Angeles County court system. Every state also has its own rules of civil procedure. Los Angeles County has its own local rules too. Some judges even have their own rules for their own courtrooms. The rules of whatever state or country that you're from won't apply in any personal injury lawsuit that you file. Since your accident happened in California, and you're accessing the California courts to have your case heard and decided, the California Code of Civil Procedure governs how your case will work its way through the courts. Don't rely on your state's statute of limitations as the deadline for filing a personal injury case. Some states like Wisconsin have a three year limitations period. Maine has a six year period. The general rule in California is that any lawsuit for personal injuries suffered in an accident must be filed within two years of the date of the accident. There are few exceptions to this rule. If you fail to file your personal injury lawsuit in California within two years of the date of your accident, it's highly likely that your lawsuit will be dismissed. You might have an established relationship with a trusted attorney in your hometown. If you're injured in an accident in a city 1,500 miles away though, you're likely to obtain the best result by retaining an experienced and respected personal injury attorney in the city or county where your accident occurred. As opposed to an attorney from Milwaukee or Atlanta, we're far more familiar with California traffic laws, civil procedure and evidence. Insurance adjusters, insurance defense attorneys and Los Angeles County judges know us and respect us. Your attorney in your hometown simply doesn't have those benefits here in Los Angeles. Contact us right away after being injured in any Lyft or other rideshare accident to arrange for a free case consultation and review. We'll be fully prepared to answer your questions and advise you of your legal options. After you've retained us, we'll be attending to the details of your personal injury case while you're home recovering.
{ "redpajama_set_name": "RedPajamaC4" }
4,119
[ 128000, 64445, 220, 5313, 3610, 22961, 56696, 505, 323, 11721, 520, 445, 3027, 304, 220, 679, 22, 13, 9176, 315, 1884, 40386, 1051, 505, 1023, 5961, 323, 1023, 5415, 323, 1511, 85539, 32327, 77811, 3600, 311, 636, 311, 872, 17139, 34205, 13, 2435, 1101, 1005, 85539, 311, 636, 2212, 6424, 2391, 872, 27656, 1618, 304, 9853, 12167, 13, 7648, 85539, 32327, 527, 653, 3163, 1285, 11, 719, 7170, 279, 11731, 527, 6532, 304, 33788, 13, 3639, 8741, 422, 499, 2351, 505, 2500, 3224, 477, 1614, 11, 323, 499, 2351, 15902, 304, 459, 11677, 16239, 264, 85539, 7458, 5380, 6153, 11125, 6593, 6666, 11, 3729, 1057, 9853, 12167, 85539, 76604, 71314, 627, 2675, 4762, 1205, 77, 956, 11196, 922, 8276, 13, 85539, 596, 8276, 14861, 1202, 12050, 369, 1120 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 64445, 220, 5313, 3610, 22961, 56696, 505, 323, 11721, 520, 445, 3027, 304, 220, 679, 22, 13, 9176, 315, 1884, 40386, 1051, 505, 1023, 5961, 323, 1023, 5415, 323, 1511, 85539, 32327, 77811, 3600, 311, 636, 311, 872, 17139, 34205, 13, 2435, 1101, 1005, 85539, 311, 636, 2212, 6424, 2391, 872, 27656, 1618, 304, 9853, 12167, 13, 7648, 85539, 32327, 527, 653, 3163, 1285, 11, 719, 7170, 279, 11731, 527, 6532, 304, 33788, 13, 3639, 8741, 422, 499, 2351, 505, 2500, 3224, 477, 1614, 11, 323, 499, 2351, 15902, 304, 459, 11677, 16239, 264, 85539, 7458, 5380, 6153, 11125, 6593, 6666, 11, 3729, 1057, 9853, 12167, 85539, 76604, 71314, 627, 2675, 4762, 1205, 77, 956, 11196, 922, 8276, 13, 85539, 596, 8276, 14861, 1202, 12050, 369, 1120, -100 ]
MISSES' JACKET, DRESS AND BELT: Loose-fitting unlined jacket has welt pockets, below elbow length sleeves with turned back cuffs, shoulder pads and optional side front topstitching. Strapless dress has side zipper, fitted, self fabric lined bodice with boning, below mid-calf, A-line skirt with welt pockets and side front pleats. Button-on self lined collar has bound buttonholes, turn back collar and topstitch trim. Self belt. MISSES' DRESS AND SASH: Loose-fitting dress (fitted through waist) has front and back extending onto sleeves, cuffs, side front and side back seams, stiffening from waist to hemline, side pockets and asymmetrical, bound-button closing. Self-fringed, single-layer sash, wrong side shows, has narrow hem. FABRICS: Shantung, Crepe, Linen, Satin. Skirt Stiffening: Muslin. Interfacing: Organza. MISSES' DRESS AND BELT: Pullover dress has bias neck binding and facings, fitted bodice extending into sleeves with bands, bound buttonholes, narrow hem on skirt, side zipper and belt. FABRICS: Voile, Dotted Swiss, Shantung, Crepe. MISSES' DRESS: Pullover dress (fitted through bust) has shoulder pads, front extending into collar, pleated and gathered front, front and back skirt cut-in-one, no side seams, and left side zipper closing. B: Snap closing on sleeves. FABRICS: Silk Crepe, Rayons, Wool Jersey, Lightweight Woolens. MISSES' DRESS: Pullover dress (fitted through bust) has shoulder pads, front extending into upper collar and pocket, yoke back extending into under collar, side-front bodice and skirt seams, darted sleeve cap, decorative stitching for arrow head trim, front button opening, and side-snap (extension) or zipper closing. Edgestitching. A: Purchased handkerchief. B: Attached belt. FABRICS: Silk Crepe, Rayons, Linen, Flannel. MISSES' JEWEL OR SCOOP-NECK, PRINCESS-SEAM TOPS Top (close-fitting through bust) has neckline variations, side-front and side-back princess seams, front hemline slits, and back zipper. A: Topstitching. B: Front Belt, Bow, Knot. A, D: Sleeveless. B, C: Short sleeves. A, B: Jewel neckline. C, D: Scoop neckline. FABRICS: Linen, Pique, Cotton Satin, Challis, Brocade. Unsuitable for obvious diagonals. NOTIONS: One Hook & Eye. A, B: One 20" (51 cm) Separating Zipper. C, D: One 18" (46 cm) Separating Zipper. MISSES' SHORTS AND TAPERED PANTS Shorts and tapered pants (fitted through hips) have side button waistband, slanted pockets and side zipper. B: Carriers. FABRICS: Linen, Madras, Pique, Denim, Poplin, Flannel. Unsuitable for obvious diagonals. NOTIONS: A, B, C, D: One 7" Zipper, One 5/8" (1.5 cm) Button, Seam Binding. Men's One-Size Accessories This reproduction of our original vintage 1970s pattern includes special occasion men's accessories. The ties are available in 3" or 5" widths. The bow tie has elastic in the neck band and a hook-and-eye closure, and the ascot has angled ends. The lined, pleated cummerbund has elastic in the back and link hook closure. The lined, backless button front vest has elastic in the neck with hook-and-eye closure, and elastic in the waist with link hook closure. MISSES' LINED HALTER BRA AND SHORTS, AND SQUARE-NECK COVERUP WITH POCKETS Close-fitting, lined bra has front tie, pleats, darts, and back button closure. A: Shoulder straps. B: Halter shoulder straps and band at bottom. Fitted lined shorts have darts, facings and back zipper. Very loose-fitting, pullover coverup has front and back faced yokes, patch pockets and roll up sleeves. Circa 1960 FABRICS: Denim, Gingham, Cotton Broadcloth, Pique, Poplin. Also for Coverup: Gauze, Voile, Lawn. Unsuitable for obvious diagonals. NOTIONS: A, B: Four 1/2" (1.3 cm) Buttons. C: One 7" (18 cm) Zipper, One Hook & Eye. MISSES' WIDE-COLLAR, FIT-AND-FLARE DRESS Close fitting dress has front princess seams, inverted pleat at center back and detachable collar and sleeve facing. FABRICS: Dress: Lightweight Woolens, Crepe, Flannel. Shoulder Pads: Lining Fabric. Padding: Cotton Batting. Sew-In Interfacing: Muslin. Note: Fabric requirement allows for nap, one-way design or shading. Extra fabric may be needed to match design or for shrinkage. NOTIONS: Four 1" (2.5 cm) Buttons, Eight Snaps, One Hook & Eye, Buttonhole Twist, 5 yds. (4.6 m) of 1/2" (1.3 cm) Seam Binding, 1/4" (0.6 cm) Double Fold Bias Tape, 1/2" (1.3 cm) Single-fold bias tape. MISSES' DRESS Fitted dress has neckline variations, gathered sleeves, and side snap or zipper closures. A: Pockets. Circa 1939 FABRICS: Unsuitable for obvious diagonals. *With Nap. **Without Nap. Linen, Gingham, Lace, Silk Crepe, Rayon Challis. Note: Fabric requirement allows for nap, one-way design or shading. Extra fabric may be needed to match design or for shrinkage. NOTIONS: A, B: One 12" (31 cm) Zipper or One Hook & Eye and Eight Snaps, 1/2 yd. (0.5 m) of 1/2" (1.3 cm) Single Fold Bias Tape, 3 yds. (2.7 m) Seam Binding, 1 yd. (1 m) Double Fold Bias Tape. A: 23/4 yds. (2.6 m) of 11/2" (3.8 cm) Lace or Eyelet Trim. B: One 1/2" (1.3 cm) Button. MISSES' DRESS Fitted dresses have front tucks, gathered sleeve variations, and side snap or zipper closure. A: Contrast binding and belt with tie closure. Circa 1940 FABRICS: Unsuitable for obvious diagonals. *With Nap. **Without Nap. Sheer Cottons, Lace, Crepe De Chine, Burnout Velvet, Rayon Challis. Sleevehead A, B: Taffeta. Belt Interfacing: Muslin. Note: Fabric requirement allows for nap, one-way design or shading. Extra fabric may be needed to match design or for shrinkage. NOTIONS: A, B: One 14" (36 cm) Zipper or Six Snaps, Two Hooks & Eyes, 23/4 yds. (2.6 m) Seam Binding, 1/2 yd. (0.5 m) of 1/2" (1.3 cm) Single Fold Bias Tape. A: Two Eyelets. B: Two Additional Snaps. Two skirts in the look of the 70s. Mix of fabrics and prints, maxi look and softly flowing hems, with all their periods' features of the flower-power-era, now back in vogue. Stylish, feminine retro-look tops. Strapless, with cute stand-up collar holding the gathered front and back in place. Or backless, tied in the back, with smocked, fitted waist. Marvelous ensemble with all the charms of the 50's: long, sleeveless night gown with elastic casing or shorter variant covering the knee, with short sleeves or cute baby doll with bloomers. Out Of Print Striking prints and trumpet style sleeves or shoulders left exposed, and elegant with fancy braid. Both variants reflect the spirit of the 60's and still deserve special attention. Unsophisticated, form-fitting dress with low-cut back. Variant A with ¾ sleeves, C sleeveless, optionally with broad collar. Separate skirt, view B with box pleats, to be worn over the dress on special occasions. Shirt-blouse dress in the style of the fifties. Variant A with long cuff sleeves, B with short sleeves. Shawl collar, collar, tie, bow and cuffs, to be mixed and matched to one's heart's content. Party dress with a flared circle skirt, reminiscent of the fifties, worn true to the period with a petticoat. Dress A has pretty short sleeves, lines and gathered with an elastic band.
{ "redpajama_set_name": "RedPajamaC4" }
4,194
[ 128000, 44, 1669, 29095, 6, 622, 59259, 11, 423, 7973, 3651, 69359, 51, 25, 87102, 2269, 15154, 653, 15472, 27300, 706, 78848, 30278, 11, 3770, 46811, 3160, 43475, 449, 6656, 1203, 90569, 11, 17308, 37095, 323, 10309, 3185, 4156, 1948, 267, 1641, 287, 13, 85506, 1752, 8679, 706, 3185, 69861, 11, 29441, 11, 659, 13354, 32393, 30111, 560, 449, 7970, 287, 11, 3770, 5209, 1824, 3181, 11, 362, 8614, 38380, 449, 78848, 30278, 323, 3185, 4156, 7245, 1900, 13, 6739, 10539, 659, 32393, 37204, 706, 6965, 3215, 75790, 11, 2543, 1203, 37204, 323, 1948, 267, 1641, 11259, 13, 10323, 19671, 627, 44, 1669, 29095, 6, 423, 7973, 3651, 328, 9729, 25, 87102, 2269, 15154, 8679, 320, 69, 3847, 1555, 29142, 8, 706, 4156, 323, 1203, 33459, 8800, 43475 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1669, 29095, 6, 622, 59259, 11, 423, 7973, 3651, 69359, 51, 25, 87102, 2269, 15154, 653, 15472, 27300, 706, 78848, 30278, 11, 3770, 46811, 3160, 43475, 449, 6656, 1203, 90569, 11, 17308, 37095, 323, 10309, 3185, 4156, 1948, 267, 1641, 287, 13, 85506, 1752, 8679, 706, 3185, 69861, 11, 29441, 11, 659, 13354, 32393, 30111, 560, 449, 7970, 287, 11, 3770, 5209, 1824, 3181, 11, 362, 8614, 38380, 449, 78848, 30278, 323, 3185, 4156, 7245, 1900, 13, 6739, 10539, 659, 32393, 37204, 706, 6965, 3215, 75790, 11, 2543, 1203, 37204, 323, 1948, 267, 1641, 11259, 13, 10323, 19671, 627, 44, 1669, 29095, 6, 423, 7973, 3651, 328, 9729, 25, 87102, 2269, 15154, 8679, 320, 69, 3847, 1555, 29142, 8, 706, 4156, 323, 1203, 33459, 8800, 43475, -100 ]
La casa delle inquietudini è un'opera d'arte dell'artista Maria Lai. Si trova nel Museo all'aperto Maria Lai di Ulassai. Si tratta di un intervento estetico sorto su di un edificio preesistente, quest'ultimo nato con lo scopo di ospitare un ristorante e un'attività turistica. L'edificio fu realizzato intorno al 1995 ma già intorno al 2002 cadde in disuso e abbandonato. L'artista Maria Lai già dal 1993 realizzò un'altra opera affiancata al suddetto edificio La scarpata, e vedendo la struttura inutilizzata decise di realizzare un enorme Murale esterno che potesse far dialogare entrambe le opere. A livello formale e tecnico, l'opera è un intervento pittorico dai cromatismi verdi, bianchi e neri, ricopre l'intera struttura, e nel suo costante divenire vengono rappresentati esseri mostruosi a forma di draghi e di varani i quali sono legati ad una particolare reinterpretazione di Maria lai del racconto: "Pastorello mattiniero con capretta", composto dallo scrittore Salvatore Cambosu, suo maestro e amico, nel suo libro più celebre "Miele amaro" del 1954. Gli interventi artistici risalgono al 2004 e vengono realizzati contemporaneamente a quelli del Muro del groviglio, poco più distante dalla Casa delle inquietudini. Dista 200 metri dalla Grotta di Su Marmuri e una cinquantina circa dalle Cascate di Lecorci. Ora è sede centrale dell'Ente foreste della Sardegna nel paese di Ulassai. Bibliografia "Ulassai, da Legarsi alla Montagna alla Stazione dell'arte" edizioni Arte Duchamp Cagliari 2006 "Maria Lai, Ansia d'infinito" a cura di Clarita di Giovanni, testi di Achille Bonito Oliva, edizioni Condaghes 2013 Voci correlate Stazione dell'arte Museo all'aperto Maria Lai Collegamenti esterni Architetture pubbliche Ulassai Casa
{ "redpajama_set_name": "RedPajamaWikipedia" }
3,522
[ 128000, 8921, 25233, 28071, 304, 44750, 664, 6729, 11676, 653, 6, 454, 2473, 294, 6, 20430, 25219, 6, 472, 9265, 23880, 445, 2192, 13, 12095, 8348, 6723, 25334, 51108, 78, 682, 6, 391, 14200, 23880, 445, 2192, 1891, 549, 448, 2192, 382, 22771, 490, 33019, 1891, 653, 958, 688, 78, 1826, 295, 4042, 3460, 78, 924, 1891, 653, 1608, 93738, 864, 288, 380, 6960, 11, 2271, 6, 85416, 308, 4428, 390, 781, 48621, 78, 1891, 64590, 275, 548, 653, 436, 5436, 5048, 384, 653, 6, 1617, 79543, 13535, 87359, 13, 445, 6, 291, 93738, 18922, 1972, 92938, 528, 11368, 453, 220, 2550, 20, 7643, 72552, 528, 11368, 453, 220, 1049, 17, 19973, 451, 304, 834, 47535, 384, 671, 7198, 263, 4428, 382, 43, 6, 472, 9265, 23880, 445 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 8921, 25233, 28071, 304, 44750, 664, 6729, 11676, 653, 6, 454, 2473, 294, 6, 20430, 25219, 6, 472, 9265, 23880, 445, 2192, 13, 12095, 8348, 6723, 25334, 51108, 78, 682, 6, 391, 14200, 23880, 445, 2192, 1891, 549, 448, 2192, 382, 22771, 490, 33019, 1891, 653, 958, 688, 78, 1826, 295, 4042, 3460, 78, 924, 1891, 653, 1608, 93738, 864, 288, 380, 6960, 11, 2271, 6, 85416, 308, 4428, 390, 781, 48621, 78, 1891, 64590, 275, 548, 653, 436, 5436, 5048, 384, 653, 6, 1617, 79543, 13535, 87359, 13, 445, 6, 291, 93738, 18922, 1972, 92938, 528, 11368, 453, 220, 2550, 20, 7643, 72552, 528, 11368, 453, 220, 1049, 17, 19973, 451, 304, 834, 47535, 384, 671, 7198, 263, 4428, 382, 43, 6, 472, 9265, 23880, 445, -100 ]
"I have had the pleasure of working with D.L. Design Inc. for many years. We have consulted on custom homes, model home displays, remodels as well as a personal home for my family. Daryl has always created exciting designs while keeping our parameters in focus. He is very easy to work with and provides a pleasant experience." Fill out the required fields below and we will get back to you as soon as possible. Or feel free to call us at (314) 462-9001. Our standard office hours are Monday-Friday: 8AM-5PM. Please Note: Items with an * are required.
{ "redpajama_set_name": "RedPajamaC4" }
2,167
[ 128000, 7189, 617, 1047, 279, 17069, 315, 3318, 449, 423, 1236, 13, 7127, 4953, 13, 369, 1690, 1667, 13, 1226, 617, 61302, 389, 2587, 10632, 11, 1646, 2162, 19207, 11, 47086, 82, 439, 1664, 439, 264, 4443, 2162, 369, 856, 3070, 13, 423, 78908, 706, 2744, 3549, 13548, 14769, 1418, 10494, 1057, 5137, 304, 5357, 13, 1283, 374, 1633, 4228, 311, 990, 449, 323, 5825, 264, 24729, 3217, 10246, 14788, 704, 279, 2631, 5151, 3770, 323, 584, 690, 636, 1203, 311, 499, 439, 5246, 439, 3284, 13, 2582, 2733, 1949, 311, 1650, 603, 520, 320, 16104, 8, 220, 20911, 12, 7467, 16, 627, 8140, 5410, 5274, 4207, 527, 7159, 7424, 6249, 25, 220, 23, 1428, 12, 20, 8971, 627, 5618, 7181, 25, 19974, 449, 459, 353, 527, 2631 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 7189, 617, 1047, 279, 17069, 315, 3318, 449, 423, 1236, 13, 7127, 4953, 13, 369, 1690, 1667, 13, 1226, 617, 61302, 389, 2587, 10632, 11, 1646, 2162, 19207, 11, 47086, 82, 439, 1664, 439, 264, 4443, 2162, 369, 856, 3070, 13, 423, 78908, 706, 2744, 3549, 13548, 14769, 1418, 10494, 1057, 5137, 304, 5357, 13, 1283, 374, 1633, 4228, 311, 990, 449, 323, 5825, 264, 24729, 3217, 10246, 14788, 704, 279, 2631, 5151, 3770, 323, 584, 690, 636, 1203, 311, 499, 439, 5246, 439, 3284, 13, 2582, 2733, 1949, 311, 1650, 603, 520, 320, 16104, 8, 220, 20911, 12, 7467, 16, 627, 8140, 5410, 5274, 4207, 527, 7159, 7424, 6249, 25, 220, 23, 1428, 12, 20, 8971, 627, 5618, 7181, 25, 19974, 449, 459, 353, 527, 2631, -100 ]
Want a free estimate on garage door repair, a new window, or a new front door? Fill out the form below and we will send someone out to get you a quote on whatever service you require. You can also give us a call to discuss receiving your free estimate.
{ "redpajama_set_name": "RedPajamaC4" }
9,607
[ 128000, 29923, 264, 1949, 16430, 389, 19833, 6134, 13023, 11, 264, 502, 3321, 11, 477, 264, 502, 4156, 6134, 30, 22748, 704, 279, 1376, 3770, 323, 584, 690, 3708, 4423, 704, 311, 636, 499, 264, 12929, 389, 8996, 2532, 499, 1397, 627, 2675, 649, 1101, 3041, 603, 264, 1650, 311, 4358, 12588, 701, 1949, 16430, 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, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 29923, 264, 1949, 16430, 389, 19833, 6134, 13023, 11, 264, 502, 3321, 11, 477, 264, 502, 4156, 6134, 30, 22748, 704, 279, 1376, 3770, 323, 584, 690, 3708, 4423, 704, 311, 636, 499, 264, 12929, 389, 8996, 2532, 499, 1397, 627, 2675, 649, 1101, 3041, 603, 264, 1650, 311, 4358, 12588, 701, 1949, 16430, 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, -100, -100, -100, -100 ]
Can We Bring...? Contact/Directions The Big House WFTV Inside The Big House Everyone is Welcome at Our House Regardless of Your Organization's Affiliation. There is Something for Everyone. Take a Look Around. The Big House recommends that you follow current CDC Guidelines while attending or participating in indoor events by wearing your mask whether you are fully vaccinated or not. ​Thank you for putting safety first. What Can You Bring To The Big House? Please Click Here. The Big House has 9 NBA Hardwood Courts. The courts are available for rental. Please click here for events hosted at The Big House. The Big House has a Major League Infield, and 10 Batting Cages on the 3rd Floor. We have several Pros that provide lessons and cage rentals are available. Click Here for more info. The Big House has 16 Volleyball Courts. The courts are available for rental. Please click here for events hosted at The Big House. There is much to do when visiting The Big House. Please click here for more information. The Big House has COVID guidelines in place that must be adhered to when you attend events. Please click here for details. Rentals Available The Big House is available for rentals for your special events. Please click here to complete the form online and we will follow up with you on availability.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
733
[ 128000, 6854, 1226, 40224, 1131, 5380, 8906, 14, 61424, 198, 791, 6295, 4783, 468, 4082, 53, 198, 25488, 578, 6295, 4783, 198, 34124, 374, 20776, 520, 5751, 4783, 44840, 315, 4718, 21021, 596, 9947, 29109, 13, 2684, 374, 25681, 369, 22172, 13, 12040, 264, 9372, 33916, 627, 791, 6295, 4783, 40912, 430, 499, 1833, 1510, 40409, 48528, 1418, 24096, 477, 24435, 304, 30619, 4455, 555, 12512, 701, 7056, 3508, 499, 527, 7373, 70558, 477, 539, 627, 16067, 13359, 499, 369, 10917, 7296, 1176, 627, 3923, 3053, 1472, 40224, 2057, 578, 6295, 4783, 30, 5321, 9369, 5810, 627, 791, 6295, 4783, 706, 220, 24, 17846, 11481, 6798, 66563, 13, 578, 19359, 527, 2561, 369, 19160, 13, 5321, 4299, 1618, 369, 4455, 21685, 520, 578, 6295, 4783, 627, 791, 6295 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 6854, 1226, 40224, 1131, 5380, 8906, 14, 61424, 198, 791, 6295, 4783, 468, 4082, 53, 198, 25488, 578, 6295, 4783, 198, 34124, 374, 20776, 520, 5751, 4783, 44840, 315, 4718, 21021, 596, 9947, 29109, 13, 2684, 374, 25681, 369, 22172, 13, 12040, 264, 9372, 33916, 627, 791, 6295, 4783, 40912, 430, 499, 1833, 1510, 40409, 48528, 1418, 24096, 477, 24435, 304, 30619, 4455, 555, 12512, 701, 7056, 3508, 499, 527, 7373, 70558, 477, 539, 627, 16067, 13359, 499, 369, 10917, 7296, 1176, 627, 3923, 3053, 1472, 40224, 2057, 578, 6295, 4783, 30, 5321, 9369, 5810, 627, 791, 6295, 4783, 706, 220, 24, 17846, 11481, 6798, 66563, 13, 578, 19359, 527, 2561, 369, 19160, 13, 5321, 4299, 1618, 369, 4455, 21685, 520, 578, 6295, 4783, 627, 791, 6295, -100 ]
Interested in finding out more about Kira, or just want to have a chat about your options with Office 365? We'd love to speak to you! Drop us a line below. We rarely send out marketing emails unless we have something particularly juicy to share.
{ "redpajama_set_name": "RedPajamaC4" }
131
[ 128000, 84152, 304, 9455, 704, 810, 922, 735, 9008, 11, 477, 1120, 1390, 311, 617, 264, 6369, 922, 701, 2671, 449, 8410, 220, 12676, 30, 1226, 4265, 3021, 311, 6604, 311, 499, 0, 16110, 603, 264, 1584, 3770, 627, 1687, 19029, 3708, 704, 8661, 14633, 7389, 584, 617, 2555, 8104, 56153, 311, 4430, 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, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 84152, 304, 9455, 704, 810, 922, 735, 9008, 11, 477, 1120, 1390, 311, 617, 264, 6369, 922, 701, 2671, 449, 8410, 220, 12676, 30, 1226, 4265, 3021, 311, 6604, 311, 499, 0, 16110, 603, 264, 1584, 3770, 627, 1687, 19029, 3708, 704, 8661, 14633, 7389, 584, 617, 2555, 8104, 56153, 311, 4430, 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, -100, -100, -100, -100, -100, -100 ]
Moritz lives in Innsbruck and studies physics. If you know him, you definitely know about his connection to nature, which he expressed i.e. by founding an environmental youth organization at the age of 16. Often, he goes outside in the evening to look for a place to sleep in nature. Usually with a sleeping bag, sometimes he just builds a protecting shelter from nature materials. His biggest passion, besides climbing, is trekking, several thousand kilometres have been covered by him on hiking tours in numerous countries. He has accomplishes trainings in the wilderness field at wilderness school "Wildniscamps" in the Almtal valley and starts to work as a coach there. His first tour with Fernwind goes to Norway, into the vastness of the Hardangervidda plateau.
{ "redpajama_set_name": "RedPajamaC4" }
9,197
[ 128000, 42778, 11289, 6439, 304, 763, 4511, 1347, 1983, 323, 7978, 22027, 13, 1442, 499, 1440, 1461, 11, 499, 8659, 1440, 922, 813, 3717, 311, 7138, 11, 902, 568, 13605, 602, 1770, 13, 555, 36330, 459, 12434, 12822, 7471, 520, 279, 4325, 315, 220, 845, 627, 78013, 11, 568, 5900, 4994, 304, 279, 11714, 311, 1427, 369, 264, 2035, 311, 6212, 304, 7138, 13, 34067, 449, 264, 21811, 9145, 11, 7170, 568, 1120, 22890, 264, 22973, 23756, 505, 7138, 7384, 627, 16366, 8706, 11939, 11, 28858, 30608, 11, 374, 45688, 10789, 11, 3892, 16579, 52957, 617, 1027, 9960, 555, 1461, 389, 38464, 31261, 304, 12387, 5961, 13, 1283, 706, 13390, 21168, 5542, 826, 304, 279, 49362, 2115, 520, 49362, 2978, 330, 41703, 77, 3510, 14989, 1, 304, 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 ]
[ 42778, 11289, 6439, 304, 763, 4511, 1347, 1983, 323, 7978, 22027, 13, 1442, 499, 1440, 1461, 11, 499, 8659, 1440, 922, 813, 3717, 311, 7138, 11, 902, 568, 13605, 602, 1770, 13, 555, 36330, 459, 12434, 12822, 7471, 520, 279, 4325, 315, 220, 845, 627, 78013, 11, 568, 5900, 4994, 304, 279, 11714, 311, 1427, 369, 264, 2035, 311, 6212, 304, 7138, 13, 34067, 449, 264, 21811, 9145, 11, 7170, 568, 1120, 22890, 264, 22973, 23756, 505, 7138, 7384, 627, 16366, 8706, 11939, 11, 28858, 30608, 11, 374, 45688, 10789, 11, 3892, 16579, 52957, 617, 1027, 9960, 555, 1461, 389, 38464, 31261, 304, 12387, 5961, 13, 1283, 706, 13390, 21168, 5542, 826, 304, 279, 49362, 2115, 520, 49362, 2978, 330, 41703, 77, 3510, 14989, 1, 304, 279, -100 ]
Velocity is a Canadian OEM and custom manufacturer of CNC machines, process machinery and industrial motion systems. Velocity builds CNC machines up to 6 axis to our dealers' and distributors' specifications and material handling machines to customer requirements. Our production machines are sold through dealerships and most often carry their brand names. Custom designed machines are developed and built working with you, the customer; we tailor the design to your special requirements. Check with our dealers for our versatile standard machines and if they don't have what you want, we will build it for you. Not just CNC machines but anything where fast precise motion is required. From mills to bottling machines and robotics your requirements can be met and exceeded. Velocity is young but the experience in it is long. With staff design experience of over 20 years we have experienced what works best and what does not. Experience helps chart the best route to high quality, high production at reasonable cost. Experience is never static and we don't cling to old ideas. We are continuously incorporating new innovations to achieve greater productivity and user friendliness. Velocity's core philosophy is that the machine works for both the business and the operator. Innovations that improve the ease of use, safety and client's productivity and profitability are always welcome, but we are careful not to add features just for the sake of it.
{ "redpajama_set_name": "RedPajamaC4" }
8,426
[ 128000, 25154, 374, 264, 12152, 41862, 323, 2587, 14290, 315, 60797, 12933, 11, 1920, 26953, 323, 13076, 11633, 6067, 13, 55534, 22890, 60797, 12933, 709, 311, 220, 21, 8183, 311, 1057, 27291, 6, 323, 56694, 6, 29803, 323, 3769, 11850, 12933, 311, 6130, 8670, 13, 5751, 5788, 12933, 527, 6216, 1555, 27291, 34322, 323, 1455, 3629, 6920, 872, 6883, 5144, 13, 8572, 6319, 12933, 527, 8040, 323, 5918, 3318, 449, 499, 11, 279, 6130, 26, 584, 52056, 279, 2955, 311, 701, 3361, 8670, 13, 4343, 449, 1057, 27291, 369, 1057, 33045, 5410, 12933, 323, 422, 814, 1541, 956, 617, 1148, 499, 1390, 11, 584, 690, 1977, 433, 369, 499, 13, 2876, 1120, 60797, 12933, 719, 4205, 1405, 5043, 24473, 11633, 374, 2631, 13, 5659, 33008, 311, 11176, 2785 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 25154, 374, 264, 12152, 41862, 323, 2587, 14290, 315, 60797, 12933, 11, 1920, 26953, 323, 13076, 11633, 6067, 13, 55534, 22890, 60797, 12933, 709, 311, 220, 21, 8183, 311, 1057, 27291, 6, 323, 56694, 6, 29803, 323, 3769, 11850, 12933, 311, 6130, 8670, 13, 5751, 5788, 12933, 527, 6216, 1555, 27291, 34322, 323, 1455, 3629, 6920, 872, 6883, 5144, 13, 8572, 6319, 12933, 527, 8040, 323, 5918, 3318, 449, 499, 11, 279, 6130, 26, 584, 52056, 279, 2955, 311, 701, 3361, 8670, 13, 4343, 449, 1057, 27291, 369, 1057, 33045, 5410, 12933, 323, 422, 814, 1541, 956, 617, 1148, 499, 1390, 11, 584, 690, 1977, 433, 369, 499, 13, 2876, 1120, 60797, 12933, 719, 4205, 1405, 5043, 24473, 11633, 374, 2631, 13, 5659, 33008, 311, 11176, 2785, -100 ]
16" OD 0.25" wall preheated to 450° in under a minute. Using our premade blankets makes setup just as fast. Our induction cables are made from top quality material and specially designed to be flexible and durable. The user is protected from high voltages by cam-locked connections. Our two-cable system increases the lifetime of the cables. The water cooled inductor cable is made from a yarn-reinforced hose which can be easily wrapped around the workpiece with good cut resistance. Together, this system allows for quick workpiece setup, allowing your crew to get more done with less downtime. The Fusion 45 is powered by the Eurothem Nanodac controller. It has a step programmer, 4 thermocouple inputs, data logging, and remote viewing. The Nanodac also has advanced features like automatic T/C swapping for preheating and chart creation using the free Review software on your PC.
{ "redpajama_set_name": "RedPajamaC4" }
647
[ 128000, 845, 1, 53832, 220, 15, 13, 914, 1, 7147, 864, 383, 660, 311, 220, 10617, 11877, 304, 1234, 264, 9568, 13, 12362, 1057, 6954, 1037, 65712, 3727, 6642, 1120, 439, 5043, 627, 8140, 38156, 37172, 527, 1903, 505, 1948, 4367, 3769, 323, 35426, 6319, 311, 387, 19303, 323, 27220, 13, 578, 1217, 374, 2682, 505, 1579, 16798, 1154, 555, 6730, 12, 25656, 13537, 627, 8140, 1403, 1824, 481, 1887, 12992, 279, 19569, 315, 279, 37172, 13, 578, 3090, 65410, 304, 36869, 14994, 374, 1903, 505, 264, 39347, 5621, 258, 25229, 38600, 902, 649, 387, 6847, 20037, 2212, 279, 990, 23164, 449, 1695, 4018, 13957, 627, 82087, 11, 420, 1887, 6276, 369, 4062, 990, 23164, 6642, 11, 10923, 701, 13941, 311, 636, 810, 2884, 449, 2753, 75954, 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 ]
[ 845, 1, 53832, 220, 15, 13, 914, 1, 7147, 864, 383, 660, 311, 220, 10617, 11877, 304, 1234, 264, 9568, 13, 12362, 1057, 6954, 1037, 65712, 3727, 6642, 1120, 439, 5043, 627, 8140, 38156, 37172, 527, 1903, 505, 1948, 4367, 3769, 323, 35426, 6319, 311, 387, 19303, 323, 27220, 13, 578, 1217, 374, 2682, 505, 1579, 16798, 1154, 555, 6730, 12, 25656, 13537, 627, 8140, 1403, 1824, 481, 1887, 12992, 279, 19569, 315, 279, 37172, 13, 578, 3090, 65410, 304, 36869, 14994, 374, 1903, 505, 264, 39347, 5621, 258, 25229, 38600, 902, 649, 387, 6847, 20037, 2212, 279, 990, 23164, 449, 1695, 4018, 13957, 627, 82087, 11, 420, 1887, 6276, 369, 4062, 990, 23164, 6642, 11, 10923, 701, 13941, 311, 636, 810, 2884, 449, 2753, 75954, 627, -100 ]
Veterinarians in the business of equine and large animal care don't have it easy -- imagine packing up your entire office and moving it every time you need to visit a client! If that's what you do, then you need to stay organized and move as efficiently as possible. Developing routines and best ambulatory practices, and understanding the tools of your trade, will greatly improve your ability to rapidly provide patient care. Stonewell is dedicated to helping you achieve these ends. From VetBoxes™, VetCarts™, and VetStands™ to complete mobile clinics, Stonewell can serve your unique needs. Stonewell continues to innovate and develop customized products for the large animal and equine veterinary industry. In October of 2011, Stonewell expanded its product line to include VetCarts™, designed for use in hospitals and clinics.
{ "redpajama_set_name": "RedPajamaC4" }
7,044
[ 128000, 91177, 258, 30627, 304, 279, 2626, 315, 3312, 483, 323, 3544, 10065, 2512, 1541, 956, 617, 433, 4228, 1198, 13085, 36813, 709, 701, 4553, 5274, 323, 7366, 433, 1475, 892, 499, 1205, 311, 4034, 264, 3016, 0, 1442, 430, 596, 1148, 499, 656, 11, 1243, 499, 1205, 311, 4822, 17057, 323, 3351, 439, 30820, 439, 3284, 13, 81745, 30597, 323, 1888, 9049, 38220, 12659, 11, 323, 8830, 279, 7526, 315, 701, 6696, 11, 690, 19407, 7417, 701, 5845, 311, 19019, 3493, 8893, 2512, 13, 36219, 365, 616, 374, 12514, 311, 10695, 499, 11322, 1521, 10548, 13, 5659, 81440, 94765, 16500, 11, 81440, 34, 7183, 16500, 11, 323, 81440, 626, 2914, 16500, 311, 4686, 6505, 44335, 11, 36219, 365, 616, 649, 8854, 701, 5016, 3966, 627, 626, 263 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 258, 30627, 304, 279, 2626, 315, 3312, 483, 323, 3544, 10065, 2512, 1541, 956, 617, 433, 4228, 1198, 13085, 36813, 709, 701, 4553, 5274, 323, 7366, 433, 1475, 892, 499, 1205, 311, 4034, 264, 3016, 0, 1442, 430, 596, 1148, 499, 656, 11, 1243, 499, 1205, 311, 4822, 17057, 323, 3351, 439, 30820, 439, 3284, 13, 81745, 30597, 323, 1888, 9049, 38220, 12659, 11, 323, 8830, 279, 7526, 315, 701, 6696, 11, 690, 19407, 7417, 701, 5845, 311, 19019, 3493, 8893, 2512, 13, 36219, 365, 616, 374, 12514, 311, 10695, 499, 11322, 1521, 10548, 13, 5659, 81440, 94765, 16500, 11, 81440, 34, 7183, 16500, 11, 323, 81440, 626, 2914, 16500, 311, 4686, 6505, 44335, 11, 36219, 365, 616, 649, 8854, 701, 5016, 3966, 627, 626, 263, -100 ]
Great training opportunities! Paediatric EEG meeting, neuroradiology meeting, weekly educational meeting, weekly Grand Round and lots of opportunities for ward and clinic experience, attracting great GRID trainees to keep us on our toes. We encourage ERASMUS students, vacation students and student selected component (SSC) students to come and join us. Great vision! The paediatric neurology and neurodisability team is growing – we are building capacity for better access to neurological services and making available the very latest treatments and clinical trials for children in the North East of England. Great leadership! Paediatric neurologists at GNCH run nationally commissioned services for neuromuscular disease and mitochondrial disorders, represent paediatric neurology and neurodisability on national Commissioning Reference Groups (Neurology and Metabolic) and maintain a highly prominent profile within the British Paediatric Neurology Association. Great care! Ward 1B has a team of highly skilled nurses, therapists and doctors dedicated to the care and inpatient management of children with neurological conditions. Great environment! Ward 1B is a state-of-the-art modern ward with 9 cubicles and a 4 bedded bay area equipped with dedicated videotelemetry facilities, sensory room and a rehab robot! Great networks! Northern Neurodisability Network; PENNEC (for epilepsy) – come to our meetings and see!
{ "redpajama_set_name": "RedPajamaC4" }
5,379
[ 128000, 22111, 4967, 10708, 0, 16056, 291, 23336, 76908, 6574, 11, 21850, 269, 2836, 2508, 6574, 11, 17496, 16627, 6574, 11, 17496, 10517, 17535, 323, 10283, 315, 10708, 369, 26741, 323, 28913, 3217, 11, 51647, 2294, 66027, 5542, 5633, 311, 2567, 603, 389, 1057, 45713, 13, 1226, 15253, 27590, 53684, 2078, 4236, 11, 20769, 4236, 323, 5575, 4183, 3777, 320, 1242, 34, 8, 4236, 311, 2586, 323, 5249, 603, 627, 22111, 11376, 0, 578, 95247, 23336, 18247, 36781, 323, 18247, 4338, 2968, 2128, 374, 7982, 1389, 584, 527, 4857, 8824, 369, 2731, 2680, 311, 64908, 3600, 323, 3339, 2561, 279, 1633, 5652, 22972, 323, 14830, 19622, 369, 2911, 304, 279, 4892, 6460, 315, 9635, 627, 22111, 11692, 0, 16056, 291, 23336, 18247, 848, 1705, 520, 42102, 2198, 1629 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 22111, 4967, 10708, 0, 16056, 291, 23336, 76908, 6574, 11, 21850, 269, 2836, 2508, 6574, 11, 17496, 16627, 6574, 11, 17496, 10517, 17535, 323, 10283, 315, 10708, 369, 26741, 323, 28913, 3217, 11, 51647, 2294, 66027, 5542, 5633, 311, 2567, 603, 389, 1057, 45713, 13, 1226, 15253, 27590, 53684, 2078, 4236, 11, 20769, 4236, 323, 5575, 4183, 3777, 320, 1242, 34, 8, 4236, 311, 2586, 323, 5249, 603, 627, 22111, 11376, 0, 578, 95247, 23336, 18247, 36781, 323, 18247, 4338, 2968, 2128, 374, 7982, 1389, 584, 527, 4857, 8824, 369, 2731, 2680, 311, 64908, 3600, 323, 3339, 2561, 279, 1633, 5652, 22972, 323, 14830, 19622, 369, 2911, 304, 279, 4892, 6460, 315, 9635, 627, 22111, 11692, 0, 16056, 291, 23336, 18247, 848, 1705, 520, 42102, 2198, 1629, -100 ]
package weibo4j; import java.util.ArrayList; import java.util.List; import weibo4j.org.json.JSONArray; import weibo4j.org.json.JSONException; import weibo4j.org.json.JSONObject; import weibo4j.http.Response; /** * @author SinaWeibo * */ public class Emotion extends WeiboResponse{ private static final long serialVersionUID = -4096813631691846494L; private String phrase; private String type; private String url; private boolean is_hot; private boolean is_common; private int order_number; private String category; public Emotion(Response res) throws WeiboException { super(res); JSONObject json = res.asJSONObject(); try { phrase = json.getString("phrase"); type = json.getString("type"); url = json.getString("url"); is_hot= json.getBoolean("is_hot"); order_number = json.getInt("order_number"); category = json.getString("category"); is_common = json.getBoolean("is_common"); } catch (JSONException je) { throw new WeiboException(je.getMessage() + ":" + json.toString(), je); } } public Emotion(JSONObject json) throws WeiboException { try { phrase = json.getString("phrase"); type = json.getString("type"); url = json.getString("url"); is_hot= json.getBoolean("is_hot"); order_number = json.getInt("order_number"); category = json.getString("category"); is_common = json.getBoolean("is_common"); } catch (JSONException je) { throw new WeiboException(je.getMessage() + ":" + json.toString(), je); } } static List<Emotion> constructEmotions(Response res) throws WeiboException { try { JSONArray list = res.asJSONArray(); int size = list.length(); List<Emotion> emotions = new ArrayList<Emotion>(size); for (int i = 0; i < size; i++) { emotions.add(new Emotion(list.getJSONObject(i))); } return emotions; } catch (JSONException jsone) { throw new WeiboException(jsone); } catch (WeiboException te) { throw te; } } public Emotion() { super(); } public String getPhrase() { return phrase; } public void setPhrase(String phrase) { this.phrase = phrase; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public boolean isIs_hot() { return is_hot; } public void setIs_hot(boolean isHot) { is_hot = isHot; } public boolean isIs_common() { return is_common; } public void setIs_common(boolean isCommon) { is_common = isCommon; } public int getOrder_number() { return order_number; } public void setOrder_number(int orderNumber) { order_number = orderNumber; } public String getCategory() { return category; } public void setCategory(String category) { this.category = category; } @Override public String toString() { return "Emotion [phrase=" + phrase + ", type=" + type + ", url=" + url + ", is_hot=" + is_hot + ", is_common=" + is_common + ", order_number=" + order_number + ", category=" + category + "]"; } }
{ "redpajama_set_name": "RedPajamaGithub" }
6,094
[ 128000, 1757, 584, 29946, 19, 73, 401, 475, 1674, 2013, 11315, 280, 475, 1674, 2013, 5937, 401, 475, 584, 29946, 19, 73, 2726, 4421, 69654, 280, 475, 584, 29946, 19, 73, 2726, 4421, 69546, 280, 475, 584, 29946, 19, 73, 2726, 4421, 41655, 401, 475, 584, 29946, 19, 73, 7109, 12859, 401, 1784, 353, 571, 3170, 328, 2259, 1687, 29946, 198, 1235, 740, 898, 538, 5867, 6082, 2289, 1226, 29946, 2647, 517, 2514, 1118, 1620, 1317, 24598, 284, 482, 12378, 25091, 18199, 11739, 10336, 24734, 19, 43, 401, 2514, 935, 17571, 401, 2514, 935, 955, 401, 2514, 935, 2576, 401, 2514, 2777, 374, 34533, 401, 2514, 2777, 374, 21790, 401, 2514, 528, 2015, 5617, 401, 2514, 935, 5699, 401, 1241, 5867, 6082, 49079, 594, 8, 3872, 1226, 29946 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1757, 584, 29946, 19, 73, 401, 475, 1674, 2013, 11315, 280, 475, 1674, 2013, 5937, 401, 475, 584, 29946, 19, 73, 2726, 4421, 69654, 280, 475, 584, 29946, 19, 73, 2726, 4421, 69546, 280, 475, 584, 29946, 19, 73, 2726, 4421, 41655, 401, 475, 584, 29946, 19, 73, 7109, 12859, 401, 1784, 353, 571, 3170, 328, 2259, 1687, 29946, 198, 1235, 740, 898, 538, 5867, 6082, 2289, 1226, 29946, 2647, 517, 2514, 1118, 1620, 1317, 24598, 284, 482, 12378, 25091, 18199, 11739, 10336, 24734, 19, 43, 401, 2514, 935, 17571, 401, 2514, 935, 955, 401, 2514, 935, 2576, 401, 2514, 2777, 374, 34533, 401, 2514, 2777, 374, 21790, 401, 2514, 528, 2015, 5617, 401, 2514, 935, 5699, 401, 1241, 5867, 6082, 49079, 594, 8, 3872, 1226, 29946, -100 ]
Digital First Media, FAZ, Google, Schibsted and Nation join Publish Asia programme SINGAPORE, April 15, 2015 /PRNewswire/ — Publish Asia 2015, the annual Asian newspaper conference from the World Association of Newspapers and News Publishers (WAN-IFRA), is set to take place in Bangkok, Thailand from April 28-30. With over 300 delegates, 40 speakers from 17 different countries, 19 conference sessions, 3 break-out sessions, several in-depth pre-conference masterclasses, a technology and services Expo featuring 21 sponsors and exhibitors and two glamorous evening networking events, Publish Asia 2015 will gather the Asian news media elite for three days of exciting learning and networking. Registrations are open online for one more week at: http://www.publishasia.com For its 16th edition, Publish Asia will focus on case studies showing how media companies across the globe are defining and implementing innovative strategies to consolidate their print operations while building up sound foundations to secure digital growth. Key sessions will cover the following topics: Global Media Trends Audience Development The Resilience for Print Diversifying Revenue Streams From Newspaper to Broadcaster Using Data & Analytics to Increase Profitability Advertising Performances and Market Expectations Safe journalists, Safe Sources Content Discovery Optimization Re-engineering Newsrooms for the Multimedia Era Injecting Innovation into News Operations Recently confirmed speakers at Publish Asia 2015 include: Ludwig Coenen, Head of Online Marketing at Frankfurter Allgemeine Zeitung (FAZ), one of Germany's most respected quality dailies. A Search Engine Optimization specialist with a track record for boosting online audiences, Coenen will explain at Publish Asia how FAZ has strengthened its online reach by building a separate content-index and by implementing dynamic widgets, automated recommendations and other innovative solutions. Helje Solberg, CEO/Editor of VGTV, Schibsted's web-native TV venture. VGTV is a next-generation business investment which aims at growing a substantial audience among video-centric, tablet and smartphone-using millenials. Kirk MacDonald, President of AdTaxi and Executive Vice President of Sales for Digital First Media which jointly manages Journal Register Company and MediaNews Group with more than 800 print and online products serving 64 million Americans each month. At Publish Asia, MacDonald will share Digital First Media's vision of the digital ecosystem and explain what are his company's key orientations for growing its digital business. Thepchai Yong, Group Editor-in-Chief of the Nation Multimedia Group, a multi-media company that operates 2 digital TV channels and 3 dailies. Yong is also the former director of the Thai Public Broadcasting Service. He will speak of the challenges for publishing companies to diversify in broadcasting. Mark Pope, the Managing Director of Dow Jones Asia Pacific and Publisher of The Wall Street Journal Asia. He will share some of the WSJ's current top business priorities and give some strategy insights for growing its business across Asian markets. Dushyant Khare, Head of Google's partnerships business with top digital & mobile publishers across SEA & India. The companies Khare partners with include news & broadcast media, telcos, ISPs, eCommerce and gaming organizations. He will speak at Publish Asia of new online business models, how to measure impact, and areas of cooperation for publishers and Internet companies. Other confirmed speakers include: Stephen Rae, Group Editor in Chief, Independent News & Media, Ireland Maria Ressa, CEO and Executive Editor, Rappler, Philippines Helena Phua, Executive Vice President – APAC, INYT, HK Supakorn Vejjajiva, President & COO, Post Publishing, Thailand Vachara Vacharaphol, CEO, VG3Trend, Thailand JeongDo Hong, CEO, JMNet, South Korea Mario Garcia, CEO, Garcia Media, USA Pit Gottschalk, Managing Director, Axel Springer, Germany Frederique Lancien, Digital and New Business Director, Groupe L'Equipe, France Iain Martin, Asia Editor, Storyful, Hong Kong Pichai Chuensuksawadi, Group Chief Editor, Post Publishing, Thailand Abdul Jalil Hamid, Group Editor in Chief, NSTP, Malaysia Keith Cheong, Head of Sales, SPH Digital, Singapore Wannee Ruttanaphon, Chairman, IPG Mediabrands, Thailand Nada Tielu, Head of Native, Fairfax Media, Australia Yves Bougon, SVP MD, Asia, Hearst Magazines, Japan Roche Chew, GM Agency Sales, NSTP, Malaysia Andreas Vogiatzakis, CEO, OmnicomMediaGroup, Malaysia The full conference programme is available at: http://www.publishasia.com About WAN-IFRA WAN-IFRA (www.wan-ifra.org), based in Paris, France, and Frankfurt, Germany, with subsidiaries in Singapore, India and Mexico is the world's association of newspapers and news publishers. It represents more than 18,000 publications, 15,000 online sites and over 3,000 companies in more than 120 countries. WAN-IFRA Asia Pacific office, based in Singapore, helps to bring services such as trainings, events, consulting and publications closer to members in the region. Inquiries to: Wilson Leong, Operations Manager, WAN-IFRA Asia Pacific Pte Ltd, Phone: +65.6562-8446, E-Mail: [email protected], http://www.publishasia.com, http://wwwwan-ifra.org/ama, http://www.wan-ifra.org Logo – http://photos.prnasia.com/prnh/20150319/8521501726 Source: WAN-IFRA Menara Landmark Medical Suites Expands Healthcare and Medical Offerings in Johor Bahru JOHOR BAHRU, Malaysia, April 16, 2015 /PRNewswire/ — Private medical services have become an attractive alternative in Malaysia as the demand for faster, more customised medical care rises in tandem with affluence and heightened medical knowledge. This demand has given rise to the establishments of medical suites that deliver extensive range of medical and healthcare services promising more personalised attention and care. The latest of such development is Menara Landmark Medical Suites. Strategically located in Iskandar Malaysia's Flagship A of Johor Bahru City, Menara Landmark Medical Suites comprises four floors in Menara Landmark to provide a spectrum of medical services by highly specialised and well-known practitioners. This includes the Systemic Dialysis Centre led by Dr. Chin Chee Khin, and JB Oncology Centre, where its principal oncologist, Dr. A. Radzi, offers standard and complementary cancer treatment. Other services include Gribbles Pathology (M) Sdn. Bhd., TMC Fertility and Women's Specialist Centre led by Dr. Fabian James Kurian, DMT Physio Sdn. Bhd., Bay Audiology (Malaysia) and well-renowned aesthetics and plastic surgery practice Beverly Wilshire Medical Centre (BWMC), led by Prof. Dato' Dr. David Cheah Sin Hing. In addition to that, Clarity Radiology will also open its doors later this year. Menara Landmark's Managing Director of Business Development Mr. Tay Hui Fong says, "Our vision is to assemble like-minded medical professionals and create a symbiosis amongst practices. By doing that, we are providing convenience to patients who will benefit from having medical services in one location." Patients will definitely benefit from the collegiality amongst practitioners at Menara Landmark Medical Suites. Individual practices are able to collaborate, referring patients to practitioners and other medical service providers within the confines of Menara Landmark. Should a doctor require blood work, he merely has to consult Gribbles' pathology laboratory. Practitioners have the option of conducting surgery within the building, thanks to BWMC's state-of-the-art operating theatre manned by professional, dedicated and experienced personnel. The building also has an ambulance parking bay, more than 600 parking spaces for patients and visitors, 24-hour security and a food court. It is also conveniently connected to DoubleTree by Hilton, giving patients and their family the option of recovery and rest in first-class accommodations. Menara Landmark Medical Suites is not only giving Malaysians access to the country's best medical minds, it will also accelerate medical-tourism to attract regional and international patients. After all, Malaysia has made a name for itself as "medical travel's best-kept secret." With an emphasis on high-quality medical infrastructure, facilities and multi-lingual personnel from diverse cultural backgrounds, Malaysia provides affordable medical care that rivals Japan, the United States and many countries in Europe. Menara Landmark Medical Suites is also in line with Iskandar Malaysia's Smart and Healthy Cities and Communities initiatives to ensure the economic region stays connected and with a higher quality of life through utilising and advancing technology. Within driving distance of two airports — Senai International and Singapore's Changi International just across the Causeway — Menara Landmark Medical Suites is a genuine medical tourism contender. For more information on Menara Landmark Medical Suites, visit http://www.daiman.com.my/landmark_medical.html. Menara Landmark Medical Suites is owned by Daiman Properties Sdn. Bhd. Source: Daiman Development Berhad FDA Advisory Committee Reviews Takeda's Alogliptin EXAMINE Cardiovascular Safety Outcomes Trial DEERFIELD, Illinois and OSAKA, Japan, April 15, 2015 /PRNewswire/ — Takeda Pharmaceuticals U.S.A. Inc. and Takeda Pharmaceutical Company Limited, ("Takeda") today announced that members of the Endocrinologic and Metabolic Drugs Advisory Committee (EMDAC) of the United States (U.S.) Food and Drug Administration (FDA) convened to review one of the first cardiovascular (CV) outcomes trials (CVOT) in patients with Type 2 diabetes, EXAMINE (EXamination of CArdiovascular OutcoMes: AlogliptIN vs. Standard of CarE in Patients with Type 2 Diabetes Mellitus and Acute Coronary Syndrome). The Committee voted that, based on the data presented, the results of EXAMINE demonstrate that the use of alogliptin in patients with Type 2 diabetes has an acceptable CV risk profile. All 16 voting members of the Committee supported this recommendation. In addition, 13 out of 16 Committee members voted that safety information from the EXAMINE study should be added to the alogliptin labeling and the other three members voted for no change to the labeling. "Patients with diabetes are at an increased risk of cardiac related comorbidities such as heart disease and stroke, as well as hospitalized heart failure and cardiac death," said William B. White, MD, Professor, Calhoun Cardiology Center, University of Connecticut School of Medicine, Farmington, Connecticut, U.S., on behalf of the EXAMINE Steering Committee and Investigators. "Today's Advisory Committee recommendation provides important information about alogliptin that may be useful for prescribing physicians as they consider appropriate treatment options for patients with Type 2 diabetes." EXAMINE, a large, randomized, double-blind, placebo-controlled outcomes study, was completed as a result of the U.S. FDA 2008 Guidance, titled "Guidance for Industry: Diabetes Mellitus – Evaluating Cardiovascular Risk in New Antidiabetic Therapies to Treat Type 2 Diabetes," for all Type 2 diabetes treatments under development since the issuance of the guidance. The EXAMINE trial was designed to evaluate CV safety following treatment with alogliptin in addition to standard of care, versus placebo in addition to standard of care, in patients with Type 2 diabetes who were at high risk for major adverse cardiovascular events (MACE) due to recent acute coronary syndrome (ACS). The trial's primary objective was to evaluate non-inferiority of CV risk based on a primary composite endpoint of CV death, nonfatal myocardial infarction (MI) and nonfatal stroke. "Takeda is pleased with the recommendation of the Committee and we remain confident in alogliptin as an important treatment option for patients living with Type 2 diabetes," said Robert Jackson, MD, MBA, Vice President, Global Medical Head, CVM-Respiratory Therapy, Takeda Pharmaceuticals International. "Today's outcome reinforces that the global EXAMINE trial met the FDA postmarketing guidance requirements. The trial is important as it assesses cardiovascular safety in patients known to be at a high risk for cardiovascular disease." Patient safety is a top priority for Takeda, and we remain committed to ongoing clinical research to understand and investigate potential safety concerns. Alogliptin has been studied as a monotherapy and in combination with metformin, a sulfonylurea (SU), a thiazolidinedione (TZD), and insulin in a comprehensive global clinical program comprising more than 50 clinical studies involving approximately 1,000 healthy adult patients and more than 17,000 adult patients with Type 2 diabetes. The FDA also asked the Committee to discuss whether additional alogliptin studies are needed and to make any recommendations regarding the evaluation of the risk-benefit profile for alogliptin. In addition to discussing EXAMINE's pre-specified primary CV outcome data, the Committee discussed other study analyses including heart failure, study data by geographic region, and other data including renal safety findings. The outcome of the Advisory Committee meeting is non-binding and will be taken into consideration by the FDA. Alogliptin is the first dipeptidyl peptidase-4 inhibitor (DPP-4i) to report out results on CV safety outcomes in Type 2 diabetes patients who are at high risk due to recent ACS. Heart disease, or cardiovascular disease (CVD), is a commonly occurring comorbid condition in patients living with Type 2 diabetes. About the EXAMINE Trial EXAMINE randomized 5,380 patients in 49 countries with Type 2 diabetes with an ACS within the previous 15-90 days. The EXAMINE primary endpoint of non-inferiority compared to placebo in addition to standard of care was met, showing no increase in CV risk in a Type 2 diabetes patient population at high risk for CV events based on the primary composite endpoint of CV death, nonfatal MI and nonfatal stroke. The primary endpoint occurred at similar rates in the alogliptin (n=305) and placebo (n=316) groups (in 11.3 percent of patients vs. 11.8 percent of patients during a median follow-up period of 18 months; hazard ratio (HR), 0.96; upper boundary of the one-sided repeated CI, 1.16). About Alogliptin Alogliptin is a DPP-4i for the treatment of Type 2 diabetes in adults as an adjunct to diet and exercise. DPP-4is are designed to slow the inactivation of incretin hormones GLP-1 (glucagon-like peptide-1) and GIP (glucose-dependent insulinotropic peptide). As a result, an increased amount of active incretins enables the pancreas to secrete insulin in a glucose-dependent manner, thereby assisting in the management of blood glucose levels. Alogliptin is approved as a monotherapy and also in fixed-dose combination (FDC) with pioglitazone and metformin HCl for the treatment of Type 2 diabetes in adults as adjuncts to diet and exercise. These therapies are not for treatment of Type 1 diabetes or diabetic ketoacidosis. Takeda launched alogliptin in Japan in 2010. Since that time alogliptin has been launched in a variety of markets across the globe including the U.S. in 2013, as well as Italy, Austria, the United Kingdom, China, Mexico andSouth Korea. Diabetes prevalence continues to grow worldwide, with more than 382 million people impacted by diabetes. As the disease becomes increasingly prevalent, Takeda remains focused on expanding access of alogliptin, especially in emerging markets like Brazil, India and Russia. About NESINA, KAZANO and OSENI NESINA is a DPP-4i for the treatment of Type 2 diabetes in adults as an adjunct to diet and exercise. DPP-4is slow the inactivation of incretin hormones GLP-1 and GIP. As a result, an increased amount of active incretins enables the pancreas to secrete insulin in a glucose-dependent manner, thereby assisting in the management of blood glucose levels. KAZANO is an FDC therapy which combines alogliptin and metformin HCl in a single tablet for the treatment of Type 2 diabetes in adults as an adjunct to diet and exercise. Metformin HCl is a biguanide, a widely used anti-diabetes medication that acts primarily by reducing the amount of glucose produced by the liver. OSENI is an FDC therapy which combines alogliptin and pioglitazone in a single tablet, for the treatment of Type 2 diabetes in adults as an adjunct to diet and exercise. Pioglitazone is a TZD that decreases insulin resistance, a condition in which the body does not efficiently use the insulin it produces to control blood glucose levels, and is approved in adults for the treatment of Type 2 diabetes as an adjunct to diet and exercise. An NDA for alogliptin and pioglitazone was approved in July 2011 by the Japanese Ministry of Health, Labour and Welfare for the treatment of Type 2 diabetes, and the therapy is currently available under the brand name LIOVEL in Japan. Indications for NESINA (alogliptin) 6.25 mg, 12.5 mg, and 25 mg Tablets; KAZANO (alogliptin and metformin HCl) 12.5 mg/500 mg and 12.5 mg/1000 mg Tablets; and OSENI (alogliptin and pioglitazone) 25 mg/15 mg, 25 mg/30 mg, 25 mg/45 mg, 12.5 mg/15 mg, 12.5 mg/30 mg, and 12.5 mg/45 mg Tablets NESINA, KAZANO, and OSENI are indicated as an adjunct to diet and exercise to improve glycemic control in adults with Type 2 diabetes mellitus. NESINA, KAZANO, and OSENI are not for treatment of Type 1 diabetes or diabetic ketoacidosis. WARNING: CONGESTIVE HEART FAILURE—for OSENI Thiazolidinediones, including pioglitazone, which is a component of OSENI, cause or exacerbate congestive heart failure in some patients. After initiation of OSENI, and after dose increases, monitor patients carefully for signs and symptoms of heart failure (e.g., excessive, rapid weight gain, dyspnea, and/or edema). If heart failure develops, it should be managed according to current standards of care and discontinuation or dose reduction of pioglitazone in OSENI must be considered. OSENI is not recommended in patients with symptomatic heart failure. Initiation of OSENI in patients with established New York Heart Association (NYHA) Class III or IV heart failure is contraindicated. WARNING: LACTIC ACIDOSIS—for KAZANO Lactic acidosis is a rare, but serious complication that can occur due to metformin accumulation. The risk increases with conditions such as sepsis, dehydration, excess alcohol intake, hepatic impairment, renal impairment, and acute congestive heart failure. The onset is often subtle, accompanied only by nonspecific symptoms such as malaise, myalgias, respiratory distress, increasing somnolence, and nonspecific abdominal distress. Laboratory abnormalities include low pH, increased anion gap, and elevated blood lactate. If acidosis is suspected, KAZANO should be discontinued and the patient hospitalized immediately. NESINA, KAZANO, and OSENI are contraindicated in patients with a history of serious hypersensitivity reaction to any of the components of these products, such as anaphylaxis, angioedema, or severe cutaneous adverse reactions. KAZANO is contraindicated in patients with renal impairment (e.g., serum creatinine levels ≥1.5 mg/dL for men, ≥1.4 mg/dL for women or abnormal creatinine clearance), which may also result from conditions such as cardiovascular collapse (shock), acute myocardial infarction, and septicemia. KAZANO is contraindicated in patients with acute or chronic metabolic acidosis, including diabetic ketoacidosis. Do not initiate OSENI in patients with established NYHA Class III or IV heart failure. Warnings and Precautions—for KAZANO Lactic acidosis: Warn against excessive alcohol intake. KAZANO is not recommended in hepatic impairment and is contraindicated in renal impairment. Ensure normal renal function before initiating and at least annually thereafter. Temporarily discontinue in patients undergoing radiologic studies with intravascular iodinated contrast materials or any surgical procedures necessitating restricted intake of food and fluids. Lactic acidosis due to metformin accumulation during therapy is fatal in approximately 50% of cases. The risk increases in patients with renal impairment, congestive heart failure requiring drug treatment, and with increasing age. Vitamin B12 deficiency: Metformin may lower Vitamin B12 levels. Monitor hematologic parameters annually. Warnings and Precautions—for OSENI Congestive heart failure: Fluid retention may occur and can exacerbate or lead to congestive heart failure. Combination use with insulin and use in congestive heart failure NYHA Class I and II may increase risk. Monitor patients for signs and symptoms. Edema: Dose-related edema may occur. Use with caution in patients with edema. Fractures: Increased incidence in female patients. Apply current standards of care for assessing and maintaining bone health. Bladder cancer: Data suggest an increased risk of bladder cancer in pioglitazone users. Data also suggest that the risk increases with duration of use. Do not use OSENI in patients with active bladder cancer. Use caution when using in patients with a prior history of bladder cancer. Tell patients to promptly report any sign of hematuria or other symptoms such as dysuria or urinary urgency as these may be due to bladder cancer. Macular edema: Macular edema has been reported in some patients taking pioglitazone. Recommend regular eye exams. Instruct patients to report any visual changes promptly. Ovulation: Therapy with pioglitazone may result in ovulation in some premenopausal anovulatory women. Warnings and Precautions—for NESINA, KAZANO, and OSENI Acute pancreatitis: There have been postmarketing reports of acute pancreatitis. If pancreatitis is suspected, promptly discontinue NESINA, KAZANO, or OSENI. Hypersensitivity: There have been postmarketing reports of serious hypersensitivity reactions in patients treated with alogliptin such as anaphylaxis, angioedema or severe cutaneous adverse reactions. In such cases, promptly discontinue NESINA, KAZANO, or OSENI, assess for other potential causes, institute appropriate monitoring and treatment, and initiate alternative treatment for diabetes. Use caution in a patient with a history of angioedema with another DPP-4i because it is unknown whether such patients will be predisposed to angioedema. Hepatic effects: Postmarketing reports of hepatic failure, sometimes fatal. Causality cannot be excluded. Baseline liver test panel is recommended. If liver injury is detected, promptly interrupt NESINA, KAZANO, or OSENI and assess patient for probable cause, then treat cause if possible, to resolution or stabilization. Do not restart NESINA, KAZANO, or OSENI if liver injury is confirmed and no alternate etiology can be found. Use with caution in patients with hepatic impairment. Hypoglycemia: Insulin and insulin secretagogues are known to cause hypoglycemia. A lower dose of the insulin or insulin secretagogue may be required to minimize the risk when used in combination with NESINA, KAZANO, or OSENI. Macrovascular outcomes: There have been no clinical studies establishing conclusive evidence of macrovascular risk reduction with NESINA, KAZANO, OSENI, or any other anti-diabetic drug. Most common adverse reactions (>4% of patients treated with NESINA 25 mg and more frequently than in patients who received placebo) were nasopharyngitis (4.4%), headache (4.2%), and upper respiratory tract infection (4.2%). Most common adverse reactions (≥4% of patients treated with co-administration of alogliptin and metformin) were upper respiratory tract infection (8%), nasopharyngitis (6.8%), diarrhea (5.5%), hypertension (5.5%), headache (5.3%), back pain (4.3%), and urinary tract infection (4.2%). Most common adverse reactions (≥4% of patients treated with co-administration of alogliptin and pioglitazone) were nasopharyngitis (4.9%), back pain (4.2%), and upper respiratory tract infection (4.1%). Use of OSENI with CYP2C8 strong inhibitors (e.g., gemfibrozil) will, or inducers (e.g., rifampin) may, require dose adjustment. Cationic drugs eliminated by renal tubular secretion should be used with caution if taken with KAZANO. Please see accompanying Full Prescribing Information, including Medication Guide, for NESINA. Please see accompanying Full Prescribing Information, including Medication Guide, for KAZANO. Please see accompanying Full Prescribing Information, including Medication Guide, for OSENI. About Takeda Pharmaceuticals U.S.A., Inc. Takeda Pharmaceuticals U.S.A., Inc., located in Deerfield, Ill., is the U.S. marketing and sales organization of Takeda Pharmaceutical Company Limited, Osaka, Japan. The company has a commercial presence covering more than 70 countries, with particular strength in Asia, North America, Europe and fast-growing emerging markets including Latin America, Russia-CIS and China. Areas of focus include cardiovascular and metabolic, oncology, respiratory and immunology, central nervous system, general medicine, and vaccines. Takeda is a research-based global company with its main focus on pharmaceuticals. As the largest pharmaceutical company in Japan and one of the global leaders of the industry, Takeda is committed to striving towards better health for people worldwide through leading innovation in medicine. Through strategic acquisitions, Takeda has been transforming itself, broadening its therapeutic expertise and geographic outreach. Additional information about Takeda Pharmaceuticals U.S.A., Inc. is available through its website, www.takeda.us. Located in Osaka, Japan, Takeda is a research-based global company with its main focus on pharmaceuticals. As the largest pharmaceutical company in Japan and one of the global leaders of the industry, Takeda is committed to strive towards better health for people worldwide through leading innovation in medicine. Additional information about Takeda is available through its corporate website, www.takeda.com. Elissa J. Johnsen [email protected] Takeda Pharmaceutical Company Limited Corporate Communications Dept. Vienna: 2014 Second-Best Congress Year Ever Vienna reported its second-best congress result ever for 2014: compared to 2013, there were increases in events, as well as in the resulting overnights and value-added, the final result just falling short of 2012's record. VIENNA, April 15, 2015 /PRNewswire/ — "In 2014 Vienna achieved significant increases in all key congress indicators compared to the previous year," reports Norbert Kettner, Director of the Vienna Tourist Board. "The number of conferences and corporate events rose by 6% to 3,582, a new record level. The resulting overnights were also up 6%, so the total of 1,490,695 was only slightly below the previous record in 2012. Austrian value-added induced by Vienna's meetings industry increased 8% to 898.9 million euros, also the second-best figure after 2012." In 2014 the Vienna conference industry therefore contributed 11% to Vienna's total volume of overnights of 13.5 million. 17,000 year-round jobs were secured throughout Austria. According to the statistics of the International Congress and Convention Association (ICCA), for years now Vienna has been one of the top three congress metropolises worldwide. "This success is attributable to many factors," explains Kettner. "Meetings in the Austrian capital are optimally supported by urban and academic facilities, and with 36 licensed certification agencies for Green Meetings, Vienna has already demonstrated vision with respect to environmental sustainability. The city's growing importance as a central European hub is also proving a valuable asset. New upmarket hotel accommodation and the creation of a new district around the Central Station have provided further impetus. Vienna currently has approximately 64,000 beds and is served by direct flights from about 170 destinations worldwide. The Vienna Tourism Strategy 2020 aims for another 20 direct connections from major cities worldwide – 72% of congress delegates arrive by plane. Vienna Tourist Board Isabella Rauter Tel.: +43-1-211-14-301 E-mail: [email protected] http://www.vienna.convention.at Asia Alternatives Announces Fund Closings of over US$1.8 billion HONG KONG, BEIJING, SHANGHAI and SAN FRANCISCO, April 15, 2015 /PRNewswire/ — Asia Alternatives, one of the largest independent Asian private equity fund-of-funds, today announced the final close of over US$1.8 billion in new commitments across Asia Alternatives Capital Partners IV, LP ("AACP IV") and its related fund vehicles ("Fund IV"). "We are extremely grateful that a significant number of our original limited partners continue to support us and we are pleased to have added a number of highly respected and well-recognized new investors in Fund IV," said Melissa Ma, Co-Founder and Managing Director of Asia Alternatives. The largest of the Funds is Asia Alternatives Capital Partners IV, LP which, along with its sleeve fund focused on investments outside Japan, AACP IV Ex-Japan Investors, LP, closed on US$1 billion of committed capital, above their combined target of US$750 million.AACP IV is the successor fund to Asia Alternatives Capital Partners III, LP ("AACP III"), which closed in July 2012. Earlier funds include Asia Alternatives Capital Partners II, LP ("AACP II"), which closed in September 2008, and Asia Alternatives Capital Partners, LP ("AACP I"), which closed in May 2007. The Fund IV closings totaling over US$1.8 billion represent an approximate 20% increase over the last announced fund closings in August 2012 of over US$1.5 billion across AACP III and its related fund vehicles. "In the 10th year since our founding, Asia Alternatives is proud of the strong partnerships we have formed with both our investors across the world and with our fund managers across China, India,Japan, Korea, South East Asia and Australia. The Asia private equity ecosystem has developed well over the last decade and we look to further growth for years to come," Ma continued. The Funds are focused on building a diversified portfolio with an emphasis on top-performing local Asian fund managers. Asia Alternatives invests in Greater China, Japan, Korea, South East Asia, Indiaand Australia and across buyout, growth, venture capital and special situations funds. The firm has invested in over 40 managers in Asia since inception. "Portfolio construction is a critical focus at Asia Alternatives, as we seek risk diversification across geographies, strategies and managers that we actively monitor. The opportunity set for Asia private equity is continuously evolving and we intend to capitalize on those investments that provide the best risk-adjusted returns," Ma concluded. Approximately 80% of investors in AACP IV were from pre-existing relationships in AACP III, AACP II and AACP I. Investors in the Funds represent a global pool of private capital sources, such as state and corporate pension funds, foundations, university endowments, insurance companies and family offices in the United States, Canada, Europe and Asia. Institutional investors across all Fund IV vehicles include Cathay Life Insurance Co., Comprehensive Financial Management, Florida State Board of Administration, Jasper Ridge Partners, Massachusetts Mutual Life Insurance Company, New York StateCommon Retirement Fund, San Francisco City and County Employees' Retirement System, Teachers' Retirement System of the State of Illinois, University of Missouri, University of Vermont and Virginia Retirement System. Asia Alternatives is one of the first independently formed Asian private equity fund-of-funds. The firm also received the first Limited Partner QFLP (Qualified Foreign Limited Partner) license in China, which allowed Asia Alternatives to invest in selected, qualified RMB-denominated private equity investments. Eaton Partners, LLC acted as exclusive placement agent for Asia Alternatives and Pillsbury Winthrop Shaw Pittman LLP served as legal counsel. About Asia Alternatives Management LLC Asia Alternatives is a solution platform dedicated to helping institutional investors make investments in private equity across Asia. The firm was founded in 2005 by Melissa Ma, Laure Wang and Rebecca Xu. Asia Alternatives is currently managing Asia Alternatives Capital Partners, LP ($515 million), Asia Alternatives Capital Partners II, LP ($950 million), Asia Alternatives Capital Partners III, LP ($908 million) and Asia Alternatives Capital Partners IV, LP and AACP IV Ex-Japan Investors, LP (collectively $1 billion) and other funds, all of which are Asia-focused private equity funds-of-funds. The firm has over $6.5 billion in assets under management. Asia Alternatives invests with top performing private equity fund managers across Asia primarily inGreater China (Mainland China, Taiwan, and Hong Kong), Japan, Korea, South East Asia, India andAustralia and that are diversified across buyout, growth and expansion, venture capital and special situations funds. The firm currently has over 35 professionals across offices in Hong Kong, Beijing,Shanghai and San Francisco. For more information, please visit www.asiaalternatives.com. This press release does not constitute the offer of advisory services or offer of a security or the solicitation of an investment. Melissa J. Ma – Co-Founder & Managing Director Asia Alternatives Management LLC [email protected] Steve Bruce/Taylor Ingraham/John Stavinga ASC Advisors LLC [email protected]; [email protected]; [email protected] Media Contact for Asia Ex-Japan: Richard Barton/Grace Zhang Newgate Communications Tel: (852)3758 2686 / (852)3758 2687 [email protected]; [email protected] Media Contact for Japan: Deborah Hayden/Ginger Lin [email protected]; [email protected] Avis Expands Operations in Taiwan with the Opening of 2 New Locations SINGAPORE and TAIPEI /PRNewswire/ — Avis Car Rental expands its footprint in Taiwan by launching operations at two new locations namely at 208, Banxin Road, Banqiao District, New Taipei City, which is minutes away from Banqiao Train Station and at No. 48, Zhongxing Road, West District, Chiayi City, close to the Taichung Railway Rear station. These new facilities are now open and ready to serve local city residents and travellers arriving by train. "Taiwan's robust economy and leading position in financial and manufacturing has increased the demand for car rental and leasing services," said Larry De Shon, president, International, Avis Budget Group. "We're thrilled to deliver in line with our key strategic initiative and once again, expand our global footprint in this region." Both locations provide customers with wide variety of vehicles offering rent-a-car and leasing. Business and leisure travellers will benefit from quality, well-maintained vehicles from manufacturers such as Ford, Mercedes Benz and Nissan and services such as Global Positioning System (GPS) devices, child safety seats, vehicle damage coverage options and personal property protection packages. For more information or to make a reservation, visit www.avis-taiwan.com or call 1 800 600 601 About Avis in Taiwan In 2012, Avis launches its Taiwan license operation. Avis Taiwan is the only international car rental company, as well as the only car rental which provides cross-border and cross-strait to Hong Kong and Macau. Currently, Avis provides long-term lease, short-term rental and chauffeur drive promising efficient and convenient car rental service for travelers in Taiwan. About Avis in Asia In Asia, Avis is a leading provider of vehicle rental; vehicle leasing and limousine/chauffeur drive services operating in more than 300 locations through a network of wholly owned subsidiaries, joint ventures and licensee agreements in 20 markets. Avis opened its first operations in Asia in 1970 in Hong Kong. Throughout the 1970's Avis grew steadily in the region, with operations launched in Singapore, the Philippines, Pakistan, Malaysia andIndonesia. More recently, developments have included openings in Vietnam, Taiwan, Laos and Cambodia. Avis Car Rental operates one of the world's best-known car rental brands with approximately 5,750 locations in more than 165 countries. Avis has a long history of innovation in the car rental industry and is one of the world's top brands for customer loyalty. Avis is owned by Avis Budget Group, Inc. (NASDAQ: CAR), which operates and licenses the brand throughout the world. For more information, visit www.avis.com. Grace Banto, Avis Asia (+65) 6737 1668 Source: Avis Related stocks: NASDAQ-NMS:CAR http://www.avis-taiwan.com http://www.avis.com New Geological Analysis Greatly Bolsters Probability Tomb of Jesus has Been Found — Geochemical comparison may prove "James ossuary" likely came from Israeli tomb containing cluster of New Testament names, according to Associated Producers — Creators of controversial "Lost Tomb of Jesus" say study corroborates findings of the 2007 documentary JERUSALEM, April 15, 2015 /PRNewswire/ — A recently completed study by an Israeli geologist has greatly increased the probability that an ancient tomb on the outskirts of Jerusalem is the final resting place of Jesus of Nazareth and his family. The new findings by Dr. Aryeh Shimron have linked an ossuary, or bone box, inscribed with the phrase "James, son of Joseph, brother of Jesus" by its chemical "fingerprint" to a tomb encased in a rose garden between a group of nondescript apartments in Talpiot, a Jerusalem suburb. The tomb, discovered during construction in 1980, housed a remarkable collection of ossuaries upon which were inscribed several names associated with the family of the New Testament Jesus. Although the names in the Talpiot Tomb, (which included "Jesus, son of Joseph," "Maria," "Mariamene," "Yose," and others) were common in first-century Jerusalem, a cluster of names associated with Jesus in one location is statistically compelling, and unique in the archeological evidence of his life. If yet another name associated with the New Testament family can now be sited at Talpiot, it becomes a kind of statistical snowball and creates a near-certainty that the tomb of Jesus of Nazareth has been found. "I think I've got really powerful, virtually unequivocal evidence that the James ossuary spent most of its lifetime, or death time, in the Talpiot Tomb," Shimron told the New York Times. Dr. Shimron, a 25-year-veteran of the Israeli Geological Survey, believes that an earthquake in A.D. 363 flooded the Talpiot Tomb with a slurry of rendzina soil and mud that left the space "chemically frozen in time." He says that the material embedded a unique geochemical "fingerprint" which, 1,652 years later, can be used for comparative analysis. Shimron tested roughly 100 samples of scrapings and soil from ossuaries, supplied to him by the Israeli Antiquities Authority, from 15 tombs throughout the Jerusalem area, including Talpiot. (In the first century, some affluent families stored the bones of departed family members in tombs carved out of the soft limestone that surrounds Jerusalem.) Last month, Shimron was granted access to the James ossuary by owner Oded Golan and was finally able to conclude his seven-year study. His findings were remarkable: of the 100 samples, only the nine from the Talpiot Tomb and the James ossuary had matching geochemical profiles, which included magnesium, silicon and iron. A sample from a tomb just 60 meters away from the Talpiot Tomb had a markedly different profile. Shimron's findings provide a rigorous confirmation of a 2006 geochemical survey of ossuary patinas undertaken by journalist Simcha Jacobovici and noted filmmaker James Cameron and incorporated into the 2007 documentary "The Lost Tomb of Jesus," which Cameron produced. Relying on the names inscribed on the ossuaries, along with supporting evidence from scholars and the Gospels themselves, the film concludes that the Talpiot Tomb, largely overlooked by Israeli officials, is the tomb of Jesus and his family. Artifact collector Golan, igniting a debate over its origins and authenticity, first brought the James ossuary to public attention in 2002. In 2004, Golan was arrested and accused of forging the latter part of the inscription on the ossuary: "Brother of Jesus." In 2012, after years of litigation, a Jerusalem district judge found Golan innocent and the ossuary was returned to him — this after Professor Wolfgang Krumbein, an international expert in ancient patina, testified that the entire inscription was authentic. Just how the James ossuary came into Golan's possession remains unclear. If the Shimron study is correct, the ossuary was taken from the Talpiot Tomb at some point, either in recent history or antiquity, and ended up in Golan's personal collection. Experts say the cluster of New Testament names in the Talpiot Tomb is too remarkable to be a random occurrence or coincidence. In 2007, after extensive analysis of the occurrence of names in ancient Jerusalem, Andrey Feuerverger, professor of statistics at the University of Toronto, concluded that the odds of such a cluster of names—however common the individual names were—was highly unlikely unless they represented the family of Jesus of Nazareth. The film concludes that the odds of it not being the tomb of Jesus of Nazareth were only one in 600. Put another way, this is well over a 99% probability in favor of it being the tomb of the New Testament Jesus. The new forensic findings linking the James ossuary to the Talpiot Tomb now make the probability astronomical that it was, in fact, the tomb of the historical Jesus of Nazareth. If Shimron has proven that the James ossuary came from the Talpiot Tomb, "the evidence can no longer be ignored," argues Jacobovici. "The archaeology, the epigraphy, the statistics and, now, the hard chemical evidence all tell the same story. It's arguably the most important archaeological find of all time." Contact: Nicole Austin [email protected], +1-416-504-6662 Source: Associated Producers http://www.apltd.ca Source: Associated Producers http://www.apltd.ca CommunicAsia2015 will Uncover How the Surge in Mobile Usage is Transforming the Online Music Market in Asia -CommunicAsia2015 Summit speaker, Sunita Kaur, Managing Director, Asia, Spotify, shares how going mobile helped Spotify gain an edge and grow five times in Asia SINGAPORE /PRNewswire/ — Picture this: you are going on a long trip and will be spending at least two hours on the road. You begin downloading songs onto your mobile device and then a pop-up appears. "Memory full. Please manage your storage in Settings." Online entertainment is moving from downloading to streaming on both PC and mobile devices for various reasons. The convenience and ability to cherry-pick your favourite content is already a good draw, but the true irresistible power of such streaming services comes from freeing up on storage space. You no longer have to pay for songs, instead you pay for access to a vast library of songs – a number much larger than a single device could conceivably store. Mobile-only Asians Not only does Asia have high mobile penetration rate, it is in fact, a growing mobile-only market. That is, mobile is the only connected device for many Asians, and the desktop experience is completely skipped. In Singapore for example, almost 70 percent of Spotify's audience is between 18-34 years old, and over 70 percent are either a mobile-only or cross-platform user. With that, Spotify was launched in Asia with mobile as a priority, not as an afterthought or nice-to-have. Since Spotify launched its mobile-free tier in the region in December 2013, mobile streams have gone up to as much as five times compared to the previous year. Looking at the numbers, the mobile-first strategy has also fuelled growth in Spotify's user base, which subsequently bumped up premium subscriber numbers at an average conversion rate of about 20 per cent. "We're so committed to the freemium model on mobile because we completely agree with the labels that subscribers are key to bringing the industry back to health — and we need the free 'funnel' to drive subscription," said Sunita Kaur, Managing Director, Asia, Spotify. "By bringing listeners into our free, ad-supported tier, we migrate them away from piracy, which is rife in this part of the world." For Spotify, the other obvious advantage of going mobile is the ability to provide personalised recommendations to music fans. "We are constantly charting and looking at usage data to provide users with a more comprehensive experience. We recommend music depending on what you are already listening to and curate playlists that fit every activity — whether you're at a party, driving to work or studying, we have playlists that are with you at each moment. For example, we partnered with The Music Run™, and developed a digital tool that allows all music runners to listen, vote and share their favourite tracks," added Kaur. The result of tailoring the streaming experience to individual needs is that users are spending an average of over 160 minutes listening, dancing or singing along to Spotify every day. Going Beyond the Play Button Spotify believes that their best marketer has, and always will be, their users. By first considering the demands of the consumers, words about Spotify spread and profits eventually followed in the form of subscriptions and advertisements. Elaborated Kaur, "Evidently, both our advertisers and 60 million active users are extremely important to the long-term survival of Spotify, and the music industry at large. We want to help brands connect to this engaged audience in a variety of ways, while ensuring that these advertisements will be more interesting and useful to consumers. Whether it's advertising on our platforms or even co-creating campaigns that help brands tell their story through Spotify, we are the ultimate cross promotional tool." In the second quarter of this year, Spotify is announcing the roll out of a new video ad product. Sponsored Sessions give brands ownership of 30 minute ad-free mobile sessions. Users opt-in to an ad-free experience by viewing a 15 or 30 second video on their mobile device. Kaur recalled what Daniel Ek, CEO and Founder of Spotify once said in an interview, "The reason I started Spotify was not because of my love of music. It was because I saw an opportunity to create something that made it easier for people to do the stuff that they were already doing, but legally." "That is precisely the advice I will give to any brands deliberating a mobile strategy. There is no cookie-cutter approach, so consider if your mobile strategy will add value to your consumers' lifestyles. Learn to build for the user, go beyond mobile-first, and go user-first," concluded Kaur. For more insights on how businesses can implement a mobile marketing strategy, join Sunita Kaur, Managing Director of Asia, Spotify, at CommunicAsia2015 this June. CommunicAsia2015 Summit Marina Bay Sands, Singapore, Level 3 Registered delegates only http://www.communicasia.com/index.php/conference/fees-registration/ CommunicAsia2015 / EnterpriseIT2015 Exhibition Incorporating: SatComm2015 2-4 June 2015: 10:30 am – 6:00 pm | 5 June 2015: 10:30 am – 4:00 pm Business and trade professionals only http://www.communicasia.com | http://www.goto-enterpriseit.com About Spotify Spotify is an award-winning digital music service that gives you on-demand access to over 30 million tracks. Our dream is to make all the world's music available instantly to everyone, wherever and whenever you want it. Spotify makes it easier than ever to discover, manage and share music with your friends, while making sure that artists get a fair deal. Spotify is now available in 58 markets globally with more than 60 million* active users, and over 15 million paying subscribers. Since its launch in Sweden in 2008, Spotify has driven more than US$2bn to rights holders. Spotify is now the second biggest source of digital music revenue for labels in Europe, and the biggest and most successful music streaming service of its kind globally. *Users active within the previous 30 days. For more information, images, or to contact the team, please head over to our press page athttp://press.spotify.com/ June Seah / Patricia Yee Singapore Exhibition Services Tel: +65-6233-6621 / +65-6233-6637 Email: [email protected] /[email protected] Anu Ramasamy / Fangying Ang FleishmanHillard Singapore Email: [email protected] /[email protected] Source: CommunicAsia2015 http://www.communicasia.com/conference/con… http://www.communicasia.com/ A Pop Culture Icon, Refreshed: Consumers Around The World Take The #PepsiChallenge To Redesign The Iconic Pepsi® Can — #PepsiChallenge Global Ambassador Nicola Formichetti Unites Creative Leaders for Worldwide Design-Led Challenge PURCHASE, New York, April 15, 2015 /PRNewswire/ — #PEPSICHALLENGE – Pepsi® is putting creative control of its most iconic brand equity, the Pepsi can, in the hands of fans. As part of the 2015 #PepsiChallenge, consumers will have the extraordinary opportunity to re-envision the universally celebrated and recognized can with their own special designs and creative flair in the "Live For Now" Design Challenge. Photo – http://photos.prnewswire.com/prnh/20150409/197603 Led by #PepsiChallenge global ambassador and world-renowned fashion designer and creative director, Nicola Formichetti, the "Live for Now" Design Challenge will kick-off with a design concept from Formichetti, featuring his beloved Nicopanda emblem, that will serve as inspiration and lay the groundwork showcasing where consumers can go with their own submissions. A blank Pepsi can, with only the logo intact, allows consumers to re-imagine the facade of the Pepsi can, with the only limitations their own imagination. "I find inspiration around me constantly, particularly by the borderless world of design. From fashion and architecture to products and brands, design can be found in many mediums and created by individuals of all talents," said Formichetti. "The 'Live for Now' Design Challenge was a challenge I couldn't wait to accept and I am excited to see what the world conceives of and shares back." Beginning today and continuing through May 13th, submissions from around the world will be accepted on http://www.PepsiChallenge.com, with one (1) winning designer offered a once-of-a-lifetime design experience at the PepsiCo Design & Innovation Center in New York City working alongside PepsiCo's industry-leading design team. Top submissions will be judged by Formichetti, PepsiCo's Senior Vice President and Chief Design Officer Mauro Porcini and a hand-selected committee of design-world notables, including: Marcelo Burlon, Creative Director Lapo Elkann, Chairman and Co-Founder of Italia Independent Karim Rashid, Award-Winning Designer Franca Sozzani, Editor-in-Chief of Vogue Italia "The new Pepsi Challenge is all about encouraging consumers around the world to step out of their comfort zone and accept a new challenge and opportunity. Design has long been a haven for those who dare to do differently, so we wanted one of our first global challenges to connect with this bold creative class directly," said Kristin Patrick, Senior Vice President and Chief Marketing Officer, PepsiCo Global Beverage Brands. "In a year of challenges, we have also turned the lens on ourselves to look at our brand differently. We're turning over our most cherished piece of equity and our most visible piece of real estate – the facade of the Pepsi can – to consumers around the world to reimagine. We can't wait to see the results." The "Live for Now" Design Challenge follows the Pepsi x Liter of Light "Ignite the Light" Tour where Formichetti challenged creative colleagues around the world to design art installations inspired by light. An international journey of creative, large-scale, mixed media art installations, the "Ignite the Light" Tour brings attention to communities that lack electricity and basic lighting solutions through the Pepsi global partnership with Liter of Light. Every time consumers around the world use the #PepsiChallenge hash tag on public Instagram, Facebook, Twitter or YouTube profiles, Pepsi will donate $1 to Liter of Light to help bring environmentally-friendly, inexpensive and easy to make lights to those around the world who need it most. With a launch that marked #PepsiChallenge as the #1 Twitter trending topic worldwide, and engagements by and with Pepsi global brand ambassadors and international luminaries, fashion houses and sports celebrities alike, the Pepsi Challenge continues throughout 2015 with additional global and local challenges designed to galvanize consumers around the world to live life to the fullest and make every moment – big or small – epic. Challenges are issued on Pepsi social channels, PepsiChallenge.com and via global and local ambassadors. Visit http://www.PepsiChallenge.com and all Pepsi social channels around the world for more information and challenge details. Complete rules and eligibility requirements for the "Live for Now" Design Challenge are available on http://www.PepsiChallenge.com. About PepsiCo PepsiCo products are enjoyed by consumers one billion times a day in more than 200 countries and territories around the world. PepsiCo generated more than $66 billion in net revenue in 2014, driven by a complementary food and beverage portfolio that includes Frito-Lay, Gatorade, Pepsi-Cola, Quaker and Tropicana. PepsiCo's product portfolio includes a wide range of enjoyable foods and beverages, including 22 brands that generate more than $1 billion each in estimated annual retail sales. At the heart of PepsiCo is Performance with Purpose – our goal to deliver top-tier financial performance while creating sustainable growth and shareholder value. In practice, Performance with Purpose means providing a wide range of foods and beverages from treats to healthy eats; finding innovative ways to minimize our impact on the environment and reduce our operating costs; providing a safe and inclusive workplace for our employees globally; and respecting, supporting and investing in the local communities where we operate. For more information, visit http://www.pepsico.com. Source: PepsiCo Posted in Food/Beverages Aptuit LLC and Axxam SpA announce Strategic Alliance for Integrated Drug Discovery Services — Commence major integrated discovery program for large Pharma sponsor GREENWICH, Connecticut and MILAN /PRNewswire/ — Aptuit LLC, a premier global drug discovery and development CRO and Axxam SpA, a leading discovery company with expertise in target biology and a broad range of early phase discovery solutions, announced a strategic alliance to provide comprehensive and integrated services from gene to high quality candidates and beyond. This partnership will allow the companies to offer the best-in-class fully integrated drug discovery and development services, supported by a culture of scientific excellence and innovation. Jonathan Goldman, Chief Executive Officer, Aptuit LLC stated, "We serve biopharmaceutical companies in the discovery of small molecules in a broad range of therapeutic areas including neuroscience, oncology, infectious disease, inflammation, respiratory and others. Our alliance with Axxam is part of our growth strategy. This best-in-class partnership broadens Aptuit's scientific excellence in advanced integrated discovery by leveraging Axxam's capabilities in early discovery. In particular we are excited to enhance our hit identification, validation, and expansion services, by allowing seamless and very high quality delivery of an asset from target to candidate nomination. Expected benefits include increased probability of successful IND candidate nomination, reduced timeline and reduced cost." Stefan Lohmer, co-founder and Chief Executive Officer of Axxam SpA, added, "We are very pleased to announce the strategic alliance with Aptuit. Our companies share a common culture of scientific excellence and quality. This alliance will allow some of our customers to leverage our deep expertise in target biology, assay development and High Throughput Screening even further. This can be combined with downstream solutions at Aptuit towards candidate nomination and IND filing. The complementary and comprehensive skillsets of our two companies include all the scientific disciplines necessary to translate a promising target into a preclinical candidate. This alliance responds to the increasing demands from the market for high quality fully integrated drug discovery services." Aptuit and Axxam are also delighted to announce that the partnership has already resulted in the commencement of the first significant joint integrated project with a large pharma sponsor. For more information about Aptuit please contact Nerina Coppini either by phone at +39 0458219248 or by email: [email protected]. For more information about Axxam, or to speak with Dr. Lohmer, please contact Sabrina Corazza at +39 02 2105634 or [email protected]. About Aptuit LLC (www.aptuit.com) Aptuit LLC provides the most complete set of integrated early discovery to mid-phase drug development services in the pharmaceutical industry including Drug Design & Discovery, API Development and Manufacture, Solid State Chemistry, CMC, Preclinical and IND enabling GLP/GMP programs. Fully integrated drug discovery & development services are available from a single site at The Aptuit Center for Drug Discovery & Development center in Verona, Italy. The company maintains resources around the world, with facilities in the US, UK and Italy. Aptuit LLC is partnered with Welsh, Carson, Anderson & Stowe, one of the world's leading private equity investors. About Axxam SpA (www.axxam.com) Axxam SpA is a privately owned contract research and discovery company located at the Science Park OpenZone in Bresso (Milan, Italy). The Company is a leading provider of integrated discovery services for the entire Life Sciences industries as: Pharmaceutical, Crop protection, Animal health, Cosmetics and Nutrition. Axxam has a strong expertise across a broad range of discovery disciplines and innovative technologies including: assay development, compound management, HTS, hit identification and hit validation. Axxam is also engaged in developing novel innovative therapies for diseases with a high unmet medical need. Source: Aptuit LLC http://www.aptuit.com
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,216
[ 128000, 39212, 5629, 7972, 11, 15358, 57, 11, 5195, 11, 5124, 581, 24836, 323, 17671, 5249, 24403, 13936, 18629, 198, 50, 1753, 85340, 793, 11, 5936, 220, 868, 11, 220, 679, 20, 611, 6616, 3648, 80825, 14, 2001, 24403, 13936, 220, 679, 20, 11, 279, 9974, 14875, 17222, 10017, 505, 279, 4435, 10229, 315, 61103, 9724, 323, 5513, 72714, 320, 54, 1111, 12, 2843, 5726, 705, 374, 743, 311, 1935, 2035, 304, 60116, 11, 30567, 505, 5936, 220, 1591, 12, 966, 627, 2409, 927, 220, 3101, 36159, 11, 220, 1272, 22032, 505, 220, 1114, 2204, 5961, 11, 220, 777, 10017, 16079, 11, 220, 18, 1464, 9994, 16079, 11, 3892, 304, 31410, 864, 15204, 2251, 7491, 9031, 11, 264, 5557, 323, 3600, 52423, 16850, 220, 1691, 39701, 323, 12532 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 39212, 5629, 7972, 11, 15358, 57, 11, 5195, 11, 5124, 581, 24836, 323, 17671, 5249, 24403, 13936, 18629, 198, 50, 1753, 85340, 793, 11, 5936, 220, 868, 11, 220, 679, 20, 611, 6616, 3648, 80825, 14, 2001, 24403, 13936, 220, 679, 20, 11, 279, 9974, 14875, 17222, 10017, 505, 279, 4435, 10229, 315, 61103, 9724, 323, 5513, 72714, 320, 54, 1111, 12, 2843, 5726, 705, 374, 743, 311, 1935, 2035, 304, 60116, 11, 30567, 505, 5936, 220, 1591, 12, 966, 627, 2409, 927, 220, 3101, 36159, 11, 220, 1272, 22032, 505, 220, 1114, 2204, 5961, 11, 220, 777, 10017, 16079, 11, 220, 18, 1464, 9994, 16079, 11, 3892, 304, 31410, 864, 15204, 2251, 7491, 9031, 11, 264, 5557, 323, 3600, 52423, 16850, 220, 1691, 39701, 323, 12532, -100 ]
The University of Maine at Presque Isle will present a public forum on Mineral Deposits, Mining, Mine Water Treatment, and Environmental Concerns from 8:30 a.m. to Noon on Saturday, March 23, in the Campus Center. This event is free and open to the public. The forum will provide a first-of-its-kind opportunity for residents of Northern Maine and students of the University to hear from a panel of high-profile speakers who are experts in the fields concerning issues of mining metallic minerals. The event will include three experts on geology and mining issues. Dr. Robert Marvinney, State Geologist and Director of the Maine Geological Survey, will present on Maine's Geology, Mineral Potential, and Basics of Metallic Mineral Mining. Dr. David Lentz, Professor and Economic Geology Chair, Department of Earth Sciences, University of New Brunswick, will give a talk entitled Exploration and Mining in the 21 Century: Responsible Mineral Resource Development Options & the Role of High Technology. Mr. James Cormier, Superintendent of the Department of Environment and Community Affairs, Xstrata Zinc Brunswick Mines, will deliver a presentation on Brunswick Mine: 48 + Years of Base Metal Mining. Following each presentation, there will be a question-and-answer session moderated by Dr. Wang. The event is sponsored by the University's Environmental Studies and Sustainability Program and co-sponsored by the Maine Geological Survey. It is open to the public and admission is free. For more information on the forum, email Dr. Wang at [email protected] or call 207-768-9412.
{ "redpajama_set_name": "RedPajamaC4" }
8,942
[ 128000, 791, 3907, 315, 30890, 520, 4203, 593, 55365, 690, 3118, 264, 586, 12111, 389, 50416, 78150, 1220, 11, 26917, 11, 31783, 10164, 31969, 11, 323, 25027, 52347, 82, 505, 220, 23, 25, 966, 264, 749, 13, 311, 83956, 389, 7884, 11, 5587, 220, 1419, 11, 304, 279, 39680, 5955, 13, 1115, 1567, 374, 1949, 323, 1825, 311, 279, 586, 627, 791, 12111, 690, 3493, 264, 1176, 8838, 12, 1220, 60806, 6776, 369, 11062, 315, 17355, 30890, 323, 4236, 315, 279, 3907, 311, 6865, 505, 264, 7090, 315, 1579, 25171, 22032, 889, 527, 11909, 304, 279, 5151, 18815, 4819, 315, 11935, 46258, 34072, 627, 791, 1567, 690, 2997, 2380, 11909, 389, 3980, 2508, 323, 11935, 4819, 13, 2999, 13, 8563, 74626, 3520, 11, 3314, 4323, 16549, 323, 10783 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3907, 315, 30890, 520, 4203, 593, 55365, 690, 3118, 264, 586, 12111, 389, 50416, 78150, 1220, 11, 26917, 11, 31783, 10164, 31969, 11, 323, 25027, 52347, 82, 505, 220, 23, 25, 966, 264, 749, 13, 311, 83956, 389, 7884, 11, 5587, 220, 1419, 11, 304, 279, 39680, 5955, 13, 1115, 1567, 374, 1949, 323, 1825, 311, 279, 586, 627, 791, 12111, 690, 3493, 264, 1176, 8838, 12, 1220, 60806, 6776, 369, 11062, 315, 17355, 30890, 323, 4236, 315, 279, 3907, 311, 6865, 505, 264, 7090, 315, 1579, 25171, 22032, 889, 527, 11909, 304, 279, 5151, 18815, 4819, 315, 11935, 46258, 34072, 627, 791, 1567, 690, 2997, 2380, 11909, 389, 3980, 2508, 323, 11935, 4819, 13, 2999, 13, 8563, 74626, 3520, 11, 3314, 4323, 16549, 323, 10783, -100 ]
A Christmas Carol: update on 2020 performances 2nd September 2020 in News Press As English National Opera continues to focus on performances that can be staged under socially distanced restrictions in our home, the London Coliseum, we – alongside our co-producers the London Musical Theatre Orchestra – have come to the regrettable decision to cancel A Christmas Carol planned for the first week of December this year, due to the scale of the production. We are still looking forward to sharing plans publicly soon about our plans to re-open the doors to our theatre and perform for you there once again. ENO would like to take this opportunity to thank all of the cast and creatives who had already worked incredibly hard on this production. We also want to reassure those who had booked tickets that we will be in touch in due course regarding refunds. For now, we look forward to welcoming those of you who have booked tickets for our ENO Drive & Live performances of La bohème at Alexandra Palace later this month. Full cast and creative team announced for ENO Drive & Live at Alexandra Palace 11th August 2020 in Press
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
5,487
[ 128000, 32, 10280, 10463, 25, 2713, 389, 220, 2366, 15, 24601, 198, 17, 303, 6250, 220, 2366, 15, 304, 5513, 8612, 198, 2170, 6498, 5165, 39679, 9731, 311, 5357, 389, 24601, 430, 649, 387, 51157, 1234, 40418, 1612, 4979, 17294, 304, 1057, 2162, 11, 279, 7295, 4349, 94565, 11, 584, 1389, 16662, 1057, 1080, 10039, 34475, 279, 7295, 57357, 27315, 54617, 1389, 617, 2586, 311, 279, 23023, 2048, 5597, 311, 9299, 362, 10280, 10463, 13205, 369, 279, 1176, 2046, 315, 6790, 420, 1060, 11, 4245, 311, 279, 5569, 315, 279, 5788, 627, 1687, 527, 2103, 3411, 4741, 311, 11821, 6787, 17880, 5246, 922, 1057, 6787, 311, 312, 26770, 279, 14365, 311, 1057, 34596, 323, 2804, 369, 499, 1070, 3131, 1578, 627, 64462, 1053, 1093, 311, 1935, 420, 6776 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 10280, 10463, 25, 2713, 389, 220, 2366, 15, 24601, 198, 17, 303, 6250, 220, 2366, 15, 304, 5513, 8612, 198, 2170, 6498, 5165, 39679, 9731, 311, 5357, 389, 24601, 430, 649, 387, 51157, 1234, 40418, 1612, 4979, 17294, 304, 1057, 2162, 11, 279, 7295, 4349, 94565, 11, 584, 1389, 16662, 1057, 1080, 10039, 34475, 279, 7295, 57357, 27315, 54617, 1389, 617, 2586, 311, 279, 23023, 2048, 5597, 311, 9299, 362, 10280, 10463, 13205, 369, 279, 1176, 2046, 315, 6790, 420, 1060, 11, 4245, 311, 279, 5569, 315, 279, 5788, 627, 1687, 527, 2103, 3411, 4741, 311, 11821, 6787, 17880, 5246, 922, 1057, 6787, 311, 312, 26770, 279, 14365, 311, 1057, 34596, 323, 2804, 369, 499, 1070, 3131, 1578, 627, 64462, 1053, 1093, 311, 1935, 420, 6776, -100 ]
Archive for the 'History' Category I am re-reading and re-viewing Hitchens' writings and public speakings against former US Secretary of State under Presidents Nixon and Ford, Henry Kissinger, and have recently come across the above C-SPAN discussion from 2001. I have added it to "The Good" section of my anthology of his contested debates and have this to say of it: Tags:Alfred Rubin, c-span, christopher hitchens, Gerald Ford, Harper's Magazine, Henry Kissinger, Lewis Lapham, National Press Club, Realpolitik, Richard Nixon, Roger Morris, Stanley Kutler, The Trial Of Henry Kissinger, Trials Of Henry Kissinger Posted in History, politics | 3 Comments » Gregory S Paul: 'The Great Scandal: Christianity's Role in the Rise of the Nazis, Parts I – III' For several years, since my last spate of blogging in 2009 – 2010, I have been preparing a collection of essays on Christianity's role in the rise of Fascism and National Socialism in order to exonerate atheism and secularism, whose names are repeatedly sullied by the faithful in order to deflect attention away from their own gross failings of morality and resistance to radical evil. American physicist Victor Stenger's excellent addition to the New Atheism cannon, God, The Failed Hypothesis: How Science Shows That God Does Not Exist, briefly mentions Christianity's complicity with Nazism in its chapter discussing human morality. Stenger cites palaeontologist, researcher and author Gregory Scott Paul's three articles that were published in Free Inquiry magazine about 10 years ago: "The Great Scandal: Christianity's Role in the Rise of the Nazis." I have learnt a great deal from Paul's articles and they have been instrumental in my research for my own essays on the topic. The articles are available to view on Free Inquiry magazine's website, although the format is not terribly reader-friendly. I have transferred the text, including the photographs and captions, into Word Documents, which I have uploaded to this blog in PDF: Part I – PDF Part II – PDF Part III – PDF Enjoy and learn. Tags:A Moral Reckoning, adolf hitler, Christianity's Role in the Rise of the Nazis, Council for Secular Humanism, Daniel Jonah Goldhagen, Eugenio Pacelli, Fascism, Free Inquiry, God The Failed Hypothesis, Gregory Scott Paul, Hitler's Pope, Hitler's Willing Executioners, How Science Shows That God Does Not Exist, Hubris, Ian Kershaw, John Cornwell, Mein Kampf, National Socialism, Nazism, Nemesis, Pius XII, Righteous Gentiles, Ronald Rychlak, The Great Scandal, Victor J Stenger Posted in christianity, History, Religion | 5 Comments » Premier Christian Radio Debate 13/08/11: MSP –v- Peter Harris – "Hitler's & Stalin's regimes" manicstreetpreacher goes for Round 2. The second of my two recently recorded debates for Justin Brierley at Premier Christian Radio for his sceptics debate show, Unbelievable?, was whether atheism or Christianity was responsible for the so-called secular atrocities of the mid-20th century. My opponent was Peter Harris, a teacher and a doctorate student of theology and apologetics who has a page on BeThinking. Listen on demand from the Unbelievable? homepage Download MP3 podcast Tags:A History of Christianity, A Very Short Introduction to Atheism, Adolf Eichmann, adolf hitler, Alan Bullock, Alois Luigi Hudal, atheism, catholic church, christianity, debate, joseph stalin, Julian Baggini, justin brierley, Martin Luther, Michael Burleigh, Paul Johnson, Peter Harris, premier christian radio, Ratlines, unbelievable Posted in christianity, History, politics | 6 Comments » manicstreetpreacher presents the damning verdict on a pseudo-intellectual by a genuine one. Further to my recent series of posts on the Intelligent Design creationist propaganda piece Expelled: No Intelligence Allowed, Mike Godfrey over at God3's Blog quotes one of the film's participants, David Berlinski. In his response to the New Atheism, The Devil's Delusion, Berlinski, a supposedly secular Jew, writes on the crimes of so-called atheist totalitarianisms in the 20th century: Dawkins is prepared to acknowledge the facts while denying their significance. Neither the Nazis nor the Communists, he affirms, acted because of their atheism. They were simply keen to kill a great many people. Atheism had nothing to do with it. They might well have been Christian Scientists. In the early days of the German advance into Eastern Europe, before the possibility of Soviet retribution even entered their untroubled imagination, Nazi extermination squads would sweep into villages, and after forcing the villagers to dig their own graves, murder their victims with machine guns. On one such occasion somewhere in Eastern Europe, an SS officer watched languidly, his machine gun cradled, as an elderly and bearded Hasidic Jew laboriously dug what he knew to be his grave. Standing up straight, he addressed his executioner. "God is watching what you are doing," he said. And then he was shot dead. What Hitler did not believe and what Stalin did not believe and what Mao did not believe and what the SS did not believe and what the Gestapo did not believe and what the NKVD did not believe and what the commissars, functionaries, swaggering executioners, Nazi doctors, Communist Party theoreticians, intellectuals, Brown Shirts, Black Shirts, gauleiters, and a thousand party hacks did not believe was that God was watching what they were doing. And as far as we can tell, very few of those carrying out the horrors of the twentieth century worried overmuch that God was watching what they were doing either. That is, after all, the meaning of a secular society. I can only assume that Berlinski had forgotten about the events of September 11, 2001 when he was writing this passage. This was an outrage carried out by people who were thinking only too much of what heaven would think of them. Hopefully, the more recent events on the Moscow tube will jog his memory. Appealing to authority and credential inflation are common tactics of creationists and Intelligent Design proponents. Expelled's host, Ben Stein, went to great lengths to hold out Berlinski as an example of a smart guy who believed in Intelligent Design in order to give it some credibility. However, all Berlinski succeeded in doing was to be a particularly obnoxious and unlikeable character, saying that Richard Dawkins is "a crummy philosopher" and "a little bit of a reptile". In an article reminiscing on an infamous book review for The New York Times in 1989 where he wrote, "It is absolutely safe to say that if you meet somebody who claims not to believe in evolution, that person is ignorant, stupid or insane (or wicked, but I'd rather not consider that)," Dawkins had this to say about Berlinski: Are there, then, any examples of anti-evolution poseurs who are not ignorant, stupid or insane, and who might be genuine candidates for the wicked category? I once shared a platform with someone called David Berlinski, who is certainly not ignorant, stupid or insane. He denies that he is a creationist, but claims strong scientific arguments against evolution (which disappointingly turn out to be the same old creationist arguments). Together with the great John Maynard Smith and others, he and I were guest speakers at a debate organized by a prominent Oxford rabbi. Maynard Smith spoke after Berlinski and, not surprisingly, he soon had the audience roaring with laughter as he lampooned Berlinski's bad arguments. But what amused me was Berlinski's tactic for dealing with this mocking laughter. He sprang to his feet, held up a reproachful open palm towards the audience, and said (approximately of course, I can't remember the exact words): "No no! Don't laugh. Let Maynard Smith have his say! It's only fair!" Happily, the Oxford audience saw through this tactic of pretending to think the audience were laughing at Maynard Smith rather than with him. And the rabbi, himself a devout creationist, afterwards told me he had been shocked at Berlinski's duplicity. By itself, this is too trivial an example to deserve the name wicked. But it did make me wonder about Berlinski's motives. As I said, he is certainly not ignorant, stupid or insane. After witnessing his performance in Expelled, Dawkins' assessment of Berlinski is borne out all too well. Tags:9/11, adolf hitler, Al Qaeda, Atheism and Its Scientific Pretensions, believe in evolution, book review, Communism, Creationism, David Berlinski, Evolution, expelled: no intelligence allowed, Fascism, God3's Blog, ID, ignorant, Intelligent Design, islam, Islamists, John Maynard Smith, Josef Stalin, Marxism, Mein Kampf, Moscow tube bombing, National Socialism, natural selection, nazi, Nazism, new york times, propaganda, rather not consider that, richard dawkins, stupid or insane or wicked, The Devil's Delusion, the god delusion Posted in christianity, Creationism, Evolution, Films, History, Intelligent Design, judaism, politics, Pseudoscience, Science | 133 Comments » Richard Dawkins and P Z Myers versus Pope Pius XII Following recent comments by two of the World's most outspoken atheists, manicstreetpreacher thinks a reassessment of the silent Pope is in order. I have a morbid fascination with the figure of Eugenio Pacelli, Pope Pius XII. I confess that the only full-length biography I have read is John Cornwell's controversial Hitler's Pope, which has been so heavily criticised that even the author no longer stands by all of its claims. I am currently researching and writing an epic post about the role of the Church and religion in the rise of fascism (so epic, that it might have to be an entire book!), and I really need to read a more sympathetic account of Pacelli. I have read Sacred Causes by Christian historian Michael Burleigh which references a few Pius defenders such as Mississippi law professor Ronald Rychlak and Rabbi David Dalin. The best defence anyone has been able to advance is that Pacelli's scope for action was severely limited. Hindsight is the cheapest form of wisdom. Perhaps Pius XII would have inspired a mass uprising against the forces of darkness that had overwhelmed Europe by publically opposing Hitler. By the same token, his actions could have backfired with the consequences for Europe's population better left imagined than described. Here is Richard Dawkins referring to Pius XII as "Pope… Nazi" at the 2010 Global Atheist Convention held in Melbourne, Australia earlier this month while commenting on the Vatican's procedure of canonising saints. The press widely construed Dawkins as referring to the current holder of St Peter's keys, Joseph Ratzinger, Pope Benedict XVI. While growing up in Germany, Ratzinger was drafted into the Hitler Youth along with practically all other German boys when he was too young to understand the full implications of what he was being ordered to do. Even the most virulent opponent of the Vatican would be punching below the belt to take this as evidence that Ratzinger supported Nazism. Although the next photo is hardly something you want left on your Facebook profile. In fact, Dawkins was referencing Pius XII, the man who while the Vatican's Secretary of State concluded concordats with practically every fascist regime in Europe, including the 1929 Lateran Pact with Benito Mussolini of Italy and the 1933 Reichskonkordat with Adolf Hitler's German Wehrmacht Republic. These treaties, which incidentally were the first agreements signed respectively by both dictators upon taking power, guaranteed the Church's total withdrawal from politics, embodied by the dissolution of the German Catholic Centre Party, a source of effective opposition to National Socialism, in return for control of state education and other ameliorations. As if that wasn't enough, Pius XII notoriously remained silence in public about the Holocaust, despite constant and reliable intelligence of the atrocities committed against the Jews. This was only one in a whole litany of sins for which atonement was begged by the former pontiff, John Paul II, during a papacy largely defined by repeated requests for forgiveness. Perhaps sceptics are being too hard on Pacelli. Perhaps they are using him as a pawn in their private war against the parties of God. Perhaps his back really was up against a wall. Perhaps public condemnation of Hitler would have been foolhardy and lead only to Nazi aggression being redirected towards Catholics. Perhaps he achieved more by remaining silent in public and while waging a "secret war" against the Führer. The figures I've read for the number of Jews that the Vatican saved during the War range from half a million to 800,000. I am quite prepared to accept the higher figure. But while the Pope's rural retreat of Castel Gandolfo and indeed the Vatican itself was used to hide Jews escaping the German occupation of Rome in 1943, the same "safe houses" were used to harbour escaping Nazi war criminals, not least of who was Adolf Eichmann, the architect of the "Final Solution". After the war Eichmann, along with many other Nazi war criminals, was spirited away to South America on an illegally acquired Red Cross humanitarian passport via a "Ratline", before finally being kidnapped by Mossad agents in Argentina, standing trial in Israel and executed for crimes against humanity in 1962. It is not proven that Pacelli had personal knowledge of the Ratlines, their chief architect being Austrian Bishop Alois Hudal, author of the Hitler-fawning tract, The Foundations of National Socialism. But since Pacelli clearly turned a blind eye and a deaf ear to the death camps during the war, it is not unreasonable to draw negative inferences. The Vatican could always exonerate Pacelli once and for all by releasing the wartime documents from their archives which would prove the Pontiff's defence, surely? So far, they have declined to do this, making the utterly lame excuse that the copious documents have not yet been properly catalogued. Ratzinger's recent drive to canonise Pius XII has been discouraged by the Church's own theologians as likely to cause grave damage to relations between the Catholic Church and Jews and that he had become a de facto "symbol of Christian anti-Judaism and anti-Semitism". One very eloquent reviewer of Dalin's book, The Myth of Hitler's Pope, on Amazon US described the Church's stance thus: As long as Pope Pius XII allowed Hitler to remain a Catholic, the Pope supported his actions, period, and end of story. There was no conspiracy, just failed responsibility, and lack of action. David Dalin's book, The Myth of Hitler's Pope demonstrates very little except to try and defend the ridiculous. That is about as reasonable and balanced an assessment as I have read from a sceptic. The verdict of biologist and blogger P Z Myers was worded somewhat more strongly… Oh, and Pope Pius XII really was a sniveling rat bastard who should have been held accountable for contributing to the evil perpetrated against the Jews. The Pius Wars will not cease until the day Daniel Dennett's dream of the Vatican being converted into the "International Museum of Roman Catholicism" becomes a reality. Tags:2010 Global Atheist Convention, Adolf Eichmann, Australia, benedict xvi, Benito Mussolini, Bishop Alois Hudal, Catholic Centre Party, Concordat, David Dalin, Eugenio Pacelli, Final Solution, germany, hitler, Hitler Youth, Hitler's Pope, holocaust, holy see, John Cornwell, Joseph Ratzinger, Lateran Pact, Melbourne, Michael Burleigh, Mossad, nazi, p z myers, Pius XII, pope, Rat Line, Ratline, Reichskonkordat, richard dawkins, Ronald Rychlak, Sacred Causes, The Foundations of National Socialism, The Myth of Hitler's Pope, The War and the Pope, vatican Posted in christianity, History, politics, Religion | 8 Comments » Premier Christian Media's screening of 'Expelled': From Darwin to Hitler? Part Four of my analysis of Premier Christian Media's screening and debate of Expelled: No Intelligence Allowed examines the film's claim that Darwin's theory directly inspired Hitler and 20th century eugenics. The final quarter of the film makes the outrageous allegation that Darwin's work directly inspired Hitler and eugenics. The host, Ben Stein, visits Darwin's former home of Down House in Kent and his memorial at the London Natural History Museum. He visits the Dachau concentration camp and Hadamar Clinic where he interviews the tour guide Uta George and Richard Weikart, Discovery Institute research fellow and author of From Darwin to Hitler. I haven't read Weikart's book, but I listened to this lecture and was distinctly underwhelmed by the tenuous links made between the ancient idea of eugenics and Darwin's theory. Darwinism describes a scientific process for which there is ample evidence. Whether we like its moral implication is irrelevant and Weikart is guilty of the naturalistic fallacy; confusing "what is" with "what ought to be". Weikart's arguments rely heavily on some disgraceful quote-mining of Darwin's work, more of which below. Weikart also ignores a wealth of other social, economic and indeed religious factors that resulted in the rise of Nazism. For excellent refutations of his thesis, I came across his radio debate against atheist Professor of Religious Studies at Iowa State University, Hector Avalos, as well as Avalos' extensive blog posts on Debunking Christianity here and here. Towards the end of Expelled, Stein reads out the following passage which is often quoted by creationists from The Descent of Man, first published in 1871: With savages, the weak in body or mind are soon eliminated. We civilised men, on the other hand, do our utmost to check the process of elimination. We build asylums for the imbecile, the maimed and the sick, thus the weak members of civilised societies propagate their kind. No one who has attended to the breeding of domestic animals will doubt that this must be highly injurious to the race of man. Hardly anyone is so ignorant as to allow his worst animals to breed. However, the passage in full shows that Darwin was deeply compassionate to the handicapped and was not in favour of any euthanasia programme: With savages, the weak in body or mind are soon eliminated; and those that survive commonly exhibit a vigorous state of health. We civilised men, on the other hand, do our utmost to check the process of elimination; we build asylums for the imbecile, the maimed, and the sick; we institute poor-laws; and our medical men exert their utmost skill to save the life of every one to the last moment. There is reason to believe that vaccination has preserved thousands, who from a weak constitution would formerly have succumbed to small-pox. Thus the weak members of civilised societies propagate their kind. No one who has attended to the breeding of domestic animals will doubt that this must be highly injurious to the race of man. It is surprising how soon a want of care, or care wrongly directed, leads to the degeneration of a domestic race; but excepting in the case of man himself, hardly any one is so ignorant as to allow his worst animals to breed. The aid which we feel impelled to give to the helpless is mainly an incidental result of the instinct of sympathy, which was originally acquired as part of the social instincts, but subsequently rendered, in the manner previously indicated, more tender and more widely diffused. Nor could we check our sympathy, if so urged by hard reason, without deterioration in the noblest part of our nature. The surgeon may harden himself whilst performing an operation, for he knows that he is acting for the good of his patient; but if we were intentionally to neglect the weak and helpless, it could only be for a contingent benefit, with a certain and great present evil. There are several other passages from Darwin that creationists mine in their attempts to show that he was immoral, but reveal quite the opposite when read in their true context. In the post-screening debate (at 43 minutes on the podcast) I asked the panel a question that drew their attention to this distortion, adding that while Darwin was about as racist as anyone else in Victorian England, he was a passionate abolitionist of the slave trade. Surprisingly, my comments drew nods of agreement from Steve Fuller. I also added that I have read Hitler's Mein Kampf for myself. It contains not one reference of Darwin, evolution or natural selection, but talks rather a lot about his faith in Heaven and the Almighty as well as his theological hero, Martin Luther. Alastair Noble made noises about how Darwin influenced Stalin. This claim is straight off the Answers in Genesis website and was repeated by David Robertson in our second debate on Premier's Unbelievable? last year. The truth is that Stalin rejected Darwinism in favour of Lamarckism which lead to Lysenko's insane programme to grow giant vegetables and deliver multiple harvests in one year, leading to the starvation of millions: Mendeleyev's "periodic system of elements" clearly shows how very important in the history of nature is the emergence of qualitative changes out of quantitative changes. The same thing is shown in biology by the theory of neo-Lamarckism, to which neo-Darwinism is yielding place. – Stalin 1906, 304 Steve Fuller replied that Mein Kampf discussed "selection". However, Hitler was referring to artificial selection which humans have known about for centuries. Dog breeding and pigeon fancying have more responsibility for Hitler than On the Origin of the Species. There is widespread confusion over Darwin's theory of evolution by natural selection and "Social Darwinism", which was coined by the Protestant anthropologist Herbert Spencer, who also came up with the term "survival of the fittest". Although still tarring Darwin's good name, Hitler's ethic is better described as "Social Darwinist". Irritatingly, many respectable scientists and historians have linked Darwin to Nazi Germany. Sir Arthur Keith is often quoted by creationists as writing in Evolution & Ethics (1946) that Hitler was an evolutionist and was trying to create Darwin's utopia based on the principles of eugenics, though Keith never showed which parts of Origins inspired Hitler. Laurence Rees' otherwise excellent study of the Final Solution, Auschwitz, was tarnished somewhat with the assertion that the Nazis' ideology was "expressly Darwinian", again without citing any primary sources in support. The full original title of On the Origin of Species is infamously "Or the preservation of favoured races in the struggle for life". Again, creationists have argued that this is clear evidence that Darwin was in favour of a brutal struggle for survival where the strong would crush the weak. However, as Richard Dawkins explained following the film's release in an "Open Letter to a victim of Ben Stein's lying propaganda": Darwin was using the word "race" in a very different sense from ours. It is totally clear, if you read past the title to the book itself, that a "favoured race" meant something like "that set of individuals who possess a certain favoured genetic mutation" (although Darwin would not have used that language because he did not have our modern concept of a genetic mutation). The Anti-Defamation League, an American Jewish pressure group dedicated to fighting anti-Semitism, issued the following statement against Expelled which is the first and last word against anyone claiming that Darwinism is in any way a link to eugenics or Social Darwinism: The film Expelled: No Intelligence Allowed misappropriates the Holocaust and its imagery as a part of its political effort to discredit the scientific community which rejects so-called intelligent design theory. Hitler did not need Darwin to devise his heinous plan to exterminate the Jewish people and Darwin and evolutionary theory cannot explain Hitler's genocidal madness. Using the Holocaust in order to tarnish those who promote the theory of evolution is outrageous and trivializes the complex factors that led to the mass extermination of European Jewry. Steve Fuller also argued that people who support the teaching of evolution also support abortion and euthanasia on the grounds that it will lead to a better version of humanity. Again, I found this claim deeply offensive. I have recently written that I am pro-choice on the grounds that the alternative is worse. Abortion should be the last option. Prevention is better than cure. The answer is increased access to contraception and education as to its proper use. I am not in favour of abortion because it is a quick and convenient method of wiping out Down's Syndrome. I can think of no better way to end these posts than with this compilation by YouTube auteur, Thunderf00t, that features Stein on a Christian TV network shortly after Expelled's release making the appalling claim that "science leads to killing people", juxtaposed with his own delusional fantasies about America needing to start World War Three in order to protect itself against Iran and North Korea. P Z Myers couldn't have phrased it any better: What a vile little man. I sincerely hope that his career is dead now … and that the rest of his life will be spent eking out speaking fees at Christian fundamentalist conventions, before audiences who will cheer him while dreaming of the day the Jews are exterminated or converted, bringing on Armageddon. Right on, brother. Now, a "call to arms" (in the strictly metaphorical, non-jihadist sense of the term) to all atheists, rationalists, humanists, secularists and everyone else who cares about truth in science and a proper education of school children which is free from religious dogma and presupposition: Let's go to work. Tags:adolf hitler, Alastair Noble, Anti-Defamation League, Ben Stein, Caroline Crocker, christianity, christopher hitchens, Creationism, creationist, Daniel Dennett, David Roberston, Debunking Christianity, eugenie scott, Evolutionary Informatics Laboratory, Expelled Exposed, expelled: no intelligence allowed, god, God of the Gaps, Guardian Comment is Free, Guillermo Gonzalez, Hector Avalos, ID, Intelligent Design, Jeffrey Shallit, joseph stalin, Judgment Day Intelligent Design on Trial, Kitzmiller v Dover P A, lewis wolpert, Lysenko, Mark Haville, Michael Egnor, michael shermer, National Center for Science Education, Notes from an Evil Burnee, NOVA, NPN Videos UK, p z myers, Pamela Winnick, Paul S Jenkins, Peter Atkins, Premier Christian Media, premier christian radio, propaganda, Religion, richard dawkins, Richard Marks, Richard Sternberg, Richard Weikart, Robert Marks, Signature in the Cell, Stephen Myer, Steve Fuller, unbelievable, University of Warwick, William Dembski Posted in christianity, Creationism, Evolution, Films, History, Intelligent Design, Pseudoscience, Religion | 14 Comments » Addendum to "The Hitler Meme" manicstreetpreacher wants to know what the hell is going on! I have just added the following text to the beginning of my post entitled "The Hitler Meme" and invite any and all comments. UPDATE: 11 MARCH 2010 I have been writing this blog for just over a year now. I love blogging. It is a very involving hobby that has expanded my mind and made me engage with a wealth of new issues relating to science, history, politics and philosophy. I love the buzz you get when the notification email arrives when someone has posted a reply to a thread, links to one of your posts on their blog, sends a message of praise or constructive criticism. I love the feeling of, "Perhaps this argument will make me change my mind?" Of which posts am I most proud? Well, my report of the Hitchens/ Fry debate on the Catholic Church in October '09 had a lot of views and comments. My rubbishing of William Dembski's Intelligent Design "theory" ranks very high as well. Just to think, I nearly gave up on it halfway through I was so bored, and then an "unsolicited" email to Dembski's college account and it ended up on his Uncommon Descent blog not once, but twice! Victor Stenger liked my analysis of his 2003 debate against William Lane Craig so much that he posted it on his own website and from where I get c. 20 referrals per day. And of course there's my castigation of Craig's appalling interpretation of Yahweh's commandment to his chosen people to wipe out every single one of the Canaanites of which I am rather pleased. Are any of these my highest viewed post? No. My highest viewed post is THIS: the result of a rainy Saturday afternoon dossing on YouTube coming across an Internet craze butchering the best scene in a brilliant study of history's most infamous tyrant. Posted on 26 August 2009. 11,700 views and counting. It's getting ridiculous!! The Hitchens/ Fry debate report was my PB with c. 600 views in one day. Now it is "The Hitler Meme" which has been getting 700+ per day of late. I really can't explain why it is getting so many views. No one has left a comment. The post hasn't been linked on any other blog or website. My WordPress stats monitor says that viewers are finding it through the search engine term "hitler". Except I have searched for it on Google and it doesn't come up in the first 10 pages of hits!?!?!?!?!?! Anyone viewing this post now, how are you finding this page? What's so great about it? Please leave some comments and put me out of my misery! I don't know whether to delete the post yet, but I may well do so. This is just getting silly! Answers in the comments box, please. Tags:adolf hitler, berlin, biola university, Bruno Ganz, bunker, canaanites, catholic church, Chosen People, christopher hitchens, debate, Denyse O' Leary, Divine Command Theory, downfall, generals, germany, goebbels, hitler, hitler meme, Intelligence Squared, Intelligent Design, Israelites, manicstreetpreacher, michael jackson, nazi, Oliver Hirschbiegel, reasonable faith, sarah palin, second world war, spoof, Stephen Fry, stephen harper, Uncommon Descent, victor stenger, William Dembski, William Lane Craig, World War, xbox, yahweh, YouYube Posted in History | 2 Comments » Albert Einstein's 'support' for the Church in the face of Hitler is bogus manicstreetpreacher shows that a statement by the exiled pantheist scientist praising the Church in Nazi Germany falls down on closer examination. Religious-types seem to think that massaging the words of prominent non-believers into concessions to faith approximates an argument for the truth or usefulness of religion. I have long grown tired of this bogus and dishonest tactic. If a theist told me Richard Dawkins' or Charles Darwin's take on the colour of an orange, I would scrutinise the primary source carefully. Apologists are often desperate to claim that the Jewish-born, agnostic scientist, Albert Einstein was a theist. Continuing in this tradition, you will hear and read the following statement attributed to the atomic scientist trotted out by those eager to defend the reprehensible (in)actions of the Catholic Church in the face of Nazism: Being a lover of freedom, when the revolution came in Germany, I looked to the universities to defend it, knowing that they had always boasted of their devotion to the cause of truth; but, no, the universities immediately were silenced. Then I looked to the great editors of the newspapers whose flaming editorials in days gone by had proclaimed their love of freedom; but they, like the universities, were silenced in a few short weeks… Only the Church stood squarely across the path of Hitler's campaign for suppressing truth. I never had any special interest in the Church before, but now I feel a great affection and admiration because the Church alone has had the courage and persistence to stand for intellectual truth and moral freedom. I am forced thus to confess that what I once despised I now praise unreservedly. The statement first appeared in an article entitled "German Martyrs" which was published in Time magazine on 23 December 1940. You will find it posted on many religious websites and repeated by clergymen. Christian historian, Michael Burleigh, quotes it point-blank in his study of religion and politics in the 20th century, Sacred Causes, before rambling into a highly selective and ultimately, disingenuous defence of the Church during the Second World War. Nevertheless, a superb piece by the analyst, William Waterhouse, first published in Skeptic (Volume 12, Number 3, Fall 2005), has exposed the statement as an exaggeration at best and a fabrication at worst by those eager to abuse Einstein's prestigious reputation rather than convey his real opinions. For starters, the statement appeared without any source or attribution when it was first published in Time. It is not known whether the reporter personally heard Einstein say it. The statement does not appear in the definitive collection of Einstein's sayings, The Expanded Quotable Einstein. Any reference to the treatment of Europe's Jews is also conspicuously absent. In addition, the language is too flamboyant compared to Einstein's usual style, with its reference to "great editors" and "flaming editorials". The statement is also unlikely to have come from a scientist, stating as it does that Einstein "despised" something immediately after saying that he "never had any special interest" in it. For comparison, here is a statement that Einstein definitely made in response to Nazism in 1933: I hope that healthy conditions will soon supervene in Germany and that in future her great men like Kant and Goethe will not merely be commemorated from time to time but that the principle which they taught will also prevail in public life and in the general consciousness. As Waterhouse points out, Einstein (like most German Jews) hoped for support not from Christianity as such, but from the German Enlightenment tradition. Waterhouse's enquiries with the Einstein Archives in Jerusalem lead to the discovery of a letter written by Einstein in 1947 stating that in the early years of Hitler's regime he had casually mentioned to a journalist that hardly any German intellectuals except a few churchmen were supporting individual rights and intellectual freedom. He added that this statement had subsequently been drastically exaggerated beyond anything that he could recognise as his own. As Christopher Hitchens writes in God Is Not Great, "Those who seek to misrepresent the man who gave us an alternative theory of the cosmos (as well as those who remained silent or worse while his fellow Jews were being deported and destroyed) betray the prickings of their bad consciences." Tags:albert einstein, atheism, bible, catholic, christ, christianity, christopher hitchens, church, German Martyrs, germany, god, gospel, hitler, holocaust, jews, Michael Burleigh, Pope Pius XII, Religion, Sacred Causes, skeptic, statement, Time magazine, vatican, william waterhouse Posted in christianity, History, Religion | 42 Comments » Weekend at Hitler's The late biographer of the two of history's greatest mass-murderers provides a unique – and witty – insight in their respective psyches. I came across the obituary of Alan Bullock, Baron Bullock, the British historian who published seminal biographies of the two most infamous tyrants of the 20th century, Hitler: A Study In Tyranny and Hitler And Stalin: Parallel Lives and it made me LMFAO: Almost 40 years later, Bullock returned to the subject [of Hitler] with his thousand-page tome Hitler And Stalin: Parallel Lives (1991, revised 1998)… Bullock had grasped that Stalin's personal malice marked him out from Hitler, who was astonishingly tolerant of inadequate colleagues. Asked the frivolous question as to which of the dictators he would have preferred spending a weekend with, Bullock replied promptly, "Hitler, because although it would have been boring in the extreme, you would have had a greater certainty in coming back alive." Tags:adolf hitler, Alan Bullock, communist, germany, hitler and stalin: parallel lives, hitler: a study in tyranny, joseph stalin, nazi, russia, second world war, soviet union, World War 2 Posted in History, World War 2 | Leave a Comment » The Hitler Meme The reputation of history's most hated dictator will never survive this. Of which posts am I most proud? Well, my report of the Hitchens/ Fry debate on the Catholic Church in October had a lot of views and comments. My rubbishing of William Dembski's Intelligent Design "theory" ranks very high as well. Just to think, I nearly gave up on it halfway through I was so bored, and then an "unsolicited" email to Dembski's college account and it ended up on his Uncommon Descent blog not once, but twice! Victor Stenger liked my analysis of his 2003 debate against William Lane Craig so much that he posted it on his own website and from where I get c. 20 referrals per day. And of course there's my castigation of Craig's appalling interpretation of Yahweh's commandment to his chosen people to wipe out every single one of the Canaanites of which I am rather pleased. ORIGINAL POST CONTINUES I recently became aware of a massive YouTube trend sending up Hitler. The clips are culled from Oliver Hirschbiegel's 2004 film, Downfall, which depicts the Führer's last days in his Berlin bunker with the Allied forces closing in on all sides in the spring of 1945. Except instead of throwing a wobbler at his aides and military commanders for the collapse of the German army in the face of the enemy, Adolf – played by Swiss actor Bruno Ganz – is getting all hot under the collar at slightly less profound matters, such as the live act for his birthday party… Tasteless, spoiling a great film and above all funny. Very, very funny. Hundreds have been produced. Here is a selection of my favourites from a rainy afternoon's viewing: Hitler gets banned from Xbox online… …finds out that Michael Jackson has died… …hears about Sarah Palin's resignation… …complains about being stuck in slow motion… …assumes the role of Canadian Prime Minister, Stephen Harper, over the NDP-Liberal Coalition… …and finally, rants at the amount of spoofs about him from the film Downfall… Tags:adolf hitler, berlin, biola university, Bruno Ganz, bunker, canaanites, catholic church, Chosen People, christopher hitchens, debate, Denyse O' Leary, Divine Command Theory, downfall, generals, germany, goebbels, hitler, hitler meme, Intelligence Squared, Intelligent Design, Israelites, manicstreetpreacher, michael jackson, nazi, Oliver Hirschbiegel, reasonable faith, sarah palin, second world war, spoof, Stephen Fry, stephen harper, Uncommon Descent, victor stenger, William Dembski, William Lane Craig, World War 2, xbox, yahweh, youtube Posted in Films, History, World War 2 | 10 Comments »
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,129
[ 128000, 43602, 369, 279, 364, 13730, 6, 10260, 198, 40, 1097, 312, 12, 6285, 323, 312, 23318, 287, 473, 49721, 6, 43422, 323, 586, 6604, 826, 2403, 4846, 2326, 12667, 315, 3314, 1234, 79739, 42726, 323, 14337, 11, 18063, 44730, 5248, 11, 323, 617, 6051, 2586, 4028, 279, 3485, 356, 12, 68123, 10430, 505, 220, 1049, 16, 13, 358, 617, 3779, 433, 311, 330, 791, 7839, 1, 3857, 315, 856, 84108, 315, 813, 57310, 37635, 323, 617, 420, 311, 2019, 315, 433, 512, 16309, 25, 2149, 29093, 83026, 11, 272, 65160, 11, 26853, 17370, 305, 49721, 11, 55357, 14337, 11, 33107, 596, 22168, 11, 18063, 44730, 5248, 11, 21256, 445, 1366, 309, 11, 5165, 8612, 10349, 11, 8976, 91627, 1609, 11, 12131, 42726, 11, 29607, 30283, 11, 31552 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 43602, 369, 279, 364, 13730, 6, 10260, 198, 40, 1097, 312, 12, 6285, 323, 312, 23318, 287, 473, 49721, 6, 43422, 323, 586, 6604, 826, 2403, 4846, 2326, 12667, 315, 3314, 1234, 79739, 42726, 323, 14337, 11, 18063, 44730, 5248, 11, 323, 617, 6051, 2586, 4028, 279, 3485, 356, 12, 68123, 10430, 505, 220, 1049, 16, 13, 358, 617, 3779, 433, 311, 330, 791, 7839, 1, 3857, 315, 856, 84108, 315, 813, 57310, 37635, 323, 617, 420, 311, 2019, 315, 433, 512, 16309, 25, 2149, 29093, 83026, 11, 272, 65160, 11, 26853, 17370, 305, 49721, 11, 55357, 14337, 11, 33107, 596, 22168, 11, 18063, 44730, 5248, 11, 21256, 445, 1366, 309, 11, 5165, 8612, 10349, 11, 8976, 91627, 1609, 11, 12131, 42726, 11, 29607, 30283, 11, 31552, -100 ]
Financial companies learned their lesson from the terrorist attacks of Sept. 11, 2001, and the massive power blackout of 2003 and are ready for Republican National Convention-related disruptions. As New York braces for the Republican National Convention this week, IT managers at the city's financial services companies may be nervous about the potential for terrorism, but they're prepared. Having learned from the terrorist attacks of Sept. 11, 2001, and the massive power blackout of 2003, many Manhattan-based companies are now hardened with beefed-up disaster recovery initiatives, such as encrypted data backup processes, remote backup facilities and redundant telecommunications systems. John Shaffer, like IT managers at financial companies across the city, has checked and rechecked his backup and disaster recovery systems to ensure availability of his company's critical IT resources. "There's definitely a concern. [Terrorists] have obviously picked buildings in our area that are potential targets. Who really knows what's going to happen?" said Shaffer, director of technology at Greenhill & Co. Inc., an investment bank located near Madison Square Garden, site of the RNC. "We've been reviewing our plans to make sure that in the worst-case scenario, I [can] move my e-mail someplace else."
{ "redpajama_set_name": "RedPajamaC4" }
7,652
[ 128000, 57330, 5220, 9687, 872, 18228, 505, 279, 20320, 8951, 315, 5488, 13, 220, 806, 11, 220, 1049, 16, 11, 323, 279, 11191, 2410, 97504, 315, 220, 1049, 18, 323, 527, 5644, 369, 9540, 5165, 26958, 14228, 98057, 627, 2170, 1561, 4356, 60291, 369, 279, 9540, 5165, 26958, 420, 2046, 11, 8871, 20258, 520, 279, 3363, 596, 6020, 3600, 5220, 1253, 387, 23418, 922, 279, 4754, 369, 24020, 11, 719, 814, 2351, 10235, 627, 29132, 9687, 505, 279, 20320, 8951, 315, 5488, 13, 220, 806, 11, 220, 1049, 16, 11, 323, 279, 11191, 2410, 97504, 315, 220, 1049, 18, 11, 1690, 29890, 6108, 5220, 527, 1457, 71836, 449, 25309, 291, 5352, 21426, 13654, 28271, 11, 1778, 439, 25461, 828, 16101, 11618, 11, 8870, 16101, 13077, 323, 48832, 62866 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 57330, 5220, 9687, 872, 18228, 505, 279, 20320, 8951, 315, 5488, 13, 220, 806, 11, 220, 1049, 16, 11, 323, 279, 11191, 2410, 97504, 315, 220, 1049, 18, 323, 527, 5644, 369, 9540, 5165, 26958, 14228, 98057, 627, 2170, 1561, 4356, 60291, 369, 279, 9540, 5165, 26958, 420, 2046, 11, 8871, 20258, 520, 279, 3363, 596, 6020, 3600, 5220, 1253, 387, 23418, 922, 279, 4754, 369, 24020, 11, 719, 814, 2351, 10235, 627, 29132, 9687, 505, 279, 20320, 8951, 315, 5488, 13, 220, 806, 11, 220, 1049, 16, 11, 323, 279, 11191, 2410, 97504, 315, 220, 1049, 18, 11, 1690, 29890, 6108, 5220, 527, 1457, 71836, 449, 25309, 291, 5352, 21426, 13654, 28271, 11, 1778, 439, 25461, 828, 16101, 11618, 11, 8870, 16101, 13077, 323, 48832, 62866, -100 ]
Testing time for journalists, state surveillance apparatus more overbearing than ever, says Ravish Kumar Before receiving Ramon Magsaysay Award for 2019 Ravish Kumar delivered a speech in Manila. Kumar delivered a speech on "The Power of Citizen's journalism to Advance Democracy", in Philippines NH Web Desk Published: 06 Sep 2019, 9:54 AM Before receiving Ramon Magsaysay Award for 2019, famous Hindi journalist Ravish Kumar delivered a speech in Manila. Kumar delivered a speech on "The Power of Citizen's journalism to Advance Democracy", in Philippines. Ravish Kumar won the award for "harnessing journalism to give voice to the voiceless" and his "unfaltering commitment to a professional, ethical journalism of the highest standards". He is one the five recipients of the 2019 Magsaysay award, the Asian equivalent of the Nobel, which recognises the "greatness of spirit and transformative leadership in Asia". Ravish in his speech spoke about the current 'testing times' for journalists and common citizens "in today's times when the attack on our citizenship is all-encompassing and the state's surveillance apparatus is more overbearing than ever." "In other words, the media controls the diversity of the news stories, and specifies what interpretation of news events are acceptable. The media is now a part of the surveillance state. It isn't the fourth estate anymore, but the first estate." Kumar said. Ravish also spoke about what was happening in Hong Kong and Kashmir and stated that people are out still fighting for citizenship. "The citizens of Hong Kong have challenged the government's effort to render citizenship hollow by refashioning objects of control into devices of liberation. The citizens of Hong Kong were willing and able to extricate themselves from the authoritarian network of information. This tells us that the state has not yet defeated citizenship." Kumar said. While speaking about Kashmir, he questioned the month-long ongoing communication blackout: "What happens when the media, which is meant to gather, process and relay information, supports the shutdown of all sources of information? In doing so, the media stands against the citizen who is trying to learn about the world around her — not as a matter of curiosity, but for her survival and her family's well-being." He also spoke on citizen journalism. He said, "When the media turns against the citizen, then it's time for the citizens to take on the role of the media. Government advertising forms a huge chunk of revenue for the media today. Citizen journalism, on the other hand, is struggling to survive purely on public support whilst staying outside the web of the government patronage and advertisers." He also urged citizens to be democratic. "We are in urgent need of Citizen Journalists during today's times but even more than that we need the Citizen Democratic." he stated. On September 22, Ravish will also receive another award, the first Gauri Lankesh Memorial Award that was announced on September 5, on the occasion of the Lankesh's second death anniversary. Ravish Kumar 2019 Ramon Magsaysay Award LIVE News Updates: Meghalaya relaxes upper age limit for candidates applying for Govt services by 5 years
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
592
[ 128000, 16856, 892, 369, 23348, 11, 1614, 22156, 41705, 810, 927, 88450, 1109, 3596, 11, 2795, 35074, 819, 41240, 198, 10438, 12588, 15504, 263, 386, 2076, 954, 352, 17768, 369, 220, 679, 24, 35074, 819, 41240, 12886, 264, 8982, 304, 57664, 13, 41240, 12886, 264, 8982, 389, 330, 791, 7572, 315, 47317, 596, 30104, 311, 47396, 48189, 498, 304, 26363, 198, 52371, 5000, 39794, 198, 29986, 25, 220, 2705, 17907, 220, 679, 24, 11, 220, 24, 25, 4370, 6912, 198, 10438, 12588, 15504, 263, 386, 2076, 954, 352, 17768, 369, 220, 679, 24, 11, 11495, 45080, 23672, 35074, 819, 41240, 12886, 264, 8982, 304, 57664, 13, 41240, 12886, 264, 8982, 389, 330, 791, 7572, 315, 47317, 596, 30104, 311, 47396, 48189, 498, 304, 26363, 627, 49, 402, 819 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 16856, 892, 369, 23348, 11, 1614, 22156, 41705, 810, 927, 88450, 1109, 3596, 11, 2795, 35074, 819, 41240, 198, 10438, 12588, 15504, 263, 386, 2076, 954, 352, 17768, 369, 220, 679, 24, 35074, 819, 41240, 12886, 264, 8982, 304, 57664, 13, 41240, 12886, 264, 8982, 389, 330, 791, 7572, 315, 47317, 596, 30104, 311, 47396, 48189, 498, 304, 26363, 198, 52371, 5000, 39794, 198, 29986, 25, 220, 2705, 17907, 220, 679, 24, 11, 220, 24, 25, 4370, 6912, 198, 10438, 12588, 15504, 263, 386, 2076, 954, 352, 17768, 369, 220, 679, 24, 11, 11495, 45080, 23672, 35074, 819, 41240, 12886, 264, 8982, 304, 57664, 13, 41240, 12886, 264, 8982, 389, 330, 791, 7572, 315, 47317, 596, 30104, 311, 47396, 48189, 498, 304, 26363, 627, 49, 402, 819, -100 ]
Being an international traveller myself, I completely appreciate how much easier it is to do things on-line as opposed to having to make international telephone calls. I cannot see any reason why Guests from New Zealand would not be able to use this same form. If you do encounter any problems, I would recommend firstly contacting the Company with whom you booked your holiday package with and asking them to update your flight details. As a last resort, you could ring Disney's Magical Express direct by calling 001-866-599-0951. If you do end up going down this route, in order to make the call as economical as possible, I would highly recommend using Skype.
{ "redpajama_set_name": "RedPajamaC4" }
9,574
[ 128000, 34242, 459, 6625, 86294, 7182, 11, 358, 6724, 15763, 1268, 1790, 8831, 433, 374, 311, 656, 2574, 389, 8614, 439, 16475, 311, 3515, 311, 1304, 6625, 21186, 6880, 627, 40, 4250, 1518, 904, 2944, 3249, 62682, 505, 1561, 17340, 1053, 539, 387, 3025, 311, 1005, 420, 1890, 1376, 627, 2746, 499, 656, 13123, 904, 5435, 11, 358, 1053, 7079, 95052, 47208, 279, 8351, 449, 8884, 499, 34070, 701, 13560, 6462, 449, 323, 10371, 1124, 311, 2713, 701, 11213, 3649, 627, 2170, 264, 1566, 22541, 11, 499, 1436, 10264, 16795, 596, 73810, 17855, 2167, 555, 8260, 220, 4119, 12, 22455, 12, 21944, 12, 26421, 16, 13, 1442, 499, 656, 842, 709, 2133, 1523, 420, 6149, 11, 304, 2015, 311, 1304, 279, 1650, 439, 60618, 439, 3284, 11, 358 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 34242, 459, 6625, 86294, 7182, 11, 358, 6724, 15763, 1268, 1790, 8831, 433, 374, 311, 656, 2574, 389, 8614, 439, 16475, 311, 3515, 311, 1304, 6625, 21186, 6880, 627, 40, 4250, 1518, 904, 2944, 3249, 62682, 505, 1561, 17340, 1053, 539, 387, 3025, 311, 1005, 420, 1890, 1376, 627, 2746, 499, 656, 13123, 904, 5435, 11, 358, 1053, 7079, 95052, 47208, 279, 8351, 449, 8884, 499, 34070, 701, 13560, 6462, 449, 323, 10371, 1124, 311, 2713, 701, 11213, 3649, 627, 2170, 264, 1566, 22541, 11, 499, 1436, 10264, 16795, 596, 73810, 17855, 2167, 555, 8260, 220, 4119, 12, 22455, 12, 21944, 12, 26421, 16, 13, 1442, 499, 656, 842, 709, 2133, 1523, 420, 6149, 11, 304, 2015, 311, 1304, 279, 1650, 439, 60618, 439, 3284, 11, 358, -100 ]
The Bitterroot School of Music is proud to announce the 2017 Annual Fundraiser featuring the Big Sky Mud Flaps, local food and brews. The evening festivities will begin at 6pm with a student recital followed by America's favorite swing band, the Big Sky Mud Flaps. Please join them at the Bedford Building April 15th, 6 to 10 pm, in downtown Hamilton to celebrate great music, local food and a unique and diverse community. There will be a silent action and a raffle for a Vintage Harmony Archtop Guitar. All donations support the Bitterroot School of Music programming, outreach, student and instrument scholarship programs. This is a free event, open to the public. Donations are Welcomed!
{ "redpajama_set_name": "RedPajamaC4" }
3,720
[ 128000, 791, 426, 3328, 2959, 6150, 315, 10948, 374, 12691, 311, 22203, 279, 220, 679, 22, 25992, 13492, 969, 12329, 16850, 279, 6295, 15064, 69440, 3061, 2690, 11, 2254, 3691, 323, 17109, 82, 13, 578, 11714, 80459, 690, 3240, 520, 220, 21, 5298, 449, 264, 5575, 1421, 2223, 8272, 555, 5270, 596, 7075, 19336, 7200, 11, 279, 6295, 15064, 69440, 3061, 2690, 13, 5321, 5249, 1124, 520, 279, 73768, 17283, 5936, 220, 868, 339, 11, 220, 21, 311, 220, 605, 9012, 11, 304, 19441, 24051, 311, 18890, 2294, 4731, 11, 2254, 3691, 323, 264, 5016, 323, 17226, 4029, 13, 2684, 690, 387, 264, 21737, 1957, 323, 264, 436, 45190, 369, 264, 36945, 66480, 9683, 3565, 47759, 627, 2460, 24910, 1862, 279, 426, 3328, 2959, 6150, 315, 10948, 15840 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 426, 3328, 2959, 6150, 315, 10948, 374, 12691, 311, 22203, 279, 220, 679, 22, 25992, 13492, 969, 12329, 16850, 279, 6295, 15064, 69440, 3061, 2690, 11, 2254, 3691, 323, 17109, 82, 13, 578, 11714, 80459, 690, 3240, 520, 220, 21, 5298, 449, 264, 5575, 1421, 2223, 8272, 555, 5270, 596, 7075, 19336, 7200, 11, 279, 6295, 15064, 69440, 3061, 2690, 13, 5321, 5249, 1124, 520, 279, 73768, 17283, 5936, 220, 868, 339, 11, 220, 21, 311, 220, 605, 9012, 11, 304, 19441, 24051, 311, 18890, 2294, 4731, 11, 2254, 3691, 323, 264, 5016, 323, 17226, 4029, 13, 2684, 690, 387, 264, 21737, 1957, 323, 264, 436, 45190, 369, 264, 36945, 66480, 9683, 3565, 47759, 627, 2460, 24910, 1862, 279, 426, 3328, 2959, 6150, 315, 10948, 15840, -100 ]
Our highly experienced team regularly acts on a range of multinational trade and other receivables-based financing transactions throughout Europe, the U.S. and Asia. The firm's deep involvement in the development of this market - acting for arrangers, lenders, sponsors, originators and investors - enables us to offer developed solutions to executing complex cross-border deals. Key originator jurisdictions in which we are experienced include - Australia, Belgium, Canada, France, Germany, Italy, Malaysia, Mexico, Norway, Poland, Portugal, Spain, Sweden, Switzerland, Thailand, The Netherlands, UK, US. Our experience with conduit sponsors, combined with our thorough understanding of the unique requirements of their programmes, is a key strength, allowing us to provide seamless counsel to sponsors, lenders and originators alike. We are also accomplished at working across the credit spectrum and capital structure on the full range of products, including asset-based, asset-purchase and hybrid financing solutions. Whether we are facilitating the refinancing of a leveraged buyout, structuring an innovative supply chain finance platform, putting in place essential working capital or restructuring an existing facility to address changes in accounting or regulatory rules, our team integrates market-leading regulatory, derivatives and tax expertise with our transactional strengths to provide clients with expert advice at every stage. Advised in relation to a conduit-funded revolving sterling facility backed by loan receivables originated by a leading insurance premia company.
{ "redpajama_set_name": "RedPajamaC4" }
623
[ 128000, 8140, 7701, 10534, 2128, 15870, 14385, 389, 264, 2134, 315, 69026, 6696, 323, 1023, 2215, 344, 4893, 6108, 29642, 14463, 6957, 4606, 11, 279, 549, 815, 13, 323, 13936, 13, 578, 7626, 596, 5655, 22315, 304, 279, 4500, 315, 420, 3157, 482, 15718, 369, 2961, 14381, 11, 46115, 11, 39701, 11, 6371, 3046, 323, 15167, 482, 20682, 603, 311, 3085, 8040, 10105, 311, 31320, 6485, 5425, 28117, 12789, 627, 1622, 6371, 859, 56043, 304, 902, 584, 527, 10534, 2997, 482, 8494, 11, 34061, 11, 7008, 11, 9822, 11, 10057, 11, 15704, 11, 28796, 11, 12550, 11, 32603, 11, 28702, 11, 34411, 11, 18157, 11, 24067, 11, 30221, 11, 30567, 11, 578, 26746, 11, 6560, 11, 2326, 627, 8140, 3217, 449, 77635, 39701, 11, 11093, 449, 1057, 17879 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 7701, 10534, 2128, 15870, 14385, 389, 264, 2134, 315, 69026, 6696, 323, 1023, 2215, 344, 4893, 6108, 29642, 14463, 6957, 4606, 11, 279, 549, 815, 13, 323, 13936, 13, 578, 7626, 596, 5655, 22315, 304, 279, 4500, 315, 420, 3157, 482, 15718, 369, 2961, 14381, 11, 46115, 11, 39701, 11, 6371, 3046, 323, 15167, 482, 20682, 603, 311, 3085, 8040, 10105, 311, 31320, 6485, 5425, 28117, 12789, 627, 1622, 6371, 859, 56043, 304, 902, 584, 527, 10534, 2997, 482, 8494, 11, 34061, 11, 7008, 11, 9822, 11, 10057, 11, 15704, 11, 28796, 11, 12550, 11, 32603, 11, 28702, 11, 34411, 11, 18157, 11, 24067, 11, 30221, 11, 30567, 11, 578, 26746, 11, 6560, 11, 2326, 627, 8140, 3217, 449, 77635, 39701, 11, 11093, 449, 1057, 17879, -100 ]
Republican Mary Beth Carozza unseats Democratic Jim Mathias in the Maryland State Senate District 38 race. Follow the celebration and heartbreak. Republican Mary Beth Carozza wiped away tears as she stared at the election results on the television screen. With 53 percent of the vote, she had unseated Democratic incumbent Jim Mathias in the Maryland State Senate District 38 race. Carozza supporters at West Ocean City's Mad Fish Bar & Grill erupted into cheers when the race was called in Carozza's favor. When the results came in, Carozza addressed the crowd of energized supporters and thanked God for guiding her through this campaign. The Republican candidate — recruited by Gov. Larry Hogan to challenge Mathias — campaigned right until the very end, making stops at various polling locations on Election Day before ending her night in West Ocean City. Throughout her campaign for the State Senate, Carozza said she could feel her support base growing, but there was always a sliver of doubt. With the votes counted, her uncertainty has been replaced by gratitude, she said. By about 10:30 p.m., the race had been called with Carozza winning 53 percent of the vote. Going door-to-door and hearing the priorities of voters on the Lower Eastern Shore gave Carozza the direction and support to lead a successful campaign, she said. Though the victory celebration for his challenger had already begun, Mathias joined a crowd of supporters at Tall Tales Brewing Company in Parsonsburg to an eruption of applause. With bills like the one that provided funding support for the building of a new Coastal Hospice facility in his portfolio, Mathias said his work isn't over yet because those are the gifts that keep on giving. From the beginning, Carozza has had the support of Hogan, who endorsed her for State Senate. Carozza closely aligned herself with the popular governor in the hopes of bolstering support among voters on the Lower Eastern Shore. This tactic proved to be successful Tuesday night. Hogan secured his re-election as governor of Maryland with 56.2 percent of the vote. Among voters on the Lower Eastern Shore, he was even more popular, garnering on average 71.5 percent in the three counties. For Wicomico and Worcester counties, Carozza carried more than 50 percent of the vote. In Somerset County, she fell short of Mathias by a mere 10 votes. As the newly elected senator, Carozza is looking forward to being a larger voice for the Shore. Winning the seat also puts her in a better position to support Hogan, she said. "Hogan has a lot planned for the second term, and I plan to be right with it all, making sure that we move forward with our Shore priorities," Carozza said. Overall, Maryland Republicans won one additional seat in the State Senate to bring their party total up to 15 out of 47 seats. Mathias was previously the sole Democrat on the Eastern Shore, but now that part of Maryland is solidly red. State Republicans were trying to gain five additional seats to get a total of 19 senators to sustain Hogan's veto against a Democratic override, but were not successful. This Democratic supermajority will keep Hogan in check, ensuring he stays more moderate and bipartisan as he moves into his second term as governor, said Stella Rouse, an associate professor of government and politics at the University of Maryland. "I suspect the fact that Hogan was going to have a check in the Maryland legislature was something that comforted a lot of Democrats and made them more comfortable voting for Hogan rather than if he had higher Republican numbers in the legislature," Rouse said. Having a majority Democrat legislature in Maryland will also be key when the 2020 Census comes around, Rouse said. Democrats will have more power over redistricting so it will be interesting to see how that plays out, she said. Who is taking over Carozza's House District 38C? Taking over Carozza's old House of Delegates District 38C seat is Republican Wayne Hartman, who previously served as a council member on the Ocean City Town Council. Hartman had campaigned for the delegate seat alongside Carozza as she strove for the senate. Carozza was the first person to hold the District 38C seat in the Maryland House of Delegates after it was created in 2013. For the most part, Hartman ran unopposed in the general election as there was no Democratic candidate. Ed Tinus did run as a write-in candidate, but Hartman had an overwhelming victory with 95.4 percent of the vote. On the issues: What sets Mathias and Carozza apart? Mathias ran on a campaign that centered around his ability to navigate partisan politics, especially as a rare Democratic voice on the Eastern Shore. "The goodness of my accomplishments and leadership was bringing all those folks together," he said on election night. He currently has eight committee assignments, including the Finance Committee, Joint Committee on Ending Homeless and Maryland Veterans Caucus. In the 2018 session, he sponsored a total of 162 pieces of legislation, with more than 80 ultimately enacted. However, the opioid crisis, a priority that in 2017 the Hogan administration declared a state of emergency, proved to be among the most controversial issues for Mathias. A Maryland Republican Party-sponsored flyer mailed to Lower Shore voters attacked him for his stance on a bill intended to allow for the establishment of a supervised drug consumption facility program. Championed by a Baltimore Democrat in the House of Delegates since 2016, Mathias co-sponsored the Senate version of the measure this year, but it received an unfavorable report from the Finance Committee. The flyer alleged Mathias favored allowing Marylanders to "legally shoot up heroin," claiming "Jim Mathias is making it easier to get heroin than ice cream." He described the attack as a distortion of the bill's intent. In an interview with Delmarva Now ahead of election day, Mathias instead focused on his support for other initiatives that established tools in the fight against opioids, particularly the Prescription Drug Monitoring Program and HOPE and Treatment Act of 2017. He voted in favor of the PDMP's establishment in 2011 and earlier this year co-sponsored a bill in the Senate meant to revise the program, though the legislation eventually failed because the House and Senate versions could not be reconciled. He was also one of the 14 sponsors in the Senate for the Heroin and Opioid Prevention Effort and Treatment Act of 2017, which addressed behavioral health in a variety of ways, including through treatment access and crisis hotlines. "My point is that Gov. Hogan has recognized with his leadership at the state level and what I have recognized at the local level is to work closely with those local teams so we can determine best solutions for our limited state resources and that is a contrast with the incumbent," she said in a previous interview. In her first House term, Carozza sat on seven committees, including the Appropriations Committee, Maryland Veterans Caucus and Women Legislators of Maryland. Of the 111 total bills she sponsored during the 2018 session, 23 were successfully enacted. On the House Appropriations Committee, Carozza touted her collaboration on Hogan's $44.4 billion budget in her 2018 End of Session Review, stressing the "historic" and "unprecedented" $6.5 billion included for K-12 education. But a Maryland Democratic Senate Caucus flyer took aim at her education voting record by claiming she voted no to increasing state education funding for the shore, access to higher education and modernizing school construction. "Unlike Jim Mathias, who voted for every wasteful budget that Martin O'Malley put forward with no questions asked, I'm willing to vote 'NO' on a budget when wasteful spending is added late in the game, and that's why I ran for office in the first place, to hold the line on excessive spending," she said in her campaign statement. Her end of session review also explained her opposition to the 21st Century School Facilities Commission bill that included an amendment stripping oversight authority from the Board of Public Works and giving it to an appointed board. Hogan vetoed the bill, a move Carozza voted to sustain. But the veto was overridden with support from Mathias. Even though the election is over, Carozza will still be keeping busy until the legislative session starts in January. The senator-elect said she will be spending the days following the election going around District 38 and thanking all of the voters who supported her campaign. When she gets to the State Senate next year, Carozza said she wants to build upon the work Hogan has been doing with regard to job growth and economic development. She added that she's very passionate about career trade technology education as well. "These are ways we can keep our young people here on the Shore, so not only that they have an opportunity of a good education, but also once they graduate, they have career opportunities right here on the Shore," Carozza said. After a long and hard fought campaign, Mathias said he's going to take some time for family and rest. Even though Mathias said he and Hogan get along well, it has been hard to run as a Democrat in a rural district while a popular Republican governor is also running for re-election. Working successfully with Republicans and more progressive Democrats in Maryland during his tenure in the State Senate is an accomplishment Mathias is proud of. Over the past two terms, Mathias said he's been able to make a case in Annapolis for the Shore's needs.
{ "redpajama_set_name": "RedPajamaC4" }
1,190
[ 128000, 69555, 10455, 29103, 3341, 9700, 4458, 653, 325, 1900, 11650, 11641, 4242, 3557, 304, 279, 23481, 3314, 10092, 11182, 220, 1987, 7102, 13, 11359, 279, 25960, 323, 4851, 9137, 627, 69555, 10455, 29103, 3341, 9700, 4458, 49266, 3201, 24014, 439, 1364, 45135, 520, 279, 6355, 3135, 389, 279, 12707, 4264, 627, 2409, 220, 4331, 3346, 315, 279, 7055, 11, 1364, 1047, 653, 325, 660, 11650, 51382, 11641, 4242, 3557, 304, 279, 23481, 3314, 10092, 11182, 220, 1987, 7102, 627, 9028, 9700, 4458, 15879, 520, 4410, 22302, 4409, 596, 9671, 17019, 4821, 612, 50948, 61274, 1139, 74983, 994, 279, 7102, 574, 2663, 304, 3341, 9700, 4458, 596, 4799, 627, 4599, 279, 3135, 3782, 304, 11, 3341, 9700, 4458, 20669, 279, 13734, 315, 4602, 1534, 15879, 323, 57595, 4359 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 69555, 10455, 29103, 3341, 9700, 4458, 653, 325, 1900, 11650, 11641, 4242, 3557, 304, 279, 23481, 3314, 10092, 11182, 220, 1987, 7102, 13, 11359, 279, 25960, 323, 4851, 9137, 627, 69555, 10455, 29103, 3341, 9700, 4458, 49266, 3201, 24014, 439, 1364, 45135, 520, 279, 6355, 3135, 389, 279, 12707, 4264, 627, 2409, 220, 4331, 3346, 315, 279, 7055, 11, 1364, 1047, 653, 325, 660, 11650, 51382, 11641, 4242, 3557, 304, 279, 23481, 3314, 10092, 11182, 220, 1987, 7102, 627, 9028, 9700, 4458, 15879, 520, 4410, 22302, 4409, 596, 9671, 17019, 4821, 612, 50948, 61274, 1139, 74983, 994, 279, 7102, 574, 2663, 304, 3341, 9700, 4458, 596, 4799, 627, 4599, 279, 3135, 3782, 304, 11, 3341, 9700, 4458, 20669, 279, 13734, 315, 4602, 1534, 15879, 323, 57595, 4359, -100 ]
About Education Center Gemstone List Crystal: Austrian Crystal: Austrian Austrian crystal offers a magnificent palette of inspiration with its variety of colors, shapes and sizes. Coupled with the country's passion for detail and high-precision cutting, Austrian crystal adds sophistication and glamour to any embellishment. Austrian crystal is considered a rhinestone. The name rhinestones originated on the shores of the Rhine River that borders Austria. Early Europeans gathered sparkling rock crystal pebbles from the river's bank to use as adornments. Austrian crystal is handmade using a technique traditionally known for cutting hand-blown glass. Austria leads the world in the production of precision-cut crystals. They are used in fashion and jewelry as well as in architecture, lighting and interior designs. Some traditions credit crystals with extending relief for sufferers of stress, arthritis or joint pain. Crystals have been believed to alleviate traces of poisoning and ease depression. More than 3,000 years ago, the art of glass making was developing in Mesopotamia, Egypt, China, Greece and Austria. By the 15th century, the city of Vienna was leading Europe in the production of select glassware. The diverse elements involved in glassmaking resulted in Vienna's version with delicate features and minimal fractures making it the perfect base for the country's new industry. In the late 1800s, while still in Bohemia (now part of Czech Republic), Daniel Swarovski invented a machine that could cut the crystals. Although, he obtained its patent in 1892, concerns swirling around his trade secrets leaking to competitors, forced him move to Wattens, Austria. From then on, he continued his work based in Austria.In 1977, Austrian Crystals reached the American market and instantly became popular thanks to their clear brilliance, color and fair pricing. Sourced from Austria. Colors available in unlimited hues with a rainbow reflection. Austrian crystal is formed by melting sand, soda, lime (from limestone) and other compounds at high temperatures. This process improves the clarity of glass, adding brightness, gleam and the ability to refract light. These crystals are unusual as they are highly reflective, a feature brought by the purity and clarity of the molten glass. Austrian crystal coatings come from various metals, which produce a high degree of sparkle and glitter. Skilled craftsmen then form prisms that bring forth layers of radiant color.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,983
[ 128000, 10714, 11930, 5955, 32245, 11046, 1796, 29016, 25, 58069, 198, 82038, 25, 58069, 198, 32, 592, 7414, 26110, 6209, 264, 41792, 27404, 315, 20343, 449, 1202, 8205, 315, 8146, 11, 21483, 323, 12562, 13, 18733, 50185, 449, 279, 3224, 596, 11939, 369, 7872, 323, 1579, 12, 28281, 14713, 11, 58069, 26110, 11621, 85536, 323, 80049, 311, 904, 72514, 16409, 627, 32, 592, 7414, 26110, 374, 6646, 264, 22408, 258, 99033, 13, 578, 836, 22408, 258, 478, 3233, 44853, 389, 279, 63263, 315, 279, 18452, 483, 11188, 430, 24743, 35998, 13, 23591, 51607, 20802, 64612, 7091, 26110, 1069, 6194, 645, 505, 279, 15140, 596, 6201, 311, 1005, 439, 59046, 1392, 13, 58069, 26110, 374, 52786, 1701, 264, 15105, 36342, 3967, 369, 14713, 1450, 16677, 785, 9168, 13, 35998 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 11930, 5955, 32245, 11046, 1796, 29016, 25, 58069, 198, 82038, 25, 58069, 198, 32, 592, 7414, 26110, 6209, 264, 41792, 27404, 315, 20343, 449, 1202, 8205, 315, 8146, 11, 21483, 323, 12562, 13, 18733, 50185, 449, 279, 3224, 596, 11939, 369, 7872, 323, 1579, 12, 28281, 14713, 11, 58069, 26110, 11621, 85536, 323, 80049, 311, 904, 72514, 16409, 627, 32, 592, 7414, 26110, 374, 6646, 264, 22408, 258, 99033, 13, 578, 836, 22408, 258, 478, 3233, 44853, 389, 279, 63263, 315, 279, 18452, 483, 11188, 430, 24743, 35998, 13, 23591, 51607, 20802, 64612, 7091, 26110, 1069, 6194, 645, 505, 279, 15140, 596, 6201, 311, 1005, 439, 59046, 1392, 13, 58069, 26110, 374, 52786, 1701, 264, 15105, 36342, 3967, 369, 14713, 1450, 16677, 785, 9168, 13, 35998, -100 ]
On Thursday 12 February 2015, Prof. Dr. Luc van Loon from Maastricht University Medical Center will be delivering his inaugural lecture of the Francqui Chair, awarded to him this year. The lecture is titled 'The Human Engine'. The lecture will be introduced by Prof. Dr. Eric Kerckhofs, Dean of the VUB Faculty of Physical Education and Physiotherapy. Prof. Luc van Loon has acquired an international research standing in the area of skeletal muscle metabolism. The research in his laboratory focuses on the role of physical activity and nutrition to improve health and performance in chronic metabolic disease and aging. He has authored more than 200 peer-reviewed research articles and has taken up many positions to help bring across the message that nutrition and physical activity are of key importance to maintain or achieve proper health. Please subscribe for the inaugural lecture. Deadline is 5 February 2015. You can no longer submit using form.
{ "redpajama_set_name": "RedPajamaC4" }
2,406
[ 128000, 1966, 7950, 220, 717, 7552, 220, 679, 20, 11, 8626, 13, 2999, 13, 14103, 5355, 6621, 263, 505, 386, 5418, 496, 4970, 3907, 13235, 5955, 690, 387, 24944, 813, 54559, 31678, 315, 279, 9893, 47391, 16478, 11, 22034, 311, 1461, 420, 1060, 627, 791, 31678, 374, 25891, 364, 791, 11344, 8364, 4527, 578, 31678, 690, 387, 11784, 555, 8626, 13, 2999, 13, 16645, 36258, 377, 71, 37181, 11, 25028, 315, 279, 650, 4594, 42904, 315, 28479, 11930, 323, 13101, 822, 46755, 627, 19105, 13, 14103, 5355, 6621, 263, 706, 19426, 459, 6625, 3495, 11509, 304, 279, 3158, 315, 69397, 16124, 39097, 13, 578, 3495, 304, 813, 27692, 24400, 389, 279, 3560, 315, 7106, 5820, 323, 26677, 311, 7417, 2890, 323, 5178, 304, 21249, 41861, 8624, 323, 30084 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1966, 7950, 220, 717, 7552, 220, 679, 20, 11, 8626, 13, 2999, 13, 14103, 5355, 6621, 263, 505, 386, 5418, 496, 4970, 3907, 13235, 5955, 690, 387, 24944, 813, 54559, 31678, 315, 279, 9893, 47391, 16478, 11, 22034, 311, 1461, 420, 1060, 627, 791, 31678, 374, 25891, 364, 791, 11344, 8364, 4527, 578, 31678, 690, 387, 11784, 555, 8626, 13, 2999, 13, 16645, 36258, 377, 71, 37181, 11, 25028, 315, 279, 650, 4594, 42904, 315, 28479, 11930, 323, 13101, 822, 46755, 627, 19105, 13, 14103, 5355, 6621, 263, 706, 19426, 459, 6625, 3495, 11509, 304, 279, 3158, 315, 69397, 16124, 39097, 13, 578, 3495, 304, 813, 27692, 24400, 389, 279, 3560, 315, 7106, 5820, 323, 26677, 311, 7417, 2890, 323, 5178, 304, 21249, 41861, 8624, 323, 30084, -100 ]
How Can This Help My Family? What About Long Term Care? What will happen if I don't have a Last Will and Testament? What will happen if I don't have a Durable Financial Power of Attorney? What will happen if I don't have an Advance Directive? Why would I or my parents need an elder law attorney? When is a nursing home the right choice? How do I choose the right nursing home in Maryland? With respect to assets you own at death, if you don't make decisions about your property, Maryland law will control what happens to it. There is chance that what Maryland law will do with your property is exactly what you would have done if you had made the decisions, but there is a better chance that you and Maryland would not make the same decisions. If you die without a will, you'll become what's called intestate. This means that your estate will be settled based on the laws of your state that outline who inherits what. Probate is the legal process of transferring the property of a deceased person to the rightful heirs. Since no executor was named, a judge appoints an administrator to serve in that capacity. If you become incapacitated and are unable to make decisions for yourself, then there may be a need for a guardianship proceeding in order to appoint a guardian (who may not even be a family member) for you or your property in order to make decisions. Choosing a person to act as your health care agent is important. Even if you have other legal documents regarding your care, not all situations can be anticipated and some situations will require someone to make a judgment about your likely care wishes. When you need helping making decisions regarding your power of attorney, Hammond and Associates can help. While it's not required to have an advance directive in place, it's beneficial to start planning for unexpected situations before they occur. With respect to medical decisions, if you are incapacitated and unable to make decisions for yourself, Maryland Law (Health General §5-605) provides a list of people in order of priority who can be your surrogate decision maker. Of course unless you have had health care related discussions with that person, that person will be making health care decisions for you without the kind of guidance that you would likely have provided in an Advance Directive. In addition disputes may arise if there is disagreement between two or more individuals who have the same priority. If no one on Maryland's list of surrogates is available and willing to serve, then a relative or close friend may be able to serve as surrogate. Finally if no one is able to act as surrogate, there may be a need for a guardianship proceeding so that a judge could appoint a guardian to make health care decisions. A guardian appointed by a court would not necessarily be someone that you know. Our expertise in elder law focuses on protecting the quality of life, financial security, and independence of older citizens. There are important and overpowering issues to tackle. Unfortunately, if ignored, these matters are left to others, sometimes strangers. The people who love you are stuck with all the consequences and you become uncomfortably aware that you may not receive the care and lifestyle you deserve. By planning ahead, you can get the medical care you want, avoid unnecessary suffering and relieve caregivers of decision-making burdens during moments of crisis or grief. A living trust is a legal document that contains instructions for what you want to happen to your assets when you die and when you lose the mental or physical capacity—such as Alzheimer's, stroke, or heart attack—to manage your assets. When you set up a living trust, you transfer assets from your name to the name of your trust. All the assets transferred are no longer your property, but are assets of the trust. If you need help setting up a living trust or would like more information on the benefits, contact the elder law attorneys at Hammond and Associates. Having more difficulty with the activities of daily living such as bathing, dressing, using the toilet, eating or transferring from bed to chair. Why should you help your loved one make the transition into a nursing home? Nursing homes provide what is called custodial care, including getting in and out of bed, and providing assistance with feeding, bathing, and dressing. These communities typically have staff on hand 24 hours a day so you can rest assured knowing your mother, father, or loved one are being cared for around the clock. They are able to maintain a neighborhood feel by not having fixed schedules and allowing the residents to make their own daily plans. For information on local nursing homes in your area, click here. How Can a Geriatric Care Manager Help Me? Conduct care-planning assessments. That way, your care manager can identify the need for various services and suggest whether a knowledgeable practitioner should be consulted concerning eligibility for assistance. Assist in identifying medical, legal, or financial issues. A care manager can offer referrals to practitioners who specialize in issues related to aging, elderly or geriatric individuals. Provide crisis intervention. A care manager can act as a liaison for families at a distance, making sure things are going well and alerting families to existing or potential problems. Assist with moving an elder. Help clients find and participate in enriching social activities. Open the lines of communication. A care manager will work with various individuals to ensure that the client and family members responsible for care are made aware of any circumstances that may make legal consultation appropriate. Monitor clients' safety and security. Care managers may recommend technology that could be of assistance or monitor those who come in contact with a client. This can help ensure that the client is being treated fairly while identifying any signs of abuse towards the client. Why do law firms like Hammond & Associates Partner with Geriatric Care Managers? Hammond and Associates has conference rooms available for meeting clients throughout Maryland.
{ "redpajama_set_name": "RedPajamaC4" }
3,202
[ 128000, 4438, 3053, 1115, 11736, 3092, 12517, 5380, 3923, 10180, 5843, 17978, 10852, 5380, 3923, 690, 3621, 422, 358, 1541, 956, 617, 264, 8155, 4946, 323, 40214, 5380, 3923, 690, 3621, 422, 358, 1541, 956, 617, 264, 423, 18835, 17961, 7572, 315, 18919, 5380, 3923, 690, 3621, 422, 358, 1541, 956, 617, 459, 47396, 57852, 5380, 10445, 1053, 358, 477, 856, 6699, 1205, 459, 22916, 2383, 14065, 5380, 4599, 374, 264, 28456, 2162, 279, 1314, 5873, 5380, 4438, 656, 358, 5268, 279, 1314, 28456, 2162, 304, 23481, 5380, 2409, 5201, 311, 12032, 499, 1866, 520, 4648, 11, 422, 499, 1541, 956, 1304, 11429, 922, 701, 3424, 11, 23481, 2383, 690, 2585, 1148, 8741, 311, 433, 13, 2684, 374, 6140, 430, 1148, 23481, 2383, 690, 656, 449, 701, 3424 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 4438, 3053, 1115, 11736, 3092, 12517, 5380, 3923, 10180, 5843, 17978, 10852, 5380, 3923, 690, 3621, 422, 358, 1541, 956, 617, 264, 8155, 4946, 323, 40214, 5380, 3923, 690, 3621, 422, 358, 1541, 956, 617, 264, 423, 18835, 17961, 7572, 315, 18919, 5380, 3923, 690, 3621, 422, 358, 1541, 956, 617, 459, 47396, 57852, 5380, 10445, 1053, 358, 477, 856, 6699, 1205, 459, 22916, 2383, 14065, 5380, 4599, 374, 264, 28456, 2162, 279, 1314, 5873, 5380, 4438, 656, 358, 5268, 279, 1314, 28456, 2162, 304, 23481, 5380, 2409, 5201, 311, 12032, 499, 1866, 520, 4648, 11, 422, 499, 1541, 956, 1304, 11429, 922, 701, 3424, 11, 23481, 2383, 690, 2585, 1148, 8741, 311, 433, 13, 2684, 374, 6140, 430, 1148, 23481, 2383, 690, 656, 449, 701, 3424, -100 ]
The term 'timeless' is often carelessly applied. Music can be eternal in a literal sense, but very rarely does a work have the endurance to live past its own age and move into new realms of significance through its context. OK Computer is one of these works. This was a life born after The Bends and away from traditional rock and roll, derived instead from a place of anxiety and paranoia that distanced itself from the declining movement of Britpop. A transitional work in the best sense of the word, it was a clinical move into the cold and empirical, before the decisive nosedive into electronica that triggered Kid A. Each song is a monument in its own right, performed with an artistry that sounds somehow effortless in spite of the album's musical complexities. While Thom Yorke provides the voice to carry a nervous narrative, a band united in their despondency set the oscillation in motion. Individual excellence never interferes: even "Paranoid Android", OK Computer's most ambitious moment, weaves through multiple passages without a display of brandish swagger. No single component of the record is more important or less significant than another. Jonny Greenwood's unique guitar work is a true joy to behold, and has been rightly celebrated, but would not be as effective without the rhythmic pulse of Phil Selway, whose choice of pattern and tempo is key in setting the tone to "Karma Police", "The Tourist", and "Let Down". This musical harmony is what makes OK Computer, an album that communicates concern over the synthetic nature of modern culture, such an intriguing and rewarding paradox. Everything it tries to convey is said literally so on "Fitter Happier", a turbulent tide of received imagery, signifying society's troublesome detachment from reality. The album is an agitated reminder that we are all human; each of us insecure, scared, and extremely vulnerable. Its release in 1997 captured a moment in time that was somehow ahead of its own. To merely brand it a landmark of the '90s is a disservice to its insight — OK Computer is as relevant now as ever, both culturally and sonically. The term 'timeless' is indeed hastily hurled at works too often, but in the case of OK Computer, there's no term more appropriate. Favourite tracks // Paranoid Android ­ Climbing Up the Walls ­ Let Down Radiohead's famed 1997 sedative for the unhappinesses of modern life is as serenely despondant now as it has ever been. This is due in part, presumably, to the unhappinesses of modern life having not changed all that much in the last twenty years, but OK Computer itself endures as pristine music. The record finds the band at the tail-end of their formative angsty-rock years, and in wicked synergy. Afforded the freedom of self-producing, and with an open deadline — both for the first time — they sound at ease in their unease on OK Computer. The songwriting is effortlessly atypical, hefty portions of the tracks are recorded live, and many of Yorke's vocals done in one take. The sense of intimacy that results utterly defies the lonely, tightly-wound discontent of the album's character, to the point that it becomes reassuring to find oneself in the thick of it. No band does alone together quite like Radiohead. While the likes of Blur were sneering 'modern life is rubbish,' Radiohead sharpened that sound to whisper the unpleasant truth: 'No, you don't understand, it really is.' The album's texture, solemn and cerebral, still sounds like it's being played for the first time whenever I listen to it. Meticulously ordered, almost (almost) all of the tracks are classics in their own right. "Let Down" and "Karma Police" are particular favourites of mine, but there's enough quality across the board to echo just about any landfill heart. OK Computer is a pantheon of '90s music, and a stonking last hurrah of Radiohead's wry British rock roots before they went all-in weird and wonderful for Kid A. Absolutely essential listening. Favourite tracks // Let Down ­ Karma Police ­ No Surprises OK Computer has received high critical acclaim since its release, but it isn't without its critics. Many complain of its pretension, its noisiness, and its lack of memorability, but I find it incredibly hard to relate to these issues, especially the latter of the three. From the first distorted guitar note of "Airbag" to the final percussive strike of "The Tourist", OK Computer feels like home to me even after years of not listening to it. Every track could be counted as a classic in Radiohead's catalogue, and it's clear that the running order for the album had a lot of thought put into it, with the consecutive tracks "Paranoid Android", "Subterranean Homesick Alien", and "Exit Music (For a Film)" making for some of the best 15 minutes of modern rock music that you can find. At a time when Radiohead were making a clear transition from solely '90s rock to a broader synth soaked sound in their music, the instrumental work across OK Computer is superb. From the clattering, driving energy of "Electioneering", attributed in part to Phil Selway's unfaltering drums, to the moody gloom of "Climbing Up the Walls" that relies heavily on its gritty bass synthesiser, there are some wonderful moments of harmony and dissonance. Thom Yorke's vocals range from haunting delicacy to full strength emotion, presenting some of his best performances in the band's catalogue. In short, OK Computer gives the listener a lot to feel. It won't necessarily be an entirely positive feeling, and will likely prompt some reflection given Yorke's more abstract, outward looking lyrics on the world, but in doing so takes the listener on an impeccably performed journey with every listen. For me, it never gets old. ­ Exit Music (For a Film) ­ Subterranean Homesick Alien "Its release in 1997 captured a moment in time that was somehow ahead of its own. To merely brand it a landmark of the '90s is a disservice to its insight—in 2016, OK Computer is as relevant now as ever, both culturally and sonically." Exit Music (For a Film) "Worldly whimsy" "Masterful pop" Songs in the Key of Life "A stunning work" Homogenic "A masterpiece" The Downward Spiral
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,084
[ 128000, 791, 4751, 364, 1712, 1752, 6, 374, 3629, 2512, 16117, 9435, 13, 10948, 649, 387, 35825, 304, 264, 24016, 5647, 11, 719, 1633, 19029, 1587, 264, 990, 617, 279, 49286, 311, 3974, 3347, 1202, 1866, 4325, 323, 3351, 1139, 502, 77563, 315, 26431, 1555, 1202, 2317, 13, 10619, 17863, 374, 832, 315, 1521, 4375, 13, 1115, 574, 264, 2324, 9405, 1306, 578, 426, 1438, 323, 3201, 505, 8776, 7091, 323, 6638, 11, 14592, 4619, 505, 264, 2035, 315, 18547, 323, 83544, 430, 1612, 4979, 5196, 505, 279, 43848, 7351, 315, 5567, 8539, 13, 362, 66743, 990, 304, 279, 1888, 5647, 315, 279, 3492, 11, 433, 574, 264, 14830, 3351, 1139, 279, 9439, 323, 46763, 11, 1603, 279, 51391, 12155, 291, 535, 1139, 17130, 3074, 430, 22900, 32666 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4751, 364, 1712, 1752, 6, 374, 3629, 2512, 16117, 9435, 13, 10948, 649, 387, 35825, 304, 264, 24016, 5647, 11, 719, 1633, 19029, 1587, 264, 990, 617, 279, 49286, 311, 3974, 3347, 1202, 1866, 4325, 323, 3351, 1139, 502, 77563, 315, 26431, 1555, 1202, 2317, 13, 10619, 17863, 374, 832, 315, 1521, 4375, 13, 1115, 574, 264, 2324, 9405, 1306, 578, 426, 1438, 323, 3201, 505, 8776, 7091, 323, 6638, 11, 14592, 4619, 505, 264, 2035, 315, 18547, 323, 83544, 430, 1612, 4979, 5196, 505, 279, 43848, 7351, 315, 5567, 8539, 13, 362, 66743, 990, 304, 279, 1888, 5647, 315, 279, 3492, 11, 433, 574, 264, 14830, 3351, 1139, 279, 9439, 323, 46763, 11, 1603, 279, 51391, 12155, 291, 535, 1139, 17130, 3074, 430, 22900, 32666, -100 ]
Tucker Carlson of Fox News declares white supremacy a hoax. Former KKK Grand Dragon David Duke agrees with him. By Gryphen|2019-08-08T05:52:06-08:00August 8th, 2019|Categories: News|Tags: CNN, David Duke, Fox News, hoax, Tucker Carlson, Twitter, Washington Post, white supremacists|9 Comments 3 days after a man who espoused anti-Hispanic views killed 22 people in El Paso, Fox News host Tucker Carlson claimed on air that white supremacy is 'a hoax.' pic.twitter.com/PZnvpmC73U — NowThis (@nowthisnews) August 8, 2019 In his ongoing and remarkably successful quest to be the worst of the Fox News nighttime hosts, Tucker Carlson hit a new low on his Tuesday show. White supremacy, he claimed, isn't a real problem in America: "This is a hoax, just like the Russia hoax. It's a conspiracy theory used to divide the country and keep a hold on power." (Let's set aside, for a moment, the truth that the Russian attacks on America's voting integrity, to help Donald Trump become president, are anything but a hoax, as the Mueller report made abundantly clear.) And, Carlson insisted, he has empirical evidence: "I've lived here 50 years and I've never met anybody, not one person who ascribes to white supremacy," he said, adding, "I don't know a single person who thinks that's a good idea." Really? I'm pretty sure that he has both met and interviewed Donald Trump. Now after this screed Carlson came under attack from…well form just about everyone. However one perons eagerly came to his defense. Tucker is RIGHT! White Supremacy is a ZioMedia Conspiracy Theory! The term is itself a lie. Millions of White activists are NOT "supremacists" We seek NOT to oppress or destroy any race! Human Rights for all – EVEN FOR WHITE PEOPLE! Stop antiWhite racism!https://t.co/vY0knfD0Xx — David Duke (@DrDavidDuke) August 7, 2019 Yep, that is David Duke former Grand Dragon of the Klu Klux Klan coming to the defense of the guy who calls white supremacy a hoax. Now for some reason, can't imagine why, Carlson has suddenly decided to go on a vacation. Courtesy of CNN: Facing mounting controversy for declaring the very real problem of white supremacy in America to be a "hoax," Tucker Carlson announced at the end of his Wednesday night Fox News show that he will be taking a vacation. "By the way," he said, "I am taking several days off — headed to the wilderness to fish with my son." Carlson added, "Politics is important, fishing with your son, sometimes more important. So I'm doing it." Of course according to the Fox News spokespeople this vacation has been in the works all along, and the timing means nothing. But we ahve seen this before. Bill O'Reilly went on a vcacation after being accused of sexual misconduct and never came back. Jeanine Pirro went on a sudden vacation after saying some terrible things on the air, and after many weeks finally limped her way back onto the airwaves. We will have to see if Carlson's vacation is a temporary one, or a permanent one, but I can almost guarantee that he will not be calling white supremacy a hoax on his Fox News show ever again. Gus Dusted August 8, 2019 at 6:21 am When they stop exhibiting it, maybe I'll stop accusing them of it. OK August 8, 2019 at 7:39 am https://www.axios.com/warren-orourke-trump-is-a-white-supremacist-1d9eba24-c253-4437-b07a-d4b6641e660b.html A group of 2020 Democrats have called President Trump a "white supremacist," an extraordinary charge at an extraordinary moment in American politics. Are these people all on mind altering drugs or what? Anon August 8, 2019 at 7:57 am Sarah, Tucker and the white supremacy folks all share the same American dream That all the black folks swim back to Africa with a Jew under each arm. https://www.cnn.com/videos/tv/2019/08/07/amanpour-rep-karen-bass.cnn "As President Trump visits Dayton, Ohio and El Paso, Texas—two towns that witnessed devastating mass shootings this week—REP. Karen Bass, chair of the Congressional Black Caucus, joins the program to discuss the divisive rhetoric and racial tensions that persist in the United States." Watch & Hear This^TRUTH A hoax, so they have been misleading these poor white folks into thinking they are the master race? Remember when he whined he couldn't eat in a restaurant anymore, people approaching him, and his poor daughter "why, Daddy?" I'd walk by, "HEY, ASSHOLE!," and keep going. Go fishing and get lost. This guy has an assface. Will his assface ever smile? Meanwhile he's losing advertisers right and left.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
1,606
[ 128000, 51, 25369, 71073, 315, 13585, 5513, 50888, 4251, 65503, 264, 73944, 13, 33600, 735, 51557, 10517, 16537, 6941, 27453, 34008, 449, 1461, 627, 1383, 99548, 15112, 91, 679, 24, 12, 2318, 12, 2318, 51, 2304, 25, 4103, 25, 2705, 12, 2318, 25, 410, 32559, 220, 23, 339, 11, 220, 679, 24, 91, 21645, 25, 5513, 91, 16309, 25, 20352, 11, 6941, 27453, 11, 13585, 5513, 11, 73944, 11, 56256, 71073, 11, 6405, 11, 6652, 3962, 11, 4251, 35225, 93712, 91, 24, 18149, 198, 18, 2919, 1306, 264, 893, 889, 16948, 37588, 7294, 11529, 285, 19621, 6325, 7577, 220, 1313, 1274, 304, 4072, 67429, 11, 13585, 5513, 3552, 56256, 71073, 11922, 389, 3805, 430, 4251, 65503, 374, 364, 64, 73944, 3238, 10532, 16535, 916, 16744, 57, 38041, 5298 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 25369, 71073, 315, 13585, 5513, 50888, 4251, 65503, 264, 73944, 13, 33600, 735, 51557, 10517, 16537, 6941, 27453, 34008, 449, 1461, 627, 1383, 99548, 15112, 91, 679, 24, 12, 2318, 12, 2318, 51, 2304, 25, 4103, 25, 2705, 12, 2318, 25, 410, 32559, 220, 23, 339, 11, 220, 679, 24, 91, 21645, 25, 5513, 91, 16309, 25, 20352, 11, 6941, 27453, 11, 13585, 5513, 11, 73944, 11, 56256, 71073, 11, 6405, 11, 6652, 3962, 11, 4251, 35225, 93712, 91, 24, 18149, 198, 18, 2919, 1306, 264, 893, 889, 16948, 37588, 7294, 11529, 285, 19621, 6325, 7577, 220, 1313, 1274, 304, 4072, 67429, 11, 13585, 5513, 3552, 56256, 71073, 11922, 389, 3805, 430, 4251, 65503, 374, 364, 64, 73944, 3238, 10532, 16535, 916, 16744, 57, 38041, 5298, -100 ]
import Foo from 'foo'; export default class Bar extends Foo { constructor(options) { super(options); } log(value) { console.log(value); return this; } }
{ "redpajama_set_name": "RedPajamaGithub" }
4,661
[ 128000, 475, 34528, 505, 364, 8134, 2412, 1562, 1670, 538, 4821, 2289, 34528, 341, 44227, 12349, 8, 341, 197, 12750, 12349, 317, 197, 633, 6867, 3764, 8, 341, 197, 12436, 1699, 3764, 317, 197, 862, 420, 280, 197, 534, 534, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 475, 34528, 505, 364, 8134, 2412, 1562, 1670, 538, 4821, 2289, 34528, 341, 44227, 12349, 8, 341, 197, 12750, 12349, 317, 197, 633, 6867, 3764, 8, 341, 197, 12436, 1699, 3764, 317, 197, 862, 420, 280, 197, 534, 534, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Diagnostic Wax-Ups are used to provide the patient, dentist and laboratory an accurate depiction of how a case will look once it has been finished. Wax is applied to a patient's prepped model to achieve a wax-up. This gives all involved parties the information needed to decide whether to proceed with a treatment or not. Smile Plus Dental Lab © . All rights reserved.
{ "redpajama_set_name": "RedPajamaC4" }
9,363
[ 128000, 80488, 76842, 35681, 1725, 527, 1511, 311, 3493, 279, 8893, 11, 50351, 323, 27692, 459, 13687, 73764, 315, 1268, 264, 1162, 690, 1427, 3131, 433, 706, 1027, 8220, 627, 54, 710, 374, 9435, 311, 264, 8893, 596, 864, 7069, 1646, 311, 11322, 264, 37123, 5352, 13, 1115, 6835, 682, 6532, 9875, 279, 2038, 4460, 311, 10491, 3508, 311, 10570, 449, 264, 6514, 477, 539, 627, 10902, 458, 12623, 48804, 11868, 7388, 662, 2052, 3268, 4694, 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 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 ]
[ 80488, 76842, 35681, 1725, 527, 1511, 311, 3493, 279, 8893, 11, 50351, 323, 27692, 459, 13687, 73764, 315, 1268, 264, 1162, 690, 1427, 3131, 433, 706, 1027, 8220, 627, 54, 710, 374, 9435, 311, 264, 8893, 596, 864, 7069, 1646, 311, 11322, 264, 37123, 5352, 13, 1115, 6835, 682, 6532, 9875, 279, 2038, 4460, 311, 10491, 3508, 311, 10570, 449, 264, 6514, 477, 539, 627, 10902, 458, 12623, 48804, 11868, 7388, 662, 2052, 3268, 4694, 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 ]
2020/21 Modules INMR63-MRes Dissertation (Informatics) Module Provider: Business Informatics, Systems and Accounting Number of credits: 100 [50 ECTS credits] Terms in which taught: Autumn / Spring / Summer module Non-modular pre-requisites: Co-requisites: Modules excluded: Current from: 2019/0 Module Convenor: Prof Keiichi Nakata Email: [email protected] Type of module: Summary module description: A dissertation is considered to be the primary instrument in developing the research capability of students and providing research training on the MRes programme. A dissertation project is an independent piece of research work in the MRes programme in Informatics and considered to be the most important element in the programme as it demonstrates the student's knowledge and skills in terms of the subject area and academic research. It is normally conducted by an individual student guided by an academic supervisor in the chosen specialised domain. It gives students the opportunity to undertake a substantial research project which draws the prior knowledge and skills acquired from past experience and from taught modules of the MRes programme. It enables students to practise writing a scientific report, allows students to develop problem-solving skills, and enables students to manage research activities and critically assess the outcomes from the project. Aims: The aim of the module is to enable the student to conduct research and apply the knowledge into practice through an independent project. The student should show a detailed understanding of a particular subject field. This will involve a survey of recent developments in the field, a critical analysis of these developments and a prognosis of future developments. Assessable learning outcomes: At the end of the module the student will be able to: Develop an understanding of the research topic subject matter Develop and acquire new skills in conducting research Plan and manage a systematic approach to a research project Carry out a literature review Critically approach a research problem Develop a solution to a given research problem Evaluate the solution and provide a critical appraisal Derive logical conclusions Produce a dissertation Present the work in form of oral presentation Additional outcomes: Outline content: Guidance on dissertation is provided in the Autumn Term to clarify the requirements for the dissertation. Lectures and workshop sessions on research methods and skills are provided during the Autumn and Spring Terms. The dissertation project normally commences with an outline proposal submitted by the students at the end of the Autumn Term based on which a supervisor is assigned. The topic is normally proposed by the student and developed further in consultation with the appointed supervisor, which should result in a research proposal. The research work must be conducted in an ethical and professional manner. The text of the dissertation would not normally exceed 18,000 words but it may be supported by ancillary material. Students may carry out their dissertation projects in organisations as part of placement or internship of up to six months in duration. The placement needs to be arranged by students and requires an approval by the Programme Director who ensures that the placement enables the students to satisfy the academic requirements of Dissertation. Brief description of teaching and learning methods: The dissertation project is normally conducted by an individual student guided by a supervisor. The student is expected to have regular meetings with the supervisor and contact with other members of staff, where appropriate, with expertise in the chosen research field. There is an opportunity to give an oral presentation at an interim stage to seek for feedback from staff and peers. Autumn Spring Summer Lectures 4 6 Seminars 10 Project Supervision 2 6 6 Guided independent study: Wider reading (independent) 24 104 24 Wider reading (directed) 14 Preparation for presentations 10 Preparation of practical report 50 Completion of formative assessment tasks 20 20 Carry-out research project 50 250 250 Dissertation writing 150 Total hours by term 100 400 500 Total hours for module 1000 Summative Assessment Methods: Method Percentage Dissertation 80 Oral assessment and presentation 10 Summative assessment- Examinations: Summative assessment- Coursework and in-class tests: Assessment will consist of Dissertation (18,000 words) (80%) due in the first week of September, and Interim Report (20 pages of A4) (10%) due in the final week of May. Presentation (10 minute oral presentation followed by 10 minute Q&A) (10%) to take place in the final week of June. The presentation assesses the student's presentation skills. Formative assessment methods: Students receive feedback from their project supervisors during supervision meetings based on their work that includes the outline proposal and research proposal, as well as their progress. They will also receive comments and feedback from the audience at the interim (oral) presentation reporting on progress of research. Penalties for late submission: Penalties for late submission on this module are in accordance with the University policy. Please refer to page 5 of the Postgraduate Guide to Assessment for further information: http://www.reading.ac.uk/internal/exams/student/exa-guidePG.aspx Assessment requirements for a pass: Students will be required to obtain a mark of 50% overall through weighted average of the three components. Reassessment arrangements: By resubmission of Dissertation in accordance with University policy. Additional Costs (specified where applicable): 1. Required text books Last updated: 8 April 2019 THE INFORMATION CONTAINED IN THIS MODULE DESCRIPTION DOES NOT FORM ANY PART OF A STUDENT'S CONTRACT. Things to do now Search University site This section
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
5,873
[ 128000, 2366, 15, 14, 1691, 44665, 198, 691, 18953, 5495, 5364, 1079, 99116, 320, 38991, 29470, 340, 3413, 23766, 25, 8184, 31701, 29470, 11, 15264, 323, 45344, 198, 2903, 315, 20746, 25, 220, 1041, 510, 1135, 469, 95837, 20746, 933, 44228, 304, 902, 15972, 25, 60902, 611, 12531, 611, 19367, 4793, 198, 8284, 17515, 1299, 864, 5621, 49350, 512, 7489, 5621, 49350, 512, 29301, 28544, 512, 5520, 505, 25, 220, 679, 24, 14, 15, 198, 3413, 1221, 1055, 269, 25, 8626, 6706, 72, 41652, 44329, 460, 198, 4886, 25, 597, 1276, 587, 460, 31, 12301, 3258, 15761, 15549, 198, 941, 315, 4793, 512, 19791, 4793, 4096, 512, 32, 37445, 374, 6646, 311, 387, 279, 6156, 14473, 304, 11469, 279, 3495, 23099, 315, 4236, 323, 8405, 3495, 4967, 389 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2366, 15, 14, 1691, 44665, 198, 691, 18953, 5495, 5364, 1079, 99116, 320, 38991, 29470, 340, 3413, 23766, 25, 8184, 31701, 29470, 11, 15264, 323, 45344, 198, 2903, 315, 20746, 25, 220, 1041, 510, 1135, 469, 95837, 20746, 933, 44228, 304, 902, 15972, 25, 60902, 611, 12531, 611, 19367, 4793, 198, 8284, 17515, 1299, 864, 5621, 49350, 512, 7489, 5621, 49350, 512, 29301, 28544, 512, 5520, 505, 25, 220, 679, 24, 14, 15, 198, 3413, 1221, 1055, 269, 25, 8626, 6706, 72, 41652, 44329, 460, 198, 4886, 25, 597, 1276, 587, 460, 31, 12301, 3258, 15761, 15549, 198, 941, 315, 4793, 512, 19791, 4793, 4096, 512, 32, 37445, 374, 6646, 311, 387, 279, 6156, 14473, 304, 11469, 279, 3495, 23099, 315, 4236, 323, 8405, 3495, 4967, 389, -100 ]
Since its creation two decades ago, Circle C Ranch -- one of Austin's most visionary and most controversial developments -- has operated under what has come to be known by both observers and residents as the "Bradley oligarchy." That is, the people who served as developer Gary Bradley's allies and business associates in Circle C's early days are the same people who run things today (see chart). But that may be about to change. Until recently, most residents in this 2,700-home community seldom questioned the day-to-day business operations of Circle C, which survived the controversial bankruptcy of Bradley's development company in the mid-Nineties. Though successful as a residential community, Circle C has long been a bane of environmentalists because of its location on top of the Edwards Aquifer. Even so, Circle C residents have typically been a complacent bunch that dutifully paid their dues and cast their votes in line with the political endorsements of the powerful Circle C PAC. Moreover, most of them never gave much heed to a popular rumor -- routinely denied -- that Bradley still calls the shots for the Circle C Homeowners Association. Now, a growing number of residents -- many who moved to the community in the last five years -- are starting to question why the same secretive people still control the Circle C HOA and its $1 million budget. Last October, one homeowner created a community Web site for residents to raise these questions in an open forum. While many dissenters decline to be identified either in the press or on the Web site (they've expressed fears of retribution), they've discovered that they share common concerns. Many question the amount of their annual HOA fees -- which run as high as $400, depending on the home's assessed value -- and wonder who profits the most from those fees, which last year totaled nearly $1 million. But persistence did pay off for a few residents who were able to review some of the HOA records. They made some interesting discoveries -- for example, that in 2002, the board paid nearly half a million dollars to a landscape company owned by Susan Hoover, a former HOA board member who bought the company from Gary Bradley in 2001. Hoover owns another company, Full Circle Management, which also draws income from Circle C HOA, and she is paid individually for "inspection and review services." Moreover, in an independent examination of Circle C's financial statements in 2000, auditor and CPA Thomas P. Donovan noted that two board members, Hoover and Steve Bartlett, were listed as employees of two companies (Alien Inc. and Phoenix Holdings, both formerly owned by Bradley) that billed the HOA for more than $500,000. Neither Hoover nor Bartlett responded to our phone calls, but Ken Rigsbee, who serves as the HOA board's secretary and treasurer, responded by e-mail. He said the board currently pays Hoover's landscape company a fraction of what other companies would charge. "The board went through a formal bidding process once and learned that," he said. Rigsbee regards the rank-and-file dissension this way: "We have newcomers who don't understand either the history of the [HOA] organization or of the neighborhood, and they jump to incorrect assumptions and conclusions." But he says they can be "educated" over time. Before the community grew to its current size, he continued, the homeowners knew and trusted the actions of the board. "Now we've become larger, and homeowners, particularly new ones, legitimately need more documentation and education." But the board doesn't seem so willing to educate or share information, say residents. As one of the more outspoken homeowners, Austin attorney Bill Gammon, explains, "This whole thing began with a simple search for information. In the process of trying to find this information ... I have discovered that a number of other people have tried to get information from the [HOA], and their response is always the same." The response, he says, is along the lines of, "You're the only person who's ever asked for this. Why are you asking? This is a beautiful place, and you should be happy to live here." Gammon says his search took him, along with a cameraman, to 1111 West 11th St., home to a number of businesses affiliated with Bradley and Circle C. Gammon walked away empty-handed, save for a video showing an angry Bradley ordering him and the cameraman off the property. Gammon has since met with two HOA officers -- Rigsbee and Jim O'Reilly -- and he says the pair agreed to establish a financial oversight committee with Gammon in charge. There could be other changes in store for the old guard. While no Circle C HOA board member has ever faced serious election opposition, Vice-President Steve Bartlett may have competition when his term expires next month. Resident Carl Kernodle (the "K" partner in KPG Architects) has mounted a campaign against Bartlett, a former Bradley business partner and an HOA director since the board's inception in 1988. Bartlett will be tough to beat because of his institutional knowledge, Kernodle acknowledged. "We do need people with past experience, but we also need people who can move our community forward," he said. If elected, Kernodle says he will push to expand the board, implement a conflict-of-interest policy for board members, and rethink the HOA's fee assessments and bookkeeping methods. Jim O'Reilly: President, Circle C HOA and former treasurer of Circle C Municipal Utility District 1; O'Reilly chaired the Circle C PAC during the 1997 legislative session. Steve Bartlett: Vice-president, HOA; former Bradley business partner; owner of the Bartlett Group, a land-development company. He has served on the HOA board since its inception in 1988. Travis Co. appraisal records show he owns a residence in West Lake Hills (HOA directors are not required to live in Circle C). His term ends March 26 and Circle C resident Carl Kernodle is expected to challenge his re-election bid. Ken Rigsbee: Secretary-treasurer, HOA; chairs Circle C PAC. One of Circle C's first homeowners and outspoken opponent of the city of Austin's annexation of Circle C. Susan Hoover: Former HOA board director; owns Circle C Landscape (formerly owned by Bradley) and Full Circle Management, both on contract with the HOA board. Brad Beutel: Bradley's cousin and business associate; serves as an officer in Circle C Landscape, according to state records.
{ "redpajama_set_name": "RedPajamaC4" }
7,672
[ 128000, 12834, 1202, 9886, 1403, 11026, 4227, 11, 21918, 356, 42982, 1198, 832, 315, 19816, 596, 1455, 87490, 323, 1455, 20733, 26006, 1198, 706, 24026, 1234, 1148, 706, 2586, 311, 387, 3967, 555, 2225, 37643, 323, 11062, 439, 279, 330, 62881, 3258, 55984, 15630, 1210, 3011, 374, 11, 279, 1274, 889, 10434, 439, 16131, 24765, 37548, 596, 20724, 323, 2626, 40531, 304, 21918, 356, 596, 4216, 2919, 527, 279, 1890, 1274, 889, 1629, 2574, 3432, 320, 4151, 9676, 570, 2030, 430, 1253, 387, 922, 311, 2349, 627, 25503, 6051, 11, 1455, 11062, 304, 420, 220, 17, 11, 7007, 25389, 4029, 56452, 29440, 279, 1938, 4791, 11477, 2626, 7677, 315, 21918, 356, 11, 902, 26968, 279, 20733, 36707, 315, 37548, 596, 4500, 2883, 304, 279, 5209, 11500, 258, 26640 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 9886, 1403, 11026, 4227, 11, 21918, 356, 42982, 1198, 832, 315, 19816, 596, 1455, 87490, 323, 1455, 20733, 26006, 1198, 706, 24026, 1234, 1148, 706, 2586, 311, 387, 3967, 555, 2225, 37643, 323, 11062, 439, 279, 330, 62881, 3258, 55984, 15630, 1210, 3011, 374, 11, 279, 1274, 889, 10434, 439, 16131, 24765, 37548, 596, 20724, 323, 2626, 40531, 304, 21918, 356, 596, 4216, 2919, 527, 279, 1890, 1274, 889, 1629, 2574, 3432, 320, 4151, 9676, 570, 2030, 430, 1253, 387, 922, 311, 2349, 627, 25503, 6051, 11, 1455, 11062, 304, 420, 220, 17, 11, 7007, 25389, 4029, 56452, 29440, 279, 1938, 4791, 11477, 2626, 7677, 315, 21918, 356, 11, 902, 26968, 279, 20733, 36707, 315, 37548, 596, 4500, 2883, 304, 279, 5209, 11500, 258, 26640, -100 ]
namespace gui { GuiShader::GuiShader() { aPos_ = -1; } GuiShader::GuiShader(std::string vShaderFile, std::string fShaderFile) { shader_.bindAttribute("aPos"); shader_.loadAndLinkFromFile(vShaderFile, fShaderFile); shader_.useProgram(); aPos_ = shader_.getAttributeLocation("aPos"); // Collect the vertex buffer uniforms indexes. uProj_ = shader_.getUniformLocation("uProj"); uModel_ = shader_.getUniformLocation("uModel"); uPos_ = shader_.getUniformLocation("uPos"); uTex_ = shader_.getUniformLocation("uTex"); uColor_ = shader_.getUniformLocation("uColor"); uIsTex_ = shader_.getUniformLocation("uIsTex"); } void GuiShader::useProgram() const { shader_.useProgram(); } void GuiShader::setVertexAttribPointer() const { glEnableVertexAttribArray(aPos_); glVertexAttribPointer(aPos_, 2, GL_FLOAT, GL_FALSE, vertexSizeInBytes(), (GLvoid*) (sizeof(GLfloat) * 0)); } void GuiShader::setUProj(const mw::Matrix44<float>& matrix) const { shader_.useProgram(); glUniformMatrix4fv(uProj_, 1, false, matrix.data()); } void GuiShader::setUModel(const mw::Matrix44<float>& matrix) const { shader_.useProgram(); glUniformMatrix4fv(uModel_, 1, false, matrix.data()); } void GuiShader::setUPos(const mw::Matrix44<float>& matrix) const { shader_.useProgram(); glUniformMatrix4fv(uPos_, 1, false, matrix.data()); } void GuiShader::setUTex(const mw::Matrix44<float>& matrix) const { shader_.useProgram(); glUniformMatrix4fv(uTex_, 1, false, matrix.data()); } void GuiShader::setUColor(const mw::Color& color) const { shader_.useProgram(); glUniform4f(uColor_, color.red_, color.green_, color.blue_, color.alpha_); } void GuiShader::setUIsTex(float value) const { shader_.useProgram(); glUniform1f(uIsTex_, value); } } // Namespace gui
{ "redpajama_set_name": "RedPajamaGithub" }
265
[ 128000, 2280, 19783, 341, 1602, 9796, 2005, 13794, 487, 14044, 13794, 368, 341, 197, 11575, 4964, 62, 284, 482, 16, 280, 197, 534, 2451, 9796, 2005, 13794, 487, 14044, 13794, 5305, 487, 928, 348, 13794, 1738, 11, 1487, 487, 928, 282, 13794, 1738, 8, 341, 197, 37296, 1013, 5056, 7821, 3994, 446, 64, 4964, 803, 197, 37296, 1013, 5056, 1096, 3112, 4026, 44733, 3832, 13794, 1738, 11, 282, 13794, 1738, 317, 2451, 197, 37296, 1013, 5056, 817, 10920, 545, 1602, 197, 11575, 4964, 62, 284, 21689, 5056, 26717, 4812, 446, 64, 4964, 3147, 197, 197, 322, 21153, 279, 12202, 4240, 45233, 25998, 627, 197, 10905, 62175, 62, 284, 21689, 5056, 456, 52804, 446, 84, 62175, 803, 197, 10905, 1747, 62, 284, 21689, 5056, 456, 52804, 446, 84, 1747 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2280, 19783, 341, 1602, 9796, 2005, 13794, 487, 14044, 13794, 368, 341, 197, 11575, 4964, 62, 284, 482, 16, 280, 197, 534, 2451, 9796, 2005, 13794, 487, 14044, 13794, 5305, 487, 928, 348, 13794, 1738, 11, 1487, 487, 928, 282, 13794, 1738, 8, 341, 197, 37296, 1013, 5056, 7821, 3994, 446, 64, 4964, 803, 197, 37296, 1013, 5056, 1096, 3112, 4026, 44733, 3832, 13794, 1738, 11, 282, 13794, 1738, 317, 2451, 197, 37296, 1013, 5056, 817, 10920, 545, 1602, 197, 11575, 4964, 62, 284, 21689, 5056, 26717, 4812, 446, 64, 4964, 3147, 197, 197, 322, 21153, 279, 12202, 4240, 45233, 25998, 627, 197, 10905, 62175, 62, 284, 21689, 5056, 456, 52804, 446, 84, 62175, 803, 197, 10905, 1747, 62, 284, 21689, 5056, 456, 52804, 446, 84, 1747, -100 ]
Adrian Lambert Zach (14. září 1845 Stálky – 4. dubna 1916 Geras), byl rakouský římskokatolický duchovní a politik německé národnosti z Dolních Rakous, na počátku 20. století poslanec Říšské rady. Opat Adrian Lambert Zach patřil na přelomu 19. a 20. století mezi nejpopulárnější dolnorakouské osobnosti. Biografie Narodil se ve Stálkách do rolnické rodiny, vystudoval státní gymnázium ve Znojmě a v roce 1866 se po vypuknutí války dobrovolně přihlásil k vojenské službě (Jägerunterofficier). Po válce se věnoval studiu teologie. V roce 1873 byl vysvěcen na kněze a ve stejném roce proběhla jeho investitura v premonstrátském klášteře v Gerasu. Dne 24. září 1889 byl Adrian Zach, tehdejší farář v dolnorakouské obci Kirchberg an der Wild, jednomyslně zvolen opatem premonstrátského kláštera, v jehož čele sloužil 27 letech. V roce 1900 byl císařem Františkem Josefem I. vyznamenán komturským křížem (Comthurkreuz des Franz Josef-Ordens). V letech 1907-1911 zastupoval v říšské radě zemský okres Waidhofen an der Thaya. Dolnorakouské obce Drosendorf, Altstadt-Drofendorf, Frohnsberg, Geras, Oberhöflein, Kottaun, Langau, Thumriß, Weitersfeld, Heufurth, Pleißing, Waschbach, Goggitsch a moravský Fratting / Vratěnín jej vyznamenaly čestným občanstvím. Působil jako opat v opatství Geras. Funkci opata zastával od 24. září 1889. Dlouhodobě působil jako předseda okresní chudinské rady a člen okresní i zemské školské rady. Byl také místopředsedou okresní zemědělské společnosti v Hornu. Získal Řád Františka Josefa. Působil i jako poslanec Říšské rady (celostátního parlamentu Předlitavska), kam usedl ve volbách do Říšské rady roku 1907, konaných poprvé podle všeobecného a rovného volebního práva. Byl zvolen za obvod Dolní Rakousy 58. Po volbách roku 1907 byl uváděn coby člen klubu Křesťansko-sociální sjednocení. Zemřel v 72 letech v dubnu 1916. Odkazy Reference Rakouští římskokatoličtí duchovní Rakouští opati Rakouští místní politici Poslanci rakouské Říšské rady Členové Křesťansko-sociální strany (Rakousko) Narození v roce 1845 Úmrtí v roce 1916 Narození 14. září Úmrtí 4. dubna Muži Nositelé Řádu Františka Josefa
{ "redpajama_set_name": "RedPajamaWikipedia" }
3,235
[ 128000, 2654, 7414, 70643, 39315, 320, 975, 13, 111124, 220, 10336, 20, 800, 19540, 8050, 1389, 220, 19, 13, 116519, 220, 7529, 21, 480, 9431, 705, 101302, 84044, 788, 111489, 101819, 1026, 46364, 266, 337, 103337, 294, 1412, 104447, 264, 109038, 100640, 2727, 377, 978, 115706, 17851, 71779, 1167, 25227, 100867, 69892, 788, 11, 4415, 106803, 1995, 6375, 84, 220, 508, 13, 109109, 1153, 10946, 762, 105668, 107948, 100983, 115846, 382, 46, 4781, 44692, 70643, 39315, 3352, 110716, 4415, 59406, 301, 115585, 220, 777, 13, 264, 220, 508, 13, 109109, 103324, 100884, 8539, 360, 1995, 36722, 109291, 21968, 45807, 587, 788, 103770, 72757, 74952, 382, 37196, 120492, 4815, 45, 277, 347, 321, 513, 5320, 800, 19540, 107917, 656, 938, 2312, 101318, 125794, 11, 348, 599, 7835, 838, 119946 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2654, 7414, 70643, 39315, 320, 975, 13, 111124, 220, 10336, 20, 800, 19540, 8050, 1389, 220, 19, 13, 116519, 220, 7529, 21, 480, 9431, 705, 101302, 84044, 788, 111489, 101819, 1026, 46364, 266, 337, 103337, 294, 1412, 104447, 264, 109038, 100640, 2727, 377, 978, 115706, 17851, 71779, 1167, 25227, 100867, 69892, 788, 11, 4415, 106803, 1995, 6375, 84, 220, 508, 13, 109109, 1153, 10946, 762, 105668, 107948, 100983, 115846, 382, 46, 4781, 44692, 70643, 39315, 3352, 110716, 4415, 59406, 301, 115585, 220, 777, 13, 264, 220, 508, 13, 109109, 103324, 100884, 8539, 360, 1995, 36722, 109291, 21968, 45807, 587, 788, 103770, 72757, 74952, 382, 37196, 120492, 4815, 45, 277, 347, 321, 513, 5320, 800, 19540, 107917, 656, 938, 2312, 101318, 125794, 11, 348, 599, 7835, 838, 119946, -100 ]
Paul Boag Shares a Favorite Ecommerce Project by Keir Whitaker In Part 1 of my interview with Paul Boag, we discussed the importance of making a name for yourself in the web industry. Content marketing has played a key part in his own success and that of the agency he co-founded, Headscape. Of course, getting the "gig" is only the first hurdle – you have to deliver good work too. In Part II of my interview with Paul Boag, I ask Paul about his experiences working on ecommerce projects. What follows is an illuminating and unusual insight into an ecommerce site catering for a demographic where the typical user is over 60. You might also like: Partner Spotlight: Jivaldi Builds American Sniper Store Keir: You've worked on a few ecommerce projects over the years. One that you have spoken about before, Wiltshire Farm Foods, sounds like it posed a number of interesting challenges due to its niche audience. Paul: Hugely! Wiltshire Farm Foods was a website aimed at elderly people. It sold frozen ready meals to them. It's basically a paid version of "Meals on Wheels." The average customer was in their 80s, which was incredible. I give a talk about this at a conference once and I put up a picture of two old people. What I say is one looks slightly older than the other. I said, "That one on the left, the younger looking one, that's the son." He's in his 70s or 60s. It was a crazy audience to work with, but not necessarily a bad audience. You'd think you'd have all kinds of problems and certainly there were some issues – mainly related to accessibility. People of that age suffer a lot from arthritis, so we used to wear ski gloves to try and move the mouse and click on links. It gives you a sense of what it's like not to have full motion control using a mouse. The other great thing I would do is take off my glasses and try and navigate the site, because I'm as blind as a bat. "We wore ski gloves to move the mouse. It gives you a sense of what it's like not to have full motion." Click to tweet In other ways, they were a great audience. Because they lacked confidence, they would read every piece of text on the page – which meant they actually read instructions. They are the only audience in the world that actually reads your copy. Keir: What kind of things specifically did you have to focus on? We concentrated on removing a lot of clutter. Wiltshire Farm Foods had all these different categories of food, but in reality, customers only ever bought from the top eight categories. So we hid away categories that people didn't really look at much, just so they weren't feeling overwhelmed. Another thing we did was provided lots of visual feedback, as these users needed lots of reassurance. For example, when customers add something to their shopping basket, normally you would just update the number, wouldn't you? That was nowhere near enough for these people. Another thing we did was provided lots of visual feedback, as these users needed lots of reassurance. For example, when customers add something to their shopping basket, normally you would just update the number, wouldn't you? That was nowhere near enough for these people. The product would actually fly across the page. It sounds ridiculous, but it would animate across the page into the shopping basket. Then the product photo would then have a highlighted border around it. The button which did say, "Add to basket" now says, "Add another to the basket." You had a little tag that said "1 in basket" and the basket itself would obviously update. All these little touches added to reassure the users. When it came to completing the information about yourself and your delivery address, we put a little tick by every field as they moved from one field to the next that said, "You're doing it right." Then we spent quite a lot of time thinking about objection handling, which is a sales term that means working out why someone might not order. With this user base, it was external factors such as having a strange man turning up at their door. To help with this, we started to explore areas beyond the website. One thing we did was get the driver's CRN checked in order to reassure people. We also made it so that the driver would actually come into their house and stock up their freezer, as many users had real mobility problems. We also didn't ignore the fact that this audience wasn't particularly comfortable online. So when people entered their post code, we would show them a picture of their franchise person, and give their name and telephone number. It humanized the person that was going to be delivering to them, and allowed them to pick up the phone. "We didn't ignore the fact that this audience wasn't particularly comfortable online." [Click to Tweet] We also allowed people to reorder at the door. Now, from an ecommerce point of view that's a really bad thing to do as you're losing track of the sale. You no longer know how effective the website's being because the user is ordering at the door and you don't know they were an ecommerce customer. It was kind of bad for ecommerce, but right for the user and right for the audience. We did a lot of that stuff; looking at those kinds of bigger picture issues. We looked at really basic stuff as well, such as ensuring that buttons looked like buttons and that links had underlines on them. Keir: I know you had some fun testing the site. Paul: The first time we did usability testing, we got a few users into a usability test lab. We sat them down with a desktop computer and a nice big monitor. We thought they'd need a big monitor, and a mouse, and a keyboard. The first little lady came in and sat down in front of this computer. We said, "The first task is..." and she said, "No, dear, I can't do that." And we said, "Why not? What's stopping you?" "Well, I don't know how to use the mouse." I'm like, "What?" "No, I have a laptop with a touchpad on it." We kind of dismissed that. The next person comes in, sits down, and we tell them the task. I swear this is true. They picked up the mouse and put it on the screen. And so it went on. Not one of the six people we tested had ever used a mouse. They'd all only ever been given laptops. They'd skipped the whole mouse stage. None of them knew how to do it, so we kind of gave up on that round of user testing. Instead, we decided to go into peoples' homes and actually test with their real kit. It was great, an amazing experience. I spent 40 minutes in a user-testing session, an hour and a half having tea and biscuits hearing about the Battle of Britain. It was wonderful. We decided to go into peoples' homes and actually test with their real kit. It was great, an amazing experience. I spent 40 minutes in a user-testing session, an hour and a half having tea and biscuits hearing about the Battle of Britain. It was wonderful. But the best thing was this one lady. One of my questions was, "Okay, I want you to add a product to your basket." She did that. I was about to say, "Now I want you to go to your basket," and I thought she wasn't going to be able to do this. It was because she had a Post-It note stuck over her monitor in the top right-hand corner, which was where the basket was. She wasn't going to see it. Another lady we tried to do testing with had a cat climbing over her keyboard most of the session. It was a hugely enlightening experience. We learned loads from that, but the main way that we discovered all this stuff was though relentless A/B testing, and I mean relentless. It was obsessional. We managed to get, at one point, a 6% jump in conversion rate by changing one line of text. The website had a ridiculous conversion rate anyway. We got the conversion rate up to something like 32%, which is phenomenal isn't it? "We managed to get a 6% jump in conversion rate by changing one line of text." [Click to Tweet] Over the five years we worked with them, we increased their sales by 10,000 percent on the website. The 6% jump we got was because of the Verisign logo. You know the Verisign logo people used to put on their websites? We had that at the bottom. We want people to know this website is secure, so we put the Verisign logo on. "This website is protected by Verisign." I was wandering around the site one day, clicking through things as you do. I thought, I bet our audience doesn't understand that. "Verisign, what the hell is that?" So I thought, let's do a bit of A/B testing. We tested a variety of different versions, one of which was just a padlock with the text, "We look after your credit card details" or something equally vague. And it caused a 6% jump in conversion rate. People were terrified about entering their credit card information, and apparently just promising to be good with it was enough to keep them happy. Keir: That's a great story. Was the site built on a particular platform or did you develop it in-house? Paul: It was bespoke. The main reason was that things like Shopify weren't around when we started working on it. The site also had a lot of very specific needs. For example, one of the problems with the site was that the business operates on a franchise model. That means each franchise is allowed to set their own prices, which meant when a user arrives at the website, they can't see prices because you don't know where they are located. When we first started looking at the previous site before we worked on it, the first thing you encountered when you arrived was an ask to enter your post code. You couldn't see any products; couldn't do anything. It was a screen with "Enter your post code" on it. There were all kinds of integration and backend issues to support the franchise system, which basically meant that it had to be a custom build. Keir: By playing the post code lottery you could get the same goods cheaper? Paul: Absolutely. One of the things the website had on it was, "We offer free delivery." Users aren't stupid. They would go, "I'm being charged more if I'm in this postcode compared to that one. Therefore, delivery is not free. You're lying to me." One user said, "I would never purchase from an organization that lied to me like that." What we ended up doing to get around the problem (which sounds like a weird thing to do) is that we showed the highest price. Then what we did is gave people a discount when they hit the checkout. We said, "We'd like to give you a discount." We don't say why. We just say we're going to give you a discount. People love that. They think that's the best thing ever. They were happy to pay the higher price, and here we are giving them a discount. Keir: It's been brilliant, Paul. Thank you so much. Paul: No problem at all. Human-Centered Design: An Introduction, Practices, and Principles 3 High-Impact Tips for Designing an Ecommerce Site That Converts Microinteractions: Tiny Design Decisions, Big User Impact How To Harness The Power of Process Mapping Free Webinar] How to Convert Visitors Through Persuasive Design 5 Common Digital Content Problems and How to Avoid Them 10 Ways to Improve User Engagement for Your App This Valentine's Day Pseudo-Localization: What It Is and Why It Matters How A/B Testing Will Make You a Better Web Designer The Top 4 Reasons Users Abandon Their Carts and What to Do About it Keir Whitaker Having previously worked on the Shopify Partners team, Keir is currently a marketing and business consultant based in the UK, working with Shopify-focused companies. User Experience Web Design
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,781
[ 128000, 26368, 2577, 351, 45285, 264, 40822, 469, 44294, 5907, 198, 1729, 6706, 404, 27484, 4506, 198, 644, 3744, 220, 16, 315, 856, 7274, 449, 7043, 2577, 351, 11, 584, 14407, 279, 12939, 315, 3339, 264, 836, 369, 6261, 304, 279, 3566, 5064, 13, 9059, 8661, 706, 6476, 264, 1401, 961, 304, 813, 1866, 2450, 323, 430, 315, 279, 9266, 568, 1080, 83208, 11, 71607, 5443, 627, 2173, 3388, 11, 3794, 279, 330, 70, 343, 1, 374, 1193, 279, 1176, 81783, 1389, 499, 617, 311, 6493, 1695, 990, 2288, 13, 763, 3744, 8105, 315, 856, 7274, 449, 7043, 2577, 351, 11, 358, 2610, 7043, 922, 813, 11704, 3318, 389, 85243, 7224, 13, 3639, 11263, 374, 459, 44087, 1113, 323, 19018, 20616, 1139, 459, 85243, 2816, 54929, 369, 264 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 26368, 2577, 351, 45285, 264, 40822, 469, 44294, 5907, 198, 1729, 6706, 404, 27484, 4506, 198, 644, 3744, 220, 16, 315, 856, 7274, 449, 7043, 2577, 351, 11, 584, 14407, 279, 12939, 315, 3339, 264, 836, 369, 6261, 304, 279, 3566, 5064, 13, 9059, 8661, 706, 6476, 264, 1401, 961, 304, 813, 1866, 2450, 323, 430, 315, 279, 9266, 568, 1080, 83208, 11, 71607, 5443, 627, 2173, 3388, 11, 3794, 279, 330, 70, 343, 1, 374, 1193, 279, 1176, 81783, 1389, 499, 617, 311, 6493, 1695, 990, 2288, 13, 763, 3744, 8105, 315, 856, 7274, 449, 7043, 2577, 351, 11, 358, 2610, 7043, 922, 813, 11704, 3318, 389, 85243, 7224, 13, 3639, 11263, 374, 459, 44087, 1113, 323, 19018, 20616, 1139, 459, 85243, 2816, 54929, 369, 264, -100 ]
Soil Situations Playing Fields branchcreek Branch Creek Launches Safer Play Turf and Lawn Solutions to Help Homeowners and Lawn Care Professionals Control Weeds and Insects SOUDERTON, Pa., June 4, 2018 – Branch Creek, a manufacturer of cleaner growing and surface maintenance solutions, announced the launch of its Safer Play line of turf and lawn products. Part of the Branch Creek Lawncare Program, Safer Play's Weed Shield, Grub Shield and Lawn Food with Crabgrass Prevention help homeowners and lawn care professionals protect lawns and turf fields from weeds and insects, without the need to use EPA-registered pesticides. "These are game-changing turf solutions, providing the control you want without the pesticides you don't," said Nate Clemmer, CEO of Branch Creek. "Most playing fields, lawns and gardens use registered pesticides. When we – and our children – run, slide, scoop up a ball or simply sit down, we come into contact with chemicals that can have a negative impact on our wellness and our planet." Safer Play's line of liquid and granular control products is made exclusively of ingredients classified as "minimum risk" under section 25(b) of the United States Environmental Protection Agency's (EPA) Insecticide, Fungicide, and Rodenticide Act (FIFRA). These control products fight insects, weeds, and other landscaping threats. Lawn Food with Crabgrass Prevention is a non-manure-based, biosolid-free fertilizer with no restrictions on reentry time after application. Weed Shield kills and prevents weeds from forming with a botanical oil blend that does not harm grass. With a unique combination of botanical oils, oyster and clamshells, Grub Shield is a natural and eco-friendly product that works to control grubs and other surface-feeding insects such as chinch bugs. "These products are so benign, they don't require yellow hazard signs," Clemmer added. "Yet, they are so potent and effective, you'll never need to use registered pesticides." For more information, visit saferplay.com. by branchcreek Branch Creek Launches With Cleaner, Safer Solutions for Lawns, Farms, and Outdoor Surfaces SynaTek Solutions Forms New Company Focused on Cleaner Chemistry SOUDERTON, Pa., February 27, 2018 – SynaTek Solutions CEO Nate Clemmer announces the launch of Branch Creek, a manufacturer of cleaner, safer growing and surface maintenance solutions for residential, commercial, agricultural, golf course, and municipal use. Branch Creek products optimize outcomes while minimizing the side effects often associated with responsibility-driven efforts, such as sky-high prices and added labor. Its product line includes a fast acting, salt-free ice melt; OMRI-certified organic fertilizers; and safer pesticides, all designed to do better by water, soil, and living things. "Branch Creek products focus on human health and the ecosystem while maintaining the practical benefits you want and need for your lawn, home, farm, or business," said Clemmer, who also serves as Branch Creek's CEO. Chloride-free Entry™ is a clean liquid formula de-icer that melts snow and ice in as little as 30 seconds, won't dirty or damage floors, and outperforms traditional rock salt at no added cost. It also spares pets' paws. Branch Creek Organics are OMRI-certified, easy-to-use fertilizers offering long-term profitability for farmers and great results for green thumbs and groundskeepers. Finally, Branch Creek's Safer Play pesticides deliver the control users expect without the high-risk toxic ingredients currently used on most athletic fields and landscaped surfaces. "While we need to protect surfaces and lawns, we can do it with cleaner chemistry that doesn't harm people, and without losing sight of our one precious planet," concludes Clemmer. "And it doesn't even have to cost more." Choosing the Right Deicer for Your Indoor Carpeting? Traditional ice melt product on the left and Entry™ on the right. Chloride-based deicers and anti-icers pose a threat to the environment, to pets and to humans, but you may be wondering why that matters when children and pets don't typically walk or play on building walkways and stairways? By Nate Clemmer – Original Article (Photo: An application of a liquid ice melt product.) In addition, most of the surrounding surfaces that must be treated – driveways and parking lots – are areas where the potential for causing harm to children is minimal, and to pets almost non-existent. However, sodium, calcium, potassium and magnesium chlorides are also causing damage in an entirely different location: inside the building on carpeting and flooring. Deicers Damage Floors and Carpets When tracked into a facility, some chloride deicers leave a white residue that can dull the finish of floors and fade the color of carpets. Other chloride-based products coat floors with an oily residue that damages wax and urethane finishes. In both cases, the near-term labor costs associated with manual clean-up of residue is roughly $50 per building entrance per day, according to estimates by the Sanitary Supply Association's Clean Management Institute. Over time, chloride-based products can permanently damage flooring and carpeting, requiring expensive replacement. And then there's the safety risk that the oily, slippery residue can pose to a building's employees and visitors. An alternative to these granular deicing materials are liquid deicers. One such product based upon potassium formate technology is 100 percent chloride free and it eliminates tracking, leaving no residue. Potassium formate deicers also provide three benefits outside the building: Ease of application Some chloride-based products can burn human skin when contacted. If inhaled, dust particles can cause severe irritation. If ingested, they can cause severe irritation and bouts of vomiting and diarrhea. When cats and dogs walk on surfaces treated with some chloride-based products, they often experience painful burning, inflammation and cracked pads. If they lick their paws and ingest the salt, they may experience symptoms including excessive thirst, vomiting and diarrhea. Some chloride-based deicers are poisonous to pets. When most chloride salts spread from sidewalks and driveways into nearby soil, they can have a defoliating effect on trees and other plants, and they interfere with plants' ability to absorb vital nutrients including water, potassium, calcium and magnesium. Potassium formate products, on the other hand, are readily biodegradable. They are safer for people, pets, plants, metal, concrete and other surfaces. In fact, their toxicity rate is significantly lower than that of chloride-based products and potassium acetate. Ease and speed of application combined with reduced transport and loading costs make liquids extremely attractive from a labor perspective. Granular products can be very labor intensive, slowing the application process and negatively impacting safety in high-traffic pedestrian areas. For example, on stairs, applicators have to carry heavy bags, spreading material by hand, and in larger areas and walkways, push spreaders are often utilized. Liquid applications are far more efficient. Liquid tanks fill quickly, and today's spray applicator technologies are convenient and easy to use, providing for very precise application rates. Potassium formate deicers create a safer environment more quickly than chloride-based deicers. For example, some potassium formate products have a speed of melt of about 30-50 seconds by reducing the freezing point to temperatures as low as -63 degrees F. These deicers quickly and reliably remove thin layers of ice and prevent new snow and ice from accumulating. By contrast, chloride-based granular deicers take a minimum of 3-5 minutes to achieve an acceptable melt – and as much as 10 minutes. The low quantity of liquid required to produce an adequate melt combined with the ease and speed of application makes most liquid deicers more cost-effective than granular products. Most users will achieve a lower application cost per 1,000 square feet with liquids than with granular deicers. And because the liquid achieves ice melt three times more quickly than granular products, it creates a longer-lasting and safer walking surface. Right de-icer/anti-icer can improve safety, save money Original Article on healthcarefacilitiestoday.com The winter deicing priorities of grounds maintenance staffs at facilities throughout the country don't differ very much. They are charged with: Creating a safe outdoor environment for pedestrians and vehicles Doing so as quickly and cost-effectively as possible Protecting facilities' indoor environment – particularly damage caused by deicing/anti-icing material residue on floors and carpeting Hospital grounds maintenance personnel, on the other hand, may view their jobs a little differently. The aforementioned priorities hold true for them, too. But, hospital grounds maintenance staff also are concerned about the health and well-being of patients and creating a safe workplace in which clinical staff can care for patients. And, the healthcare facility's reputation is of utmost importance. Who wants to be admitted to a hospital that allows unsafe conditions – outside or in? These priorities are even more applicable in Northern, Northeastern and Midwestern states, where average daily mid-winter temperatures can remain below zero degrees Fahrenheit. For grounds maintenance personnel in such climates, the job they do from 5:00 a.m. to 5:00 p.m. in the spring and fall becomes a 24/7 job in the winter. A hospital's variety of outdoor surfaces require different deicers/anti-icers appropriate to the vehicular and pedestrian traffic that utilize them. So, many facilities stock and use a variety of materials, depending upon snow/ice conditions and the types of surfaces being treated. These materials often include sodium, calcium and magnesium chlorides, bulk sodium chloride and, sometimes, blends of some of these materials. Like other snow and ice management personnel in other industries, hospital facilities managers are aware of the threats to the environment, pets and humans posed by chloride-based deicers/anti-icers. And, the damage these materials cause inside buildings has become more widely known. When chloride-based products are applied in these areas, they get tracked into the buildings – and it's surprising how far into a building these products can be tracked. The use of granular chloride products results in 'hidden' costs that build up over the years: damage to floors and carpeting indoors and corrosion of doorways, concrete, asphalt, stone walkways and metal such as railings and doors outside. For this reason, many facilities personnel have been on the lookout for chloride-free ice melters that can be used for targeted use, particularly at entryways and stairways. In search of environmentally-friendly de-icers/anti-icers In recent years, grounds maintenance supervisors across a variety of industries have sought out new, more environmentally-friendly deicer/anti-icing products. That's because chloride-based products – sodium, calcium and magnesium chlorides – harm not only outdoor and indoor infrastructure, but humans, pets, plants and aquatic life, too. Some chloride-based products can burn human skin when contacted. If inhaled, dust particles can cause severe irritation. If ingested, they can cause severe irritation and bouts of vomiting and diarrhea. When cats and dogs walk on surfaces treated with some chloride-based products, they often experience painful burning, inflammation and cracked pads. If they lick their paws and ingest the salt, they may experience symptoms including excessive thirst, vomiting and diarrhea. The benefits of potassium formate technology A new alternative to chloride-based ice melt products is a liquid deicer based upon potassium formate technology that is 100% chloride free and readily biodegradable. It is safer for people, pets, plants, metal, concrete and other surfaces. In fact, its toxicity rate is significantly lower than that of chloride-based products and potassium acetate. Ice and snow removal contractors have been attracted to liquid ice melt/deice products largely because they are much easier to apply (no need to lug a bag of granular product across walkways and up and down stairways to apply – and no need to continually dip a gloved hand or a scoop into the bag). Spray applications are far more efficient and easy to use – and they provide for very precise application rates. For many building owners and facilities managers, consumer concerns about child and pet-based eco-friendliness are viewed as of secondary importance. After all, children and pets are not typically traversing or playing on the grounds of office buildings and office parks. But the office's indoor "environment" is also negatively impacted by some ice melt/deice materials. When tracked into a facility, certain chloride deicers leave a white residue that can dull the finish of floors and fade the color of carpets. Other chloride-based products coat floors with an oily, slippery residue that damages wax and urethane finishes, posing a safety risk to employees and visitors. By contrast, the neutral pH formulations of certain potassium formate technology deicers eliminate tracking, leaving no residue. This reduces near-term labor costs associated with manual cleaning, estimated at $50 per entrance per day according to the International Sanitary Supply Association's Clean Management Institute. And with no tracking and no residue, the building's floors and carpets are safer to walk, too. Outdoors, formic technology deicers create a safer environment more quickly than chloride-based deicers. For example, some formic technology deicers have a speed of melt of about 30 to 50 seconds by reducing the freezing point to temperatures as low as minus 63 degrees Fahrenheit. These deicers quickly and reliably remove thin layers of ice and prevent new snow and ice from accumulating. By contrast, chloride-based granular deicers take a minimum of three to five minutes to achieve an acceptable melt – and as much as 10 minutes. Most users will achieve a lower application cost per 1,000 sq. ft. with liquids than with granular deicers because of the ease and speed of application and the reduced amount of product needed to produce an acceptable melt. For grounds maintenance personnel seeking deicing/anti-icing materials that are effective, affordable, non-corrosive and do not cause tracking indoors, potassium formate technology deicers/anti-icers are worth a look. Hold the Salt? Sustainable Snow Removal Strategies Heat Up Alternative approaches make it possible to minimize damage to facilities, bodies of water, and plant life while ensuring safety. By Karen Kroll – Original Article As another winter approaches, snow and ice removal likely will be top of mind. These days, the environmental costs of traditional snow and ice removal methods are a growing concern. The chemicals often used to melt snow and ice can damage buildings and pavement, and the run-off can harm plants and bodies of water. To be sure, the chlorides or salts currently used by many facility professionals to melt snow and ice likely will remain around for some time. Many are familiar with their use. In addition, salt typically requires less upfront investment than some other options. At the same time, more facility managers are considering ways to adjust traditional snow and ice removal methods to reduce their impact on the environment. They're also looking into new options that are entering the market. "As buildings have become more sustainable, facilities professionals now are thinking more about their environmental impact outside the building," says Nate Clemmer, chief executive officer with SynaTek Solutions. Continue reading on facilitiesnet Branch Creek Partners With Rodale Institute Organizations Collaborate to Advance Certified Organic Growing SOUDERTON, Pa., June 13, 2018 – Branch Creek CEO Nate Clemmer announces a professional partnership between Branch Creek and Rodale Institute, citing the organizations' shared commitment to the advancement of scalable, regenerative certified organic farming. "Rodale Institute is an organic industry pioneer and esteemed source of knowledge, and its team has worked closely with Branch Creek as we've developed our product line. This is a natural partnership for Branch Creek as we strive to make organic growing more accessible and more commonplace," says Clemmer. Branch Creek inputs put scalable organic growing in reach of farmers, bridging the gap between the demand for organic crops and the realities of organic production. Its liquid and granular fertilizers are designed to do better by water, soil, and living things. Rodale Institute is a 501(c)(3) nonprofit dedicated to pioneering organic farming through research and outreach. For nearly 70 years, the Institute has been researching the best practices of organic agriculture and sharing findings with farmers and scientists worldwide. "Consumer demand for organic food is at an all time high, yet only one percent of American farmland is certified organic. Companies like Branch Creek are much-needed catalysts of change, providing a bridge and solution-based products that help farmers transition from conventional to organic practices. By restoring farmers' soil and bringing its microbiology back to life, we're not only mitigating climate change and considering human health; we're creating massive financial opportunities," says Jeff Tkach, Rodale Institute's Chief Growth Officer. For more information about Branch Creek, visit trulyabouttomorrow.com. Montco company pushing organic alternatives for tackling weeds, grubs – and ice. By John George – Senior Reporter, Philadelphia Business Journal - Original article Nate Clemmer was in the backyard of his new house five years ago when he came to a realization. "The house is adjacent to a creek," he said. "One day, I was out pushing my spreader putting down fertilizer. It hit me that there was no question a part of what I was spreading would go into that creek. So I stopped and decided to look for alternatives. Clemmer knows the fertilizer industry well. He is president of SynaTek Soultions, an 18-year-old Souderton company that specializes in products and technologies used by the golf, landscape, agriculture and ice melt industries. "I couldn't find anything that I was comfortable with in terms of performance and price," he said. "So I started talking with people. We work with a lot of organic chemists and what I kept hearing was they didn't have anything today, but they were working on it." That journey eventually led to a new line of products for SynaTek. The name of the body of water he wanted to protect­ — Branch Creek ­— is also the name of a new SynaTek brand launched this year. Branch Creek is focused on marketing environmentally friendly fertilizers and products for lawns, commercial and government properties, and athletic fields and facilities including golf courses. "We will still sell synthetic products and we will do it unapologetically," Clemmer said. "But as a company, we can't not recognize new technology and a better way of doing things." With Branch Creek, he said, he can "bridge the gap" between synthetic and organic products used to control weeds and improve crop yields. Clemmer said a traditional customer may not want to switch to all organic products, but it would make business sense to consider converting a portion of the field for organic food production — which has proven its value when considering how many people are willing to pay a premium for organic fruits and vegetables. "We can have a business discussion about diversification and risk management," he said. "We haven't converted a lot of [customer] acres yet, but that is where we are headed. A business owner with 1,000 acres may want to convert 100 to organic. It would be a bad business decision not to consider it." With Branch Creek, he said, the company wants to accomplish two primary goals: Bridging the gap between the demand for organic products and its ability to supply it, and raising awareness about "what goes in our soil affects our water." Clemmer said his company is now focusing its sales effort for its Branch Creek lawn care products on its larger commercial customers, but long-term plans include sales to homeowners. The company is looking at creating a consumer lawn care program with different organic products for controlling weeds and harmful insects and promoting healthy yards for homeowners next year. SynaTek, which generates annual revenues of about $40 million and employs a staff of about 50 full-time equivalents, was formed in 2003 by Clemmer's father Ken Clemmer in a partnership with Billy Willard and Bob Willard. The Willards lead Willard Agri-Service, which continues to serve as SynaTek's manufacturing partner. The business was once part of Moyer & Son's agricultural business, which was sold to Timac North America in 2001. Timac North America is the U.S. subsidiary of Timec Agro, an international agricultural products company based in France. Timec was not interested in the Moyer & Son plant nutrient division, the business unit Ken Clemmer was part of that sold products to non-farm customers such as golf courses operators and commercial and residential property owners. Ken Clemmer, rather than take another position with Moyer & Sons [now Moyer Indoor/Outdoor] or retire, negotiated a deal to take over the division. "He wanted to see if he could grow the business on his own," Nate Clemmer said. SynaTek was initially formed to manufacture and sell synthetic fertilizers, crop, grass seed and equipment to golf courses and large lawn care companies. Ken Clemmer served as Synatek's president up until July 2016 when Nate took over. Today Synatek's other brands, in addition to Branch Creek, are SynaTek Reach, which formulates and produces liquid and granular plant nutrients; Ecotronics, the company's equipment technology arm; and Secure Winter Products, which markets innovative and environmentally friendly ice melt technologies. In Janaury, the company began selling Entry, a chloride-free de-icer it says can melt ice in as little as 30 seconds. The product, Clemmer said, is a competitively-priced and better-performing alternative to granular chloride salts that are harmful to the environment, irritate pets, and get tracked into offices and homes. Clemmer said while the company, working with its industry partners, developed Entry as an environmentally friendly alternatives, it turned out to work better and faster than its own salt-based de-icer products. Among Synatek's commercial customers for Entry is the Denver Broncos, which used the de-icing and anti-icing fluid at the team's headquarters at The UCHealth Training Center in Englewood, Colo., this past winter. SynaTek Solutions Announces Partnership with NFL's Denver Broncos for use of Entry™ Biodegradable Deicing Solution SOUDERTON, PA, February 15, 2018 – SynaTek Solutions has announced that the National Football League's Denver Broncos Football Club has selected its Entry™ deicing and anti-icing fluid for use at the team's headquarters at the UCHealth Training Center in Englewood, Colo. Entry provides users many advantages over the use of traditional calcium, sodium and magnesium chloride granular products. "When tracked into a facility, all chloride granular deicers leave a white residue that can dull the finish of floors and fade the color of carpets," said Nate Clemmer, CEO and Managing Partner of SynaTek Solutions. "Calcium and magnesium chloride-based products coat floors with an oily, slippery residue that damages wax and urethane finishes and poses a safety risk." Entry's neutral pH formulation uses potassium formate, the salt of BASF's Formic Acid technology, to eliminate tracking, reducing near-term labor costs associated with manual cleaning. Calcium and magnesium chloride-based products coat floors with an oily, slippery residue that damages wax and urethane finishes and poses a safety risk. The new deicing and anti-icing fluid also is an eco-friendly, non-corrosive deicing alternative. Granular chloride products are all hygroscopic, meaning they draw moisture from the atmosphere. They are harmful if swallowed by people or pets and will damage turf, ornamental plants and waterways. Potassium formate deicers are 100% chloride free and are readily biodegradable. They are safer for pets, plants, metals and concrete. Entry melts ice faster than chloride-based granular products, which take, a minimum of three to five minutes to achieve an acceptable melt – and as much as 10 minutes. Potassium formate, enables Entry to increase the speed of snow/ice melt to about 30 to 50 seconds by reducing the freezing point to approximately minus 63 degrees Fahrenheit. Entry is easy to apply and is a cost-effective deicing and anti-icing product. Most users will achieve a lower application cost per 1,000 sq. ft. with liquids than with granular deicers. SynaTek Solutions markets Entry to snow professionals and facility managers through its Secure Winter Products brand and to consumers through Branch Creek. Entry was introduced in the United States in June 2017. For more information, visit http://securewinterproducts.com or https://chloridefree.com. Social media reminds us that we're all in this together. Its great for sharing news, too. Follow Branch Creek for the latest in products, environmental updates, customer stories, and more. Let us know how Branch Creek is making your world safer and easier. Branch Creek solutions prioritize our health and planet without added work or sky-high spending. You catch a break, and Mother Nature does, too! If you see the Branch Creek logo on a product, you know it's been carefully developed to benefit water, soil, and living things — all while making every day better. Branch Creek is proud to partner with this organic pioneer: Branch Creek Organics Safer Play © 2020 Branch Creek. All rights reserved
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,210
[ 128000, 4516, 321, 29508, 38170, 198, 28571, 25599, 198, 18424, 66, 10957, 198, 18697, 24076, 24083, 288, 16233, 809, 7199, 8877, 69, 323, 69492, 23508, 311, 11736, 5492, 23840, 323, 69492, 10852, 71502, 7935, 1226, 6910, 323, 763, 55529, 198, 14202, 4760, 3481, 715, 11, 16056, 2637, 5651, 220, 19, 11, 220, 679, 23, 1389, 26176, 24076, 11, 264, 14290, 315, 32981, 7982, 323, 7479, 13709, 10105, 11, 7376, 279, 7195, 315, 1202, 16233, 809, 7199, 1584, 315, 60090, 323, 37125, 3956, 13, 3744, 315, 279, 26176, 24076, 7658, 1031, 548, 6826, 11, 16233, 809, 7199, 596, 94409, 30843, 11, 2895, 392, 30843, 323, 69492, 12369, 449, 75204, 54454, 36947, 1520, 40962, 323, 37125, 2512, 15749, 6144, 2383, 4511, 323, 60090, 5151, 505, 70535, 323, 41911, 11, 2085 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 4516, 321, 29508, 38170, 198, 28571, 25599, 198, 18424, 66, 10957, 198, 18697, 24076, 24083, 288, 16233, 809, 7199, 8877, 69, 323, 69492, 23508, 311, 11736, 5492, 23840, 323, 69492, 10852, 71502, 7935, 1226, 6910, 323, 763, 55529, 198, 14202, 4760, 3481, 715, 11, 16056, 2637, 5651, 220, 19, 11, 220, 679, 23, 1389, 26176, 24076, 11, 264, 14290, 315, 32981, 7982, 323, 7479, 13709, 10105, 11, 7376, 279, 7195, 315, 1202, 16233, 809, 7199, 1584, 315, 60090, 323, 37125, 3956, 13, 3744, 315, 279, 26176, 24076, 7658, 1031, 548, 6826, 11, 16233, 809, 7199, 596, 94409, 30843, 11, 2895, 392, 30843, 323, 69492, 12369, 449, 75204, 54454, 36947, 1520, 40962, 323, 37125, 2512, 15749, 6144, 2383, 4511, 323, 60090, 5151, 505, 70535, 323, 41911, 11, 2085, -100 ]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="de"> <head> <!-- Generated by javadoc (version 1.7.0_02) on Thu Jan 21 16:37:26 CET 2016 --> <title>B-Index</title> <meta name="date" content="2016-01-21"> <link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="B-Index"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li>Use</li> <li><a href="../overview-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li class="navBarCell1Rev">Index</li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="index-1.html">Prev Letter</a></li> <li><a href="index-3.html">Next Letter</a></li> </ul> <ul class="navList"> <li><a href="../index.html?index-filesindex-2.html" target="_top">Frames</a></li> <li><a href="index-2.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">D</a>&nbsp;<a href="index-5.html">E</a>&nbsp;<a href="index-6.html">F</a>&nbsp;<a href="index-7.html">G</a>&nbsp;<a href="index-8.html">H</a>&nbsp;<a href="index-9.html">I</a>&nbsp;<a href="index-10.html">J</a>&nbsp;<a href="index-11.html">L</a>&nbsp;<a href="index-12.html">M</a>&nbsp;<a href="index-13.html">N</a>&nbsp;<a href="index-14.html">P</a>&nbsp;<a href="index-15.html">R</a>&nbsp;<a href="index-16.html">S</a>&nbsp;<a href="index-17.html">T</a>&nbsp;<a href="index-18.html">U</a>&nbsp;<a href="index-19.html">V</a>&nbsp;<a href="index-20.html">W</a>&nbsp;<a name="_B_"> <!-- --> </a> <h2 class="title">B</h2> <dl> <dt><span class="strong"><a href="../de/orolle/bigsense/server/devicemgmt/Smartphone.html#batteryLevel">batteryLevel</a></span> - Variable in class de.orolle.bigsense.server.devicemgmt.<a href="../de/orolle/bigsense/server/devicemgmt/Smartphone.html" title="class in de.orolle.bigsense.server.devicemgmt">Smartphone</a></dt> <dd> <div class="block">The battery level.</div> </dd> <dt><span class="strong"><a href="../de/orolle/bigsense/server/update/BigSenseUpdater.html#batteryLevel">batteryLevel</a></span> - Variable in class de.orolle.bigsense.server.update.<a href="../de/orolle/bigsense/server/update/BigSenseUpdater.html" title="class in de.orolle.bigsense.server.update">BigSenseUpdater</a></dt> <dd> <div class="block">battery of the phone</div> </dd> <dt><span class="strong"><a href="../de/orolle/bigsense/server/devicemgmt/Smartphone.html#batteryTemperature">batteryTemperature</a></span> - Variable in class de.orolle.bigsense.server.devicemgmt.<a href="../de/orolle/bigsense/server/devicemgmt/Smartphone.html" title="class in de.orolle.bigsense.server.devicemgmt">Smartphone</a></dt> <dd> <div class="block">The battery temperature.</div> </dd> <dt><span class="strong"><a href="../de/orolle/bigsense/server/update/BigSenseUpdater.html#batteryTemperature">batteryTemperature</a></span> - Variable in class de.orolle.bigsense.server.update.<a href="../de/orolle/bigsense/server/update/BigSenseUpdater.html" title="class in de.orolle.bigsense.server.update">BigSenseUpdater</a></dt> <dd> <div class="block">Temperature of the phone</div> </dd> <dt><a href="../de/orolle/bigsense/server/update/BigSenseUpdater.html" title="class in de.orolle.bigsense.server.update"><span class="strong">BigSenseUpdater</span></a> - Class in <a href="../de/orolle/bigsense/server/update/package-summary.html">de.orolle.bigsense.server.update</a></dt> <dd> <div class="block">Manages Update Process for Android Smartphones.</div> </dd> <dt><span class="strong"><a href="../de/orolle/bigsense/server/update/BigSenseUpdater.html#BigSenseUpdater(org.vertx.java.core.Vertx, java.lang.String, java.lang.String, java.lang.String)">BigSenseUpdater(Vertx, String, String, String)</a></span> - Constructor for class de.orolle.bigsense.server.update.<a href="../de/orolle/bigsense/server/update/BigSenseUpdater.html" title="class in de.orolle.bigsense.server.update">BigSenseUpdater</a></dt> <dd> <div class="block">Constructs BigSenseUpdater which is responsible for update of exactly one Android Smartphone.</div> </dd> <dt><a href="../de/orolle/bigsense/server/update/BigSenseUpdater.Command.html" title="class in de.orolle.bigsense.server.update"><span class="strong">BigSenseUpdater.Command</span></a> - Class in <a href="../de/orolle/bigsense/server/update/package-summary.html">de.orolle.bigsense.server.update</a></dt> <dd> <div class="block">Commandline Command.</div> </dd> <dt><span class="strong"><a href="../de/orolle/bigsense/server/update/BigSenseUpdater.Command.html#BigSenseUpdater.Command(java.lang.String, org.vertx.java.core.Handler)">BigSenseUpdater.Command(String, Handler&lt;String&gt;)</a></span> - Constructor for class de.orolle.bigsense.server.update.<a href="../de/orolle/bigsense/server/update/BigSenseUpdater.Command.html" title="class in de.orolle.bigsense.server.update">BigSenseUpdater.Command</a></dt> <dd> <div class="block">Instantiates a new command.</div> </dd> <dt><span class="strong"><a href="../de/orolle/bigsense/server/update/BigSenseUpdater.Command.html#BigSenseUpdater.Command(java.lang.String)">BigSenseUpdater.Command(String)</a></span> - Constructor for class de.orolle.bigsense.server.update.<a href="../de/orolle/bigsense/server/update/BigSenseUpdater.Command.html" title="class in de.orolle.bigsense.server.update">BigSenseUpdater.Command</a></dt> <dd> <div class="block">Instantiates a new command.</div> </dd> <dt><a href="../de/orolle/bigsense/server/update/BigSenseUpdater.Put.html" title="class in de.orolle.bigsense.server.update"><span class="strong">BigSenseUpdater.Put</span></a> - Class in <a href="../de/orolle/bigsense/server/update/package-summary.html">de.orolle.bigsense.server.update</a></dt> <dd> <div class="block">SCP Put File Command.</div> </dd> <dt><span class="strong"><a href="../de/orolle/bigsense/server/update/BigSenseUpdater.Put.html#BigSenseUpdater.Put(java.lang.String, org.vertx.java.core.Handler)">BigSenseUpdater.Put(String, Handler&lt;String&gt;)</a></span> - Constructor for class de.orolle.bigsense.server.update.<a href="../de/orolle/bigsense/server/update/BigSenseUpdater.Put.html" title="class in de.orolle.bigsense.server.update">BigSenseUpdater.Put</a></dt> <dd> <div class="block">Instantiates a new put.</div> </dd> <dt><span class="strong"><a href="../de/orolle/bigsense/server/update/BigSenseUpdater.Put.html#BigSenseUpdater.Put(java.lang.String)">BigSenseUpdater.Put(String)</a></span> - Constructor for class de.orolle.bigsense.server.update.<a href="../de/orolle/bigsense/server/update/BigSenseUpdater.Put.html" title="class in de.orolle.bigsense.server.update">BigSenseUpdater.Put</a></dt> <dd> <div class="block">Instantiates a new put.</div> </dd> <dt><a href="../de/orolle/bigsense/server/update/BigSenseUpdater.SSH.html" title="interface in de.orolle.bigsense.server.update"><span class="strong">BigSenseUpdater.SSH</span></a> - Interface in <a href="../de/orolle/bigsense/server/update/package-summary.html">de.orolle.bigsense.server.update</a></dt> <dd> <div class="block">Helper Interface for commands.</div> </dd> </dl> <a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">D</a>&nbsp;<a href="index-5.html">E</a>&nbsp;<a href="index-6.html">F</a>&nbsp;<a href="index-7.html">G</a>&nbsp;<a href="index-8.html">H</a>&nbsp;<a href="index-9.html">I</a>&nbsp;<a href="index-10.html">J</a>&nbsp;<a href="index-11.html">L</a>&nbsp;<a href="index-12.html">M</a>&nbsp;<a href="index-13.html">N</a>&nbsp;<a href="index-14.html">P</a>&nbsp;<a href="index-15.html">R</a>&nbsp;<a href="index-16.html">S</a>&nbsp;<a href="index-17.html">T</a>&nbsp;<a href="index-18.html">U</a>&nbsp;<a href="index-19.html">V</a>&nbsp;<a href="index-20.html">W</a>&nbsp;</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li>Use</li> <li><a href="../overview-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li class="navBarCell1Rev">Index</li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="index-1.html">Prev Letter</a></li> <li><a href="index-3.html">Next Letter</a></li> </ul> <ul class="navList"> <li><a href="../index.html?index-filesindex-2.html" target="_top">Frames</a></li> <li><a href="index-2.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
{ "redpajama_set_name": "RedPajamaGithub" }
3,508
[ 128000, 13853, 15822, 9492, 32516, 67996, 54, 18, 34, 322, 43119, 9492, 220, 19, 13, 1721, 67316, 322, 965, 1, 330, 1277, 1129, 2185, 1444, 18, 2726, 53427, 14056, 19, 108483, 61240, 891, 6499, 1561, 2732, 3743, 14063, 8859, 429, 451, 891, 16747, 397, 6499, 31588, 555, 1281, 329, 511, 320, 4464, 220, 16, 13, 22, 13, 15, 62, 2437, 8, 389, 36992, 4448, 220, 1691, 220, 845, 25, 1806, 25, 1627, 88420, 220, 679, 21, 3743, 28436, 37821, 12, 1581, 524, 2150, 397, 18816, 836, 429, 1045, 1, 2262, 429, 679, 21, 12, 1721, 12, 1691, 891, 13994, 1375, 429, 6936, 1, 955, 429, 1342, 6851, 1, 1839, 6647, 6936, 4425, 1, 2316, 429, 2377, 891, 524, 2025, 397, 15896, 397, 7890, 955, 429, 1342, 10038, 80093 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 13853, 15822, 9492, 32516, 67996, 54, 18, 34, 322, 43119, 9492, 220, 19, 13, 1721, 67316, 322, 965, 1, 330, 1277, 1129, 2185, 1444, 18, 2726, 53427, 14056, 19, 108483, 61240, 891, 6499, 1561, 2732, 3743, 14063, 8859, 429, 451, 891, 16747, 397, 6499, 31588, 555, 1281, 329, 511, 320, 4464, 220, 16, 13, 22, 13, 15, 62, 2437, 8, 389, 36992, 4448, 220, 1691, 220, 845, 25, 1806, 25, 1627, 88420, 220, 679, 21, 3743, 28436, 37821, 12, 1581, 524, 2150, 397, 18816, 836, 429, 1045, 1, 2262, 429, 679, 21, 12, 1721, 12, 1691, 891, 13994, 1375, 429, 6936, 1, 955, 429, 1342, 6851, 1, 1839, 6647, 6936, 4425, 1, 2316, 429, 2377, 891, 524, 2025, 397, 15896, 397, 7890, 955, 429, 1342, 10038, 80093, -100 ]
Susan Alcorn was born January 11, 1846, in Echo, Armstrong County, Pennsylvania, a daughter of George Beck of that county. She came to Jefferson County in 1865, soon after her marriage to Jesse Alcorn. Her husband was a Veteran of the Civil War and had served with Company B, 78th PA Volunteers. She has made her home here with her husband until his death in 1899. Susan and Jesse were the parents of nine children, among them being Mrs. S. E. Ballentine of Summerville, Mrs. William Sowerby of Zelinople, Wade H., of Duquesne, William G. and Arthur B., both of Brookville. She died in Brookville, PA, on October 21, 1918, and was buried in the new Brookville Cemetery beside her husband.
{ "redpajama_set_name": "RedPajamaC4" }
2,510
[ 128000, 86383, 1708, 39730, 574, 9405, 6186, 220, 806, 11, 220, 10336, 21, 11, 304, 38906, 11, 45966, 6406, 11, 20355, 11, 264, 10003, 315, 10058, 29818, 315, 430, 14189, 13, 3005, 3782, 311, 34644, 6406, 304, 220, 9714, 20, 11, 5246, 1306, 1077, 11103, 311, 40271, 1708, 39730, 13, 6385, 10177, 574, 264, 68626, 315, 279, 16803, 5111, 323, 1047, 10434, 449, 8351, 426, 11, 220, 2495, 339, 13174, 86270, 627, 8100, 706, 1903, 1077, 2162, 1618, 449, 1077, 10177, 3156, 813, 4648, 304, 220, 9378, 24, 627, 86383, 323, 40271, 1051, 279, 6699, 315, 11888, 2911, 11, 4315, 1124, 1694, 18083, 13, 328, 13, 469, 13, 13131, 27970, 315, 8279, 76, 51872, 11, 18083, 13, 12656, 328, 1223, 1729, 315, 1901, 33830, 1184, 11, 43982, 473 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 86383, 1708, 39730, 574, 9405, 6186, 220, 806, 11, 220, 10336, 21, 11, 304, 38906, 11, 45966, 6406, 11, 20355, 11, 264, 10003, 315, 10058, 29818, 315, 430, 14189, 13, 3005, 3782, 311, 34644, 6406, 304, 220, 9714, 20, 11, 5246, 1306, 1077, 11103, 311, 40271, 1708, 39730, 13, 6385, 10177, 574, 264, 68626, 315, 279, 16803, 5111, 323, 1047, 10434, 449, 8351, 426, 11, 220, 2495, 339, 13174, 86270, 627, 8100, 706, 1903, 1077, 2162, 1618, 449, 1077, 10177, 3156, 813, 4648, 304, 220, 9378, 24, 627, 86383, 323, 40271, 1051, 279, 6699, 315, 11888, 2911, 11, 4315, 1124, 1694, 18083, 13, 328, 13, 469, 13, 13131, 27970, 315, 8279, 76, 51872, 11, 18083, 13, 12656, 328, 1223, 1729, 315, 1901, 33830, 1184, 11, 43982, 473, -100 ]
The Website and its Content is owned by Camille Hoheb LLC ("Company", "we", or "us"). The term "you" refers to the user or viewer of Wellness Travel Academy ("Website"). We manage e-mail lists through a list management system. Unsubscribing from one list managed by us will not necessarily remove you from all publication email lists. If you have questions or are experiencing problems unsubscribing, please contact us at [email protected].
{ "redpajama_set_name": "RedPajamaC4" }
7,447
[ 128000, 791, 16406, 323, 1202, 9059, 374, 13234, 555, 8215, 4618, 17723, 383, 65, 15620, 3573, 14831, 498, 330, 906, 498, 477, 330, 355, 1865, 578, 4751, 330, 9514, 1, 19813, 311, 279, 1217, 477, 26792, 315, 61283, 18589, 16192, 3573, 31151, 39709, 1687, 10299, 384, 11724, 11725, 1555, 264, 1160, 6373, 1887, 13, 1252, 2008, 11853, 7278, 505, 832, 1160, 9152, 555, 603, 690, 539, 14647, 4148, 499, 505, 682, 17009, 2613, 11725, 13, 1442, 499, 617, 4860, 477, 527, 25051, 5435, 80304, 11853, 7278, 11, 4587, 3729, 603, 520, 6730, 4618, 31, 9336, 4978, 267, 414, 2191, 14957, 9328, 916, 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 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 ]
[ 791, 16406, 323, 1202, 9059, 374, 13234, 555, 8215, 4618, 17723, 383, 65, 15620, 3573, 14831, 498, 330, 906, 498, 477, 330, 355, 1865, 578, 4751, 330, 9514, 1, 19813, 311, 279, 1217, 477, 26792, 315, 61283, 18589, 16192, 3573, 31151, 39709, 1687, 10299, 384, 11724, 11725, 1555, 264, 1160, 6373, 1887, 13, 1252, 2008, 11853, 7278, 505, 832, 1160, 9152, 555, 603, 690, 539, 14647, 4148, 499, 505, 682, 17009, 2613, 11725, 13, 1442, 499, 617, 4860, 477, 527, 25051, 5435, 80304, 11853, 7278, 11, 4587, 3729, 603, 520, 6730, 4618, 31, 9336, 4978, 267, 414, 2191, 14957, 9328, 916, 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 ]
A$AP Ferg, Rich The Kid and Lil Uzi Vert link up on DJ Carnage's "WDYW." Trap/EDM DJ Carnage's "WDYW" begins almost identically to A$AP Ferg's "Work," so it's only right that he got the A$AP Mob rapper on the track. Rich the Kid and Lil Uzi Vert also guest, rounding out a turnt-up collab that's sure to be a hit in the clubs. After opening with that Eastern-sounding synth melody, a truly oppressive 808 pattern is added in as Uzi warbles some punch drunk bars before adopting a slight patois for a hook. Ferg is next up, and yet again, he finds a new, exciting way to flow. RTK provides the triplets and Bando talk that we've come to expect from QC's artists.
{ "redpajama_set_name": "RedPajamaC4" }
8,732
[ 128000, 32, 3, 2599, 435, 2431, 11, 8269, 578, 32666, 323, 41578, 549, 8510, 15408, 2723, 709, 389, 22102, 32749, 425, 596, 330, 18023, 99217, 10246, 73560, 14, 1507, 44, 22102, 32749, 425, 596, 330, 18023, 99217, 1, 12302, 4661, 3608, 2740, 311, 362, 3, 2599, 435, 2431, 596, 330, 6919, 1359, 779, 433, 596, 1193, 1314, 430, 568, 2751, 279, 362, 3, 2599, 36006, 50437, 389, 279, 3839, 13, 8269, 279, 32666, 323, 41578, 549, 8510, 15408, 1101, 8810, 11, 52662, 704, 264, 2543, 83, 5352, 4631, 370, 430, 596, 2771, 311, 387, 264, 4295, 304, 279, 19424, 627, 6153, 8736, 449, 430, 18516, 1355, 13900, 43998, 62684, 11, 264, 9615, 78612, 220, 11770, 5497, 374, 3779, 304, 439, 549, 8510, 4208, 39863, 1063, 21004, 29850, 16283 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3, 2599, 435, 2431, 11, 8269, 578, 32666, 323, 41578, 549, 8510, 15408, 2723, 709, 389, 22102, 32749, 425, 596, 330, 18023, 99217, 10246, 73560, 14, 1507, 44, 22102, 32749, 425, 596, 330, 18023, 99217, 1, 12302, 4661, 3608, 2740, 311, 362, 3, 2599, 435, 2431, 596, 330, 6919, 1359, 779, 433, 596, 1193, 1314, 430, 568, 2751, 279, 362, 3, 2599, 36006, 50437, 389, 279, 3839, 13, 8269, 279, 32666, 323, 41578, 549, 8510, 15408, 1101, 8810, 11, 52662, 704, 264, 2543, 83, 5352, 4631, 370, 430, 596, 2771, 311, 387, 264, 4295, 304, 279, 19424, 627, 6153, 8736, 449, 430, 18516, 1355, 13900, 43998, 62684, 11, 264, 9615, 78612, 220, 11770, 5497, 374, 3779, 304, 439, 549, 8510, 4208, 39863, 1063, 21004, 29850, 16283, -100 ]
Introducing REMOTE consulting across India || Pan-India free shipping above Rs. 5000/- BiPAP Masks BiPAP Accessories Stationary OC Portable OC Oxygen Concentrator Accesories What is Oxygen Concentrator An oxygen concentrator is a device used to provide supplemental oxygen to those with low oxygen levels in their body. This device concentrates oxygen from room air and delivers to the user. It works on electricity with no need to worry about refilling gas. Quiz for Oxygen Concentrator Device Take the quiz to get your personalized recommendation. Our Best Selling CPAP Products What is an oxygen concentrator? How does it work? An oxygen concentrator is a medical device that delivers pure oxygen into the body of a patient by means of a nasal cannula or mask. It takes in air from the surroundings, compresses it, removes the nitrogen from it via a filter and sieve beds leaving 87-95% of oxygen in the air. This oxygen is then delivered to the patient. What is the difference between portable and stationary oxygen concentrator? Stationary oxygen concentrators are larger and heavier compared to portable oxygen concentrators. They also provide high flow rate and are recommended for patients who require substantial oxygen supply. Stationary oxygen concentrators deliver upto 5 or 10 liters of oxygen per minute while portable models supply 1 to 2 liters per minute. Portable oxygen concentrators can even be carried on-flight by air travelers. An FAA ruling allows FAA-approved portable oxygen concentrators to be carried on airlines. What is the advantage of an oxygen concentrator over an oxygen cylinder? A home oxygen concentrator is safer and more cost-effective when compared to a traditional oxygen cylinder. Now there is no need to carry around heavy and unwieldy oxygen cylinders. Plus, oxygen is readily available with a concentrator and, unlike an oxygen tank, an oxygen concentrator allows unlimited supply of oxygen and the patient can never run out of oxygen. Also, there is no risk of leakage. Another major benefit is the ease with which one can carry it around, even when flying. What is OPI or Oxygen Purity Indicator? OPI or Oxygen Purity Indicator is an internal sensing mechanism in Philips Respironics Oxygen Concentrators which notifies when the purity of Oxygen delivered by the device falls below the threshold limit. This ensures patient safety and timely maintenance of device if needed. Should I opt for a 5 Litre Per Minute Oxygen Concentrator or 10 Litre Per Minute? This depends on nature of requirement of patient. In most chronic cases, a flow rate of upto 5 Litre Per Minute is considered sufficient. Most often, a flow rate higher than 5 Litre Per Minute, or upto 10 Litre Per minute is needed in cases with high critical condition. It is not recommended to manage any patient with high flow requirement at home, and a hospital environment is more suited in this case. You must consider purity of device in combination with the litre per minute flow rate. Philips Respironics and DeVilbiss Oxygen Concentrators deliver oxygen concentrator at 90% - 96% which is a good purity index. Opting for a 10 Litre Oxygen Concentrator with purity less than 80-90% is not beneficial as it will not deliver high purity oxygen at higher flow rates. If you're still having more questions, feel free to reach out to us. We would be glad to get in touch with you. Aprameya Rajput Respiratory Product Specialist Copyright © 2021 Morpheus Healthcare Private Limited All Rights Reserved | Designed and Developed by: WebnU Order Online Call Us 0123456789
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
9,489
[ 128000, 1090, 60637, 26669, 19707, 31831, 4028, 6890, 1393, 11233, 12, 34648, 1949, 11862, 3485, 19766, 13, 220, 2636, 15, 14, 7058, 37196, 47, 2599, 62232, 198, 37196, 47, 2599, 40819, 198, 20348, 661, 32967, 198, 97671, 32967, 198, 46, 19472, 62261, 81, 859, 11683, 288, 2490, 198, 3923, 374, 87669, 62261, 81, 859, 198, 2127, 24463, 17576, 859, 374, 264, 3756, 1511, 311, 3493, 69051, 24463, 311, 1884, 449, 3428, 24463, 5990, 304, 872, 2547, 13, 1115, 3756, 99005, 24463, 505, 3130, 3805, 323, 28421, 311, 279, 1217, 13, 1102, 4375, 389, 18200, 449, 912, 1205, 311, 11196, 922, 2098, 9585, 6962, 627, 54986, 369, 87669, 62261, 81, 859, 14227, 198, 18293, 279, 28223, 311, 636, 701, 35649, 28782, 627, 8140, 7252, 54820, 15643, 2599, 15899, 198 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1090, 60637, 26669, 19707, 31831, 4028, 6890, 1393, 11233, 12, 34648, 1949, 11862, 3485, 19766, 13, 220, 2636, 15, 14, 7058, 37196, 47, 2599, 62232, 198, 37196, 47, 2599, 40819, 198, 20348, 661, 32967, 198, 97671, 32967, 198, 46, 19472, 62261, 81, 859, 11683, 288, 2490, 198, 3923, 374, 87669, 62261, 81, 859, 198, 2127, 24463, 17576, 859, 374, 264, 3756, 1511, 311, 3493, 69051, 24463, 311, 1884, 449, 3428, 24463, 5990, 304, 872, 2547, 13, 1115, 3756, 99005, 24463, 505, 3130, 3805, 323, 28421, 311, 279, 1217, 13, 1102, 4375, 389, 18200, 449, 912, 1205, 311, 11196, 922, 2098, 9585, 6962, 627, 54986, 369, 87669, 62261, 81, 859, 14227, 198, 18293, 279, 28223, 311, 636, 701, 35649, 28782, 627, 8140, 7252, 54820, 15643, 2599, 15899, 198, -100 ]
Forums -> General Chat -> Chatterbox Jump to page : FirstPrevious 1 2 3 Last The Seaborne debacle Barryd999 Subject: RE: The Seaborne debacle Lord of the posts Location: North Yorkshire Dales - Kontiki 640 Hank the Tank Not much going on at Dover either. Well nothing apart from some staged drive about in a few trucks that didnt even go into the port. According to Philip Hammond it would take years to ready Dover for a no deal Brexit and what have they done? Absolutely sweet FA. I am sure a Brexiteer will be along in a minute to say it will all be fine. Bulletguy The special one Location: Cheshire. Ford Transit Autosleeper Duetto Maybe Blighty will revive that Dunkirk spirit and get on the blower to this place; http://www.adls.org.uk/t1/ Fleets of Little Ships ferrying supplies of fruit 'n veg in before yanking up the drawbridge. Posted: 9 February 2019 3:00 PM Seaborne Ferry contract scrapped The £13.5 million contract with Seaborne Freight, the ferry company with no ships and t&c's copied from a takeaway menu, has been scrapped. Time to scrap this entire Brexit fiasco and put all Wrexiters on one of Seabornes invisible 'ferries' with Failing Graying......send 'em off to live out their dream on the Goodwin Sands. https://www.independent.co.uk/news/uk/politics/brexit-latest-chris-grayling-cancels-ferry-contract-no-deal-ships-seaborne-freight-dover-calais-a8770976.html Brian Kirby Location: East Sussex. Motorhome: Knaus Boxstar 600 Street Well that was helpful, wasn't it? Title: "A Brexiters Guide to Cross-Channel Traffic Management." Editor: C Grayling. Sub title: "From Debacle to Denouement in Two Easy Steps." Bulletguy - 2019-02-09 3:00 PM..................put all Wrexiters on one of Seabornes invisible 'ferries' with Failing Graying......send 'em off to live out their dream on the Goodwin Sands...…………... Grayling are fresh water fish, Paul! Brian Kirby - 2019-02-09 5:49 PM As one of the most inept idiotic ministers he was well out of his depth so would quickly get used to being a 'fish out of water'! Bulletguy - 2019-02-09 5:57 PM Not only "was" out of his depth, he still is! Location: Vanless in Evesham. They are doomed when they don't, doomed when they do, and doomed when they change their mind. But it all gives grist for the whinging folk to whinge. teflon2 Pillar of the forums You need to read your own links the ships were to be supplied by Arklow shipping a well respected shipping company with lots of ships it seems they withdrew from the venture and the contract became impossible to complete so it has been withdrawn. Makes sense to me no ships no contract but of course the remain clique didn't want to report that. Sunk from the outset. Like the rest of 'em he's just been wasting time shuffling the deckchairs around on the Titanic. teflon2 - 2019-02-09 6:35 PM Teflon......that "ship" sailed long ago and was widely reported at the time in the media. Seaborne should never have even been on the cards at all. It was absolute mind boggling lunacy to even consider contracting a company with no equipment and worse still, no previous history (apart from extremely dodgy dealings and in debt to HMRC). It was akin to offering a multi million pound contract to an ex-con with a bucket and spade to go and dig the channel tunnel. Not to mention the total farce over Ramsgate port...which UK government will need to pay the Dutch company who dredged it.....all for no reason. Posted: 10 February 2019 10:56 AM I dont see how Arklow could have been of much use anyway unless it was for transporting containers and they do not posses any roll off roll on ferries. Posted: 10 February 2019 12:03 PM Tracker - 2019-02-09 6:26 PM Maybe you're right, Rich, but he doesn't exactly have a glowing record as a minister, does he. What you say above is a recipe for the mediocre. If he is suitable ministerial material, what does that say for the other 649 MP's? Forgive the odd mistake or error of judgement OK, but keep forgiving serial misjudgements? Surely, he has to go? Posted: 10 February 2019 4:40 PM Brian Kirby - 2019-02-10 12:03 PM The same bloke dished out a £200 million contract to Carillion despite the warnings, only for Carillion to ho into very 'convenient' (for some) liquidation. EY financial services were appointed by HS2 Ltd to assess Carillion's finances, but had also been hired by the construction company! PwC insolvency still has people working on the Carillion case at the rate of £350ph per employee. The Seaborne debacle was doomed from the outset and anyone could see that. Grayling claimed throughout that "due diligence" had been conducted before awarded Seaborne the contract, yet continually refused to show it. How the hell can you do 'due diligence' on a company with no previous experience, no ferries, and no business records other than unpaid debt? I think the public has a right to see what governments so called 'due diligence' on Seaborne was and it begs the question, how on earth are these 'pop up' companies even being considered for contracts let alone being given one. Edited by Bulletguy 2019-02-10 4:41 PM I'm really miffed I have just wasted 5 mins. of my life looking though your posts to find when that ship had sailed only to find that the only reference you have made was a link 19 mins before I posted what a waste Tef.....everyone knew Seaborne was a dead duck in the pond, apart from Grayling and his cronies. I'm staggered anyone couldn't see how utterly insane it was.....and we wonder why we've become the laughing stock not just of Europe, but the world. My information was that despite all the diatribe to the opposite Arklow shipping was the partner that has a large quantity of ships and is a respected company when they removed their support the project became inoperable. Although I agree that the contract should not have been awarded to Seaborne there was at the time ships available and no doubt paperwork to that effect.. Arklow has a fleet of 45 ships. Impressive eh......trouble is they're all bulk cargo carriers for grain etc. They have no RoRo ferries. I'm not surprised they pulled out, more surprised they got involved with Seaborne as it didn't take more than a few mouse clicks to see the dubious characters they were dealing with. Perhaps one of Arklows office juniors eventually decided to do some due diligence on Seaborne rather than taking the word of Grayling and government. Like ive been saying until I am blue in the face. Nobody hires roll on roll off ferries of the type used in the channel. May has "full confidence" in Failing Grayling, now flailing around on the deck of the Titanic. The National Audit Office now reveal Failings department knew back in December that Seaborne was unable to meet the DoT's economic and financial standing eligibility...yet Failing went full steam ahead because he thought Seaborne was "novel and exceptional". https://www.channel4.com/news/grayling-faces-calls-to-quit-over-seaborne-ferries-farce Posted: 12 February 2019 8:36 AM Eurotunnel is now suing the government over this debacle. https://www.bmmagazine.co.uk/news/eurotunnel-sues-government-over-no-deal-ferry-contracts/ pelmetman - 2019-01-05 3:06 PM Barryd999 - 2019-01-05 2:24 PM Like when there was the snap election and some of you on here reckoned it would be a white wash? I still maintain that No Deal is dead and it would be assuming Parliament are not just locked in the dungeon like they seem to be at the moment. As for Labour being in charge before Brexit well thats still a possibility as well. Its not misinformation its opinion based on the current facts as we know them. Your comparison to what I have said to what the Vote leave campaign said during the referendum is wrong as they just blatantly lied, every day. I also havent broken the law unlike them. (well at least as far as Brexit is concerned){ Joe public's mistake at the election was thinking Brexit was a done deal.........and reverted to tribalism ..... Plus the Leave campaign are no more guilty of breaking the law than our Remoaner establishment ....... The Remoaner establishment has spent far more than the leave campaign ............and they still are with Channel 4's Cumberbitch starring in their latest Losers propaganda bitchfest ......... The Electoral Commission found Leave guilty and fined them...this makes the result of the 2016 null and void and if the UK was a Democracy this referendum would have been declared void and re-run immediately... Remain was not found guilty of fraud by the Electoral Commission despite their examination of the facts. If Leave had then won following a legitimate referendum all would be well and democracy would have been restored.....now democracy is dead in the UK and will only be restored when there is a re-run of a legitimate referendum. Barryd999 - 2019-02-12 8:36 AM Brilliant news......let the bunfight begin! Flailing should be locked up. Deport him to Calais!! Just listen to this....this is how wacked out Brexiteers are. This guy phoned into James O'Brien insisting the contract deal is still in place!! When James asked where he had this information from the caller goes off on a wild rant and tries deflection mode (sound familiar? ).....a major fail so insults O'Brien and slams the phone down! https://www.aol.co.uk/news/2019/02/12/uk-government-being-sued-by-eurotunnel-over-no-deal-brexit-ferri/?guccounter=1 Why do these nuggets set themselves up to be slaughtered by JOB? They need rounding up and carting off to the funny farm. Barryd999 - 2019-02-13 11:45 AM It's not difficult is it? They're in a state of permanent denial so much so to the point you get planks like that phone caller. It would be funny if it wasn't so sad. This farce just goes from bad to worse. Government admits it has 'run out of time' to find ships to bring emergency supplies after no-deal Officials have admitted they have "run out of time" to find ships to bring extra emergency supplies after a no-deal Brexit, following the Seaborne Freight fiasco. No "large amount of further additional capacity" will be available across the Channel before the end of March, MPs were told – by either sea or rail. The admission follows the embarrassment of the cancelled £13.8m contract handed to Seaborne – a firm with no ships – which has sparked calls for Chris Grayling, the transport secretary, to be sacked. "It would not be possible to complete procurement and make it operational for 29 March," the department for transport's director general admitted." https://www.independent.co.uk/news/uk/politics/brexit-no-deal-planning-emergency-supplies-seaborne-freight-chris-grayling-a8777766.html Is Seaborne being operated by a bunch of batsh1t crazy Brexiteers? It seems so as they're in a state of denial. The wacko's are claiming they will "be reintroducing the Ramsgate to Ostend Freight Ferry service in the Spring of 2019". It gets even more bonkers. The new service will have a number of unique features and benefits designed to meet the needs of both operators and their drivers. Free paddles? A limited edition photo of the phantom ferry fleet? They're even advertising for staff at Ramsgate and Ostende. This must be a massive operation. https://seabornefreight.com/recruitment
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
5,623
[ 128000, 2520, 6370, 1492, 3331, 13149, 1492, 921, 1683, 2054, 198, 35079, 311, 2199, 551, 5629, 21994, 220, 16, 220, 17, 220, 18, 8155, 198, 791, 1369, 4422, 818, 100012, 198, 3511, 894, 67, 5500, 198, 13317, 25, 3680, 25, 578, 1369, 4422, 818, 100012, 198, 52182, 315, 279, 8158, 198, 4812, 25, 4892, 51327, 423, 3916, 482, 37966, 7723, 220, 14033, 55761, 279, 32494, 198, 2688, 1790, 2133, 389, 520, 87926, 3060, 13, 8489, 4400, 10980, 505, 1063, 51157, 6678, 922, 304, 264, 2478, 27861, 430, 48707, 1524, 733, 1139, 279, 2700, 13, 10771, 311, 26241, 65443, 433, 1053, 1935, 1667, 311, 5644, 87926, 369, 264, 912, 3568, 24854, 323, 1148, 617, 814, 2884, 30, 56647, 10437, 15358, 627, 40, 1097, 2771, 264, 11681, 87, 635, 261 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2520, 6370, 1492, 3331, 13149, 1492, 921, 1683, 2054, 198, 35079, 311, 2199, 551, 5629, 21994, 220, 16, 220, 17, 220, 18, 8155, 198, 791, 1369, 4422, 818, 100012, 198, 3511, 894, 67, 5500, 198, 13317, 25, 3680, 25, 578, 1369, 4422, 818, 100012, 198, 52182, 315, 279, 8158, 198, 4812, 25, 4892, 51327, 423, 3916, 482, 37966, 7723, 220, 14033, 55761, 279, 32494, 198, 2688, 1790, 2133, 389, 520, 87926, 3060, 13, 8489, 4400, 10980, 505, 1063, 51157, 6678, 922, 304, 264, 2478, 27861, 430, 48707, 1524, 733, 1139, 279, 2700, 13, 10771, 311, 26241, 65443, 433, 1053, 1935, 1667, 311, 5644, 87926, 369, 264, 912, 3568, 24854, 323, 1148, 617, 814, 2884, 30, 56647, 10437, 15358, 627, 40, 1097, 2771, 264, 11681, 87, 635, 261, -100 ]
Wheely is luxury ride-hailing service in Moscow and London. We are looking for a Head of Comms / PR reporting directly to the CEO. This position is primarily based in London but with responsibilities in Moscow.
{ "redpajama_set_name": "RedPajamaC4" }
316
[ 128000, 54, 383, 989, 374, 19913, 12141, 2902, 14612, 2532, 304, 23223, 323, 7295, 13, 1226, 527, 3411, 369, 264, 11452, 315, 1219, 1026, 611, 8743, 13122, 6089, 311, 279, 12432, 13, 1115, 2361, 374, 15871, 3196, 304, 7295, 719, 449, 28423, 304, 23223, 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, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 54, 383, 989, 374, 19913, 12141, 2902, 14612, 2532, 304, 23223, 323, 7295, 13, 1226, 527, 3411, 369, 264, 11452, 315, 1219, 1026, 611, 8743, 13122, 6089, 311, 279, 12432, 13, 1115, 2361, 374, 15871, 3196, 304, 7295, 719, 449, 28423, 304, 23223, 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, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Democratic Republic of Congo has denied any manipulation of its figures for coronavirus cases and deaths The debate erupted when health authorities revealed the new COVID-19 results from DR Congo, which stands at 63 deaths out of 2,025 cases, most of them in the capital, Kinshasa. Thus far, 312 people have been recovered. The vast Central African country, one of the poorest in the world, reported its first case on 10 March. Late on Friday, the government announced that a doctor and a hospital supervisor had been charged and later released on accusations of misleading coronavirus data. The arrests were made after "a disagreement over a patient who died this month," the government news release reported. The country's Council of Ministers met on Friday after President Felix Tshisekedi asked the health minister to investigate rumours of fake patient deaths linked to the virus. "There is a hostile media campaign being waged against our country by some international media, with the intention of tarnishing its reputation in connection with the management of COVID-19," the Council of Ministers said in the minutes of the meeting. They also condemned the attacks on the Kinshasa Coronavirus Prevention and Response Teams, urging the Minister of Justice to act rigorously against the perpetrators of these acts". Parliament, meanwhile, voted on Friday to extend the state of emergency order by 15 days for the third time. Also Read : The whereabouts of Chinese doctors who came to Nigerian have been revealed by CCECC MD A team of Chinese medical experts that arrived in Kinshasa earlier this month found no evidence that the number of virus cases or deaths were distorted, Jean-Jacques Muyembe, DR Congo's coronavirus front man, told a news conference on Friday. "Cases are less severe here than in Europe or the United States. We have a younger population that is more resistant to infection," Muyembe said. Zhu Jing, the Chinese ambassador to DR Congo, said that the team of Chinese doctors did not notice any "alien He said: "The hospitalized patients are indeed suffering from a pandemic,."
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,326
[ 128000, 90999, 5545, 315, 54932, 706, 15164, 904, 34786, 315, 1202, 12678, 369, 33333, 5157, 323, 16779, 198, 791, 11249, 61274, 994, 2890, 198, 3170, 1385, 10675, 279, 502, 20562, 12, 777, 3135, 505, 14644, 54932, 11, 902, 13656, 520, 220, 5495, 198, 451, 27382, 704, 315, 220, 17, 11, 18070, 5157, 11, 1455, 315, 1124, 304, 279, 6864, 11, 31991, 939, 15790, 13, 14636, 3117, 11, 220, 13384, 198, 16455, 617, 1027, 26403, 627, 791, 13057, 10913, 11904, 3224, 11, 832, 198, 1073, 279, 68751, 304, 279, 1917, 11, 5068, 1202, 1176, 1162, 389, 220, 605, 5587, 13, 36931, 389, 198, 35720, 11, 279, 3109, 7376, 430, 264, 10896, 323, 264, 8952, 38419, 1047, 198, 82850, 11684, 323, 3010, 6004, 389, 36569, 315, 38309, 33333, 828, 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 ]
[ 90999, 5545, 315, 54932, 706, 15164, 904, 34786, 315, 1202, 12678, 369, 33333, 5157, 323, 16779, 198, 791, 11249, 61274, 994, 2890, 198, 3170, 1385, 10675, 279, 502, 20562, 12, 777, 3135, 505, 14644, 54932, 11, 902, 13656, 520, 220, 5495, 198, 451, 27382, 704, 315, 220, 17, 11, 18070, 5157, 11, 1455, 315, 1124, 304, 279, 6864, 11, 31991, 939, 15790, 13, 14636, 3117, 11, 220, 13384, 198, 16455, 617, 1027, 26403, 627, 791, 13057, 10913, 11904, 3224, 11, 832, 198, 1073, 279, 68751, 304, 279, 1917, 11, 5068, 1202, 1176, 1162, 389, 220, 605, 5587, 13, 36931, 389, 198, 35720, 11, 279, 3109, 7376, 430, 264, 10896, 323, 264, 8952, 38419, 1047, 198, 82850, 11684, 323, 3010, 6004, 389, 36569, 315, 38309, 33333, 828, 627, -100 ]
I am a Hong Kong Business Traveler who has just come back from Singapore. I need to file a complaint to driver of Taxi Liscene No. SHD2663H – Name unknown – Male Driver at his 71 years with 4 children and 8 grand children at he stated. I took the Taxi from Marina Bay Sands Tower 3, at taxi stand, no advanced calling at around 1740pm on 21 Oct 2016 – Friday. I traveled from the hotel to the airport and at the ended, he charged me SGD38 which was completely overpriced. Along the road, he kept talking about how to write the claim form on taxi and his experiences. He said how he made additionally charges himself when he claimed company expenses. I was reading meters along the way, which was SGD14.66 from MBS to Taxi. When collecting money, he pressed a button and the billed became SGD31.88 and he said I needed to pay surcharge so the final bill was SGD38 . I had no ideas about the price so I paid. I felt something wrong so I then immediately asked other taxi drivers, they said maximum it is only SGD27…. At the end, it is not the problem about money, but it is the trust between driver and customers, my trust on local Singaporean. I am quite disappointed. I have just called Prime Taxi (1145am on 22nd Oct), no one picked up the phone. It is really bad experience with the city but I trust they are just the black sheep. I hope LTA and Prime Taxi can look into it and investigate. At the same time, I will share this case among all the social platform about Prime Taxi so everyone should try their best to avoid their service.
{ "redpajama_set_name": "RedPajamaC4" }
9,700
[ 128000, 40, 1097, 264, 19730, 18711, 8184, 18589, 261, 889, 706, 1120, 2586, 1203, 505, 21181, 13, 358, 1205, 311, 1052, 264, 12458, 311, 5696, 315, 79375, 445, 3510, 1994, 2360, 13, 6570, 35, 15999, 18, 39, 1389, 4076, 9987, 1389, 19960, 14919, 520, 813, 220, 6028, 1667, 449, 220, 19, 2911, 323, 220, 23, 6800, 2911, 520, 568, 11224, 13, 358, 3952, 279, 79375, 505, 52636, 9332, 79270, 22703, 220, 18, 11, 520, 33605, 2559, 11, 912, 11084, 8260, 520, 2212, 220, 11771, 15, 5298, 389, 220, 1691, 5020, 220, 679, 21, 1389, 6740, 13, 358, 31796, 505, 279, 9689, 311, 279, 17149, 323, 520, 279, 9670, 11, 568, 11684, 757, 95083, 1987, 902, 574, 6724, 927, 652, 7725, 13, 32944, 279, 5754, 11, 568, 8774, 7556 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 264, 19730, 18711, 8184, 18589, 261, 889, 706, 1120, 2586, 1203, 505, 21181, 13, 358, 1205, 311, 1052, 264, 12458, 311, 5696, 315, 79375, 445, 3510, 1994, 2360, 13, 6570, 35, 15999, 18, 39, 1389, 4076, 9987, 1389, 19960, 14919, 520, 813, 220, 6028, 1667, 449, 220, 19, 2911, 323, 220, 23, 6800, 2911, 520, 568, 11224, 13, 358, 3952, 279, 79375, 505, 52636, 9332, 79270, 22703, 220, 18, 11, 520, 33605, 2559, 11, 912, 11084, 8260, 520, 2212, 220, 11771, 15, 5298, 389, 220, 1691, 5020, 220, 679, 21, 1389, 6740, 13, 358, 31796, 505, 279, 9689, 311, 279, 17149, 323, 520, 279, 9670, 11, 568, 11684, 757, 95083, 1987, 902, 574, 6724, 927, 652, 7725, 13, 32944, 279, 5754, 11, 568, 8774, 7556, -100 ]
Home » Timeshare Law » European Law » The Consumer Rights Act 2015 Advice The Consumer Rights Act 2015 (herein referred to as the CRA) has reformed and consolidated the previous "unfair contract terms in consumer contracts" regulations accordingly the revocation and consolidation is outlined in Part 2 of the CRA which amends the Unfair Contract Terms Act 1977 and when considering issues in business to consumer [B-C] contracts. The regulations further revoke the Unfair Terms in Consumer Contracts Regulations 1999. So, what's covered? Consumer Contracts (not employment or apprenticeship business to business or more importantly consumer to consumer); and a pre-contractual notice to the extent that it relates to the rights or obligations between a trader and a consumer or purports to exclude or limit a trader's liability to a consumer. The notice does not have to be in writing but is any communication or announcement as long as it is reasonable to assume it is intended to be seen or heard by a consumer. The fact that notices are explicitly incorporated in the regulations, the written terms in the consumer contracts and notices must be transparent, in plain and intelligible language and legible (if expressed in text); The scope of terms which may be assessed for fairness; and 3 new additions to the 'grey list' of terms which may be regarded as unfair (These are set out in Schedule 2 of the CRA). General rules regarding express terms in a consumer contract or notice must be transparent. No exclusion or limitation for liability for death or personal injury arising from negligence will be valid. Where a clause is non-binding (because of being declared unfair) the rest of the contract will take effect as far as reasonable and practicable. Where a term can have duplicitous meaning, the interpretation most favourable to the consumer will always prevail. What are the general rules about (fairness of contract terms and notices) The Contract terms and notices must be fair. An unfair term or notice will not be binding on the consumer unless the consumer overtly chooses to be bound by it. A term will be unfair if, contrary to good faith requirements, it causes a significant imbalance in the parties' rights and obligations under the contract and to the detriment of the consumer. A term of a consumer contract may not be assessed for fairness where it specifies the main subject matter of the contract or the assessment is of the appropriateness of the price payable, provided the term is transparent (in plain and intelligible language and legible where written) and prominent (brought to the consumer's attention in such a way that the average consumer would be aware of it). The terms which may be regarded as unfair Schedule 2 of the CRA sets out an "indicative and non-exhaustive" list of terms in consumer contracts which may be regarded as unfair. This includes three new 'grey list' terms: disproportionately high charges where the consumer decides not to conclude or perform the contract or for services which have not been supplied, even where the consumer cancels the contract; terms allowing the trader to determine the characteristics or subject matter after the consumer is bound; and terms allowing the trader to determine the price after the consumer is bound. A term of a consumer contract must be regarded as unfair if it has the effect that the consumer bears the burden of proof with respect to compliance by a distance supplier or an intermediary with an obligation under any enactment or rule implementing the Distance Marketing Directive (relating to the distance marketing of consumer financial services)
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,619
[ 128000, 7778, 8345, 8691, 77811, 7658, 8345, 7665, 7658, 8345, 578, 26262, 10734, 3298, 220, 679, 20, 55820, 198, 791, 26262, 10734, 3298, 220, 679, 20, 320, 6881, 258, 14183, 311, 439, 279, 94767, 8, 706, 312, 10365, 323, 60391, 279, 3766, 330, 359, 42000, 5226, 3878, 304, 11761, 17517, 1, 14640, 28178, 279, 5891, 2328, 323, 60732, 374, 33740, 304, 3744, 220, 17, 315, 279, 94767, 902, 1097, 1438, 279, 1252, 42000, 19735, 20163, 3298, 220, 4468, 22, 323, 994, 13126, 4819, 304, 2626, 311, 11761, 510, 33, 7813, 60, 17517, 627, 791, 14640, 4726, 73138, 279, 1252, 42000, 20163, 304, 26262, 71659, 49357, 220, 2550, 24, 627, 4516, 11, 1148, 596, 9960, 5380, 31068, 71659, 320, 1962, 14740, 477, 72351, 2200, 2626, 311, 2626, 477, 810 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 8345, 8691, 77811, 7658, 8345, 7665, 7658, 8345, 578, 26262, 10734, 3298, 220, 679, 20, 55820, 198, 791, 26262, 10734, 3298, 220, 679, 20, 320, 6881, 258, 14183, 311, 439, 279, 94767, 8, 706, 312, 10365, 323, 60391, 279, 3766, 330, 359, 42000, 5226, 3878, 304, 11761, 17517, 1, 14640, 28178, 279, 5891, 2328, 323, 60732, 374, 33740, 304, 3744, 220, 17, 315, 279, 94767, 902, 1097, 1438, 279, 1252, 42000, 19735, 20163, 3298, 220, 4468, 22, 323, 994, 13126, 4819, 304, 2626, 311, 11761, 510, 33, 7813, 60, 17517, 627, 791, 14640, 4726, 73138, 279, 1252, 42000, 20163, 304, 26262, 71659, 49357, 220, 2550, 24, 627, 4516, 11, 1148, 596, 9960, 5380, 31068, 71659, 320, 1962, 14740, 477, 72351, 2200, 2626, 311, 2626, 477, 810, -100 ]
Most great organisations had small beginnings and the Australian Caravan Club (ACC) is no exception. When Max Watkins and Grant Stable started chatting during a happy hour at the Golden Beach Caravan Park, Qld, they both recognised the need for a nation-wide body that could become the active voice of RVers and address various problems within the RV industry. After a couple more drinks – in true Aussie style – it was agreed to establish the Australian Caravan Club (ACC), which is now in its 10th year and boasts 4500 members around the country. The ACC plays a unique role in the world of RVing which is a rapidly growing industry. Many small caravan clubs, dotted all over the country, serve an important purpose but their size limits their influence on a national level. The ACC seeks change at a government level – and that's exactly what's needed. Working with national and regional bodies to improve the RV lifestyle. As the club enters its second decade, we look back at some of the key people behind this national organisation, recognising that each person's contribution is voluntary and no one receives any remuneration. Tom Smith was the ACC chairman at the time of writing, however, at the recent ACC National Muster in Shepparton, Tom announced his resignation from the chair. An ACC member since April 2007, Tom believes the organisation plays a pivotal role in the RV world. "There are many local caravan clubs which are great at organising social activities, but we needed a national organisation driven from the grassroots to represent the RV community," he said. The way the ACC has been set up is unique. "The board consists of six people with two people being re-elected every year. As each member has a vote, it means every person has access to the board. Accountability is paramount," he said. After being elected chairman in 2011, Tom started organising Chairman's Musters to give members the opportunity to give him feedback about any issue that affects the RV lifestyle. "Most people couldn't come to me so I decided to go to them so they could chat to me during a Happy Hour," he said. Members sign a Code of Conduct and display an ACCESS sticker on their caravan or camper trailer to indicate they are serious about doing the right thing by local councils and communities. Rob Tudor took up the position as the ACC's webmaster in 2006 and added the role of treasurer in 2008. With more than 30 years of IT experience, Rob has developed a comprehensive and dynamic website containing a wealth of information for its members and those interested in finding out more. The website is the place to go to for the latest RV news, calendar, tips and tools, a members' directory and a Members' Forum. When asked about the club's achievements, Rob doesn't hesitate. "The FarmStay Scheme was introduced, where members with properties allow other members to camp free of charge on their property for up to three days." The scheme has been very successful and new friendships have been forged as a result. "The steady growth of the club has resulted in 45 branches spread all over Australia and each of these typically hold four to eight musters per year. In addition, the ACC organises an annual National Muster which is attended by more than 400 members." For the first time in the ACC's history, the 2018 National Muster will be held in Western Australia, after an overwhelming response to a survey indicating that many members were willing to travel the distance to attend this social gathering. A man of hidden talents, Alan is a pilot and built his own aircraft. He also edits the ACC's quarterly magazine, 'The Nomad' . After 35 years in the telecommunications industry, Alan enjoys his role. "The preparation of each issue gives me the opportunity to keep my writing and IT skills sharp, whilst giving a great deal of personal satisfaction in being able to present to our members a professional look and feel to their magazine, which is now presented as both a hard copy or an electronic publication – depending on member preference," he said. During its 10-year existence, the ACC has grown into a national body with a voice that is heard throughout the RV industry. The club also boasts an extensive Members' Benefits Program with as many as 95 caravan parks offering discounts, not to mention the many other member benefits. The full feature appeared in Caravan World #558 December 2016. Subscribe today for the latest caravan reviews and news every month!
{ "redpajama_set_name": "RedPajamaC4" }
3,338
[ 128000, 13622, 2294, 29533, 1047, 2678, 67482, 323, 279, 13673, 3341, 32005, 10349, 320, 30542, 8, 374, 912, 4788, 13, 3277, 7639, 79388, 323, 24668, 84441, 3940, 52067, 2391, 264, 6380, 6596, 520, 279, 18288, 13011, 3341, 32005, 5657, 11, 1229, 509, 11, 814, 2225, 39764, 279, 1205, 369, 264, 7140, 25480, 2547, 430, 1436, 3719, 279, 4642, 7899, 315, 33570, 388, 323, 2686, 5370, 5435, 2949, 279, 33570, 5064, 13, 4740, 264, 5743, 810, 21662, 1389, 304, 837, 87563, 1742, 1389, 433, 574, 7378, 311, 5813, 279, 13673, 3341, 32005, 10349, 320, 30542, 705, 902, 374, 1457, 304, 1202, 220, 605, 339, 1060, 323, 38119, 220, 10617, 15, 3697, 2212, 279, 3224, 627, 791, 26925, 11335, 264, 5016, 3560, 304, 279, 1917, 315, 33570, 287, 902, 374 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 13622, 2294, 29533, 1047, 2678, 67482, 323, 279, 13673, 3341, 32005, 10349, 320, 30542, 8, 374, 912, 4788, 13, 3277, 7639, 79388, 323, 24668, 84441, 3940, 52067, 2391, 264, 6380, 6596, 520, 279, 18288, 13011, 3341, 32005, 5657, 11, 1229, 509, 11, 814, 2225, 39764, 279, 1205, 369, 264, 7140, 25480, 2547, 430, 1436, 3719, 279, 4642, 7899, 315, 33570, 388, 323, 2686, 5370, 5435, 2949, 279, 33570, 5064, 13, 4740, 264, 5743, 810, 21662, 1389, 304, 837, 87563, 1742, 1389, 433, 574, 7378, 311, 5813, 279, 13673, 3341, 32005, 10349, 320, 30542, 705, 902, 374, 1457, 304, 1202, 220, 605, 339, 1060, 323, 38119, 220, 10617, 15, 3697, 2212, 279, 3224, 627, 791, 26925, 11335, 264, 5016, 3560, 304, 279, 1917, 315, 33570, 287, 902, 374, -100 ]
« STILL LIFE | Nicolas Maloof – Kathleen Rugh – Naho Taruishi Anton Würth » Ruth Lingen Please inquire for pricing. Ruth Lingen (b. 1958, Minnesota) lives and works in New York City, where she has established a distinguished twenty-year career as a master printer and book artist. Lingen has collaborated with over 70 celebrated artists, including Jim Dine, Robert Creely, KiKi Smith, Chuck Close, Jim Dine, Leonardo Drew, Shepard Fairey, James Siena, and Robert Ryman. Lingen received a BFA from the University of South Dakota and earned an MFA in 1984 from the University of Madison, Wisconsin. In 1982, while studying with Walter Hamady and Joe Wilfer in Madison, WI , she established Pootë Press, publishing limited editions books with artists using both traditional and innovative letterpress, papermaking and bookbinding techniques. After moving to New York, she established Pace Paper in 2009, a Brooklyn studio of Pace Prints. Her work is in many public and private collections, including the Art Institute of Chicago, Metropolitan Museum of Art, The Getty, the Brooklyn Museum, and the Walker Museum, as well as in over twenty libraries. She currently publishes under the imprint of Picture Books.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,428
[ 128000, 24633, 93350, 61094, 765, 52836, 8560, 78, 1073, 1389, 65163, 432, 7595, 1389, 452, 29682, 24912, 84, 39476, 198, 17555, 263, 468, 5297, 339, 125341, 49, 952, 445, 29018, 198, 5618, 68270, 369, 21913, 627, 49, 952, 445, 29018, 320, 65, 13, 220, 6280, 23, 11, 19461, 8, 6439, 323, 4375, 304, 1561, 4356, 4409, 11, 1405, 1364, 706, 9749, 264, 39575, 17510, 4771, 7076, 439, 264, 7491, 23185, 323, 2363, 10255, 13, 445, 29018, 706, 78174, 449, 927, 220, 2031, 28284, 13820, 11, 2737, 11641, 423, 483, 11, 8563, 7948, 989, 11, 30558, 73672, 9259, 11, 34349, 13330, 11, 11641, 423, 483, 11, 66486, 41208, 11, 72919, 435, 12267, 88, 11, 7957, 328, 87751, 11, 323, 8563, 26775, 1543, 13, 445, 29018, 4036, 264, 426, 3711 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 24633, 93350, 61094, 765, 52836, 8560, 78, 1073, 1389, 65163, 432, 7595, 1389, 452, 29682, 24912, 84, 39476, 198, 17555, 263, 468, 5297, 339, 125341, 49, 952, 445, 29018, 198, 5618, 68270, 369, 21913, 627, 49, 952, 445, 29018, 320, 65, 13, 220, 6280, 23, 11, 19461, 8, 6439, 323, 4375, 304, 1561, 4356, 4409, 11, 1405, 1364, 706, 9749, 264, 39575, 17510, 4771, 7076, 439, 264, 7491, 23185, 323, 2363, 10255, 13, 445, 29018, 706, 78174, 449, 927, 220, 2031, 28284, 13820, 11, 2737, 11641, 423, 483, 11, 8563, 7948, 989, 11, 30558, 73672, 9259, 11, 34349, 13330, 11, 11641, 423, 483, 11, 66486, 41208, 11, 72919, 435, 12267, 88, 11, 7957, 328, 87751, 11, 323, 8563, 26775, 1543, 13, 445, 29018, 4036, 264, 426, 3711, -100 ]
This past June, the sailing community marked the passing of Ted Hood, a true innovator who played a central role in making the sport what it is today through his work in sailmaking and cruising hull and rig design. His Marblehead, Massachusetts, based company Hood Sailmakers, which he founded with his father, was a pioneer and long-time leader in the manufacture of Dacron sails, while his many designs strove to find the perfect balance between speed, comfort and safety afloat. Hood was also a true gentleman of the sport; a man of few words whose word was his bond, and the winning skipper of the 1974 America's Cup aboard Courageous. Few, however, knew Hood well, and even at the zenith of his career, he could be painfully quiet at times, something his colleagues and friends say was largely a protective measure. "He said very little but he reacted to things. His eyebrows were very expressive. He wasn't shy like Olin Stephens, but he didn't want to give anything away, because he knew so much," says yachting historian and author John Rousmaniere. Dev Barker, one of Hood's oldest friends who wrote extensively about Hood in the 1960s and 1970s as an editor for Yachting magazine, says Hood became much more relaxed in social settings as he got older, but that "for a long time it was very difficult for him." Barker adds that during his time as race committee chairman for the 1970 America's Cup, he shared a number of experiences with Hood that not only illustrated Hood's high regard for the sport, but his unique stature within it.
{ "redpajama_set_name": "RedPajamaC4" }
6,857
[ 128000, 2028, 3347, 5651, 11, 279, 51129, 4029, 13160, 279, 12579, 315, 23989, 36443, 11, 264, 837, 9721, 859, 889, 6476, 264, 8792, 3560, 304, 3339, 279, 10775, 1148, 433, 374, 3432, 1555, 813, 990, 304, 30503, 28936, 323, 73327, 41298, 323, 13552, 2955, 627, 16366, 73621, 2025, 11, 22108, 11, 3196, 2883, 36443, 58095, 20481, 11, 902, 568, 18538, 449, 813, 7126, 11, 574, 264, 54047, 323, 1317, 7394, 7808, 304, 279, 30847, 315, 423, 582, 2298, 86105, 11, 1418, 813, 1690, 14769, 31511, 588, 311, 1505, 279, 4832, 8335, 1990, 4732, 11, 6981, 323, 7296, 264, 3733, 627, 39, 1411, 574, 1101, 264, 837, 46229, 315, 279, 10775, 26, 264, 893, 315, 2478, 4339, 6832, 3492, 574, 813, 11049, 11, 323, 279, 11230, 10936, 716, 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 ]
[ 2028, 3347, 5651, 11, 279, 51129, 4029, 13160, 279, 12579, 315, 23989, 36443, 11, 264, 837, 9721, 859, 889, 6476, 264, 8792, 3560, 304, 3339, 279, 10775, 1148, 433, 374, 3432, 1555, 813, 990, 304, 30503, 28936, 323, 73327, 41298, 323, 13552, 2955, 627, 16366, 73621, 2025, 11, 22108, 11, 3196, 2883, 36443, 58095, 20481, 11, 902, 568, 18538, 449, 813, 7126, 11, 574, 264, 54047, 323, 1317, 7394, 7808, 304, 279, 30847, 315, 423, 582, 2298, 86105, 11, 1418, 813, 1690, 14769, 31511, 588, 311, 1505, 279, 4832, 8335, 1990, 4732, 11, 6981, 323, 7296, 264, 3733, 627, 39, 1411, 574, 1101, 264, 837, 46229, 315, 279, 10775, 26, 264, 893, 315, 2478, 4339, 6832, 3492, 574, 813, 11049, 11, 323, 279, 11230, 10936, 716, 315, -100 ]
On the possibility of human extinction July 23, 2016 benfell I've been contemplating the question of how I might present a brief introduction on what, as a critique on our system of social organization, is really a rather large topic: vegetarian ecofeminism. I'm due to present this at a scholarly conference in September, so it's not too early to begin thinking about it. In the abstract, among other things, I say "that our relations of domination among humans are inseparable from our domination of the environment and of non-human animals." And, as written, I think the abstract illustrates that there are a lot of handles on this topic.[1] So the obvious question is, which one shall I use? Or maybe, I could just begin with the question of human extinction. This has been making its way into mainstream media recently and there's been some scholarly work done on it but when I first heard about it, I was a Ph.D. student at California Institute of Integral Studies. I asked one of my professors in private about the possibility that humans could go extinct, she nodded, said yes, and the expression on her face made it very clear to me she wasn't joking. At the time, finding something in print on the matter was rather more difficult. The first I saw stemmed from a notorious interview that an Australian microbiologist, Frank Fenner, gave to the Australian newspaper,[2] and got picked up by a physics web site[3] and by the Daily Mail.[4] As sources go, this isn't terribly promising stuff. Even the original article noted that Fenner's colleagues were rather less pessimistic. And that, of course, is a part of the problem: As Clint Eastwood might put it, do you feel lucky? We'll get back to this question of luck and I promise that, even with a .44 Magnum pointed at his head, the "punk" that Eastwood's character, "Dirty" Harry Callahan, was addressing[5] faced better odds than we do. Since that Frank Fenner interview, given in 2010,[6] I've started to find a bit more.[7] I'm still not seeing precise scenarios but one piece of the argument for human extinction simply boils down to sustainability. Things can't continue as they are, so something has to change. Which leads to the other piece of the argument. We see no sign that humans are responding to the need for that change anywhere near adequately. To put that another way, we are failing to adapt to a changing environment. Which is a pretty classic way of saying we're going extinct. But then there are all those Mad Max movies I never watched with post-apocalyptic scenarios in which a fraction of the human race survives in something even more of a dog-eat-dog social scenario than we already have. This is scary stuff. More seriously, then-defense secretary Chuck Hagel wrote in a 2014 report documenting Pentagon preparations that climate change "will intensify the challenges of global instability, hunger, poverty, and conflict. They will likely lead to food and water shortages, pandemic disease, disputes over refugees and resources, and destruction by natural disasters in regions across the globe."[8] Maybe all that happens before we get to the Mad Max scenario. But even all this assumes that the earth or even a tiny fraction of the earth's surface remains habitable. Here's the problem: We don't know that that will be the case. From a systems perspective, climate change means that the stabilizing feedbacks in the present ecosystem are overwhelmed by self-reinforcing feedbacks as we reach a "tipping point." As we pass that "tipping point," the old system is replaced with something different as those self-reinforcing feedbacks may now become stabilizing feedbacks in the new system. And we don't know what that something new and different will be. Which is where that Dirty Harry question comes in. Are you feeling lucky? There are a lot more potential systems that won't support human life than potential systems that will. Which is why we might not survive at all. Not any of us, not anywhere on earth. Now all of this is a bit oversimplistic. We don't know, really, how far we have to go before we hit that tipping point. We don't know even that there's only one tipping point or, if there are indeed several tipping points, that it's valid to treat several tipping points as a single one. But it's fairly safe to say that we as a species should be thinking about how we reached this dilemma and what we're going to do about it. A large part of the answer to this lies in how our attitude toward our environment changed. We've become a lot more comfortable than we used to be. As technology has developed, we've come to dominate (temporarily) an ecosystem that once upon a time, we had no choice but to adapt to and thus live in harmony with.[9] As we got to be more comfortable—the Paleolithic was pretty brutal—our population began to grow, we claimed territory for settled agriculture, and we developed an authoritarian hierarchical system of social organization.[10] And we got into a cycle where we needed ever more land and resources to support an ever-growing population, which is to say that human society became exploitative and unsustainable not only of natural resources but of human beings.[11] Perhaps most destructively of all, our livestock practices not only exploit animals who suffer greatly, but contribute substantially to climate change and water pollution[12] and consume vast quantities of energy, land, and feed to produce, in terms of a ratio of inputs to outputs, minuscule amounts of food when compared with the same ratio for plant-based foods.[13] And we do this even as people go hungry not only in the developing world,[14] but even in the allegedly richest country in the world.[15] That technology, however, while perhaps making some individual activities more efficient or more powerful has never reduced our species' overall ecological footprint. Some even think that technology solves individual problems by creating more dangerous ones down the road.[16] At the very least, history shows that technological progress has always contributed to the scope and intensity of human impact on the environment. Besides that, the rebound effect or the Jevons Paradox is often likely to cancel positive effects of technical progress — from the steam engine and coal in 19th century England, to the automotive and information technology sectors in more recent times (Luzzati and Franco 2005).[17] Meanwhile, in the social sphere, in which I include the political and economic spheres, we continue to be bedeviled by all manner of bigotry, bias, and discrimination which function to 1) divide the colonized non-elite against each other, 2) divert attention from the elite and their oppression of the colonized non-elite, 3) undermine a unified challenge to the elite,[18] 4) further impoverish the poor and deny them any significant opportunity for social mobility,[19] and 5) damage not only incarcerated individuals but their families and communities,[20] with 6) a criminal injustice system that is especially unjust toward the poor.[21] Claims of progress on race must be tempered when we confront the criminal injustice system and police shootings, both of which disproportionately affect Black men.[22] Angela Davis links slavery and lynchings to the death penalty.[23] Claims of progress on gender must be tempered when we confront pay discrepancies, rape culture, and a persistent effort to deprive women of access to abortion, which is to say that in our society we continue to seek control of women's bodies and specifically their reproductive capacities. Which resembles how we treat animals: Cows are forcibly and repeatedly impregnated so that their bodies will produce the milk intended to sustain their calves. People then steal both the milk and the calves. . . . Rape puts into action the idea that women and children are objects that can be used for pleasure without regard for their own wishes or subjective experiences."[24] So we're dominating each other horribly, we're dominating animals horribly, and we're dominating the environment horribly, and the recognition of a relationship between these aspects of domination forms the core of vegetarian ecofeminism. How's that working out? It looks like with a strong possibility of our own extinction. If we have any sense, we might want to make a change in that. [1]David Benfell, "I will be presenting on vegetarian ecofeminism at the Human Science Institute conference this September," I Am My Cat's Human, July 6, 2016, https://vegan.parts-unknown.org/?p=326↩ [2]Cheryl Jones, "Frank Fenner sees no hope for humans," Australian, June 16, 2010, http://www.theaustralian.com.au/higher-education/frank-fenner-sees-no-hope-for-humans/story-e6frgcjx-1225880091722↩ [3]Lin Edwards, "Humans will be extinct in 100 years says eminent scientist," Phys.org, June 23, 2010, http://phys.org/news196489543.html↩ [4]Niall Firth, "Human race 'will be extinct within 100 years', claims leading scientist," Daily Mail, June 18, 2010, http://www.dailymail.co.uk/sciencetech/article-1287643/Human-race-extinct-100-years-population-explosion.html↩ [5]The full quotation is from the movie Dirty Harry (1971) and is uttered by the character, Harry Callahan: Uh uh. I know what you're thinking. "Did he fire six shots or only five?" Well to tell you the truth in all this excitement I kinda lost track myself. But being this is a .44 Magnum, the most powerful handgun in the world and would blow your head clean off, you've gotta ask yourself one question: "Do I feel lucky?" Well, do ya, punk? Internet Movie Database, "Dirty Harry (1971) quotes," n.d. http://www.imdb.com/title/tt0066999/quotes↩ [7]Joel Achenbach, "Scientists: Human activity has pushed Earth beyond 4 of 9 'planetary boundaries'," Chicago Tribune, January 15, 2015, http://www.chicagotribune.com/news/nationworld/chi-climate-change-science-planetary-boundaries-20150115-story.html; Nathan Curry, "Humanity Is Getting Verrrrrrry Close to Extinction," Vice, August 21, 2015, http://www.vice.com/read/near-term-extinctionists-believe-the-world-is-going-to-end-very-soon; Deutschewelle, "Mankind must change ways to survive, report says," May 8, 2012, http://www.dw.de/dw/article/0,,15935446,00.html; John Feffer, "Earth: Game Over?" Truthout, April 27, 2014, http://truth-out.org/opinion/item/23335-earth-game-over; Dahr Jamail, "Are We Falling Off the Climate Precipice? Scientists Consider Extinction," TomDispatch, December 17, 2013, http://www.tomdispatch.com/blog/175785/tomgram%3A_dahr_jamail%2C_the_climate_change_scorecard/; Rob Jordan and Amy Goldberg, "Populations of early human settlers grew like an 'invasive species,' Stanford researchers find," Stanford University, April 5, 2016, http://news.stanford.edu/news/2016/april/south-america-earlyhumans-040516.html; Nika Knight, "Humans an Invasive Species Heading for a 'Crash,' Study Says," Common Dreams, April 8, 2016, http://www.commondreams.org/news/2016/04/08/humans-invasive-species-heading-crash-study-says; Oliver Milman, "Rate of environmental degradation puts life on Earth at risk, say scientists," Guardian, January 15, 2015, http://www.theguardian.com/environment/2015/jan/15/rate-of-environmental-degradation-puts-life-on-earth-at-risk-say-scientists↩ [8]Chuck Hagel, quoted in Laura Barron-Lopez, "Pentagon: Climate change a national security threat," Hill, October 13, 2014, http://thehill.com/policy/energy-environment/220575-pentagon-unveils-plan-to-fight-climate-change↩ [9]Max Oelschlaeger, The Idea of Wilderness (New Haven, CT: Yale University, 1991).↩ [10]William J. Burroughs, Climate Change in Prehistory: The End of the Reign of Chaos (Cambridge, UK: Cambridge University, 2008).↩ [11]John H. Bodley, Victims of Progress, 5th ed. (Lanham, MD: AltaMira, 2008).↩ [12]Livestock Environment and Development Initiative, Livestock's Long Shadow: Environmental Issues and Options (Rome: Food and Agriculture Organization, 2006).↩ [13]David Pimentel and Marcia Pimentel, "Sustainability of meat-based and Plant-Based Diets and the Environment," American Journal of Clinical Nutrition 78, no. 3 (2003), http://ajcn.nutrition.org/content/78/3/660S.full↩ [14]George Kent, Ending Hunger Worldwide (Boulder, CO: Paradigm, 2011).↩ [15]Democracy Now!, "As Lawmakers Target Food Stamp Funding, New Report Finds 1 in 6 in U.S. Are Going Hungry," May 30, 2013, http://www.democracynow.org/2013/5/30/as_lawmakers_target_food_stamp_funding; Amy Goldstein, "Hunger a growing problem in America, USDA reports," Washington Post, November 17, 2009, http://www.washingtonpost.com/wp-dyn/content/article/2009/11/16/AR2009111601598.html↩ [16]Jacques Ellul, The Technological Society, John Wilkinson, trans. (New York: Vintage, 1964).↩ [17]Igor Matutinovié, "An Institutional Approach to Sustainability: Historical Interplay of Worldviews, Institutions and Technology," Journal of Economic Issues 41, no. 4 (December 2007): 1110.↩ [18]David Benfell, "We 'need to know how it works,'" March 15, 2012, https://parts-unknown.org/drupal7/journal/2012/03/15/we-need-know-how-it-works; Herbert J. Gans, The War Against The Poor: The Underclass And Antipoverty Policy (New York: Basic, 1995).↩ [19]Barbara Ehrenreich, Nickel and Dimed: On (Not) Getting By in America (New York: Owl, 2001); Scott Sernau, Worlds Apart: Social Inequalities in a Global Economy, 2nd ed. (Thousand Oaks, CA: Pine Forge, 2006); Thomas Shapiro, ed., Great Divides: Readings in Social Inequality in the United States, 3rd ed. (Boston: McGraw-Hill, 2005).↩ [20]Ernest Drucker, A Plague of Prisons: The Epidemiology of Mass Incarceration in America (New York: New, 2011).↩ [21]Jeffrey Reiman, The Rich Get Richer and the Poor Get Prison, 7th ed. (Boston: Allyn and Bacon, 2004); Dan Simon, In Doubt: The Psychology of the Criminal Justice Process (Cambridge, MA: Harvard, 2012).↩ [22]Daniel Denvir, "Criminalizing the hustle: Policing poor people's survival strategies from Eric Garner to Alton Sterling," Salon, July 8, 2016, http://www.salon.com/2016/07/08/criminalizing_the_hustle_policing_poor_peoples_survival_strategies_from_erin_garner_to_alton_sterling/; Jack Hitt, "Police Shootings Won't Stop Unless We Also Stop Shaking Down Black People," Mother Jones, September/October, 2015, http://www.motherjones.com/politics/2015/07/police-shootings-traffic-stops-excessive-fines; Emma Pettit, "'One Trigger Finger for Whites and Another for Blacks': What the Research Says," Chronicle of Higher Education, July 8, 2016, http://chronicle.com/article/One-Trigger-Finger-for-Whites/237057↩ [23]Angela Y. Davis, Abolition Democracy: Beyond Empire, Prisons, and Torture (New York: Seven Stories, 2005).↩ [24]pattrice jones, "Mothers with Monkeywrenches: Feminist Imperatives and the ALF," in Terrorists or Freedom Fighters? Reflections on the Liberation of Animals, Steven Best and Anthony J. Nocella II, eds. (New York: Lantern, 2004), 140.↩ ← I will be presenting on vegetarian ecofeminism at the Human Science Institute conference this September Education for robots → One thought on "On the possibility of human extinction" Pingback: Still evading the issues: Daily Bullshit, March 8-14, 2017 – The Irregular Bullshit
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
1,864
[ 128000, 1966, 279, 13336, 315, 3823, 52609, 198, 29527, 220, 1419, 11, 220, 679, 21, 3399, 67643, 198, 40, 3077, 1027, 79342, 279, 3488, 315, 1268, 358, 2643, 3118, 264, 10015, 17219, 389, 1148, 11, 439, 264, 43665, 389, 1057, 1887, 315, 3674, 7471, 11, 374, 2216, 264, 4856, 3544, 8712, 25, 46482, 42688, 69, 26768, 2191, 13, 358, 2846, 4245, 311, 3118, 420, 520, 264, 63681, 10017, 304, 6250, 11, 779, 433, 596, 539, 2288, 4216, 311, 3240, 7422, 922, 433, 627, 644, 279, 8278, 11, 4315, 1023, 2574, 11, 358, 2019, 330, 9210, 1057, 4398, 315, 55949, 4315, 12966, 527, 54682, 50256, 505, 1057, 55949, 315, 279, 4676, 323, 315, 2536, 70095, 10099, 1210, 1628, 11, 439, 5439, 11, 358, 1781, 279, 8278, 46480, 430, 1070 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1966, 279, 13336, 315, 3823, 52609, 198, 29527, 220, 1419, 11, 220, 679, 21, 3399, 67643, 198, 40, 3077, 1027, 79342, 279, 3488, 315, 1268, 358, 2643, 3118, 264, 10015, 17219, 389, 1148, 11, 439, 264, 43665, 389, 1057, 1887, 315, 3674, 7471, 11, 374, 2216, 264, 4856, 3544, 8712, 25, 46482, 42688, 69, 26768, 2191, 13, 358, 2846, 4245, 311, 3118, 420, 520, 264, 63681, 10017, 304, 6250, 11, 779, 433, 596, 539, 2288, 4216, 311, 3240, 7422, 922, 433, 627, 644, 279, 8278, 11, 4315, 1023, 2574, 11, 358, 2019, 330, 9210, 1057, 4398, 315, 55949, 4315, 12966, 527, 54682, 50256, 505, 1057, 55949, 315, 279, 4676, 323, 315, 2536, 70095, 10099, 1210, 1628, 11, 439, 5439, 11, 358, 1781, 279, 8278, 46480, 430, 1070, -100 ]
The Army Painter is updating their popular range of Battlefields XP Tufts. Army Painter tufts look like the real thing; they have dedicated a lot of time and effort to ensure that the consumer can create stunning bases in no time. The new packaging format better shows the new higher quality tufts, making them easier to sell by showing off their varied sizes and realistic colors. The new format is also much more user friendly, with individual tufts adhered to a piece of paper - making it easy for the user to choose and glue them to the base of their miniatures. Not only has the quality of the packaging been improved, the quantity as increased as well so that each blister pack contains 77 tufts - but the price remains the same!
{ "redpajama_set_name": "RedPajamaC4" }
5,137
[ 128000, 791, 13309, 97864, 374, 21686, 872, 5526, 2134, 315, 16506, 9184, 25836, 29749, 45544, 13, 13309, 97864, 9964, 45544, 1427, 1093, 279, 1972, 3245, 26, 814, 617, 12514, 264, 2763, 315, 892, 323, 5149, 311, 6106, 430, 279, 11761, 649, 1893, 20441, 23963, 304, 912, 892, 627, 791, 502, 24066, 3645, 2731, 5039, 279, 502, 5190, 4367, 9964, 45544, 11, 3339, 1124, 8831, 311, 4662, 555, 9204, 1022, 872, 28830, 12562, 323, 26569, 8146, 13, 578, 502, 3645, 374, 1101, 1790, 810, 1217, 11919, 11, 449, 3927, 9964, 45544, 36051, 291, 311, 264, 6710, 315, 5684, 482, 3339, 433, 4228, 369, 279, 1217, 311, 5268, 323, 38561, 1124, 311, 279, 2385, 315, 872, 13726, 2859, 627, 2688, 1193, 706, 279, 4367, 315, 279, 24066, 1027, 13241, 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 ]
[ 791, 13309, 97864, 374, 21686, 872, 5526, 2134, 315, 16506, 9184, 25836, 29749, 45544, 13, 13309, 97864, 9964, 45544, 1427, 1093, 279, 1972, 3245, 26, 814, 617, 12514, 264, 2763, 315, 892, 323, 5149, 311, 6106, 430, 279, 11761, 649, 1893, 20441, 23963, 304, 912, 892, 627, 791, 502, 24066, 3645, 2731, 5039, 279, 502, 5190, 4367, 9964, 45544, 11, 3339, 1124, 8831, 311, 4662, 555, 9204, 1022, 872, 28830, 12562, 323, 26569, 8146, 13, 578, 502, 3645, 374, 1101, 1790, 810, 1217, 11919, 11, 449, 3927, 9964, 45544, 36051, 291, 311, 264, 6710, 315, 5684, 482, 3339, 433, 4228, 369, 279, 1217, 311, 5268, 323, 38561, 1124, 311, 279, 2385, 315, 872, 13726, 2859, 627, 2688, 1193, 706, 279, 4367, 315, 279, 24066, 1027, 13241, 11, -100 ]
class Redcarpet::Render::GitlabHTML < Redcarpet::Render::HTML attr_reader :template alias_method :h, :template def initialize(template, options = {}) @template = template @project = @template.instance_variable_get("@project") super options end def block_code(code, language) options = { options: {encoding: 'utf-8'} } options.merge!(lexer: language.downcase) if Pygments::Lexer.find(language) # New lines are placed to fix an rendering issue # with code wrapped inside <h1> tag for next case: # # # Title kinda h1 # # ruby code here # <<-HTML <div class="#{h.user_color_scheme_class}">#{Pygments.highlight(code, options)}</div> HTML end def postprocess(full_document) h.gfm(full_document) end end
{ "redpajama_set_name": "RedPajamaGithub" }
103
[ 128000, 1058, 3816, 7063, 7005, 487, 6893, 487, 47662, 14717, 5959, 366, 3816, 7063, 7005, 487, 6893, 487, 5959, 271, 220, 6510, 23106, 551, 4308, 198, 220, 15904, 9209, 551, 71, 11, 551, 4308, 271, 220, 711, 9656, 31063, 11, 2671, 284, 36348, 262, 571, 4308, 284, 3896, 198, 262, 571, 5094, 284, 571, 4308, 13366, 14977, 3138, 10889, 5094, 1158, 262, 2307, 2671, 198, 220, 842, 271, 220, 711, 2565, 4229, 16221, 11, 4221, 340, 262, 2671, 284, 314, 2671, 25, 314, 17600, 25, 364, 4867, 12, 23, 8439, 457, 262, 2671, 26052, 10509, 39915, 25, 4221, 74878, 8, 422, 5468, 27231, 487, 93947, 2725, 61840, 696, 262, 674, 1561, 5238, 527, 9277, 311, 5155, 459, 21568, 4360, 198, 262, 674, 449, 2082, 20037, 4871, 366, 71 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1058, 3816, 7063, 7005, 487, 6893, 487, 47662, 14717, 5959, 366, 3816, 7063, 7005, 487, 6893, 487, 5959, 271, 220, 6510, 23106, 551, 4308, 198, 220, 15904, 9209, 551, 71, 11, 551, 4308, 271, 220, 711, 9656, 31063, 11, 2671, 284, 36348, 262, 571, 4308, 284, 3896, 198, 262, 571, 5094, 284, 571, 4308, 13366, 14977, 3138, 10889, 5094, 1158, 262, 2307, 2671, 198, 220, 842, 271, 220, 711, 2565, 4229, 16221, 11, 4221, 340, 262, 2671, 284, 314, 2671, 25, 314, 17600, 25, 364, 4867, 12, 23, 8439, 457, 262, 2671, 26052, 10509, 39915, 25, 4221, 74878, 8, 422, 5468, 27231, 487, 93947, 2725, 61840, 696, 262, 674, 1561, 5238, 527, 9277, 311, 5155, 459, 21568, 4360, 198, 262, 674, 449, 2082, 20037, 4871, 366, 71, -100 ]
Realtors need to add scalable marketing activities to their current activities. And the best scalable activity available today is Facebook Ads. Facebook Ads help scale your time and money. Facebook Ads allows you to scale your budget and your agents time in the lead generation process. No other platform allows agents to generate the quantity of leads at such a low cost in such a short timeframe. If you want to find out how Facebook Ads can help you generate more sales in your real estate agency, then book in a Strategy Call with me today.
{ "redpajama_set_name": "RedPajamaC4" }
9,259
[ 128000, 697, 3223, 1105, 1205, 311, 923, 69311, 8661, 7640, 311, 872, 1510, 7640, 13, 1628, 279, 1888, 69311, 5820, 2561, 3432, 374, 5690, 43283, 13, 5690, 43283, 1520, 5569, 701, 892, 323, 3300, 627, 21124, 43283, 6276, 499, 311, 5569, 701, 8199, 323, 701, 13307, 892, 304, 279, 3063, 9659, 1920, 13, 2360, 1023, 5452, 6276, 13307, 311, 7068, 279, 12472, 315, 11767, 520, 1778, 264, 3428, 2853, 304, 1778, 264, 2875, 71053, 627, 2746, 499, 1390, 311, 1505, 704, 1268, 5690, 43283, 649, 1520, 499, 7068, 810, 6763, 304, 701, 1972, 12675, 9266, 11, 1243, 2363, 304, 264, 28845, 7290, 449, 757, 3432, 13, 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, 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 ]
[ 697, 3223, 1105, 1205, 311, 923, 69311, 8661, 7640, 311, 872, 1510, 7640, 13, 1628, 279, 1888, 69311, 5820, 2561, 3432, 374, 5690, 43283, 13, 5690, 43283, 1520, 5569, 701, 892, 323, 3300, 627, 21124, 43283, 6276, 499, 311, 5569, 701, 8199, 323, 701, 13307, 892, 304, 279, 3063, 9659, 1920, 13, 2360, 1023, 5452, 6276, 13307, 311, 7068, 279, 12472, 315, 11767, 520, 1778, 264, 3428, 2853, 304, 1778, 264, 2875, 71053, 627, 2746, 499, 1390, 311, 1505, 704, 1268, 5690, 43283, 649, 1520, 499, 7068, 810, 6763, 304, 701, 1972, 12675, 9266, 11, 1243, 2363, 304, 264, 28845, 7290, 449, 757, 3432, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
A passionate holiday romance leads to an obsessive relationship when an Australian photojournalist wakes one morning in a Berlin apartment and is unable to leave. Genre : Drama, Horror, Mystery, Thriller Actors : Christoph Franken, Elmira Bahrami, Emma Bading, Lucie Aron, Malin Steffen, Matthias Habich, Max Riemelt, Morgane Ferru, Nassim Avat, Teresa Palmer, Thuso Lekwape Director : Cate Shortland, Katharina Keil Country : Australia Keywords: A Síndrome de Berlin Berlin Syndrom Berlinski sindrom Берлинский синдром Berlin Sendromu As they celebrate their high school graduation, four friends are involved in a hit-and-run accident when their car hits and apparently kills a pedestrian on an isolated roadway. They dispose of the body and vow to keep the incident a secret, a year later somebody starts sending them letters bearing the warning "I Know What You Did Last Summer." Amityville II: The Possession The Lutz family have managed to flee their home with their lives intact, but before them, another family lived in this house and were caught up in the original evil who weren't so lucky… Country: Italy, Mexico, United States of America, USA Harlem Nights "Sugar" Ray is the owner of an illegal casino, who contend with the pressures of vicious gangster and corrupt policemen who want to see him go out of business. In the world of organized crime and police corruption in the 1920s, any dastardly trick is fair! When record store owner Rob Gordon gets dumped by his girlfriend, Laura, because he hasn't changed since they met, he revisits his top five breakups of all time in an attempt to figure out what went wrong. As Rob seeks out his former lovers to find out why they left, he keeps up his efforts to win Laura back. Country: UK, United Kingdom, United States of America, USA Genre: Comedy, Drama, Music, Romance Amar, Akbar and Anthony are close friends living in Kochi. They enjoy a carefree life. Their perceptions and beliefs get shattered with an unexpected event and the resulting story forms the plot of the movie. A special-ops team is dispatched to fight supernatural being that have taken over a European city. Day of the Dead is a horror film which is nominally a quasi-remake of George A. Romero's classic zombie film of the same name, which was the third in Romero's Dead series. The film is directed by Steve Miner (who also directed Friday the 13th Part 2 & 3 and Halloween H20: 20 Years Later) and written by Jeffrey Reddick. A Girl Like Grace Raised by a single mother, a bullied 17 year-old girl seeks guidance from her best friend and the girl's older sister. The Haunting Dr. David Marrow invites Nell Vance, and Theo and Luke Sanderson to the eerie and isolated Hill House to be subjects for a sleep disorder study. The unfortunate guests discover that Marrow is far more interested in the sinister mansion itself – and they soon see the true nature of its horror. Genre: Fantasy, Horror, Mystery, Thriller Jessica Barrett, wife and mother of two young children, begins to show signs of demonic possession while pregnant with her third child. As she seeks help from her husband and doctor, a mysterious man approaches her and seems to have some answers. Mini's First Time Desperate to be free from her drunken, unloving mother Diane, the beautiful, scheming young Mini seduces her stepfather Martin and soon convinces him to join her in a sadistic scheme to have Diane declared insane. But their conspiracy soon escalates to murder and when John Garson, a young detective starts investigating, Martin and Mini begin to turn on each other. Deep in the Pennsylvania hills, a cemetery for those who died during exorcism remains a dark secret for the church. In 1671, hundreds of men, women, and children suffered in bloody, torturous rituals at the hands of priests unable to contain the evil of the possessed. Were these possessions real, or is the story a hoax to cover up the sins of the deranged priests thirsty for human blood? Bill and his team of cynical paranormal investigators plan to find out the truth. Armed with the church's historical record, they set out into the wilderness to uncover this series of forgotten atrocities. Alternately gut-punching hilarious and brutally violent, The Cemetery takes the best elements of the old-school slasher film and pushes them to the edge.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,213
[ 128000, 32, 25429, 13560, 30363, 11767, 311, 459, 84132, 5133, 994, 459, 13673, 6685, 43618, 380, 62667, 832, 6693, 304, 264, 20437, 13455, 323, 374, 12153, 311, 5387, 627, 38625, 551, 47569, 11, 52812, 11, 49105, 11, 30665, 15610, 198, 2471, 1105, 551, 95693, 91815, 11, 65329, 9008, 32429, 2453, 72, 11, 36035, 426, 2277, 11, 14103, 648, 1676, 263, 11, 8560, 258, 3441, 26734, 11, 90587, 29976, 718, 11, 7639, 432, 27960, 3903, 11, 79160, 2194, 29042, 84, 11, 73002, 318, 7671, 266, 11, 64540, 42216, 11, 14636, 78, 445, 1247, 86, 2070, 198, 38294, 551, 356, 349, 10928, 1974, 11, 33995, 277, 2259, 6706, 321, 198, 16813, 551, 8494, 198, 44942, 25, 362, 328, 2483, 303, 6786, 409, 20437, 20437, 42319, 442, 9084, 75, 53977, 12868 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 25429, 13560, 30363, 11767, 311, 459, 84132, 5133, 994, 459, 13673, 6685, 43618, 380, 62667, 832, 6693, 304, 264, 20437, 13455, 323, 374, 12153, 311, 5387, 627, 38625, 551, 47569, 11, 52812, 11, 49105, 11, 30665, 15610, 198, 2471, 1105, 551, 95693, 91815, 11, 65329, 9008, 32429, 2453, 72, 11, 36035, 426, 2277, 11, 14103, 648, 1676, 263, 11, 8560, 258, 3441, 26734, 11, 90587, 29976, 718, 11, 7639, 432, 27960, 3903, 11, 79160, 2194, 29042, 84, 11, 73002, 318, 7671, 266, 11, 64540, 42216, 11, 14636, 78, 445, 1247, 86, 2070, 198, 38294, 551, 356, 349, 10928, 1974, 11, 33995, 277, 2259, 6706, 321, 198, 16813, 551, 8494, 198, 44942, 25, 362, 328, 2483, 303, 6786, 409, 20437, 20437, 42319, 442, 9084, 75, 53977, 12868, -100 ]
Greetings fellow traveler! In this article we discuss how to set up your Mobius as your Playback Engine within Pro Tools. Before we proceed, please make sure that you have already installed Pro Tools and all relevant drivers. First, launch your "Audio Midi Setup" utility and enable "Pro Tools Aggregate I/O" as your Sound Output device. Then, check the "Use" box corresponding to your "Audeze Mobius 3D 8Ch" device. If your Mobius is connected over BT, it will be listed as "Audeze Mobius 3D BT 2;" if your Mobius is connected over Aux, then you will need to select "Built-in Output." Once you have enabled Mobius, please disable all other devices within the "Pro Tools Aggregate I/O" device. NOTE: Your Mobius will be identified as two separate devices, one for input and one for output. Please make sure that you select the output device, not the input device, when performing this step. When connected over USB, the output device will have the number 8 listed in the "Out" column. When connected over BT or Aux, the output device will have the number 2 listed in the "Out" column. NOTE: If you get an error message reading "Could not complete your request because Pro Tools could not set sample rate to specified value," please temporarily change your "Playback Engine" to "Built-in Output," then relaunch your project. Once the project has loaded, you may set your "Playback Engine" back to "Pro Tools Aggregate I/O" and allow the project to restart.
{ "redpajama_set_name": "RedPajamaC4" }
1,631
[ 128000, 92886, 12637, 63865, 0, 763, 420, 4652, 584, 4358, 1268, 311, 743, 709, 701, 36006, 9334, 439, 701, 96401, 8364, 2949, 1322, 14173, 13, 13538, 584, 10570, 11, 4587, 1304, 2771, 430, 499, 617, 2736, 10487, 1322, 14173, 323, 682, 9959, 12050, 627, 5451, 11, 7195, 701, 330, 15097, 84176, 19139, 1, 15919, 323, 7431, 330, 1360, 14173, 58022, 358, 17991, 1, 439, 701, 14936, 9442, 3756, 627, 12487, 11, 1817, 279, 330, 10464, 1, 3830, 12435, 311, 701, 330, 32, 799, 3059, 36006, 9334, 220, 18, 35, 220, 23, 1163, 1, 3756, 13, 1442, 701, 36006, 9334, 374, 8599, 927, 21795, 11, 433, 690, 387, 10212, 439, 330, 32, 799, 3059, 36006, 9334, 220, 18, 35, 21795, 220, 17, 11131, 422, 701, 36006, 9334, 374, 8599 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 92886, 12637, 63865, 0, 763, 420, 4652, 584, 4358, 1268, 311, 743, 709, 701, 36006, 9334, 439, 701, 96401, 8364, 2949, 1322, 14173, 13, 13538, 584, 10570, 11, 4587, 1304, 2771, 430, 499, 617, 2736, 10487, 1322, 14173, 323, 682, 9959, 12050, 627, 5451, 11, 7195, 701, 330, 15097, 84176, 19139, 1, 15919, 323, 7431, 330, 1360, 14173, 58022, 358, 17991, 1, 439, 701, 14936, 9442, 3756, 627, 12487, 11, 1817, 279, 330, 10464, 1, 3830, 12435, 311, 701, 330, 32, 799, 3059, 36006, 9334, 220, 18, 35, 220, 23, 1163, 1, 3756, 13, 1442, 701, 36006, 9334, 374, 8599, 927, 21795, 11, 433, 690, 387, 10212, 439, 330, 32, 799, 3059, 36006, 9334, 220, 18, 35, 21795, 220, 17, 11131, 422, 701, 36006, 9334, 374, 8599, -100 ]
YOU ARE HERE: Business Partners International / Entrepreneurs Growth Centre / Success stories / Born teacher finds her roots the entrepreneurial way Born teacher finds her roots the entrepreneurial way Judy Janse van Rensburg comes from a distinguished family of teachers who can trace their lineage several generations back to the time of governesses, but she herself only lasted six months in her first teaching job. "It was the system that got to me," says the Kempton Park based entrepreneur who has recently taken over an innovative franchise aimed at teaching children arithmetic and analytical thinking through the use of a Chinese abacus. Her complaints about the traditional school system are typical of true entrepreneurs who find themselves trapped in a job. She simply could not stand the staid old ways of thinking and doing that she knew can and should be done better. Judy, a B Com graduate, left schooling and went to work for a few private companies before she decided to dedicate a few years at home raising her children. It was here that her entrepreneurial nature started emerging that would eventually take her back to her roots and her first love, teaching. In between child care and housekeeping, she was constantly busy with crafts and cooking for home-industry shops. Things got serious when she started selling a range of aloe-based skin-care products. Soon she became the area node in the company's network-marketing system and at one stage was turning over R1million a month – all from home. The experience taught her a lot about marketing and selling. When the company decided to change the commission structure, however, she found it no longer worth while, and decided to try her hand at teaching again. This time, she joined a primary school as a maths teacher. Again, she found the system very wasteful and frustrating, but the experience gave her an important basis upon which to build her next business. Responding to a newspaper advertisement, she made contact with a little-known franchise called UCMAS, and was intrigued. The method, Chinese in origin, uses a simple abacus to teach arithmetic and analytical thinking to children between 4 and 13. By learning how to visualise the abacus in their mind's eye, they can do sums at astounding speed. This builds confidence which boosts all their other subjects. Judy promptly bought the rights to the franchise for the Kempton Park area and got started by asking a teacher to recommend fifteen sets of parents whom she went to see one by one. She signed up no fewer than twelve. "By that time I was pretty good at selling," she says. But soon the system started selling itself. Among her first intake was a boy who stood on the verge of being expelled from his school. The UCMAS turned his school work around and caused such a change in his attitude towards school that he later became a prefect. It is not just Judy who believes that the change was due to her system. The boy's mother persuaded no fewer than 30 other parents to sign up. All the while, Judy was building an educational centre at a centre in Kempton Park called Wakker Jakkers in which she offered all sorts of extra lessons that complemented the UCMAS teaching. Her staff grew to eight. She had about 80 UCMAS clients and a further 40 who signed up for other extra lessons. But while her own franchise grew, the franchisor, which held the South African licence for the system from the Malaysian-based international head office, ran into trouble. Just as Judy prepared for the end of the system in South Africa and got ready to concentrate on her non-franchise lessons, the Malaysian head office approached her, as the strongest franchisee, to take over the South African license. Judy did some intensive research and confirmed that the Malaysia company was indeed the biggest and most esteemed abacus-based teaching system in the world. Locally, she knew that there was a huge untapped market, because the previous licence holder had marketed it only to a very limited set of communities. The trouble was finding the roughly half a million rand she needed to buy the country licence. The banks wouldn't touch the idea, and an official at the one development-finance agency she approached suggested that she rather ask her husband for the finance. One of the best moves she made, says Judy, was to team up with a franchising consultant who had worked with the UCMAS group before. She proved to be invaluable, not least for her suggestion of approaching Business Partners, which agreed to finance the purchase of the license. It has been a difficult first year as franchisor, says Judy. She has had to sort out a lot of problems left by the previous licence holder. She has focused almost exclusively on stabilising the 21 franchisees she took over. Fortunately, only three franchisees closed down in the transition process. Now she is ready for a strong marketing drive to build the group. Judy says part of her strength as an entrepreneur is her "remarkable family". Her son, scarcely two years out of school, agreed to jump in and help out with the business when Judy had to leave for Malaysia to sign the contract. Her school-going daughter is a highly trained UCMAS instructor, and earns good pocket money teaching at one of the franchises. Her husband has meanwhile bought his own educational franchise which complements hers, and the two of them has formed one management team to run both side by side. There is still a long way to go to build the UCMAS brand in South Africa, but Judy finds the entrepreneurial challenge combined with her love for teaching so satisfying that she cannot conceive of doing anything else. "My husband and I have decided never to retire," she jokes, "We'll just take longer and longer holidays."
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,771
[ 128000, 57489, 16202, 19804, 25, 8184, 23663, 7327, 611, 42759, 16941, 1759, 34871, 14821, 611, 13346, 7493, 611, 38916, 11326, 14035, 1077, 20282, 279, 70406, 1648, 198, 59204, 11326, 14035, 1077, 20282, 279, 70406, 1648, 198, 41, 18339, 4448, 325, 5355, 432, 78029, 4131, 505, 264, 39575, 3070, 315, 13639, 889, 649, 11917, 872, 65009, 3892, 22540, 1203, 311, 279, 892, 315, 2372, 2136, 288, 11, 719, 1364, 11937, 1193, 36513, 4848, 4038, 304, 1077, 1176, 12917, 2683, 627, 12348, 574, 279, 1887, 430, 2751, 311, 757, 1359, 2795, 279, 67066, 19271, 5657, 3196, 29349, 889, 706, 6051, 4529, 927, 459, 18699, 19562, 20034, 520, 12917, 2911, 35884, 323, 44064, 7422, 1555, 279, 1005, 315, 264, 8620, 671, 96405, 627, 21364, 21859, 922, 279, 8776, 2978, 1887, 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 ]
[ 57489, 16202, 19804, 25, 8184, 23663, 7327, 611, 42759, 16941, 1759, 34871, 14821, 611, 13346, 7493, 611, 38916, 11326, 14035, 1077, 20282, 279, 70406, 1648, 198, 59204, 11326, 14035, 1077, 20282, 279, 70406, 1648, 198, 41, 18339, 4448, 325, 5355, 432, 78029, 4131, 505, 264, 39575, 3070, 315, 13639, 889, 649, 11917, 872, 65009, 3892, 22540, 1203, 311, 279, 892, 315, 2372, 2136, 288, 11, 719, 1364, 11937, 1193, 36513, 4848, 4038, 304, 1077, 1176, 12917, 2683, 627, 12348, 574, 279, 1887, 430, 2751, 311, 757, 1359, 2795, 279, 67066, 19271, 5657, 3196, 29349, 889, 706, 6051, 4529, 927, 459, 18699, 19562, 20034, 520, 12917, 2911, 35884, 323, 44064, 7422, 1555, 279, 1005, 315, 264, 8620, 671, 96405, 627, 21364, 21859, 922, 279, 8776, 2978, 1887, 527, -100 ]
At TriDelta we pride ourselves on proactively responding to market trends and also client feedback. We have had a few clients say; "I lost money, how come you made money?" when market performance was poor in bad market years. To date, this is just the way investment management fees are charged. TriDelta Financial has now decided to deal with this concern head on. TriDelta Financial (tridelta.ca) and its Investment Counselling arm, TriDelta Investment Counsel (trideltainvestments.ca) will offer all clients with $500,000 or more of investment assets and a risk profile ranging from Balanced to Growth (minimum of 50% Equity and/or Alternative Investment asset mix to qualify), two options for fees. One is traditional while the other is a new innovation in the Canadian market. The Partnership Fee is effectively – if you lose money over a year, your investment management fees will be returned to your account. Even if you have low returns (from 0% to under 3%) TriDelta will provide a partial refund of your management fee. On the other hand if you have strong returns, starting at 7%, you will pay a performance bonus. The message is clear. If you do well, we do well. If your returns are low, we do not do well either. It aligns the interests of TriDelta Financial with our clients in a way that has simply not been found in the Canadian investment world. If return is less than 0%, there is a refund of all traditional fees. If return is between 0.00% and 2.99%, there is a refund of 0.5%. If return is between 3.00% and 6.99%, the traditional fee applies. If return is between 7.00% and 10.99%, there would be a 1% partnership fee. If return is between 11.00% and 14.99%, there would be a 2% partnership fee. If return is 15%+, there would be a 3% partnership fee. The launch date on this TriDelta initiative is scheduled for Jan 1st 2017. To participate in the Partnership Fee program, there is a 0.2% annual administrative fee charged. This fee covers the administrative costs of the program, and is not considered part of 'traditional fees'. As you will appreciate this fee structure will only appeal to certain investors, but the important point is that we will offer this alternative subject to certain restrictions. If you're interested in exploring this further, please contact your financial advisor or if you're not currently a client send a request to [email protected] and we will have a Wealth Advisor contact you to schedule a meeting. Error: Error validating access token: Session has expired on Tuesday, 05-Feb-19 09:06:30 PST. The current time is Thursday, 18-Apr-19 16:13:30 PDT.
{ "redpajama_set_name": "RedPajamaC4" }
7,375
[ 128000, 1688, 12639, 20892, 584, 22519, 13520, 389, 463, 64119, 30438, 311, 3157, 18845, 323, 1101, 3016, 11302, 13, 1226, 617, 1047, 264, 2478, 8403, 2019, 26, 330, 40, 5675, 3300, 11, 1268, 2586, 499, 1903, 3300, 7673, 994, 3157, 5178, 574, 8009, 304, 3958, 3157, 1667, 13, 2057, 2457, 11, 420, 374, 1120, 279, 1648, 9341, 6373, 12718, 527, 11684, 13, 12639, 20892, 17961, 706, 1457, 6773, 311, 3568, 449, 420, 4747, 2010, 389, 627, 22646, 20892, 17961, 320, 376, 307, 6092, 25109, 8, 323, 1202, 33350, 32354, 38837, 6916, 11, 12639, 20892, 33350, 37745, 320, 376, 307, 3903, 467, 7164, 1392, 25109, 8, 690, 3085, 682, 8403, 449, 400, 2636, 11, 931, 477, 810, 315, 9341, 12032, 323, 264, 5326, 5643, 24950, 505, 98209, 311, 34871 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 12639, 20892, 584, 22519, 13520, 389, 463, 64119, 30438, 311, 3157, 18845, 323, 1101, 3016, 11302, 13, 1226, 617, 1047, 264, 2478, 8403, 2019, 26, 330, 40, 5675, 3300, 11, 1268, 2586, 499, 1903, 3300, 7673, 994, 3157, 5178, 574, 8009, 304, 3958, 3157, 1667, 13, 2057, 2457, 11, 420, 374, 1120, 279, 1648, 9341, 6373, 12718, 527, 11684, 13, 12639, 20892, 17961, 706, 1457, 6773, 311, 3568, 449, 420, 4747, 2010, 389, 627, 22646, 20892, 17961, 320, 376, 307, 6092, 25109, 8, 323, 1202, 33350, 32354, 38837, 6916, 11, 12639, 20892, 33350, 37745, 320, 376, 307, 3903, 467, 7164, 1392, 25109, 8, 690, 3085, 682, 8403, 449, 400, 2636, 11, 931, 477, 810, 315, 9341, 12032, 323, 264, 5326, 5643, 24950, 505, 98209, 311, 34871, -100 ]
It happened a couple of nights ago. It was quite sudden; no great fanfare. One moment I was scribbling away in my writing pad (admittedly I'd been scribbling for over an hour) and the next – at approximately midnight – I stopped and looked at the page. The End stared back at me. That is, The End of the first draft. But still an end of sorts. It's taken me years to crush, blend and refine my original Scars & Stripes notes. And the result is, frankly, surprising. The truly fictional scenes took on a life of their own and in some ways became deeper and more revealing. Those based loosely (and some a little too closely) on personal experience will require radical changes after the first of many read throughs. There's the familiar sense of a simultaneous high and low, of recognising that a milestone has been reached while at the same time being acutely aware of the distance still to be covered. For now, Scars & Stripes will be set to one side so that I'll be able to look at it objectively. All I do know is that I'll follow my writer friend Warren Stevenson's suggestion and rewrite the whole thing in the third person. The next step is trickier. Do I: 1. Re-edit thriller Standpoint as some of the feedback for sample material on www.youwriteon.com suggests the opening would benefit from tightening up. 2. Commence the second full edit of sequel thriller Line of Sight? 3. Go back to first novel Covenant and reduce it from a 142,000 word behemoth to something more manageable? 4. Start a new novel. At the moment, I'm torn between the third Thomas Bladen book, tentatively entitled False Positive or something a little different entitled The Caretaker, which might involve messrs. Bladen and O'Neill on the sidelines or even be the same book. But there'll be no sign of Harold Pinter (with thanks to Linda Wright). Ah, writing; never a dull moment! A planned day out Or you could give yourself a big pat on the back, Derek and take a break:) It's really hard work writing a novel. Once you've taken a break, look at each one and pick the one you feel most excited about seeing in print. That's what I would do anyway, and well done! Thanks Deb, I'm not sure it's been restful exactly, but I have been pondering my next step!
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
1,512
[ 128000, 2181, 7077, 264, 5743, 315, 22178, 4227, 13, 1102, 574, 5115, 11210, 26, 912, 2294, 8571, 23920, 13, 3861, 4545, 358, 574, 68322, 65, 9894, 3201, 304, 856, 4477, 11262, 320, 329, 5600, 398, 358, 4265, 1027, 68322, 65, 9894, 369, 927, 459, 6596, 8, 323, 279, 1828, 1389, 520, 13489, 33433, 1389, 358, 10717, 323, 7111, 520, 279, 2199, 13, 578, 4060, 45135, 1203, 520, 757, 13, 3011, 374, 11, 578, 4060, 315, 279, 1176, 10165, 13, 2030, 2103, 459, 842, 315, 21522, 627, 2181, 596, 4529, 757, 1667, 311, 5138, 11, 20955, 323, 46464, 856, 4113, 2522, 1590, 612, 4610, 9100, 8554, 13, 1628, 279, 1121, 374, 11, 42762, 11, 15206, 13, 578, 9615, 44682, 16451, 3952, 389, 264, 2324, 315, 872, 1866, 323, 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 ]
[ 2181, 7077, 264, 5743, 315, 22178, 4227, 13, 1102, 574, 5115, 11210, 26, 912, 2294, 8571, 23920, 13, 3861, 4545, 358, 574, 68322, 65, 9894, 3201, 304, 856, 4477, 11262, 320, 329, 5600, 398, 358, 4265, 1027, 68322, 65, 9894, 369, 927, 459, 6596, 8, 323, 279, 1828, 1389, 520, 13489, 33433, 1389, 358, 10717, 323, 7111, 520, 279, 2199, 13, 578, 4060, 45135, 1203, 520, 757, 13, 3011, 374, 11, 578, 4060, 315, 279, 1176, 10165, 13, 2030, 2103, 459, 842, 315, 21522, 627, 2181, 596, 4529, 757, 1667, 311, 5138, 11, 20955, 323, 46464, 856, 4113, 2522, 1590, 612, 4610, 9100, 8554, 13, 1628, 279, 1121, 374, 11, 42762, 11, 15206, 13, 578, 9615, 44682, 16451, 3952, 389, 264, 2324, 315, 872, 1866, 323, 304, -100 ]
Rising Afropop act Toyé teams up with underground Atlanta beatsmith DJ Tag and Grammy Award-nominated hitmaker Ace Harris on his new single .. It's been a long road leading to this moment. For what feels like years, Four Tet has been rinsing out his eclectic remix of Nelly Furtado's .. Mr. Play's debut single "You Decide" gets the visual treatment and its a display of international vibes that cuts across UK, Africa, and the Caribbean. .. British DJ and fast-rising artist-producer Mr. Play taps the vocal talent of Jamaican dancehall star Demarco (of "Love my life" fame) and Nigerian .. New York-based singer Isa Marina delivers the visual for her upbeat love-laden single "No Grey". Inspired by a personal experience where .. Antibalas flips Anomie Belle's "Right Way" When the most feared afrobeat band in New York (just ask Questlove?) decides to flip your song, who are you to say no? Singer-songwriter .. Team Salut are back in the mix with another summer banger titled "Drive N Motion." The production team are known for their Afro-pop/dancehall ..
{ "redpajama_set_name": "RedPajamaC4" }
9,381
[ 128000, 49, 3876, 13203, 897, 454, 1180, 22331, 978, 7411, 709, 449, 26326, 20005, 34427, 44774, 22102, 12633, 323, 74679, 17768, 5392, 50615, 4295, 26850, 38807, 21750, 389, 813, 502, 3254, 55638, 2181, 596, 1027, 264, 1317, 5754, 6522, 311, 420, 4545, 13, 1789, 1148, 11321, 1093, 1667, 11, 13625, 50862, 706, 1027, 97139, 287, 704, 813, 78813, 57466, 315, 452, 12160, 435, 5757, 2172, 596, 55638, 12555, 13, 7199, 596, 17755, 3254, 330, 2675, 99981, 1, 5334, 279, 9302, 6514, 323, 1202, 264, 3113, 315, 6625, 90949, 430, 15455, 4028, 6560, 11, 10384, 11, 323, 279, 35374, 13, 55638, 52961, 22102, 323, 5043, 3880, 3876, 10255, 46354, 3913, 4491, 13, 7199, 63070, 279, 26480, 11005, 315, 41259, 7210, 15612, 43341, 6917, 4829, 277, 1030, 320, 1073, 330 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 49, 3876, 13203, 897, 454, 1180, 22331, 978, 7411, 709, 449, 26326, 20005, 34427, 44774, 22102, 12633, 323, 74679, 17768, 5392, 50615, 4295, 26850, 38807, 21750, 389, 813, 502, 3254, 55638, 2181, 596, 1027, 264, 1317, 5754, 6522, 311, 420, 4545, 13, 1789, 1148, 11321, 1093, 1667, 11, 13625, 50862, 706, 1027, 97139, 287, 704, 813, 78813, 57466, 315, 452, 12160, 435, 5757, 2172, 596, 55638, 12555, 13, 7199, 596, 17755, 3254, 330, 2675, 99981, 1, 5334, 279, 9302, 6514, 323, 1202, 264, 3113, 315, 6625, 90949, 430, 15455, 4028, 6560, 11, 10384, 11, 323, 279, 35374, 13, 55638, 52961, 22102, 323, 5043, 3880, 3876, 10255, 46354, 3913, 4491, 13, 7199, 63070, 279, 26480, 11005, 315, 41259, 7210, 15612, 43341, 6917, 4829, 277, 1030, 320, 1073, 330, -100 ]
Q: How to demonstrate excute sql from web devtool? Because i saw a colleage wrote sql query in frontend and i want to demonstrate this is not a good practice and easy to be hacked. Let say now there is a file example.js which you can search from devtool-> source -> open file, and the content is: ... ... ... const sqlQuery = "SELECT * FROM UserDb"; excuteSql(sqlQuery); ... ... I want to show him hacker might create a form or button from devtool then modify the sqlQuery to be "DELETE * FROM UserDb"; then run excuteSql(sqlQuery); to manipulate database. but this is just my thought, how can i do to put a button or form to excute modified query in devtool to demonstrate it? Thanks very much!
{ "redpajama_set_name": "RedPajamaStackExchange" }
5,688
[ 128000, 48, 25, 2650, 311, 20461, 3521, 1088, 5822, 505, 3566, 3567, 14506, 30, 9393, 602, 5602, 264, 14480, 425, 6267, 5822, 3319, 304, 46745, 323, 602, 1390, 311, 20461, 420, 374, 539, 264, 1695, 6725, 323, 4228, 311, 387, 47939, 627, 10267, 2019, 1457, 1070, 374, 264, 1052, 3187, 2927, 902, 499, 649, 2778, 505, 3567, 14506, 405, 2592, 1492, 1825, 1052, 345, 438, 279, 2262, 374, 512, 257, 12515, 257, 12515, 257, 12515, 1040, 5822, 2929, 284, 330, 4963, 353, 4393, 2724, 8153, 886, 40541, 1088, 8433, 13449, 2929, 317, 257, 12515, 257, 5585, 40, 1390, 311, 1501, 1461, 55222, 2643, 1893, 264, 1376, 477, 3215, 505, 3567, 14506, 1243, 5719, 279, 5822, 2929, 311, 387, 330, 14762, 353, 4393, 2724, 8153, 5233, 220, 1243, 1629 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2650, 311, 20461, 3521, 1088, 5822, 505, 3566, 3567, 14506, 30, 9393, 602, 5602, 264, 14480, 425, 6267, 5822, 3319, 304, 46745, 323, 602, 1390, 311, 20461, 420, 374, 539, 264, 1695, 6725, 323, 4228, 311, 387, 47939, 627, 10267, 2019, 1457, 1070, 374, 264, 1052, 3187, 2927, 902, 499, 649, 2778, 505, 3567, 14506, 405, 2592, 1492, 1825, 1052, 345, 438, 279, 2262, 374, 512, 257, 12515, 257, 12515, 257, 12515, 1040, 5822, 2929, 284, 330, 4963, 353, 4393, 2724, 8153, 886, 40541, 1088, 8433, 13449, 2929, 317, 257, 12515, 257, 5585, 40, 1390, 311, 1501, 1461, 55222, 2643, 1893, 264, 1376, 477, 3215, 505, 3567, 14506, 1243, 5719, 279, 5822, 2929, 311, 387, 330, 14762, 353, 4393, 2724, 8153, 5233, 220, 1243, 1629, -100 ]
Arthur Arendt was born on August 20, 1897. He died in October 1970 at age 73. We know that Arthur Arendt had been residing in Bemus Point, Chautauqua County, New York. Arthur Arendt's biography is built and maintained by people like you. Create an online profile of Arthur so that his life is remembered forever. If any factual information is incorrect, please edit Arthur's biography. This genealogy profile is dedicated to the life and ancestry of Arthur Arendt and his immediate Arendt family. Add to Arthur Arendt's genealogy page to share your memories & historical research with his family and other genealogy hobbyists. Do you know the final resting place - gravesite in a cemetery or location of cremation - of Arthur Arendt? Add burial and funeral information. Arthur Arendt lived 1 year longer than the average Arendt family member when he died at the age of 73. It is unknown if Arthur Arendt is a military veteran. 1897 - In the year that Arthur Arendt was born, on September 21st, editor and publisher Francis P. Church responded to a letter to the editor from Virginia O'Hanlon, 8 years old. Virginia's father had told her that "If you see it in The Sun, it's so." So she wrote to the Sun, asking if there was a Santa Claus. Church responded with the now famous editorial "Yes, Virginia, there is a Santa Claus". 1937 - By the time he was 40 years old, on May 28th, the San Francisco Golden Gate Bridge opened to cars. Taking 5 years to build, the 4,200-foot-long suspension bridge was an engineering marvel of its time - 11 men died during construction. The "international orange" color was chosen because it resisted rust and fading. To the present, it is the symbol of the City that is known throughout the world. 1957 - Arthur was 60 years old when on October 4th, the Soviet Union launched Sputnik I, the first man made earth-orbiting satellite - and triggered the Space Race. Sputnik I was only 23 inches in diameter and had no tracking equipment, only 4 antennas, but it had a big impact. 1967 - When he was 70 years old, on October 2nd, Thurgood Marshall was sworn in as the first black US Supreme Court justice. Marshall was the great-grandson of a slave and graduated first in his class at Howard University Law School. His nomination to the Supreme Court was approved by the Senate, 69 to 11. 1970 - In the year of Arthur Arendt's passing, on May 4th, four students at Kent State University in Ohio were shot and killed by National Guardsmen. The students were at a peaceful demonstration protesting the invasion of Cambodia by US forces. There had been precedent for the killing of American college students. The previous year, on May 15th, Alameda County Sheriffs used shotguns against U.C. Berkeley students at a protest for People's Park. One student died, one was blinded, 128 were injured. This obit of Arthur Arendt is updated by the community. Edit this biography to contribute to his obituary. Include details such as cemetery, burial, newspaper obituary and grave or marker inscription if available. Arthur Arendt passed away in October 1970 at 73 years of age. There is no listed cause of death. He was born on August 20, 1897. There is no information about Arthur's family or relationships. We know that Arthur Arendt had been residing in Bemus Point, Chautauqua County, New York. What do you remember about Arthur Arendt? Share your memories of special moments and stories you have heard about him. Or just leave a comment to show the world that Arthur is remembered.
{ "redpajama_set_name": "RedPajamaC4" }
4,110
[ 128000, 60762, 8886, 303, 83, 574, 9405, 389, 6287, 220, 508, 11, 220, 9378, 22, 13, 1283, 8636, 304, 6664, 220, 4468, 15, 520, 4325, 220, 5958, 13, 1226, 1440, 430, 28686, 8886, 303, 83, 1047, 1027, 67512, 304, 426, 336, 355, 5236, 11, 921, 2784, 2933, 44932, 6406, 11, 1561, 4356, 627, 60762, 8886, 303, 83, 596, 48345, 374, 5918, 323, 18908, 555, 1274, 1093, 499, 13, 4324, 459, 2930, 5643, 315, 28686, 779, 430, 813, 2324, 374, 27569, 16058, 13, 1442, 904, 61001, 2038, 374, 15465, 11, 4587, 4600, 28686, 596, 48345, 627, 2028, 15207, 80378, 5643, 374, 12514, 311, 279, 2324, 323, 66004, 315, 28686, 8886, 303, 83, 323, 813, 14247, 8886, 303, 83, 3070, 13, 2758, 311, 28686, 8886, 303, 83, 596, 15207, 80378 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 60762, 8886, 303, 83, 574, 9405, 389, 6287, 220, 508, 11, 220, 9378, 22, 13, 1283, 8636, 304, 6664, 220, 4468, 15, 520, 4325, 220, 5958, 13, 1226, 1440, 430, 28686, 8886, 303, 83, 1047, 1027, 67512, 304, 426, 336, 355, 5236, 11, 921, 2784, 2933, 44932, 6406, 11, 1561, 4356, 627, 60762, 8886, 303, 83, 596, 48345, 374, 5918, 323, 18908, 555, 1274, 1093, 499, 13, 4324, 459, 2930, 5643, 315, 28686, 779, 430, 813, 2324, 374, 27569, 16058, 13, 1442, 904, 61001, 2038, 374, 15465, 11, 4587, 4600, 28686, 596, 48345, 627, 2028, 15207, 80378, 5643, 374, 12514, 311, 279, 2324, 323, 66004, 315, 28686, 8886, 303, 83, 323, 813, 14247, 8886, 303, 83, 3070, 13, 2758, 311, 28686, 8886, 303, 83, 596, 15207, 80378, -100 ]
Spring socks is an offshoot of the famous Italian fashion brand Primavera, which was founded in 1964, and which today still produces high quality hosiery and other products for fashion conscious women. In 2005, the parent company set up Spring socks to create compression socks for a wide variety of sports; from running and skiing to horse riding and fishing. Spring produces an unparalleled range of motorcycling socks to cater for all kinds of bikes, all kinds of riders, and all kinds of climatic conditions. They provide great comfort, support and protection. Their waterproof sock is particularly impressive.
{ "redpajama_set_name": "RedPajamaC4" }
3,465
[ 128000, 26208, 40086, 374, 459, 1022, 68392, 315, 279, 11495, 15155, 11401, 6883, 36283, 402, 2473, 11, 902, 574, 18538, 304, 220, 5162, 19, 11, 323, 902, 3432, 2103, 19159, 1579, 4367, 305, 31824, 727, 323, 1023, 3956, 369, 11401, 17371, 3278, 13, 763, 220, 1049, 20, 11, 279, 2748, 2883, 743, 709, 12531, 40086, 311, 1893, 26168, 40086, 369, 264, 7029, 8205, 315, 10034, 26, 505, 4401, 323, 63117, 311, 15580, 20427, 323, 20543, 13, 12531, 19159, 459, 71257, 2134, 315, 9048, 66, 16404, 40086, 311, 29068, 369, 682, 13124, 315, 31553, 11, 682, 13124, 315, 30803, 11, 323, 682, 13124, 315, 11323, 780, 4787, 13, 2435, 3493, 2294, 6981, 11, 1862, 323, 9313, 13, 11205, 47519, 11334, 374, 8104, 16358, 13, 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, 1, 1, 0, 0, 0, 0, 0 ]
[ 26208, 40086, 374, 459, 1022, 68392, 315, 279, 11495, 15155, 11401, 6883, 36283, 402, 2473, 11, 902, 574, 18538, 304, 220, 5162, 19, 11, 323, 902, 3432, 2103, 19159, 1579, 4367, 305, 31824, 727, 323, 1023, 3956, 369, 11401, 17371, 3278, 13, 763, 220, 1049, 20, 11, 279, 2748, 2883, 743, 709, 12531, 40086, 311, 1893, 26168, 40086, 369, 264, 7029, 8205, 315, 10034, 26, 505, 4401, 323, 63117, 311, 15580, 20427, 323, 20543, 13, 12531, 19159, 459, 71257, 2134, 315, 9048, 66, 16404, 40086, 311, 29068, 369, 682, 13124, 315, 31553, 11, 682, 13124, 315, 30803, 11, 323, 682, 13124, 315, 11323, 780, 4787, 13, 2435, 3493, 2294, 6981, 11, 1862, 323, 9313, 13, 11205, 47519, 11334, 374, 8104, 16358, 13, -100, -100, -100, -100, -100, -100 ]
Priory in the City is the signature program we wish we had in high school! We prototyped a summer initiative where students learned from business leaders in our community. After discovering that 100% of participants thought the program was valuable, we saw an opportunity to leverage our downtown location to provide real-world learning experiences for high school students. We met with board trustees and community leaders to gain valuable insight on designing Priory in the City as a networking, mentoring and internship experience. We learned that scheduling was a challenge and students needed time to be at their internships, so we created a flexible school schedule. Currently, we work with 10th - 12th graders. We coach sophomores on developing their passion, juniors on designing their path and seniors on delivering their personal brand. My favorite part of Priory in the City is seeing students realize their strengths and passions. Often the recognition comes during a 1:1 coaching session when a student is developing her resume. Other times it comes when students are preparing their presentations and reflecting on who they are, their place in the world and how they contribute. There are beautiful moments when students glimpse their potential and start to envision what is possible. The excitement and positive energy are contagious. Our Priory in the City initiative even inspired me to attend graduate school! We look forward to growing this initiative at The Priory, and utilizing a similar approach for The Prep.
{ "redpajama_set_name": "RedPajamaC4" }
5,970
[ 128000, 93978, 683, 304, 279, 4409, 374, 279, 12223, 2068, 584, 6562, 584, 1047, 304, 1579, 2978, 4999, 1687, 1760, 354, 33601, 264, 7474, 20770, 1405, 4236, 9687, 505, 2626, 6164, 304, 1057, 4029, 13, 4740, 42687, 430, 220, 1041, 4, 315, 13324, 3463, 279, 2068, 574, 15525, 11, 584, 5602, 459, 6776, 311, 33164, 1057, 19441, 3813, 311, 3493, 1972, 31184, 6975, 11704, 369, 1579, 2978, 4236, 627, 1687, 2322, 449, 4580, 79811, 323, 4029, 6164, 311, 8895, 15525, 20616, 389, 30829, 28885, 683, 304, 279, 4409, 439, 264, 29130, 11, 76579, 323, 60859, 3217, 13, 1226, 9687, 430, 38952, 574, 264, 8815, 323, 4236, 4460, 892, 311, 387, 520, 872, 2655, 18143, 11, 779, 584, 3549, 264, 19303, 2978, 9899, 627, 34814, 11, 584, 990, 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 ]
[ 93978, 683, 304, 279, 4409, 374, 279, 12223, 2068, 584, 6562, 584, 1047, 304, 1579, 2978, 4999, 1687, 1760, 354, 33601, 264, 7474, 20770, 1405, 4236, 9687, 505, 2626, 6164, 304, 1057, 4029, 13, 4740, 42687, 430, 220, 1041, 4, 315, 13324, 3463, 279, 2068, 574, 15525, 11, 584, 5602, 459, 6776, 311, 33164, 1057, 19441, 3813, 311, 3493, 1972, 31184, 6975, 11704, 369, 1579, 2978, 4236, 627, 1687, 2322, 449, 4580, 79811, 323, 4029, 6164, 311, 8895, 15525, 20616, 389, 30829, 28885, 683, 304, 279, 4409, 439, 264, 29130, 11, 76579, 323, 60859, 3217, 13, 1226, 9687, 430, 38952, 574, 264, 8815, 323, 4236, 4460, 892, 311, 387, 520, 872, 2655, 18143, 11, 779, 584, 3549, 264, 19303, 2978, 9899, 627, 34814, 11, 584, 990, 449, -100 ]
A woman who selflessly jumped into a marina to save an unconscious 91-year-old pensioner from drowning has been presented with a prestigious Bravery Award. Sarah Cunnington, who works part-time at Mercia Marina in Willington, leapt into the water when Dennis Oates collapsed and fell into the marina. Sarah, who called for help and held Dennis' head above water to stop him from drowning, was today presented with an East Midlands Ambulance Service (EMAS) Bravery Award. At the surprise event at Mercia Marina, she was also reunited with Dennis, 999 call handler Georgia Culligan who took the call and the Ambulance Technician Christa Calladine who came to help him. On receiving the award, Sarah said: "This is so surreal. I didn't really do anything out of the ordinary, I was only doing what anyone would have done." Dennis, who has lived on a house boat at Mercia Marina for five years and previously worked for the National Coal Board as a mechanic, spent four days at Royal Derby Hospital receiving treatment. He has made a full recovery and was delighted to have the opportunity to thank Sarah for saving his life, and to thank the ambulance crew for caring for him. He said: "Sarah is my number one heroine and my life-saver. Words fail me, I'm just so grateful. The incident happened at 3.30pm on 5 May as Dennis walked back to his houseboat from the toilet block. He said: "The last thing I recall is being halfway down the pathway, and then I blacked out. The next thing I knew was Sarah screaming blue murder for someone to help her. Sarah explained that she was walking to her own houseboat when she saw Dennis fall into the water and wasn't moving, with his head under the water. She said: "Dennis was unconscious with his face under the water. I scrambled down the bank and into the water which was chest height. I grabbed his jumper and pulled his shoulders up so his face was out of water, and I stood there shouting for help." Several people helped to lift Dennis out of the water onto the pontoon and someone called for an ambulance. 999 call handler Georgia provided support over the phone until Paramedic Cheryl Scott and Technician Christa Calladine arrived at the Marina to care for Dennis and to take him to hospital. Sarah said: "The ambulance crew were amazing. They were incredibly calm and professional and took it all in their stride." The 999 call was Christa's first one for drowning and so she was pleased to meet Dennis and see that he was doing well. She said: "He's looking much better than the last time we saw him, and it's lovely to see him in much better circumstances. "Sarah really deserves this bravery award - she is a real superstar". Following the incident, Sarah has now become a team leader of the First Aid Team at Mercia Marina so she can help even more people who need medical assistance. Robert Neff, General Manager at Mercia Marina, said: "We would like to thank Sarah for her selfless and extremely brave actions which ultimately saved Dennis' life and we are thankful that he has now made a full recovery.
{ "redpajama_set_name": "RedPajamaC4" }
8,693
[ 128000, 32, 5333, 889, 659, 16117, 27096, 1139, 264, 3678, 2259, 311, 3665, 459, 40711, 220, 5925, 4771, 6418, 28781, 261, 505, 74537, 706, 1027, 10666, 449, 264, 41385, 3320, 25727, 17768, 627, 54183, 68845, 783, 11, 889, 4375, 961, 7394, 520, 25145, 689, 52636, 304, 4946, 4910, 11, 514, 2756, 1139, 279, 3090, 994, 35727, 507, 988, 29368, 323, 11299, 1139, 279, 3678, 2259, 627, 54183, 11, 889, 2663, 369, 1520, 323, 5762, 35727, 6, 2010, 3485, 3090, 311, 3009, 1461, 505, 74537, 11, 574, 3432, 10666, 449, 459, 6460, 81251, 20423, 41932, 5475, 320, 2783, 1950, 8, 3320, 25727, 17768, 627, 1688, 279, 13051, 1567, 520, 25145, 689, 52636, 11, 1364, 574, 1101, 77979, 449, 35727, 11, 220, 5500, 1650, 7158, 16272, 356, 620, 11118, 889 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5333, 889, 659, 16117, 27096, 1139, 264, 3678, 2259, 311, 3665, 459, 40711, 220, 5925, 4771, 6418, 28781, 261, 505, 74537, 706, 1027, 10666, 449, 264, 41385, 3320, 25727, 17768, 627, 54183, 68845, 783, 11, 889, 4375, 961, 7394, 520, 25145, 689, 52636, 304, 4946, 4910, 11, 514, 2756, 1139, 279, 3090, 994, 35727, 507, 988, 29368, 323, 11299, 1139, 279, 3678, 2259, 627, 54183, 11, 889, 2663, 369, 1520, 323, 5762, 35727, 6, 2010, 3485, 3090, 311, 3009, 1461, 505, 74537, 11, 574, 3432, 10666, 449, 459, 6460, 81251, 20423, 41932, 5475, 320, 2783, 1950, 8, 3320, 25727, 17768, 627, 1688, 279, 13051, 1567, 520, 25145, 689, 52636, 11, 1364, 574, 1101, 77979, 449, 35727, 11, 220, 5500, 1650, 7158, 16272, 356, 620, 11118, 889, -100 ]
Il monte Egaleo, chiamato anche Aigaleo (), e conosciuto nell'antichità come Poikilon Oros (Ποικίλον Όρος), è una montagna situata nell'Attica, in Grecia. Si trova ad ovest di Atene, a sud-est di Eleusi e ad est dell'isola di Salamina. La maggior parte della montagna è composta da calcare. Rispetto all'Imetto è meno estesa. La maggior parte della foresta si trova a nord, dove si trova il monastero di Daphni. C'è anche un parco nelle sue estensioni settentrionali. Durante la Battaglia di Salamina nel settembre del 480 a.C., il re persiano Serse si fece costruire sul Monte Egaleo un colossale trono per poter assistere dall'alto a quella che riteneva sarebbe stata una schiacciante vittoria. Egaleo
{ "redpajama_set_name": "RedPajamaWikipedia" }
4,808
[ 128000, 12319, 20605, 68, 39175, 1604, 78, 11, 523, 5038, 4428, 29157, 362, 343, 1604, 78, 39204, 384, 390, 85728, 1564, 66902, 6, 519, 718, 24892, 2586, 14128, 1609, 17346, 507, 3714, 320, 100888, 28654, 100302, 55241, 109716, 106579, 103666, 705, 11676, 5203, 20605, 56057, 10109, 460, 66902, 6, 10673, 3074, 11, 304, 480, 2827, 689, 13, 12095, 8348, 6723, 1008, 297, 7164, 1891, 2468, 1994, 11, 264, 31837, 12, 478, 1891, 27039, 53913, 384, 1008, 1826, 25219, 6, 285, 8083, 1891, 8375, 35150, 13, 5034, 88999, 2521, 20108, 15587, 20605, 56057, 11676, 1391, 28464, 3067, 10241, 548, 13, 54463, 83343, 682, 6, 1453, 53979, 11676, 90011, 1826, 23174, 13, 5034, 88999, 2521, 20108, 15587, 13952, 64, 4502, 8348, 6723, 264, 48734, 11, 48322, 4502, 8348, 6723, 3900 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 12319, 20605, 68, 39175, 1604, 78, 11, 523, 5038, 4428, 29157, 362, 343, 1604, 78, 39204, 384, 390, 85728, 1564, 66902, 6, 519, 718, 24892, 2586, 14128, 1609, 17346, 507, 3714, 320, 100888, 28654, 100302, 55241, 109716, 106579, 103666, 705, 11676, 5203, 20605, 56057, 10109, 460, 66902, 6, 10673, 3074, 11, 304, 480, 2827, 689, 13, 12095, 8348, 6723, 1008, 297, 7164, 1891, 2468, 1994, 11, 264, 31837, 12, 478, 1891, 27039, 53913, 384, 1008, 1826, 25219, 6, 285, 8083, 1891, 8375, 35150, 13, 5034, 88999, 2521, 20108, 15587, 20605, 56057, 11676, 1391, 28464, 3067, 10241, 548, 13, 54463, 83343, 682, 6, 1453, 53979, 11676, 90011, 1826, 23174, 13, 5034, 88999, 2521, 20108, 15587, 13952, 64, 4502, 8348, 6723, 264, 48734, 11, 48322, 4502, 8348, 6723, 3900, -100 ]
449. Idea of the typical flower. In our idea of the typical flower, the perianth consists of two whorls of expanded floral leaves encircling and protecting the more delicate essential organs in their midst. The outer circle, calyx, is ordinarily green and far less conspicuous than the inner circle of highly colored leaves - the corolla. 451. Rules. The sepals of the calyx and petals of the corolla are, according to rule, equal in number and severally disconnected save by the torus on which they stand. 452. Resemblances. The sepals more nearly resemble true leaves in texture and color; but the petals in form. Both have veins and re-tain more or less the same venation which characterizes the grand division to which the plant belongs (§ 258). 453. Parts. Both blade and petiole are distinguishable in the floral leaves, especially in the petals. The blade or expanded part is here called limb or lamina; the petiolar part, when narrowed into a stalk, is called the claw. 454. Nature of the sepals. The sepals are more generally sessile, like bud-scales, and appear to represent the leaf-stalk only, with margins dilated like a sheathing petiole. In confirmation of this view, we find in some flowers, as the paeony and rose, the lamina also developed, but smaller than the petiolar part. 455. Forms of petals. In form or outline there is a general resemblance between the limb and the leaf. It is ovate, oval, lanceolate, obcordate, orbicular, etc. In margin it is generally entire. Some peculiar forms, however, should be noticed, as the bilobate petal of the chickweed, the pinna-tifid petal of mitrewort, the inflected petal of the Umbeliferae, the fan-shaped petal of pink, the fringed (fimbriate) petal of campion (silene stellata), the hooded sepal of Napellus, the saccate petal of Calceolaria, Cypripedium. 456. Nectary. The limb is, moreover, often distorted into a true nectary, spurred, as already shown (§ 434), or otherwise deformed, as in Napellus, Coptis, etc. Forms of petals. 294, Butter-cup, showing the scale at base. 295. Mignonette, fringed at top. 296, Silene stellata, fringed and unguiculate. 297, Flower of Onmorhiza longistylis, petals inflected. 29S, Flower of Mitella diphylla, petals pectinate-pinna-tifld. 299, Petal of Cerastium nutans, 2-cleft. 457. Union. We have seen that the floral organs are often in various ways united. Considering their crowded state in the flower, we rather wonder that they do not always coalesce in their growth. 458. The calyx with united sepals was called by the early botanists monosepalous; the corolla with united petals was called monopetalous (µovoς, one - from the false idea that such an organ consisted of a single piece or leaf!). Opposed to these terms were polypetalous (πoλvς, many), petals distinct, and polysepalous, sepals distinct. 459. The monosepalous calyx, or monopetalous corolla, although thus compounded of several pieces, is usually described as a simple organ, wheel-shaped, cup-shaped, tubular, according to the degree of cohesion. The lower part of it, formed by the united claws, whether long or short, is the tube; the upper part, composed of the confluent laminae, is the border or limb; the opening of the tube above is the throat. 460. The border is either lobed, toothed, crenate, etc., by the distinct ends of the pieces composing it, as in the calyx of pink, the calyx and corolla of Primula, Phlox, and bellwort, or it may become by a complete lateral cohesion, entire, as in morning-glory. Here the compound nature of the organ is shown by the seams alone. 461. A terminal cohesion, where summit as well as sides are joined forming a cap rather than cup, rarely occurs, as in the calyx of the garden Escholtzia and the corolla of the grape. 462. The modes of adhesion are various and important, furnishing some of the most valuable distinctive characters. An organ is said to be adherent when it is conjoined with some dissimilar organ, as stamen with pistil. All the organs of our typical flower are described as free. 463. Hypogynous (vπώ, under, yuvή, pistil) is an adjective term in frequent use, denoting that the organs are inserted into the receptacle under or at the base of the free pistil or ovary. It is, therefore, not applicable to the pistil itself. Thus the outer organs of buttercups are hypogynous. Section of flowers. 304, Jeffersonia diphylla, hypogynous. 305, Viola rotundifolia. 306 Phaseolns multitlorus (bean, organs spirally twisted). 307, Pyrus (Pear), perigynous; ovaries nearly inclosed. 308, Prunus (plum); ovary not inclosed. 464. Perigynous (περí, around) denotes that the organ is inserted on the calyx-tube around the free ovary. Thus in Phlox the stamens are inserted on the tube of the corolla. In cherry both stamens and petals are (apparently) inserted on the calyx-tube. The calyx can never be perigynous. 465. Epigynous (επì, upon) denotes that all the organs are apparently inserted upon the ovary, as seen in the apple, caraway, sunflower. The common phrases " calyx superior," " ovary inferior," have the same signification as calyx epigynous, all implying the apparent insertion of the organs upon or above the ovary.
{ "redpajama_set_name": "RedPajamaC4" }
4,828
[ 128000, 21125, 13, 52101, 315, 279, 14595, 23153, 13, 763, 1057, 4623, 315, 279, 14595, 23153, 11, 279, 824, 1122, 339, 17610, 315, 1403, 421, 269, 4835, 315, 17626, 46119, 11141, 3289, 404, 63198, 323, 22973, 279, 810, 36301, 7718, 36853, 304, 872, 35446, 13, 578, 16335, 12960, 11, 1652, 52926, 11, 374, 98081, 6307, 323, 3117, 2753, 97985, 1109, 279, 9358, 12960, 315, 7701, 28296, 11141, 482, 279, 1867, 43783, 627, 20360, 13, 23694, 13, 578, 21693, 1147, 315, 279, 1652, 52926, 323, 96740, 315, 279, 1867, 43783, 527, 11, 4184, 311, 6037, 11, 6273, 304, 1396, 323, 3285, 750, 40186, 3665, 555, 279, 5801, 355, 389, 902, 814, 2559, 627, 21098, 13, 1838, 336, 2067, 3095, 13, 578, 21693, 1147, 810, 7154, 52280, 837, 11141, 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 ]
[ 21125, 13, 52101, 315, 279, 14595, 23153, 13, 763, 1057, 4623, 315, 279, 14595, 23153, 11, 279, 824, 1122, 339, 17610, 315, 1403, 421, 269, 4835, 315, 17626, 46119, 11141, 3289, 404, 63198, 323, 22973, 279, 810, 36301, 7718, 36853, 304, 872, 35446, 13, 578, 16335, 12960, 11, 1652, 52926, 11, 374, 98081, 6307, 323, 3117, 2753, 97985, 1109, 279, 9358, 12960, 315, 7701, 28296, 11141, 482, 279, 1867, 43783, 627, 20360, 13, 23694, 13, 578, 21693, 1147, 315, 279, 1652, 52926, 323, 96740, 315, 279, 1867, 43783, 527, 11, 4184, 311, 6037, 11, 6273, 304, 1396, 323, 3285, 750, 40186, 3665, 555, 279, 5801, 355, 389, 902, 814, 2559, 627, 21098, 13, 1838, 336, 2067, 3095, 13, 578, 21693, 1147, 810, 7154, 52280, 837, 11141, 304, -100 ]
Zakrzewska Osada – wieś w Polsce położona w województwie kujawsko-pomorskim, w powiecie sępoleńskim, w gminie Więcbork. Wieś położona nad jeziorem Zakrzewskim. Badania archeologiczne są prowadzone w okolicy wsi od roku 1999, kiedy miejscowi rolnicy (Mirosław Guzy,Bartosz Golański oraz Jędrzej i Krzysztof Kucharscy) przypadkowo odkryli urnę. Znaleziono wielokulturowe cmentarzyska, sięgające od neolitu, poprzez kultury epoki żelaza (halsztacką, lateńską, wielbarską i pomorską) aż do okresu wpływów rzymskich. Znaleziono m.in. groby jamowe i popielnicowe z okresu kultury grobów kloszowych, czy zapinki z epoki brązu. Pierwsza informacja z czasów historycznych o miejscowości pochodzi z roku 1505. W latach 1975–1998 miejscowość administracyjnie należała do województwa bydgoskiego. Według Narodowego Spisu Powszechnego (III 2011 r.) liczyła 224 mieszkańców. Jest jedenastą co do wielkości miejscowością gminy Więcbork. Zobacz też Zakrzewska Wola Przypisy Linki zewnętrzne Zakrzewska Osada
{ "redpajama_set_name": "RedPajamaWikipedia" }
8,946
[ 128000, 57, 587, 53060, 28844, 4657, 15796, 2649, 1389, 13672, 7545, 289, 58819, 346, 3273, 23762, 6077, 6863, 289, 289, 21963, 365, 21151, 11949, 46802, 597, 9832, 675, 102970, 2320, 316, 1105, 58993, 11, 289, 7019, 648, 25134, 274, 64142, 1286, 19699, 4991, 318, 11, 289, 342, 1083, 648, 17664, 5267, 7369, 672, 13, 43716, 7545, 3273, 23762, 6077, 6863, 34634, 4864, 8510, 13475, 68553, 53060, 365, 4991, 318, 382, 17519, 9345, 802, 1557, 39227, 89, 818, 38227, 48658, 329, 8855, 289, 5509, 8177, 289, 6455, 11018, 56402, 220, 2550, 24, 11, 597, 82719, 92994, 72438, 938, 2312, 2912, 320, 42987, 3714, 98348, 4673, 4341, 8324, 472, 437, 89, 480, 8083, 19699, 33639, 220, 36570, 622, 5267, 3696, 46894, 602, 16852, 89, 73445, 998, 69, 735, 1412, 1590 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 57, 587, 53060, 28844, 4657, 15796, 2649, 1389, 13672, 7545, 289, 58819, 346, 3273, 23762, 6077, 6863, 289, 289, 21963, 365, 21151, 11949, 46802, 597, 9832, 675, 102970, 2320, 316, 1105, 58993, 11, 289, 7019, 648, 25134, 274, 64142, 1286, 19699, 4991, 318, 11, 289, 342, 1083, 648, 17664, 5267, 7369, 672, 13, 43716, 7545, 3273, 23762, 6077, 6863, 34634, 4864, 8510, 13475, 68553, 53060, 365, 4991, 318, 382, 17519, 9345, 802, 1557, 39227, 89, 818, 38227, 48658, 329, 8855, 289, 5509, 8177, 289, 6455, 11018, 56402, 220, 2550, 24, 11, 597, 82719, 92994, 72438, 938, 2312, 2912, 320, 42987, 3714, 98348, 4673, 4341, 8324, 472, 437, 89, 480, 8083, 19699, 33639, 220, 36570, 622, 5267, 3696, 46894, 602, 16852, 89, 73445, 998, 69, 735, 1412, 1590, -100 ]
With Jobless Rates Like These, How Can Anybody Consider More Foreign Workers or an Amnesty? SOURCE: From Center for Immigration Studies analysis of public-use January-March 2013 Current Population Surveys. The government's U-6 Unemployment Rate counts not only people actively looking for a job who cannot find any kind of work, but it also counts "discouraged workers" who just recently stopped their unsuccessful quest for a job and those wanting a full-time job who have been forced into a part-time position. Do Unemployed Americans Deserve Suspension of Most Immigration? The Americans represented in the above statistics are actively searching for a job and cannot find even a part-time job. Those unemployed Americans in that table above primarily are looking for jobs in the same non-agricultural occupations where illegal foreign workers are currently employed – manufacturing, service, construction. Additionally, most of the hundreds of thousands of immigrants entering the country legally this year under extended-family categories and the visa lottery also will be competing for jobs with these unemployed Americans. Isn't the compassionate option to suspend most immigration (at the least,suspend chain-migration and visa lottery immigration) and stop making it more difficult for jobless Americans to find a job?
{ "redpajama_set_name": "RedPajamaC4" }
6,128
[ 128000, 2409, 12280, 1752, 48076, 9086, 4314, 11, 2650, 3053, 5884, 2664, 21829, 4497, 19620, 36798, 477, 459, 78796, 5380, 44098, 25, 5659, 5955, 369, 40782, 19241, 6492, 315, 586, 25700, 6186, 5364, 1132, 220, 679, 18, 9303, 40629, 8242, 50369, 13, 578, 3109, 596, 549, 12, 21, 1252, 21093, 20359, 14921, 539, 1193, 1274, 22815, 3411, 369, 264, 2683, 889, 4250, 1505, 904, 3169, 315, 990, 11, 719, 433, 1101, 14921, 330, 17242, 414, 3359, 7487, 1, 889, 1120, 6051, 10717, 872, 46025, 2271, 369, 264, 2683, 323, 1884, 19762, 264, 2539, 7394, 2683, 889, 617, 1027, 9770, 1139, 264, 961, 7394, 2361, 627, 5519, 1252, 36242, 9053, 3959, 5976, 91110, 315, 7648, 40782, 5380, 791, 9053, 15609, 304, 279, 3485, 13443, 527, 22815, 15389, 369, 264 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2409, 12280, 1752, 48076, 9086, 4314, 11, 2650, 3053, 5884, 2664, 21829, 4497, 19620, 36798, 477, 459, 78796, 5380, 44098, 25, 5659, 5955, 369, 40782, 19241, 6492, 315, 586, 25700, 6186, 5364, 1132, 220, 679, 18, 9303, 40629, 8242, 50369, 13, 578, 3109, 596, 549, 12, 21, 1252, 21093, 20359, 14921, 539, 1193, 1274, 22815, 3411, 369, 264, 2683, 889, 4250, 1505, 904, 3169, 315, 990, 11, 719, 433, 1101, 14921, 330, 17242, 414, 3359, 7487, 1, 889, 1120, 6051, 10717, 872, 46025, 2271, 369, 264, 2683, 323, 1884, 19762, 264, 2539, 7394, 2683, 889, 617, 1027, 9770, 1139, 264, 961, 7394, 2361, 627, 5519, 1252, 36242, 9053, 3959, 5976, 91110, 315, 7648, 40782, 5380, 791, 9053, 15609, 304, 279, 3485, 13443, 527, 22815, 15389, 369, 264, -100 ]
Category: Touchscreen Jaguar Heritage Jaguar decided to open their doors to the Great British public to see these splendid vehicles. But they also had a desire to tell the legacy of their pioneering Jaguar engineers. With a long and illustrious motoring history Jaguar found major motorsport success with its pioneering engineering innovations, particularly at LeMans in the 1950s. The Jaguar Heritage museum contains a physical timeline of engines and disc-brake development, telling the story of some of their most important advancements: The E-Type The XJS The Xj220 Tatton Park Hidden Histories is a new strand of the visitor experience at the National Trust's Tatton House near Knutsford. Tours of the grand rooms and estate have always been popular, and now visitors taking the tours of the kitchens and servants quarters can explore the lives and working conditions of named servants in the 1900s, and a fascinating insight into the technology of the time. A number of iPads, some mounted on stands and some held by the guides, bring to life interactive stories from the housekeeper, cook, maids and sculleryman, through their diaries, daily schedules and ledgers. We created the project as a number of modules which will be extended when further parts of 'downstairs' in the mansion are revealed. Gene Splicer Dudley Zoological Gardens look after some of the worlds rarest creatures but we decided to go one step further with the Genesplicer interactive we produced for exhibition consultants Leach. Playing the role of a mad scientist, visitors can choose from 11 different animals and splice their genes together to create a new, improved and extremely strange species. An animated, rotating double-helix adds movement while the creepy, atmospheric soundscape of bubbling concoctions creates a suitable background for the dastardly creations. Camodiles, Giringos, Tiguins and Crocotans can all be concocted in the laboratory and let loose by emailing your creation and sharing it with friends. Dudley Zoo's 2015 Easter break saw record attendances, with the attraction topping 20,000 visitors over the seven-day period. Zoo Director, Derek Grove, said "the bumper figures were a result of the opening of a new £250,000 interactive exhibit. The feedback we've had on Castle Creatures has been incredible." The Catalyst Science Discovery Centre The Catalyst Science Discovery Centre is a well-loved museum on the outskirts of Runcorn, which has fuelled a passion for science and chemistry in local school children for many years. Funded by the Heritage Lottery Fund the exciting interactive enabled visitors to explore the history of the area from the Observation Gallery. Scanning NFC tags at key locations in the Observatory activated content on touch-screen enabled devices, displaying useful facts, historical galleries, animations and even a quiz; where users would be given tokens to place in their virtual backpack. We also produced a self-guided booklet enabling visitors to explore the landmarks of the surrounding industrial landscape. Manchester United Museum Who's that team we call United?… Working closely with the team of curators at the Manchester United Museum we created an interactive exhibition detailing the lives of ten of the greatest football players in the history of Manchester United. From pioneering Welsh wizard, Billy Meredith and the immeasurable talent of George Best to the iconic appeal of David Beckham, the exhibition explores how the lives of footballers and the wider society that supported them has changed over the decades. 42" interactive touchscreen houses 10 CGI representations of the managers' office from the past century. Each office contains animations and 11 interactive information points on each player's life, how training and tactics have evolved, the introduction of the players union and the rise of the celebrity player. Bramall Hall As part of the £1.6 million refurbishment, Fuzzy Duck developed four educational touchscreen interactives and five tablets which were located throughout the Tudor manor house. We interviewed local historians and restorers to learn more about the history of Bramall Hall and how the restoration processes took place. The videos & interviews allowed visitors with limited mobility to explore each of the rooms on all the floors.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
5,960
[ 128000, 6888, 25, 19898, 8337, 198, 41, 351, 19253, 34243, 198, 41, 351, 19253, 6773, 311, 1825, 872, 14365, 311, 279, 8681, 8013, 586, 311, 1518, 1521, 70960, 11731, 13, 2030, 814, 1101, 1047, 264, 12876, 311, 3371, 279, 20160, 315, 872, 71674, 74637, 25175, 13, 3161, 264, 1317, 323, 97583, 84718, 3937, 5620, 3925, 74637, 1766, 3682, 38424, 403, 2450, 449, 1202, 71674, 15009, 46045, 11, 8104, 520, 2009, 44, 598, 304, 279, 220, 6280, 15, 82, 627, 791, 74637, 34243, 24925, 5727, 264, 7106, 25845, 315, 21787, 323, 2624, 31217, 731, 4500, 11, 11890, 279, 3446, 315, 1063, 315, 872, 1455, 3062, 83787, 512, 791, 469, 11038, 578, 1630, 12830, 578, 1630, 73, 8610, 198, 51, 266, 783, 5657, 198, 17964, 67005, 2490, 374, 264, 502 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 6888, 25, 19898, 8337, 198, 41, 351, 19253, 34243, 198, 41, 351, 19253, 6773, 311, 1825, 872, 14365, 311, 279, 8681, 8013, 586, 311, 1518, 1521, 70960, 11731, 13, 2030, 814, 1101, 1047, 264, 12876, 311, 3371, 279, 20160, 315, 872, 71674, 74637, 25175, 13, 3161, 264, 1317, 323, 97583, 84718, 3937, 5620, 3925, 74637, 1766, 3682, 38424, 403, 2450, 449, 1202, 71674, 15009, 46045, 11, 8104, 520, 2009, 44, 598, 304, 279, 220, 6280, 15, 82, 627, 791, 74637, 34243, 24925, 5727, 264, 7106, 25845, 315, 21787, 323, 2624, 31217, 731, 4500, 11, 11890, 279, 3446, 315, 1063, 315, 872, 1455, 3062, 83787, 512, 791, 469, 11038, 578, 1630, 12830, 578, 1630, 73, 8610, 198, 51, 266, 783, 5657, 198, 17964, 67005, 2490, 374, 264, 502, -100 ]
In Sleepy Hollow…Opening the Open Door Robert Bonvento — November 12, 2016 River Journal has covered the Open Door Family Medical Center in Sleepy Hollow for many years, as it sought to move from its 80 Beekman Avenue address to 300 North Broadway. That move initially met with resistance from the Village Board of Trustees and the Planning Board, who recognized that zoning laws and a paucity of parking could not accommodate the increased size of the new building's footprint nor the medical uses Open Door had requested. In the latter part of 2014 Sleepy Hollow's Zoning Board of appeals granted a variance to the Open Door which permitted off-site parking for the 300 North Broadway building. That off-site parking turned out to be 310 North Broadway, the former Dominick's Limousine site, along with a vacant lot at 316 North Broadway. In December of 2014 the Planning Board gave site plan approval and in early 2015 Sleepy Hollow's Architectural Review Board approved Open Door's exterior design and signage. The projected new home for Open Door at 300 North Broadway is a total of 12,100 square feet with a lower level that is 5,300 square feet. This lower level will house a reception area and waiting room along with a conference room, offices, restrooms and four dental examination rooms. The second floor which is basically at street level on New Broadway is 6,800 square feet, and it, too, will have another reception area and waiting room. Three medical residents' work rooms, sixteen exam rooms, one procedure room, along with restrooms and offices are also part of the plan. Parking at the building will include 2 handicapped-accessible parking spaces and a loading dock. The former Dominick's Limousine Service building is being converted to a parking garage consisting of 21 parking spaces. The vacant lot at 316 North Broadway will accommodate 19 parking spaces. The anticipated completion date is summer of 2017, barring any unforeseen construction delays. At this time all Village permits and approvals have been granted. River Journal asked Senior Marketing Coordinator at Phelps Memorial Hospital, Mary Sernatinger, about the medical services Phelps provides to the Open Door. She and her colleagues contributed the following: "All 20 of NYMC-Phelps Family Medicine Residency Program's residents serve as physicians at the Open Door Family Medical Center in Sleepy Hollow while receiving training under experienced family physicians who also provide care there. Family Medicine residency is a three-year program designed to train medical school graduates to become well-rounded family physicians who care for individuals across their lifespan within the context of their family and community. Sleepy Hollow Open Door and Phelps have maintained a strong relationship since 2011 when the residency program was founded. Since then, 12 physicians have graduated from the residency, five of whom now work as physicians for various Open Door Medical Centers throughout the greater Westchester community. The program is currently reviewing applications for the eight doctors who will begin next year, and they have already received 1,720 applications." The Open Door, which declares, "Your medical home offering primary care for everyone," on their website, receives approximately 1,000 patients daily at their combined Sleepy Hollow, Ossining and Mount Kisco offices. Ashikari Breast Center Joins Northwell Health Physician Partners Armando "Chick" Galella Receives The Historical Society 2020 Preservation Award Edge-on-Hudson Wins Silver Award for Community of the Year Armando 'Chick" Galella to receive Annual Preservation Award About the Author: Robert Bonvento
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,264
[ 128000, 644, 24708, 88, 49793, 1981, 52398, 279, 5377, 25166, 198, 35632, 13789, 688, 78, 2001, 6841, 220, 717, 11, 220, 679, 21, 198, 86799, 10139, 706, 9960, 279, 5377, 25166, 12517, 13235, 5955, 304, 24708, 88, 49793, 369, 1690, 1667, 11, 439, 433, 16495, 311, 3351, 505, 1202, 220, 1490, 2893, 1247, 1543, 17569, 2686, 311, 220, 3101, 4892, 37776, 13, 3011, 3351, 15453, 2322, 449, 13957, 505, 279, 25036, 8925, 315, 85196, 323, 279, 28780, 8925, 11, 889, 15324, 430, 66078, 7016, 323, 264, 7251, 1791, 488, 315, 13217, 1436, 539, 29376, 279, 7319, 1404, 315, 279, 502, 4857, 596, 43972, 6463, 279, 6593, 5829, 5377, 25166, 1047, 11472, 627, 644, 279, 15629, 961, 315, 220, 679, 19, 24708, 88, 49793, 596, 1901, 20324, 8925, 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 ]
[ 644, 24708, 88, 49793, 1981, 52398, 279, 5377, 25166, 198, 35632, 13789, 688, 78, 2001, 6841, 220, 717, 11, 220, 679, 21, 198, 86799, 10139, 706, 9960, 279, 5377, 25166, 12517, 13235, 5955, 304, 24708, 88, 49793, 369, 1690, 1667, 11, 439, 433, 16495, 311, 3351, 505, 1202, 220, 1490, 2893, 1247, 1543, 17569, 2686, 311, 220, 3101, 4892, 37776, 13, 3011, 3351, 15453, 2322, 449, 13957, 505, 279, 25036, 8925, 315, 85196, 323, 279, 28780, 8925, 11, 889, 15324, 430, 66078, 7016, 323, 264, 7251, 1791, 488, 315, 13217, 1436, 539, 29376, 279, 7319, 1404, 315, 279, 502, 4857, 596, 43972, 6463, 279, 6593, 5829, 5377, 25166, 1047, 11472, 627, 644, 279, 15629, 961, 315, 220, 679, 19, 24708, 88, 49793, 596, 1901, 20324, 8925, 315, -100 ]
Arwind Santos had a stellar 16 points, 21 rebounds, 2 assists, 2 steals, and 1 block in Petron's game last night against the struggling Shopinas.com Clickers. The Spiderman led the Blaze Boosters in holding off the Clickers. This win of Petron against Shopinas is their 3rd straight this season. They first beat B-Meg, then Barako Bull and most recently Shopinas. They are now definitely one of the hottest teams in the PBA right now. And Arwind Santos is one of the biggest reasons behind Petron's winning streak. The other reasons were Alex Cabagnot and Danny Ildefonso. But, Arwind's hustle and rebounding skill were just too overwhelming this Season. You just can't overlook his jumping ability, his athleticism and his strength in getting those rebounds. He really deserves all the praises that he has been getting from his fans all over the Philippines. He is becoming more and more famous in each and every game of Petron. So much so that the other Big Time players from other PBA Teams praised him because of his fine performance. Here are the praises that Sol Mercado, Joe Devance, Chris Ross, and Rob Reyes gave to Arwind using their Twitter accounts. Petron Blaze Facebook page was able to compile them. Those nice praises will surely motivate Arwind Santos to play even better than his performance in the PBA Season 36. I'm sure he will get more individual awards this season because he is playing like an MVP. PETRON 98 - Miranda 18, Lutz 17, Santos 16, Yeo 12, Agustin 9, Cabagnot 9, Ildefonso 6, Reyes 5, Baclao 4, Sharma 2, Guevarra 0. SHOPINAS.COM 87 - Duncil 22, Jazul 12, Hubalde 12, Ritualo 12, Sena 10, Menor 9, Espiritu 4, Se 3, Canlas 2, Canta 1, Ilad 0, Hermida 0, Mirza 0.
{ "redpajama_set_name": "RedPajamaC4" }
1,732
[ 128000, 7098, 19703, 48723, 1047, 264, 48317, 220, 845, 3585, 11, 220, 1691, 43762, 11, 220, 17, 29944, 11, 220, 17, 62566, 11, 323, 220, 16, 2565, 304, 11586, 2298, 596, 1847, 1566, 3814, 2403, 279, 20558, 14355, 20718, 916, 9369, 388, 13, 578, 29490, 1543, 6197, 279, 84527, 34507, 388, 304, 10168, 1022, 279, 9369, 388, 627, 2028, 3243, 315, 11586, 2298, 2403, 14355, 20718, 374, 872, 220, 18, 6634, 7833, 420, 3280, 13, 2435, 1176, 9567, 426, 5364, 797, 11, 1243, 4821, 29886, 22353, 323, 1455, 6051, 14355, 20718, 13, 2435, 527, 1457, 8659, 832, 315, 279, 38391, 7411, 304, 279, 393, 7209, 1314, 1457, 627, 3112, 1676, 19703, 48723, 374, 832, 315, 279, 8706, 8125, 4920, 11586, 2298, 596, 11230, 30314, 13, 578, 1023, 8125 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 7098, 19703, 48723, 1047, 264, 48317, 220, 845, 3585, 11, 220, 1691, 43762, 11, 220, 17, 29944, 11, 220, 17, 62566, 11, 323, 220, 16, 2565, 304, 11586, 2298, 596, 1847, 1566, 3814, 2403, 279, 20558, 14355, 20718, 916, 9369, 388, 13, 578, 29490, 1543, 6197, 279, 84527, 34507, 388, 304, 10168, 1022, 279, 9369, 388, 627, 2028, 3243, 315, 11586, 2298, 2403, 14355, 20718, 374, 872, 220, 18, 6634, 7833, 420, 3280, 13, 2435, 1176, 9567, 426, 5364, 797, 11, 1243, 4821, 29886, 22353, 323, 1455, 6051, 14355, 20718, 13, 2435, 527, 1457, 8659, 832, 315, 279, 38391, 7411, 304, 279, 393, 7209, 1314, 1457, 627, 3112, 1676, 19703, 48723, 374, 832, 315, 279, 8706, 8125, 4920, 11586, 2298, 596, 11230, 30314, 13, 578, 1023, 8125, -100 ]
As a business owner, you know that all markets have an inherent risk. That's why you need business insurance. And while you probably own coverage for basic liabilities, you might not know that you need more coverage to protect against the unexpected. Acumen Insurance can help you find the security your company needs. You should choose your business insurance in Hamilton based upon the needs of your business. Your total risk depends on the number of liabilities you face. If your primary risks come from property damage, lawsuits, or bodily injury then a general liability insurance might be suitable for you. However, if you also need to protect workers, you need workers comp insurance as well. As your risk increases, we can find you a matching insurance plan. Many businesses across this great country of ours thrive on services that are offered through vehicles. Taxi and limousine services, Paratransit operators, transport trucks, and delivery van companies – just to name few. Because these businesses are unique in nature, they require specialized insurance products to meet their needs.
{ "redpajama_set_name": "RedPajamaC4" }
8
[ 128000, 2170, 264, 2626, 6506, 11, 499, 1440, 430, 682, 11987, 617, 459, 38088, 5326, 13, 3011, 596, 3249, 499, 1205, 2626, 8276, 13, 1628, 1418, 499, 4762, 1866, 10401, 369, 6913, 58165, 11, 499, 2643, 539, 1440, 430, 499, 1205, 810, 10401, 311, 6144, 2403, 279, 16907, 13, 6515, 28999, 22413, 649, 1520, 499, 1505, 279, 4868, 701, 2883, 3966, 627, 2675, 1288, 5268, 701, 2626, 8276, 304, 24051, 3196, 5304, 279, 3966, 315, 701, 2626, 13, 4718, 2860, 5326, 14117, 389, 279, 1396, 315, 58165, 499, 3663, 13, 1442, 701, 6156, 15635, 2586, 505, 3424, 5674, 11, 43986, 11, 477, 48131, 11134, 1243, 264, 4689, 24305, 8276, 2643, 387, 14791, 369, 499, 13, 4452, 11, 422, 499, 1101, 1205, 311, 6144, 7487, 11, 499, 1205, 7487 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2170, 264, 2626, 6506, 11, 499, 1440, 430, 682, 11987, 617, 459, 38088, 5326, 13, 3011, 596, 3249, 499, 1205, 2626, 8276, 13, 1628, 1418, 499, 4762, 1866, 10401, 369, 6913, 58165, 11, 499, 2643, 539, 1440, 430, 499, 1205, 810, 10401, 311, 6144, 2403, 279, 16907, 13, 6515, 28999, 22413, 649, 1520, 499, 1505, 279, 4868, 701, 2883, 3966, 627, 2675, 1288, 5268, 701, 2626, 8276, 304, 24051, 3196, 5304, 279, 3966, 315, 701, 2626, 13, 4718, 2860, 5326, 14117, 389, 279, 1396, 315, 58165, 499, 3663, 13, 1442, 701, 6156, 15635, 2586, 505, 3424, 5674, 11, 43986, 11, 477, 48131, 11134, 1243, 264, 4689, 24305, 8276, 2643, 387, 14791, 369, 499, 13, 4452, 11, 422, 499, 1101, 1205, 311, 6144, 7487, 11, 499, 1205, 7487, -100 ]
'Jeopardy!' host Alex Trebek to moderate a Pa. gubernatorial debate by Rob Tornoe, Posted: February 21, 2018 Longtime "Jeopardy!" host Alex Trebek will moderate a Pennsylvania gubernatorial debate in October as part of the the Pennsylvania Chamber of Business and Industry's annual dinner. In 2012, longtime Jeopardy! host Alex Trebek admitted he would have loved to have been one of the questioners at a presidential debate between President Barack Obama and Republican presidential nominee Mitt Romney. During the 2018 election cycle, he could get his wish. Sort of. Trebek, a native Canadian who became a naturalized U.S. citizen in 1998, will moderate a 45-minute debate among Pennsylvania's 2018 gubernatorial candidates as part of the Pennsylvania Chamber of Business and Industry's annual dinner Oct. 1 at the Hershey Lodge in Dauphin County. Invitations will be extended to all the major candidates, including Democratic incumbent Tom Wolf and the winner of a Republican primary that includes attorney Laura Ellsworth, businessman Paul Mango and state Sen. Scott Wagner. It's unclear if Libertarian Party candidate Ken Krawchuk will be invited to participate. "Once the primary campaign is over and there is a Republican nominee, we look forward to sitting down and discussing what debates we will jointly participate in and how those debates are organized," Jeffrey Sheridan, Wolf's campaign manager, said in an email. "It is premature at this time, before we even have a Republican opponent, to talk about debates." Trebek told the Hill in 2013 if he were afforded the opportunity to moderate a political debate, he would take a different approach. "I would not let the politicians get away with standard responses," Trebek said. "I would try to pin them down, even though I might look bad doing it." So what are Trebek's politics? It's hard to say. During a 2012 discussion with Politico, Trebek offered some viewpoints typically ascribed to conservatives, such as the idea that people are relying too much on government and that there is "a sense of 'entitlement' in our society." But on other issues, like climate change and gay rights, Trebek sounds decidedly more liberal. "I consider myself a social liberal and a fiscal conservative," Trebek said in an email to Salon in 2014. "I would point out that anyone who has ever asked me, or investigated, would know that I am a registered 'Independent,' and I have voted for both Democratic and Republican candidates in the past, and will continue to do so." In addition to his role as debate moderator, Trebek also will serve as the dinner's keynote speaker, expected to discuss his unprecedented 34-year career as host of the popular quiz show, spanning more than 7,500 episodes. In fact, Trebek holds the Guinness Book of World Records award for "Most game show episodes hosted by the same presenter." Dennis Owens, a news anchor for ABC27 in Harrisburg, will be the master of ceremonies. Trebek returned to filming episodes of Jeopardy! in mid-January after surgery to treat a subdural hematoma — blood clots on the brain — caused by a fall in October. Due to the show's filming schedule, Trebek didn't miss an episode, enabling him ahead of the Super Bowl to mock contestants who couldn't provide a single response about the category "Football." "Let's look at the $1,000 clue, just for the fun of it," joked Trebek, a longtime Redskins fan. Posted: February 21, 2018 - 10:08 AM Rob Tornoe | @robtornoe | [email protected] Sen. Bob Casey calls for immediate impeachment trial; Pa., N.J. authorities ready for threats to state capitals this weekend A Pa. election probe that Trump falsely touted as a sign of vote-rigging ended without charges Jeremy Roebuck He was running for Bucks County DA. Now he's helping the Pentagon instead after the Capitol insurrection. Andrew Seidman Redistricting will be the definitive political fight of 2021 in Pennsylvania. Here's how it'll work. Marie Albiges of Spotlight PA
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,593
[ 128000, 6, 30854, 33029, 88, 32483, 3552, 8683, 12758, 77614, 311, 24070, 264, 16056, 13, 91522, 39036, 11249, 198, 1729, 4997, 350, 1540, 4748, 11, 15634, 25, 7552, 220, 1691, 11, 220, 679, 23, 198, 6720, 1712, 330, 30854, 33029, 88, 9135, 3552, 8683, 12758, 77614, 690, 24070, 264, 20355, 91522, 39036, 11249, 304, 6664, 439, 961, 315, 279, 279, 20355, 32479, 315, 8184, 323, 24780, 596, 9974, 14177, 627, 644, 220, 679, 17, 11, 36504, 14465, 33029, 88, 0, 3552, 8683, 12758, 77614, 16584, 568, 1053, 617, 10456, 311, 617, 1027, 832, 315, 279, 3488, 388, 520, 264, 13621, 11249, 1990, 4900, 24448, 7250, 323, 9540, 13621, 29311, 33718, 26386, 627, 16397, 279, 220, 679, 23, 6355, 11008, 11, 568, 1436, 636, 813, 6562, 13, 16347, 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 ]
[ 6, 30854, 33029, 88, 32483, 3552, 8683, 12758, 77614, 311, 24070, 264, 16056, 13, 91522, 39036, 11249, 198, 1729, 4997, 350, 1540, 4748, 11, 15634, 25, 7552, 220, 1691, 11, 220, 679, 23, 198, 6720, 1712, 330, 30854, 33029, 88, 9135, 3552, 8683, 12758, 77614, 690, 24070, 264, 20355, 91522, 39036, 11249, 304, 6664, 439, 961, 315, 279, 279, 20355, 32479, 315, 8184, 323, 24780, 596, 9974, 14177, 627, 644, 220, 679, 17, 11, 36504, 14465, 33029, 88, 0, 3552, 8683, 12758, 77614, 16584, 568, 1053, 617, 10456, 311, 617, 1027, 832, 315, 279, 3488, 388, 520, 264, 13621, 11249, 1990, 4900, 24448, 7250, 323, 9540, 13621, 29311, 33718, 26386, 627, 16397, 279, 220, 679, 23, 6355, 11008, 11, 568, 1436, 636, 813, 6562, 13, 16347, 315, -100 ]
One pity the dead and his unwitting murderer of Ephraim, and the other very well, because there was a sweet opportunity to make a moral Yesterday's tragedy – any tragedy – proved to be an excellent litmus test. The people were divided into those from this history is very bad, because it is a pity and the dead and his unwitting murderer, and those who from her very well because there's a sweet opportunity to make a moral, smack slap, to otkommentiroval own pettiness opportunity to politerati feet trampled about the fate of "stars"… Private circle in this hell – professionals. Those who fled with tape recorders for the wife of the deceased, arrived in sklif, launched into circulation the false abominations of attorneys, massively refuse from the protection of Ephraim, predictable fomented and inflame this tragedy of social and political strife. There are still ahead, of course. And yet, also nothing new. "Son, if you live long enough, you will realize that even the reporter does not always have to be scum". Robert Penn Warren "All the king's men". Source: Viktor Shenderovich / Facebook RDIF and "R-Pharm" will invest 4 billion rubles in the development of drugs for the treatment of COVID-19 Everyone has a chance: Jennifer Lopez plays VIP tickets to his concert Vice-President of the European Commission, high representative of the Union for foreign Affairs and security policy Josep Borrell supported the demonstrators who took to the streets of Belarusian cities. About this he wrote in Twitter on Sunday, August 16. "Hundreds of thousands of Belarusians went out today on a peaceful demonstration, demanding the release of […] Advisor to the President for national security Robert O'brien denied that the us President intends to meet with Russian President Vladimir Putin before the presidential elections in the United States. About it the adviser said in comments to NBC News on August 16. Earlier on Sunday, the channel, citing sources reported that trump was considering […] Labor collectives of the plant "Belaruskali" and refinery "Naftan", on August 16 announced that Monday, August 17, join the nationwide strike in Belarus, reported the news portal TUT.BY. The workers demanded to release all political prisoners and participants of peaceful demonstrations, the resignation of Alexander Lukashenko, the holding of fair and transparent elections, and investigations […] From Russia to the border with Belarus, according to eyewitnesses, moving cars similar to police cars, unmarked. About this in Facebook the evening of August 16, said the investigative group Conflict Intelligence Team (CIT). "The information about the transfer of personnel of Regardie towards Belarus seems to be confirmed", – stated in the message. The […] An interview with Gordon Posner. Where and when to watch under News
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,264
[ 128000, 4054, 58043, 279, 5710, 323, 813, 95119, 69066, 315, 69472, 969, 318, 11, 323, 279, 1023, 1633, 1664, 11, 1606, 1070, 574, 264, 10437, 6776, 311, 1304, 264, 16033, 198, 51377, 596, 31926, 1389, 904, 31926, 1389, 19168, 311, 387, 459, 9250, 13318, 38827, 1296, 13, 578, 1274, 1051, 18255, 1139, 1884, 505, 420, 3925, 374, 1633, 3958, 11, 1606, 433, 374, 264, 58043, 323, 279, 5710, 323, 813, 95119, 69066, 11, 323, 1884, 889, 505, 1077, 1633, 1664, 1606, 1070, 596, 264, 10437, 6776, 311, 1304, 264, 16033, 11, 91594, 51152, 11, 311, 297, 6375, 316, 479, 8869, 838, 1866, 6896, 83, 1918, 6776, 311, 1499, 2058, 9491, 7693, 490, 66107, 922, 279, 25382, 315, 330, 37738, 1, 90578, 17205, 12960, 304, 420, 15123, 1389, 15749 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 4054, 58043, 279, 5710, 323, 813, 95119, 69066, 315, 69472, 969, 318, 11, 323, 279, 1023, 1633, 1664, 11, 1606, 1070, 574, 264, 10437, 6776, 311, 1304, 264, 16033, 198, 51377, 596, 31926, 1389, 904, 31926, 1389, 19168, 311, 387, 459, 9250, 13318, 38827, 1296, 13, 578, 1274, 1051, 18255, 1139, 1884, 505, 420, 3925, 374, 1633, 3958, 11, 1606, 433, 374, 264, 58043, 323, 279, 5710, 323, 813, 95119, 69066, 11, 323, 1884, 889, 505, 1077, 1633, 1664, 1606, 1070, 596, 264, 10437, 6776, 311, 1304, 264, 16033, 11, 91594, 51152, 11, 311, 297, 6375, 316, 479, 8869, 838, 1866, 6896, 83, 1918, 6776, 311, 1499, 2058, 9491, 7693, 490, 66107, 922, 279, 25382, 315, 330, 37738, 1, 90578, 17205, 12960, 304, 420, 15123, 1389, 15749, -100 ]
February 6, 2012 - H2flow is pleased to announce that they will be exhibiting at the Orlando Pool & Spa Show in Orlando, Florida on February 24th & 25th. The Orlando Show will be the second pool industry show for H2flow in 2012. In late January, H2flow exhibited at the NESPA Show in Atlantic City, NJ, where the company launched their new FlowVis™ Flow Meter. H2flow plans to exhibit FlowVis™, the Eco-Flow-C® Variable Frequency Drive, and the PSP20 Anti-entrapment Device at the Orlando Show. Visit H2flow at booth #327 for more information about these products.
{ "redpajama_set_name": "RedPajamaC4" }
673
[ 128000, 33877, 220, 21, 11, 220, 679, 17, 482, 473, 17, 5072, 374, 18949, 311, 22203, 430, 814, 690, 387, 87719, 520, 279, 28944, 23563, 612, 35914, 7073, 304, 28944, 11, 9784, 389, 7552, 220, 1187, 339, 612, 220, 914, 339, 13, 578, 28944, 7073, 690, 387, 279, 2132, 7463, 5064, 1501, 369, 473, 17, 5072, 304, 220, 679, 17, 13, 763, 3389, 6186, 11, 473, 17, 5072, 51713, 520, 279, 74313, 8201, 7073, 304, 23179, 4409, 11, 27816, 11, 1405, 279, 2883, 11887, 872, 502, 23260, 3198, 16500, 23260, 53639, 627, 39, 17, 5072, 6787, 311, 31324, 23260, 3198, 16500, 11, 279, 51951, 12, 19410, 7813, 12175, 12689, 43480, 16542, 11, 323, 279, 69914, 508, 23853, 12, 306, 4714, 479, 14227, 520, 279, 28944, 7073, 13, 19545 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 33877, 220, 21, 11, 220, 679, 17, 482, 473, 17, 5072, 374, 18949, 311, 22203, 430, 814, 690, 387, 87719, 520, 279, 28944, 23563, 612, 35914, 7073, 304, 28944, 11, 9784, 389, 7552, 220, 1187, 339, 612, 220, 914, 339, 13, 578, 28944, 7073, 690, 387, 279, 2132, 7463, 5064, 1501, 369, 473, 17, 5072, 304, 220, 679, 17, 13, 763, 3389, 6186, 11, 473, 17, 5072, 51713, 520, 279, 74313, 8201, 7073, 304, 23179, 4409, 11, 27816, 11, 1405, 279, 2883, 11887, 872, 502, 23260, 3198, 16500, 23260, 53639, 627, 39, 17, 5072, 6787, 311, 31324, 23260, 3198, 16500, 11, 279, 51951, 12, 19410, 7813, 12175, 12689, 43480, 16542, 11, 323, 279, 69914, 508, 23853, 12, 306, 4714, 479, 14227, 520, 279, 28944, 7073, 13, 19545, -100 ]
KOREA / Over 80 Percent of Five Year Olds In South Korea Go To Hagwons Lydia Koo, Jan. 9, 2017, 9:49 a.m. More than 83 percent of 5-year-olds and 36 percent of 2-year-olds in South Korea receive private education, a study revealed Monday. According to the report published by the Korea Institute of Child Care and Education, a typical 5-year-old Korean kid receives private education 5.2 times a week for a duration of 50 minutes per session. For 2-year-olds, the average is 2.6 times a week and 47.6 minutes per session. The findings are based on a survey conducted between August and October last year on 1,241 parents with children aged 2 or 5. There were 537 of them with 2-year-olds and the remaining 704 had 5-year-olds. Korean language, sports and arts were the most common subjects for private education for the children, followed by English. The report encompassed private academies, known as hagwon here, as well as private tutoring and home learning programs. In many cases, 5-year-olds attend normal kindergarten classes by day and go to a hagwon for after-school studies, the report found. The after-school sessions last as long as four hours, it added. Nearly 70 percent of the surveyed parents with 2-year-olds said the level of their child's education was adequate, with 27 percent saying it was not enough. As for those with 5-year-olds, 54.3 percent of the parents said their education level was adequate, while 40 percent said they needed more. "Children, especially at a younger age, should be able to build a healthy relationship with their parents during the critical early years, which would later help them to get along with their peers. Spending most of their time at a hagwon is a hurdle to the process," Kim Eun-young, who headed the study, told The Korea Herald. She warned that excessive education at an early age could led to notable problems, such as depression and lack of concentration, or even the development of aggressive forms of behavior.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,337
[ 128000, 42, 6005, 32, 40081, 1959, 220, 1490, 56448, 315, 21594, 9941, 10846, 82, 763, 4987, 12126, 6122, 2057, 67639, 86, 2439, 198, 48412, 32106, 735, 2689, 11, 4448, 13, 220, 24, 11, 220, 679, 22, 11, 220, 24, 25, 2491, 264, 749, 627, 7816, 1109, 220, 6069, 3346, 315, 220, 20, 4771, 65248, 323, 220, 1927, 3346, 315, 220, 17, 4771, 65248, 304, 4987, 12126, 5371, 879, 6873, 11, 264, 4007, 10675, 7159, 627, 11439, 311, 279, 1934, 4756, 555, 279, 12126, 10181, 315, 9576, 10852, 323, 11930, 11, 264, 14595, 220, 20, 4771, 6418, 16526, 10585, 21879, 879, 6873, 220, 20, 13, 17, 3115, 264, 2046, 369, 264, 8250, 315, 220, 1135, 4520, 824, 3882, 13, 1789, 220, 17, 4771, 65248, 11, 279, 5578, 374, 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 ]
[ 42, 6005, 32, 40081, 1959, 220, 1490, 56448, 315, 21594, 9941, 10846, 82, 763, 4987, 12126, 6122, 2057, 67639, 86, 2439, 198, 48412, 32106, 735, 2689, 11, 4448, 13, 220, 24, 11, 220, 679, 22, 11, 220, 24, 25, 2491, 264, 749, 627, 7816, 1109, 220, 6069, 3346, 315, 220, 20, 4771, 65248, 323, 220, 1927, 3346, 315, 220, 17, 4771, 65248, 304, 4987, 12126, 5371, 879, 6873, 11, 264, 4007, 10675, 7159, 627, 11439, 311, 279, 1934, 4756, 555, 279, 12126, 10181, 315, 9576, 10852, 323, 11930, 11, 264, 14595, 220, 20, 4771, 6418, 16526, 10585, 21879, 879, 6873, 220, 20, 13, 17, 3115, 264, 2046, 369, 264, 8250, 315, 220, 1135, 4520, 824, 3882, 13, 1789, 220, 17, 4771, 65248, 11, 279, 5578, 374, 220, -100 ]
Alice Coachman Back To Athletes Born: 9th November 1923 Died: 14th July 2014 Birth Place: United States Known for: Being the first Black woman to win an Olympic gold medal. Coachman has been named one of the 100 greatest Olympians. In 1979, she was inducted into the Georgia Sports Hall of Fame. Coachman was the first Black woman to win Olympic gold. This file photo from Aug. 17, 1948, shows U.S. Olympic team member Alice Coachman arriving from London on the U.S.S. Washington into New York City. Coachman became the first black woman to win an Olympic gold medal with her win in the high jump in the 1948 Olympics in London. Coachman Davis, died early Monday, July 14, 2014, in South Georgia. She was 90. (AP Photo/John Rooney, File) (Original Caption) Alice Coachman of the Tuskegee Institute Club is seen as she wins the high jump event at the National Women's Track and Field meet. I've always believed that I could do whatever I set my mind to do. Listen to the story https://tuntimo.com/wp-content/uploads/2020/11/Alice-Coachman.m4a Alice Coachman was an African American athlete who specialised in high jump. As a young girl, Coachman was unable to access training facilities because of the colour of her skin. She trained by running along the dirt roads near her home, using homemade equipment to practice jumping. She began her athletic career competing in the Amateur Athletic Union's Women's National Championships, which she won 10 years in a row. In her first year she competed barefoot, beating the college and national high jump records. Aside from high jump, she also won championships in sprinting, relay and basketball. Coachman was unable to compete in the 1940 and 1944 Olympic Games, which were cancelled because of World War Two. She did compete in the 1948 Olympic Games, and won a gold medal in high jump. Sports writer Eric Williams said of Coachman, "Had she competed in those cancelled Olympics, we would probably be talking about her as the No. 1 female athlete of all time." After retiring as an athlete, Coachman dedicated her life to education and became a track and field instructor. List three events that Alice Coachman won while competing in the Amateur Athletic Union's Women's National Championships. Why do you think Eric Williams said "Had she competed in those cancelled Olympics, we would probably be talking about her as the No. 1 female athlete of all time" about Alice Coachman? How did Alice Coachman overcome barriers to training in her early life? Memory Pairs Note: This site is for optimised for Chrome, Edge and Firefox browsers only and some games are not compatible to all devices. Keep exploring! Entertainers and more Lupita Nyong'o Lewis Howard Latimer Arthur Wharton
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,455
[ 128000, 62786, 28275, 1543, 198, 3792, 2057, 20277, 14203, 198, 59204, 25, 220, 24, 339, 6841, 220, 5926, 18, 198, 35, 1142, 25, 220, 975, 339, 5887, 220, 679, 19, 198, 32578, 11004, 25, 3723, 4273, 198, 49306, 369, 25, 21347, 279, 1176, 5348, 5333, 311, 3243, 459, 25944, 6761, 37712, 627, 73794, 1543, 706, 1027, 7086, 832, 315, 279, 220, 1041, 12474, 15136, 5493, 627, 644, 220, 4468, 24, 11, 1364, 574, 304, 55015, 1139, 279, 16272, 13482, 11166, 315, 39627, 627, 73794, 1543, 574, 279, 1176, 5348, 5333, 311, 3243, 25944, 6761, 627, 2028, 1052, 6685, 505, 5033, 13, 220, 1114, 11, 220, 6393, 23, 11, 5039, 549, 815, 13, 25944, 2128, 4562, 30505, 28275, 1543, 33111, 505, 7295, 389, 279, 549, 815, 815, 13, 6652 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 62786, 28275, 1543, 198, 3792, 2057, 20277, 14203, 198, 59204, 25, 220, 24, 339, 6841, 220, 5926, 18, 198, 35, 1142, 25, 220, 975, 339, 5887, 220, 679, 19, 198, 32578, 11004, 25, 3723, 4273, 198, 49306, 369, 25, 21347, 279, 1176, 5348, 5333, 311, 3243, 459, 25944, 6761, 37712, 627, 73794, 1543, 706, 1027, 7086, 832, 315, 279, 220, 1041, 12474, 15136, 5493, 627, 644, 220, 4468, 24, 11, 1364, 574, 304, 55015, 1139, 279, 16272, 13482, 11166, 315, 39627, 627, 73794, 1543, 574, 279, 1176, 5348, 5333, 311, 3243, 25944, 6761, 627, 2028, 1052, 6685, 505, 5033, 13, 220, 1114, 11, 220, 6393, 23, 11, 5039, 549, 815, 13, 25944, 2128, 4562, 30505, 28275, 1543, 33111, 505, 7295, 389, 279, 549, 815, 815, 13, 6652, -100 ]
A little over two years ago, I opened a shop called K is for Black on Society6. It was a pretty scary move for me, but it turned out to be an important one. Even though I've been painting and drawing and making stuff since I was old enough to hold a crayon, something happened after I finished art school and started working in the world of commercial art: I stopped designing anything that wasn't for a client and that didn't require outside approval in order for it to be finalized. Once you get into that mode, it's really, really hard to trust your judgment when it comes to your own work. Also, when you're not working for a client, there's no way to diffuse criticism. I can internally blame an unattractive book cover on an author (or an agent, or a publisher, or a buyer, etc.), but what do I do when someone calls my non-client work "uninspiring, unimaginative, and unoriginal"? You can't please everyone (and who would want to!), but criticism is criticism, and even the toughest, most badass, confident artist-type out there has feelings. Sometimes I like to try and spare mine. Anyway, I went ahead and opened the shop, and to my happy surprise, people started to buy stuff. The profit margin for artists on Society6 is pretty small (especially with stuff like mugs and iPhone cases) since they handle all of the printing and shipping, so it's never been about turning it into a significant source of income for me, but it's very cool to see your posters hanging on strangers' walls and pillows with your designs on their sofas. There are now 22 designs in the K is for Black shop, and whenever I have free time, I add something new. Society6 announced last month that they're going to start producing quarterly book collecting the work of select artists who sell on the platform. Considering there are thousands and thousands of Society6 shops, it was a pretty huge honor to have been chosen as one of the 49 artists featured in the premiere issue for Winter 2016. As soon it was released, I ordered four copies—two for me, and one for each of my parents. Three of my designs were chosen: Sweetness, Vile, and B-Plus. I love the way they're presented! The Society6 team did a fantastic job with the whole issue, and I'm having a great time flipping through and discovering new artists (and seeing longtime favorites like Chad Wys). The paper stock is gorgeous, and the whole thing is just beautifully put together. I'll be buying future editions, for sure! If you'd like to get a copy of the Winter 2016 Society6 art quarterly, they're available online now in limited quantities, and will make their way to bookstores in the near future. How-to: Make an Eames Fiberglass Shell Chair. Hi Anna! I love your SWEETNESS I WAS ONLY JOKING iPhone case, and get lots of comments on it. It's a great conversation starter! Keep up the brilliant work. Hugs to Fritz! I have your raindrop leggings and I get SO many compliments on them! This is awesome, congrats! It's hard for graphic designers to find time to do their own work when we use so much creative energy designing for clients, but it's so worthwhile. Your shop is inspiring. go me! i have and tote your vile bag (and a larger still ill). how chic we are! How great- love your work! It is hard to leave the scaffold of client approval & go on your own aesthetic- this post really reasonates with me! Thanks for sharing! Congratulations Anna, I love your sense of style – Last year I decided to put some of my work "out there" and opened an Etsy Shop selling digital Prints – I am interested in the concept of Society6, and must look into it further. So curious about copyright and trademark here. Is it legal to sell artwork that prominently features the work (Morrisey lyrics in this case) of another artist? Does it fall under fair use? This is interesting to me as well. How does "likeness" work in terms of say, a photograph of someone? Or a photograph vs. a portrait? Anna, you are talented and brave. I love your work and applaud your courage!
{ "redpajama_set_name": "RedPajamaC4" }
567
[ 128000, 32, 2697, 927, 1403, 1667, 4227, 11, 358, 9107, 264, 8221, 2663, 735, 374, 369, 5348, 389, 13581, 21, 13, 1102, 574, 264, 5128, 29565, 3351, 369, 757, 11, 719, 433, 6656, 704, 311, 387, 459, 3062, 832, 13, 7570, 3582, 358, 3077, 1027, 19354, 323, 13633, 323, 3339, 6392, 2533, 358, 574, 2362, 3403, 311, 3412, 264, 90016, 263, 11, 2555, 7077, 1306, 358, 8220, 1989, 2978, 323, 3940, 3318, 304, 279, 1917, 315, 8518, 1989, 25, 358, 10717, 30829, 4205, 430, 5828, 956, 369, 264, 3016, 323, 430, 3287, 956, 1397, 4994, 14765, 304, 2015, 369, 433, 311, 387, 61487, 13, 9843, 499, 636, 1139, 430, 3941, 11, 433, 596, 2216, 11, 2216, 2653, 311, 7095, 701, 19971, 994, 433, 4131, 311, 701, 1866, 990 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2697, 927, 1403, 1667, 4227, 11, 358, 9107, 264, 8221, 2663, 735, 374, 369, 5348, 389, 13581, 21, 13, 1102, 574, 264, 5128, 29565, 3351, 369, 757, 11, 719, 433, 6656, 704, 311, 387, 459, 3062, 832, 13, 7570, 3582, 358, 3077, 1027, 19354, 323, 13633, 323, 3339, 6392, 2533, 358, 574, 2362, 3403, 311, 3412, 264, 90016, 263, 11, 2555, 7077, 1306, 358, 8220, 1989, 2978, 323, 3940, 3318, 304, 279, 1917, 315, 8518, 1989, 25, 358, 10717, 30829, 4205, 430, 5828, 956, 369, 264, 3016, 323, 430, 3287, 956, 1397, 4994, 14765, 304, 2015, 369, 433, 311, 387, 61487, 13, 9843, 499, 636, 1139, 430, 3941, 11, 433, 596, 2216, 11, 2216, 2653, 311, 7095, 701, 19971, 994, 433, 4131, 311, 701, 1866, 990, -100 ]
It's now Dec 1 and my Nokia 7.1 still has Android 8.1 with only the October 1 security patch level. Hellllllooooooo Nokia. Anyone there? Me again with the last posting! It's just like other Chinese makers. Promise shamles the blue from the sky until they got what they won't from us - or money! From that moment on they don't care anymore. They give us this platform to leave our frustrated comments but I'm quite sure, non of the officials will read here a single line. My next phone will be a Samsung or LG or something else. Here I know what I get. promising nothing and so no disappointing customers. .. The Pie update for your phone is roling out now. It's take a few days, take a patience. I understand your nervousness. I believe that Nokia employees should provide specific dates when and where the update will be made available. I know that this information has people who support Facebook. Apparently they are equally responsible for the work on d update - this is how I got the information from the employee. They gave me the exact date of updating my 7 plus and 6.1 wife, both dates worked well. So maybe ask on Facebook? I just read an article about the UK having regulations that delay updates. You sure Germany isn't the same way?
{ "redpajama_set_name": "RedPajamaC4" }
9,142
[ 128000, 2181, 596, 1457, 3799, 220, 16, 323, 856, 36806, 220, 22, 13, 16, 2103, 706, 8682, 220, 23, 13, 16, 449, 1193, 279, 6664, 220, 16, 4868, 11140, 2237, 13, 24830, 657, 75, 385, 26845, 2689, 36806, 13, 33634, 1070, 5380, 7979, 1578, 449, 279, 1566, 17437, 0, 1102, 596, 1120, 1093, 1023, 8620, 29414, 13, 7451, 72976, 645, 279, 6437, 505, 279, 13180, 3156, 814, 2751, 1148, 814, 2834, 956, 505, 603, 482, 477, 3300, 0, 5659, 430, 4545, 389, 814, 1541, 956, 2512, 14926, 13, 2435, 3041, 603, 420, 5452, 311, 5387, 1057, 33630, 6170, 719, 358, 2846, 5115, 2771, 11, 2536, 315, 279, 7510, 690, 1373, 1618, 264, 3254, 1584, 627, 5159, 1828, 4641, 690, 387, 264, 18907, 477, 24294, 477, 2555, 775, 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 ]
[ 2181, 596, 1457, 3799, 220, 16, 323, 856, 36806, 220, 22, 13, 16, 2103, 706, 8682, 220, 23, 13, 16, 449, 1193, 279, 6664, 220, 16, 4868, 11140, 2237, 13, 24830, 657, 75, 385, 26845, 2689, 36806, 13, 33634, 1070, 5380, 7979, 1578, 449, 279, 1566, 17437, 0, 1102, 596, 1120, 1093, 1023, 8620, 29414, 13, 7451, 72976, 645, 279, 6437, 505, 279, 13180, 3156, 814, 2751, 1148, 814, 2834, 956, 505, 603, 482, 477, 3300, 0, 5659, 430, 4545, 389, 814, 1541, 956, 2512, 14926, 13, 2435, 3041, 603, 420, 5452, 311, 5387, 1057, 33630, 6170, 719, 358, 2846, 5115, 2771, 11, 2536, 315, 279, 7510, 690, 1373, 1618, 264, 3254, 1584, 627, 5159, 1828, 4641, 690, 387, 264, 18907, 477, 24294, 477, 2555, 775, 13, -100 ]
5G & Connectivity Product & UX Design Manufacturing X.0 Southeast Manufacturing X.0 Midwest Manufacturing X.0 Southwest Internet of Business Home News Connected supply chains still a way off for consumer goods, says Evrythng Connected supply chains still a way off for consumer goods, says Evrythng The digital transformation of consumer goods supply chains is being held back by legacy infrastructure, according to a recent survey from IoT start-up, Evrythng. In a poll conducted at the Internet of Supply Chain conference held in Amsterdam in May of this year, more than half (56 percent) of the consumer product manufacturers that Evrythng spoke to identified the challenge of integrating complex legacy systems across their supply chain network as "highly significant", the company claims. The net result of this difficulty is that businesses increasingly struggle to bring together data from across their fragmented supply networks, meaning opportunities are missed to optimize supply chain efficiency. Lack of maturity means lack of visibility Of those who responded, 44 percent said that legacy infrastructure made it difficult to get timely access to data, and 39 percent suggested it led to poor visibility throughout the product's lifecycle. It is increased or real-time visibility that represents the most important opportunity for consumer goods companies, according to Evrythng. Niall Murphy, CEO of Evrythng Writing in a company blog post, Evrythng CEO Niall Murphy suggests that "real-time visibility is most useful for gaining valuable consumer insights," which is backed up by respondents, who indicated that "the most important benefit of a digital supply chain is the ability to get closer connections with their customers, ranking this higher than enabling new business models, driving new revenue and cost savings, which are often enabled once a business has established closer connections with its customers." Yet, despite its potential, the survey revealed that "real-time visibility from the factory to the consumer" is the poorest rated of all current supply chain capabilities among consumer goods companies, scoring just 2 out of 5 on Evrythng's scale, followed closely by "item-level provenance for everything you manufacture", which scored just under 3 out of 5. At present, the problem comes down to maturity. Just 6 percent of consumer goods companies describe their digital supply chain efforts as "ecosystem-connected", while a significantly higher 39 percent say that they are at the lowest stage of maturity, with most (if any) of their digital transformation efforts taking place no higher up than the departmental level. Read more: Ocado trials driverless CargoPod for last-mile grocery deliveries Reasons for optimism For Murphy, however, there is cause to be optimistic. He believes consumer goods companies can see the value in their digital transformation efforts. That important, he says, because "product manufacturers and brands are now competing on a global basis with digitally-native, insights-led businesses such as Amazon and Apple. Real-time data is everything, with full instrumentation of the supply chain end to end. Achieving this capability is a survival issue." "Siloed legacy systems are a barrier to achieving the kind of end-to-end visibility that enables companies to understand their supply chain and product lifecycles inside-out and compete at the top table." "Smart products and smart packaging with data management in the cloud is the game-changer," Murphy suggests. "From shoes to jackets, champagne bottles to shaving foam canisters, physical products can now be part of interconnected ecosystems enabled by the web through active digital identities in the cloud. It's these "digital product identities", which, when combined with "open standards and the ubiquity of smartphones," will "make vital data available at all times, outside of IT systems and enterprise walls," he concludes. Read more: Why Schneider is bringing IIoT, Blockchain and robotics to the supply chain Internet of Supply Chain is the only event bringing together Supply Chain executives representing the retailers, manufacturers and logistics operators to share best practices and inspire new revenue opportunities. The two-day forum will offer as yet unheard case studies on how the total lifecycle of a product can be monitored in real-time and be delivered on time without any compromise in quality. Key themes will include using IoT to improve end-to-end visibility, modernizing a legacy supply chain process and marrying manufacturing and supply chain. EVRYTHNG Freddie Roberts Featured Resources – DISABLED May 12 & 13 2020 Santa Clara, USA June 15 – 17 2020 Subscribe to our Newsletter – IoB Insights Receive the latest IoT news and analysis in your industry, straight to your inbox. listcode IoB Events April 26 & 27 2022 IN-PERSON & VIRTUAL June 21 & 22 2022 Webinar Driving Exceptional Customer Experiences Download Now » Webinar The Era of IoT Regulation Webinar IIoT to Realize the Digital Enterprise White Paper Smart Maintenance Mobilization White Paper The Importance of Spectrum Liberalization for Private 5G Networks Data Protection, Privacy Policy & Terms and Conditions © Copyright - Cambridge Innovation Institute
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,720
[ 128000, 20, 38, 612, 97154, 198, 4921, 612, 62593, 7127, 198, 80068, 1711, 1630, 13, 15, 36664, 198, 80068, 1711, 1630, 13, 15, 52257, 198, 80068, 1711, 1630, 13, 15, 46785, 198, 36779, 315, 8184, 198, 7778, 5513, 50586, 8312, 27271, 2103, 264, 1648, 1022, 369, 11761, 11822, 11, 2795, 10641, 894, 339, 983, 198, 21831, 8312, 27271, 2103, 264, 1648, 1022, 369, 11761, 11822, 11, 2795, 10641, 894, 339, 983, 198, 791, 7528, 18475, 315, 11761, 11822, 8312, 27271, 374, 1694, 5762, 1203, 555, 20160, 14054, 11, 4184, 311, 264, 3293, 10795, 505, 50180, 1212, 5352, 11, 10641, 894, 339, 983, 627, 644, 264, 7230, 13375, 520, 279, 8191, 315, 30909, 29625, 10017, 5762, 304, 38841, 304, 3297, 315, 420, 1060, 11, 810, 1109, 4376, 320, 3487 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 20, 38, 612, 97154, 198, 4921, 612, 62593, 7127, 198, 80068, 1711, 1630, 13, 15, 36664, 198, 80068, 1711, 1630, 13, 15, 52257, 198, 80068, 1711, 1630, 13, 15, 46785, 198, 36779, 315, 8184, 198, 7778, 5513, 50586, 8312, 27271, 2103, 264, 1648, 1022, 369, 11761, 11822, 11, 2795, 10641, 894, 339, 983, 198, 21831, 8312, 27271, 2103, 264, 1648, 1022, 369, 11761, 11822, 11, 2795, 10641, 894, 339, 983, 198, 791, 7528, 18475, 315, 11761, 11822, 8312, 27271, 374, 1694, 5762, 1203, 555, 20160, 14054, 11, 4184, 311, 264, 3293, 10795, 505, 50180, 1212, 5352, 11, 10641, 894, 339, 983, 627, 644, 264, 7230, 13375, 520, 279, 8191, 315, 30909, 29625, 10017, 5762, 304, 38841, 304, 3297, 315, 420, 1060, 11, 810, 1109, 4376, 320, 3487, -100 ]
Poltical New York Protest New Crowned Hope People's Daily Online Update News about the ipl cricket tournament! in News on 2020-09-03 2020-10-26 Share Facebook Twitter Pinterest Email Indian Premier League is one special tournament that happens every year in the parts of the Indian region. The craze of watching IPL is increasing day by day among the fans who love to watch their favorite cricket players from different countries playing with each other at the same time. If we do talk about the latest news about the IPL is that in the year 2020, it happened in the parts of Saudi Arabia country. Generally, this event is only used to you took place in the characteristics of India. Still, because of the covid-19 problem, BCCI has decided to launch this tournament in Dubai and Abu Dhabi, the central part of the United Arab Emirates. Same teams In the year 2020, it runs in the Indian region's outer parts, but there is no change with the overall structure, especially for the IPL teams. All the same, teams are playing in the same tournament, which plays in the previous matches of the ipl. Few couples like Mumbai Indians Chennai Super Kings Kings XI Punjab are few teams that used to play in the IPL tournament regularly, and this year, they are also playing with their selected team. The most notable thing about this year's IPL tournament is that there is no present crowd in the cricket ground. It happens just because of coronavirus, where people need to detach from each other most of the time to remove the issue of the same virus. However, some virtual audience is available on the LED screens, which gives some encouragement to the players who are playing alone on the grounds. Shorter version This year's IPL tournament is also unique because it is a shorter version of the same game, which used to Run about three months. But now this year IPL tournament is only available for two months, and there are only 12 matches single for each team, which they need to win to qualify for the finals. Mumbai Indians and other teams In this tournament, Mumbai Indians are doing very well till now, and they are pretty much confident to reach the finals of the game as soon as possible. Delhi capitals are also trying their level best to get to the finals without much difficulty, and they almost have sufficient points over the table to become the qualifier. Unfortunately, Rajasthan Royals Kolkata Knight Riders and Sunrisers Hyderabad are still struggling to reach the finals. Apart from that, Royal Challengers Bengaluru has done pretty well in the tournament, which is considered the weakest team in the previous versions of the IPL. Dean jones death at tournament One said news also comes from the same tournament where Dean Jones loses his life because of Mumbai's heart attack. He is part of the commentary team and stays in The Mumbai hotel in the tournament's early days. All the above lines about the present information of the IPL tournament gives you all the updated news. ← What Dad Taught Me What Dad Taught Me Importance Of Value Education In Schools → Importance Of Value Education In Schools Local Poltical Turai Leads A War Four notable points about corruption! Importance Of Value Education In Schools 2020-10-12 Violence begins to occur on NYPD officers as… 2020-07-29 What Changes Are Required In The Current Education System? 2020-10-16 What Are The Different Jobs In The Education Field? What Changes Are Required In The Current Education System? Education – Why It Is Important To Get Educated? crafted with byNew Crowned Hope
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,482
[ 128000, 47, 6312, 950, 198, 3648, 4356, 37759, 198, 3648, 29743, 291, 18231, 198, 16298, 596, 13690, 8267, 198, 4387, 5513, 922, 279, 602, 501, 37099, 16520, 4999, 258, 197, 14710, 25653, 197, 220, 2366, 15, 12, 2545, 12, 2839, 197, 220, 2366, 15, 12, 605, 12, 1627, 197, 12037, 13017, 4598, 6405, 26106, 8463, 198, 48664, 20210, 9130, 374, 832, 3361, 16520, 430, 8741, 1475, 1060, 304, 279, 5596, 315, 279, 7904, 5654, 13, 578, 46141, 3059, 315, 10307, 77355, 374, 7859, 1938, 555, 1938, 4315, 279, 7359, 889, 3021, 311, 3821, 872, 7075, 37099, 4311, 505, 2204, 5961, 5737, 449, 1855, 1023, 520, 279, 1890, 892, 627, 2746, 584, 656, 3137, 922, 279, 5652, 3754, 922, 279, 77355, 374, 430, 304, 279, 1060, 220, 2366, 15 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 47, 6312, 950, 198, 3648, 4356, 37759, 198, 3648, 29743, 291, 18231, 198, 16298, 596, 13690, 8267, 198, 4387, 5513, 922, 279, 602, 501, 37099, 16520, 4999, 258, 197, 14710, 25653, 197, 220, 2366, 15, 12, 2545, 12, 2839, 197, 220, 2366, 15, 12, 605, 12, 1627, 197, 12037, 13017, 4598, 6405, 26106, 8463, 198, 48664, 20210, 9130, 374, 832, 3361, 16520, 430, 8741, 1475, 1060, 304, 279, 5596, 315, 279, 7904, 5654, 13, 578, 46141, 3059, 315, 10307, 77355, 374, 7859, 1938, 555, 1938, 4315, 279, 7359, 889, 3021, 311, 3821, 872, 7075, 37099, 4311, 505, 2204, 5961, 5737, 449, 1855, 1023, 520, 279, 1890, 892, 627, 2746, 584, 656, 3137, 922, 279, 5652, 3754, 922, 279, 77355, 374, 430, 304, 279, 1060, 220, 2366, 15, -100 ]
Other Daniel Bowens High on the blog Transport blog posts Transport topic index Melbourne public transport – Significant service changes The cheap way to Melbourne airport Daniel Bowen A bit of culture, a bit of politics, a few photos, and way too much about transport. Facebook Twitter Flickr YouTube Posted on Wed 11 May 2005 Wed 11 May 2005 AuthorDaniel2 Comments I might be losing weight since the weather got cold, what with freezing my arse off every morning. Welcome to winter. Since my evil scheme to get us out of this cold house by the onset of winter hasn't come off, yesterday I went and bought an extra heater, to prevent the family freezing to death. It's a twin for the smallish column oil heater I got last year. You know, shopping for appliances is so much easier when you know exactly what you want. Walk into shop, see product, tell salesman, hand over cash. Easy. If only all my shopping could be that simple. If you enjoyed this post, please consider leaving a comment. You can subscribe via feed reader RSS, or subscribe by email. You can also Follow me on Twitter, or Like the blog on Facebook. CategoriesConsumerism, Home life ← Previous Previous post: Conversations overheard Next → Next post: The truth about Connex 2 Replies to "Winter" Tue 17 May 2005 at 6:07 pm It's still quite summer-ish around here actually Daniel… (just not today). Welcome to Sydney ;-) But I agree with your shopping experience – the internet means I can do that just about every time these days! Much to my girlfriend's dismay… Marking the Games Perth day 3: CBD, Whiteman Park, stargazing The surrealist tram Dilbert archive search One drive, three morons A few quick movie reviews Seconds from death! Warehouse antics Archives Select Month July 2019 June 2019 May 2019 April 2019 March 2019 February 2019 January 2019 December 2018 November 2018 October 2018 September 2018 August 2018 July 2018 June 2018 May 2018 April 2018 March 2018 February 2018 January 2018 December 2017 November 2017 October 2017 September 2017 August 2017 July 2017 June 2017 May 2017 April 2017 March 2017 February 2017 January 2017 December 2016 November 2016 October 2016 September 2016 August 2016 July 2016 June 2016 May 2016 April 2016 March 2016 February 2016 January 2016 December 2015 November 2015 October 2015 September 2015 August 2015 July 2015 June 2015 May 2015 April 2015 March 2015 February 2015 January 2015 December 2014 November 2014 October 2014 September 2014 August 2014 July 2014 June 2014 May 2014 April 2014 March 2014 February 2014 January 2014 December 2013 November 2013 October 2013 September 2013 August 2013 July 2013 June 2013 May 2013 April 2013 March 2013 February 2013 January 2013 December 2012 November 2012 October 2012 September 2012 August 2012 July 2012 June 2012 May 2012 April 2012 March 2012 February 2012 January 2012 December 2011 November 2011 October 2011 September 2011 August 2011 July 2011 June 2011 May 2011 April 2011 March 2011 February 2011 January 2011 December 2010 November 2010 October 2010 September 2010 August 2010 July 2010 June 2010 May 2010 April 2010 March 2010 February 2010 January 2010 December 2009 November 2009 October 2009 September 2009 August 2009 July 2009 June 2009 May 2009 April 2009 March 2009 February 2009 January 2009 December 2008 November 2008 October 2008 September 2008 August 2008 July 2008 June 2008 May 2008 April 2008 March 2008 February 2008 January 2008 December 2007 November 2007 October 2007 September 2007 August 2007 July 2007 June 2007 May 2007 April 2007 March 2007 February 2007 January 2007 December 2006 November 2006 October 2006 September 2006 August 2006 July 2006 June 2006 May 2006 April 2006 March 2006 February 2006 January 2006 December 2005 November 2005 October 2005 September 2005 August 2005 July 2005 June 2005 May 2005 April 2005 March 2005 February 2005 January 2005 December 2004 November 2004 October 2004 September 2004 August 2004 July 2004 June 2004 May 2004 April 2004 March 2004 February 2004 January 2004 December 2003 November 2003 October 2003 September 2003 August 2003 July 2003 June 2003 May 2003 April 2003 March 2003 February 2003 January 2003 December 2002 November 2002 October 2002 September 2002 August 2002 July 2002 June 2002 May 2002 April 2002 March 2002 February 2002 January 2002 December 2001 November 2001 October 2001 September 2001 August 2001 July 2001 June 2001 May 2001 April 2001 March 2001 February 2001 January 2001 December 2000 November 2000 October 2000 September 2000 August 2000 July 2000 June 2000 May 2000 April 2000 March 2000 February 2000 January 2000 December 1999 November 1999 October 1999 September 1999 August 1999 July 1999 June 1999 May 1999 April 1999 March 1999 February 1999 January 1999 December 1998 November 1998 October 1998 September 1998 August 1998 July 1998 June 1998 May 1998 April 1998 March 1998 February 1998 January 1998 December 1997 November 1997 October 1997 September 1997 August 1997 July 1997 June 1997 May 1997 April 1997 March 1997 February 1997 January 1997 December 1996 November 1996 October 1996 September 1996 August 1996 July 1996 June 1996 May 1996 April 1996 March 1996 February 1996 January 1996 December 1995 November 1995 October 1995 September 1995 August 1995 July 1995 June 1995 May 1995 April 1995 March 1995 February 1995 January 1995 December 1994 November 1994 October 1994 September 1994 August 1994 July 1994 June 1994 May 1994 April 1994 March 1994 February 1994 January 1994 Blog sponsorship Morons on the road Food'n'drink If Daniel was emperor of the world Bentleigh Urban tribes Memes rule, pass it on Here is my Photos from ten years ago PTUA My usual stations Toxic Custard newsletter The week in transport Bendigo 2009 Brisbane 2011 Canberra 2005 East Gippsland 2003 Europe 1998 🇬🇧🏴󠁧󠁢󠁥󠁮󠁧󠁿🏴󠁧󠁢󠁳󠁣󠁴󠁿🇧🇪🇳🇱 Europe 1999 🇮🇹🇬🇧🏴󠁧󠁢󠁥󠁮󠁧󠁿 Europe 2017 🇬🇧🏴󠁧󠁢󠁷󠁬󠁳󠁿🏴󠁧󠁢󠁥󠁮󠁧󠁿🇧🇪🇸🇬 Hobart 2006 Inverloch 2010 Singapore 2016 🇸🇬 USA 1996 🇺🇸🇨🇦 Warrnambool 2008 Copyright © 2019 Daniel Bowen. All Rights Reserved.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,922
[ 128000, 11663, 15469, 18943, 729, 198, 12243, 389, 279, 5117, 198, 28660, 5117, 8158, 198, 28660, 8712, 1963, 198, 40249, 22152, 586, 7710, 1389, 90462, 2532, 4442, 198, 791, 12136, 1648, 311, 27535, 17149, 198, 41686, 96620, 198, 32, 2766, 315, 7829, 11, 264, 2766, 315, 11759, 11, 264, 2478, 7397, 11, 323, 1648, 2288, 1790, 922, 7710, 627, 21124, 6405, 55458, 13674, 198, 17827, 389, 6658, 220, 806, 3297, 220, 1049, 20, 6658, 220, 806, 3297, 220, 1049, 20, 7030, 41686, 17, 18149, 198, 40, 2643, 387, 13490, 4785, 2533, 279, 9282, 2751, 9439, 11, 1148, 449, 43318, 856, 802, 325, 1022, 1475, 6693, 13, 20776, 311, 12688, 627, 12834, 856, 14289, 13155, 311, 636, 603, 704, 315, 420, 9439, 3838, 555, 279, 42080, 315, 12688, 12775 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 11663, 15469, 18943, 729, 198, 12243, 389, 279, 5117, 198, 28660, 5117, 8158, 198, 28660, 8712, 1963, 198, 40249, 22152, 586, 7710, 1389, 90462, 2532, 4442, 198, 791, 12136, 1648, 311, 27535, 17149, 198, 41686, 96620, 198, 32, 2766, 315, 7829, 11, 264, 2766, 315, 11759, 11, 264, 2478, 7397, 11, 323, 1648, 2288, 1790, 922, 7710, 627, 21124, 6405, 55458, 13674, 198, 17827, 389, 6658, 220, 806, 3297, 220, 1049, 20, 6658, 220, 806, 3297, 220, 1049, 20, 7030, 41686, 17, 18149, 198, 40, 2643, 387, 13490, 4785, 2533, 279, 9282, 2751, 9439, 11, 1148, 449, 43318, 856, 802, 325, 1022, 1475, 6693, 13, 20776, 311, 12688, 627, 12834, 856, 14289, 13155, 311, 636, 603, 704, 315, 420, 9439, 3838, 555, 279, 42080, 315, 12688, 12775, -100 ]
Realty Shares 2022 Review and Ranking Visit Realty Shares What is Realty Shares? To avoid the financial conflicts-of-interests that are rampant on virtually every other review site, I DON'T accept any money from any outside sponsor or platform for ANYTHING (including but not limited to affiliate ads, advertising etc.). See code of ethics for more. Update Nov 7, 2018: Realty Shares has run out of cash for funding operations and has shut down to new investors. Update Feb 13, 2019: Realty Shares is being sued by investors in a class action lawsuit. Realty Shares is an unusual combination of some of the most impressive features in the industry, one of the most inconvenient and is also one of the more complained about sites by investors. It had bragging rights previously as one of the largest volume of new investments in the industry (19 versus the average of 1). This alone made it one of the "must visit" sites for many investors (although volume has since waned). They also offer the most diverse mixture of asset classes and investment types of any site (every combination of commercial, debt/equity, direct investment/fund). This is really handy for diversifying your portfolio quickly. Additionally, they offer low minimums, and superior bankruptcy protection. And they have the distinction of breaking the 2016-2017 VC funding drought and raising an impressive $28 million. On the negative side, unlike It's closest competitors (Crowd Street and Real crowd), Realty Shares inserts itself as a middleman between the sponsor and the investor. This means that the investor cannot go directly to the sponsor for questions (which in my opinion is not ideal, because it can lead to a game of "telephone" where the original information is not passed along accurately). It also means that the investor cannot go directly to the sponsor for updates if things go wrong. And finally, it also means that the investor is paying an extra fee to Realty Shares for the structure, that isn't paid on other sites. Also, investor feedback on Realty Shares, was generally not positive, with several claiming that they would not use the company again after their experiences. Investors alleged dissatisfaction with inadequate management oversight when investments went wrong. For example one claimed: "One investment seemed to be going great until the final (largest) payment was expected where it turned out to be a 45% loss of capital. The sponsor performed extraordinarily poorly: only 4 of 13 properties in that investment turned a profit. If this is true, I would think that if RealtyShares was performing competent oversight, they would have noticed a severe problem like this much earlier, and would've had time to intervene and at least reduce the damage to investors. They do charge a fee for management, so it's not clear to me what that fee is buying." A couple of specific allegations of problems are listed below in the "problem investments" section. In September 2017, Realty Shares announced it had exited the residential loan origination business and has sold that portion of the company to Lima Capital. It also said it will focus on commercial real estate going forward. As of the writing of this review, I was still waiting for a response on the company as to whether Lima capital will be taking over any of the alleged distressed investments or if Realty Shares would be continuing to administer them. Investors have also claimed they experienced irregularities with the Realty Shares tax reporting for 2016. They said that tax documents were initially provided with incorrect or erroneous information and that customer service was generally unhelpful in resolving the issue (for example putting up corrections online and only some who complained rather than all investors, etc.).Other Advantages: Highest investment volume, most diverse asset classes and investment types, low minimums ($1k - $5k versus $10k average), superior bankruptcy protection, $60 million in venture capital. Disadvantages: Fees are a bit on the high side (from 1 to 2% versus a 1% average). Accolades: #2 for lowest minimums. Problem investments: (as reported by investors) 327 N Grenola Street: sponsor suspended preferred return in November 2016. October 2017:preferred return resumed, but allegedly with no communication from Realty Shares as to why, what had changed, whether it looks like things are back on track or not,etc. 84 South Union St: fix and flip that failed to return investor money when promised and still trying to sell after more than 2 years. 2018-06-02 an investor alleges that $525k of investor money for an investment on RealtyShares was received from the sponsor but not distributed by RealtyShares for over 17 days and counting. They claim that RealtyShares says "our engineering team is currently updating our servicing system, and we are working diligently to make sure everything is working properly before sending out the remaining principal". If this is true, it's not clear why it would take so long to do something that should be so routine, unless the platform is having significant issues. I've asked the investor to let me know if and when he claims he has finally received his payment. *Starred sites are tied and are shown in alphabetical order. For more raw data on the site (including investor and sponsor fees, legal structure etc.), or to easily compare it with the data of competitors, see the feature by feature comparison matrix.​ Where can I discuss other Realty Shares deals? You can do this with thousands of other investors in the private investor club. While the club is free, membership is restricted to investors who have no business connections to sponsors or platforms. Also, all members must agree to keep all club info confidential by signing a nondisclosure agreement. Click here to join or get more info. Who are Realty Shares Competitors? Here are the reviews and rankings for other similar sites. CrowdStreet 1031 Crowdfunding Real Crowd ArborCrowd Carlton Crowdfund Share States Roofstock Roofstock One SBRE Funds First Real Fund Realty Shares Equity Multiple Realty Mogul C.K. Mack Lending Home Holdfolio CityVest Prodigy Network Instalend All other sites (ranked and reviewed) How to pick? Check out our step-by-step guide. The quick guide to picking conservative real-estate deals (for accredited investors) Real Estate Tutorials: Looking to learn more about real-estate investing? What are the 4 investment strategies? (Part 1: core and core+) What are the 4 investment strategies? (Part 2: value-added and opportunistic) Should I invest in residential or commercial real estate? (Part 1: residential) Should I invest in residential or commercial real estate? (Part 2: commerical) What is the difference between equity and debt? Shutdown (1 out of 10 stars) Code of Ethics: To maintain objectivity, I do NOT accept any money from any outside sponsor or platform for ANYTHING (including but not limited to affiliate ads, advertising etc.). See code of ethics for more. Personal opinion only: All info is my personal opinion only as an investor. I am not an attorney, nor an accountant, nor your financial advisor. Always do your own due diligence and consult with your own licensed professionals before making any investment decision. Information is believed to be correct but may have errors, so use at your own risk. If you find an error, please let me know. Ratings are general: In my opinion, every investor comes from a different risk tolerance and financial situation, so there's no such thing as a single investment or platform that's great for everyone. There are many deals that aggressive investors love, which I won't touch, and vice versa. And every investor has their own way of doing due diligence. I believe there's no one right way to do it. So, the site ratings are based on criteria which I feel are important to the broadest range of investors (transparency, volume, bankruptcy protection, etc). And even though I have my own personal, conservative, due diligence method (and talk about how the site's deals measure up in the "deep dive section"), I don't use my personal criteria as a factor in the ratings. So for example, a high ranking/rating doesn't mean that I would personally invest in a site (and vice versa). Click here to see what's in my own portfolio. Have you used the above site before? What was your experience? << Back to the 100+ site rankings This site has been ranked and reviewed as part of our in-depth, 100+ site industry review. All data is believed to be correct, but may have mistakes. Please contact us if you notice one. All non-data (including rankings, investor comment summaries, etc.) are my opinion only. I'm just an investor and not an attorney, accountant, or certified financial advisor. To maintain neutrality: I do not own a portion of any of the companies reviewed.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,872
[ 128000, 697, 10231, 45285, 220, 2366, 17, 198, 19997, 323, 65175, 198, 27312, 69114, 45285, 198, 3923, 374, 69114, 45285, 5380, 1271, 5766, 279, 6020, 26885, 8838, 65873, 82, 430, 527, 63677, 389, 21907, 1475, 1023, 3477, 2816, 11, 358, 45373, 17773, 4287, 904, 3300, 505, 904, 4994, 25438, 477, 5452, 369, 4230, 57764, 320, 16564, 719, 539, 7347, 311, 22325, 14058, 11, 13172, 5099, 36434, 3580, 2082, 315, 32008, 369, 810, 627, 4387, 4723, 220, 22, 11, 220, 679, 23, 25, 69114, 45285, 706, 1629, 704, 315, 8515, 369, 11006, 7677, 323, 706, 9495, 1523, 311, 502, 15167, 627, 4387, 13806, 220, 1032, 11, 220, 679, 24, 25, 69114, 45285, 374, 1694, 42184, 555, 15167, 304, 264, 538, 1957, 19831, 627, 697, 10231, 45285, 374, 459, 19018 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 697, 10231, 45285, 220, 2366, 17, 198, 19997, 323, 65175, 198, 27312, 69114, 45285, 198, 3923, 374, 69114, 45285, 5380, 1271, 5766, 279, 6020, 26885, 8838, 65873, 82, 430, 527, 63677, 389, 21907, 1475, 1023, 3477, 2816, 11, 358, 45373, 17773, 4287, 904, 3300, 505, 904, 4994, 25438, 477, 5452, 369, 4230, 57764, 320, 16564, 719, 539, 7347, 311, 22325, 14058, 11, 13172, 5099, 36434, 3580, 2082, 315, 32008, 369, 810, 627, 4387, 4723, 220, 22, 11, 220, 679, 23, 25, 69114, 45285, 706, 1629, 704, 315, 8515, 369, 11006, 7677, 323, 706, 9495, 1523, 311, 502, 15167, 627, 4387, 13806, 220, 1032, 11, 220, 679, 24, 25, 69114, 45285, 374, 1694, 42184, 555, 15167, 304, 264, 538, 1957, 19831, 627, 697, 10231, 45285, 374, 459, 19018, -100 ]
Barbasol Championship Live Web Cam Road to the Breeders' Cup HS Sports Zone Quick links... BBN Tonight BBN Facebook BBN Twitter BBN Instagram High School Sports Zone True Blue Sports Sports SportsBBN Tonight Kentucky to play North Carolina in CBS Sports Classic The game will still be played in Las Vegas UK Athletics Coach John Calipari. Kentucky beats Mount St. Mary's 80-55. Photo by Sarah Caputi | UK Athletics By: Maggie Davis LEXINGTON, Ky. — The Kentucky basketball team will now play North Carolina in the CBS Sports Classic in Las Vegas at 5:30 p.m. ET. The Cats' previous matchup against Ohio State has been canceled due to COVID within the Buckeyes program. The game will still be played in the T-Mobile Arena in Las Vegas. Tickets which were already purchased for the original matchups are still valid for Saturday's rescheduled game. North Carolina is receiving votes in both major polls. The Tar Heels are led by sophomore guard Caleb Love (averaging 16.2 points per game) and junior Forward Armando Bacot (14.3 ppg). Kentucky played North Carolina last season in the CBS Sports Classic, when the Tar Heels won 75-63 with Love and Bacot scoring 25 of the Tar Heels' 75 points. For the first time since 2003, Hall of Fame coach Roy Williams will not be on the sidelines. First year head coach Hubert Davis, formerly a long-time assistant at North Carolina, has the Tar Heels sitting at 8-2 on the season, with wins over Michigan and Georgia Tech. North Carolina's two losses came back-to-back against a very good Purdue team and Tennessee. North Carolina leads the all time series with Kentucky 25-16. The Tar Heels were originally scheduled to play UCLA in the CBS Sports Classic, but the Bruins had to pull out of that game due to COVID-19 issues within their program.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,465
[ 128000, 3511, 18275, 337, 19134, 11406, 5000, 8215, 198, 58059, 311, 279, 75252, 388, 6, 11098, 198, 12228, 13482, 22967, 198, 25310, 7902, 1131, 426, 15967, 55314, 426, 15967, 5690, 426, 15967, 6405, 426, 15967, 14318, 5234, 6150, 13482, 22967, 3082, 8868, 13482, 13482, 198, 42079, 10306, 45, 55314, 198, 85856, 10279, 311, 1514, 4892, 13030, 304, 24991, 13482, 22591, 198, 791, 1847, 690, 2103, 387, 6476, 304, 16132, 18059, 198, 25554, 70831, 198, 73794, 3842, 3400, 575, 2850, 13, 26036, 34427, 10640, 800, 13, 10455, 596, 220, 1490, 12, 2131, 13, 11064, 555, 21077, 8171, 32973, 765, 6560, 70831, 198, 1383, 25, 62795, 17200, 198, 36345, 39649, 11, 23727, 13, 2001, 578, 26036, 19794, 2128, 690, 1457, 1514, 4892, 13030, 304, 279, 24991, 13482, 22591, 304, 16132 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 3511, 18275, 337, 19134, 11406, 5000, 8215, 198, 58059, 311, 279, 75252, 388, 6, 11098, 198, 12228, 13482, 22967, 198, 25310, 7902, 1131, 426, 15967, 55314, 426, 15967, 5690, 426, 15967, 6405, 426, 15967, 14318, 5234, 6150, 13482, 22967, 3082, 8868, 13482, 13482, 198, 42079, 10306, 45, 55314, 198, 85856, 10279, 311, 1514, 4892, 13030, 304, 24991, 13482, 22591, 198, 791, 1847, 690, 2103, 387, 6476, 304, 16132, 18059, 198, 25554, 70831, 198, 73794, 3842, 3400, 575, 2850, 13, 26036, 34427, 10640, 800, 13, 10455, 596, 220, 1490, 12, 2131, 13, 11064, 555, 21077, 8171, 32973, 765, 6560, 70831, 198, 1383, 25, 62795, 17200, 198, 36345, 39649, 11, 23727, 13, 2001, 578, 26036, 19794, 2128, 690, 1457, 1514, 4892, 13030, 304, 279, 24991, 13482, 22591, 304, 16132, -100 ]
FundYourselfNow wants to become an improved version of Kickstarter, with the benefits that are offered by the blockchain technology. On their platform, user can host both ICO and non-ICO projects and raise funds through regular FIAT but also cryptocurrencies. FYN will help list your project on FundYourselfNow platform, branding over 6500 investors. They can provide for you detailed project description and help to get you listed on at least 12 popular listing websites. FYN can also offer marketing services and help to write, edit and distribute marketing articles through top crypto media channels. The overall design of the platform seems user-friendly and easy to use. They provide a lot of information, variety of premium and normal packages and explain the offered services in details. The team is wide and each member has a detailed information about skills and previous experience. When it comes to the sole market, there is a strong competition among crowdfunding platforms both when it comes to the mainstream but also blockchain-based projects. The project looks very good and interesting, however there are already a lot of others successfuly funded projects that want to create their crowdfunding platforms that way I don't see why would both investors and people want to support another project of the same idea. I mean, in the mainstream crowdfunding market there are few leading sites, so maybe in the cryptocurrency market, few leading sites can also survice, but I'm not sure if that's possible at this point. I mean if I had to support one, I'd choose kickICO. I really like the design of this site. It looks good and doesn't distract from the information provided on the site. They are quite transparent in that matter and I think I can find all I want about this project. Bringing a crowdfunding platform to the blockchain environment makes it superior to mainstream ordinary platforms as it allows all the transaction to be transparent and the fees are highly reduced to the bare minimum. It also makes it possible to grant the funds directly to the project's wallet without any intermediaries. However, as there are other similar projects, I'm not sure if this one is superior to the others. We will see which one will win this battle.
{ "redpajama_set_name": "RedPajamaC4" }
8,541
[ 128000, 59440, 7927, 726, 7184, 6944, 311, 3719, 459, 13241, 2373, 315, 41080, 11, 449, 279, 7720, 430, 527, 9076, 555, 279, 18428, 5557, 13, 1952, 872, 5452, 11, 1217, 649, 3552, 2225, 47636, 323, 2536, 12, 33750, 7224, 323, 4933, 10736, 1555, 5912, 51635, 835, 719, 1101, 45074, 13, 435, 25259, 690, 1520, 1160, 701, 2447, 389, 13492, 7927, 726, 7184, 5452, 11, 44817, 927, 220, 13655, 15, 15167, 13, 2435, 649, 3493, 369, 499, 11944, 2447, 4096, 323, 1520, 311, 636, 499, 10212, 389, 520, 3325, 220, 717, 5526, 15182, 13335, 13, 435, 25259, 649, 1101, 3085, 8661, 3600, 323, 1520, 311, 3350, 11, 4600, 323, 16822, 8661, 9908, 1555, 1948, 19566, 3772, 12006, 13, 578, 8244, 2955, 315, 279, 5452, 5084, 1217, 22658, 323, 4228 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 59440, 7927, 726, 7184, 6944, 311, 3719, 459, 13241, 2373, 315, 41080, 11, 449, 279, 7720, 430, 527, 9076, 555, 279, 18428, 5557, 13, 1952, 872, 5452, 11, 1217, 649, 3552, 2225, 47636, 323, 2536, 12, 33750, 7224, 323, 4933, 10736, 1555, 5912, 51635, 835, 719, 1101, 45074, 13, 435, 25259, 690, 1520, 1160, 701, 2447, 389, 13492, 7927, 726, 7184, 5452, 11, 44817, 927, 220, 13655, 15, 15167, 13, 2435, 649, 3493, 369, 499, 11944, 2447, 4096, 323, 1520, 311, 636, 499, 10212, 389, 520, 3325, 220, 717, 5526, 15182, 13335, 13, 435, 25259, 649, 1101, 3085, 8661, 3600, 323, 1520, 311, 3350, 11, 4600, 323, 16822, 8661, 9908, 1555, 1948, 19566, 3772, 12006, 13, 578, 8244, 2955, 315, 279, 5452, 5084, 1217, 22658, 323, 4228, -100 ]
Thomas Verity's Criterion Theatre, Piccadilly Circus, London [Victorian Web Home —> Visual Arts —> Architecture —> London —> Theaters —> Thomas Verity —> Next] The Criterion Theatre by Thomas Verity. 1874. Piccadilly Circus, London W1. Detail of marquee. [Click on these images and those below to enlarge them.] According to the theater's own website, "In 1870 following the acquisition of the White Bear Inn site, and adjoining properties between Jermyn Street and Piccadilly Circus, caterers Spiers and Pond commissioned Thomas Verity to design a new development consisting of a large restaurant, dining rooms, ballroom, and galleried concert hall. Having commenced building work it was decided to alter the proposed concert hall (though retaining the composers names, which still line the tiled staircases to this day), to a theatre. . . . The Criterion retains an almost perfectly preserved Victorian auditorium." British Listed Buildings, which provides a detailed history and analysis of the building, points out that " Of original interior features of the Criterion Restaurant that survive the tunnel vaulted "Long Bar" with its "glistening" gold mosaic decoration and the first floor banqueting room are of note. The Criterion Theatre itself is exceptional in being located in the basement. Approached by foyer corridors and staircase lined with richly polychromed tiles and painted tile panels alternating with large plate mirrors the auditorium is still substantially that of 1874 with the 1884 remodelling. " Edward William Wyon's sculpture for the theatre Edwardian photograph of Piccadilly Circus Research and all photographs except for that at top left by Robert Freidus. Formatting, text, one photograph, and perspective correction by George P. Landow. You may use these images without prior permission for any scholarly or educational purpose as long as you (1) credit the photographer and (2) link your document to this URL in a web document or cite the Victorian Web in a print one.] Bradley, Simon, and Nikolaus Pevsner. London 6: Westminster. "The Buildings of England." New Haven and London: Yale University Press, 2003. "The Criterion Theatre." British Listed Buildings. Web. 27 October 2011. Archi- tecture Last modified 5 December 2005
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,802
[ 128000, 42493, 6383, 488, 596, 69500, 27315, 11, 26987, 35555, 14722, 87921, 11, 7295, 198, 58, 37225, 22865, 5000, 5492, 2001, 29, 20796, 17979, 2001, 29, 38943, 2001, 29, 7295, 2001, 29, 578, 11796, 2001, 29, 11355, 6383, 488, 2001, 29, 9479, 933, 791, 69500, 27315, 555, 11355, 6383, 488, 13, 220, 9674, 19, 13, 26987, 35555, 14722, 87921, 11, 7295, 468, 16, 13, 26855, 315, 3678, 17548, 13, 510, 2677, 389, 1521, 5448, 323, 1884, 3770, 311, 53744, 1124, 13, 933, 11439, 311, 279, 27803, 596, 1866, 3997, 11, 330, 644, 220, 9674, 15, 2768, 279, 24279, 315, 279, 5929, 24941, 17382, 2816, 11, 323, 91858, 6012, 1990, 622, 4289, 1910, 6825, 323, 26987, 35555, 14722, 87921, 11, 29068, 388, 20332, 388, 323, 71965, 44224, 11355, 6383 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 42493, 6383, 488, 596, 69500, 27315, 11, 26987, 35555, 14722, 87921, 11, 7295, 198, 58, 37225, 22865, 5000, 5492, 2001, 29, 20796, 17979, 2001, 29, 38943, 2001, 29, 7295, 2001, 29, 578, 11796, 2001, 29, 11355, 6383, 488, 2001, 29, 9479, 933, 791, 69500, 27315, 555, 11355, 6383, 488, 13, 220, 9674, 19, 13, 26987, 35555, 14722, 87921, 11, 7295, 468, 16, 13, 26855, 315, 3678, 17548, 13, 510, 2677, 389, 1521, 5448, 323, 1884, 3770, 311, 53744, 1124, 13, 933, 11439, 311, 279, 27803, 596, 1866, 3997, 11, 330, 644, 220, 9674, 15, 2768, 279, 24279, 315, 279, 5929, 24941, 17382, 2816, 11, 323, 91858, 6012, 1990, 622, 4289, 1910, 6825, 323, 26987, 35555, 14722, 87921, 11, 29068, 388, 20332, 388, 323, 71965, 44224, 11355, 6383, -100 ]
package net.sf.esfinge.gamification.processors; import java.lang.annotation.Annotation; import java.lang.reflect.Method; import net.sf.esfinge.gamification.achievement.Point; import net.sf.esfinge.gamification.annotation.PointsToUser; import net.sf.esfinge.gamification.mechanics.Game; import net.sf.esfinge.gamification.user.UserStorage; public class PointsToUserProcessor implements AchievementProcessor { private int quantity; private String name; @Override public void receiveAnnotation(Annotation an) { PointsToUser ptu = (PointsToUser) an; quantity = ptu.quantity(); name = ptu.name(); } @Override public void process(Game game, Object encapsulated, Method method, Object[] args) { Object user = UserStorage.getUserID(); Point p = new Point(quantity, name); game.addAchievement(user, p); } @Override public void process(Game game, Object encapsulated, Class<? extends Method> class1, Object[] args) { Object user = UserStorage.getUserID(); Point p = new Point(quantity, name); game.addAchievement(user, p); } }
{ "redpajama_set_name": "RedPajamaGithub" }
1,886
[ 128000, 1757, 4272, 42639, 19060, 69, 18177, 1326, 309, 2461, 17421, 1105, 401, 475, 1674, 8178, 5177, 94392, 280, 475, 1674, 8178, 30961, 21462, 401, 475, 4272, 42639, 19060, 69, 18177, 1326, 309, 2461, 13, 75708, 3860, 280, 475, 4272, 42639, 19060, 69, 18177, 1326, 309, 2461, 5177, 90370, 1271, 1502, 280, 475, 4272, 42639, 19060, 69, 18177, 1326, 309, 2461, 749, 112939, 1233, 21613, 280, 475, 4272, 42639, 19060, 69, 18177, 1326, 309, 2461, 3405, 7494, 5913, 401, 898, 538, 21387, 1271, 1502, 23798, 5280, 66695, 23798, 341, 1602, 2514, 528, 12472, 280, 2514, 935, 836, 401, 197, 6123, 198, 1241, 742, 5371, 20290, 7, 20290, 459, 8, 341, 197, 197, 11665, 1271, 1502, 11051, 84, 284, 320, 11665, 1271, 1502, 8, 459, 280, 197, 197, 13832 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1757, 4272, 42639, 19060, 69, 18177, 1326, 309, 2461, 17421, 1105, 401, 475, 1674, 8178, 5177, 94392, 280, 475, 1674, 8178, 30961, 21462, 401, 475, 4272, 42639, 19060, 69, 18177, 1326, 309, 2461, 13, 75708, 3860, 280, 475, 4272, 42639, 19060, 69, 18177, 1326, 309, 2461, 5177, 90370, 1271, 1502, 280, 475, 4272, 42639, 19060, 69, 18177, 1326, 309, 2461, 749, 112939, 1233, 21613, 280, 475, 4272, 42639, 19060, 69, 18177, 1326, 309, 2461, 3405, 7494, 5913, 401, 898, 538, 21387, 1271, 1502, 23798, 5280, 66695, 23798, 341, 1602, 2514, 528, 12472, 280, 2514, 935, 836, 401, 197, 6123, 198, 1241, 742, 5371, 20290, 7, 20290, 459, 8, 341, 197, 197, 11665, 1271, 1502, 11051, 84, 284, 320, 11665, 1271, 1502, 8, 459, 280, 197, 197, 13832, -100 ]
Category: Spirituality Karmic Dilemmas Today, I attended a fab networking event for the ladies and the question was raised about karma. Whether you believe that karma is about actual past lives or something more along the lines of what your higher self (or soul) wants to work on during this lifetime, this is my take on a few astrological considerations. General shape of the natal chart – here, we are looking for empty spaces (i.e. quadrants or hemispheres rather than single houses). Energy 'flow' in the chart is important to pinpoint blockages as well as overcompensations. I have absolutely nothing in the 3rd quadrant, which governs my personal development through relationships, socialisation and intellect. I've been married twice and have far too many university degrees. Overcompensation? You can bet on it. Chiron – is also a big karmic factor and guess what, he's conjunct my 7th house cusp! Is he telling me that I've suffered prior 'wounds' in relationship that had to do with balancing my own needs and that of the 'other'? If so, then not surprisingly does this often manifest as the typical Libra refrain (I have 4 planets in Libra) – 'I'll do anything for you to stay in the relationship'. The karmic lesson here involves learning to love myself so that I'm not so dependent on the love from my 'significant other'. Element balance and imbalance – here, we are looking for (1) no and/or (2) four or more planets in either fire, earth, air, or water. Again, we're looking for overcompensation and fixations. I have lots of air but no water in my chart and I often dream of water, not of drowning but of being constantly flooded. Water represents emotions. I don't deal well with emotions. Put air and water together and you have rain storms. Too many of those at once and there's flooding. Moon and the South node – here, we are looking for deeply instinctual patterns, something that I've done over and over before and so keep doing because it is so easy. My Moon is in the 12th house, the most karmic of the houses. This definitely has to do with 'mother-stuff' (I spent years on 'mother' in my therapy – and I do mean years) and of course emotions. Or rather, it has to doing with being 'detached' from my emotions because otherwise it causes too much personal pain with which I cannot deal. Don't be surprised to learn that my South Node is in Cancer. This is something that I've done gazillions of times before. Doesn't this tie in a bit too nicely with my lack of 'water' and recurrent 'mother issues'? What does your chart say about your karma? The Dragon's Head Imagine, having a clear picture delivered from your higher self of what you're meant to accomplish during this lifetime, a picture that ordinary astrological techniques and ordinary astrologers cannot provide? Just like the Tropical zodiac (developed in ancient Greece) used by western astrologers and the Sidereal zodiac (older than the hills) used by eastern astrologers, the Draconic zodiac is a method of assigning the planets (and other important points) to one of the twelve zodiac signs. The Sidereal zodiac lines the planets up against the fixed stars or constellations. The Tropical zodiac (now 28 degrees out of sync with the Sidereal) is a moving target. It lines 0 degrees Aries up with the vernal equinox which, because of the earth's wobble on its axis, shifts ever so slightly each year. The Dragon Speaks The cosmic dance of Rahu, the Dragon's head and Ketu, the Dragon's tail The Draconic (Dragon) zodiac is a completely different kettle of fish. Although based on the tropical zodiac, it realigns all planetary placements in keeping with the north lunar node (the dragon's head). It is the cosmic dance of the two lunar nodes which plots the predictable point at which the moon will cross and crisscross the ecliptic (or the apparent path of the sun through the sky). Traditionally, the lunar nodes are more spiritually inclined than the rest of the planets/points; the north lunar node heralds your future, your destiny, whilst the south lunar node symbolises your past, as well as what's holding you back. The upside of this is that whilst both the Tropical and Sidereal zodiacs rely completely on the Sun's movements, the Draconic captures the cyclical waltz between the Moon and the Sun. It is for this reason that the Draconic zodiac is believed to capture the essence of a soul (or higher self) incarnating into the earth plan as well as documenting the karmic strengths and weaknesses carrying on through multiple incarnations (rather like the Akashic Records). If the natal chart erected using the Tropical zodiac fleshes out the personality or temperament of the incarnated individual, the chart erected using the draconic zodiac provides the skeletal framework. It's the equivalent of having a snapshot of your higher self and its intended evolutionary goals before coming into this incarnation, highlighting important lessons intended to be learned this time around. Destiny Calls Where the tropical natal chart and the draconic charts intersect, there's much information to gain; in essence, this is destiny calling. As you can see, the structure of the chart remains the same but the planets and angles will have changed sign. In my Draconic chart, my Tropical Sun has shifted from Libra to Sagittarius. Indeed, although using the traditional western Tropical zodiac, my chart is primarily air (6 planets), using the Draconic zodiac, it is primarily fire (6 planets). Tropical zodiac on the inside compared to Draconic zodiac on the outside ring. To me this suggests that over many lifetimes, I've nurtured a fiery optimistic, spiritual, philosophical, and holistic approach. This has likely been accomplished through extensive travel as well as a good deal of higher education (Sagittarius). My natal Tropical Moon in Gemini loves learning, reading everything upon which I can lay my hands. Certainly, this would fuel a continuing need to develop my wisdom but Sagittarius implies more understanding than does Gemini, which is generally more interested in gathering information than doing much with it. My Draconic Moon in Leo may help here because it comes more from the heart (Leo) than the head (Gemini). Leo brings natural authority and fierce sense of pride to the table, a personal pride that quite honestly, I've never actually felt before. Having my Draconic Mercury in Sagittarius will also help in applying what I learn across a broader board. It might also be the source of my active interest in creative writing, which I've long believed is not really explained by my natal chart. In my Tropical birth chart I have no fire and so I have never believed that my intuition (fire) was reliable. But then again, looking back over nearly six decades, my intuition never has let me down. I also have struggled keeping up faith in myself and in life in general, but all that fire in my Draconic chart suggests that perhaps I overdid this (i.e. held too high an opinion of myself) in prior lifetimes and so in this life, I needed to learn some humility. This theme of humility is mirrored in the closest connection I've noted between the two charts – that of the Tropical Pluto sitting close to Draconic Jupiter. Together, these suggest a desire for power that might have got out of hand in past lives. There's also plenty to suggest that Jupiter (king of the gods) is my spiritual guiding light (all that Sagittarius, which Jupiter rules) but in this life my Jupiter in Gemini is in detriment. Perhaps I need to find a new and less traditional way to express my urge for power? Destiny is Answered I'm still working with this new zodiac and am very excited about what it might add to my astrological coaching mix. Next, I'll explore midpoints and synastry. There's also a whole new way of thinking about transits and progressions. Watch this space. The name of the game is shame? I don't know about you, but I often worry about whether by taking poor decisions, I might be making myself bad karma. Mind you, I'm not even certain what karma is, much less how it might work but I've always been told that 'what goes around does come around' and for the most part, that seems to be true. Yet, is comeuppance guaranteed? I mean, considering all that's happening in the world of politics at the moment, I really do have to wonder. Might it be that some folks are so blessed that they can do whatever they want without consequence? Regardless, I opt for sensible guidelines and given that Saturn and Pluto are together dancing their jig in Capricorn, I'll take my lead from them and so 'shame' will be the name of my ethical game. Rather than thinking of shame as a punishment, as we are often wont to do, I figure shame keeps us from doing things that the person that we want to be ought not to do. In this context, shame is not a painful conclusion but a joyous opportunity. For Buddhists, shame is the frontline defence against inappropriate actions. Such action not only produces negative karma (locking you into the painful cycle of rebirth) but also leads to difficult rebirths. Even non-Buddhists find inappropriate actions to be trouble. Folks tend to get annoyed when one steals, murders, and cheats. Likewise, they shy away from those who frequently lose their temper and fail to honour their commitments. Indeed, during the course of a single day, you are confronted with a whole host of activities that someone considers inappropriate. If you wished to comply with all of them, you might as well just stay home. In reality, we cannot always abide by an external set of rules when deciding what we should or should not do. Yet assuming that you do want to be ethical, then what standard might you use? I suggest using your own 'sense of shame'. Elizabethan Protestantism – every day life in the realm The moderate Protestantism of Elizabeth I was a compromise not only between the Protestant and Catholic faiths but also between the various competing factions in the Protestant movement (i.e. Calvin vs. Luther and Zwingli). During her long reign, Elizabeth's religious policy made life easier for some and harder for others but, overall, at least initially, it set the nation-state on a more even keel than it had enjoyed in years. If avoiding civil disorder was one of Elizabeth's general political aims, then her religious policy was more of the same. For certain individuals like John Shakespeare, this doubtless caused considerable consternation. As a Catholic, how should he fulfil his job to remove the trappings of Catholic pomp and circumstance from Stratford's Guild Hall? Although we do not know how he personally felt about this responsibility, we can imagine that it was difficult to part with something so culturally endemic and visually rich as the wall paintings that on his orders, were white-washed. Similar sentiments may lay at the heart of Roger Martyn's lamentations regarding required changes in his parish church. Like John, Roger was forced to part with an entire way of life (i.e. celebrations and festive meals) to which he had developed an emotional bond. Interestingly, for whatever reason, Roger's accounts highlighted the impact of these changes not on his personal religious feelings and beliefs, but on the outward trappings of such. Not everyone believed such destruction to be wrong. Iconoclasm, such as forced upon Roger and John had biblical roots. For religious men like John Jewel (Apologica Ecclesia Englicanae), such lush and vibrant Catholic imagery was proof positive that, at least according to the scriptures, the Roman Catholics were the heretics, not the Protestants. For many Catholics, Elizabeth's policy may well have been welcomed, at least at first. Not only did it allow men like John Donne and Ben Jonson to publicly switch their religious allegiance, but it also provided Catholics with a cover under which to carry on (quietly) as before. If they were willing to superficially comply with the requirements demanded by Elizabeth's religious policy, the Catholics were, for the most part ignored. Elizabeth had no desire to meddle with her subject's inner beliefs – i.e. the windows to their souls. However, later in her reign, when fears over the claims of Mary Queen of Scots to the English throne were rampant and religious fighting in Europe accelerated, Elizabeth cracked down on those Catholics who stuck their heads above the proverbial parapet. Doubtless, towards the end of Elizabeth's reign, it again became uncomfortably obvious for Protestants and Catholics alike, that their religious futures were uncertain. In conclusion, although Elizabeth's moderate religious policy had initially stabilised England's political situation (for better or for worse), but the end of her reign another big and unsettling change was in the cards. Who would know if perhaps if would not be of the same magnitude as that suffered under the auspices of her father, Henry VIII, with the Reformation? Jung's Astrological Moon Whilst discussing Jung's Red Book (Liber Novus), Liz Greene reminds us that when interpreting the Moon in an astrological chart, we should keep in mind Jung's vision of the Moon as a fluid, living principle, always in flux. To assume the astrological Moon corresponds solely to Jung's Anima is a mistake. Equally, it is a mistake to assume that she is solely the nurturing mother. Indeed, Jung saw the astrological Moon as both deeply complex and ambivalent – the archetypal core of which equates to the triple-bodied lunar goddess of antiquity, Hecate. Consider four of the Red Book's female personages: Salome – the daughter of Elijah, the wise old prophet who presides of the 'temple of the sun'. Salome, with long black hair and dressed in red, is never pictured without her father. She is associated both with (1) the darkened skies of the 'blood Moon' (reportedly visible at the time of Jesus' crucifixion) and (2) the blood-thirsty seductive temptress, the daughter of Herodias, who demanded the severed head of John the Baptist from her besotted lover. In this regard, Salome is associated with the tarot card, The Hanged Man, who although still possesses his head, is unable to use it (i.e. it is no longer above, but below) symbolising loss of the rational intellect when confronted with realm of the unconscious. Salome is associated with the dark moon. She is bloodthirsty and dangerous. Old Scholar's Daughter – imprisoned by her father in an old stone castle in midst of a forest, this pale and ghostly girl is shown with the crescent moon. Like the Greek goddess, Persephone, she is prevented by her parent from developing into a fully-grown woman. Although Jung considers her to thus be unworldly, she informs him that she knows more about 'real life' than does he. At the end of their brief chat, Jung has fallen in love with her and she disappears into a shaft of moon light, leaving behind a bunch of red roses. The roses, Liz suggests, links her to Venus, the erotic goddess of the ancient Greeks, who interestingly does not otherwise figure in the Red Book. But unlike with the dangerous eroticism of Salome, Jung had little to fear from this pretty young girl; indeed, she offered him much to learn. Associated with the tarot card, The Moon, the Old Scholar's Daughter offers a doorway to the unconscious, a scary place in which wisdom resides. It is tempting to equate her solely with the crescent moon, but she shares this 'honour' with the Anima. The Cook – along with the Old Scholar's Daughter, the Cook is associated with the tarot card, The Moon, but the Cook takes this proverbial walk on the dark side to a completely new and different level. Large and fat and always pushing food, The Cook seems simple enough, the traditional house-frau. But in reality, she is unashamedly two-faced. After eating the food (nourishment) she provides, Jung falls asleep and wakes up in the underworld ('the realm of mothers'). In this regard, The Cook is more dangerous than even Salome because what you see with her is never what you get. The Cook is associated with the full moon, also a gateway to the unconscious, but under no circumstances is she to be trusted. The Anima – although Jung never meets with the Anima, he does depict her dressed in blue and kneeling in prayer. She is at once the celestial mother, the chalice or Holy Grail (drink of her and attain immortality), the spiritual bride and mother, as well as the daughter of the stars. In his tarot deck, Waite shows her as The High Priestess, the guardian of hidden wisdom and spiritual mediator between the worlds, above and below. Notice that the High Priestess sits with the crescent moon at her feet. In summary, astrologers ought not to consider the astrological Moon as either this or that, but instead as a fluidity that morphs over time. The imagery of the classical triple-bodied lunar goddess, Hecate, is in keeping with Jung's complicated (and often contradictory) lunar journeys. In the Red Book, the astrological Moon represents the entire spectrum of the lunar myth and cycle, from the dark of the new moon and back again. Unlike classical astrology that divides the planets into either malefic or benefic, Jung's astrological Moon at once both and neither. She can be dangerous – even treacherous. Equally, however, she offers the opportunity to plumb the depths for the wisdom that resides in the unconscious- the wisdom each of us must someday tap if we are to further ourselves on that all important path to individuation. Greene, L. (2018). The Astrological World of Jung's Liber Novus; Daimons, Gods, and the Planetary Journey. Abingdon: Routledge. Greene, L. (2018). Jung's Studies in Astrology: Prophecy, Magic and the Qualities of Time. Abingdon: Routledge. Millennials – an astro-generational profile in action Let's assume that the generation known as the Millennials (also known as Generation Y) were born between 1982-2004, a period of about twenty-two years. Let's also assume that a recent article in The Atlantic (16 January 2018) is correct that not only are the Millennials the most 'stressed' generation in recent history, but they also are responsible for an astrological revival. If, as the article purports, stress makes astrology look 'shinier', then what might this generation's stress be all about and how might astrology be helping them to deal with it? Given that at the moment, the world is characterised by intolerance, lack of discipline, unprincipled behaviour, economic insecurity, and self-serving aggression, we can understand why this generation is feeling stressed. Much of what they hold to be of value (tolerance, freedom, idealism) is being trashed by an older, more experienced generation, a group that the Millennials would love more than anything to be able to respect. We can also understand their interest in astrology. If traditional ways of finding meaning (i.e. religion) are no longer working, being so idealistic, an established, ancient and slightly rebellious wisdom will be naturally appealing. The good news is that in 2025, things should look markedly better for the Millennials. The energy will be freer as well as progressive; much more to their liking. Detailed Analysis Year Pluto Neptune Uranus 1982 – 1983 Libra Sagittarius Sagittarius 1984 – 1988 Scorpio Capricorn Sagittarius 1988 – 1995 Scorpio Capricorn Capricorn 1995 – 1996 Sagittarius Capricorn Aquarius 1998 – 2003 Sagittarius Aquarius Aquarius 2003 – 2004 Sagittarius Aquarius Pisces A quick look at the above chart suggests that during the period 1982 -2004, the prominent zodiacal energies were in play: Sagittarius Expansion, movement, and broad vision. It is also associated with a tolerant attitude, a passion for life as well as a Pollyanna outlook – 'tomorrow' will (somehow) be better. Faith. Capricorn Patience, determination, reliability, authority, mastery, discipline, tradition, and economic stability. As with fine wine, with Capricorn there's a tendency to markedly improve with age (and experience). Aquarius Rebellious spirit, youth, and innocence. Humanitarian outlook, uncompromising, idealistic, principled, technologically savvy. According to Ebertin, the combination of the planets Pluto, Neptune, and Uranus can be summed up as a tendency to feel at the mercy of external conditions, against which one often remains unable to muster a firm stand. This combination also imparts a sympathetic understanding of human nature combined with a progressive spirit. Astro-profile for Millennials Tolerant Freedom-loving Principled Respect for wisdom, tradition, age, and authority In regards to the world in which we currently live, Pluto is in Capricorn, Neptune is in Pisces, Uranus is in Aries (about to move into Taurus). Broadly, this translates into the collapse of traditional authority figures and well as undermined financial security, spirituality is confused and chaotic, the world inspiration is focused on war and aggression. When Uranus enters Taurus in May 2018, expect even more disruption in economic and financial security, although this time it at least it will be both experimental and progressive in nature. New solutions for old problems? Let's hope so! Stress is about testing and strain. The focus is on the breaking point. The results are hardship, adversity, and affliction. For a generation who is both idealistic and visionary, the reality of present day hardship and adversity will be all the harder to take. Being both principled and tolerant, the Millennials will have a hard time digesting racism and similar 'intolerance'. Whilst they keeping hoping that things will get better, by now, they are probably getting impatient yet don't feel empowered to take action and make a difference. Because of the emphasis of Sagittarius in their makeup, they have a pressing need to discover why this is happening and with traditional religion (as source of meaning) in its continued demise, they may well turn to astrology (an ancient, if not slightly rebellious wisdom) for answers. I'm also guessing that as a whole, the Millennials will feel like they've come into their own when, in 2025, Pluto finally moves into Aquarius; the energy will not only be more progressive, but also inspired. Uranus will also be shifting into Gemini and with that comes some freedom. Finally, Neptune will shift from Pisces (meltdown) into Aires (action); the waiting is over and time to move forward. Zen riddles that I like… Kõ-an – a paradox anecdote or riddle, used in Zen Buddhism to demonstrate the inadequacy of logic and provoke a more direct perception of reality called enlightenment. Kõ-ans have always exercised an intellectual fascination over those who have come in contact with them. Some have found Kõ-ans profound and intellectually challenging while others have dismissed them as meaningless and absurd. But especially for those living in societies built on Enlightenment principles, the anti-rationalism of Kõ-ans has been a large part of their appeal. Although Reason is useful to conceptualize and categorize, it can also trap us in a limited and arbitrary view of the world. Once Reason gets tangled up with our socially conditioned biases, then rather like blinkers on a horse it can do no more than channel us down a predetermined path. The practical purpose of Kõ-ans is not to rid us of our intellectual capacity but instead to allow it to function in a dispassionate way. This involves breaking down the everyday tyranny of our conditioned intellect by demonstrating the contradictions and absurdities to which it would otherwise necessarily lead. Unlike puzzles and riddles, Kõ-ans do not have pat answers. Indeed, many Kõ-ans are not even in the form of a question. When used properly, Kõ-ans set trains of thought in motion and then derail them. With the continuity of our internal dialogue broken, we are no longer able to maintain our (false) sense of reality. A properly constructed Kõ-an should contain many layers of personal meaning. It is most certainly not a case of 'one size fits all'. According to Buddhist teaching, Truth can only be experienced by those who seek Truth for its own sake. It can never be denied to those who are worthy as equally it can never be imparted to those who are not. What is Spirituality? I'm sure that I should know… A client asked for astrological insight on her spirituality. But what she meant by that, she wasn't too sure. I told her she wasn't alone in her confusion and suggested that we explore this together. She wasn't too keen on that, however. For her, spiritualty was too personal. OK – so I decided to come up with something by myself. It couldn't be that hard, could it? After all, I do have an MA in the Study of Mystical and Religious Experience (University of Kent, at Canterbury). Revisiting my work from that course, I realised that it's harder than I'd anticipated – at least hard in the sense of pinning down anything specific about the definition of spirituality. For the record, here's my shortlist: Finding purpose or meaning, Tuning in to soul or psyche, Giving over to a 'higher self', Connecting with deity or the divine. Granted, I may not know exactly for what I'm looking, but at least, as an astrologer, ought I not know where to look? Astrologically, traces of spirituality (however defined) are bound to show up in one's natal chart. But where exactly should I start? Jupiter is the most likely culprit, you say? Sure, why not. As long as you realise that Jupiter looks for meaning in your life – not mine – he is, after all a personal planet. How about Neptune then? There's a distinct possibility. Astrological Neptune most certainly has been ascribed spiritual qualities. But if you're looking for some 'truth', then Neptune will be problematic, as I'm sure you can imagine. If it's one thing about viewing the world through rose-tinted glasses that you can definitely say, it's that what you see is not what you'll get. How about Saturn, then? At least he doesn't lie. Not only that, but he's hugely practical and possibly good for my bank account. However, upon further reflection I'm forced to admit that Saturn's brand of spirituality probably won't be as uplifting as I'd like. Not only is he dark and dreary, but also associated with death and misfortune. Even if I were willing to overlook that, Saturn is much too keen to point out my weaknesses and vulnerabilities. If I'm really serious about my spirituality, then maybe I should go for organised religion. After all, they have been established by minds greater than mine. But after consideration, I've decided that I'm not that much into the suffering and sacrifice of Christianity and even if I were, I don't see the worth of a paternalistic god. If He is only going to help those who help themselves, then of what worth is He? Besides I know that 'believing' can be dangerous and suspect that it isn't very spiritual either. I mean, look at the Crusades – they were all about belief – and how 'enlightened' were they? How about Buddhism? That sounds like my cup of tea. Not only have I pretty much given up consumerism but I'm also into yoga and meditation. Yet all that stuff about non-attachment and ego-surrender doesn't really work that well in the western world, at least not unless I no longer have a mortgage, which unfortunately, I still do. It's been awhile since I've done much with the ancient mystery religions. Definitely time to revisit those! Whilst I'm at it, modern mystery 'religions' like the Golden Dawn have always fascinated me and then – there's alchemy and the kabbalah! The Sorcerer's Apprentice Once, I knew a Belgian 'white' witch who had been a powerful (hereditary) black magician. At the height of his powers, he could kill a man just by looking at him, or at least so he said. Sounds a bit much but I believed him – not the least because he had a Pluto Square Mercury and Pluto sextile Venus – both within seconds of arc. For some, tapping into outer planetary energies like Pluto comes easy. Presto! Results! Yeah! Yet these energies are particularly dangerous because they will remain forever beyond the personal Ego's grasp. Not surprisingly, then, after partaking in a power battle with other black magicians, my friend awoke in the middle of the Belgian Ardennes with 70% burns over his body. He made promise to himself then and there that if he didn't die, he'd mend his magical ways and he did. My 'white' witch friend learned the hard way that there are two sides to the magical equation. Because of this, he was always critical of 'New Age' practitioners who focus only on 'goodness' and 'light'. Like the Sorcerer's Apprentice, the uninitiated usually fail to understand the true nature of the energies at hand and, in their inexperienced hands, things can quickly get out of control. Even in the hands of the very experienced, things can and do go terribly wrong. I'm only too thankful that I do NOT have Pluto in the mix with with my personal planets. If did, I'd be joining ranks with some seriously powerful witches and ceremonial magicians. That's much too much responsibility for me and I know it. But what if some 'goodness and light' article/post stimulates someone with tight Pluto contacts to play their hand at the game? A good magician works with the forces of nature – not against them. He knows the difference of what he can and cannot change. A good magician full well knows that there are 'dark forces' in the universe and, whilst he may not actively seek them out, he is prepared to deal with if needs be. Today and Tomorrow are Queen of Sword's Days With the Sun in Virgo (discerning) and the Moon in Aries (daring & defiant), today and tomorrow are Queen of Swords days. The Queen of Swords is not only tenacious, but also prone to being argumentative. Nothing escapes her all-encompassing gaze. She possesses more than ample intellectual capabilities to process what she's learned. Because she is by nature an independent woman, she is oft seen as secretive and aloof. If truth be told, she likes it that way because, as the result, she owes her allegiance to none but herself. Most of the time, this serves her well. After all, if she's to accurately discern the motives of others, she can't afford to be, herself, emotionally involved. Yet her life isn't always easy and it's safe to say that sometimes she resents her reputation as being dangerous or even cruel. The truth of the matter is that she's neither intolerant nor narrow minded as her detractors would have you believe. The best way to use this energy, is to make keen observations about your environment. With help from this queen, it won't be hard. Just ensure that you use any conclusions you might draw from such observations in an ethical way – else you may find yourself caught up in the nasty thorns of this queen's beloved rose garden. Never forget that the suit of swords in the tarot deck stands both for justice as well as destruction.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,580
[ 128000, 6888, 25, 17326, 10965, 198, 42, 2227, 292, 423, 458, 90636, 198, 15724, 11, 358, 18677, 264, 9765, 29130, 1567, 369, 279, 23628, 323, 279, 3488, 574, 9408, 922, 71542, 627, 25729, 499, 4510, 430, 71542, 374, 922, 5150, 3347, 6439, 477, 2555, 810, 3235, 279, 5238, 315, 1148, 701, 5190, 659, 320, 269, 13836, 8, 6944, 311, 990, 389, 2391, 420, 19569, 11, 420, 374, 856, 1935, 389, 264, 2478, 47804, 31356, 38864, 627, 15777, 6211, 315, 279, 308, 4306, 9676, 1389, 1618, 11, 584, 527, 3411, 369, 4384, 12908, 320, 72, 1770, 13, 30236, 1821, 477, 17728, 285, 65733, 4856, 1109, 3254, 15316, 570, 12634, 364, 5072, 6, 304, 279, 9676, 374, 3062, 311, 67638, 2565, 1154, 439, 1664, 439, 927, 5807, 729, 811, 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 ]
[ 6888, 25, 17326, 10965, 198, 42, 2227, 292, 423, 458, 90636, 198, 15724, 11, 358, 18677, 264, 9765, 29130, 1567, 369, 279, 23628, 323, 279, 3488, 574, 9408, 922, 71542, 627, 25729, 499, 4510, 430, 71542, 374, 922, 5150, 3347, 6439, 477, 2555, 810, 3235, 279, 5238, 315, 1148, 701, 5190, 659, 320, 269, 13836, 8, 6944, 311, 990, 389, 2391, 420, 19569, 11, 420, 374, 856, 1935, 389, 264, 2478, 47804, 31356, 38864, 627, 15777, 6211, 315, 279, 308, 4306, 9676, 1389, 1618, 11, 584, 527, 3411, 369, 4384, 12908, 320, 72, 1770, 13, 30236, 1821, 477, 17728, 285, 65733, 4856, 1109, 3254, 15316, 570, 12634, 364, 5072, 6, 304, 279, 9676, 374, 3062, 311, 67638, 2565, 1154, 439, 1664, 439, 927, 5807, 729, 811, 627, -100 ]
As you may already be aware of, I hosted two bashes at my house here in San Diego (2010 and 2011) but was not able to host one this year. Unfortunately I never really explained why and I feel I owe my Carvin friends an apology. The reason I didn't host the party this year is that I ended up in the hospital instead. So back in May, 3 days after I turned 40, I ended up at the hospital and was diagnosed with a rare neurological condition called ADEM. In my case an MRI discovered that I had several splits in the mylan coating protecting the nerves in my spinal cord. This caused some numbness and extreme weakness in my legs, even to the point were I could not walk for about a week and a half. So as you can guess I was in no mood or condition to lug 100 pound cabinets from my upstairs jam room to the garage to host another bash. The good news is that I am back on my feet, and even though I'm not at 100%, I'm confident that it will get better (crosses fingers). I'm not fishing for sympathy or anything like that, (believe me I've done enough "whoa is me" for a dozen people) but I was just reading another post about bashes or lack there of and felt that I really need to address the San Diego 2012 bash and why I wasn't able to host it. So again I'd like to say I'm sorry for not keeping my forum friends in the loop regarding the San Diego/Alpine/Orange county bash. All that being said I am motivated to make the 2013 the biggest one yet! So I'll be trying to work that one up for the next 4th of July (our normal weekend for the bash). Flock's sparkle finished SB. By the way he did this himself, and it is not a Carvin option. Anyway I hope you folks enjoyed the pics and have a great day. Good luck with your illness! I have a friend with MS, which I believe is somewhat similar, and it is somewhat life changing, but as long as you roll with it and take care of yourself, that usually can help mitigate it a lot. Wish you all the best, I'm glad you're better now! When this next bash happens I'll make sure I drive down to SD from LA to be a part of it! Yes what I have is similar to MS. With MS the splits in the mylan happen over time and keep popping up, while with ADEM it tends to be all at once and a one time thing. I talked with my neurologist on Friday and it looks like another MRI is in my future. Hopefully its fixing itself and I can go on with my life and forget about all of this crap. It would be great to meet with you at the next one. So the first one was very last minute, and the second went a bit better. Like I said now that we missed 2012, I think 2013 needs to be even bigger to make up for lost time. Even though I was running around playing host, it was still a lot of fun. Heck we even had a father son jam playin' Zep and Santana. Oh and Flock got behind the kit and showed off his drumming chops for his wife... and the food... oh my! If I didn't live all the way the hell on the other side of the country, I'd be there in a heartbeat. Jams are SO much fun!
{ "redpajama_set_name": "RedPajamaC4" }
765
[ 128000, 2170, 499, 1253, 2736, 387, 8010, 315, 11, 358, 21685, 1403, 293, 14380, 520, 856, 3838, 1618, 304, 5960, 18842, 320, 679, 15, 323, 220, 679, 16, 8, 719, 574, 539, 3025, 311, 3552, 832, 420, 1060, 13, 19173, 358, 2646, 2216, 11497, 3249, 323, 358, 2733, 358, 42210, 856, 3341, 9799, 4885, 459, 41258, 627, 791, 2944, 358, 3287, 956, 3552, 279, 4717, 420, 1060, 374, 430, 358, 9670, 709, 304, 279, 8952, 4619, 13, 2100, 1203, 304, 3297, 11, 220, 18, 2919, 1306, 358, 6656, 220, 1272, 11, 358, 9670, 709, 520, 279, 8952, 323, 574, 29704, 449, 264, 9024, 64908, 3044, 2663, 362, 95406, 13, 763, 856, 1162, 459, 52460, 11352, 430, 358, 1047, 3892, 41567, 304, 279, 856, 10946, 41394, 22973, 279, 50581 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2170, 499, 1253, 2736, 387, 8010, 315, 11, 358, 21685, 1403, 293, 14380, 520, 856, 3838, 1618, 304, 5960, 18842, 320, 679, 15, 323, 220, 679, 16, 8, 719, 574, 539, 3025, 311, 3552, 832, 420, 1060, 13, 19173, 358, 2646, 2216, 11497, 3249, 323, 358, 2733, 358, 42210, 856, 3341, 9799, 4885, 459, 41258, 627, 791, 2944, 358, 3287, 956, 3552, 279, 4717, 420, 1060, 374, 430, 358, 9670, 709, 304, 279, 8952, 4619, 13, 2100, 1203, 304, 3297, 11, 220, 18, 2919, 1306, 358, 6656, 220, 1272, 11, 358, 9670, 709, 520, 279, 8952, 323, 574, 29704, 449, 264, 9024, 64908, 3044, 2663, 362, 95406, 13, 763, 856, 1162, 459, 52460, 11352, 430, 358, 1047, 3892, 41567, 304, 279, 856, 10946, 41394, 22973, 279, 50581, -100 ]
basis, but we are sold out in several sizes already. are expecting to hit our maximum again this year !!! long-sleeve, Next Level brand shirt. Shirts are in unisex sizes. to guarantee a shirt.  You'll want one of these babies! They were featured in NY during Fashion Week...seriously! -up, before the Trot Thursday morning, or order one by clicking here. finisher's medal to celebrate our 10th year of trotting! beer from our friends at The Fermentorium at the finish line. YAY! be 21+ years old to have a beer. meteorologist at CBS 58 will be the emcee for our event. from Twister), are Cedarburg residents. LaRosa Landscape Co. The walk is not chip timed. treats and drinks in the SFB gym. which gives them a huge advantage over us. Covered Bridge Road, Cedarburg (about 1/3mi north of 5-Corners). Packets will also be available for pick up from 8:00-9:30 AM on race day. Thank you to our generous sponsors (click on name for website):. Both the run and walk courses will start and end in front of St. Francis Borgia School, 1425 Covered Bridge Road, Cedarburg, WI (North of 5-Corners). The run is a little longer than 5K (3.4mi) and is a loop around a mostly rural, scenic area in the Town of Cedarburg. About 1/2 of the run is on a paved bike trail. See the map below. The walking route will be on streets and a cross country trail designed by La Rosa Landscape Co. Some strollers may have trouble along the route, depending on weather conditions. Thicker tired "baby jogger" type strollers will be fine. Please check the weather before you head out in the morning, and dress accordingly. A northwest wind is typical in November and it will be cold on race day. Brrrrr!
{ "redpajama_set_name": "RedPajamaC4" }
2,407
[ 128000, 89926, 11, 719, 4194, 906, 4194, 548, 6216, 704, 304, 3892, 12562, 2736, 627, 548, 4194, 17557, 287, 311, 4295, 1057, 7340, 1578, 420, 1060, 33970, 198, 4930, 1355, 8669, 588, 11, 9479, 9580, 4194, 13781, 15845, 13, 1443, 20242, 527, 304, 653, 76353, 12562, 627, 998, 4194, 8890, 277, 14164, 264, 15845, 13, 220, 4194, 2675, 3358, 1390, 832, 315, 1521, 24869, 4999, 7009, 1051, 15109, 304, 12551, 2391, 31700, 10563, 1131, 805, 13610, 4999, 5352, 11, 4194, 15145, 279, 90330, 7950, 6693, 11, 477, 2015, 832, 555, 18965, 1618, 627, 31250, 261, 596, 37712, 4194, 998, 18890, 1057, 220, 605, 339, 1060, 315, 57677, 1303, 4999, 48895, 505, 1057, 4885, 520, 578, 29562, 98745, 2411, 4194, 266, 279, 6381, 1584, 13, 816, 3097, 4999, 1395 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 89926, 11, 719, 4194, 906, 4194, 548, 6216, 704, 304, 3892, 12562, 2736, 627, 548, 4194, 17557, 287, 311, 4295, 1057, 7340, 1578, 420, 1060, 33970, 198, 4930, 1355, 8669, 588, 11, 9479, 9580, 4194, 13781, 15845, 13, 1443, 20242, 527, 304, 653, 76353, 12562, 627, 998, 4194, 8890, 277, 14164, 264, 15845, 13, 220, 4194, 2675, 3358, 1390, 832, 315, 1521, 24869, 4999, 7009, 1051, 15109, 304, 12551, 2391, 31700, 10563, 1131, 805, 13610, 4999, 5352, 11, 4194, 15145, 279, 90330, 7950, 6693, 11, 477, 2015, 832, 555, 18965, 1618, 627, 31250, 261, 596, 37712, 4194, 998, 18890, 1057, 220, 605, 339, 1060, 315, 57677, 1303, 4999, 48895, 505, 1057, 4885, 520, 578, 29562, 98745, 2411, 4194, 266, 279, 6381, 1584, 13, 816, 3097, 4999, 1395, -100 ]
I visited the New Vic on Tuesday night to see its latest offering "Intemperance". Every time I visit, I always wonder how the set is going to look but it is never disappointing, a lot of effort and style goes into each production. For this, the set is a square block, which forms a basic basement style room. During the play two cast members rotate it to give everyone part of the round the chance to see it from various angles. Intemperance, a revival of Lizzie Nunnery's award-winning play, is a very thought-provoking production, which is set around 165 years ago about an immigrant Irish family living in the slums of Liverpool, there are references to Lime Street and The Grapes pub (which if it's the same one, I have visited myself which stands to this day along Matthew Street). Before the play begins, Irish music resonates from the theatre speakers and onto the concourse area of the New Vic, which helps to get you into the spirit and appreciate the music, of which local musicians have recorded for the play. Due to me driving, the only thing missing for me was the pints of Guinness to round off the Irish theme. This is a story of a family who moved from Ireland to Liverpool, to try to make a better life for themselves, but ended up living in poverty and craving meat, a food in which is a luxury they cannot simply afford. Millie, played by the magnificent Krissi Bohn (who I adored in Table at The New Vic), strives for the better life her husband Brynjar (Oystein Kanestrom) promises, but as Intemperance plays out, you can see the battles she faces from her demons as all she has ever known is the graft and the continuous need to fight for respect. She is expecting her third baby while living with her son Ruairi (Thomas Grant) and older daughter Niamh (Niamh Finlay). In the corner, waiting to die and entertaining everyone (including the audience) with memories of his wild times, is her father Fergal played by the wonderful John O'Mahony. He particularly reminded me of my own grandfather who told me stories and tales during his world war 2 days, some maybe not have been true but I never would have known. John's humour and comic timing is there to see throughout the play. The family, typically classed in society as the undeserving poor, drinking their lives away as they know nothing else. Life is painful in the slums of Liverpool. Cholera is taking hold of the vulnerable and Millie herself is scared for her unborn baby. Parts of the play left me shocked and saddened, but due to the characters of the play, we were soon laughing as the family showed their true grit and never say die attitude with lots of humour. For me, Zoe Waterman wonderfully directs this play with panache, but I expected nothing else following her recent offering, Table. During the car journey home, it occurred to me that even though the play is set 165 years ago, certain aspects of it still happen today, like poverty, people living on the streets and there is still the class of society divided across the UK.
{ "redpajama_set_name": "RedPajamaC4" }
3,265
[ 128000, 40, 12263, 279, 1561, 44847, 389, 7742, 3814, 311, 1518, 1202, 5652, 10209, 330, 1090, 336, 716, 685, 23811, 11769, 892, 358, 4034, 11, 358, 2744, 5895, 1268, 279, 743, 374, 2133, 311, 1427, 719, 433, 374, 2646, 39223, 11, 264, 2763, 315, 5149, 323, 1742, 5900, 1139, 1855, 5788, 627, 2520, 420, 11, 279, 743, 374, 264, 9518, 2565, 11, 902, 7739, 264, 6913, 31741, 1742, 3130, 13, 12220, 279, 1514, 1403, 6445, 3697, 17348, 433, 311, 3041, 5127, 961, 315, 279, 4883, 279, 6140, 311, 1518, 433, 505, 5370, 27030, 627, 1090, 336, 716, 685, 11, 264, 57105, 315, 445, 89087, 452, 15278, 727, 596, 10292, 27875, 1514, 11, 374, 264, 1633, 3463, 10039, 85, 10979, 5788, 11, 902, 374, 743, 2212, 220, 10680, 1667 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 12263, 279, 1561, 44847, 389, 7742, 3814, 311, 1518, 1202, 5652, 10209, 330, 1090, 336, 716, 685, 23811, 11769, 892, 358, 4034, 11, 358, 2744, 5895, 1268, 279, 743, 374, 2133, 311, 1427, 719, 433, 374, 2646, 39223, 11, 264, 2763, 315, 5149, 323, 1742, 5900, 1139, 1855, 5788, 627, 2520, 420, 11, 279, 743, 374, 264, 9518, 2565, 11, 902, 7739, 264, 6913, 31741, 1742, 3130, 13, 12220, 279, 1514, 1403, 6445, 3697, 17348, 433, 311, 3041, 5127, 961, 315, 279, 4883, 279, 6140, 311, 1518, 433, 505, 5370, 27030, 627, 1090, 336, 716, 685, 11, 264, 57105, 315, 445, 89087, 452, 15278, 727, 596, 10292, 27875, 1514, 11, 374, 264, 1633, 3463, 10039, 85, 10979, 5788, 11, 902, 374, 743, 2212, 220, 10680, 1667, -100 ]
Ben Keating believes IMSA's plan to eliminate all 'Super Silvers' from the GT Daytona class is an "impossible" task, amid the sanctioning body's claims to crack down on the global driver rating epidemic. IMSA announced last weekend the formation of a driver evaluation committee, which will review each driver's recorded pace in WeatherTech SportsCar Championship races and relay suggested reclassifications to the FIA, which controls the worldwide ratings system. The committee, headed by veteran IMSA official Paul Walter, will also hold the right to adjust driver's categorization based on the "specific nature" in the series. While IMSA President Scott Atherton says Super Silvers, to the best of its ability, will "be a thing of the past", the Riley Motorsports driver, and other GTD participants argue that it cannot be achieved under the current regulations. "They say they're going to get rid of the 'Super Silvers' but it's impossible," Keating told Sportscar365. "There's always going to be somebody that will sneak through. "I was not 100 percent satisfied with what was said [at the State of the Series] because I just don't believe that IMSA is willing to flex their muscle and do the asterisk on the bottom and re-rate anyone they want. "They can but I have serious doubts whether they will. Michael Shank, however, has urged to give the newly assembled committee a chance before jumping to conclusion. Both of Meyer Shank Racing's Silver-rated drivers, Katherine Legge and Justin Marks, could end up fitting into IMSA's new purely data-driven criteria that forms the basis of potential reclassifications. "I support what they're doing with the Silvers and I understand the logic behind that," Shank told Sportscar365. "There's going to be some slippery stuff still. It's just inevitable. People will slide through the cracks that they don't have enough data on. Fellow team owner Will Turner, meanwhile, believes the newly pledged driver enforcements will help lead to the elimination of factory or heavily works-supported teams in the Pro-Am-based class. "If you eliminate fake Silvers then you give value to the gentlemen drivers, who will then come back to the series and compete against other gentlemen drivers and not compete against factories that have the money to hire fake Silvers," Turner told Sportscar365. "This should eliminate a lot of the factory involvement. A program will have to run with a legitimate Silver. Keating, however, is skeptical it will lead to fewer manufacturer-backed teams on the grid. "I really dislike the fact there's some factory teams out there, with factory budgets and all-pro lineups," he said. IMSA has put all of its resources behind the Driver Evaluation Committee, according to Atherton, who said it will not be a "one and done" process. "It's relatively limited when you think there's 3,000 rated drivers and there's probably a dozen described that can be as problematic," Atherton told Sportscar365. Atherton said the re-classification recommendations to the FIA will be made prior to the publishing of the first draft release of the 2019 FIA driver ratings, which typically comes out in November. While holding the right to make adjustments on its own, IMSA will not adjust any drivers mid-season.
{ "redpajama_set_name": "RedPajamaC4" }
4,472
[ 128000, 25584, 6706, 1113, 13919, 88377, 32, 596, 3197, 311, 22472, 682, 364, 19841, 8211, 3078, 6, 505, 279, 12177, 88012, 538, 374, 459, 330, 318, 10236, 1, 3465, 11, 23442, 279, 45361, 287, 2547, 596, 8349, 311, 17944, 1523, 389, 279, 3728, 5696, 10959, 42620, 627, 1829, 7934, 7376, 1566, 9178, 279, 18488, 315, 264, 5696, 16865, 13093, 11, 902, 690, 3477, 1855, 5696, 596, 12715, 18338, 304, 23454, 35197, 13482, 9028, 19134, 21234, 323, 32951, 12090, 312, 1058, 7174, 311, 279, 435, 5987, 11, 902, 11835, 279, 15603, 18594, 1887, 627, 791, 13093, 11, 19946, 555, 21487, 88377, 32, 4033, 7043, 33305, 11, 690, 1101, 3412, 279, 1314, 311, 7652, 5696, 596, 22824, 2065, 3196, 389, 279, 330, 52340, 7138, 1, 304, 279, 4101, 627, 8142 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 25584, 6706, 1113, 13919, 88377, 32, 596, 3197, 311, 22472, 682, 364, 19841, 8211, 3078, 6, 505, 279, 12177, 88012, 538, 374, 459, 330, 318, 10236, 1, 3465, 11, 23442, 279, 45361, 287, 2547, 596, 8349, 311, 17944, 1523, 389, 279, 3728, 5696, 10959, 42620, 627, 1829, 7934, 7376, 1566, 9178, 279, 18488, 315, 264, 5696, 16865, 13093, 11, 902, 690, 3477, 1855, 5696, 596, 12715, 18338, 304, 23454, 35197, 13482, 9028, 19134, 21234, 323, 32951, 12090, 312, 1058, 7174, 311, 279, 435, 5987, 11, 902, 11835, 279, 15603, 18594, 1887, 627, 791, 13093, 11, 19946, 555, 21487, 88377, 32, 4033, 7043, 33305, 11, 690, 1101, 3412, 279, 1314, 311, 7652, 5696, 596, 22824, 2065, 3196, 389, 279, 330, 52340, 7138, 1, 304, 279, 4101, 627, 8142, -100 ]
The owners, operators, webmasters, and contributors of We Find Lenders must stay in compliance with the United States Truth In Lending Act, and we must work diligently to avoid exposing our visitors to predatory lenders, or lenders who are not operating in compliance with the TILA of the United States. To read the Truth In Lending Act, please visit the FTC website. You can read more about the history the TILA here on Wikipedia as well. d) we do not communicate with lenders regarding borrower applications, loan approvals, etc. f) all data on the apr reports is provided by other consumers who claim to have paid a specific apr in their area of the United States and we make it clear in our apr reports page that we have no way of knowing if these consumers are providing accurate information. These APR reports are for informational purpose only and We Find Lenders in no way suggests, claims, implies, or guarantees any consumer will also procure lending with a similar apr. Please read our terms of service, disclaimer, apr implications, apr and fees, default implications pages to clearly understand our services, and the limitations of our service(s). If you have ANY complaint in regards to a private lender, bank, or credit union you have recieved financial services with via our website, please direct them to the local state authorities. We have links, phone numbers, emails, and complaint forms on each one of our state pages.
{ "redpajama_set_name": "RedPajamaC4" }
6,309
[ 128000, 791, 7980, 11, 20197, 11, 3566, 64711, 11, 323, 20965, 315, 1226, 7531, 445, 14846, 2011, 4822, 304, 8907, 449, 279, 3723, 4273, 30198, 763, 445, 2518, 3298, 11, 323, 584, 2011, 990, 91705, 311, 5766, 47066, 1057, 15613, 311, 88170, 46115, 11, 477, 46115, 889, 527, 539, 10565, 304, 8907, 449, 279, 350, 98596, 315, 279, 3723, 4273, 627, 1271, 1373, 279, 30198, 763, 445, 2518, 3298, 11, 4587, 4034, 279, 79360, 3997, 13, 1472, 649, 1373, 810, 922, 279, 3925, 279, 350, 98596, 1618, 389, 27685, 439, 1664, 627, 67, 8, 584, 656, 539, 19570, 449, 46115, 9002, 70719, 8522, 11, 11941, 83923, 11, 5099, 627, 69, 8, 682, 828, 389, 279, 21726, 6821, 374, 3984, 555, 1023, 13723, 889, 3802, 311, 617, 7318, 264 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 7980, 11, 20197, 11, 3566, 64711, 11, 323, 20965, 315, 1226, 7531, 445, 14846, 2011, 4822, 304, 8907, 449, 279, 3723, 4273, 30198, 763, 445, 2518, 3298, 11, 323, 584, 2011, 990, 91705, 311, 5766, 47066, 1057, 15613, 311, 88170, 46115, 11, 477, 46115, 889, 527, 539, 10565, 304, 8907, 449, 279, 350, 98596, 315, 279, 3723, 4273, 627, 1271, 1373, 279, 30198, 763, 445, 2518, 3298, 11, 4587, 4034, 279, 79360, 3997, 13, 1472, 649, 1373, 810, 922, 279, 3925, 279, 350, 98596, 1618, 389, 27685, 439, 1664, 627, 67, 8, 584, 656, 539, 19570, 449, 46115, 9002, 70719, 8522, 11, 11941, 83923, 11, 5099, 627, 69, 8, 682, 828, 389, 279, 21726, 6821, 374, 3984, 555, 1023, 13723, 889, 3802, 311, 617, 7318, 264, -100 ]
Q: How do I request Postgres for counts for different dates from a certain time series? I have a table of visits like this: time | user_id -------------------------------- 2018-05-01 00:00:00+02 | 56 2018-05-01 00:00:00+02 | 64 2018-05-01 00:00:00+02 | 56 2018-05-02 00:00:00+02 | 27 2018-05-02 00:00:00+02 | 64 ... I want to request Postgres database for the quantity of active users per date. A user is active if he has visits at 10 separate dates for the previous 30 days. For example, for the quantity at date 2018-05-22 the query would be: select count(*) from ( select user_id, count(distinct time::date) as cnt from visit where time::date > '2018-05-22'::date - interval '30 days' group by user_id having count(distinct time::date) >= 10 order by cnt desc ) t The result is one number. It works correct. What should I modify in this query in order to obtain the quantities for each date from a certain time series? The required result should be like this: date | quantity --------------------- 2018-05-01 | 38 2018-05-02 | 26 2018-05-03 | 35 2018-05-04 | 44 ... A: First, create a calendar table, full of all of the dates you'll ever need. Say, from '1900-01-01' to '2099-12-31'? Then it's basically a JOIN... SELECT calendar_date, count(*) FROM ( SELECT CALENDAR_TABLE.calendar_date, visit.user_id, COUNT(DISTINCT visit.time::date) as cnt FROM CALENDAR_TABLE INNER JOIN visit ON visit.time >= CALENDAR_TABLE.calendar_date - interval '30 days' AND visit.time < CALENDAR_TABLE.calendar_date + interval '01 days' WHERE CALENDAR_TABLE.calendar_date BETWEEN '2018-05-01' AND '2018-05-22' GROUP BY CALENDAR_TABLE.calendar_date, visit.user_id HAVING COUNT(DISTINCT visit.time::date) >= 10 ) t GROUP BY calendar_date Or perhaps... SELECT calendar_date, count(*) FROM ( SELECT CALENDAR_TABLE.calendar_date, visit.user_id, COUNT(*) as cnt FROM CALENDAR_TABLE INNER JOIN ( SELECT user_id, time::date AS user_date FROM visit GROUP BY user_id, time::date ) visit ON visit.user_date >= CALENDAR_TABLE.calendar_date - interval '30 days' AND visit.user_date < CALENDAR_TABLE.calendar_date + interval '01 days' WHERE CALENDAR_TABLE.calendar_date BETWEEN '2018-05-01' AND '2018-05-22' GROUP BY CALENDAR_TABLE.calendar_date, visit.user_id HAVING COUNT(*) >= 10 ) t GROUP BY calendar_date That may reduce memory overhead, but may make the joins and filtering slower... A: The simplest method uses generate_series(): select g.dte, count(*) from (select g.dte, v.user_id, count(distinct v.time::date) as cnt from generate_series('2018-05-01'::date, '2018-05-22'::date, interval '1 day') g(dte) left join visit v on v.time::date <= g.dte and v.time::date > '2018-05-22'::date - interval '30 days' group by g.dte, v.user_id having count(distinct v.time::date) >= 10 ) vd group by g.dte order by g.dte; If you have a large volume of data, there might be faster ways. If that is an issue, ask another question.
{ "redpajama_set_name": "RedPajamaStackExchange" }
8,619
[ 128000, 48, 25, 2650, 656, 358, 1715, 3962, 18297, 369, 14921, 369, 2204, 13003, 505, 264, 3738, 892, 4101, 30, 358, 617, 264, 2007, 315, 21728, 1093, 420, 512, 1712, 4391, 765, 1217, 851, 198, 1434, 198, 679, 23, 12, 2304, 12, 1721, 220, 410, 25, 410, 25, 410, 10, 2437, 765, 220, 3487, 198, 679, 23, 12, 2304, 12, 1721, 220, 410, 25, 410, 25, 410, 10, 2437, 765, 220, 1227, 198, 679, 23, 12, 2304, 12, 1721, 220, 410, 25, 410, 25, 410, 10, 2437, 765, 220, 3487, 198, 679, 23, 12, 2304, 12, 2437, 220, 410, 25, 410, 25, 410, 10, 2437, 765, 220, 1544, 198, 679, 23, 12, 2304, 12, 2437, 220, 410, 25, 410, 25, 410, 10, 2437, 765, 220, 1227, 198, 2195 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2650, 656, 358, 1715, 3962, 18297, 369, 14921, 369, 2204, 13003, 505, 264, 3738, 892, 4101, 30, 358, 617, 264, 2007, 315, 21728, 1093, 420, 512, 1712, 4391, 765, 1217, 851, 198, 1434, 198, 679, 23, 12, 2304, 12, 1721, 220, 410, 25, 410, 25, 410, 10, 2437, 765, 220, 3487, 198, 679, 23, 12, 2304, 12, 1721, 220, 410, 25, 410, 25, 410, 10, 2437, 765, 220, 1227, 198, 679, 23, 12, 2304, 12, 1721, 220, 410, 25, 410, 25, 410, 10, 2437, 765, 220, 3487, 198, 679, 23, 12, 2304, 12, 2437, 220, 410, 25, 410, 25, 410, 10, 2437, 765, 220, 1544, 198, 679, 23, 12, 2304, 12, 2437, 220, 410, 25, 410, 25, 410, 10, 2437, 765, 220, 1227, 198, 2195, -100 ]
package com.alumnigroup.entity; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import org.json.JSONArray; import org.json.JSONObject; import com.google.gson.Gson; /** * 一条反馈记录 * * @author Jayin Ton * */ @SuppressWarnings("serial") public class MFeedback implements Serializable { public final static String TYPE_BUG = "BUG反馈"; public final static String TYPE_SUGGESTION = "软件建议"; public static MFeedback create_by_json(String json) { MFeedback feedback = null; Gson gson = new Gson(); try { feedback = (MFeedback) gson.fromJson(json, MFeedback.class); } catch (Exception e) { e.printStackTrace(); feedback = null; } return feedback; } public static ArrayList<MFeedback> create_by_jsonarray(String jsonarray) { ArrayList<MFeedback> list = new ArrayList<MFeedback>(); JSONObject obj = null; JSONArray array = null; try { obj = new JSONObject(jsonarray); array = obj.getJSONArray("feedbacks"); for(int i=0;i<array.length();i++){ list.add(create_by_json(array.getJSONObject(i).toString())); } } catch (Exception e) { e.printStackTrace(); list = null; } return list; } /** 该条反馈的id*/ private int id; /** 该条反馈的类型*/ private String type; /** 该条反馈的内容*/ private String body; /** 该条反馈的版本*/ private String versioncode; /** 该条反馈的设备*/ private String device; /** 该条反馈的时间*/ private long posttime; /** 该条反馈的发布人*/ private User user; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getBody() { return body; } public void setBody(String body) { this.body = body; } public String getVersioncode() { return versioncode; } public void setVersioncode(String versioncode) { this.versioncode = versioncode; } public String getDevice() { return device; } public void setDevice(String device) { this.device = device; } public long getPosttime() { return posttime; } public void setPosttime(long posttime) { this.posttime = posttime; } public User getUser() { return user; } public void setUser(User user) { this.user = user; } @Override public String toString() { return "Feedback [id=" + id + ", type=" + type + ", body=" + body + ", versioncode=" + versioncode + ", device=" + device + ", posttime=" + posttime + ", user=" + user + "]"; } }
{ "redpajama_set_name": "RedPajamaGithub" }
4,918
[ 128000, 1757, 470, 12444, 22082, 75758, 9926, 401, 475, 1674, 4340, 24643, 280, 475, 1674, 2013, 11315, 280, 475, 1674, 2013, 5937, 401, 475, 1262, 4421, 69654, 280, 475, 1262, 4421, 41655, 401, 475, 470, 5831, 29534, 53275, 401, 1784, 353, 101961, 40089, 95543, 46065, 230, 66677, 198, 353, 720, 353, 571, 3170, 19455, 258, 31816, 198, 353, 720, 740, 35532, 446, 10392, 1158, 898, 538, 386, 36448, 5280, 25901, 341, 1241, 1620, 1118, 935, 12736, 1702, 3014, 284, 330, 3558, 95543, 46065, 230, 886, 1241, 1620, 1118, 935, 12736, 1117, 3014, 82857, 1294, 284, 330, 111497, 122903, 886, 720, 1241, 1118, 386, 36448, 1893, 3795, 9643, 2292, 3024, 8, 341, 197, 9391, 36448, 11302, 284, 854, 280, 197, 9796, 942, 44166, 284, 502, 39494, 545, 197, 6942 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1757, 470, 12444, 22082, 75758, 9926, 401, 475, 1674, 4340, 24643, 280, 475, 1674, 2013, 11315, 280, 475, 1674, 2013, 5937, 401, 475, 1262, 4421, 69654, 280, 475, 1262, 4421, 41655, 401, 475, 470, 5831, 29534, 53275, 401, 1784, 353, 101961, 40089, 95543, 46065, 230, 66677, 198, 353, 720, 353, 571, 3170, 19455, 258, 31816, 198, 353, 720, 740, 35532, 446, 10392, 1158, 898, 538, 386, 36448, 5280, 25901, 341, 1241, 1620, 1118, 935, 12736, 1702, 3014, 284, 330, 3558, 95543, 46065, 230, 886, 1241, 1620, 1118, 935, 12736, 1117, 3014, 82857, 1294, 284, 330, 111497, 122903, 886, 720, 1241, 1118, 386, 36448, 1893, 3795, 9643, 2292, 3024, 8, 341, 197, 9391, 36448, 11302, 284, 854, 280, 197, 9796, 942, 44166, 284, 502, 39494, 545, 197, 6942, -100 ]
Soundscape field recording of the subtropical forest surrounding the Macuco Trail, located in the Iguazú National Park (Argentina-Brazil border). Recorded in 2010. I spent all morning visiting the impressive waterfalls and by the afternoon I was completely overwhelmed by the crowds of visitors. My attempts to record any nature sounds were frustrating and I eventually got stopped by the park guards, who worried that I was trying to catch rare birds for the illegal trade. Fair play to them for being careful. I diligently went through all my gear with them, what each button did and how it worked, arguing that i had the same goal as the photographers with their mega-zoom lenses - If anything I was less intrusive - but they weren't having any of it. An hour or so later, after I had clearly bored them to death, they released me (and my equipment!). During my visit at the ranger's office, I had time to study the park's map and spotted this trail that lead to a remote waterfall. It was time for some freshening up and - I hoped - a bit of downtime from the masses. I packed the gear and promised the rangers I wouldn't be using it again. On the away walk I restrained myself by thinking about the fresh swim awaiting at the waterfall. On the walk back however, as visitors started to thin out, I couldn't resist the urge. PS - I will say I'm pleased they stopped me because the trade of wild birds is a real problem with disastrous consequences for the species. Salto Arrechea from the bottom.
{ "redpajama_set_name": "RedPajamaC4" }
7,884
[ 128000, 59150, 5443, 2115, 14975, 315, 279, 42129, 51172, 13952, 14932, 279, 7553, 95514, 19177, 11, 7559, 304, 279, 358, 8890, 1394, 6792, 5165, 5657, 320, 96517, 7826, 14369, 3973, 570, 97464, 304, 220, 679, 15, 627, 40, 7543, 682, 6693, 17136, 279, 16358, 3090, 33695, 323, 555, 279, 13658, 358, 574, 6724, 43206, 555, 279, 35851, 315, 15613, 13, 3092, 13865, 311, 3335, 904, 7138, 10578, 1051, 35711, 323, 358, 9778, 2751, 10717, 555, 279, 6246, 27270, 11, 889, 18290, 430, 358, 574, 4560, 311, 2339, 9024, 20229, 369, 279, 12079, 6696, 13, 14930, 1514, 311, 1124, 369, 1694, 16994, 13, 358, 91705, 4024, 1555, 682, 856, 14787, 449, 1124, 11, 1148, 1855, 3215, 1550, 323, 1268, 433, 6575, 11, 30674, 430, 602, 1047, 279, 1890, 5915 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 59150, 5443, 2115, 14975, 315, 279, 42129, 51172, 13952, 14932, 279, 7553, 95514, 19177, 11, 7559, 304, 279, 358, 8890, 1394, 6792, 5165, 5657, 320, 96517, 7826, 14369, 3973, 570, 97464, 304, 220, 679, 15, 627, 40, 7543, 682, 6693, 17136, 279, 16358, 3090, 33695, 323, 555, 279, 13658, 358, 574, 6724, 43206, 555, 279, 35851, 315, 15613, 13, 3092, 13865, 311, 3335, 904, 7138, 10578, 1051, 35711, 323, 358, 9778, 2751, 10717, 555, 279, 6246, 27270, 11, 889, 18290, 430, 358, 574, 4560, 311, 2339, 9024, 20229, 369, 279, 12079, 6696, 13, 14930, 1514, 311, 1124, 369, 1694, 16994, 13, 358, 91705, 4024, 1555, 682, 856, 14787, 449, 1124, 11, 1148, 1855, 3215, 1550, 323, 1268, 433, 6575, 11, 30674, 430, 602, 1047, 279, 1890, 5915, -100 ]
Longer Term Overview Image by Quang Nguyen vinh "Therefore go and make disciples of all nations, baptizing them in the name of the Father and of the Son and of the Holy Spirit, and teaching them to obey everything I have commanded you." (Matthew 28:19-20a) Africa (22) Americas - Caribbean (5) Americas - Central (11) Americas - North (17) Americas - South (12) Asia - Central (8) Asia - East (16) Asia - South (11) Asia - Southeast (12) Australasia - Pacific Islands (10) Europe - Eastern (12) Europe - Western (20) Global (3) Middle East (15) Australia (5) Bahamas (2) Belgium (2) Belize (4) Bulgaria (5) Canada (3) Chile (5) Colombia (2) Dominican Republic (1) El Salvador (1) Ethiopia (5) France (4) Germany (2) Grenada (1) Guatemala (1) Japan (7) Kenya (1) Latvia (1) Malawi (4) Mexico (3) New Zealand (4) Nicaragua (1) Norway (1) Other (1) Panama (3) Peru (4) Poland (1) Scotland (1) Slovakia (1) South Africa (3) South Korea (1) Spain (3) Taiwan (4) Uganda (9) Ukraine (3) United States (8) Zimbabwe (1) Art-Music-Media (13) Anti-Human-Trafficking (3) Business As Mission (17) Campus Ministry (24) Children-Youth (20) Church Planting (34) Community Development (8) Community Outreach (14) Construction (1) Counseling (6) Elderly-Ministry (1) Evangelism-Discipleship (23) Leadership-Management (12) Medical-Community Health (5) Muslim Ministry (48) Native American - 1st Nations (3) Refugee Ministry (16) RUF (2) Sports Ministry (3) Teaching English (19) Teaching-Tutoring (17) Team Support (6) Theological Education (16) Training (4) Translation-Literacy (1) Unreached People Groups (34) Top Need (23) Develop Online Training for Believers With the growing number of believers in North Africa and the Middle East, there is a desperate need for biblically and theologically trained believers. Online education is one of the best ways to address the need. You can use your skills to help us develop and deliver these training materials. Church Planting in North Africa The number of believers is growing in this North African country. A number of churches have already formed and we have an open door to work alongside other believers to disciple, provide theological training, and plant more churches. TOP NEED Join a Growing Church Planting Team Help us establish a church in Rionegro, Colombia, and ignite a church-planting movement in the surrounding region. International Student Ministry Join us for a year, enroll as a student in the university, take Korean classes, and meet other international students doing the same. Come help us lay a foundation for future ministries. Campus Ministry Internship at Christ's College Do you have a heart for the gospel in Taiwan, an ability to connect with college students, and a desire to grow in cross-cultural competence? This internship is designed to explore your calling to Taiwan or other areas in the Asia-Pacific region. Belize Ministry Intern Come serve alongside our partners in their ministry efforts, as well has help facilitate visiting short-term teams throughout the country. Career + Missions Internship in the Middle East Nearly any job that you work in the U.S. could be used as an avenue for gospel work in the Middle East! We can equip and support you to be part of making disciples among one of the least reached people groups. Teach in an Unreached Middle Eastern Country There is a range of opportunities for educators in this creative-access Middle Eastern country. Both university instructors and certified K-12 teachers are needed! « First«131415Show all How a Vision Trip to El Salvador Helped Confirm Our Calling: A Q&A With New Missionary Clay Jones Being in El Salvador and having that peace gave us that moment where we thought: "This is the place the Lord has called us to be." An Opportunity For the Ukrainian Church (VIDEO) The Church has this unique moment to minister right where people are broken and vulnerable, offering them a stable hope that cannot change. Thank You for Helping Ukraine! (VIDEO) The church has been so generous to come alongside our brothers and sisters in Christ in Ukraine. Thank you for all you've made possible. Dasha: A Life Transformed and Faith Renewed in Ukraine (VIDEO) After two months sheltering in a school, Dasha yearned to hear silence, to see friends, to walk—not run—on the street, to read the Bible.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,118
[ 128000, 6720, 261, 17978, 35907, 198, 1945, 555, 121765, 64261, 348, 21538, 198, 25938, 1348, 733, 323, 1304, 49260, 315, 682, 17089, 11, 43724, 4954, 1124, 304, 279, 836, 315, 279, 20941, 323, 315, 279, 12103, 323, 315, 279, 19229, 17326, 11, 323, 12917, 1124, 311, 41701, 4395, 358, 617, 54757, 499, 1210, 320, 50988, 220, 1591, 25, 777, 12, 508, 64, 340, 74691, 320, 1313, 8, 52248, 482, 35374, 320, 20, 8, 52248, 482, 10913, 320, 806, 8, 52248, 482, 4892, 320, 1114, 8, 52248, 482, 4987, 320, 717, 8, 13936, 482, 10913, 320, 23, 8, 13936, 482, 6460, 320, 845, 8, 13936, 482, 4987, 320, 806, 8, 13936, 482, 36664, 320, 717, 8, 6126, 36259, 482, 16867, 23028, 320, 605, 8, 4606, 482, 18516, 320, 717 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 6720, 261, 17978, 35907, 198, 1945, 555, 121765, 64261, 348, 21538, 198, 25938, 1348, 733, 323, 1304, 49260, 315, 682, 17089, 11, 43724, 4954, 1124, 304, 279, 836, 315, 279, 20941, 323, 315, 279, 12103, 323, 315, 279, 19229, 17326, 11, 323, 12917, 1124, 311, 41701, 4395, 358, 617, 54757, 499, 1210, 320, 50988, 220, 1591, 25, 777, 12, 508, 64, 340, 74691, 320, 1313, 8, 52248, 482, 35374, 320, 20, 8, 52248, 482, 10913, 320, 806, 8, 52248, 482, 4892, 320, 1114, 8, 52248, 482, 4987, 320, 717, 8, 13936, 482, 10913, 320, 23, 8, 13936, 482, 6460, 320, 845, 8, 13936, 482, 4987, 320, 806, 8, 13936, 482, 36664, 320, 717, 8, 6126, 36259, 482, 16867, 23028, 320, 605, 8, 4606, 482, 18516, 320, 717, -100 ]
THIS AD HAS EXPIRED ! - JC Batteries is a leading UPS Battery Manufacturers in India. We provide wide range of quality UPS inverter battery products for various industries. We are an ISO 9001 certified company and providing quality industrial battery products.
{ "redpajama_set_name": "RedPajamaC4" }
9,168
[ 128000, 37012, 9827, 36848, 4154, 1932, 6641, 758, 482, 61683, 74018, 552, 374, 264, 6522, 58146, 34712, 47198, 304, 6890, 13, 1226, 3493, 7029, 2134, 315, 4367, 58146, 304, 8894, 11863, 3956, 369, 5370, 19647, 13, 1226, 527, 459, 22705, 220, 7467, 16, 23759, 2883, 323, 8405, 4367, 13076, 11863, 3956, 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, 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 ]
[ 37012, 9827, 36848, 4154, 1932, 6641, 758, 482, 61683, 74018, 552, 374, 264, 6522, 58146, 34712, 47198, 304, 6890, 13, 1226, 3493, 7029, 2134, 315, 4367, 58146, 304, 8894, 11863, 3956, 369, 5370, 19647, 13, 1226, 527, 459, 22705, 220, 7467, 16, 23759, 2883, 323, 8405, 4367, 13076, 11863, 3956, 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, -100, -100, -100, -100, -100, -100, -100, -100 ]