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
Q: InDesign Text Modification Script Skips Content This InDesign Javascript iterates over textStyleRanges and converts text with a few specific appliedFont's and later assigns a new appliedFont:- var textStyleRanges = []; for (var j = app.activeDocument.stories.length-1; j >= 0 ; j--) for (var k = app.activeDocument.stories.item(j).textStyleRanges.length-1; k >= 0; k--) textStyleRanges.push(app.activeDocument.stories.item(j).textStyleRanges.item(k)); for (var i = textStyleRanges.length-1; i >= 0; i--) { var myText = textStyleRanges[i]; var converted = C2Unic(myText.contents, myText.appliedFont.fontFamily); if (myText.contents != converted) myText.contents = converted; if (myText.appliedFont.fontFamily == 'Chanakya' || myText.appliedFont.fontFamily == 'DevLys 010' || myText.appliedFont.fontFamily == 'Walkman-Chanakya-905') { myText.appliedFont = app.fonts.item("Utsaah"); myText.composer="Adobe World-Ready Paragraph Composer"; } } But there are always some ranges where this doesn't happen. I tried iterating in the forward direction OR in the backward direction OR putting the elements in an array before conversion OR updating the appliedFont in the same iteration OR updating it a different one. Some ranges are still not converted completely. I am doing this to convert the Devanagari text encoded in glyph based non-Unicode encoding to Unicode. Some of this involves repositioning vowel signs etc and changing the code to work with find/replace mechanism may be possible but is a lot of rework. What is happening? See also: http://cssdk.s3-website-us-east-1.amazonaws.com/sdk/1.0/docs/WebHelp/app_notes/indesign_text_frames.htm#Finding_and_changing_text Sample here: https://www.dropbox.com/sh/7y10i6cyx5m5k3c/AAB74PXtavO5_0dD4_6sNn8ka?dl=0 A: This is untested since I'm not able to test against your document, but try using getElements() like below: var doc = app.activeDocument; var stories = doc.stories; var textStyleRanges = stories.everyItem().textStyleRanges.everyItem().getElements(); for (var i = textStyleRanges.length-1; i >= 0; i--) { var myText = textStyleRanges[i]; var converted = C2Unic(myText.contents, myText.appliedFont.fontFamily); if (myText.contents != converted) myText.contents = converted; if (myText.appliedFont.fontFamily == 'Chanakya' || myText.appliedFont.fontFamily == 'DevLys 010' || myText.appliedFont.fontFamily == 'Walkman-Chanakya-905') { myText.appliedFont = app.fonts.item("Utsaah"); myText.composer="Adobe World-Ready Paragraph Composer"; } } A: A valid approach is to use hyperlink text sources as they stick to the genuine text object. Then you can edit those source texts even if they were actually moved elsewhere in the flow. //Main routine var main = function() { //VARS var doc = app.properties.activeDocument, fgp = app.findGrepPreferences.properties, cgp = app.changeGrepPreferences.properties, fcgo = app.findChangeGrepOptions.properties, text, str, found = [], srcs = [], n = 0; //Exit if no documents if ( !doc ) return; app.findChangeGrepOptions = app.findGrepPreferences = app.changeGrepPreferences = null; //Settings props app.findChangeGrepOptions.properties = { includeHiddenLayers:true, includeLockedLayersForFind:true, includeLockedStoriesForFind:true, includeMasterPages:true, } app.findGrepPreferences.properties = { findWhat:"\\w", } //Finding text instances found = doc.findGrep(); n = found.length; //Looping through instances and adding hyperlink text sources //That's all we do at this stage while ( n-- ) { srcs.push ( doc.hyperlinkTextSources.add(found[n] ) ); } //Then we edit the stored hyperlinks text sources 's texts objects contents n = srcs.length; while ( n-- ) { text = srcs[n].sourceText; str = text.contents; text.contents = str+str+str+str; } //Eventually we remove the added hyperlinks text sources n = srcs.length; while ( n-- ) srcs[n].remove(); //And reset initial properties app.findGrepPreferences.properties = fgp; app.changeGrepPreferences.properties = cgp; app.findChangeGrepOptions.properties =fcgo; } //Running script in a easily cancelable mode var u; app.doScript ( "main()",u,u,UndoModes.ENTIRE_SCRIPT, "The Script" );
{ "redpajama_set_name": "RedPajamaStackExchange" }
624
[ 128000, 48, 25, 763, 21103, 2991, 74955, 14025, 4923, 3153, 9059, 1115, 763, 21103, 32952, 5480, 988, 927, 74196, 76002, 323, 33822, 1495, 449, 264, 2478, 3230, 9435, 5564, 596, 323, 3010, 51012, 264, 502, 9435, 5564, 25, 7058, 959, 74196, 76002, 284, 6032, 2000, 320, 959, 503, 284, 917, 13930, 7676, 1258, 2490, 1996, 12, 16, 26, 503, 2669, 220, 15, 2652, 503, 28586, 220, 369, 320, 959, 597, 284, 917, 13930, 7676, 1258, 2490, 9161, 3406, 570, 1342, 2377, 76002, 1996, 12, 16, 26, 597, 2669, 220, 15, 26, 597, 28586, 262, 74196, 76002, 2615, 11718, 13930, 7676, 1258, 2490, 9161, 3406, 570, 1342, 2377, 76002, 9161, 6097, 3317, 2000, 320, 959, 602, 284, 74196, 76002, 1996, 12, 16, 26, 602, 2669, 220, 15, 26, 602 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 763, 21103, 2991, 74955, 14025, 4923, 3153, 9059, 1115, 763, 21103, 32952, 5480, 988, 927, 74196, 76002, 323, 33822, 1495, 449, 264, 2478, 3230, 9435, 5564, 596, 323, 3010, 51012, 264, 502, 9435, 5564, 25, 7058, 959, 74196, 76002, 284, 6032, 2000, 320, 959, 503, 284, 917, 13930, 7676, 1258, 2490, 1996, 12, 16, 26, 503, 2669, 220, 15, 2652, 503, 28586, 220, 369, 320, 959, 597, 284, 917, 13930, 7676, 1258, 2490, 9161, 3406, 570, 1342, 2377, 76002, 1996, 12, 16, 26, 597, 2669, 220, 15, 26, 597, 28586, 262, 74196, 76002, 2615, 11718, 13930, 7676, 1258, 2490, 9161, 3406, 570, 1342, 2377, 76002, 9161, 6097, 3317, 2000, 320, 959, 602, 284, 74196, 76002, 1996, 12, 16, 26, 602, 2669, 220, 15, 26, 602, -100 ]
Facebook For Companies Facebook has become a very powerful business tool for companies, large and small, to promote their brands. is a social networking company, which allows people to communicate with their family, friends, and coworkers. This leads to them blasting out links on their Facebook profiles -- annoying friends until somebody finally tells them to start a Facebook business. Having run Facebook ads for well over 100 companies, we are able to get the cost per like down to an average that is well within the companies budget. 7 Awesome B2B Facebook Pages Yet another great. To do so, use your "About" section and profile pictures to share important. Facebook can be a huge benefit to your business. Like any job, setting a schedule and sticking to it is the key. 5 Reasons You Should NOT Start a Facebook Page for Your MLM Business. This should be done both on and off Facebook. Learn about working at Facebook. 1 day ago · A US Ad Agency Was Behind Those Fake Ads Featuring Marilyn Denis, Mike Holmes, And Ron McLean. Hundreds of attendees at my marketing masterclasses, speaking engagements or trainings have asked this highly relevant question "what is a good engagement rate on Facebook". Free Facebook marketing is a way to convert your business's passive followers into engaged clients using online content. Pose a Problem and Ask for Advice. As Facebook puts it, "Facebook Pages enable public figures, businesses, organizations and other entities to create an authentic and public presence on Facebook. Facebook is a titan of the tech space. Do: Use a Recognizable Profile Picture. 7 Unexpected Ways Facebook Is Good for You. As Facebook seeks to deliver the content its users will enjoy most and find most relevant, organic reach has been on the decline. Facebook for business. 1 And businesses are seeing success with stories ads for a range of objectives. Content on Your Personal vs Business Facebook Page. Facebook ads can be as simple or sophisticated as you want them to be. I do too – Facebook has actually made it easier now too. Get discovered & drive results today. (If not, and you built your website using GoDaddy's Website Builder, you can create one in a jiffy. From the business account you will be able to manage Facebook advertising campaigns as well as Facebook Pages. It's time to call another Facebook foul — the notion that Facebook is suddenly a killer app for business that will unseat LinkedIn, simply because Facebook opened its doors to everyone. Automating mundane tasks. Running a Facebook business page can help your reach and connect with your existing and potential customers. If your business is something that you want to keep completely separate from your personal Profile on Facebook, skip these steps. If you are not using your personal Facebook as a tool to build awareness for yourself or your company's brand, you are missing out on arguably the world's most powerful, free marketing tool. This review will help you pick dropshipping companies that'll work for your business — no matter your niche. Facebook is a social networking company that has acquired 79 other companies, including WhatsApp. For example, the craft site Craftsy used retargeting Facebook ads to promote products to people who had already interacted with a product page on the Craftsy site. Facebook encourages marketers to have a "business" page, also known as a "fan" page (which is different than a regular Facebook profile - create one here). Why: Why should you be on Facebook? Not every business should be on Facebook!. 1 day ago · A US Ad Agency Was Behind Those Fake Ads Featuring Marilyn Denis, Mike Holmes, And Ron McLean. The goal isn't to kill email, but that's one potential side effect. , and REDMOND, Wash. The first to ditch Libra was Paypal, which withdrew on. Many of us actively use sites like Twitter and Facebook to promote our businesses. YouTube lets you create a Brand Account to give your business or brand a YouTube presence of its own. For Facebook, 80% of those ages 18–49 say they use the network. Now what? The next step is to learn how to manage the page and keep on managing it. That was then. Create and run campaigns using simple self-serve tools, and track their performance with easy-to-read reports. 20 | 12-08-19 Buy Facebook for. Facebook is all about people. Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube. Official Facebook Statement: Not Planned for General Release. A year after launch, how has Facebook's Workplace fared? With 14,000 organizations worldwide using its business collaboration app, Facebook has a foothold in the enterprise, but it faces stiff. This post will give you 17 killer Facebook post ideas for small business owners that are working NOW, by generating lots of likes, shares and, comments, as well as increasing click throughs to your website. Can a Facebook Page Replace a Small Business Website? It is reasonable to assume that many small business owners would forgo the effort of building a website and simply rely on what the largest. Because your friends post news and other tidbits they find around the Web, Facebook is also a great filter for the approximately 500 billion gigabytes of information floating around the Internet. Think about it. Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube. Biggest con: Pricing? At the moment, Facebook at Work is free. You've probably heard Facebook success stories from big brands with large budgets. We asked Young Entrepreneur Council about. Facebook's not just for keeping tabs on friends and filling out quizzes -- it can also be used as a highly effective business tool. Editor's note: Need a little help building your community on Facebook?GoDaddy Social has your back. Just how dominant a business tool was social media in 2017? Despite being involved in an investigation by Congress, Facebook reported its highest earnings ever in Q3, up nearly 50% from a year ago. Running a Facebook business page can help your reach and connect with your existing and potential customers. Dozens of Companies Are Using Facebook to Exclude Older Workers From Job Ads Among the companies we found doing it: Amazon, Verizon, UPS and Facebook itself. How do I promote my business on Facebook for free? Facebook's advertising platform is a paid service, so you can't employ traditional Facebook advertising for free. People can easily message with their Facebook friends and contacts, access their Facebook messages and take advantage of multi-device messaging across mobile devices, the web and tablets. Of course, you can. If your business Page is a service that you offer, go back to your personal Facebook Profile, and add a little bit to your About tab about your new Page's location. People love new opportunities. News about Facebook Inc. Buzzfeed Food's Video Recipes. Facebook also allows you to create a business profile that's separate from your personal profile. 20 | 12-08-19 Buy Facebook for. Get the latest insurance news, images, videos, infographics and more to post on your insurance agency's Facebook page. When you join Business Manager, coworkers can't view your personal Facebook profile unless you've approved their friend request. Facebook is the largest social networking site worldwide. Pages look similar to profile pages but show specific information only applicable to businesses, organizations, and causes. Today I'll show you how to leverage a Facebook group for your company. What is a Facebook business page, and why would you want one? What is a Facebook business page? A Facebook Page is essentially like your typical Facebook profile, but for. Unless you buy ads, your page will go nowhere. Even with recent leaks and negative press, Facebook is still the most popular social media network, and every business should have a Facebook page. What about the small business that doesn't have thousands to spend?. Free! That's if you are only counting how much it cost in a money sense. My script extracts the number of Facebook friends I have online every 15 minutes of every hour of every day and also populates a spreadsheet. Business pages are a place where you can develop the relationship between your brand and the world at large. Press alt + / to open this menu. Controlling your online reputation is extremely important right now. This post will give you 17 killer Facebook post ideas for small business owners that are working NOW, by generating lots of likes, shares and, comments, as well as increasing click throughs to your website. When Elizabeth Warren criticised Facebook over their decision to let Trump run false ads, Facebook compared itself to a broadcaster. "I think companies have to communicate the same message on multiple platforms for it to gain traction. Facebook is dead, they say. Benefits of Facebook for business. One media company that excelled in this format is none other than Mashable with live daily show, 'Mash on. While the goal of making a business Facebook fan page is for marketing, you want to avoid posting only "buy now" type messages. This wikiHow teaches you how to make a Facebook page that other people can like and follow. How to Use Facebook for Business 1. A full-service agent who wins the listing is probably a good negotiator, a person you want on your side during offer negotiations. As one of the largest social media companies in the world, Facebook's basic platform is a launching point for many of its other companies and brands. If your brand has been included with those folks, then your actions, products, and/or services become a direct reflection of that person. Content on Your Personal vs Business Facebook Page. "I think companies have to communicate the same message on multiple platforms for it to gain traction. The Brand Account is a separate account that uses your company or brand's name, but it is accessed through your personal YouTube account. Log into Facebook to start sharing and connecting with your friends, family, and people you know. Your Facebook Business Page now represents a robust online presence that will make potential customers and fans feel comfortable interacting with you. However, at. Facebook contests are becoming good marketing strategies for businesses of any size. Although Facebook is often considered to. One of the most common branding tips you will find for your business or website is to create a Facebook page. Instead, try to use the live video to highlight small wins, company outings, your employees or other on-the-spot content. The original intent of Facebook was to interact with friends, not advertise your business, but it's easy for marketers to forget this. Pages are Facebook's equivalent of a business profile. Join a community of developers, attend meetups, and collaborate online. Once your company's Facebook profile is set up and you have added some information, it is a good time to begin building an audience of Fans. For most business cases, before you can use Facebook to gain sales and traffic or to produce conversions, you should let the people know that your business exists on Facebook's platform. Explore our community of data providers and download the apps in trial mode for a free assessment. Some "experts" are even claiming there's no longer a reason to even have a Facebook business page. Study: 54 Percent of Companies Ban Facebook, Twitter at Work. You must consult an attorney for advice regarding your compliance with laws and regulations applicable to your business. I completely. This wikiHow teaches you how to create a Facebook page dedicated to a business or company. Facebook in recent years has come under fire over its collection of users' data and its failure to protect their private information. See who you know at Facebook Business, leverage your professional network, and get hired. ) Completeness of page profile. We embrace diverse viewpoints, encourage conversation. You are probably doing everything. From the business account you will be able to manage Facebook advertising campaigns as well as Facebook Pages. Whether you're a CEO strengthening your personal brand, a retailer promoting new products, a mobile app company hoping to get downloads, or just a hustler who wants more followers and likes — Twitter's unique discovery mindset allows businesses and brands to connect with a relevant, engaged audience. Some "experts" are even claiming there's no longer a reason to even have a Facebook business page. While Facebook began as a way for college students and other young adults to connect online, it has become a staple for businesses and community organizations. Pages look similar to profile pages but show specific information only applicable to businesses, organizations, and causes. Here are 10 ways to increase quality Facebook Page likes for your business: 1. Once your company's Facebook profile is set up and you have added some information, it is a good time to begin building an audience of Fans. When you join Business Manager, coworkers can't view your personal Facebook profile unless you've approved their friend request. Facebook's closed platform and data lock-in are coming under siege from Dave Winer and others. Pose a Problem and Ask for Advice. And if you're looking to scale quickly, Workzone was named one of the top apps for rapidly growing startups by GetApp. There are a number of benefits of using Facebook for businesses, as well as some challenges. Documents seen by the Observer, and confirmed by a Facebook statement, show that by late 2015 the company had found out that information had been harvested on an unprecedented scale. So when you watch a show, you can see comments and connect with friends and other viewers while watching, or participate in a dedicated Facebook Group for the show. A Facebook page has many potential benefits for your business. Every small business should be on Facebook. We need the permissions manage page to get comments, we can't and won't never post anything on your behalf. Our Facebook ads focus on emotional consumer initiatives, which allows Ignite ads to drive more likes and conversions. The Definitive Guide to Small Business Marketing. Provide your Facebook address on your letterhead, business card and website, in store, in advertisements, and in your email signature. Join LinkedIn today for free. It's time to call another Facebook foul — the notion that Facebook is suddenly a killer app for business that will unseat LinkedIn, simply because Facebook opened its doors to everyone. It's a notable move for. Registration creates an App ID that lets us know who you are, helps us distinguish your app from other apps, and provides a. 1 day ago · A US Ad Agency Was Behind Those Fake Ads Featuring Marilyn Denis, Mike Holmes, And Ron McLean. With Facebook's 500 million active users—half of whom log on daily for an average session time of 55 minutes—having an active Facebook page helps gain tremendous visibility for your business and meets your prospects/community where they are. Small-business owners in the Big Apple are increasingly turning to Facebook to engage new customers and hone a dynamic brand ethos. The Facebook Business SDK is a one-stop shop to help our partners better serve their businesses. Share photos and videos, send messages and get updates. Unless you buy ads, your page will go nowhere. Documents seen by the Observer, and confirmed by a Facebook statement, show that by late 2015 the company had found out that information had been harvested on an unprecedented scale. Benefits information above is provided anonymously by current and former Facebook employees, and may include a summary provided by the employer. According to IDC, 80% of smartphone users check Facebook. 5 Reasons You Should NOT Start a Facebook Page for Your MLM Business. And in a few short steps, you can be, too. With most people in the United. Learn about Facebook , including insurance benefits, retirement benefits, and vacation policy. At Facebook, we've had an internal version of our app to help run our company for many years. Editor's note: Need a little help building your community on Facebook?GoDaddy Social has your back. Facebook is not waiting for its initial public offering to make its first big purchase. However, at. " But these days, the tech giant is all about time well spent, and with that comes a new tagline for everyone to follow: If you don't. At Facebook, we've had an internal version of our app to help run our company for many years. Active users spend an average of 56 minutes per day on Facebook. Once your company's Facebook profile is set up and you have added some information, it is a good time to begin building an audience of Fans. How to Use Facebook for Business 1. 1 And businesses are seeing success with stories ads for a range of objectives. It's great for marketing your products, landing gigs and connecting with your customers. It was Facebook's vision for an international currency, and based on the company's partners, it seemed unstoppable. Facebook is all about people. Mark is responsible for setting the overall direction and product strategy for the company. 7 Awesome B2B Facebook Pages Yet another great. Study: 54 Percent of Companies Ban Facebook, Twitter at Work. A lot has changed on Facebook since most small business owners first set up a Facebook Page. Benefits of Facebook for business. Webcast - Documents. Of course, you can. Find out if your customers are on Facebook; and whether they expect to find your business there. Pose a Problem and Ask for Advice. Facebook Ads are extremely powerful and you can only advertise your business with your ads going into the News Feed with a Page. Staff may even actively want to use it. Facebook pages might appear to provide a cost-effective channel for lead generation (because they are free), but Facebook actually limits a business's ability to reach a relevant audience or to obtain qualified leads with their organic (or unpaid) posts. Step 8: Start engaging. Whereas you connect with a profile by adding them as a friend, you connect with a business Facebook Page by "liking" it and becoming a fan. Gain exposure for your business that may lead to new clients or projects. On a Facebook Page that translates into likes, comments and shares of your posts. The original intent of Facebook was to interact with friends, not advertise your business, but it's easy for marketers to forget this. More than two billion people use Facebook every month - so no matter what kind of audience you want to reach, you'll find them here. When used in the right way, social media can increase a child's self-esteem and help them feel less isolated, as if they belong to a group. Facebook ads are more like display ads than search ads. His business is focused on helping businesses create and develop apps that employees want to work with. Glassdoor is your resource for information about Facebook benefits and perks. While the goal of making a business Facebook fan page is for marketing, you want to avoid posting only "buy now" type messages. How to keep your Facebook business page secure. At Facebook, we believe that understanding and managing unconscious bias can help us build stronger, more diverse and inclusive organizations. Facebook can be a huge benefit to your business. (FB) including business summary, industry/sector information, number of employees, business summary, corporate governance, key executives and their. Facebook offers a number of products and tools to individuals and companies to help them reach new audiences and grow their businesses. This shift has shown an emphasis on things like email communications, web tracking, PPC, and SEO. Adopting all these API's and keeping them up to date across the various platforms can be time consuming and ultimately. Do: Use a Recognizable Profile Picture. The social media site is emerging as a tool to identify and engage potential job candidates. Every day, brands around the world are inspired to bring creative marketing ideas to life on Facebook in ways that have a real impact on their business. Beyond 25 TB, storage is provisioned as 25 TB SharePoint team sites to individual users. Stepframe has worked with well-known tech companies such as Microsoft, T-Mobile, Starbucks. Whether you're new to Facebook or are looking to spruce up your existing Facebook Page, there are simple things you can do to set your page up for success. 5 billion monthly active users. We've come across many well-meaning marketers and entrepreneurs who create personal profiles for their brands, instead of an actual Facebook Business Page. Unfortunately, most business pages fail and turn into a dead. Forbes is a global media company, focusing on business, investing, technology, entrepreneurship, leadership, and lifestyle. Now what? The next step is to learn how to manage the page and keep on managing it. Find the Answers. In order to create a group just login to Facebook and then click on the Groups link in the main menu on the left hand side of the page. Find out if your customers are on Facebook; and whether they expect to find your business there. Daily Facebook Post Ideas for Insurance Agents. Facebook Business Manager is a tool to help you create, publish, monitor, and report on various business-related assets, including your business's Facebook Pages, or your Facebook advertisements. Latest SEC Filings Press Releases View all. Use the WhatsApp Business API to interact with customers. Now you're ready to give your Facebook Business Page a bit of a nudge. However, there's one business opportunity that companies are missing on Facebook, and I happen to think it's a big one: recruiting. Facebook encryption will create 'lawless' world online, warns agency charged with. Marketing on Facebook helps your business build lasting relationships with people, find new customers, and increase sales for your online store. Choose Google Maps Platform to create immersive location experiences and make better business decisions with accurate real-time data & dynamic imagery. If you create a Facebook Page and select the category Local Business or Place, Facebook automatically makes it a Facebook Place, meaning that you don't have to create a Place separate from your Page. People are saying Facebook is dying because of the new restrictions on the news feed and the drop in Reach. I completely. When people search for your business page on Facebook, your title is what counts. Darüber hinaus sind sie einfach zu erstellen und ihre Wirkung lässt sich einfach messen. How to Create a Facebook Page for a Business. Many entrepreneurs create a Facebook page for their business, expecting it to be a goldmine of engagement, referral traffic and sales. People can easily message with their Facebook friends and contacts, access their Facebook messages and take advantage of multi-device messaging across mobile devices, the web and tablets. Beyond 25 TB, storage is provisioned as 25 TB SharePoint team sites to individual users. Learn how to create a Facebook business page to maximize your social media marketing reach with this step-by-step tutorial and video. The use of Facebook has evolved through the years so it's important for marketers to be up to date on the newest statistics. If the vanity URL you want is taken, it's okay if the title of your business page is a little different from your vanity URL. 15, 2:09 PM. As an entrepreneur, this site provides value beyond a social media marketing channel for your business — you can (and should) join one of the thousands of public groups geared toward users who want management and industry insights. You may already know how popular Twitter is among celebrities and athletes. Best of all, a LinkedIn company page is free is you have a healthy personal profile. This presents a particular challenge for small businesses: You don't have the same budgets as bigger advertisers to pour into. Like any business partnership, you need to do your research on who you're working with, what it's going to cost you, and what you're expecting to get out of it before you get too involved. Learn how to create a Facebook business page to maximize your social media marketing reach with this step-by-step tutorial and video. You must be a member of Facebook to create a Facebook Group. But, if you count time as money (like some do) then your Facebook page is not free. Seattle Credit Union is present on several social media channels where we provide financial education, show support for fellow co-ops and causes in the Seattle area, and share information about anything from current promotions to community events. " Only official brand representatives can create a Facebook Page for that business. Come into Facebook with a clear sense of what you need from Facebook that you cannot get anywhere else. However, you can market your business on Facebook with just your Facebook business page. What's more, if they comment on your post, their friends will also see your post and this will help in viral promotion of your business. According to IDC, 80% of smartphone users check Facebook. Many businesses fail at Facebook advertising because they are not a good fit. People remember stories!. At a very basic level, Facebook is the most popular application ever. Facebook is a personal website for many users where they connect with family and friends. The site was co-founded in 2004 by Mark Zuckerberg while still a student at Harvard College in Cambridge, Mass. But what is this app that youngsters just can't get enough of? Learn all that here, as well as the top 10 statistics for TikTok in 2019. We Offer Consistent, Creative Facebook Company Updates. Connect with friends, family and other people you know. If you follow my advices. Grow your business and achieve revenue goals with this in-depth guide. Sell online with an ecommerce website or with sales channels like ebay, Amazon, Instagram, Facebook, Messenger, and Google Shopping. Everyone wants to be active on Facebook, Twitter and the various blog sites promoting their business. It's hopeless and only stunts my growth rather than supports it. The Definitive Guide to Small Business Marketing. While some marketers might not have room on their plate to manage multiple social media accounts, there's no excuse for being inactive on Twitter as a business. com for Business. If your business Page is a service that you offer, go back to your personal Facebook Profile, and add a little bit to your About tab about your new Page's location. 5 Reasons You Should NOT Start a Facebook Page for Your MLM Business. Why should your business invest in Facebook marketing? For starters, it's the world's largest social network with a whopping 2 billion users. Tell Stories. Free! That's if you are only counting how much it cost in a money sense. Log into Facebook to start sharing and connecting with your friends, family, and people you know. Most of the time, the only thing people see from your company's Facebook Page is the profile picture, cover image, and short description. As small business owners are turning away from Facebook, other social networks are much more appealing thanks to relatively low-maintenance and user friendly methods for advertising: Twitter is home to a lot of companies and brands, and people know that it is a reliable place to turn for the latest updates. is a social networking company, which allows people to communicate with their family, friends, and coworkers. A year after launch, how has Facebook's Workplace fared? With 14,000 organizations worldwide using its business collaboration app, Facebook has a foothold in the enterprise, but it faces stiff. Our mission is to give people the power to build community and bring the world closer together. It's no secret that your Facebook reach and engagement are down from last year, or possibly even just a few months ago. For those who have Facebook accounts, there are many benefits to using your Facebook credentials when signing up for Messenger. " Only official brand representatives can create a Facebook Page for that business. "Making sure that what. Instagram will most likely generate $14 billion in revenue this year and become an increasingly important driver for Facebook's growth, as the platform's core business is expected to slow. Benefits of Facebook for business. Online games & mobile games offer limitless fun! Play the most popular free games around by Zynga - Farmville, Hit it Rich, Zynga Poker and many more!. Nowadays we can hardly imagine a successful business functioning without digital marketing. Here are five ways Facebook still gives you a marketing advantage at every stage of the sales funnel. For Facebook, 80% of those ages 18–49 say they use the network. Grow your business and achieve revenue goals with this in-depth guide. It's a great starting place for any small business owner interested in trying Facebook advertising. And if you're looking to scale quickly, Workzone was named one of the top apps for rapidly growing startups by GetApp. In the United States and Canada alone, 183 million people use Facebook every day. The goal of my experiment was to figure out if there is a pattern to the time of day and the day of week when most of my Facebook friends are online so I could learn the best time to publish a post. I'm seeing a lot of gripes about Facebook lately. Read on to learn how you can set up a Facebook page in five simple steps. Forbes is a global media company, focusing on business, investing, technology, entrepreneurship, leadership, and lifestyle. How to keep your Facebook business page secure. You can do this by optimizing your Facebook business page, attracting followers to like your business, and then pinning an offer or deal to the top of your page, sending users to your website or landing page. Facebook Business Manager is a tool to help you create, publish, monitor, and report on various business-related assets, including your business's Facebook Pages, or your Facebook advertisements. Buzzfeed Food's Video Recipes. Gain exposure for your business that may lead to new clients or projects. Your Facebook Business Page now represents a robust online presence that will make potential customers and fans feel comfortable interacting with you. Request additional storage by contacting Microsoft support. The latest Tweets from Facebook (@facebook). * Get notifications when friends like and comment on your posts * Find local social events, and make plans to meet up with friends * Play games with any of your Facebook friends * Backup photos by saving them in albums * Follow your favorite artists, websites, and companies to get their latest news * Look up local businesses to see reviews. Plan out the order and times you'll do them in advance. 55 billion monthly active users worldwide. Come into Facebook with a clear sense of what you need from Facebook that you cannot get anywhere else. At a very basic level, Facebook is the most popular application ever. However, you can market your business on Facebook with just your Facebook business page. You've probably heard Facebook success stories from big brands with large budgets. Facebook in recent years has come under fire over its collection of users' data and its failure to protect their private information. In fact, Facebook's own "Guide to Facebook Ads" walks you through the entire advertising process, including planning, creating ads, testing, and understanding insight statistics. It's an honor to learn from them in how they use those internal communications tools. Facebook is a business that has a purpose of creating revenue, enriching investors and providing jobs. The latest Tweets from Facebook (@facebook). 100% FREE!. Facebook gave Fast Company wide-ranging access to Zuckerberg, his senior leadership team, and others to delve into the company's audacious plans to shape the next decade. Learn how tapping into these passions will help your business grow. Webcast - Documents. Benefits of Facebook for business. 3 times return on ad spend and 33 percent increase in Facebook-driven revenue. You can do this by optimizing your Facebook business page, attracting followers to like your business, and then pinning an offer or deal to the top of your page, sending users to your website or landing page. Read on to learn how you can set up a Facebook page in five simple steps. Here's an overview of how Facebook Pages and Ads work for businesses. Some "experts" are even claiming there's no longer a reason to even have a Facebook business page. A Facebook Messenger marketing chatbot has a wide range of functionality and at the end of the day, marketing bots have a direct impact on boosting the bottom line. While some of these benefits are similar to having a website, a number are unique to Facebook. This isn't made explicit on the explainer homepage, though it is stated in the FAQs. Now you're ready to give your Facebook Business Page a bit of a nudge. 10 Examples of B2B Facebook Fan Pages Business-to-business can be a little trickier on Facebook. While there are great marketing benefits in having this kind of presence on Facebook, there unfortunately are some limits versus having a normal profile or even a group page. After 18 months of Facebook at Work, Workplace by Facebook is finally here for organizations to get their hands on. Combine that with built-in interest targeting and easy-to-use product categorization, and you have a tool that's tailor-made for increasing business sales. In the United States and Canada alone, 183 million people use Facebook every day. Whatever strategy you plan to pursue, you'll probably have to take care of several things every day to make it work for you. Through what other media channel can your business reach over 1 billion people, target exactly the demographic you wish and have direct communication with your customers? This is why any business - big or small - should consider advertising on Facebook. Even with a bad experience, you can learn so much about practical, applied technology here. Find your hotel faster using exclusive tools and reviews from the world leader in online accommodation service. If you run a consumer-facing enterprise, your. For a business with a really large Facebook audience, this can run into tens of thousands of dollars a year. Facebook has expressed initial concern with the FTC's. 500 million Instagram accounts use Instagram Stories every day. Unless you buy ads, your page will go nowhere. Join a community of developers, attend meetups, and collaborate online. Whereas you connect with a profile by adding them as a friend, you connect with a business Facebook Page by "liking" it and becoming a fan. You must be a member of Facebook to create a Facebook Group. What I'm actually writing this review for is business. Understand your customer's journey across mobile, web and more. After that, Facebook Workplace has a tiered pricing structure that costs $3 a month per user for companies with less than 1,000 active users (or $1 per month for companies with over 10,000 users). Optimize your Facebook Page Info. The fact-checkers, whose work is more and more important for those who prefer facts over lies, police the line between fact and falsehood on a day-to-day basis, and do a great job. Today, my small contribution is to pass along a very good overview that reflects on one of Trump's favorite overarching falsehoods. Namely: Trump describes an America in which everything was going down the tubes under Obama, which is why we needed Trump to make America great again. And he claims that this project has come to fruition, with America setting records for prosperity under his leadership and guidance. "Obama bad; Trump good" is pretty much his analysis in all areas and measurement of U.S. activity, especially economically. Even if this were true, it would reflect poorly on Trump's character, but it has the added problem of being false, a big lie made up of many small ones. Personally, I don't assume that all economic measurements directly reflect the leadership of whoever occupies the Oval Office, nor am I smart enough to figure out what causes what in the economy. But the idea that presidents get the credit or the blame for the economy during their tenure is a political fact of life. Trump, in his adorable, immodest mendacity, not only claims credit for everything good that happens in the economy, but tells people, literally and specifically, that they have to vote for him even if they hate him, because without his guidance, their 401(k) accounts "will go down the tubes." That would be offensive even if it were true, but it is utterly false. The stock market has been on a 10-year run of steady gains that began in 2009, the year Barack Obama was inaugurated. But why would anyone care about that? It's only an unarguable, stubborn fact. Still, speaking of facts, there are so many measurements and indicators of how the economy is doing, that those not committed to an honest investigation can find evidence for whatever they want to believe. Trump and his most committed followers want to believe that everything was terrible under Barack Obama and great under Trump. That's baloney. Anyone who believes that believes something false. And a series of charts and graphs published Monday in the Washington Post and explained by Economics Correspondent Heather Long provides the data that tells the tale. The details are complicated. Click through to the link above and you'll learn much. But the overview is pretty simply this: The U.S. economy had a major meltdown in the last year of the George W. Bush presidency. Again, I'm not smart enough to know how much of this was Bush's "fault." But he had been in office for six years when the trouble started. So, if it's ever reasonable to hold a president accountable for the performance of the economy, the timeline is bad for Bush. GDP growth went negative. Job growth fell sharply and then went negative. Median household income shrank. The Dow Jones Industrial Average dropped by more than 5,000 points! U.S. manufacturing output plunged, as did average home values, as did average hourly wages, as did measures of consumer confidence and most other indicators of economic health. (Backup for that is contained in the Post piece I linked to above.) Barack Obama inherited that mess of falling numbers, which continued during his first year in office, 2009, as he put in place policies designed to turn it around. By 2010, Obama's second year, pretty much all of the negative numbers had turned positive. By the time Obama was up for reelection in 2012, all of them were headed in the right direction, which is certainly among the reasons voters gave him a second term by a solid (not landslide) margin. Basically, all of those good numbers continued throughout the second Obama term. The U.S. GDP, probably the single best measure of how the economy is doing, grew by 2.9 percent in 2015, which was Obama's seventh year in office and was the best GDP growth number since before the crash of the late Bush years. GDP growth slowed to 1.6 percent in 2016, which may have been among the indicators that supported Trump's campaign-year argument that everything was going to hell and only he could fix it. During the first year of Trump, GDP growth grew to 2.4 percent, which is decent but not great and anyway, a reasonable person would acknowledge that — to the degree that economic performance is to the credit or blame of the president — the performance in the first year of a new president is a mixture of the old and new policies. In Trump's second year, 2018, the GDP grew 2.9 percent, equaling Obama's best year, and so far in 2019, the growth rate has fallen to 2.1 percent, a mediocre number and a decline for which Trump presumably accepts no responsibility and blames either Nancy Pelosi, Ilhan Omar or, if he can swing it, Barack Obama. I suppose it's natural for a president to want to take credit for everything good that happens on his (or someday her) watch, but not the blame for anything bad. Trump is more blatant about this than most. If we judge by his bad but remarkably steady approval ratings (today, according to the average maintained by 538.com, it's 41.9 approval/ 53.7 disapproval) the pretty-good economy is not winning him new supporters, nor is his constant exaggeration of his accomplishments costing him many old ones). I already offered it above, but the full Washington Post workup of these numbers, and commentary/explanation by economics correspondent Heather Long, are here. On a related matter, if you care about what used to be called fiscal conservatism, which is the belief that federal debt and deficit matter, here's a New York Times analysis, based on Congressional Budget Office data, suggesting that the annual budget deficit (that's the amount the government borrows every year reflecting that amount by which federal spending exceeds revenues) which fell steadily during the Obama years, from a peak of $1.4 trillion at the beginning of the Obama administration, to $585 billion in 2016 (Obama's last year in office), will be back up to $960 billion this fiscal year, and back over $1 trillion in 2020. (Here's the New York Times piece detailing those numbers.) Trump is currently floating various tax cuts for the rich and the poor that will presumably worsen those projections, if passed. As the Times piece reported:
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,131
[ 128000, 21124, 1789, 32886, 198, 21124, 706, 3719, 264, 1633, 8147, 2626, 5507, 369, 5220, 11, 3544, 323, 2678, 11, 311, 12192, 872, 16097, 13, 374, 264, 3674, 29130, 2883, 11, 902, 6276, 1274, 311, 19570, 449, 872, 3070, 11, 4885, 11, 323, 84055, 13, 1115, 11767, 311, 1124, 77252, 704, 7902, 389, 872, 5690, 21542, 1198, 30931, 4885, 3156, 18570, 5616, 10975, 1124, 311, 1212, 264, 5690, 2626, 13, 20636, 1629, 5690, 14058, 369, 1664, 927, 220, 1041, 5220, 11, 584, 527, 3025, 311, 636, 279, 2853, 824, 1093, 1523, 311, 459, 5578, 430, 374, 1664, 2949, 279, 5220, 8199, 13, 220, 22, 39405, 426, 17, 33, 5690, 22521, 14968, 2500, 2294, 13, 2057, 656, 779, 11, 1005, 701, 330, 10714, 1, 3857, 323, 5643, 9364, 311 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 21124, 1789, 32886, 198, 21124, 706, 3719, 264, 1633, 8147, 2626, 5507, 369, 5220, 11, 3544, 323, 2678, 11, 311, 12192, 872, 16097, 13, 374, 264, 3674, 29130, 2883, 11, 902, 6276, 1274, 311, 19570, 449, 872, 3070, 11, 4885, 11, 323, 84055, 13, 1115, 11767, 311, 1124, 77252, 704, 7902, 389, 872, 5690, 21542, 1198, 30931, 4885, 3156, 18570, 5616, 10975, 1124, 311, 1212, 264, 5690, 2626, 13, 20636, 1629, 5690, 14058, 369, 1664, 927, 220, 1041, 5220, 11, 584, 527, 3025, 311, 636, 279, 2853, 824, 1093, 1523, 311, 459, 5578, 430, 374, 1664, 2949, 279, 5220, 8199, 13, 220, 22, 39405, 426, 17, 33, 5690, 22521, 14968, 2500, 2294, 13, 2057, 656, 779, 11, 1005, 701, 330, 10714, 1, 3857, 323, 5643, 9364, 311, -100 ]
RCMP Alberta RCMP BC Sask RCMP Sask [ January 17, 2020 ] 32-Year-Old Stettler Man Charged with Death of Father Alberta [ January 17, 2020 ] Leduc RCMP drug unit execute search warrant, seize drugs Alberta [ January 17, 2020 ] UPDATE: RCMP seek public assistance in identifying suspect of a home invasion robbery Alberta [ January 17, 2020 ] Didsbury and Olds RCMP make arrests in relation to a Armed Robbery in Cremona Alberta [ January 17, 2020 ] Alberta RCMP Major Crimes Unit investigating suspicious death south of Medicine Hat – Update Alberta Elk Point RCMP arrest four after patrols and tip from the public Elk Point RCMP Fishing Lake Fishing Lake, Alberta – On Dec. 2-3, 2019, a coordinated effort between the Elk Point RCMP, Eastern Alberta District Rural Crime Reduction Unit (EADRCRU) and RCMP Police Dog Services (PDS) resulted in the apprehension of multiple wanted individuals in the Fishing Lake area. On Dec. 2, 2019, police observed two males in a vehicle believed to be used in other offences and attempted to conduct a traffic stop. The vehicle fled a short distance before turning on a dead end road where the traffic stop occurred. Two males were arrested without incident. Kevin Stahn, (31) of Fishing Lake was arrested on an outstanding warrant and charged with multiple additional offences, including: • Flight from police • Possession of a weapon for a dangerous purpose (x2) • Possession of methamphetamine for the purpose of trafficking • Failing to comply with a Recognizance • Four offences under the Traffic Safety Act Fergus Brosseau, (43) of Fishing Lake was arrested on an outstanding warrant and charged with multiple additional offences, including: He was also charged with theft of a truck stemming from a file in the Two Hills area in October 2019. Both of the accused were released after a judicial hearing with conditions. They are set to appear next in St. Paul Provincial Court on Dec. 19, 2019. On Dec. 3, 2019 an Elk Point RCMP officer patrolling in Fishing Lake received a tip from the public about a wanted offender in the area. Patrols conducted by both the Elk Point RCMP and EADRCRU located the wanted male and a traffic stop was conducted and both occupants were arrested without incident. Methamphetamine and drug paraphernalia were located after a search of the vehicle consistent with drug trafficking. Kristen James Podolecki (39) of Sputinow was arrested and charged with possession for the purpose of trafficking methamphetamine. He was also charged with break and enter stemming from a file in the Lloydminster area in November 2019. The passenger in the vehicle, Chelsea McAdam (23) of Frog Lake was also arrested and charged multiple offences including: • Possession of methamphetamine • Obstructing a peace officer • Failing to comply with a probation order (x5) Both of the accused are set to appear next in St. Paul Provincial Court on Dec. 19, 2019. "I'd like to thank the members of the public for their assistance," says Sergeant Dave Henry, Elk Point Detachment Commander. "This was a great example of the community coming together to help locate offenders in the area." Please help spread the word by "sharing" our reports on your social media accounts. Click the banner to learn more about Police Report TV 32-Year-Old Stettler Man Charged with Death of Father Stettler, Alberta – The RCMP have laid charges against one male following a criminal death that occurred on Jan. 15, 2020 in Stettler. At 2:55 p.m. on Jan. 15 the Stettler RCMP responded to a [...] Leduc RCMP drug unit execute search warrant, seize drugs Leduc, Alberta – On Jan. 9, 2020 Leduc RCMP Drug Unit arrested a 19-year-old male for trafficking cocaine. Following the arrest, two search warrants were executed. The Leduc RCMP Drug Unit seized a pound of [...] UPDATE: RCMP seek public assistance in identifying suspect of a home invasion robbery Innisfail, Alberta – On November 24, 2019, at approximately 2:26 am, Innisfail RCMP received a complaint of an armed robbery and home invasion at an apartment in Innisfail Alberta, the suspects had fled. RCMP investigation [...] Didsbury and Olds RCMP make arrests in relation to a Armed Robbery in Cremona Didsbury, Alberta – On Thursday, January 16th, 2020, members of the Didsbury and Olds RCMP responded to a report of an Armed Robbery at a motel in Cremona. Two males wearing masks had entered the [...] Alberta RCMP Major Crimes Unit investigating suspicious death south of Medicine Hat – Update Redcliff, Alberta – An autopsy was conducted on Jan. 15, 2020, at the Office of the Chief Medical Examiner in Calgary and the manner of death was determined to be a homicide. The victim is [...] Fatality / Death St. Albert RCMP make arrests in "theft from lockers at local gyms" case Arrests made following school threat at Elgin Park Secondary School in Surrey Alberta Police Report Saskatchewan Internet Child Exploitation (ICE) Unit: Two counts of child pornography charges UPDATE: Warrants issued in high-value liquor thefts Alberta Police Reports Man wanted on warrants in relation to warm-up thefts: Calgary Police Four charged in connection to break and enter in Namao, Alberta New evidence confirms missing person Patricia Pangracs is deceased; foul play is suspected; Homicide investigators continue to seek information Lethbridge Police seeking public assistance to locate male wanted in connection with sexual assault – ARRESTED Phone scam gives caller option about being arrested Thompson RCMP investigate aggravated assault Three people arrested by Mounties during investigation: Chilliwack RCMP Richmond RCMP release photo of suspect accused of multiple sex crimes Kelowna RCMP Community Safety Unit seize illicit drugs and property from downtown problem residence Leduc RCMP investigate small plane crash RCMP investigating after six year-old child struck by vehicle after exiting school bus St-Pierre-Jolys RCMP investigate fatal motor vehicle rollover 2 Adults Charged with Drug Trafficking: St. Albert RCMP Meth, Carfentanil, Cocaine Seized in Medicine Hat Red Deer RCMP on scene at incident – CLEARED Meadow Lake RCMP – Two suspects wanted for dangerous driving acts in Meadow Lake area Manitoba RCMP arrest off-duty Winnipeg Police Services officer for Impaired Operation Murder / Homicide INCOMING REPORTS | British Columbia | Alberta | Saskatchewan | Manitoba | Eastern & Northern | A charge should not be considered as evidence of guilt. In Canada, all persons are considered innocent until proven guilty in a court of law. All reports are written by police media departments. Sometimes CaPR staff create report titles. Copyright © 2020 Canada Police Report By continuing to use the site, you agree to the use of cookies. Privacy Policy
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,584
[ 128000, 7532, 5901, 33654, 198, 7532, 5901, 18531, 198, 50, 1091, 198, 7532, 5901, 49746, 198, 58, 6186, 220, 1114, 11, 220, 2366, 15, 2331, 220, 843, 71998, 12, 18788, 800, 7211, 1565, 2418, 28717, 291, 449, 16290, 315, 20941, 33654, 198, 58, 6186, 220, 1114, 11, 220, 2366, 15, 2331, 445, 25802, 75724, 5623, 5089, 9203, 2778, 7236, 11, 51085, 11217, 33654, 198, 58, 6186, 220, 1114, 11, 220, 2366, 15, 2331, 23743, 25, 75724, 6056, 586, 13291, 304, 25607, 15562, 315, 264, 2162, 30215, 44214, 33654, 198, 58, 6186, 220, 1114, 11, 220, 2366, 15, 2331, 423, 3447, 20176, 323, 10846, 82, 75724, 1304, 38811, 304, 12976, 311, 264, 42494, 4997, 31304, 304, 7948, 1677, 64, 33654, 198, 58, 6186, 220, 1114, 11, 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 ]
[ 7532, 5901, 33654, 198, 7532, 5901, 18531, 198, 50, 1091, 198, 7532, 5901, 49746, 198, 58, 6186, 220, 1114, 11, 220, 2366, 15, 2331, 220, 843, 71998, 12, 18788, 800, 7211, 1565, 2418, 28717, 291, 449, 16290, 315, 20941, 33654, 198, 58, 6186, 220, 1114, 11, 220, 2366, 15, 2331, 445, 25802, 75724, 5623, 5089, 9203, 2778, 7236, 11, 51085, 11217, 33654, 198, 58, 6186, 220, 1114, 11, 220, 2366, 15, 2331, 23743, 25, 75724, 6056, 586, 13291, 304, 25607, 15562, 315, 264, 2162, 30215, 44214, 33654, 198, 58, 6186, 220, 1114, 11, 220, 2366, 15, 2331, 423, 3447, 20176, 323, 10846, 82, 75724, 1304, 38811, 304, 12976, 311, 264, 42494, 4997, 31304, 304, 7948, 1677, 64, 33654, 198, 58, 6186, 220, 1114, 11, 220, 2366, 15, -100 ]
Q: azure-pipelines.yml Build UWP mixed C# C++ project I'm trying to build my UWP app with azure pipelines. My UWP project consists of multiple C# projects with one C++ project. The C# parts build just fine (except the one who references the C++ project) but I don't get the C++ project to build. It fails with: 2018-10-28T15:01:04.7827636Z ##[error]XMPP_API\Classes\Crypto\Aes128GcmCpp.cs(11,26): Error CS0246: The type or namespace name 'AES_GCM' could not be found (are you missing a using directive or an assembly reference?) I know I have to build the C++ project which supplies the AES_GCM namespace before the C# project referencing it but how do i accomplish this? Link to an example build which failed My azure-pipelines.yml: pool: vmImage: 'VS2017-Win2016' variables: solution: '**/*.sln' buildPlatform: 'x86|x64|ARM' buildConfiguration: 'Release' appxPackageDir: '$(build.artifactStagingDirectory)\AppxPackages\' steps: - task: NuGetToolInstaller@0 - task: NuGetCommand@2 inputs: restoreSolution: '$(solution)' - task: VSBuild@1 inputs: platform: 'x86' solution: '$(solution)' configuration: '$(buildConfiguration)' msbuildArgs: '/p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:UapAppxPackageBuildMode=StoreUpload'
{ "redpajama_set_name": "RedPajamaStackExchange" }
5,459
[ 128000, 48, 25, 77630, 2320, 95097, 35036, 8012, 549, 26758, 9709, 356, 2, 356, 1044, 2447, 358, 2846, 4560, 311, 1977, 856, 549, 26758, 917, 449, 77630, 58773, 627, 5159, 549, 26758, 2447, 17610, 315, 5361, 356, 2, 7224, 449, 832, 356, 1044, 2447, 627, 791, 356, 2, 5596, 1977, 1120, 7060, 320, 11945, 279, 832, 889, 15407, 279, 356, 1044, 2447, 8, 719, 358, 1541, 956, 636, 279, 356, 1044, 2447, 311, 1977, 627, 2181, 14865, 449, 512, 679, 23, 12, 605, 12, 1591, 51, 868, 25, 1721, 25, 2371, 13, 23833, 26083, 21, 57, 7860, 58, 850, 60, 53437, 4505, 11669, 59, 20678, 24864, 9631, 59, 32, 288, 4386, 38, 6358, 10091, 19302, 7, 806, 11, 1627, 1680, 4703, 10211, 19592, 21, 25, 578, 955, 477 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 77630, 2320, 95097, 35036, 8012, 549, 26758, 9709, 356, 2, 356, 1044, 2447, 358, 2846, 4560, 311, 1977, 856, 549, 26758, 917, 449, 77630, 58773, 627, 5159, 549, 26758, 2447, 17610, 315, 5361, 356, 2, 7224, 449, 832, 356, 1044, 2447, 627, 791, 356, 2, 5596, 1977, 1120, 7060, 320, 11945, 279, 832, 889, 15407, 279, 356, 1044, 2447, 8, 719, 358, 1541, 956, 636, 279, 356, 1044, 2447, 311, 1977, 627, 2181, 14865, 449, 512, 679, 23, 12, 605, 12, 1591, 51, 868, 25, 1721, 25, 2371, 13, 23833, 26083, 21, 57, 7860, 58, 850, 60, 53437, 4505, 11669, 59, 20678, 24864, 9631, 59, 32, 288, 4386, 38, 6358, 10091, 19302, 7, 806, 11, 1627, 1680, 4703, 10211, 19592, 21, 25, 578, 955, 477, -100 ]
Why the Tea Party Patriots backs Jeff Sessions Attorney General-nominee defends Constitution Story TOpics In this Nov. 29, 2016, photo, Attorney General-designate Sen. Jeff Sessions, R-Ala. is seen on Capitol Hill in Washington. (AP Photo/Molly Riley) ** FILE ** more > By Jenny Beth Martin - - Friday, January 6, 2017 President-elect Donald Trump's nominee for Attorney General, Alabama Sen. Jeff Sessions, will sit for his confirmation hearing next Tuesday and Wednesday, and Senate Democrats have promised that the hearings will be as lengthy - and as ugly - as they can possibly make them. The left's case against Jeff Sessions has devolved into a single line of attack: a preposterous claim that Sen. Sessions is a racist. This smear campaign against Sen. Sessions is a tried-and-true (and tired and overdone, we might add) tactic of the left. The allegations of racism are baseless and unfounded. But don't just take my word for it. William Smith, an African-American who served as Sen. Sessions' chief legal counsel for years, has defended his former boss, emphatically stating that the Senator is not a racist. And, when Mr. Smith left Capitol Hill for a new job, Sen. Sessions took to the Senate floor to give a moving tribute to William Smith for his service to the country, counsel, and friendship over the years. Hardly the actions of a racist. Trump asks nation to pray over his impeachment, says he's done nothing wrong Sen. McSally not sorry for insulting CNN reporter: 'I'm a fighter pilot. I called it like it is' Judge upholds Virginia governor's Capitol gun ban Over the past two months, as the Democrats have dug in their heels on Sen. Sessions' nomination, they have done so under the pretense of upholding their exacting and thorough requirements for Attorney General. In reality, the Democrats, it turns out, have far less stringent requirements for the position of Attorney General than do conservatives. The left's misguided fixation on Sen. Sessions' alleged but non-existent racism reveals that, for Democrats, apparently, the only point of interest is whether or not a nominee is racist. (And, to be clear, Sen. Sessions passes that test with flying colors.) For conservatives, however, our more sophisticated test for the Attorney General is multi-faceted. We want to know, for example, if the nominee would rigorously defend the Constitution. Would he or she steadfastly uphold the rule of law? President Obama's two Attorneys General - Eric Holder and Loretta Lynch - have demonstrated over the past eight years the dangers of what happens when a political agenda trumps the rule of law at a rogue Justice Department. From conservatives' perspective, a faithful devotion to the rule of law, as enshrined in our Constitution, is the sine qua non for an Attorney General. Here, too, Sen. Sessions performs exceedingly well. Why does Tea Party Patriots stand behind Jeff Sessions? Because, quite simply, Sen. Sessions has always stood with us in our work upholding the rule of law and defending the U.S. Constitution. I have had the distinct honor of working alongside Sen. Sessions on several key legislative battles over the last five years, and I have always been impressed with his willingness to roll up his sleeves and do the hard work of fighting for conservative principles. In 2013, when the Senate was determined to ram through its massive Gang of Eight amnesty bill, Sen. Sessions stood his ground and worked tirelessly to encourage his colleagues to read the bill and view it in the context of the rule of law. When Tea Party Patriots did our press conferences and rallies to oppose the amnesty bill, Sen. Sessions stood with us, helping to drive home the point that the bill would have undermined our immigration laws and made a mockery of the rule of law. In the end, Sen. Sessions helped us win that fight, and the amnesty bill was defeated. Capitol Hill is a place where shrillness and hysterics often win the debates of the day, but Sen. Sessions, with his even-tempered way and mild manners, has consistently given voice to conservativism and has won seemingly insurmountable legislative battles simply by sticking to his principles and persuading others in the Senate of the merits of his argument. I have had the opportunity to see first-hand how Sen. Sessions uses history, proven facts, and, yes, especially, the Constitution to win arguments. Sen. Sessions' unswerving prioritization of the rule of law will be a breath of fresh air at the Justice Department, and we look forward to seeing the Constitution-centric reforms he pursues as Attorney General. Senate Democrats would be wise to heed the election results, set aside their post-election grief, and confirm Sen. Sessions - a man with a remarkable resume and career who is eminently qualified to serve as our nation's next Attorney General. Copyright © 2020 The Washington Times, LLC. Click here for reprint permission.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
1,183
[ 128000, 10445, 279, 31125, 8722, 33617, 28678, 12149, 31900, 198, 10673, 9617, 3331, 5392, 316, 85899, 82060, 18039, 198, 18422, 5257, 74557, 198, 644, 420, 4723, 13, 220, 1682, 11, 220, 679, 21, 11, 6685, 11, 18919, 3331, 47117, 349, 5476, 13, 12149, 31900, 11, 432, 65473, 64, 13, 374, 3970, 389, 32633, 8270, 304, 6652, 13, 320, 2599, 11064, 10482, 8788, 47935, 8, 3146, 12100, 3146, 810, 6235, 1383, 52179, 29103, 11826, 482, 482, 6740, 11, 6186, 220, 21, 11, 220, 679, 22, 198, 27229, 37081, 9641, 3420, 596, 29311, 369, 18919, 3331, 11, 21272, 5476, 13, 12149, 31900, 11, 690, 2503, 369, 813, 20109, 11011, 1828, 7742, 323, 8079, 11, 323, 10092, 12643, 617, 19487, 430, 279, 45348, 690, 387, 439, 35306, 482, 323, 439, 28360 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 10445, 279, 31125, 8722, 33617, 28678, 12149, 31900, 198, 10673, 9617, 3331, 5392, 316, 85899, 82060, 18039, 198, 18422, 5257, 74557, 198, 644, 420, 4723, 13, 220, 1682, 11, 220, 679, 21, 11, 6685, 11, 18919, 3331, 47117, 349, 5476, 13, 12149, 31900, 11, 432, 65473, 64, 13, 374, 3970, 389, 32633, 8270, 304, 6652, 13, 320, 2599, 11064, 10482, 8788, 47935, 8, 3146, 12100, 3146, 810, 6235, 1383, 52179, 29103, 11826, 482, 482, 6740, 11, 6186, 220, 21, 11, 220, 679, 22, 198, 27229, 37081, 9641, 3420, 596, 29311, 369, 18919, 3331, 11, 21272, 5476, 13, 12149, 31900, 11, 690, 2503, 369, 813, 20109, 11011, 1828, 7742, 323, 8079, 11, 323, 10092, 12643, 617, 19487, 430, 279, 45348, 690, 387, 439, 35306, 482, 323, 439, 28360, -100 ]
If you need a travel visa to Portugal, we will be glad to issue an invitation letter to support your visa application. Portugal is a member of the Schengen Area. Nationals of Schengen Area countries do not need a visa to enter Portugal.
{ "redpajama_set_name": "RedPajamaC4" }
3,662
[ 128000, 2746, 499, 1205, 264, 5944, 27753, 311, 34411, 11, 584, 690, 387, 16089, 311, 4360, 459, 29788, 6661, 311, 1862, 701, 27753, 3851, 627, 7229, 45284, 374, 264, 4562, 315, 279, 5124, 833, 268, 12299, 13, 62191, 315, 5124, 833, 268, 12299, 5961, 656, 539, 1205, 264, 27753, 311, 3810, 34411, 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 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 ]
[ 2746, 499, 1205, 264, 5944, 27753, 311, 34411, 11, 584, 690, 387, 16089, 311, 4360, 459, 29788, 6661, 311, 1862, 701, 27753, 3851, 627, 7229, 45284, 374, 264, 4562, 315, 279, 5124, 833, 268, 12299, 13, 62191, 315, 5124, 833, 268, 12299, 5961, 656, 539, 1205, 264, 27753, 311, 3810, 34411, 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 ]
Death Solves All Problems: The Authoritarian Counterinsurgency Toolkit Daniel Byman Editor's Note: This article is adapted from "'Death Solves All Problems': The Authoritarian Model of Counterinsurgency," in the latest issue of the Journal of Strategic Studies. Bashar al-Assad should be losing. His regime has slaughtered civilians, turned Syria's people against one another, politicized the country's military, maintained a discriminatory political system, and won neither hearts nor minds. Yet he has defied skeptics and still hangs on to power. Nor is Assad the lonely dictator killing his way to victory. Algeria, China, and Egypt are confronting insurgencies and are largely trying to repress their way to success — as they have done in the past. Russia alone has confronted over 20 insurgencies in the last century and has suppressed the vast majority of them successfully. As scholar Yuri Zhukov contends, Russia's long history suggests "repression works, but not in moderation." Scholars and policymakers, however, often wrongly assume authoritarian states will fail to defeat insurgents unless they reform and neglect the distinct ways they wage counterinsurgency. How good is the authoritarian record against insurgencies, and what tools do they use to win? Their track record is better than is generally recognized — almost as good as that of democracies, in fact. Yet to win, authoritarian regimes employ a distinct toolkit that can lead to victory, but comes with many costs and limits, ranging from their inability to use much of their military power, frequent corruption, poor military learning, and the risk that authoritarians' heavy use of repression makes it more likely that war will break out in the future should state control weaken. Surprising Success Record Authoritarian regimes often beat insurgents. A RAND study of insurgencies through 2010 found that autocracies won outright in 16 of 40 insurgencies they fought, losing only 12 times. A "mixed outcome" in which both sides gained some benefits reflects the bulk of the remaining 12 cases. Indeed, authoritarian states may do slightly better than these numbers suggest, as their loss column includes many cases in which third-party actors supported the rebels. The success rate of autocracies appears particularly surprising because it goes directly against the conventional wisdom in the United States about how to successfully fight insurgents. To say there is an "American way of counterinsurgency" overstates the degree of consensus, but a review of various sources suggests the democratic model the United States espouses has several common features, some of which are codified in the Field Manual 3-24 on counterinsurgency. An ideal type description of a democratic approach would emphasize that success requires convincing the population to accept government authority as legitimate, often through improved governance. The government should attempt to "win the hearts, minds, and acquiescence of the population." Force is necessary, but its employment should be limited: "[Y]ou cannot kill your way out of this war." In general, democracies are more likely to bring in disenfranchised communities and otherwise reduce grievances while seeking to maintain public safety. A democratic political system is valuable because it increases legitimacy, makes the government more responsive to the population, and makes a regime less likely to use force. If these criteria are what are most important, then the authoritarian track record should be much worse — even disastrous. The Authoritarian Toolkit So if authoritarians go against U.S. "best practices," what tools do they use, and how does this contribute to their success? The most obvious and remarked-upon difference between democracies and authoritarians is the authoritarian embrace of repression — though the use of repression as a counterinsurgency tool by democracies (particularly in colonial situations) should not be understated. Authoritarians act with brutality toward suspected insurgents, potential supporters, and indeed anyone else who crosses their paths. Torture, deportation, extra-judicial execution, indefinite detention, "disappearances," and other abuses are common. There is no consensus on the impact of repression on counterinsurgency. Some scholars contend that the threat or use of force can stop violence from spreading, while others argue that repression creates support for an insurgency that makes it easier to recruit and otherwise carry on the fight. Epitomizing the view that force should be limited, the U.S. counterinsurgency field manual notes, "the more force is used, the less effective it is." And there are many cases in which repression failed to work: Somoza's Nicaragua, for example, repressed on a vast scale, but the Sandinistas nevertheless overthrew the regime. Yet authoritarian regimes often repress on a vast scale far beyond what democratic regimes would consider repressive, and thus achieve different effects that help their counterinsurgency effort. To crush resistance in the Baltics during and after World War II, the Soviet Union deported roughly 10 percent of the population. The scale of deportation made it impossible for the guerrillas to get food and supplies. In Tibet, China destroyed entire villages, crucified, and burned or boiled alive civilians who supported the rebels. Such brutality did not win over local populations, instead creating bitterness that endured for generations. Yet for all its horrors, the violence prevented the population from giving succor to the rebels, allowing Russia and China to eventually destroy the insurgencies. Effective repression can compel individuals to avoid supporting an insurgency, even if they sympathized with the anti-regime agenda. Repression closes the political space and makes it more difficult for insurgents to organize. In essence, it denies potential insurgents opportunities to organize and raises the costs of joining the movement, rendering it difficult for insurgencies to gain the critical mass to sustain the fight and triumph. When repression is successful, potential supporters know there is a high probability they will suffer severe punishment. To the extent that a strong government is more important than a good government, extensive repression can prevent insurgency. Authoritarians are also able to crush or at least inhibit civil society, an important form of organization. This lack of civil society inhibits potential networks, making it harder to raise recruits, gain funds, and otherwise organize — what scholars have called "coordination goods." As Eric Wolf notes, "A rebellion cannot start from a situation of complete impotence; the powerless are easy victims." In addition to repression, authoritarian states use intelligence penetration and information operations. The same measures used to ensure control and obedience in general also help subdue suspect populations. Authoritarian regimes typically gather considerable information on their citizens and control access to travel and news. David Galula, one of the early giants in the study of modern insurgency, sees the lack of supreme state control as a necessary condition for insurgency to spread: "As long as there is no privacy, as long as every unusual move or event is reported and checked, as long as parents are afraid to talk in front of their children, how can contacts be made, ideas spread, recruiting accomplished?" Because of their strong security services and disregard for human rights, authoritarian regimes are well-practiced at using invasive intelligence techniques, such as heavy amounts of human intelligence (HUMINT) and signals intelligence (SIGINT), and otherwise gaining intelligence dominance. Indeed, while good HUMINT is often seen as a reflection of popular goodwill, it can also be gained from blackmail, vendettas, bribes, and other less savory methods. Authoritarians are also able to carry out "false flag" operations or other Machiavellian counterintelligence measures from which democratic states would shy away. In the 1990s, Algerian security forces, for example, penetrated rebel groups and pushed them toward more radical behavior. Some reports claim they would even masquerade as rebels and slaughter villagers in horrific ways to create disgust at the rebels — tactics their Soviet teachers used against the Ukrainians and other groups decades before. Population transfers are a common result of war, as residents in dangerous areas flee the fighting. Authoritarian regimes (and some democratic governments, particularly in colonial situations) may engineer such transfers as part of their counterinsurgency policy — a horrific, but powerful tool. Population control measures are often the key to counterinsurgency success. Deportations on a mass scale can separate insurgents from potential supporters. Stalin deported hundreds of thousands of Chechens, Ingush, Crimean Tartars, and others from the North Caucasus in 1943 and 1944, claiming (with little evidence) that they were potential Nazi collaborators. Even without deportations, authoritarians can control movement and close off a conflict zone. They can stop trade, impose extreme curfews, or otherwise isolate an area and physically separate insurgents from potential supporters. As Toft and Zhukov found in their study of Russia in the Caucasus, such an effort "transforms the conflict zone into a closed system," preventing insurgents from melting into the hinterlands, bringing in reinforcements, extracting valuable outside support, or otherwise reacting effectively. As these brutal techniques suggest, authoritarian regimes are more likely to kill civilians during an insurgency. Scholars have found that deliberate civilian deaths are most likely when governments face powerful insurgencies that directly threaten them and the government is unable to gain sufficient intelligence to fight the insurgents effectively. Regimes then go after civilians as a way of destroying the insurgency's logistical base — "draining the sea." One common insurgent method tries to undermine the will of its adversary by convincing the adversary public that defeat is inevitable, or at least that victory is too costly. Casualties and public displays of the brutality of war can disillusion a populace, as can the heavy spending often necessary to defeat insurgents. Authoritarian regimes often endure the suffering insurgents impose far better than democracies. As David Ucko points out, authoritarian regimes try harder to win the hearts and minds of their own people than they do that of the insurgents. Before the Second Chechen War, the Russian government used state-controlled media to portray Chechen rebels as bandits and terrorists. As John Dunlop argues in his book, Moscow even perpetrated a false-flag operation to bomb tower blocks outside Moscow and kill almost 300 people, simply in order to blame it on Chechen terrorists. Dictators play up nationalism and demonize their enemies while censoring anti-war sentiment. Control of television, the Internet, and other media can inhibit the dissemination of information that shows the war as failing. For example, in Russia's First Chechen War in the mid-1990s, independent television portrayals of the violence and internal Russian military problems increased public anti-war sentiment. By contrast, aggressive censorship stymied such discussion and contributed to less discontent during the Second Chechen War. Similarly, the decrease in political contestation in Russia also made organized protest less likely. Democratic states often try to change a political system as part of "armed reform," increasing the opportunities available to rebellious communities and their leaders in order to strengthen government legitimacy and decrease rebel recruitment and support. A final tool of authoritarian regimes is to make concessions, though the usual goal is to shore up regime security — giving a little to avoid giving a lot. Often concessions take the form of coopting an elite rather than winning over the people the insurgents claim to represent. Facing a revolt from jihadists in the 1990s, the Mubarak government of Egypt offered concessions to the religious establishment to win its loyalty, thereby "Islamicizing" Egypt in exchange for the religious establishment's support against the most radical elements. Yet authoritarians come to counterinsurgency with many disadvantages, as I detail in depth in my longer piece. Their overall military power is often limited, as they cannot rely on many of their conscripts in counterinsurgency situations. Corruption creates numerous problems, further decreasing legitimacy while allowing insurgents to gain access to weapons and avoid many traps. The authoritarian system often inhibits learning, as the closed and politicized system inhibits feedback mechanisms. Similarly, the politicized command structure often produces poor officers and discourages initiative. Authoritarian repression embitters populations, making future unrest more likely should pressure from the jackboot lighten. Finally, authoritarian regimes may find it harder to cut peace deals and win over pro-insurgent populations. For the United States, its European allies, and other democracies, the many authoritarian successes and their common toolkit should shape both expectations of authoritarian success and the nature of counterinsurgency assistance to authoritarian allies. At least some authoritarian regimes will inevitably be partners of the United States or other democracies, so understanding their distinct approach is vital. Authoritarian allies may win despite enjoying little popular support or otherwise going against conventional democratic conceptions of what gives a regime staying power. Daniel Byman is a professor in the security studies program at Georgetown University and the research director of the Center for Middle East Policy at the Brookings Institution. He is the author of Al Qaeda, the Islamic State, and the Global Jihadist Movement (Oxford). Follow him @dbyman. Photo credit: Aleksey Yermolov
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,213
[ 128000, 40358, 11730, 2396, 2052, 45635, 25, 578, 7030, 20631, 20315, 1354, 5673, 2301, 55876, 198, 41686, 3296, 1543, 198, 9597, 596, 7181, 25, 1115, 4652, 374, 30464, 505, 7326, 40358, 11730, 2396, 2052, 45635, 1232, 578, 7030, 20631, 5008, 315, 20315, 1354, 5673, 2301, 1359, 304, 279, 5652, 4360, 315, 279, 10139, 315, 46661, 19241, 627, 33, 1003, 277, 453, 76286, 1288, 387, 13490, 13, 5414, 17942, 706, 86847, 29536, 11, 6656, 12911, 596, 1274, 2403, 832, 2500, 11, 77037, 1534, 279, 3224, 596, 6411, 11, 18908, 264, 68763, 5054, 1887, 11, 323, 2834, 14188, 23492, 6463, 20663, 13, 14968, 568, 706, 711, 1142, 37679, 1233, 323, 2103, 59441, 389, 311, 2410, 13, 8170, 374, 38616, 279, 40666, 42284, 13419, 813, 1648, 311, 12845, 13, 81341, 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 ]
[ 40358, 11730, 2396, 2052, 45635, 25, 578, 7030, 20631, 20315, 1354, 5673, 2301, 55876, 198, 41686, 3296, 1543, 198, 9597, 596, 7181, 25, 1115, 4652, 374, 30464, 505, 7326, 40358, 11730, 2396, 2052, 45635, 1232, 578, 7030, 20631, 5008, 315, 20315, 1354, 5673, 2301, 1359, 304, 279, 5652, 4360, 315, 279, 10139, 315, 46661, 19241, 627, 33, 1003, 277, 453, 76286, 1288, 387, 13490, 13, 5414, 17942, 706, 86847, 29536, 11, 6656, 12911, 596, 1274, 2403, 832, 2500, 11, 77037, 1534, 279, 3224, 596, 6411, 11, 18908, 264, 68763, 5054, 1887, 11, 323, 2834, 14188, 23492, 6463, 20663, 13, 14968, 568, 706, 711, 1142, 37679, 1233, 323, 2103, 59441, 389, 311, 2410, 13, 8170, 374, 38616, 279, 40666, 42284, 13419, 813, 1648, 311, 12845, 13, 81341, 11, -100 ]
iRig microphone for iPhone iPad iPod Touch. Mic is a hand-held, quality condenser microphone for iPhone, iPod touch and iPad designed for all of your mobile sound needs. Now you can make professional audio and vocal recordings anywhere on your iOS device. The Mic features a highly unidirectional condenser-electret microphone capsule that provides quality recording in both close mic and long distance mic conditions, and provides real-time monitoring with its dual mini-jack connector design. A 3-level gain switch makes it instantly adjustable for any sound pressure condition&deash;from soft speaking to loud playing. Its familiar form is perfect for hand-held performance, plus it allows you to mount it on any mic stand leaving your device free for operating your favorite app.
{ "redpajama_set_name": "RedPajamaC4" }
8,199
[ 128000, 72, 49, 343, 43495, 369, 12443, 23067, 45171, 19898, 627, 98402, 374, 264, 1450, 58606, 11, 4367, 9955, 60544, 43495, 369, 12443, 11, 45171, 5916, 323, 23067, 6319, 369, 682, 315, 701, 6505, 5222, 3966, 627, 7184, 499, 649, 1304, 6721, 7855, 323, 26480, 38140, 12660, 389, 701, 16433, 3756, 627, 791, 28095, 4519, 264, 7701, 653, 307, 45770, 9955, 60544, 37081, 2171, 43495, 48739, 430, 5825, 4367, 14975, 304, 2225, 3345, 19748, 323, 1317, 6138, 19748, 4787, 11, 323, 5825, 1972, 7394, 16967, 449, 1202, 19091, 13726, 13636, 474, 28087, 2955, 13, 362, 220, 18, 11852, 8895, 3480, 3727, 433, 22571, 37030, 369, 904, 5222, 7410, 3044, 5, 451, 1003, 26, 1527, 8579, 12365, 311, 17813, 5737, 13, 11699, 11537, 1376, 374, 4832, 369, 1450, 58606 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 72, 49, 343, 43495, 369, 12443, 23067, 45171, 19898, 627, 98402, 374, 264, 1450, 58606, 11, 4367, 9955, 60544, 43495, 369, 12443, 11, 45171, 5916, 323, 23067, 6319, 369, 682, 315, 701, 6505, 5222, 3966, 627, 7184, 499, 649, 1304, 6721, 7855, 323, 26480, 38140, 12660, 389, 701, 16433, 3756, 627, 791, 28095, 4519, 264, 7701, 653, 307, 45770, 9955, 60544, 37081, 2171, 43495, 48739, 430, 5825, 4367, 14975, 304, 2225, 3345, 19748, 323, 1317, 6138, 19748, 4787, 11, 323, 5825, 1972, 7394, 16967, 449, 1202, 19091, 13726, 13636, 474, 28087, 2955, 13, 362, 220, 18, 11852, 8895, 3480, 3727, 433, 22571, 37030, 369, 904, 5222, 7410, 3044, 5, 451, 1003, 26, 1527, 8579, 12365, 311, 17813, 5737, 13, 11699, 11537, 1376, 374, 4832, 369, 1450, 58606, -100 ]
Follow @JohnPaczkowski Recent Posts by John Paczkowski Judge in E-Book Pricing Case Thinks Apple's Going Down; Apple Begs to Differ May 24, 2013 at 10:14 am PT Apple hasn't formally argued its position in the U.S. government's e-books antitrust case against it; indeed, the trial hasn't even begun. Yet already the federal judge presiding over the hearing has gone on record as saying Apple is likely to lose the case. Asked during a pretrial hearing Thursday for her thoughts on a likely outcome, U.S. District Judge Denise Cote said her view is that the U.S. Justice Department will prevail over Apple. Said Cote, "I believe that the government will be able to show at trial direct evidence that Apple knowingly participated in and facilitated a conspiracy to raise prices of e-books, and that the circumstantial evidence in this case, including the terms of the agreements, will confirm that." Though delivered with a caveat noting that she has not yet reviewed all the evidence in the case, and that her view was delivered without "the benefit of the testimony of the witnesses and further argument from counsel," Cote's remarks are a little unusual, to say the least, and don't bode particularly well for Apple's chances at trial. That said, they also don't reflect particularly well on Cote's impartiality. The case hasn't even been heard, and she has just gone on record saying she is reasonably certain that the plaintiff will win. And while her comments don't quite rise to the level of smack talk that undermined Thomas Penfield Jackson's ruling in the United States v. Microsoft case, one could imagine them resurfacing at a later date in an appeal if this trial goes south for Apple. Cote here is commenting on a potential outcome for the case without having heard testimony from Apple's witnesses or the cross-examination of the DOJ's witnesses. That's a crucial test of truth. And if this case does end up in appeal, Cote's apparent prejudging here could be harmful to her ruling. Apple disputed Cote's remarks and characterized them as premature. "Apple fundamentally disagrees with the judge's preliminary comments," Apple attorney Orin Snyder told AllThingsD. "We look forward to presenting our side of the evidence and bringing our witnesses to court. We will prove that Apple did nothing wrong and that consumers greatly benefited from Apple's entry into a new and emerging market." The case heads to bench trial on June 3. Apple Doesn't Want to Pay the Feds' E-Book Lawyer $70,000 a Week Apple Files Expected Appeal of E-Book Injunction Apple's E-Book Punishment Court Order is Final, and Not as Bad as Apple Feared The Incredible Shrinking Apple E-Book Remedy Apple Says DOJ's E-Book Remedies Are Biased in Amazon's Favor DOJ Softens Proposed Apple Ebook Injunctions, Slightly Apple Slams Feds' Proposed E-Book Remedies as a "Draconian and Punitive Intrusion" Apple's Chances for an E-Book Ruling Appeal Are Lousy, Say Legal Scholars Apple E-Books Ruling Won't Do Much For Consumers Apple Loses E-Book Antitrust Trial Here's Apple's Closing Slide Deck in E-Book Case, and the DOJ's, Too Apple: It's Time to Close the Book on DOJ's E-Book Case Steve Jobs, Winnie the Pooh and the iBook Launch The Apple iBooks Origin Story Apple's Cue Says Publishers Pushed for Higher E-Book Prices DOJ Misfires on Jobs Email in Apple E-Book Case — It Was a Discarded Draft Is Steve Jobs Message a Smoking Gun in Apple E-Book Case? Amazon Demanded Same Terms From Publishers For Which Apple is Now On Trial Apple Says Differences in Publisher Deals Belie E-Book Conspiracy Charges Apple Accuses DOJ of Unfairly Twisting Steve Jobs's Words Apple Says DOJ Is Trying to "Reverse Engineer a Conspiracy" in E-Books Case Here's the DOJ's E-Book-Pricing Case Against Apple (Slide Deck) Apple CEO Tim Cook: "The E-Book Case to Me Is Bizarre" Here's That Steve Jobs E-Book Email to James Murdoch Apple's E-Book Argument: Deals With Publishers Improved Competition DOJ Filing Calls Apple "Ringmaster" of E-Book Pricing Rise Apple Alone Fighting DOJ E-Book Suit After Macmillan Settlement Apple's Cook Must Testify in E-Book Antitrust Suit Tagged with: antitrust, Apple, Denise Cote, Department of Justice, DOJ, e-books, Orin Snyder, price fixing Late Start May Be Tempering China Mobile's iPhone Preorders Twitter's Tanking 2013 Was a Good Year for Chromebooks BlackBerry Pulls Latest Twitter for BB10 Update Apple CEO Tim Cook Made $4.25 Million This Year I think the NSA has a job to do and we need the NSA. But as (physicist) Robert Oppenheimer said, "When you see something that is technically sweet, you go ahead and do it and argue about what to do about it only after you've had your technical success. That is the way it was with the atomic bomb." — Phil Zimmerman, PGP inventor and Silent Circle co-founder, in an interview with Om Malik
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,966
[ 128000, 12763, 571, 13379, 47, 582, 41796, 29384, 198, 26198, 15781, 555, 3842, 12925, 41796, 29384, 198, 61356, 304, 469, 12, 7280, 60426, 11799, 666, 15872, 8325, 596, 35971, 6419, 26, 8325, 44793, 82, 311, 423, 14657, 198, 11356, 220, 1187, 11, 220, 679, 18, 520, 220, 605, 25, 975, 1097, 19932, 198, 27665, 12775, 956, 37402, 18784, 1202, 2361, 304, 279, 549, 815, 13, 3109, 596, 384, 84191, 3276, 85971, 1162, 2403, 433, 26, 13118, 11, 279, 9269, 12775, 956, 1524, 22088, 13, 14968, 2736, 279, 6918, 11913, 1685, 6714, 927, 279, 11011, 706, 8208, 389, 3335, 439, 5605, 8325, 374, 4461, 311, 9229, 279, 1162, 627, 47145, 2391, 264, 864, 48447, 11011, 7950, 369, 1077, 11555, 389, 264, 4461, 15632, 11, 549, 815, 13, 11182, 20819 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 12763, 571, 13379, 47, 582, 41796, 29384, 198, 26198, 15781, 555, 3842, 12925, 41796, 29384, 198, 61356, 304, 469, 12, 7280, 60426, 11799, 666, 15872, 8325, 596, 35971, 6419, 26, 8325, 44793, 82, 311, 423, 14657, 198, 11356, 220, 1187, 11, 220, 679, 18, 520, 220, 605, 25, 975, 1097, 19932, 198, 27665, 12775, 956, 37402, 18784, 1202, 2361, 304, 279, 549, 815, 13, 3109, 596, 384, 84191, 3276, 85971, 1162, 2403, 433, 26, 13118, 11, 279, 9269, 12775, 956, 1524, 22088, 13, 14968, 2736, 279, 6918, 11913, 1685, 6714, 927, 279, 11011, 706, 8208, 389, 3335, 439, 5605, 8325, 374, 4461, 311, 9229, 279, 1162, 627, 47145, 2391, 264, 864, 48447, 11011, 7950, 369, 1077, 11555, 389, 264, 4461, 15632, 11, 549, 815, 13, 11182, 20819, -100 ]
There is an extra printing of images available on the wedding day to be used for letters of thanks and production of photo book. Good wedding photography combines many more than a perfect setting and vibrant energy of love... Eternal memory of the brightest moments should not be one of your worries on this particular day. I frame the newlyweds in a composition which uniquely captures the present energy and increases the value of the image. An assistant or an additional photographer often help me during the photographing process, so I can focus on the dialog with the couple and thus spend my energy developing a visual narrative that corresponds with your story. To keep the memory fresh you will surely browse through the photo book long after the event took place. As they say, a good image says more than a thousand words.
{ "redpajama_set_name": "RedPajamaC4" }
5,931
[ 128000, 3947, 374, 459, 5066, 18991, 315, 5448, 2561, 389, 279, 13306, 1938, 311, 387, 1511, 369, 12197, 315, 9523, 323, 5788, 315, 6685, 2363, 627, 15571, 13306, 24685, 33511, 1690, 810, 1109, 264, 4832, 6376, 323, 34076, 4907, 315, 3021, 1131, 67872, 5044, 315, 279, 72021, 14269, 1288, 539, 387, 832, 315, 701, 38145, 389, 420, 4040, 1938, 13, 358, 4124, 279, 13945, 86, 6910, 304, 264, 18528, 902, 42329, 41255, 279, 3118, 4907, 323, 12992, 279, 907, 315, 279, 2217, 627, 2127, 18328, 477, 459, 5217, 29867, 3629, 1520, 757, 2391, 279, 10512, 287, 1920, 11, 779, 358, 649, 5357, 389, 279, 7402, 449, 279, 5743, 323, 8617, 8493, 856, 4907, 11469, 264, 9302, 19775, 430, 34310, 449, 701, 3446, 13, 2057, 2567, 279, 5044, 7878 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 3947, 374, 459, 5066, 18991, 315, 5448, 2561, 389, 279, 13306, 1938, 311, 387, 1511, 369, 12197, 315, 9523, 323, 5788, 315, 6685, 2363, 627, 15571, 13306, 24685, 33511, 1690, 810, 1109, 264, 4832, 6376, 323, 34076, 4907, 315, 3021, 1131, 67872, 5044, 315, 279, 72021, 14269, 1288, 539, 387, 832, 315, 701, 38145, 389, 420, 4040, 1938, 13, 358, 4124, 279, 13945, 86, 6910, 304, 264, 18528, 902, 42329, 41255, 279, 3118, 4907, 323, 12992, 279, 907, 315, 279, 2217, 627, 2127, 18328, 477, 459, 5217, 29867, 3629, 1520, 757, 2391, 279, 10512, 287, 1920, 11, 779, 358, 649, 5357, 389, 279, 7402, 449, 279, 5743, 323, 8617, 8493, 856, 4907, 11469, 264, 9302, 19775, 430, 34310, 449, 701, 3446, 13, 2057, 2567, 279, 5044, 7878, -100 ]
Excellent chance to apply for new SIANI Expert Group funding! Have you got an idea about how to make our food systems more sustainable and our food security better? Do you have in mind people who would make a god team for realizing your idea? Time to put your ideas to practice. Join a team of researchers working with land and livelihoods systems research. The projects are focusing on systematic analyses of the impacts of changes in land tenure, and different types of project implementation efforts in relation to forests and agriculture. Focali partner Agroforestry Network urges the Swedish government to clearly position agroforestry in the upcoming policy framework for Swedish development cooperation. The Center for International Forestry Research (CIFOR) is seeking eight PhD scholars to focus on evaluating the impacts of subnational REDD+ initiatives in Brazil, Peru and Indonesia. A chance to get involved! We are looking for a committed student with an interest in sustainability, who wants an internship with Focali this fall. Focali will host a session at this years Agri4D conference on the topic; Forests for Food Security – in the light of Equal Rights and Sustainable Resource Management. The theme of the conference is Rural Transformation and Urbanization. Also, Focali member Madelene Ostwald will together with Ewa Wredle, SLU, host the session "Land - under pressures or dynamic changes?" Focali member Martin Persson, in the studio when the Swedish Radio show Klotet reports on positive development of rain forest restoration in Costa Rica. Research shows that new trees are establishing in logged areas, faster than expected and spontaneously, without planting. New report from Swedwatch and Fair Finance Guide shows that seven of Sweden's largest banks invest billions in companies linked to deforestation and violations of indigenous people in Borneo. Focali will bring a global perspective when Universeum is launching an initiative on Swedish forests in collaboration with a group of stakeholders from civil society and the private sector. AgriFoSe2030 together with GMV will give a one week training course for African young researchers on effective research-to-policy communication for agricultural development in Nairobi, Kenya, next week. The PhD candidate will use participatory approaches to help further the understanding of the role that supply chain sustainability initiatives can play in reducing forest clearing for agricultural production in the tropics. The PhD will be based at Chalmers University of Technology, but is part of a bigger research project led by Stockholm Environment Institute (SEI), focusing on sustainability initiatives and risks for leakage in soy and beef supply chains in South America. Several Focali members are involved in this project. Deadline to apply 31 December. Follow the GMV christmas calender with short films about the Sustainable Development Goals - SDG´s each day. Today Maria Ölund, the Focali Project Coordinator, talk about how Focali's work is related to SDG no.2 "End hunger, achieve food security and improved nutrition, and promote sustainable agriculture" Focali member Eskil Mattsson who has rich research experience from Sri Lanka is invited to hold a key-note address at the "International Research Symposium on Valuation of Forest Ecosystems and their Services" to be held on October 18 in Colombo, Sri Lanka. Focali member Torsten Krause (LUCSUS-LU) has secured a three year international post-doc grant from VR – the Swedish Research Council. He will work closely with communities in the Amazon region of both Ecuador and Colombia e.g. by studying how participatory forest monitoring can be a viable option to secure long-term successes in forest conservation that includes animal species and not just trees. Since as he states: "By not including animals as an important part of the forest ecosystem and mostly paying attention to forest cover; an incomplete and inaccurate sense of conservation success is being created. In the long run the disappearance of animals also threatens the trees and the entire forest ecosystems at large." A new project from the Swedish Energy Agency (1,4 million kr) has landed at GMV - Centre for Environment and Sustainability. Focali members are leading and participating in the project that will start in the fall of 2016. The School of Global Studies at University of Gothenburg is advertising a doctoral studentship in environmental social science. Deadline to apply is 1 February 2016. Take the time to meet Focali at the Global Landscape Forum (GLF) in Paris on December 5-6. The network will participate at the forum as part of the thematic collaboration with the Swedish International Agricultural Network Initiative (SIANI) around forests, landscapes and food security. Martin Karlson PhD candidate at Linköping University will defend his thesis, on Remote Sensing of Woodland Structure and Composition in the Sudano-Sahelian zone, 23 October. In this interview he shares experiences from his field research in Burkina Faso and the main contributions from his research for the use of remote sensing in the region. New publication by Jenny Friman within our thematic collaboration with SIANI. This brief explores how two different framings can produce different conclusions about vulnerability in Burkina Faso's agroforestry system, resulting in different actions for different people.
{ "redpajama_set_name": "RedPajamaC4" }
1,578
[ 128000, 50755, 6140, 311, 3881, 369, 502, 328, 22774, 40, 33257, 5856, 11006, 0, 12522, 499, 2751, 459, 4623, 922, 1268, 311, 1304, 1057, 3691, 6067, 810, 22556, 323, 1057, 3691, 4868, 2731, 30, 3234, 499, 617, 304, 4059, 1274, 889, 1053, 1304, 264, 10087, 2128, 369, 44114, 701, 4623, 30, 4212, 311, 2231, 701, 6848, 311, 6725, 627, 12572, 264, 2128, 315, 12074, 3318, 449, 4363, 323, 64751, 82, 6067, 3495, 13, 578, 7224, 527, 21760, 389, 37538, 29060, 315, 279, 25949, 315, 4442, 304, 4363, 40061, 11, 323, 2204, 4595, 315, 2447, 8292, 9045, 304, 12976, 311, 36658, 323, 30029, 627, 37, 3768, 72, 8427, 4701, 299, 1348, 4720, 8304, 63937, 279, 31209, 3109, 311, 9539, 2361, 945, 299, 1348, 4720, 304, 279, 14827, 4947, 12914 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 50755, 6140, 311, 3881, 369, 502, 328, 22774, 40, 33257, 5856, 11006, 0, 12522, 499, 2751, 459, 4623, 922, 1268, 311, 1304, 1057, 3691, 6067, 810, 22556, 323, 1057, 3691, 4868, 2731, 30, 3234, 499, 617, 304, 4059, 1274, 889, 1053, 1304, 264, 10087, 2128, 369, 44114, 701, 4623, 30, 4212, 311, 2231, 701, 6848, 311, 6725, 627, 12572, 264, 2128, 315, 12074, 3318, 449, 4363, 323, 64751, 82, 6067, 3495, 13, 578, 7224, 527, 21760, 389, 37538, 29060, 315, 279, 25949, 315, 4442, 304, 4363, 40061, 11, 323, 2204, 4595, 315, 2447, 8292, 9045, 304, 12976, 311, 36658, 323, 30029, 627, 37, 3768, 72, 8427, 4701, 299, 1348, 4720, 8304, 63937, 279, 31209, 3109, 311, 9539, 2361, 945, 299, 1348, 4720, 304, 279, 14827, 4947, 12914, -100 ]
January 8, 1887: The German sailing vessel Elizabeth, while approaching Little Island (now Virginia Beach), Virginia, was wrecked during a blizzard. The ship was heading to Baltimore from Hamburg carrying twenty two crew when she hit the rocks about 1,000 feet from shore around midnight. The ship was noticed by the lifesaving station about 1 a.m. and rescue operations were underway by 5 a.m. The strong winds prevented rescue attempts for a while but, finally the men from the lifesaving service launched a boat and rowed out to the wreck. The crew were in the process of launching a boat when the lifesavers reached the Elizabeth after daylight. The captain and six of the crew got into the surfboat with the seven men from the lifesaving service while the remainder of the crew took Elizabeth's lifeboat. After many hours of effort to save the twenty two man crew the boats began to make the return trip to shore. Sadly a large wave crashed the two boats capsizing them and dumping the occupants into the cold water. All twenty two of the Elizabeth's crew and five of the lifesavers were killed, either by drowning or due to exposure. Only two men managed to get to shore alive.
{ "redpajama_set_name": "RedPajamaC4" }
4,087
[ 128000, 33327, 220, 23, 11, 220, 9367, 22, 25, 578, 6063, 51129, 27274, 21393, 11, 1418, 31047, 15013, 10951, 320, 3409, 13286, 13011, 705, 13286, 11, 574, 36850, 291, 2391, 264, 1529, 39248, 13, 578, 8448, 574, 14836, 311, 24899, 505, 51562, 15691, 17510, 1403, 13941, 994, 1364, 4295, 279, 23902, 922, 220, 16, 11, 931, 7693, 505, 31284, 2212, 33433, 13, 578, 8448, 574, 14000, 555, 279, 49785, 2370, 8216, 922, 220, 16, 264, 749, 13, 323, 17629, 7677, 1051, 38199, 555, 220, 20, 264, 749, 627, 791, 3831, 29592, 32098, 17629, 13865, 369, 264, 1418, 719, 11, 5616, 279, 3026, 505, 279, 49785, 2370, 2532, 11887, 264, 15688, 323, 2872, 291, 704, 311, 279, 36850, 13, 578, 13941, 1051, 304, 279, 1920, 315, 28818, 264, 15688 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 33327, 220, 23, 11, 220, 9367, 22, 25, 578, 6063, 51129, 27274, 21393, 11, 1418, 31047, 15013, 10951, 320, 3409, 13286, 13011, 705, 13286, 11, 574, 36850, 291, 2391, 264, 1529, 39248, 13, 578, 8448, 574, 14836, 311, 24899, 505, 51562, 15691, 17510, 1403, 13941, 994, 1364, 4295, 279, 23902, 922, 220, 16, 11, 931, 7693, 505, 31284, 2212, 33433, 13, 578, 8448, 574, 14000, 555, 279, 49785, 2370, 8216, 922, 220, 16, 264, 749, 13, 323, 17629, 7677, 1051, 38199, 555, 220, 20, 264, 749, 627, 791, 3831, 29592, 32098, 17629, 13865, 369, 264, 1418, 719, 11, 5616, 279, 3026, 505, 279, 49785, 2370, 2532, 11887, 264, 15688, 323, 2872, 291, 704, 311, 279, 36850, 13, 578, 13941, 1051, 304, 279, 1920, 315, 28818, 264, 15688, -100 ]
Professor Anne-Lise DHIMANE was awarded a JSPS-BRIDGE support to explore in Japan new ways to strengthen the relations between UPMC and Japanese Universities and Research Centers. More specifically in the field of Chemistry. Professor DHIMANE is hosted by Pr. Y. NISHIHARA from March 18th 2017 for about 40 days at Okayama University. She will also visit Osaka Prefecture University and other Universities. Science NEWS: main features and comments related with prominent results obtained by Okayama University researchers.
{ "redpajama_set_name": "RedPajamaC4" }
4,091
[ 128000, 48120, 29026, 8288, 1082, 33887, 1829, 28919, 574, 22034, 264, 622, 4695, 50, 7826, 49, 55256, 1862, 311, 13488, 304, 6457, 502, 5627, 311, 20259, 279, 4398, 1990, 549, 93623, 323, 11002, 75898, 323, 8483, 41991, 13, 4497, 11951, 304, 279, 2115, 315, 42846, 627, 48120, 33887, 1829, 28919, 374, 21685, 555, 2394, 13, 816, 13, 452, 16849, 76123, 55062, 505, 5587, 220, 972, 339, 220, 679, 22, 369, 922, 220, 1272, 2919, 520, 36539, 3105, 3907, 13, 3005, 690, 1101, 4034, 88085, 43688, 63293, 3907, 323, 1023, 75898, 627, 36500, 41226, 25, 1925, 4519, 323, 6170, 5552, 449, 21102, 3135, 12457, 555, 36539, 3105, 3907, 12074, 13, 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, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 48120, 29026, 8288, 1082, 33887, 1829, 28919, 574, 22034, 264, 622, 4695, 50, 7826, 49, 55256, 1862, 311, 13488, 304, 6457, 502, 5627, 311, 20259, 279, 4398, 1990, 549, 93623, 323, 11002, 75898, 323, 8483, 41991, 13, 4497, 11951, 304, 279, 2115, 315, 42846, 627, 48120, 33887, 1829, 28919, 374, 21685, 555, 2394, 13, 816, 13, 452, 16849, 76123, 55062, 505, 5587, 220, 972, 339, 220, 679, 22, 369, 922, 220, 1272, 2919, 520, 36539, 3105, 3907, 13, 3005, 690, 1101, 4034, 88085, 43688, 63293, 3907, 323, 1023, 75898, 627, 36500, 41226, 25, 1925, 4519, 323, 6170, 5552, 449, 21102, 3135, 12457, 555, 36539, 3105, 3907, 12074, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
President (2018-2019): Rebekah Davis is the Archivist of the Limestone County Archives in Athens, Ala., where she is responsible for all aspects of preservation of and access to Limestone County, Ala.'s historic government and private collection records, as well as community outreach efforts of the Limestone County Archives. At the Archives, she has implemented records processing, digitization, and online sharing programs; overseen preservation efforts to include a full facility renovation; formed partnerships with related history and community organizations to improve preservation of and access to historic records; and incorporated these records into regular local history publications, history and genealogy presentations, special exhibits and events, and establishment of local history monuments. Davis has served as Vice-President and President of the Society of Alabama Archivists and board member of the Athens-Limestone Community Association. She previously was a reporter and editor for The News-Courier and The Cullman Times. She earned her bachelor's degree in communications from the University of North Alabama. President-Elect (2018-2019): Jelain Chubb is the state archivist and director of the Archives and Information Services Division at the Texas State Library and Archives Commission. She earned a bachelor's degree in history from the College of Charleston, and dual master's degrees in library and information science and applied history with a specialization in archival administration from the University of South Carolina at Columbia. Jelain began her professional experience as a search room assistant at the South Carolina Department of Archives and History conducting reference interviews and assisting researchers using state and local government records. She later became the assistant curator of archival collections for the University of South Carolina's University Archives and moved on to increasingly responsible professional positions as local records archivist for the Kansas State Historical Society, administrative archivist for the Local Records Program at the Missouri State Archives, and as state archivist for Ohio and Texas. An active member NAGARA since 1998, Jelain has held several leadership positions including as a member of the board of directors from 2005-2009. She also served as a member of multiple annual meeting program committees and chaired the 2007 and 2015 local arrangement committees. Jelain is a member of the Council of State Archivists, Academy of Certified Archivists and the Institute of Certified Records Managers, as well as regional and local archival and historical organizations. In 2015 she was named a Fellow of the Society of American Archivists (SAA). Vice President (2018-2019): Casey A. Coleman is the Electronic Records Manager for the U.S. Securities and Exchange Commission (SEC). Prior to joining the SEC, he served on records management oversight and policy teams in the Office of the Chief Records Officer at the National Archives and Records Administration (NARA). He is an alumnus of the University of Florida (BA, History), the University of Vermont (MA, History), and the University of Wisconsin-Madison (MA, Communication Arts-Film Studies and MA-LIS, Library and Information Studies). He is currently the chair of the Government Records Section of the Society of American Archivists (SAA). Immediate Past President (2018-2019): Patty Davis is the Assistant Director for the Senior Leadership Office Records Program at the United States Department of Justice (DOJ). Patty received a Bachelor of Science in History from Northern Michigan University and a Masters of Arts in History with a certificate in Archives and Records from Western Washington University. Previous positions include Records Management Specialist for Defense Logistics Agency (DLA) – Energy, Government Records Archivist for the State Archives of Ohio, and Information Specialist for Russell Investments. Outside of work, Patty is a board member and volunteer at the Central Rappahannock Heritage Center (CRHC) and is Secretary, and former President, of the Fredericksburg PC User's Group (FPCUG). Treasurer (2017-2019): Bethany Cron is a Senior Records Management Policy Analyst at the National Archives and Records Administration. She is a member of the Records Management Policy and Outreach Section within the Office of the Chief Records Officer. Her team has produced guidance on electronic messages, social media records, cloud computing, and email archiving applications. She is a graduate of the School of Information at the University of Michigan (MSI, Archives and Records Management) and DePaul University (BA, History). She currently serves as chair of the Records Management Section for the Society of American Archivists. Secretary (2018-2019): Marissa Paron is a Senior Project Officer, Recordkeeping Strategies, within the Government Records Initiatives Division of the Archives Branch at Library and Archives Canada (LAC), and has over 16 years of public service experience with the Government of Canada. Her current position involves providing strategic advice on the management of government records by federal institutions in support of LAC acquisition of government archives, and developing operational policies and tools for that purpose. She began her career in information management at LAC in 2007 as a Government Records Archivist responsible for appraising, acquiring, arranging, describing and providing access to the archival records of numerous federal government departments and agencies. In addition to holding a Bachelor of Arts in French (Applied Linguistics and Language Studies), a Certificate in French Translation Studies, and a Master of Arts in Canadian Studies (Heritage Conservation) from Carleton University in Ottawa, Ontario, Canada, Marissa has completed extensive training in archives and records management – including from the Society of American Archivists. Marissa is registered with the Standards Council of Canada as Secretary to Canada's Mirror Committee to the International Organization for Standardization (ISO) / Technical Committee (TC) 46 – Information and documentation / Subcommittee (SC) 11 – Archives and records management. She has served as Vice-President and President of the Board of Directors of the Archives Association of Ontario, and previously held membership to the Association of Canadian Archivists. Federal Government Rep (2017-2019): Galen Wilson has been in the archives and records management profession for 37 years but tragically is still nearly six years from retirement. He is a member of the National Archives and Records Administration's General Records Schedule Team, which is nearing the end of a 5-year project totally rewriting the GRS from the ground up. While the GRS arguably concerns the least interesting records created and maintained by the Federal government, without it agencies would not be able to destroy requisitions for pencils and toilet paper from 1958, so let's just all be grateful for the GRS. Mr. Wilson holds a bachelor's degree from Muskingum College, and a master's from the University of Michigan. He makes his home in Dayton, Ohio's historic district with his wife Betsy and a variable number of house and porch cats. Federal Rep. (2018-2020): Kathleen M. Williams is Chief of Archives at the National Gallery of Art in Washington, DC where she directs the institutional archives program. Prior to joining the National Gallery in 2017, she was the Executive Director of the National Historical Publications and Records Commission (NHPRC), the grant-making arm of the National Archives. Williams served at the NHPRC beginning in 2004, first joining the staff as its Deputy Director before being named its Director in 2008. Before joining the National Archives, she spent over twenty years as an archivist in private and public museums. She served for ten years at the Smithsonian Institution as a member of the senior staff of the Smithsonian Institution Archives, including service as its Archives Division Director. Her career has included ten years as archivist at the Museum of Fine Arts, Houston, where she began the archives program. Her career in archives began in 1982, serving for two years as assistant archivist at the Corcoran Gallery of Art in Washington, DC. Williams has a BA in history from the College of the Holy Cross. She studied archives and history as a graduate student at the University of Maryland, and received an MA in arts and cultural administration from Goucher College in Baltimore, Maryland. She was named an SAA Fellow in 2015. State Government Rep (2018-2019): Kristopher Stenson is Administrator for the Oregon Records Management Solution at the Oregon State Archives, where he works with state and local government agencies to proactively manage their electronic records securely and efficiently in a centralized ERMS environment. He is a frequent presenter at government agencies and their association meetings, focusing primarily on topics surrounding technology and electronic records. Kristopher is a strong advocate for a proactive approach to records management and archives, and is passionate about helping others get past their own technological and administrative hurdles. Kristopher previously worked as the Electronic Records Archivist for the Illinois State Archives, and has been an active member of the Council of State Archivists' State Electronic Records Initiative since its inception. In 2018 he served on NAGARA's Digital Rights Management working group and contributed to its report. Kristopher holds a Master's degree in Library Science from Indiana University and an MA in History from Washington State University. Local Government Rep (2017-2019): Jen Haney Conover is the Records Manager and Archivist for the Warren County Records Center and Archives, where she directs all aspects of the county's records management, archival and microfilm/imaging divisions since 2013. Jen received her B.A. in history with a minor in music history from Miami University, and completed her graduate education at Wright State University with a M.A. in Public History. Jen serves as Co-Chair of the Ohio County Archivists & Records Manager Association and is active in the Society of Ohio Archivists and the Miami Valley Archivists Roundtable. Prior to coming to Warren County, Jen worked at the AFRO History Office at Wright Patterson AFB, the Greene County Room in Xenia, Ohio and in library access services at the University of Dayton. In her spare time, she is an active runner, completing 2-3 half marathons a year, loves live music and spending time with her husband Brian and labradoodle, Striker. Local Government Rep (2017-2019): Jannette Goodall, CMC, TRMC, CRM, has served as the City Clerk for the City of Austin since January 2013. Prior to her appointment as City Clerk she served the City Records Management Officer from 2001-2013 and has over twenty-eight years of records and information management experience. In addition to the serving with the City of Austin, her career has included working with the Illinois State Archives, University of Washington in Seattle and the Utah State Archives. She is a Certified Municipal Clerk, a Texas Registered Municipal Clerk and a Certified Records Manager. She has been a member of ARMA International since 1993 for which she served for nine years on the ARMA Austin Chapter Board. She is also a member of the International Institute of Municipal Clerks Records Management Committee. At Large Member (2018-2019): Jennifer Green is the first municipal archivist for The City of Oklahoma City. Jennifer maintains the records retention schedule for the City and serves as records management consultant for all departments. Based in the Office of City Clerk, her position as archivist includes destruction of short term records, preservation of permanent records, identification and preservation of inactive records with historical value, and developing museum quality exhibits for display in City Hall. Previously, Jennifer worked at the Oklahoma Historical Society as the head of the Manuscripts Division. Jennifer has been a member of ARMA for six years and is currently on the board of the local ARMA-OKC chapter and is a member of the Oklahoma Historical Records Advisory Board.
{ "redpajama_set_name": "RedPajamaC4" }
1,254
[ 128000, 27229, 320, 679, 23, 12, 679, 24, 1680, 52743, 1247, 1494, 17200, 374, 279, 9683, 80244, 315, 279, 445, 36541, 6406, 38329, 304, 46926, 11, 89762, 2637, 1405, 1364, 374, 8647, 369, 682, 13878, 315, 46643, 315, 323, 2680, 311, 445, 36541, 6406, 11, 89762, 3238, 82, 18526, 3109, 323, 879, 4526, 7576, 11, 439, 1664, 439, 4029, 47210, 9045, 315, 279, 445, 36541, 6406, 38329, 13, 2468, 279, 38329, 11, 1364, 706, 11798, 7576, 8863, 11, 16099, 2065, 11, 323, 2930, 11821, 7620, 26, 20270, 268, 46643, 9045, 311, 2997, 264, 2539, 12764, 50555, 26, 14454, 40705, 449, 5552, 3925, 323, 4029, 11351, 311, 7417, 46643, 315, 323, 2680, 311, 18526, 7576, 26, 323, 32762, 1521, 7576, 1139, 5912, 2254, 3925, 29085, 11, 3925, 323, 15207 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 27229, 320, 679, 23, 12, 679, 24, 1680, 52743, 1247, 1494, 17200, 374, 279, 9683, 80244, 315, 279, 445, 36541, 6406, 38329, 304, 46926, 11, 89762, 2637, 1405, 1364, 374, 8647, 369, 682, 13878, 315, 46643, 315, 323, 2680, 311, 445, 36541, 6406, 11, 89762, 3238, 82, 18526, 3109, 323, 879, 4526, 7576, 11, 439, 1664, 439, 4029, 47210, 9045, 315, 279, 445, 36541, 6406, 38329, 13, 2468, 279, 38329, 11, 1364, 706, 11798, 7576, 8863, 11, 16099, 2065, 11, 323, 2930, 11821, 7620, 26, 20270, 268, 46643, 9045, 311, 2997, 264, 2539, 12764, 50555, 26, 14454, 40705, 449, 5552, 3925, 323, 4029, 11351, 311, 7417, 46643, 315, 323, 2680, 311, 18526, 7576, 26, 323, 32762, 1521, 7576, 1139, 5912, 2254, 3925, 29085, 11, 3925, 323, 15207, -100 ]
Daylight Saving Time ends on Sunday, November 6, at 2:00 A.M. It's the magical time where you get a precious gift from Father Time, an extra hour to do anything you want… or sleep an extra hour. Here in Reno Tahoe, a 24-hour city with adventure around every corner, we have plenty of ideas on what to do during the Fall Back extra hour. If you've never experienced the Awful-Awful in downtown Reno, Fall Back might be the best time to discover this magnificent beast of a burger. Aren't you intrigued by something named because it's awful big and awful good? Plus, you'll have an extra hour for your body to digest the pound of fries underneath the incredible thing. Located in The Nugget in downtown Reno and open 24 hours a day, order this with all the fixings at 2:00 A.M. and you might cause a disruption in the time-space continuum in the most delicious way possible. With over a dozen ski resorts within an hour from Reno, it's okay to feel overwhelmed with decisions for the upcoming season. Where will you spend opening day? Will you be be on a double black diamond chute, in the trees or on bunny hill? Take a deep breath, then take an hour to map out your winter attack, and maybe dust off your gear that's feeling months of neglect in the garage. Check out the ski resorts opening days here. Here's the greatest idea ever: turn your extra hour into Happy Hour! Good luck choosing a favorite out of the several local seasonal beers on tap in Reno Tahoe. From a harvest ale featuring local pine nuts to a stout aged in bourbon barrels, you'll leave your bar stool with a new appreciation for fall. There's a feast for your eyes around every corner in Reno Tahoe. Take a fascinating look at America's favorite pastime at Reno Aces photographer David Calvert's photography exhibit in downtown Reno or take a stroll down MidTown and see 60+ murals from international street artists. You might need more than one hour at Nevada Museum of Art in downtown Reno. See a diverse range of rotating exhibitions including an immersive light installation to Aboriginal Australian paintings. Looking to head outdoors to see Mother Nature's latest handiwork? Take a quick drive up Mt. Rose Highway past the snow-capped mountains for a stunning sunset that you have to see to believe. 5. Immerse yourself in destination inspiration! If it's social, we're on it. Whether it's for an hour or for one minute, get inspired on Reno Tahoe social media channels. Say hello and be sure to tag #RenoTahoe when posting your own images of what you did with your Fall Back hour, whether it's massive burgers or Tahoe sunsets, for a chance to be featured. The post 5 Things to Do With Your Extra "Fall Back" Hour in Reno Tahoe appeared first on Reno Tahoe USA Blog.
{ "redpajama_set_name": "RedPajamaC4" }
9,701
[ 128000, 10369, 4238, 49538, 4212, 10548, 389, 7418, 11, 6841, 220, 21, 11, 520, 220, 17, 25, 410, 362, 1345, 13, 1102, 596, 279, 24632, 892, 1405, 499, 636, 264, 27498, 8352, 505, 20941, 4212, 11, 459, 5066, 6596, 311, 656, 4205, 499, 1390, 1981, 477, 6212, 459, 5066, 6596, 13, 5810, 304, 64518, 96986, 11, 264, 220, 1187, 21925, 3363, 449, 18427, 2212, 1475, 9309, 11, 584, 617, 11510, 315, 6848, 389, 1148, 311, 656, 2391, 279, 15128, 6984, 5066, 6596, 627, 2746, 499, 3077, 2646, 10534, 279, 18371, 1285, 6830, 86, 1285, 304, 19441, 64518, 11, 15128, 6984, 2643, 387, 279, 1888, 892, 311, 7142, 420, 41792, 32236, 315, 264, 45723, 13, 74604, 956, 499, 69118, 555, 2555, 7086, 1606, 433, 596, 25629, 2466, 323, 25629 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 10369, 4238, 49538, 4212, 10548, 389, 7418, 11, 6841, 220, 21, 11, 520, 220, 17, 25, 410, 362, 1345, 13, 1102, 596, 279, 24632, 892, 1405, 499, 636, 264, 27498, 8352, 505, 20941, 4212, 11, 459, 5066, 6596, 311, 656, 4205, 499, 1390, 1981, 477, 6212, 459, 5066, 6596, 13, 5810, 304, 64518, 96986, 11, 264, 220, 1187, 21925, 3363, 449, 18427, 2212, 1475, 9309, 11, 584, 617, 11510, 315, 6848, 389, 1148, 311, 656, 2391, 279, 15128, 6984, 5066, 6596, 627, 2746, 499, 3077, 2646, 10534, 279, 18371, 1285, 6830, 86, 1285, 304, 19441, 64518, 11, 15128, 6984, 2643, 387, 279, 1888, 892, 311, 7142, 420, 41792, 32236, 315, 264, 45723, 13, 74604, 956, 499, 69118, 555, 2555, 7086, 1606, 433, 596, 25629, 2466, 323, 25629, -100 ]
Derrick T. Simmons SB 2479 This legislation lowers the investment amount needed to qualify for a fee-in-lieu agreement from $100 million to $60 million. It allows the local governing authorities to enter into these agreements with existing industries in their area that are looking to expand. This legislation is an important step towards giving communities more leverage in recruiting companies to their areas and helping their existing companies grow. The business vote was in support of this legislation. YEA NAY View Vote SB 3046 Known as The BRIDGE Act, SB 3046 would have directed up to $1.5 billion of existing revenue and bonds to state, county and city roads, bridges and other infrastructure needs over the next five years. This legislation was an attempt to address the infrastructure needs of MS. The business vote was in support of this legislation. YEA NAY View Vote SB 2418 This legislation increases the axle tolerance allowed for vehicles operating under a harvest permit and certain vehicles loading and unloading at a state port. It increases the tolerance allowed on each axle from 5% to 10%, which will allow greater flexibility in the transport of forest products to manufacturing facilities. It also allows manufacturers to continue to use their harvest permit to transport products from a holding facility to the processing plant. The business vote was in support of this legislation. YEA NAY View Vote SB 2295 SB 2295 provides regulatory predictability and clarifies governing jurisdiction by making clear that the Mississippi Public Service Commission has exclusive original jurisdiction over utility rate disputes, including those brought by the Attorney General. The business vote was in support of this legislation. YEA NAY View Vote SB 2836 This bill defines the state's Medicaid services and reimbursement rates. This is critical for physicians and other healthcare providers as Medicaid reimbursement is a driver of economic output in Mississippi. The business vote was in support of this legislation. YEA NAY View Vote HB 354 This legislation would have allowed for any growth of the general fund over 2% (up to $100M) to be dedicated to road and bridge repair/maintenance. This legislation was an attempt to address the infrastructure needs of MS. The business vote was in support of this legislation. YEA NAY View Vote
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,564
[ 128000, 35, 61500, 350, 13, 51196, 198, 17094, 220, 14125, 24, 1115, 13543, 73115, 279, 9341, 3392, 4460, 311, 26456, 369, 264, 11307, 3502, 2922, 26235, 9306, 505, 400, 1041, 3610, 311, 400, 1399, 3610, 13, 1102, 6276, 279, 2254, 10217, 11527, 311, 3810, 1139, 1521, 20038, 449, 6484, 19647, 304, 872, 3158, 430, 527, 3411, 311, 9407, 13, 1115, 13543, 374, 459, 3062, 3094, 7119, 7231, 10977, 810, 33164, 304, 32959, 5220, 311, 872, 5789, 323, 10695, 872, 6484, 5220, 3139, 13, 578, 2626, 7055, 574, 304, 1862, 315, 420, 13543, 13, 816, 19657, 452, 3097, 2806, 35134, 198, 17094, 220, 12166, 21, 49386, 439, 578, 19333, 55256, 3298, 11, 26313, 220, 12166, 21, 1053, 617, 15910, 709, 311, 400, 16, 13, 20, 7239, 315, 6484, 13254 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 35, 61500, 350, 13, 51196, 198, 17094, 220, 14125, 24, 1115, 13543, 73115, 279, 9341, 3392, 4460, 311, 26456, 369, 264, 11307, 3502, 2922, 26235, 9306, 505, 400, 1041, 3610, 311, 400, 1399, 3610, 13, 1102, 6276, 279, 2254, 10217, 11527, 311, 3810, 1139, 1521, 20038, 449, 6484, 19647, 304, 872, 3158, 430, 527, 3411, 311, 9407, 13, 1115, 13543, 374, 459, 3062, 3094, 7119, 7231, 10977, 810, 33164, 304, 32959, 5220, 311, 872, 5789, 323, 10695, 872, 6484, 5220, 3139, 13, 578, 2626, 7055, 574, 304, 1862, 315, 420, 13543, 13, 816, 19657, 452, 3097, 2806, 35134, 198, 17094, 220, 12166, 21, 49386, 439, 578, 19333, 55256, 3298, 11, 26313, 220, 12166, 21, 1053, 617, 15910, 709, 311, 400, 16, 13, 20, 7239, 315, 6484, 13254, -100 ]
I need to adjust the fonts, width, and remove the days of the week from the bottom of the appointments plus plugin. I really looks bad the way it is initially setup. Looks nothing like the screenshots. The fonts are inherited from your theme. Could you provide a link to your appointment page? Also, could you elaborate on the width issues you're having? I can take a look and see what CSS could be used to fix this. There is a link to where it is at now. The type looks bizarre and I just do not want the day to show on both the top and bottom. I've just taken a look, and the problem is that you have your appointments+ shortcodes wrapped in various layers of code tags. Because of this, your theme is applying extra styling. I would recommend deleting your current Appointments page and creating another one from the plugin settings. This would ensure you only have the markup needed to properly generate that page. would like the white to cover the whole appointment area and possibly change the color. Also wanted to make the" our schedule for" bigger its really small on the page. Tons of little white boxes too can seem to get rid of. And lastly if I could get rid of the "not possible" option that would be great. The client wants to always be available. I'm going to close this one, and we can continue there. I mentioned there that I was having issues getting to your site. Once I can get to the page I can help work through these with you.
{ "redpajama_set_name": "RedPajamaC4" }
7,532
[ 128000, 40, 1205, 311, 7652, 279, 34080, 11, 2430, 11, 323, 4148, 279, 2919, 315, 279, 2046, 505, 279, 5740, 315, 279, 37256, 5636, 9183, 13, 358, 2216, 5992, 3958, 279, 1648, 433, 374, 15453, 6642, 13, 42906, 4400, 1093, 279, 49820, 627, 791, 34080, 527, 28088, 505, 701, 7057, 13, 16910, 499, 3493, 264, 2723, 311, 701, 18101, 2199, 30, 7429, 11, 1436, 499, 37067, 389, 279, 2430, 4819, 499, 2351, 3515, 30, 358, 649, 1935, 264, 1427, 323, 1518, 1148, 15533, 1436, 387, 1511, 311, 5155, 420, 627, 3947, 374, 264, 2723, 311, 1405, 433, 374, 520, 1457, 13, 578, 955, 5992, 33288, 323, 358, 1120, 656, 539, 1390, 279, 1938, 311, 1501, 389, 2225, 279, 1948, 323, 5740, 627, 40, 3077, 1120, 4529, 264, 1427 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1205, 311, 7652, 279, 34080, 11, 2430, 11, 323, 4148, 279, 2919, 315, 279, 2046, 505, 279, 5740, 315, 279, 37256, 5636, 9183, 13, 358, 2216, 5992, 3958, 279, 1648, 433, 374, 15453, 6642, 13, 42906, 4400, 1093, 279, 49820, 627, 791, 34080, 527, 28088, 505, 701, 7057, 13, 16910, 499, 3493, 264, 2723, 311, 701, 18101, 2199, 30, 7429, 11, 1436, 499, 37067, 389, 279, 2430, 4819, 499, 2351, 3515, 30, 358, 649, 1935, 264, 1427, 323, 1518, 1148, 15533, 1436, 387, 1511, 311, 5155, 420, 627, 3947, 374, 264, 2723, 311, 1405, 433, 374, 520, 1457, 13, 578, 955, 5992, 33288, 323, 358, 1120, 656, 539, 1390, 279, 1938, 311, 1501, 389, 2225, 279, 1948, 323, 5740, 627, 40, 3077, 1120, 4529, 264, 1427, -100 ]
using System; using osu.Framework.Graphics; namespace osu.Game.Overlays.Settings { public interface ISettingsItem : IDrawable, IDisposable { event Action SettingChanged; /// <summary> /// Whether this setting has a classic default (ie. a different default which better aligns with osu-stable expectations). /// </summary> bool HasClassicDefault { get; } /// <summary> /// Apply the classic default value of the associated setting. Will throw if <see cref="HasClassicDefault"/> is <c>false</c>. /// </summary> void ApplyClassicDefault(); /// <summary> /// Apply the default value of the associated setting. /// </summary> void ApplyDefault(); } }
{ "redpajama_set_name": "RedPajamaGithub" }
0
[ 128000, 985, 744, 280, 985, 2709, 84, 21734, 10627, 401, 2280, 2709, 84, 21613, 13, 1959, 64459, 28098, 198, 517, 262, 586, 3834, 358, 6214, 1256, 551, 3110, 1059, 481, 11, 54989, 198, 262, 341, 286, 1567, 5703, 20638, 5504, 401, 286, 1066, 366, 1743, 397, 286, 1066, 13440, 420, 6376, 706, 264, 11670, 1670, 320, 648, 13, 264, 2204, 1670, 902, 2731, 5398, 82, 449, 2709, 84, 5594, 481, 17078, 4390, 286, 1066, 694, 1743, 397, 286, 1845, 11697, 64431, 3760, 314, 636, 26, 557, 286, 1066, 366, 1743, 397, 286, 1066, 21194, 279, 11670, 1670, 907, 315, 279, 5938, 6376, 13, 4946, 2571, 422, 366, 4151, 11393, 429, 10493, 64431, 3760, 13424, 374, 366, 66, 31492, 524, 66, 30916, 286, 1066, 694, 1743, 397, 286, 742 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 985, 744, 280, 985, 2709, 84, 21734, 10627, 401, 2280, 2709, 84, 21613, 13, 1959, 64459, 28098, 198, 517, 262, 586, 3834, 358, 6214, 1256, 551, 3110, 1059, 481, 11, 54989, 198, 262, 341, 286, 1567, 5703, 20638, 5504, 401, 286, 1066, 366, 1743, 397, 286, 1066, 13440, 420, 6376, 706, 264, 11670, 1670, 320, 648, 13, 264, 2204, 1670, 902, 2731, 5398, 82, 449, 2709, 84, 5594, 481, 17078, 4390, 286, 1066, 694, 1743, 397, 286, 1845, 11697, 64431, 3760, 314, 636, 26, 557, 286, 1066, 366, 1743, 397, 286, 1066, 21194, 279, 11670, 1670, 907, 315, 279, 5938, 6376, 13, 4946, 2571, 422, 366, 4151, 11393, 429, 10493, 64431, 3760, 13424, 374, 366, 66, 31492, 524, 66, 30916, 286, 1066, 694, 1743, 397, 286, 742, -100 ]
The Miami Line is an urban-scale multicolored neon-light installation, designed by Rockne Krebs, in the U.S. city of Miami, Florida, stretching along the Metrorail bridge over the Miami River. When Krebs created the first phase of The Miami Line in 1984, it was long. Because of to its great popularity, the piece was greatly expanded in 1988 to a total of . Since its creation, The Miami Line has become a signature element of the downtown Miami skyline and has been featured in countless photographs. Krebs stated that "the Miami Line was conceived as a means to generate visual drama and create an identifying element which is unique to Miami by simply enhancing what is already present". The Miami Line will be restored in phases starting in fall/winter 2014. Miami-Dade County Art in Public Places, a program of the Miami-Dade County Department of Cultural Affairs has developed a plan to recreate the work in LED lighting, which will replicate the visual effect of neon and will make the work resistant to train vibrations. References Sculptures in Florida 1984 establishments in Florida Metrorail (Miami-Dade County) Tourist attractions in Miami
{ "redpajama_set_name": "RedPajamaWikipedia" }
7,818
[ 128000, 791, 18045, 7228, 374, 459, 16036, 13230, 2814, 27561, 3093, 47752, 18179, 14028, 11, 6319, 555, 9305, 818, 30718, 1302, 11, 304, 279, 549, 815, 13, 3363, 315, 18045, 11, 9784, 11, 42949, 220, 3235, 279, 6344, 7787, 607, 14497, 927, 279, 18045, 11188, 627, 4599, 30718, 1302, 3549, 279, 1176, 10474, 315, 578, 18045, 7228, 304, 220, 3753, 19, 11, 433, 574, 220, 1317, 13, 9393, 315, 311, 1202, 2294, 23354, 11, 279, 6710, 574, 19407, 17626, 304, 220, 3753, 23, 311, 264, 2860, 315, 6905, 12834, 1202, 9886, 11, 578, 18045, 7228, 706, 3719, 264, 12223, 2449, 315, 279, 19441, 18045, 88839, 323, 706, 1027, 15109, 304, 28701, 25232, 13, 30718, 1302, 11224, 430, 330, 1820, 18045, 7228, 574, 50178, 439, 264, 3445, 311, 7068 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 18045, 7228, 374, 459, 16036, 13230, 2814, 27561, 3093, 47752, 18179, 14028, 11, 6319, 555, 9305, 818, 30718, 1302, 11, 304, 279, 549, 815, 13, 3363, 315, 18045, 11, 9784, 11, 42949, 220, 3235, 279, 6344, 7787, 607, 14497, 927, 279, 18045, 11188, 627, 4599, 30718, 1302, 3549, 279, 1176, 10474, 315, 578, 18045, 7228, 304, 220, 3753, 19, 11, 433, 574, 220, 1317, 13, 9393, 315, 311, 1202, 2294, 23354, 11, 279, 6710, 574, 19407, 17626, 304, 220, 3753, 23, 311, 264, 2860, 315, 6905, 12834, 1202, 9886, 11, 578, 18045, 7228, 706, 3719, 264, 12223, 2449, 315, 279, 19441, 18045, 88839, 323, 706, 1027, 15109, 304, 28701, 25232, 13, 30718, 1302, 11224, 430, 330, 1820, 18045, 7228, 574, 50178, 439, 264, 3445, 311, 7068, -100 ]
Labour Day: family, freedom and a fair-go By Glenn Davies | 2 May 2011, 12:30am | comments | Labour Day / May Day is a public holiday held on different dates in different Australian states. It has its origins in the eight hour day movement, which advocated eight hours for work, eight hours for recreation, and eight hours for rest. But, with declining union membership, why do we continue to celebrate it? As Queensland unionists today break out their hats and placards, it's a time to consider the history of Labour Day and its wider significance, with its connection to the Australian ideals of mateship and egalitarianism, writes Australian history editor, Dr Glenn Davies. Labour Day, like Anzac Day, is a day when we remember the sacrifices our forebears made: the mateship, the loyalty and the determination to build and protect the freedom and rights we now enjoy. Both are also occasions when we recognise the ongoing struggles of today, and thank those standing beside us in the fray. Today we celebrate those workers and union delegates who stand alongside their mates and colleagues to preserve and better the working conditions of all Australians. We celebrate the toil of men and women everywhere, and in these economically dark times we also extend our hands and hearts to those who have lost jobs and pride. For, like Anzac Day, Labour Day is – above and beyond its historical significance – a day all Australians can celebrate our egalitarian society, our innate sense of fairness and equity, and our willingness to campaign side by side for a better world. It is the day we celebrate the winding back of the exploitation and oppressive working hours that were the norm in the early nineteenth century during the Industrial Revolution. It is a day we remember the efforts of the labour movement which brought us the eight hour day and over the ensuing decades of struggle such basic advances as minimum wage levels, safety in the workplace and the right – bar a brief return to the industrial relations Dark Ages during the Howard era – to bargain as a collective. For Labour Day is not a celebration of militant trade unionism. It is not a conga-line of left-wing ratbags winding their way through the streets chanting slogans calling for the downfall of capitalism. Labour Day, particularly in today's world where ordinary hard-working people are increasingly left bleeding on the economic roadside from collateral damage inflicted by the global recession, is about family, freedom, and a fair go. It is about empowerment in a world where individuals still too often have little control over their own destiny when it comes to the workplace. The history of Labour Day in Australia spans over 150 years. It is an important annual event that commemorates the granting of the eight-hour working day for Australians and remembers those who struggled and succeeded to ensure decent and fair working conditions in Australia. The day known as Labour Day in Queensland and the Northern Territory and May Day in other Australian states, is a celebration of workers' achievements throughout history. During the mid to late 1800s the working day was long and arduous, where some employees would work up to 12 hours a day, six days a week. Many Australians saw the need for better working conditions and in the 1850s there was a strong push for this. On 21 April 21 1856, stonemasons at the University of Melbourne marched to Parliament House to push for an eight-hour working day. An agreement with employers for a 48-hour week was eventually reached and Australian workers welcomed the new eight-hour day. A victory march was held on 12 May 1856 that year and each year after that. In 1856 the new work regulations were recognized in New South Wales, followed by Queensland in 1858 and South Australia in 1873. In 1874, Tasmania joined the other states in adopting the shorter eight-hour working day. In 1879 the Victorian Government made one further step towards better conditions for employees by proclaiming a paid public holiday that year. However, while a change was made to the hours worked each day, the five day work week we enjoy today took almost a century longer to be adopted finally in 1948. In Queensland, the first Labour Day celebration took place in Brisbane on 16 March 1861 and was essentially a celebration by a small number of skilled building workers who had recently achieved an eight-hour working day. The date of the event was chosen to coincide with the anniversary of the first workers achieving the eight hour day in Queensland. For more than 20 years, the bulk of workers who did not enjoy an eight hour working day were excluded from the celebrations and the focus was on celebrating trade union achievements. The small number of elite Queensland trade unionists who participated in the eight hour day celebrations showed little sympathy for their fellow workers who laboured in excess of eight hours. The first to follow the example of the Australian workers were the Americans. In 1886 they decided that May 1 should be the day of universal work stoppage. On this day 200,000 of them left their work and demanded the eight hour day. The historic strike of 1 May 1886 was a culmination of a concerted struggle. Chicago was the major industrial centre of the USA. Police attacked striking workers from the McCormack Harvester Co., killing six. On 4 May 1886 at a demonstration in Haymarket Square to protest the police brutality a bomb exploded in the middle of a crowd of police killing eight of them. The police arrested eight anarchist trade unionists claiming they threw the bombs. To this day the subject is still one of controversy. The question remains whether the bomb was thrown by the workers at the police or whether one of the police's own agent provocateurs dropped it in their haste to retreat from charging workers. In what was to become one of the most infamous show trials in America in the nineteenth century, but certainly not to be the last of such trials against radical workers, the State of Illinois tried the anarchist workingmen for fighting for their rights as much as being the actual bomb throwers. Whether the anarchist workers were guilty or innocent was irrelevant. They were agitators, fomenting revolution and stirring up the working class, and they had to be taught a lesson. Albert Parsons, August Spies, George Engle and Adolph Fischer were found guilty and executed by the State of Illinois. In Paris in 1889 the International Working Men's Association (the First International) declared 1 May an international working-class holiday in commemoration of the 1886 Haymarket Martyrs. The red flag became the symbol of the blood of working-class martyrs in their battle for workers rights. In light of the labour movement's successful push for an eight-hour day, a large May Day meeting was held in Melbourne on 1 May 1890. Other Australian capital cities also held May Day meeting at the same time. On 1 May 1890, the Brisbane Workers editorial stated: "May Day, this is our May Day, the by-gone jubilation of our forefathers for the reconquering of by the bright sunshine of the bitter northern winter, the new-born celebration of the passing of the workers' winter of discontent. In Germany, in Austria, in Belgium, in France, all through Europe, in the United Kingdom and in the great English speaking republic across the Pacific, millions of workers are gathering at this hour to voice the demands of Labor for fair conditions of laboring. Never in all history was there such a meeting". The spirit of the activists and early workers organisers is summed up in Bernard O'Dowd's poem, May Day where he calls for Australians to stand up united and maintain their rights to an eight-hour work day. Come Jack, our place is with the ruck On the open road today, Not with the tepid "footpath sneak" Or with the wise who stop away. A straggling, tame procession, perhaps, A butt for burgess scorn; Its flags are ragged sentiments, And its music's still unborn. Though none respectable are here, And trim officials ban, Our duty, Jack, is not with them, But here with hope and Man. The Labour Day date was moved from May to the second Monday in March in some parts of Australia after World War II. Since 1948, Labour Day in Western Australia has been observed on the first Monday in March and marks the granting of the eight hour working day to Western Australians. For a large section of the Brisbane labour movement it remained important that the Labour Day celebrations be changed to enable participation by all Queensland workers and that the date of the procession from the traditional one on 1 March to 1 May. The main arguments for changing the date of the celebrations was to make them part of the international campaign, begun by the International Labour Congress in 1889, to make 1 May an official workers holiday around the world. This campaign was given a major boost when, on 1 May 1891, hundreds of striking bush workers held Australia's first May Day procession through the streets of Barcaldine. Henry Lawson On 1 May 1891 more than 1000 striking shearers participated in a May Day march in Barcaldine, Queensland where their leaders wore blue sashes and they carried banners and the Eureka flag. It was reported that cheers were given for "the eight-hour day". Henry Lawson wrote "Freedom on the Wallaby" to mark the day: So we must fly a rebel flag As others did before us, And we must sing a rebel song And join in rebel chorus. We'll make the tyrants feel the sting O'those that they would throttle; They needn't say the fault is ours If blood should stain the wattle. From May 1893 the holding of Labour Day and May Day in Queensland has proceeded hand-in-hand. Unfortunately, over time, the reasons for shifting Labour Day so that it corresponded to May Day have been forgotten. But, equally clearly, the now largely forgotten campaign to link the two had made Labour Day in Queensland a significant occasion, when not just the eight-hour working day is celebrated but also the international solidarity of labour. In fact, Queensland unionists are almost alone in celebrating Labour Day on or around May Day as most other states still time their celebrations to coincide with anniversaries of eight-hour day victories. The annual Labour Day holiday and march are a celebration of the historical triumphs of workers, particularly the achievement of the eight hour working day. Indeed the number eight has often been spotted on many union buildings in Australia to symbolize an eight hour working day. For example, the Eight-Hour monument featuring a golden globe bearing the 888 symbol was erected in Spring Street in Melbourne in 1903. The numbers are in support of British socialist Robert Owen who believed that people should have 8 hours to work, 8 hours for recreation and 8 hours to sleep. This philosophy helped foster The Eight Hours Movement. Right across the world, members of trade unions and their supporters march at this time of year (usually on 1st May) in support of their fellow workers. The first Labour Day parade was held in Melbourne on 21 April 1856. Today parades across Australia remind us of the accomplishments made by the unions on behalf of the workers. So celebrate Labour Day. Celebrate trade unions, freedom of association, vigorous debate and working families. For that is the sum of us. AUSTRALIAN HISTORY QUEENSLAND HUMAN RIGHTS Anzac Day Glenn Davies Henry Lawson Labour Day Melbourne NSW Parliament House Queensland trade unions University of Melbourne Recent articles by Glenn Davies Ringleaders, riots and ruin: The story of Charters Towers 7 January 2023, 7:00am The year 2022 marked the 150th anniversary of the establishment of North Queensland ... Craig Foster succeeds Peter FitzSimons as Republic Movement head 17 November 2022, 4:00pm Human rights and anti-racism activist, former Socceroo Craig Foster AM, has been ... Queen's birthday absurdity demonstrates denial of choice 4 October 2022, 11:00am After a public holiday for the former Queen Elizabeth II to mourn her death, ... view all 184 articles by Glenn Davies
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
543
[ 128000, 84628, 6187, 25, 3070, 11, 11542, 323, 264, 6762, 20521, 198, 1383, 40208, 56872, 765, 220, 17, 3297, 220, 679, 16, 11, 220, 717, 25, 966, 309, 765, 6170, 9432, 84628, 6187, 611, 3297, 6187, 374, 264, 586, 13560, 5762, 389, 2204, 13003, 304, 2204, 13673, 5415, 13, 1102, 706, 1202, 33472, 304, 279, 8223, 6596, 1938, 7351, 11, 902, 64854, 8223, 4207, 369, 990, 11, 8223, 4207, 369, 47044, 11, 323, 8223, 4207, 369, 2800, 13, 2030, 11, 449, 43848, 11552, 16250, 11, 3249, 656, 584, 3136, 311, 18890, 433, 30, 1666, 41306, 11552, 1705, 3432, 1464, 704, 872, 45526, 323, 29960, 2402, 11, 433, 596, 264, 892, 311, 2980, 279, 3925, 315, 18993, 6187, 323, 1202, 22622, 26431, 11, 449, 1202, 3717, 311, 279, 13673 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 84628, 6187, 25, 3070, 11, 11542, 323, 264, 6762, 20521, 198, 1383, 40208, 56872, 765, 220, 17, 3297, 220, 679, 16, 11, 220, 717, 25, 966, 309, 765, 6170, 9432, 84628, 6187, 611, 3297, 6187, 374, 264, 586, 13560, 5762, 389, 2204, 13003, 304, 2204, 13673, 5415, 13, 1102, 706, 1202, 33472, 304, 279, 8223, 6596, 1938, 7351, 11, 902, 64854, 8223, 4207, 369, 990, 11, 8223, 4207, 369, 47044, 11, 323, 8223, 4207, 369, 2800, 13, 2030, 11, 449, 43848, 11552, 16250, 11, 3249, 656, 584, 3136, 311, 18890, 433, 30, 1666, 41306, 11552, 1705, 3432, 1464, 704, 872, 45526, 323, 29960, 2402, 11, 433, 596, 264, 892, 311, 2980, 279, 3925, 315, 18993, 6187, 323, 1202, 22622, 26431, 11, 449, 1202, 3717, 311, 279, 13673, -100 ]
Boylethal did a horrible thing today, while trying to be nice. In order to create cabinet space, he took the Movie Theater Butter popcorn out of the Movie Theater Butter popcorn box, and put it in the Light Butter popcorn box. Neither of the packages are marked clearly enough for me to notice the difference in my hangry state. Worst game of popcorn roulette, ever.
{ "redpajama_set_name": "RedPajamaC4" }
349
[ 128000, 1255, 982, 31392, 1550, 264, 28201, 3245, 3432, 11, 1418, 4560, 311, 387, 6555, 13, 763, 2015, 311, 1893, 22685, 3634, 11, 568, 3952, 279, 14270, 38571, 31457, 70805, 704, 315, 279, 14270, 38571, 31457, 70805, 3830, 11, 323, 2231, 433, 304, 279, 8828, 31457, 70805, 3830, 627, 63295, 315, 279, 14519, 527, 13160, 9539, 3403, 369, 757, 311, 5406, 279, 6811, 304, 856, 15020, 894, 1614, 627, 54, 66396, 1847, 315, 70805, 49211, 11, 3596, 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 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 ]
[ 1255, 982, 31392, 1550, 264, 28201, 3245, 3432, 11, 1418, 4560, 311, 387, 6555, 13, 763, 2015, 311, 1893, 22685, 3634, 11, 568, 3952, 279, 14270, 38571, 31457, 70805, 704, 315, 279, 14270, 38571, 31457, 70805, 3830, 11, 323, 2231, 433, 304, 279, 8828, 31457, 70805, 3830, 627, 63295, 315, 279, 14519, 527, 13160, 9539, 3403, 369, 757, 311, 5406, 279, 6811, 304, 856, 15020, 894, 1614, 627, 54, 66396, 1847, 315, 70805, 49211, 11, 3596, 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 ]
> Jordan St. John or William Shakespeare eAudiobooks (197) Poetry & Drama (1057) Reference & Languages (224) Scientific, Technical and Medical (87) Comics and Graphic Novels (24) History & Transport (24) Music, Stage & Screen (23) Stationery Items (3) Natural History & Pets (1) William Shakespeare (2066) COLLECTIF (4296) TruthBeTold Ministry (3272) Ligaran (2913) Institute of Medicine (2124) DK (1997) Division on Earth and Life Studies (1906) 0-3 hours (161) 3-6 hours (31) 6-10 hours (3) Showing 96 - 120 (of 2073) Richard the Third King Lear : A Tragedy, in Five Acts The Passionate Pilgrim : Being a Reproduction in Facsimile of the First Edition, 1599, From the Copy in the Christie Miller Library at Britwell; With Introduction and Bibliography The Art of Singing : Based on the Principles of the Old Italian Singing-Masters, and Dealing With Breath-Control and Production of the Voice, Together With Exercises The Merchant of Venice : A Comedy in Five Acts A New Variorum Edition of Shakespeare : King Lear Love's Labour's Lost : Edited by H. C. Hart Through the Year With Shakespeare The Shakespeare Apocrypha : Being a Collection of Fourteen Plays Which Have Been Ascribed to Shakespeare A Midsummer Nights Dream : The Winters Tale The Third Part of Henry the Sixth The Complete Works of William Shakespeare : With Annotations and a General Introduction by Sidney Lee Shakespeare Day-by-Day The Passionate Pilgrim : By Shakspere, Marlowe, Barnfield, Griffin, and Other Writers Unknown, the First Quarto, 1599, a Facsimile in Photo-Lithography Shakespeare's Tragedy of Coriolanus : With Introduction, and Notes Explanatory and Critical; For Use in Schools and Families The Complete Works of Shakespeare, From the Original Text : Carefully Collated and Compared With the Editions of Halliwell, Knight, and Collier; With Historical and Critical Introductions, and Notes t The Sonnets of William Shakespeare : New Light and Old Evidence Shakespeare's Antony and Cleopatra : With Introduction, and Notes Explanatory and Critical Romeo and Juliet : Romeo Und Julia Shakespeare's Sonnets : Being a Reproduction in Facsimile of the First Edition 1609, From the Copy in the Malone Collection in the Bodleian Library
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,258
[ 128000, 29, 17527, 800, 13, 3842, 198, 269, 12656, 42482, 198, 68, 32, 21178, 677, 15027, 320, 4468, 340, 34004, 15501, 612, 47569, 320, 6550, 22, 340, 9032, 612, 56064, 320, 10697, 340, 51665, 1104, 11, 27766, 323, 13235, 320, 4044, 340, 1110, 1233, 323, 45051, 4723, 2053, 320, 1187, 340, 13730, 612, 17159, 320, 1187, 340, 25099, 11, 22891, 612, 14275, 320, 1419, 340, 20348, 727, 19974, 320, 18, 340, 55381, 11346, 612, 36986, 320, 16, 340, 45887, 42482, 320, 11056, 21, 340, 19924, 4053, 2843, 320, 16371, 21, 340, 25025, 3513, 51, 820, 20214, 320, 13817, 17, 340, 43, 343, 22026, 320, 17335, 18, 340, 644, 7815, 315, 19152, 320, 11227, 19, 340, 18805, 320, 2550, 22, 340, 52337, 389, 9420, 323, 9601, 19241, 320, 7028 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 29, 17527, 800, 13, 3842, 198, 269, 12656, 42482, 198, 68, 32, 21178, 677, 15027, 320, 4468, 340, 34004, 15501, 612, 47569, 320, 6550, 22, 340, 9032, 612, 56064, 320, 10697, 340, 51665, 1104, 11, 27766, 323, 13235, 320, 4044, 340, 1110, 1233, 323, 45051, 4723, 2053, 320, 1187, 340, 13730, 612, 17159, 320, 1187, 340, 25099, 11, 22891, 612, 14275, 320, 1419, 340, 20348, 727, 19974, 320, 18, 340, 55381, 11346, 612, 36986, 320, 16, 340, 45887, 42482, 320, 11056, 21, 340, 19924, 4053, 2843, 320, 16371, 21, 340, 25025, 3513, 51, 820, 20214, 320, 13817, 17, 340, 43, 343, 22026, 320, 17335, 18, 340, 644, 7815, 315, 19152, 320, 11227, 19, 340, 18805, 320, 2550, 22, 340, 52337, 389, 9420, 323, 9601, 19241, 320, 7028, -100 ]
Home > Chancery > New Ladder Faculty and Professors (2021-22) The Yale Faculty of Arts and Science is pleased to welcome 35 new full-time ladder faculty members who will join us during the 2021-2022 academic year. Of the 35 new ladder faculty and professors who have joined us in New Haven this year, 26 joined the ladder this July, 4 more join in January, and 5 will hold visting appointments for 2021-2022, before joining the ladder faculty. They span all four FAS academic divisions: Humanities, Social Science, Science, and the School of Engineering and Applied Science (SEAS). We invite you to read bios of our new ladder colleagues at the links below, and to join us in extending them a warm welcome to our community! New Humanities Faculty New Social Science Faculty New Science and School of Engineering and Applied Science (SEAS) Faculty Assistant Professor of History Professor of Ethnicity, Race & Migration, and of Women's, Gender, and Sexuality Studies Associate Professor of History Assistant Professor of Philosophy Professor of American Studies and of Women's, Gender, and Sexuality Studies Assistant Professor of African American Studies and of English Professor in the Practice, Theater and Performance Studies Assistant Professor of African American Studies and of English (Postdoctoral Associate for 2021-2022) Professor of History and of Women's, Gender, and Sexuality Studies Assistant Professor of English and of Humanities Assistant Professor of History of Art Assistant Professor of Slavic Languages and Literatures Associate Professor of Music, of Sacred Music, and of Divinity Professor of Women's, Gender, and Sexuality Studies Assistant Professor of Classics Professor of African American Studies and of English Assistant Professor of Music (Associate Research Scholar for 2021-2022) Professor of Ethnicity, Race, and Migration and of Women's, Gender, and Sexuality Studies (Visiting Professor for 2021-2022) Assistant Professor of Political Science Assistant Professor of Mechanical Engineering and Materials Science Assistant Professor of Computer Science Professor of Ecology and Evolutionary Biology Assistant Professor of Electrical Engineering Assistant Professor of Molecular, Cellular, and Developmental Biology (Research Scientist for 2021-22) Assistant Professor of Physics Associate Professor of Computer Science Assistant Professor of Mathematics (Research Scientist for 2021-2022) Professor of Mathematics Assistant Professor of Chemistry New FAS Faculty (2021-22)
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
9,374
[ 128000, 7778, 871, 921, 1149, 727, 871, 1561, 445, 21473, 42904, 323, 8626, 434, 1105, 320, 2366, 16, 12, 1313, 340, 791, 44552, 42904, 315, 17979, 323, 10170, 374, 18949, 311, 10788, 220, 1758, 502, 2539, 7394, 36865, 22291, 3697, 889, 690, 5249, 603, 2391, 279, 220, 2366, 16, 12, 2366, 17, 14584, 1060, 627, 2173, 279, 220, 1758, 502, 36865, 22291, 323, 45724, 889, 617, 11096, 603, 304, 1561, 42714, 420, 1060, 11, 220, 1627, 11096, 279, 36865, 420, 5887, 11, 220, 19, 810, 5249, 304, 6186, 11, 323, 220, 20, 690, 3412, 348, 11330, 37256, 369, 220, 2366, 16, 12, 2366, 17, 11, 1603, 18667, 279, 36865, 22291, 13, 2435, 9575, 682, 3116, 435, 1950, 14584, 37601, 25, 87345, 11, 9983, 10170, 11, 10170, 11, 323 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 7778, 871, 921, 1149, 727, 871, 1561, 445, 21473, 42904, 323, 8626, 434, 1105, 320, 2366, 16, 12, 1313, 340, 791, 44552, 42904, 315, 17979, 323, 10170, 374, 18949, 311, 10788, 220, 1758, 502, 2539, 7394, 36865, 22291, 3697, 889, 690, 5249, 603, 2391, 279, 220, 2366, 16, 12, 2366, 17, 14584, 1060, 627, 2173, 279, 220, 1758, 502, 36865, 22291, 323, 45724, 889, 617, 11096, 603, 304, 1561, 42714, 420, 1060, 11, 220, 1627, 11096, 279, 36865, 420, 5887, 11, 220, 19, 810, 5249, 304, 6186, 11, 323, 220, 20, 690, 3412, 348, 11330, 37256, 369, 220, 2366, 16, 12, 2366, 17, 11, 1603, 18667, 279, 36865, 22291, 13, 2435, 9575, 682, 3116, 435, 1950, 14584, 37601, 25, 87345, 11, 9983, 10170, 11, 10170, 11, 323, -100 ]
All the recent stimulus and bailouts made absolutely no changes to the bankruptcy laws. Clients constantly ask me when the "Obama Plan" will help them file bankruptcy and, for instance, reduce their mortgage payment. Unfortunately, it will not, because the Obama plan, all 400+ pages of it – which I read – does not mention bankruptcy at all. The Homeowner Affordability and Stability Plan Executive Summary makes a vague reference that bankruptcy judges should be allowed to modify certain home loans when all other avenues fail and the borrower has no other options. But that was just it – a mere suggestion that Congress may want to consider this issue at some point in the future – far from being law. We know that the President does not make laws – laws are passed by Congress in a multi-step process that includes both the House of Representatives and the Senate. Each step involves various hurdles and opposing interests that the politicians must try to appease. The Bankruptcy Code is a thick federal statute, specifically Title XI of the United States Code, that can only be modified by an act of Congress, and not the President. As of this writing, NO CHANGES TO THE BANKRUPTCY CODE HAVE BEEN MADE SINCE PRESIDENT OBAMA TOOK OFFICE. When will the changes be made? Proposed changes are being heavily pushed by consumer-friendly entities like the National Association of Consumer Bankruptcy Attorneys (of which I am a member), and heavily opposed by the banking industry. A small but important victory for consumers came recently when the House of Representatives narrowly passed a bill titled H.R. 1106 — a proposed law that upon passage in the Senate and approval by the President would finally allow bankruptcy judges to "cram down" (modify) the principal amounts and other terms of home mortgages in Chapter 13 cases after certain requirements have been met. However, the passage of this proposed law in the House is just the beginning of a long and possibly losing battle. The Senate companion bill, known as S.61, appears to be dying, lacking the needed support to gather enough votes to pass. Senate leaders just this week indicated that they will be focusing their efforts on revamping regulatory rules leading to more Federal oversight of banking practices. The changes to the bankruptcy code are not on the immediate agenda and may not reach the Senate floor any time soon. Where does that leave consumers? The current bankruptcy laws already provide various degrees of relief, including ways to stop or delay foreclosure (see my article The foreclosure that never was), ability to catch up on late mortgage payments, an opportunity to get rid of a second mortgage (see my article Goodbye Second Mortgage!), or the ability to walk away from a piece of real estate without owing any deficiencies to the banks.
{ "redpajama_set_name": "RedPajamaC4" }
4,617
[ 128000, 2460, 279, 3293, 39535, 323, 25487, 11934, 1903, 11112, 912, 4442, 311, 279, 36707, 7016, 13, 48508, 15320, 2610, 757, 994, 279, 330, 45437, 9878, 1, 690, 1520, 1124, 1052, 36707, 323, 11, 369, 2937, 11, 8108, 872, 21515, 8323, 13, 19173, 11, 433, 690, 539, 11, 1606, 279, 7250, 3197, 11, 682, 220, 3443, 10, 6959, 315, 433, 1389, 902, 358, 1373, 1389, 1587, 539, 6420, 36707, 520, 682, 13, 578, 5492, 8281, 9947, 541, 2968, 323, 81238, 9878, 18362, 22241, 3727, 264, 40146, 5905, 430, 36707, 24958, 1288, 387, 5535, 311, 5719, 3738, 2162, 17017, 994, 682, 1023, 73234, 3775, 323, 279, 70719, 706, 912, 1023, 2671, 13, 2030, 430, 574, 1120, 433, 1389, 264, 17983, 24710, 430, 8151, 1253, 1390, 311, 2980, 420, 4360 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2460, 279, 3293, 39535, 323, 25487, 11934, 1903, 11112, 912, 4442, 311, 279, 36707, 7016, 13, 48508, 15320, 2610, 757, 994, 279, 330, 45437, 9878, 1, 690, 1520, 1124, 1052, 36707, 323, 11, 369, 2937, 11, 8108, 872, 21515, 8323, 13, 19173, 11, 433, 690, 539, 11, 1606, 279, 7250, 3197, 11, 682, 220, 3443, 10, 6959, 315, 433, 1389, 902, 358, 1373, 1389, 1587, 539, 6420, 36707, 520, 682, 13, 578, 5492, 8281, 9947, 541, 2968, 323, 81238, 9878, 18362, 22241, 3727, 264, 40146, 5905, 430, 36707, 24958, 1288, 387, 5535, 311, 5719, 3738, 2162, 17017, 994, 682, 1023, 73234, 3775, 323, 279, 70719, 706, 912, 1023, 2671, 13, 2030, 430, 574, 1120, 433, 1389, 264, 17983, 24710, 430, 8151, 1253, 1390, 311, 2980, 420, 4360, -100 ]
Audi A6 boot liner from 2018. This is fully molded to fit the boot of yourAudi perfectly. Will fit all trim levels of A6 Saloon (C8). If you are unsure of the fitting then please call us and we will be happy to assist you.
{ "redpajama_set_name": "RedPajamaC4" }
3,146
[ 128000, 32, 21178, 362, 21, 10677, 54088, 505, 220, 679, 23, 13, 1115, 374, 7373, 85760, 311, 5052, 279, 10677, 315, 701, 32, 21178, 14268, 13, 4946, 5052, 682, 11259, 5990, 315, 362, 21, 8375, 9186, 320, 34, 23, 570, 1442, 499, 527, 44003, 315, 279, 27442, 1243, 4587, 1650, 603, 323, 584, 690, 387, 6380, 311, 7945, 499, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 32, 21178, 362, 21, 10677, 54088, 505, 220, 679, 23, 13, 1115, 374, 7373, 85760, 311, 5052, 279, 10677, 315, 701, 32, 21178, 14268, 13, 4946, 5052, 682, 11259, 5990, 315, 362, 21, 8375, 9186, 320, 34, 23, 570, 1442, 499, 527, 44003, 315, 279, 27442, 1243, 4587, 1650, 603, 323, 584, 690, 387, 6380, 311, 7945, 499, 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 ]
When I was a kid my grandmother had this set of plates that had gold leaf on them. When she got her first microwave, I used to sneak into the kitchen and put one of the plates in the microwave to see the sparks it created. It's a good thing there was no YouTube when I was a kid. The only thing keeping me from trying out the old "brick in the washing machine trick" at my house right now is that I am the one who would have to pay for a new machine. If you are in the same boat, you will have to make do with the video of this dude killing his washing machine in fantastic style by tossing bricks inside it during the spin cycle. One brick made the machine smoke and vibrate a lot. Once the second brick was added all hell breaks loose and some innocent flowers are killed in the process. This is much better than the Will it Blend stuff.
{ "redpajama_set_name": "RedPajamaC4" }
457
[ 128000, 4599, 358, 574, 264, 10585, 856, 39284, 1047, 420, 743, 315, 25485, 430, 1047, 6761, 16312, 389, 1124, 13, 3277, 1364, 2751, 1077, 1176, 42374, 11, 358, 1511, 311, 45264, 1139, 279, 9979, 323, 2231, 832, 315, 279, 25485, 304, 279, 42374, 311, 1518, 279, 76883, 433, 3549, 13, 1102, 596, 264, 1695, 3245, 1070, 574, 912, 13674, 994, 358, 574, 264, 10585, 13, 578, 1193, 3245, 10494, 757, 505, 4560, 704, 279, 2362, 330, 70773, 304, 279, 28786, 5780, 14397, 1, 520, 856, 3838, 1314, 1457, 374, 430, 358, 1097, 279, 832, 889, 1053, 617, 311, 2343, 369, 264, 502, 5780, 13, 1442, 499, 527, 304, 279, 1890, 15688, 11, 499, 690, 617, 311, 1304, 656, 449, 279, 2835, 315, 420, 36157, 13419, 813, 28786, 5780 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 4599, 358, 574, 264, 10585, 856, 39284, 1047, 420, 743, 315, 25485, 430, 1047, 6761, 16312, 389, 1124, 13, 3277, 1364, 2751, 1077, 1176, 42374, 11, 358, 1511, 311, 45264, 1139, 279, 9979, 323, 2231, 832, 315, 279, 25485, 304, 279, 42374, 311, 1518, 279, 76883, 433, 3549, 13, 1102, 596, 264, 1695, 3245, 1070, 574, 912, 13674, 994, 358, 574, 264, 10585, 13, 578, 1193, 3245, 10494, 757, 505, 4560, 704, 279, 2362, 330, 70773, 304, 279, 28786, 5780, 14397, 1, 520, 856, 3838, 1314, 1457, 374, 430, 358, 1097, 279, 832, 889, 1053, 617, 311, 2343, 369, 264, 502, 5780, 13, 1442, 499, 527, 304, 279, 1890, 15688, 11, 499, 690, 617, 311, 1304, 656, 449, 279, 2835, 315, 420, 36157, 13419, 813, 28786, 5780, -100 ]
JP's Food Adventures: An Opinionated Guide to Food Shopping on the LES Buying groceries on the LES really brings home the diversity of people and shopping styles here. In conversation, the topic can quickly devolve into a minefield of class signals and negative opinions about specific businesses. This place is "dirty".... JP's Food Adventures: Souvlaki GR A rock star buddy of mine once described Greek cuisine as "prehistoric Italian." I don't agree with this characterization, but it's not entirely off the mark. Greek is the mother cuisine of the Mediterranean. I've been a fan since... JP's Food Adventures: Fried Fish at Lok Sing I'm not too big on fried food. The Korean fried chicken trend a while back? Missed it entirely. But I do enjoy fried fish every now and then. The best I've had was in Edinburgh, Scotland, a place where... JP's Food Adventures: Where to Fill Your Growler JP Bowersock - December 13, 2011 Before prohibition, people who wanted to drink beer at home just went to the corner watering hole and got a bucket of tap beer to go. Those days are long gone. Bottles and cans are now the norm for... JP's Food Adventures: "Sauce" is the Real Deal JP Bowersock - December 7, 2011 It's hard to argue with Frank Prisinzano's successful restaurant concept: serve good, fresh, simple Italian food at reasonable prices, while keeping a serious wine list on hand for your less price-sensitive customers. This keeps traffic flowing to his East... JP's Food Adventures: Chinatown Veggies JP Bowersock - November 29, 2011 Chinese produce vendors dot our neighborhood, in the form of greengrocers, outdoor stands or pushcarts. You can spot those with the most attractive prices by the brisk business they do. Many vegetables that would be difficult to locate in... JP's Food Adventures: Where to Eat a Cubano The Cuban sandwich has been a neighborhood staple for decades. While Cuban expats in Florida take credit for its creation, Puerto Rican and Dominican diners and luncheonettes have been the bastions of this delicacy here. Variations have even made... JP's Food Adventures: Lunch at the Essex Street Market JP Bowersock - November 8, 2011 For generations the Essex Street Market has been a neighborhood source for meat, fish, produce, groceries and specialty items. It is fast becoming something of an eclectic, high-end food court as well - a dining destination. Unlike Philadelphia's Reading... JP's Food Adventures: What to Do With Winter Squash We've had our first snow, the nights are cool and the leaves are falling. I've reluctantly put my sandals away, and stopped eating Caprese salads. No denying autumn is here, and with it the desire for fall flavors. Winter... JP's Food Adventures: Mussels, Dutch Style JP Bowersock - October 18, 2011 Mussels. They're inexpensive, easy to cook, kind of celebratory, widely available in the neighborhood and delicious. Yet many never think of making them at home. Why not? Here's one of my favorite recipes, given to me by an American ex-pat...
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,119
[ 128000, 28287, 596, 12369, 51679, 25, 1556, 60767, 660, 13002, 311, 12369, 30064, 389, 279, 97529, 198, 95813, 66508, 389, 279, 97529, 2216, 12716, 2162, 279, 20057, 315, 1274, 323, 12185, 9404, 1618, 13, 763, 10652, 11, 279, 8712, 649, 6288, 3567, 4035, 1139, 264, 10705, 2630, 315, 538, 17738, 323, 8389, 18463, 922, 3230, 9873, 13, 1115, 2035, 374, 330, 54588, 1, 78928, 28287, 596, 12369, 51679, 25, 9424, 14878, 14966, 15116, 198, 32, 7091, 6917, 37772, 315, 10705, 3131, 7633, 18341, 36105, 439, 330, 31882, 5436, 292, 15155, 1210, 358, 1541, 956, 7655, 449, 420, 60993, 11, 719, 433, 596, 539, 11622, 1022, 279, 1906, 13, 18341, 374, 279, 6691, 36105, 315, 279, 38785, 13, 358, 3077, 1027, 264, 8571, 2533, 9522, 28287, 596, 12369, 51679 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 28287, 596, 12369, 51679, 25, 1556, 60767, 660, 13002, 311, 12369, 30064, 389, 279, 97529, 198, 95813, 66508, 389, 279, 97529, 2216, 12716, 2162, 279, 20057, 315, 1274, 323, 12185, 9404, 1618, 13, 763, 10652, 11, 279, 8712, 649, 6288, 3567, 4035, 1139, 264, 10705, 2630, 315, 538, 17738, 323, 8389, 18463, 922, 3230, 9873, 13, 1115, 2035, 374, 330, 54588, 1, 78928, 28287, 596, 12369, 51679, 25, 9424, 14878, 14966, 15116, 198, 32, 7091, 6917, 37772, 315, 10705, 3131, 7633, 18341, 36105, 439, 330, 31882, 5436, 292, 15155, 1210, 358, 1541, 956, 7655, 449, 420, 60993, 11, 719, 433, 596, 539, 11622, 1022, 279, 1906, 13, 18341, 374, 279, 6691, 36105, 315, 279, 38785, 13, 358, 3077, 1027, 264, 8571, 2533, 9522, 28287, 596, 12369, 51679, -100 ]
With fracking about to recommence in the UK after 8 years, social entrepreneur and writer Jeremy Leggett reviews the short but troubled history of fracking in the U.S. In a devastating slide presentation, he pictures the shale gas industry as a dirty, multi-hundred-billion-dollar doomed-to-burst debt bubble. And he predicts a similar fiasco in the UK. Courtesy Future Today. This presentation was first published on Jeremy Leggett's website Future Today and is republished here with permission. It is quite simple. Germany is locking itself into a future of both coal and gas. Some of us now thinking even Poland will abandon coal before the Germans. Says something about the media and the mindset.
{ "redpajama_set_name": "RedPajamaC4" }
4,194
[ 128000, 2409, 71154, 922, 311, 4966, 768, 304, 279, 6560, 1306, 220, 23, 1667, 11, 3674, 29349, 323, 7061, 28217, 7765, 77545, 8544, 279, 2875, 719, 42132, 3925, 315, 71154, 304, 279, 549, 815, 13, 763, 264, 33318, 15332, 15864, 11, 568, 9364, 279, 75105, 6962, 5064, 439, 264, 19108, 11, 7447, 2902, 7259, 70173, 54135, 58737, 4791, 1481, 33712, 11897, 24529, 13, 1628, 568, 56978, 264, 4528, 282, 98383, 304, 279, 6560, 13, 54197, 12781, 11450, 627, 2028, 15864, 574, 1176, 4756, 389, 28217, 7765, 77545, 596, 3997, 12781, 11450, 323, 374, 2109, 11931, 1618, 449, 8041, 627, 2181, 374, 5115, 4382, 13, 10057, 374, 38955, 5196, 1139, 264, 3938, 315, 2225, 11756, 323, 6962, 13, 4427, 315, 603, 1457, 7422, 1524, 28702, 690, 15673, 11756, 1603 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 71154, 922, 311, 4966, 768, 304, 279, 6560, 1306, 220, 23, 1667, 11, 3674, 29349, 323, 7061, 28217, 7765, 77545, 8544, 279, 2875, 719, 42132, 3925, 315, 71154, 304, 279, 549, 815, 13, 763, 264, 33318, 15332, 15864, 11, 568, 9364, 279, 75105, 6962, 5064, 439, 264, 19108, 11, 7447, 2902, 7259, 70173, 54135, 58737, 4791, 1481, 33712, 11897, 24529, 13, 1628, 568, 56978, 264, 4528, 282, 98383, 304, 279, 6560, 13, 54197, 12781, 11450, 627, 2028, 15864, 574, 1176, 4756, 389, 28217, 7765, 77545, 596, 3997, 12781, 11450, 323, 374, 2109, 11931, 1618, 449, 8041, 627, 2181, 374, 5115, 4382, 13, 10057, 374, 38955, 5196, 1139, 264, 3938, 315, 2225, 11756, 323, 6962, 13, 4427, 315, 603, 1457, 7422, 1524, 28702, 690, 15673, 11756, 1603, -100 ]
recently, I had the great pleasure of collaborating with one of my dear friends on her younger sister's wedding. her family owns some magnificent land in eastern connecticut, which includes the legendary Golden Lamb Buttery restaurant. stephanie hosted a d-i-y flower arranging brunch on the morning of the wedding. I provided buckets of soft-colored flowers, lots of greens, and dahlias and zinnias in shades of orange and pink. the girls gathered on the porch of the restaurant and happily tackled the task of arranging over 30 centerpieces. they were concerned about the setting being too country, and wanted an elegant, gatsby-like atmosphere. the bride was wearing a black and white lace-topped gown, and was the only one carrying flowers during the ceremony. she wanted a massive, draping bouquet that contained fragrant herbs, seasonal berries, and a variety of textures and contrasts. sometimes a bouquet takes on a life of its own, and this one came together like a dream. I'll never forget the look on her face when I presented it to her!
{ "redpajama_set_name": "RedPajamaC4" }
3,522
[ 128000, 47743, 398, 11, 358, 1047, 279, 2294, 17069, 315, 73301, 449, 832, 315, 856, 25237, 4885, 389, 1077, 14992, 13219, 596, 13306, 13, 1077, 3070, 25241, 1063, 41792, 4363, 304, 24024, 4667, 28406, 11, 902, 5764, 279, 28812, 18288, 32402, 2030, 18080, 10960, 627, 9710, 10118, 648, 21685, 264, 294, 18064, 12303, 23153, 77218, 70917, 389, 279, 6693, 315, 279, 13306, 13, 358, 3984, 43212, 315, 8579, 58822, 19837, 11, 10283, 315, 52011, 11, 323, 53588, 72929, 323, 1167, 6258, 3557, 304, 37199, 315, 19087, 323, 18718, 627, 1820, 7724, 20802, 389, 279, 45747, 315, 279, 10960, 323, 37875, 82457, 279, 3465, 315, 77218, 927, 220, 966, 4219, 47568, 627, 20670, 1051, 11920, 922, 279, 6376, 1694, 2288, 3224, 11, 323, 4934, 459, 26861, 11, 342, 36614 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 47743, 398, 11, 358, 1047, 279, 2294, 17069, 315, 73301, 449, 832, 315, 856, 25237, 4885, 389, 1077, 14992, 13219, 596, 13306, 13, 1077, 3070, 25241, 1063, 41792, 4363, 304, 24024, 4667, 28406, 11, 902, 5764, 279, 28812, 18288, 32402, 2030, 18080, 10960, 627, 9710, 10118, 648, 21685, 264, 294, 18064, 12303, 23153, 77218, 70917, 389, 279, 6693, 315, 279, 13306, 13, 358, 3984, 43212, 315, 8579, 58822, 19837, 11, 10283, 315, 52011, 11, 323, 53588, 72929, 323, 1167, 6258, 3557, 304, 37199, 315, 19087, 323, 18718, 627, 1820, 7724, 20802, 389, 279, 45747, 315, 279, 10960, 323, 37875, 82457, 279, 3465, 315, 77218, 927, 220, 966, 4219, 47568, 627, 20670, 1051, 11920, 922, 279, 6376, 1694, 2288, 3224, 11, 323, 4934, 459, 26861, 11, 342, 36614, -100 ]
It's probably a given you'll have turkey stuffing on the Thanksgiving menu. But this collection of easy stuffing recipes covers you for that—and the rest of the year, too. We're talking easy stuffing recipes as sides for pork chops, tasty stuffed peppers, egg bakes and all kinds of brunch and breakfast casseroles. Want still more easy stuffing recipes? Check out our collection of STOVE TOP Stuffing recipes.
{ "redpajama_set_name": "RedPajamaC4" }
2,167
[ 128000, 2181, 596, 4762, 264, 2728, 499, 3358, 617, 45405, 83616, 389, 279, 37250, 5130, 13, 2030, 420, 4526, 315, 4228, 83616, 19141, 14861, 499, 369, 430, 17223, 279, 2800, 315, 279, 1060, 11, 2288, 13, 1226, 2351, 7556, 4228, 83616, 19141, 439, 11314, 369, 36167, 91178, 11, 39953, 45413, 58573, 11, 19151, 293, 2094, 323, 682, 13124, 315, 70917, 323, 17954, 45324, 2382, 645, 13, 24133, 2103, 810, 4228, 83616, 19141, 30, 4343, 704, 1057, 4526, 315, 4015, 37855, 26063, 46586, 287, 19141, 13, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 2181, 596, 4762, 264, 2728, 499, 3358, 617, 45405, 83616, 389, 279, 37250, 5130, 13, 2030, 420, 4526, 315, 4228, 83616, 19141, 14861, 499, 369, 430, 17223, 279, 2800, 315, 279, 1060, 11, 2288, 13, 1226, 2351, 7556, 4228, 83616, 19141, 439, 11314, 369, 36167, 91178, 11, 39953, 45413, 58573, 11, 19151, 293, 2094, 323, 682, 13124, 315, 70917, 323, 17954, 45324, 2382, 645, 13, 24133, 2103, 810, 4228, 83616, 19141, 30, 4343, 704, 1057, 4526, 315, 4015, 37855, 26063, 46586, 287, 19141, 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 ]
layout: post title: Identity crisis tags: - blogging - information management - Misc status: publish type: post published: true meta: _edit_last: '1' _thumbnail_id: '1686' _aioseop_title: Identity crisis _aioseop_description: ! 'Why Does Your Website Exist? The answer used to be: Personal information management and personal marketing. Nowadays I''m not so sure about this anymore.' _aioseop_keywords: blogging, information management dsq_thread_id: '332680926' better-related-: '' --- Last year blogging was so much easier. The topic of rapsli.ch was well defined: <a title="Drupal" href="http://drupal.org" target="_blank">Drupal</a>. These days it's a lot harder. I've been blogging about all kind of things, but not really focused. Just what ever has been on my mind. This resulted mostly in blogposts in the "Misc" section. I have been blogging about Sharepoint, some projectmanagement, woopra and google analytics and even about WYSIWYG editors. After all, I haven't been blogging that much. Just recently I listened to <a title="Boagworld" href="http://boagworld.com/season/2/episode/s2e1/" target="_blank">Boagworld</a>. Paul raised a fundamental question when running a website: Why Does Your Website Exist? Excellent question. The answer used to be: Personal information management and personal marketing. Nowadays I'm not so sure about this anymore. It's definitely not personal information management. <h3>Why Does Your Website Exist?</h3> That's the questions I've been asking myself lately. I use my blog to improve my English knowledge and improve my writing skills. Also I like writing and probably an other reason is for my ego. I'm still dreaming about The Article. The article that will crash the server or something. ... with approx. 300-400 PI per day there's still lots of space for improvement. So for the future: Expect a wide variety of topics... I'm in the "self finding" process ;) because successful blogging is only achieved when passsionate about a topic and I haven't found that topic yet.
{ "redpajama_set_name": "RedPajamaGithub" }
9,607
[ 128000, 8565, 25, 1772, 198, 2150, 25, 27638, 11501, 198, 14412, 512, 12, 43092, 198, 12, 2038, 6373, 198, 12, 40151, 198, 2899, 25, 3498, 198, 1337, 25, 1772, 198, 33966, 25, 837, 198, 5607, 512, 220, 721, 3671, 12473, 25, 364, 16, 1270, 220, 721, 28886, 851, 25, 364, 8953, 21, 1270, 220, 721, 64, 822, 325, 454, 6240, 25, 27638, 11501, 198, 220, 721, 64, 822, 325, 454, 11703, 25, 758, 364, 10445, 12838, 4718, 16406, 62909, 30, 578, 4320, 1511, 311, 387, 25, 19758, 198, 262, 2038, 6373, 323, 4443, 8661, 13, 87581, 358, 4708, 76, 539, 779, 2771, 922, 198, 262, 420, 14926, 24314, 220, 721, 64, 822, 325, 454, 52454, 25, 43092, 11, 2038, 6373, 198, 220, 11729, 80, 11048, 851, 25, 364 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 8565, 25, 1772, 198, 2150, 25, 27638, 11501, 198, 14412, 512, 12, 43092, 198, 12, 2038, 6373, 198, 12, 40151, 198, 2899, 25, 3498, 198, 1337, 25, 1772, 198, 33966, 25, 837, 198, 5607, 512, 220, 721, 3671, 12473, 25, 364, 16, 1270, 220, 721, 28886, 851, 25, 364, 8953, 21, 1270, 220, 721, 64, 822, 325, 454, 6240, 25, 27638, 11501, 198, 220, 721, 64, 822, 325, 454, 11703, 25, 758, 364, 10445, 12838, 4718, 16406, 62909, 30, 578, 4320, 1511, 311, 387, 25, 19758, 198, 262, 2038, 6373, 323, 4443, 8661, 13, 87581, 358, 4708, 76, 539, 779, 2771, 922, 198, 262, 420, 14926, 24314, 220, 721, 64, 822, 325, 454, 52454, 25, 43092, 11, 2038, 6373, 198, 220, 11729, 80, 11048, 851, 25, 364, -100 ]
Hiring the ed mojica installations serving long islands garage is sometimes an elaborate process therefore that it is going to soon be greater if individuals employ the correct attorney to do the job job. The locks for the front door will soon be pretty different from other doors at the house as people usually should be certain the locks may really assist them raise the protection of the home. It is true there are a variety of alternatives of this lock that can be found nevertheless choosing the double garage door may possibly be described as a troublesome action to do. By abiding by the steps under, you'll find it simpler to get the appropriate choice. A pocket door is one of many better solutions to your spacious region and modest room. The secret to getting into the pocket door is by what's occurring supporting that plaster board. One of the greatest what to understand could be that the ed mojica installations serving long islands garage should be inserted on your space. Whether your project will probably get advantages with this specific pocket door? The majority of them can decide to find the hinged doors since they're sense and very common also. However, the pocket sized door includes its own own place and it really is far better to think about what they can incorporate when speaking on your internal doors. Do not neglect to look at a garage door styles predicated on your distance. In the event that you simply discover that your garage door can't function precisely, then it is not always mean that you have to displace it. You have the capability to push the ed mojica installations serving long islands garage by trying to keep a bit of maintenance and you are able to fix by yourself if potential. In the event the chilly air entering your garage door, afterward you do not need to restore itall that you will need is a few patchings. You also should take notice that your metal or wooden door can be transformed having a couple painting jobs, which can be more garage door openers. First, you ought to be aware that the cost of your garage door would vary depending on a bit more than just its price. The ed mojica installations serving long islands garage additionally called the weather stripping is easy to be found at the garage door and all those edges too. Even a house garage doors is therefore important because it will be able to help you to keep out the snow, debris, and even pests. This specific door will assist you by within the gaps between your door and earth also. Means the seal will probably shield the chilly moisture and air to get into your home throughout the gaps across the doorway so as to provide with better insulation. But, you'll find lots of things to understand before you may select the best one for you personally. To make your house exterior and interior appearance gleaming, why don't you put in the flashing lights onto the entranceway? The lighting would be the identical lights to use for the Christmas tree. For these ed mojica installations serving long islands garage, the chain of bulbs has been formed into a specific form. Some winter notions can be properly used here for example the pine tree, snowman, and also the others. The lights should perhaps not be connected with the entire door. It is advisable to make use of only part of it like on the top section directly infront of one's head. For your rest, you can add various other ideas just like the snowflakes created from the paper. To begin with, before you make the double garage door, you need to make sure the dimensions of your dog the pet door will match. The furry pet door has to be large enough to support the main size of their pet that will make use of the ed mojica installations serving long islands garage. You may step out of your shoulders to the rib cage of one's own pet and then give a small additional number for their minimum aperture. After that, assess the door measurement with your dog or cat as well as the position of this door hole. You may find the help out of a newspaper template with all an pet door or you can draw your dimension onto the cardboard. Besides the design and the ease of this pitcher, the ed mojica installations serving long islands garage can be Likewise an garage door openers. The reason is that it uses 50 percent less electricity. It's a significant gap examine to full-size ovens since a lot of them are not so efficient when cooking smaller to medium sized foods. After you employ this toaster to prep and cook your meal, then you can save up more energy to 50 per cent. This is the exact amount of energy when you use an ordinary electric oven to prepare the same meal. This toaster also enables one to prepare your own meal at flexible time and also a pre set temperature approximately a hundred and fifty degrees Fahrenheit. . This Ed Mojica Installations Serving Long Islands Garage the gallery form Ed's Garage Doors. Hopefully you can find the best inspiration from our gallery here.
{ "redpajama_set_name": "RedPajamaC4" }
733
[ 128000, 39, 6322, 279, 1608, 4647, 73, 3074, 45218, 13788, 1317, 30100, 19833, 374, 7170, 459, 37067, 1920, 9093, 430, 433, 374, 2133, 311, 5246, 387, 7191, 422, 7931, 3539, 279, 4495, 14065, 311, 656, 279, 2683, 2683, 13, 578, 32776, 369, 279, 4156, 6134, 690, 5246, 387, 5128, 2204, 505, 1023, 14365, 520, 279, 3838, 439, 1274, 6118, 1288, 387, 3738, 279, 32776, 1253, 2216, 7945, 1124, 4933, 279, 9313, 315, 279, 2162, 13, 1102, 374, 837, 1070, 527, 264, 8205, 315, 27548, 315, 420, 5409, 430, 649, 387, 1766, 38330, 19301, 279, 2033, 19833, 6134, 1253, 11000, 387, 7633, 439, 264, 78518, 1957, 311, 656, 13, 3296, 671, 6714, 555, 279, 7504, 1234, 11, 499, 3358, 1505, 433, 35388, 311, 636, 279, 8475, 5873, 627, 32 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 39, 6322, 279, 1608, 4647, 73, 3074, 45218, 13788, 1317, 30100, 19833, 374, 7170, 459, 37067, 1920, 9093, 430, 433, 374, 2133, 311, 5246, 387, 7191, 422, 7931, 3539, 279, 4495, 14065, 311, 656, 279, 2683, 2683, 13, 578, 32776, 369, 279, 4156, 6134, 690, 5246, 387, 5128, 2204, 505, 1023, 14365, 520, 279, 3838, 439, 1274, 6118, 1288, 387, 3738, 279, 32776, 1253, 2216, 7945, 1124, 4933, 279, 9313, 315, 279, 2162, 13, 1102, 374, 837, 1070, 527, 264, 8205, 315, 27548, 315, 420, 5409, 430, 649, 387, 1766, 38330, 19301, 279, 2033, 19833, 6134, 1253, 11000, 387, 7633, 439, 264, 78518, 1957, 311, 656, 13, 3296, 671, 6714, 555, 279, 7504, 1234, 11, 499, 3358, 1505, 433, 35388, 311, 636, 279, 8475, 5873, 627, 32, -100 ]
o Framed prices are for a 1" black solid wood frame with white matting. Our upgraded archival framing (sometimes referred to as Conservation framing) includes UV-resistant plexiglass, acid-free foam board, and thicker, acid-free matting. If you have a custom frame design in mind or would like to explore more options, please contact us at [email protected].
{ "redpajama_set_name": "RedPajamaC4" }
131
[ 128000, 78, 66240, 291, 7729, 527, 369, 264, 220, 16, 1, 3776, 6573, 7732, 4124, 449, 4251, 5634, 1303, 13, 5751, 33624, 95047, 59049, 320, 57753, 14183, 311, 439, 45435, 59049, 8, 5764, 30136, 47056, 281, 2635, 343, 448, 11, 13935, 12862, 32183, 4580, 11, 323, 59884, 11, 13935, 12862, 5634, 1303, 627, 2746, 499, 617, 264, 2587, 4124, 2955, 304, 4059, 477, 1053, 1093, 311, 13488, 810, 2671, 11, 4587, 3729, 603, 520, 3630, 92464, 8892, 11785, 2025, 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, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 78, 66240, 291, 7729, 527, 369, 264, 220, 16, 1, 3776, 6573, 7732, 4124, 449, 4251, 5634, 1303, 13, 5751, 33624, 95047, 59049, 320, 57753, 14183, 311, 439, 45435, 59049, 8, 5764, 30136, 47056, 281, 2635, 343, 448, 11, 13935, 12862, 32183, 4580, 11, 323, 59884, 11, 13935, 12862, 5634, 1303, 627, 2746, 499, 617, 264, 2587, 4124, 2955, 304, 4059, 477, 1053, 1093, 311, 13488, 810, 2671, 11, 4587, 3729, 603, 520, 3630, 92464, 8892, 11785, 2025, 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, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
The body of missing hill runner and hiker Alexander Brett has been found after he was last seen running in the Torridon area of Wester Ross in the Scottish Highlands last Sunday (20 September). A search involving a coastguard helicopter and mountain rescue teams was conducted for the 65-year-old, from the Dingwall area who had plans to run a route covering the Beinn Eighe, Beinn Dearg, Beinn Alligan and Liathach hills. He had been wearing red running shorts, a black puffa jacket, a small black backpack, a red and black bandana and trainers when he was last seen, but was only reported missing on Thursday (24 September) after he failed to return home. The police confirmed that they had recovered a body early yesterday (26 September). Police Scotland said in a statement: "During extensive searches carried out in the Torridon area, sadly a body was recovered in the area of Liathach this afternoon and has subsequently been formally identified as that of Mr Brett. There are no suspicious circumstances regarding his death. "Police Scotlandwould like to thank the public for their assistance and calls with sightings of Mr Brett, which were very helpful." A statement on the Dundonnell Mountain Rescue Facebook page said: "It is with immense sadness that we announce the death of Alex Brett. Our thoughts and love go out to his partner and wider family."
{ "redpajama_set_name": "RedPajamaC4" }
9,197
[ 128000, 791, 2547, 315, 7554, 24898, 23055, 323, 305, 25840, 20643, 40203, 706, 1027, 1766, 1306, 568, 574, 1566, 3970, 4401, 304, 279, 8611, 1907, 263, 3158, 315, 4410, 261, 21116, 304, 279, 27188, 84025, 1566, 7418, 320, 508, 6250, 570, 362, 2778, 16239, 264, 13962, 27190, 36125, 323, 16700, 17629, 7411, 574, 13375, 369, 279, 220, 2397, 4771, 6418, 11, 505, 279, 80473, 16836, 3158, 889, 1047, 6787, 311, 1629, 264, 6149, 18702, 279, 2893, 6258, 91180, 383, 11, 2893, 6258, 43922, 70, 11, 2893, 6258, 2052, 11118, 323, 14851, 589, 613, 35231, 627, 1548, 1047, 1027, 12512, 2579, 4401, 36876, 11, 264, 3776, 63172, 64, 27300, 11, 264, 2678, 3776, 34236, 11, 264, 2579, 323, 3776, 7200, 3444, 323, 51191, 994, 568, 574, 1566, 3970, 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, 2547, 315, 7554, 24898, 23055, 323, 305, 25840, 20643, 40203, 706, 1027, 1766, 1306, 568, 574, 1566, 3970, 4401, 304, 279, 8611, 1907, 263, 3158, 315, 4410, 261, 21116, 304, 279, 27188, 84025, 1566, 7418, 320, 508, 6250, 570, 362, 2778, 16239, 264, 13962, 27190, 36125, 323, 16700, 17629, 7411, 574, 13375, 369, 279, 220, 2397, 4771, 6418, 11, 505, 279, 80473, 16836, 3158, 889, 1047, 6787, 311, 1629, 264, 6149, 18702, 279, 2893, 6258, 91180, 383, 11, 2893, 6258, 43922, 70, 11, 2893, 6258, 2052, 11118, 323, 14851, 589, 613, 35231, 627, 1548, 1047, 1027, 12512, 2579, 4401, 36876, 11, 264, 3776, 63172, 64, 27300, 11, 264, 2678, 3776, 34236, 11, 264, 2579, 323, 3776, 7200, 3444, 323, 51191, 994, 568, 574, 1566, 3970, 11, -100 ]
My daughter Nina made a beautiful bright Easter egg basket at school- I loved the bright colours and our Easter party table reflected her colour craft masterpiece. Chocolate hot cross bun "cake", loads of chocolate eggs, mini cupcakes in egg holders and pretty tulips and carnations made our day fun and bright. I used plastic bunny jelly moulds for a wall decoration, next to our favourite bunny mask. We also filled our vintage glass bunny mould with eggs and hundreds and thousands on the prized egg and mini cupcakes, all too sweet – pun intended!
{ "redpajama_set_name": "RedPajamaC4" }
8,426
[ 128000, 5159, 10003, 64988, 1903, 264, 6366, 10107, 33500, 19151, 14351, 520, 2978, 12, 358, 10456, 279, 10107, 27230, 323, 1057, 33500, 4717, 2007, 27000, 1077, 12745, 11003, 59831, 13, 39520, 4106, 5425, 45921, 330, 48484, 498, 21577, 315, 18414, 19335, 11, 13726, 88993, 304, 19151, 29809, 323, 5128, 62036, 3153, 323, 39438, 811, 1903, 1057, 1938, 2523, 323, 10107, 13, 358, 1511, 12466, 76614, 52441, 51370, 82, 369, 264, 7147, 20841, 11, 1828, 311, 1057, 19214, 76614, 7056, 13, 1226, 1101, 10409, 1057, 24724, 9168, 76614, 51370, 449, 19335, 323, 11758, 323, 9214, 389, 279, 87630, 19151, 323, 13726, 88993, 11, 682, 2288, 10437, 1389, 8474, 10825, 0, 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, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 5159, 10003, 64988, 1903, 264, 6366, 10107, 33500, 19151, 14351, 520, 2978, 12, 358, 10456, 279, 10107, 27230, 323, 1057, 33500, 4717, 2007, 27000, 1077, 12745, 11003, 59831, 13, 39520, 4106, 5425, 45921, 330, 48484, 498, 21577, 315, 18414, 19335, 11, 13726, 88993, 304, 19151, 29809, 323, 5128, 62036, 3153, 323, 39438, 811, 1903, 1057, 1938, 2523, 323, 10107, 13, 358, 1511, 12466, 76614, 52441, 51370, 82, 369, 264, 7147, 20841, 11, 1828, 311, 1057, 19214, 76614, 7056, 13, 1226, 1101, 10409, 1057, 24724, 9168, 76614, 51370, 449, 19335, 323, 11758, 323, 9214, 389, 279, 87630, 19151, 323, 13726, 88993, 11, 682, 2288, 10437, 1389, 8474, 10825, 0, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
I'm always interested in how creative people work. What do they do first? Do they outline? What applications do they use? Do they do it in silence or with music? In a crowded coffee shop or in a reinforced bunker? If you post a blurb about how others create (especially when it comes to writing) I am there. John August has a nice series going about writers and their worskpaces – johnaugust.com . It might focus too much on the nitty gritty for some ("I will only write on a mahogany desk with my Macbook and Final Draft while sipping earl grey tea, hot."), but I love that stuff too. Scott Myers, however, recently concluded a 10 part series about his own writing process (screenplays specifically). Read about how he goes from the concept to the outline to the 2nd draft and everything in-between. It's quite educational. You can find links to all 10 parts here: "How I Write A Script" by Scott Myers.
{ "redpajama_set_name": "RedPajamaC4" }
647
[ 128000, 40, 2846, 2744, 8173, 304, 1268, 11782, 1274, 990, 13, 3639, 656, 814, 656, 1176, 30, 3234, 814, 21782, 30, 3639, 8522, 656, 814, 1005, 30, 3234, 814, 656, 433, 304, 21847, 477, 449, 4731, 30, 763, 264, 39313, 11033, 8221, 477, 304, 264, 49680, 84772, 30, 1442, 499, 1772, 264, 1529, 9225, 922, 1268, 3885, 1893, 320, 36046, 994, 433, 4131, 311, 4477, 8, 358, 1097, 1070, 13, 3842, 6287, 706, 264, 6555, 4101, 2133, 922, 16483, 323, 872, 47293, 74, 28438, 1389, 40742, 19729, 592, 916, 662, 1102, 2643, 5357, 2288, 1790, 389, 279, 308, 23660, 86778, 369, 1063, 3573, 40, 690, 1193, 3350, 389, 264, 44316, 92832, 18496, 449, 856, 7553, 2239, 323, 13321, 29664, 1418, 274, 5772, 2487, 75, 20366, 15600, 11, 4106 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 40, 2846, 2744, 8173, 304, 1268, 11782, 1274, 990, 13, 3639, 656, 814, 656, 1176, 30, 3234, 814, 21782, 30, 3639, 8522, 656, 814, 1005, 30, 3234, 814, 656, 433, 304, 21847, 477, 449, 4731, 30, 763, 264, 39313, 11033, 8221, 477, 304, 264, 49680, 84772, 30, 1442, 499, 1772, 264, 1529, 9225, 922, 1268, 3885, 1893, 320, 36046, 994, 433, 4131, 311, 4477, 8, 358, 1097, 1070, 13, 3842, 6287, 706, 264, 6555, 4101, 2133, 922, 16483, 323, 872, 47293, 74, 28438, 1389, 40742, 19729, 592, 916, 662, 1102, 2643, 5357, 2288, 1790, 389, 279, 308, 23660, 86778, 369, 1063, 3573, 40, 690, 1193, 3350, 389, 264, 44316, 92832, 18496, 449, 856, 7553, 2239, 323, 13321, 29664, 1418, 274, 5772, 2487, 75, 20366, 15600, 11, 4106, -100 ]
I like the redeisgn..but you MUST change that expandable ad at at the first/every visit. b. It's there nearly every day, what is up with that? c. The more you think you are monetizing this page, the less you may see user satisfaction, and many of those people may not take the time to respond, they will just stop using. Those ads should be capped so you only see them twice at most per day. We are trying to be very careful to not be too intrusive with any ads.
{ "redpajama_set_name": "RedPajamaC4" }
7,044
[ 128000, 40, 1093, 279, 31265, 285, 5010, 497, 8248, 499, 28832, 2349, 430, 9407, 481, 1008, 520, 520, 279, 1176, 16954, 1225, 4034, 627, 65, 13, 1102, 596, 1070, 7154, 1475, 1938, 11, 1148, 374, 709, 449, 430, 5380, 66, 13, 578, 810, 499, 1781, 499, 527, 58191, 4954, 420, 2199, 11, 279, 2753, 499, 1253, 1518, 1217, 24617, 11, 323, 1690, 315, 1884, 1274, 1253, 539, 1935, 279, 892, 311, 6013, 11, 814, 690, 1120, 3009, 1701, 627, 23025, 14058, 1288, 387, 61246, 779, 499, 1193, 1518, 1124, 11157, 520, 1455, 824, 1938, 627, 1687, 527, 4560, 311, 387, 1633, 16994, 311, 539, 387, 2288, 86010, 449, 904, 14058, 13, 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, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 40, 1093, 279, 31265, 285, 5010, 497, 8248, 499, 28832, 2349, 430, 9407, 481, 1008, 520, 520, 279, 1176, 16954, 1225, 4034, 627, 65, 13, 1102, 596, 1070, 7154, 1475, 1938, 11, 1148, 374, 709, 449, 430, 5380, 66, 13, 578, 810, 499, 1781, 499, 527, 58191, 4954, 420, 2199, 11, 279, 2753, 499, 1253, 1518, 1217, 24617, 11, 323, 1690, 315, 1884, 1274, 1253, 539, 1935, 279, 892, 311, 6013, 11, 814, 690, 1120, 3009, 1701, 627, 23025, 14058, 1288, 387, 61246, 779, 499, 1193, 1518, 1124, 11157, 520, 1455, 824, 1938, 627, 1687, 527, 4560, 311, 387, 1633, 16994, 311, 539, 387, 2288, 86010, 449, 904, 14058, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
There are so many lists out there that let me know me all of the books that I need to read in my lifetime…but they're either unrealistically long, way too short, or I've already read half of them. So I decided to have some fun (yes, this is what I call fun ) and come up with my own Books to Read Before I Die list, made up of all books that I personally want to eventually read. Some of my choices are for fun, some of my choices are classics, and two of them are poetry. But these are the things that I wanted to put on my personal book bucket list. I can't wait to get started on this list and be able to cross some of them out!
{ "redpajama_set_name": "RedPajamaC4" }
5,379
[ 128000, 3947, 527, 779, 1690, 11725, 704, 1070, 430, 1095, 757, 1440, 757, 682, 315, 279, 6603, 430, 358, 1205, 311, 1373, 304, 856, 19569, 83766, 814, 2351, 3060, 50204, 38210, 1317, 11, 1648, 2288, 2875, 11, 477, 358, 3077, 2736, 1373, 4376, 315, 1124, 13, 2100, 358, 6773, 311, 617, 1063, 2523, 320, 9891, 11, 420, 374, 1148, 358, 1650, 2523, 883, 323, 2586, 709, 449, 856, 1866, 18312, 311, 4557, 13538, 358, 8574, 1160, 11, 1903, 709, 315, 682, 6603, 430, 358, 16102, 1390, 311, 9778, 1373, 627, 8538, 315, 856, 11709, 527, 369, 2523, 11, 1063, 315, 856, 11709, 527, 53805, 11, 323, 1403, 315, 1124, 527, 32349, 13, 2030, 1521, 527, 279, 2574, 430, 358, 4934, 311, 2231, 389, 856, 4443, 2363, 15994, 1160 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 3947, 527, 779, 1690, 11725, 704, 1070, 430, 1095, 757, 1440, 757, 682, 315, 279, 6603, 430, 358, 1205, 311, 1373, 304, 856, 19569, 83766, 814, 2351, 3060, 50204, 38210, 1317, 11, 1648, 2288, 2875, 11, 477, 358, 3077, 2736, 1373, 4376, 315, 1124, 13, 2100, 358, 6773, 311, 617, 1063, 2523, 320, 9891, 11, 420, 374, 1148, 358, 1650, 2523, 883, 323, 2586, 709, 449, 856, 1866, 18312, 311, 4557, 13538, 358, 8574, 1160, 11, 1903, 709, 315, 682, 6603, 430, 358, 16102, 1390, 311, 9778, 1373, 627, 8538, 315, 856, 11709, 527, 369, 2523, 11, 1063, 315, 856, 11709, 527, 53805, 11, 323, 1403, 315, 1124, 527, 32349, 13, 2030, 1521, 527, 279, 2574, 430, 358, 4934, 311, 2231, 389, 856, 4443, 2363, 15994, 1160, -100 ]
** Table of Contents** - Compute Resources - [Container and Pod Resource Limits](#container-and-pod-resource-limits) - [How Pods with Resource Limits are Scheduled](#how-pods-with-resource-limits-are-scheduled) - [How Pods with Resource Limits are Run](#how-pods-with-resource-limits-are-run) - [Monitoring Compute Resource Usage](#monitoring-compute-resource-usage) - [Troubleshooting](#troubleshooting) - [Planned Improvements](#planned-improvements) When specifying a [pod](./pods.md), you can optionally specify how much CPU and memory (RAM) each container needs. When containers have resource limits, the scheduler is able to make better decisions about which nodes to place pods on, and contention for resources can be handled in a consistent manner. *CPU* and *memory* are each a *resource type*. A resource type has a base unit. CPU is specified in units of cores. Memory is specified in units of bytes. CPU and RAM are collectively refered to as *compute resources*, or just *resources*. Compute resources are measureable quantities which can be requested, allocated, and consumed. They are distinct from [API resources](./working_with_resources.md). API resources, such as pods and [services](./services.md) are objects that can be written to and retrieved from the Kubernetes API server. ## Container and Pod Resource Limits Each container of a Pod can optionally specify `spec.container[].resources.limits.cpu` and/or `spec.container[].resources.limits.memory`. The `spec.container[].resources.requests` field is not currently used and need not be set. Specifying resource limits is optional. In some clusters, an unset value may be replaced with a default value when a pod is created or updated. The default value depends on how the cluster is configured. Although limits can only be specified on individual containers, it is convenient to talk about pod resource limits. A *pod resource limit* for a particular resource type is the sum of the resource limits of that type for each container in the pod, with unset values treated as zero. The following pod has two containers. Each has a limit of 0.5 core of cpu and 128MiB (2<sup>20</sup> bytes) of memory. The pod can be said to have a limit of 1 core and 256MiB of memory. ```yaml apiVersion: v1 kind: Pod metadata: name: frontend spec: containers: - name: db image: mysql resources: limits: memory: "128Mi" cpu: "500m" - name: wp image: wordpress resources: limits: memory: "128Mi" cpu: "500m" ``` ## How Pods with Resource Limits are Scheduled When a pod is created, the kubernetes scheduler selects a node for the pod to run on. Each node has a maximum capacity for each of the resource types: the amount of CPU and memory it can provide for pods. The scheduler ensures that, for each resource type (CPU and memory), the sum of the resource limits of the containers scheduled to the node is less than the capacity of the node. Note that although actual memory or CPU resource usage on nodes is very low, the scheduler will still refuse to place pods onto nodes if the capacity check fails. This protects against a resource shortage on a node when resource usage later increases, such as due to a daily peak in request rate. Note: Although the scheduler normally spreads pods out across nodes, there are currently some cases where pods with no limits (unset values) might all land on the same node. ## How Pods with Resource Limits are Run When kubelet starts a container of a pod, it passes the CPU and memory limits to the container runner (Docker or rkt). When using Docker: - The `spec.container[].resources.limits.cpu` is multiplied by 1024, converted to an integer, and used as the value of the [`--cpu-shares`]( https://docs.docker.com/reference/run/#runtime-constraints-on-resources) flag to the `docker run` command. - The `spec.container[].resources.limits.memory` is converted to an integer, and used as the value of the [`--memory`](https://docs.docker.com/reference/run/#runtime-constraints-on-resources) flag to the `docker run` command. **TODO: document behavior for rkt** If a container exceeds its memory limit, it may be terminated. If it is restartable, it will be restarted by kubelet, as will any other type of runtime failure. If it is killed for exceeding its memory limit, you will see the reason `OOM Killed`, as in this example: ``` $ kubectl get pods/memhog NAME READY REASON RESTARTS AGE memhog 0/1 OOM Killed 0 1h ``` *OOM* stands for Out Of Memory. A container may or may not be allowed to exceed its CPU limit for extended periods of time. However, it will not be killed for excessive CPU usage. ## Monitoring Compute Resource Usage The resource usage of a pod is reported as part of the Pod status. If [optional monitoring](../cluster/addons/monitoring/README.md) is configured for your cluster, then pod resource usage can be retrieved from the monitoring system. ## Troubleshooting If the scheduler cannot find any node where a pod can fit, then the pod will remain unscheduled until a place can be found. An event will be produced each time the scheduler fails to find a place for the pod, like this: ``` $ kubectl describe pods/frontend | grep -A 3 Events Events: FirstSeen LastSeen Count From SubobjectPath Reason Message Tue, 30 Jun 2015 09:01:41 -0700 Tue, 30 Jun 2015 09:39:27 -0700 128 {scheduler } failedScheduling Error scheduling: For each of these fitness predicates, pod frontend failed on at least one node: PodFitsResources. ``` If a pod or pods are pending with this message, then there are several things to try: - Add more nodes to the cluster. - Terminate unneeded pods to make room for pending pods. - Check that the pod is not larger than all the nodes. For example, if all the nodes have a capacity of `cpu: 1`, then a pod with a limit of `cpu: 1.1` will never be scheduled. You can check node capacities with the `kubectl get nodes -o <format>` command. Here are some example command lines that extract just the necessary information: - `kubectl get nodes -o yaml | grep '\sname\|cpu\|memory'` - `kubectl get nodes -o json | jq '.items[] | {name: .metadata.name, cap: .status.capacity}'` The [resource quota](./resource_quota_admin.md) feature can be configured to limit the total amount of resources that can be consumed. If used in conjunction with namespaces, it can prevent one team from hogging all the resources. ## Planned Improvements The current system only allows resource quantities to be specified on a container. It is planned to improve accounting for resources which are shared by all containers in a pod, such as [EmptyDir volumes](./volumes.md#emptydir). The current system only supports container limits for CPU and Memory. It is planned to add new resource types, including a node disk space resource, and a framework for adding custom [resource types](./design/resources.md#resource-types). The current system does not facilitate overcommitment of resources because resources reserved with container limits are assured. It is planned to support multiple levels of [Quality of Service](https://github.com/GoogleCloudPlatform/kubernetes/issues/168). Currently, one unit of CPU means different things on different cloud providers, and on different machine types within the same cloud providers. For example, on AWS, the capacity of a node is reported in [ECUs](http://aws.amazon.com/ec2/faqs/), while in GCE it is reported in logical cores. We plan to revise the definition of the cpu resource to allow for more consistency across providers and platforms. [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/compute_resources.md?pixel)]()
{ "redpajama_set_name": "RedPajamaGithub" }
6,094
[ 128000, 334, 6771, 315, 36962, 1035, 12, 23426, 16607, 198, 220, 482, 510, 4603, 323, 17241, 12027, 72955, 9725, 2, 3670, 9976, 2320, 347, 75890, 2922, 23714, 340, 220, 482, 510, 4438, 53332, 449, 12027, 72955, 527, 78196, 9725, 2, 5269, 2320, 30797, 27281, 75890, 2922, 23714, 12, 548, 1355, 27742, 340, 220, 482, 510, 4438, 53332, 449, 12027, 72955, 527, 6588, 9725, 2, 5269, 2320, 30797, 27281, 75890, 2922, 23714, 12, 548, 23831, 340, 220, 482, 510, 99162, 23426, 12027, 25585, 9725, 2, 33325, 287, 11733, 8660, 75890, 12, 18168, 340, 220, 482, 510, 91635, 65, 51340, 9725, 2, 376, 5599, 51340, 340, 220, 482, 510, 2169, 7443, 22728, 12760, 9725, 2, 501, 7443, 38025, 782, 12760, 696, 4599, 38938, 264, 510, 40173, 9725, 1761, 79, 30797 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 334, 6771, 315, 36962, 1035, 12, 23426, 16607, 198, 220, 482, 510, 4603, 323, 17241, 12027, 72955, 9725, 2, 3670, 9976, 2320, 347, 75890, 2922, 23714, 340, 220, 482, 510, 4438, 53332, 449, 12027, 72955, 527, 78196, 9725, 2, 5269, 2320, 30797, 27281, 75890, 2922, 23714, 12, 548, 1355, 27742, 340, 220, 482, 510, 4438, 53332, 449, 12027, 72955, 527, 6588, 9725, 2, 5269, 2320, 30797, 27281, 75890, 2922, 23714, 12, 548, 23831, 340, 220, 482, 510, 99162, 23426, 12027, 25585, 9725, 2, 33325, 287, 11733, 8660, 75890, 12, 18168, 340, 220, 482, 510, 91635, 65, 51340, 9725, 2, 376, 5599, 51340, 340, 220, 482, 510, 2169, 7443, 22728, 12760, 9725, 2, 501, 7443, 38025, 782, 12760, 696, 4599, 38938, 264, 510, 40173, 9725, 1761, 79, 30797, -100 ]
What is a private water supply? All private water supplies must be registered with the council. Relevant details are required to be kept on a Public Register. See useful documents menu. and return it to us either by email or in the post. We are also required by the Regulations to keep a record of all private water supplies within our district. Private water supplies fall into one of four categories, each requiring different levels of monitoring by local authorities. Once your private water supply is registered, we use this information to ensure that the water supply is being monitored sufficiently. Please be aware, if the property being served by a private water supply has a commercial use, for example, a rented property, holiday let or a bed and breakfast, or you intend to change to a commercial use, you need to tell us immediately. Councils are consulted on many activities, such as planning applications, which could affect private water supplies if these activities are located close to the source of the supply. It is therefore essential that we are aware of the location of private water supplies so we can access this information when making a decision. It is also essential that we are able to contact everyone who may be using the water supply in the event of a problem with the supply. The Council will charge the costs of carrying out their duties under these regulations to those responsible for the supply. Where part of a shared supply is used by some commercial activity the charges may be divided between the commercial and non-commercial properties proportionally. A breakdown of the council's charges in respect of private water supplies is included below, along with the maximum fee allowed to be charged under the regulations. For the 2019/20 financial year, charges will reflect the actual costs incurred by the Council in terms of officer time, mileage and laboratory costs. Risk assessments will be carried out every five years. Carried out in the event of test failure. The Private Water Supplies Regulations came into force in January 2010 and were updated in 2018. They seek to further safeguard public health by ensuing that private water supplies are wholesome and safe to drink. The new regulations aim to protect health and they require quality standards similar to those of mains water supply. They require each supply - unless it supplies only one property - to undergo a risk assessment. The council will charge for this work, please see the charges table. The regulations require each supply (excluding single private domestic dwellings) to undergo a risk assessment every five years, to determine how regularly the supply needs to be tested and for which parameters (i.e. which types of bacteria, chemicals etc.) This involves surveying the supply, from the source through to point-of-use, to identify factors that could lead to contamination of the supply. Factors influencing sampling requirements include the type of source (borehole, well etc.), how well it is protected, the treatment methods in place, the number of people served by the supply and the intended use of the water. Larger supplies (using more than 10 cubic metres of water per day) and those serving commercial premises are now required to undergo annual 'check monitoring', as well as more extensive 'audit monitoring'. Small supplies (using less than 10 cubic metres of water per day) are monitored at least once every five years and more frequently if shown to be necessary by the risk assessment. In the event of failure, where a supply is found to be 'unwholesome' or a 'risk to human health', a notice will be served either prohibiting or restricting the supply, as appropriate. The notice will be specific for each supply that has a failure of standards. This notice can be appealed in a Magistrate's Court and/or by appeal to the Secretary of State, but the notice will remain in force until either it has been complied with or it is suspended by the Courts/Secretary of State. The commercial/large category includes any business that supplies water from a private water supply to the public for drinking, washing, food preparation, or where the water is used in a way that it is likely to enter the human food chain. This category includes rented properties, B&B, holiday lets, pubs, food production premises. Also within this category are domestic private water supplies using more than 10 cubic metres of water per day. Risk assessments can only be performed by the local authority or by persons the local authority has deemed competent. The local authority is responsible for ensuing sampling is completed according to legislation, therefore if you would like another company to take and analyse samples of your private water supply, the local authority will need to approve the sampling company and the parameters to be analysed, prior to samples being taken. The analysis must comply with the new legislation. The local authority will need to be sent the result certificates directly from the laboratory. The Private Water Supplies Regulations impose a tighter legal duty for monitoring of your supply, and one of the functions of the risk assessment is to identify any parameter (that is,. types of bacteria, chemicals etc.) which could pose a potential risk to human health. The parameters identified can then be monitored. The risk assessment will typically take approximately two hours. Ideally the person responsible for the supply should be present so that the risk assessment can be conducted as quickly and efficiently as possible. During the risk assessment we will need access to the source of the supply i.e.. borehole, well, or spring, any collection chambers, holding/storage tanks including header tanks which may be found in roof spaces, and finally the point of use of the supply. See our schedule of fees for details. Regulation 9 supplies Large or commercial supplies (including rental properties, holiday lets) To be determined by the volume of water supplied but at least twice per year. New supplies dependent on volume of water and sampling results over a three year period. For established historic supplies, at least once every five years or more frequently if the risk assessment identifies a need. carry out risk assessment and monitoring if required under the The Private Water Supplies (England) Regulations 2016 as amended. All parts of your supply should be routinely monitored and inspected to ensure that it is in good working order, and has not been interfered with or damaged. Any products or treatment used on the supply must be featured on the DWI list of approved products. The supply must be appropriately protected throughout, from source to point-of-use. This should include a maintenance programme to clean the distribution system and storage tanks or header tanks, and to ensure that any treatment works are operating as they should and according to manufacturer's guidelines. Should I get my supply checked by the Council? What are the different categories of private water supplies? Large supplies (Regulation 9) - a water supply serving over 50 people; or produces more than 10 m³ per day of water; or is used for commercial purposes, for example, rented properties, holiday lets, a bed & breakfast; or is public premises. These supplies require sampling at least once a year and a risk assessment undertaken every five years. If you are a tenant in rented accommodation that is served by a private water supply, please check with your landlord, or us, that the private water supply is registered with us so we can check that the water supply is wholesome and safe to drink. Small supplies (Regulation 10) - a water supply serving two or more premises; produces less than 10m³ of water; and is not used for commercial purposes, or for public premises. These supplies require sampling and a risk assessment every five years. Single supplies (Regulation 10(3)) - a water supply that serves only one private domestic dwelling where no commercial activity takes place. (Rented properties would not fall into this category because of the commercial use). These supplies will only be sampled and risk assessed at the owner's request. This is often requested when people are looking to buy a property on a private water supply. Private distribution systems (Regulation 8) - a water supply that is supplied by a water company and then further distributed by the account holder to a third party, for example, caravan parks. These supplies require a risk assessment every five years and sampling at a frequency dependent of the outcome of the risk assessment.
{ "redpajama_set_name": "RedPajamaC4" }
8,216
[ 128000, 3923, 374, 264, 879, 3090, 8312, 5380, 2460, 879, 3090, 17135, 2011, 387, 9879, 449, 279, 15177, 13, 88516, 3649, 527, 2631, 311, 387, 8774, 389, 264, 3142, 8618, 13, 3580, 5505, 9477, 5130, 627, 438, 471, 433, 311, 603, 3060, 555, 2613, 477, 304, 279, 1772, 13, 1226, 527, 1101, 2631, 555, 279, 49357, 311, 2567, 264, 3335, 315, 682, 879, 3090, 17135, 2949, 1057, 9474, 627, 17205, 3090, 17135, 4498, 1139, 832, 315, 3116, 11306, 11, 1855, 23537, 2204, 5990, 315, 16967, 555, 2254, 11527, 13, 9843, 701, 879, 3090, 8312, 374, 9879, 11, 584, 1005, 420, 2038, 311, 6106, 430, 279, 3090, 8312, 374, 1694, 41223, 40044, 13, 5321, 387, 8010, 11, 422, 279, 3424, 1694, 10434, 555, 264, 879, 3090, 8312, 706, 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 ]
[ 3923, 374, 264, 879, 3090, 8312, 5380, 2460, 879, 3090, 17135, 2011, 387, 9879, 449, 279, 15177, 13, 88516, 3649, 527, 2631, 311, 387, 8774, 389, 264, 3142, 8618, 13, 3580, 5505, 9477, 5130, 627, 438, 471, 433, 311, 603, 3060, 555, 2613, 477, 304, 279, 1772, 13, 1226, 527, 1101, 2631, 555, 279, 49357, 311, 2567, 264, 3335, 315, 682, 879, 3090, 17135, 2949, 1057, 9474, 627, 17205, 3090, 17135, 4498, 1139, 832, 315, 3116, 11306, 11, 1855, 23537, 2204, 5990, 315, 16967, 555, 2254, 11527, 13, 9843, 701, 879, 3090, 8312, 374, 9879, 11, 584, 1005, 420, 2038, 311, 6106, 430, 279, 3090, 8312, 374, 1694, 41223, 40044, 13, 5321, 387, 8010, 11, 422, 279, 3424, 1694, 10434, 555, 264, 879, 3090, 8312, 706, 264, -100 ]
This article is about John Mowbray (1815-1899), the Conservative politician. For other people called John Mowbray, see John Mowbray (disambiguation). Sir John Robert Mowbray, 1st Baronet PC (3 June 1815 – 22 April 1899), known as John Cornish until 1847, was a British Conservative politician and long-serving Member of Parliament, eventually serving as Father of the House. Mowbray was the son of Robert Stirling Cornish, and was educated at Westminster School and Christ Church, Oxford. In 1847 he married Elizabeth Gray, the sole heir of George Isaac Mowbray of Bishopwearmouth. The same year he assumed by Royal licence the surname of Mowbray in lieu of his patronymic to reflect the large fortune he married into. Together, they had three sons and two daughters. In 1853 Mowbray was elected to the House of Commons for Durham, a seat he held until 1868, and then represented Oxford University from 1868 until his death in 1899. In the House, he was chair of the Committee of Selection and of the Standing Orders Committee. He served as Judge Advocate General under the Earl of Derby from 1858 to 1859 and under Derby and later Benjamin Disraeli from 1866 to 1868. He was admitted to the Privy Council in 1858 and in 1880 he was created a baronet. From 1898 until his death the following year Mowbray was Father of the House of Commons. A bronze bust was erected as a memorial in the House of Commons in 1900. ^ a b Pollard 1901. ^ a b "Political notes". The Times (36061). London. 9 February 1900. p. 10. A. F. Pollard; rev. H. C. G. Matthew (2004). "Mowbray , Sir John Robert, first baronet (1815–1899)". Oxford Dictionary of National Biography. Oxford University Press. Pollard, Albert Frederick (1901). "Mowbray, John Robert" . Dictionary of National Biography (1st supplement). London: Smith, Elder & Co.
{ "redpajama_set_name": "RedPajamaC4" }
8,942
[ 128000, 2028, 4652, 374, 922, 3842, 386, 363, 1347, 352, 320, 10562, 20, 12, 9378, 24, 705, 279, 30071, 37038, 13, 1789, 1023, 1274, 2663, 3842, 386, 363, 1347, 352, 11, 1518, 3842, 386, 363, 1347, 352, 320, 4338, 3042, 343, 4090, 4390, 51290, 3842, 8563, 386, 363, 1347, 352, 11, 220, 16, 267, 54007, 295, 6812, 320, 18, 5651, 220, 10562, 20, 1389, 220, 1313, 5936, 220, 9378, 24, 705, 3967, 439, 3842, 22036, 819, 3156, 220, 10336, 22, 11, 574, 264, 8013, 30071, 37038, 323, 1317, 87086, 12308, 315, 20302, 11, 9778, 13788, 439, 20941, 315, 279, 4783, 627, 44, 363, 1347, 352, 574, 279, 4538, 315, 8563, 800, 51868, 22036, 819, 11, 323, 574, 33142, 520, 48043, 6150, 323, 3771, 9441, 11, 26275, 13, 763 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4652, 374, 922, 3842, 386, 363, 1347, 352, 320, 10562, 20, 12, 9378, 24, 705, 279, 30071, 37038, 13, 1789, 1023, 1274, 2663, 3842, 386, 363, 1347, 352, 11, 1518, 3842, 386, 363, 1347, 352, 320, 4338, 3042, 343, 4090, 4390, 51290, 3842, 8563, 386, 363, 1347, 352, 11, 220, 16, 267, 54007, 295, 6812, 320, 18, 5651, 220, 10562, 20, 1389, 220, 1313, 5936, 220, 9378, 24, 705, 3967, 439, 3842, 22036, 819, 3156, 220, 10336, 22, 11, 574, 264, 8013, 30071, 37038, 323, 1317, 87086, 12308, 315, 20302, 11, 9778, 13788, 439, 20941, 315, 279, 4783, 627, 44, 363, 1347, 352, 574, 279, 4538, 315, 8563, 800, 51868, 22036, 819, 11, 323, 574, 33142, 520, 48043, 6150, 323, 3771, 9441, 11, 26275, 13, 763, -100 ]
· Skip Level-2 and jump directly to Level-3. Kevin Cotherman is a CMMI Institute-Certified Lead Appraiser and has conducted CMMI® SCAMPI (Standard CMMI® Appraisal Method for Process Improvement) Class A, B, and C Appraisals. He has Led 43 CMMI® SCAMPI Class A Appraisals in all types of industries, and all sizes of companies worldwide; appraisal team member for 11 SCAMPI Class A Appraisals. Kevin has 30 years of experience in software and business process improvement, software systems analysis, requirements gathering, project management, and leadership with commercial companies, federal agencies, and the military. He specializes in process improvement implementation and support, which includes defining and documenting processes, setting up and working with Organization Process Groups and Process Action Teams. Kevin was nominated for the 2012 International Cooperation of China Friendship Award. Michael Kramer is founder of cmmiLive.com, a Web 2.0 social-collaboration platform that helps organizations dramatically improve productivity, efficiency, team-communication, quality, and customer satisfaction. Michael created courses in "Best Management Practices" for the University of Chicago, lectured at Northwestern's Kellogg School of Management and DePaul University. Kramer founded the SBDC Think Tank and was awarded the "Most Innovative Program of the Year" by Chicago's Duman Center of Entrepreneurship.
{ "redpajama_set_name": "RedPajamaC4" }
5,487
[ 128000, 14260, 26869, 9580, 12, 17, 323, 7940, 6089, 311, 9580, 12, 18, 627, 48781, 356, 1605, 1543, 374, 264, 356, 8195, 40, 10181, 7813, 531, 1908, 30982, 1883, 969, 12329, 323, 706, 13375, 356, 8195, 40, 12175, 7683, 1428, 1932, 320, 20367, 356, 8195, 40, 12175, 1883, 65359, 6872, 369, 8773, 53751, 8, 3308, 362, 11, 426, 11, 323, 356, 1883, 41098, 1147, 13, 1283, 706, 32755, 220, 3391, 356, 8195, 40, 12175, 7683, 1428, 1932, 3308, 362, 1883, 41098, 1147, 304, 682, 4595, 315, 19647, 11, 323, 682, 12562, 315, 5220, 15603, 26, 79392, 2128, 4562, 369, 220, 806, 7683, 1428, 1932, 3308, 362, 1883, 41098, 1147, 13, 16768, 706, 220, 966, 1667, 315, 3217, 304, 3241, 323, 2626, 1920, 16048, 11, 3241, 6067, 6492, 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 ]
[ 14260, 26869, 9580, 12, 17, 323, 7940, 6089, 311, 9580, 12, 18, 627, 48781, 356, 1605, 1543, 374, 264, 356, 8195, 40, 10181, 7813, 531, 1908, 30982, 1883, 969, 12329, 323, 706, 13375, 356, 8195, 40, 12175, 7683, 1428, 1932, 320, 20367, 356, 8195, 40, 12175, 1883, 65359, 6872, 369, 8773, 53751, 8, 3308, 362, 11, 426, 11, 323, 356, 1883, 41098, 1147, 13, 1283, 706, 32755, 220, 3391, 356, 8195, 40, 12175, 7683, 1428, 1932, 3308, 362, 1883, 41098, 1147, 304, 682, 4595, 315, 19647, 11, 323, 682, 12562, 315, 5220, 15603, 26, 79392, 2128, 4562, 369, 220, 806, 7683, 1428, 1932, 3308, 362, 1883, 41098, 1147, 13, 16768, 706, 220, 966, 1667, 315, 3217, 304, 3241, 323, 2626, 1920, 16048, 11, 3241, 6067, 6492, 11, -100 ]
Do You Look At Cultural Symbols As Closely As Your Website Analytics? Marketing and anthropology share at least one common goal; seeking to understand culture. The biggest difference between the marketer and the anthropologist, however lies in the implementation and methodology. There is a reason why an anthropologist participates and observes. He doesn't immerse himself within a population of people just because he feels like hanging out. It's not just some arbitrary preoccupation with the exotic, wherein he aspires to visit an isolated, tourist-free destination for what some would consider an extensive vacation. It's more than that. The goal of anthropological research is to understand culture first and then tell the story from an insider's perspective. Understand Consumer Culture. Become One With The People. Wouldn't it be easier to just administer a survey, collect the data and call it a day? Not exactly. Anthropologists, professionals in the field of culture, know that immersion is the only way to really get to know a culture by answering the question: "Why do they do what they do?" With good ethnography, the anthropologist can tell you what is important in culture, what its symbols mean and how they're used. Immersion is key to gaining an insider understanding. By participating and becoming one with the people you have something more than points on a graph. Culture is complex; it is shared beliefs, values and practices that form the structures within a population of human beings. When you wink, any outsider can see that you've rapidly opened and closed your eyelid, but an anthropologist sees that your wink conveyed an intimate message to another (Geertz, 1973). Accurate interpretation is a very difficult business. Every culture is rich in its own unique history, and symbols that convey meaning. As Clifford Geertz wrote, "(…) man is an animal suspended in webs of significance he himself has spun, I take culture to be those webs, and the analysis of it to be therefore not an experimental science in search of law, but an interpretive one in search of meaning" (Geertz, 1973: 4). Cool. Now How Will This Help My ROI? Perhaps you could say that marketing is equally complex. Although different in methodology it is a process by which the marketer searches for meaning and transcribes thought into print and media. Consider that it takes brilliant strategy, countless brainstorms and revisions to invent a new brand. None of it can be accomplished without being informed by your buyer. Marketing is most effective when you understand your buyer's culture. To only see your buyers as points on a graph in your analytics reports, your website traffic, new visitors and returning visitors, it is in other words, "(…) to betray as deep a confusion as, taking thin descriptions for thick" (Geertz, 1973: 12). Thick descriptions, in this case would be doing as they do, and learning how culture is shared. Don't get me wrong, website analytics are an essential tool for any marketer and they explain something about your buyers, but not everything. This is where I think we can all agree to add another tool to the marketing toolbox. Symbolic interpretation. The marketer's objective should be to explore and understand culture, interpreting and constructing symbols that mean something to people. Meaning alone has the power to motivate and to change the way people think. Meaning has the potential to make people want to share, to teach and ultimately to understand each other. Truly meaningful brands construct powerful symbols that demonstrate something rare. If you can create a powerful symbol that has meaning, and that others want to share, then it shows that you've taken the time to understand culture. In order to do this; your primary goal shouldn't be to command larger sale volumes and rapid turnover rates, your goal should be to bring something better to the market. There isn't only one way to do it. Professor Rafael Hernandez Barros, at The Complutense University of Madrid said, "The only risk is to see marketing as a kind of superstition in itself, in which the only beneficiary is the one with the magic cure for a product to be successfully marketed or a brand recognized worldwide" (Barros, 2013: 292). The only way to debunk this "magic cure" myth is to stop searching for one. For starters, try getting to know your buyers. "Symbols have a vital meaning for brands that are at the heart of marketing. Such symbols have a profound impact on people's purchasing decisions" (Akova, 2011: 139). Participant observation is no simple task. Especially not for marketers – heck not even for anthropologists! For anthropologists it takes years of research, literature review and fieldwork to become immersed in culture. They have to remove themselves from their own cultural norms, establish rapport, learn a completely new language, and speak it well, so as to communicate effectively all on a budget designed with those goals in mind. Marketers have a tighter budget, and a shorter amount of time to discover and construct meaning that will affect purchasing decisions, impact website traffic, attract new leads, and eventually establish brand loyalty. But, good marketers know what it takes to immerse with consumers, they don't just let anybody in with the lowest prices anymore! The marketer has to be willing to metaphorically sit down with consumers and learn from them on their terms. It's no secret that the marketer today must be prepared to interact, on multiple platforms, build trust, learn from others, and teach with quality content.
{ "redpajama_set_name": "RedPajamaC4" }
6,129
[ 128000, 5519, 1472, 9372, 2468, 41333, 84680, 1666, 356, 2353, 989, 1666, 4718, 16406, 33527, 5380, 68662, 323, 95044, 4430, 520, 3325, 832, 4279, 5915, 26, 11125, 311, 3619, 7829, 13, 578, 8706, 6811, 1990, 279, 98363, 323, 279, 41416, 16549, 11, 4869, 15812, 304, 279, 8292, 323, 38152, 13, 2684, 374, 264, 2944, 3249, 459, 41416, 16549, 91287, 323, 81299, 13, 1283, 3250, 956, 26612, 325, 5678, 2949, 264, 7187, 315, 1274, 1120, 1606, 568, 11321, 1093, 21363, 704, 13, 1102, 596, 539, 1120, 1063, 25142, 864, 59362, 449, 279, 39418, 11, 42418, 568, 439, 19505, 311, 4034, 459, 25181, 11, 31070, 12862, 9284, 369, 1148, 1063, 1053, 2980, 459, 16781, 20769, 13, 1102, 596, 810, 1109, 430, 627, 791, 5915, 315, 41416, 5848, 3495, 374, 311 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 5519, 1472, 9372, 2468, 41333, 84680, 1666, 356, 2353, 989, 1666, 4718, 16406, 33527, 5380, 68662, 323, 95044, 4430, 520, 3325, 832, 4279, 5915, 26, 11125, 311, 3619, 7829, 13, 578, 8706, 6811, 1990, 279, 98363, 323, 279, 41416, 16549, 11, 4869, 15812, 304, 279, 8292, 323, 38152, 13, 2684, 374, 264, 2944, 3249, 459, 41416, 16549, 91287, 323, 81299, 13, 1283, 3250, 956, 26612, 325, 5678, 2949, 264, 7187, 315, 1274, 1120, 1606, 568, 11321, 1093, 21363, 704, 13, 1102, 596, 539, 1120, 1063, 25142, 864, 59362, 449, 279, 39418, 11, 42418, 568, 439, 19505, 311, 4034, 459, 25181, 11, 31070, 12862, 9284, 369, 1148, 1063, 1053, 2980, 459, 16781, 20769, 13, 1102, 596, 810, 1109, 430, 627, 791, 5915, 315, 41416, 5848, 3495, 374, 311, -100 ]
Our industry-leading hydrogen analyzers and leak detectors are based on our patented, solid-state core hydrogen sensor technology exclusively licensed from the U.S. Department of Energy and supported by 15 years of R&D and field verification work. Today, our HY-OPTIMA™ process hydrogen analyzers and HY-ALERTA™ hydrogen leak detectors standalone product lines are currently sold in over 50 countries helping utilities, nuclear power plants, petroleum, fuel cells, industrial hydrogen and petrochemical companies, and other industrial organizations meet safety, regulatory, and process control requirements when doing critical hydrogen monitoring – often in diverse and challenging environments. Additionally, our proven analyzer technology is offered as sub-systems to OEMs for a wide range of industrial applications and is currently licensed by major strategic partners including WEIDMANN Diagnostic Solutions. ©2019 Norsk Analyse AS. All rights reserved.
{ "redpajama_set_name": "RedPajamaC4" }
7,652
[ 128000, 8140, 5064, 69475, 35784, 8678, 60719, 323, 24237, 69087, 527, 3196, 389, 1057, 63712, 11, 6573, 21395, 6332, 35784, 12271, 5557, 24121, 16383, 505, 279, 549, 815, 13, 6011, 315, 12634, 323, 7396, 555, 220, 868, 1667, 315, 432, 33465, 323, 2115, 23751, 990, 627, 15724, 11, 1057, 64352, 24540, 2898, 73924, 16500, 1920, 35784, 8678, 60719, 323, 64352, 12, 984, 3481, 32, 16500, 35784, 24237, 69087, 44488, 2027, 5238, 527, 5131, 6216, 304, 927, 220, 1135, 5961, 10695, 30519, 11, 11499, 2410, 11012, 11, 60063, 11, 10633, 7917, 11, 13076, 35784, 323, 6896, 299, 32056, 5220, 11, 323, 1023, 13076, 11351, 3449, 7296, 11, 23331, 11, 323, 1920, 2585, 8670, 994, 3815, 9200, 35784, 16967, 1389, 3629, 304, 17226, 323, 17436, 22484, 13, 23212, 11, 1057 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5064, 69475, 35784, 8678, 60719, 323, 24237, 69087, 527, 3196, 389, 1057, 63712, 11, 6573, 21395, 6332, 35784, 12271, 5557, 24121, 16383, 505, 279, 549, 815, 13, 6011, 315, 12634, 323, 7396, 555, 220, 868, 1667, 315, 432, 33465, 323, 2115, 23751, 990, 627, 15724, 11, 1057, 64352, 24540, 2898, 73924, 16500, 1920, 35784, 8678, 60719, 323, 64352, 12, 984, 3481, 32, 16500, 35784, 24237, 69087, 44488, 2027, 5238, 527, 5131, 6216, 304, 927, 220, 1135, 5961, 10695, 30519, 11, 11499, 2410, 11012, 11, 60063, 11, 10633, 7917, 11, 13076, 35784, 323, 6896, 299, 32056, 5220, 11, 323, 1023, 13076, 11351, 3449, 7296, 11, 23331, 11, 323, 1920, 2585, 8670, 994, 3815, 9200, 35784, 16967, 1389, 3629, 304, 17226, 323, 17436, 22484, 13, 23212, 11, 1057, -100 ]
Q: Android Date Parsing error I am developing in an Android app, in that I facing error in date parsing. ava.text.ParseException: Unparseable date: "2017-02-10T00:00:00.000Z" Code: String dt="2017-02-24T12:00:00.000Z"; SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ssZ"); try{ Date dateFrom=format.parse(dt); } catch (Exception e) { e.printStackTrace(); } A: I think you have 1 too many zero's at the end it should be "2017-02-24T12:00:00.00Z" A: String dt = "2017-02-24T12:00:00.000Z"; SimpleDateFormat mainformat = new SimpleDateFormat("yyyy'-'MM'-'dd'T'HH':'mm':'ss.SSS'Z'", Locale.getDefault()); try { Date dateFrom = mainformat.parse(dt); } catch (Exception e) { e.printStackTrace(); } This is a exact solution for your problem.The problem is that the instance of simple date format is not right.Try this. Ask if you have anu query.
{ "redpajama_set_name": "RedPajamaStackExchange" }
592
[ 128000, 48, 25, 8682, 2696, 75889, 1493, 358, 1097, 11469, 304, 459, 8682, 917, 11, 304, 430, 358, 13176, 1493, 304, 2457, 23115, 382, 2979, 2858, 72358, 25, 1252, 6534, 481, 2457, 25, 330, 679, 22, 12, 2437, 12, 605, 51, 410, 25, 410, 25, 410, 13, 931, 57, 1, 4815, 2123, 512, 707, 7748, 429, 679, 22, 12, 2437, 12, 1187, 51, 717, 25, 410, 25, 410, 13, 931, 57, 3382, 262, 27272, 3645, 284, 502, 27272, 446, 15110, 19013, 22265, 25788, 20737, 26818, 57, 803, 262, 1456, 517, 286, 2696, 2457, 3915, 92762, 4736, 25726, 317, 262, 335, 2339, 320, 1378, 384, 8, 341, 286, 384, 8392, 545, 262, 4555, 32, 25, 358, 1781, 499, 617, 220, 16, 2288, 1690, 7315, 596, 520, 279, 842, 433 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 8682, 2696, 75889, 1493, 358, 1097, 11469, 304, 459, 8682, 917, 11, 304, 430, 358, 13176, 1493, 304, 2457, 23115, 382, 2979, 2858, 72358, 25, 1252, 6534, 481, 2457, 25, 330, 679, 22, 12, 2437, 12, 605, 51, 410, 25, 410, 25, 410, 13, 931, 57, 1, 4815, 2123, 512, 707, 7748, 429, 679, 22, 12, 2437, 12, 1187, 51, 717, 25, 410, 25, 410, 13, 931, 57, 3382, 262, 27272, 3645, 284, 502, 27272, 446, 15110, 19013, 22265, 25788, 20737, 26818, 57, 803, 262, 1456, 517, 286, 2696, 2457, 3915, 92762, 4736, 25726, 317, 262, 335, 2339, 320, 1378, 384, 8, 341, 286, 384, 8392, 545, 262, 4555, 32, 25, 358, 1781, 499, 617, 220, 16, 2288, 1690, 7315, 596, 520, 279, 842, 433, -100 ]
All systems are in place for the Electoral Office of Jamaica (EOJ) to receive nominations of candidates for the by-election in the constituency of Portland Eastern. Nomination will take place on Friday, March 15 from 10 a.m. to 2 p.m. at the Port Antonio Court House. 3. pay a nomination fee of J$15,000. • Be a citizen of Jamaica, resident in Jamaica for at least twelve months prior to the date of nomination or a Commonwealth citizen who has resided in Jamaica for at least twelve months prior to the nomination date. Under the Representation of the People (Amendment) Act 2014, political parties intending to contest elections must be registered with the Electoral Commission of Jamaica. Persons wishing to contest elections who are not members of registered political parties can do so as independent candidates. Additionally the campaign financing and expenditure of candidates and political parties in the Portland Eastern by-elections will be monitored under the Representation of the People (Amendment) Act 2016.
{ "redpajama_set_name": "RedPajamaC4" }
9,574
[ 128000, 2460, 6067, 527, 304, 2035, 369, 279, 67676, 8410, 315, 57275, 320, 6903, 41, 8, 311, 5371, 60698, 315, 11426, 369, 279, 555, 43733, 304, 279, 65739, 315, 23947, 18516, 13, 38000, 2617, 690, 1935, 2035, 389, 6740, 11, 5587, 220, 868, 505, 220, 605, 264, 749, 13, 311, 220, 17, 281, 749, 13, 520, 279, 5896, 23245, 7301, 4783, 627, 18, 13, 2343, 264, 29804, 11307, 315, 622, 3, 868, 11, 931, 627, 6806, 2893, 264, 22618, 315, 57275, 11, 19504, 304, 57275, 369, 520, 3325, 30335, 4038, 4972, 311, 279, 2457, 315, 29804, 477, 264, 38298, 22618, 889, 706, 594, 4591, 304, 57275, 369, 520, 3325, 30335, 4038, 4972, 311, 279, 29804, 2457, 627, 16648, 279, 79146, 315, 279, 9029, 320, 6219, 14988, 8, 3298 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2460, 6067, 527, 304, 2035, 369, 279, 67676, 8410, 315, 57275, 320, 6903, 41, 8, 311, 5371, 60698, 315, 11426, 369, 279, 555, 43733, 304, 279, 65739, 315, 23947, 18516, 13, 38000, 2617, 690, 1935, 2035, 389, 6740, 11, 5587, 220, 868, 505, 220, 605, 264, 749, 13, 311, 220, 17, 281, 749, 13, 520, 279, 5896, 23245, 7301, 4783, 627, 18, 13, 2343, 264, 29804, 11307, 315, 622, 3, 868, 11, 931, 627, 6806, 2893, 264, 22618, 315, 57275, 11, 19504, 304, 57275, 369, 520, 3325, 30335, 4038, 4972, 311, 279, 2457, 315, 29804, 477, 264, 38298, 22618, 889, 706, 594, 4591, 304, 57275, 369, 520, 3325, 30335, 4038, 4972, 311, 279, 29804, 2457, 627, 16648, 279, 79146, 315, 279, 9029, 320, 6219, 14988, 8, 3298, -100 ]
Q: amqp not taking config hash provided I tried to start amqp with the correct amqp credential but it fails. I have started rabbitmq server at port 5678 and I am using amqp gem of version 0.7.0 and I am using ruby-1.9.2 Here are the logs for what I have done in irb ± irb /Users/ckgagan/.rvm/rubies/ruby-1.9.2-p320/bin/irb:4: warning: Insecure world writable dir /usr/local/bin in PATH, mode 040777 1.9.2-p320 :001 > require 'mq' => true 1.9.2-p320 :002 > AMQP.start({"host"=>"localhost", "port"=>5678, "user"=>"username", "password"=>"password"}) do 1.9.2-p320 :003 > puts "hello" 1.9.2-p320 :004?> end AMQP::Error: Could not connect to server 127.0.0.1:5672 from /Users/ckgagan/.rvm/gems/ruby-1.9.2-p320@my_gemset/gems/amqp-0.7.0/lib/amqp/client.rb:76:in `block in initialize' from /Users/ckgagan/.rvm/gems/ruby-1.9.2-p320@my_gemset/gems/amqp-0.7.0/lib/amqp/client.rb:107:in `call' from /Users/ckgagan/.rvm/gems/ruby-1.9.2-p320@my_gemset/gems/amqp-0.7.0/lib/amqp/client.rb:107:in `block in unbind' from /Users/ckgagan/.rvm/gems/ruby-1.9.2-p320@my_gemset/gems/eventmachine-1.0.0/lib/eventmachine.rb:959:in `call' from /Users/ckgagan/.rvm/gems/ruby-1.9.2-p320@my_gemset/gems/eventmachine-1.0.0/lib/eventmachine.rb:959:in `block in run_deferred_callbacks' from /Users/ckgagan/.rvm/gems/ruby-1.9.2-p320@my_gemset/gems/eventmachine-1.0.0/lib/eventmachine.rb:956:in `times' from /Users/ckgagan/.rvm/gems/ruby-1.9.2-p320@my_gemset/gems/eventmachine-1.0.0/lib/eventmachine.rb:956:in `run_deferred_callbacks' from /Users/ckgagan/.rvm/gems/ruby-1.9.2-p320@my_gemset/gems/eventmachine-1.0.0/lib/eventmachine.rb:187:in `run_machine' from /Users/ckgagan/.rvm/gems/ruby-1.9.2-p320@my_gemset/gems/eventmachine-1.0.0/lib/eventmachine.rb:187:in `run' from /Users/ckgagan/.rvm/gems/ruby-1.9.2-p320@my_gemset/gems/amqp-0.7.0/lib/amqp.rb:81:in `start' from (irb):2 from /Users/ckgagan/.rvm/rubies/ruby-1.9.2-p320/bin/irb:16:in `<main>' Even though I tried to connect Rabbitmq server at 5678, its trying to connect to default port Could not connect to server 127.0.0.1:5672 Why is it trying to connect to port 5672 even though I specified port 5678? I am unable to figure this out and stuck here Thanks A: The AMQP configuration hash takes symbols as keys, not strings. require "amqp" AMQP.start({:host => "localhost", :port => 5678}) do puts "hello" end Also, you might want to consider upgrading to a more recent version of the gem. The CHANGELOG for 0.7 to 0.9.x or 1.0.0 is a couple of pages long.
{ "redpajama_set_name": "RedPajamaStackExchange" }
3,720
[ 128000, 48, 25, 1097, 33863, 539, 4737, 2242, 5286, 3984, 358, 6818, 311, 1212, 1097, 33863, 449, 279, 4495, 1097, 33863, 41307, 719, 433, 14865, 13, 358, 617, 3940, 39824, 28774, 3622, 520, 2700, 220, 19282, 23, 323, 358, 1097, 1701, 1097, 33863, 19269, 315, 2373, 220, 15, 13, 22, 13, 15, 323, 358, 1097, 1701, 46307, 12, 16, 13, 24, 13, 17, 198, 8586, 527, 279, 18929, 369, 1148, 358, 617, 2884, 304, 6348, 65, 198, 38121, 6348, 65, 198, 98921, 14, 377, 70, 18851, 12196, 81, 7488, 7534, 392, 552, 7534, 20629, 12, 16, 13, 24, 13, 17, 2320, 9588, 8923, 14, 404, 65, 25, 19, 25, 10163, 25, 763, 26189, 1917, 47005, 5534, 611, 7208, 23066, 8923, 304, 27871, 11, 3941, 220, 12505, 15831, 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 ]
[ 48, 25, 1097, 33863, 539, 4737, 2242, 5286, 3984, 358, 6818, 311, 1212, 1097, 33863, 449, 279, 4495, 1097, 33863, 41307, 719, 433, 14865, 13, 358, 617, 3940, 39824, 28774, 3622, 520, 2700, 220, 19282, 23, 323, 358, 1097, 1701, 1097, 33863, 19269, 315, 2373, 220, 15, 13, 22, 13, 15, 323, 358, 1097, 1701, 46307, 12, 16, 13, 24, 13, 17, 198, 8586, 527, 279, 18929, 369, 1148, 358, 617, 2884, 304, 6348, 65, 198, 38121, 6348, 65, 198, 98921, 14, 377, 70, 18851, 12196, 81, 7488, 7534, 392, 552, 7534, 20629, 12, 16, 13, 24, 13, 17, 2320, 9588, 8923, 14, 404, 65, 25, 19, 25, 10163, 25, 763, 26189, 1917, 47005, 5534, 611, 7208, 23066, 8923, 304, 27871, 11, 3941, 220, 12505, 15831, 198, -100 ]
Join Over 60,897 Customers Since 2009. Get started in 60 seconds! SoundCloud plays are the key to your promotion. The great amount of plays arouses interest to your music, so it makes lots of people listen to it as well. Enhance your audience.! Gain SoundCloud likes for your music. The huge quantity of your likes serves as an incentive for users to listen to your music and become your fans afterwards. Buy SoundCloud downloads. Let many people enjoy your music not only online but offline as well. It´s a wonderful chance to fulfill your dreams of popularity. Want to become a SoundCloud star? You may achieve your goal adding followers to your account. Buy SoundCloud followers; make your music sound everywhere! SoundCloud reposts will not only help you to get information about the number of your listeners, but also expand the limits of your popularity. Each repost gains fans. There are several noteworthy reasons to buy SoundCloud plays. Expanding the frames of your audience. Making your music go viral. Making your music sound everywhere. Want to gain popularity instantly? Want to know how to get more plays on Soundcloud? We are here to help you to achieve your goal. You simply have to choose the package that suits best to your social media marketing needs. Then you have just to sit and follow the immediate increase of your SoundCloud plays, downloads or reposts which are key to your success. Your SoundCloud account is safe with us. Whenever providing SoundCloud services we take into deep consideration all the instructions and guidelines included in SoundCloud policy. So, feel sure that your account will never be blocked or suspended. The fun and pleasure of being a successful musician is a result of hard work and efforts. After creating music, then it becomes twice difficult with delivering it to those who will greatly appreciate and enjoy it. So, musicians can also be related to as businessmen of their kind because they will have to find appropriate ways to promote their music and gain audiences. You compose great music, express yourself with it; you have something to tell people, and what you still lack is the huge audience that you truly deserve. To solve these, problems people turn to one of the most sought-after ways – internet marketing through popular social media platforms. In this case, we are mainly talking about SoundCloud - the most suitable way for you to share your music with the world and connect with audiences and fans. This popular social media site is designed to make your songs be heard and shared by the target audience thus getting more people listening to your tracks. The core of gaining popularity via SoundCloud is to receive as many SounCloud plays as possible, which can be done using some other social media sites. You can share a new Soundcloud track on your Facebook fan page, tweet your new track to get more Soundcloud plays and also be sure to add as many Soundcloud tags as you can. However, after implementing so many tasks you might still feel you don't get enough plays and what we offer in this case is to buy Soundcloud plays and spread your voice around the world. You don't need to wait for a long time for your potential fans to discover you, be the first to let them know and hear about you and grow your fanbase by ensuring that your music gets the exposure it deserves. Just make sure that the company or service selling plays to you is credible and is worth trusting because your future career and activities highly depend on how they manage their tasks and meet your expectations. Damn, you're awesome guys. A bunch of followers just in a few days. I'm shocked. You made my day. I'm as happy as a clam. With GetFastSoundcloudPlays, I became a real star on SoundCloud. I enlarged my audience and even got some interesting suggestions from famous producers. We have great results from this deal and all this due to the great service of GetFast Team. I wanna thank not for the in time delivery and great increase in plays but for the special attitude of the customer service. Yeah, you did it. You took your time and some valuable advice that was a great help for me. And I appreciate it much. Our band releases stereo music for about 11 years. And in spite of the great popularity we needed some assistance in online promotion. This service helped us to gain not only new fans but also enjoy a huge wave of popularity. The guys from getfastsoundcloudplays.com made my crazy tunes audible in all over the world. What I like the most in this service is the combination of all Soundcloud services in one place. I don't need to search for separate services to get likes, comments and plays. Everything is available here. No doubt that this is one of the most successful websites, that provides effective services for online promotion. I could get promoted through SoundCloud buying followers from GetFastSoundcloudPlays. We are not a newcomer in this field: our downs and ups made our team experienced and knowledgeable enough to promise you the best result! This is another test post.
{ "redpajama_set_name": "RedPajamaC4" }
623
[ 128000, 12572, 6193, 220, 1399, 11, 24777, 40689, 8876, 220, 1049, 24, 13, 2175, 3940, 304, 220, 1399, 6622, 4999, 16493, 16440, 11335, 527, 279, 1401, 311, 701, 20862, 13, 578, 2294, 3392, 315, 11335, 66208, 9459, 2802, 311, 701, 4731, 11, 779, 433, 3727, 10283, 315, 1274, 9020, 311, 433, 439, 1664, 13, 29757, 685, 701, 10877, 13, 4999, 59711, 14936, 16440, 13452, 369, 701, 4731, 13, 578, 6908, 12472, 315, 701, 13452, 17482, 439, 459, 36210, 369, 3932, 311, 9020, 311, 701, 4731, 323, 3719, 701, 7359, 27905, 627, 17940, 14936, 16440, 31572, 13, 6914, 1690, 1274, 4774, 701, 4731, 539, 1193, 2930, 719, 27258, 439, 1664, 13, 1102, 56476, 264, 11364, 6140, 311, 21054, 701, 19226, 315, 23354, 627, 29923, 311, 3719, 264, 14936, 16440 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 12572, 6193, 220, 1399, 11, 24777, 40689, 8876, 220, 1049, 24, 13, 2175, 3940, 304, 220, 1399, 6622, 4999, 16493, 16440, 11335, 527, 279, 1401, 311, 701, 20862, 13, 578, 2294, 3392, 315, 11335, 66208, 9459, 2802, 311, 701, 4731, 11, 779, 433, 3727, 10283, 315, 1274, 9020, 311, 433, 439, 1664, 13, 29757, 685, 701, 10877, 13, 4999, 59711, 14936, 16440, 13452, 369, 701, 4731, 13, 578, 6908, 12472, 315, 701, 13452, 17482, 439, 459, 36210, 369, 3932, 311, 9020, 311, 701, 4731, 323, 3719, 701, 7359, 27905, 627, 17940, 14936, 16440, 31572, 13, 6914, 1690, 1274, 4774, 701, 4731, 539, 1193, 2930, 719, 27258, 439, 1664, 13, 1102, 56476, 264, 11364, 6140, 311, 21054, 701, 19226, 315, 23354, 627, 29923, 311, 3719, 264, 14936, 16440, -100 ]
Watch this movie about the World's Biggest Bats with your partner. When you are done watching it please answer the questions in the box to the right. You can watch the video again. You start it by clicking on the sideways triangle under the movie to the left and pause it by clicking on the two lines that you can see at the bottom left while the movie is playing. You can rewind it by dragging the circle underneath it back to the left. Click on the link below called Bat Worksheet. When the window opens with the worksheet, move your mouse to the bottom of the screen and click on the printer icon at the bottom on the right. Your worksheet should print at the printer near my desk. Once your worksheet has printed, put your names on it. Use the links in the box to the right to answer the questions. Please answer the questions in full sentences. Full sentences begin with a capital letter and end with a period. After printing out the worksheet in the box to the left, you and your partner will use the links below to find the answers to the questions. When you finish the worksheet, you may visit the links in the Fun Bat Stuff box while classmates finish their worksheets. Once you have finished the worksheet you may go to these websites for some fun activities while classmates finish the worksheet. Open the pdf to view all the standards addressed in this lesson.
{ "redpajama_set_name": "RedPajamaC4" }
1,190
[ 128000, 14581, 420, 5818, 922, 279, 4435, 596, 86621, 426, 1900, 449, 701, 8427, 627, 4599, 499, 527, 2884, 10307, 433, 4587, 4320, 279, 4860, 304, 279, 3830, 311, 279, 1314, 627, 2675, 649, 3821, 279, 2835, 1578, 13, 1472, 1212, 433, 555, 18965, 389, 279, 74829, 22217, 1234, 279, 5818, 311, 279, 2163, 323, 18579, 433, 555, 18965, 389, 279, 1403, 5238, 430, 499, 649, 1518, 520, 279, 5740, 2163, 1418, 279, 5818, 374, 5737, 13, 1472, 649, 78765, 433, 555, 43476, 279, 12960, 30456, 433, 1203, 311, 279, 2163, 627, 2677, 389, 279, 2723, 3770, 2663, 16488, 83731, 627, 4599, 279, 3321, 16264, 449, 279, 37736, 11, 3351, 701, 8814, 311, 279, 5740, 315, 279, 4264, 323, 4299, 389, 279, 23185, 4706, 520, 279, 5740, 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 ]
[ 14581, 420, 5818, 922, 279, 4435, 596, 86621, 426, 1900, 449, 701, 8427, 627, 4599, 499, 527, 2884, 10307, 433, 4587, 4320, 279, 4860, 304, 279, 3830, 311, 279, 1314, 627, 2675, 649, 3821, 279, 2835, 1578, 13, 1472, 1212, 433, 555, 18965, 389, 279, 74829, 22217, 1234, 279, 5818, 311, 279, 2163, 323, 18579, 433, 555, 18965, 389, 279, 1403, 5238, 430, 499, 649, 1518, 520, 279, 5740, 2163, 1418, 279, 5818, 374, 5737, 13, 1472, 649, 78765, 433, 555, 43476, 279, 12960, 30456, 433, 1203, 311, 279, 2163, 627, 2677, 389, 279, 2723, 3770, 2663, 16488, 83731, 627, 4599, 279, 3321, 16264, 449, 279, 37736, 11, 3351, 701, 8814, 311, 279, 5740, 315, 279, 4264, 323, 4299, 389, 279, 23185, 4706, 520, 279, 5740, 389, -100 ]
Travellers ensure hundreds of disadvantaged children have a present this Christmas "For the glory of God," says born again Christian Bobby Butcher as he starts a Traveller toy nomination challenge as Travellers fill a high top Transit van "to the roof" with Christmas presents for children's charities Travellers from Surrey have clubbed together to buy hundreds of toys for Christmas presents for disadvantaged and poor children, filling a high top Transit van "to the roof", sparking off another Traveller nomination challenge. The challenge – this time for toys for children's charities - was started by Guildford based Traveller Bobby Butcher, inspired by his faith, his upbringing and by the Food Bank Nomination challenge started in County Durham by his friend Watson Harrop Jr that has swept the UK and abroad. In a video shared on FB that received 10k views in 3 hours, Bobby Butcher urged Travellers to get behind the challenge to buy Christmas presents for children whose parents could not afford to do so. "We've filled their bellies, now let's keep this chain going," said Bobby Butcher, who has been born again for four years and belongs to the Light and Life, a Gypsy-led evangelical Christian movement founded by 'elder' Jackie Boyd in 1983, that has swept through the Traveller community in the past couple of decades. Within 24 hours of Bobby Butcher's challenge, a group of 23 Traveller men, armed with thousands of pounds of donations from the Travelling community, including born again Christians, Christians and non-believers, met outside Smyths Toys in Slough. Staff at the big toy warehouse helped the men to fill 26 trolleys with toys for children of all ages, Bobby Butcher told the Traveller's Times. "Jesus said it is better to give than receive," said Bobby Butcher, adding that as well as being inspired by his faith, his parents had brought him up to help others not as fortunate as himself. As the Traveller men were paying for the toys at the checkouts, helped by Smyths Toys staff, they received a surprise visit from the police! "I think someone panicked and called them," laughs Bobby Butcher. "They had probably never seen anything like it before." "The police where fine, they worked out that it was for charity and soon left saying they were off to fight some real crime." Outside in the carpark the Travellers then filled a high top Transit van with the toys that they had brought and then set off to donate their haul to local children's charities. Kids, a national charity supporting thousands of children and young people, received one donation of hundreds of toys. Shooting Star Chase, a leading children's hospice charity caring for babies, children and young people with life-limiting conditions, were next on the list for the Transit van Christmas express. Shooting Star Chase "The staff at both charities were overjoyed," said Bobby Butcher. "The children at Shooting Stars painted us a picture to say thanks." "I want to also say thanks to all the people who took part and donated, but I want to give God all the glory and the credit," added Bobby Butcher. The Travellers have already started receiving heart warming messages of thanks from the parents of children they have helped. Writing on behalf of her little girl Lizzy-Rose, 4, who had tragically lost her Dad, her mother told the Travellers that money was "tight because of benefit changes" and she would be forever in their debt. "I will be forever in your debt in my life for you to help my little girl smile again and know that her father touch the hearts of others and may god carry her along her long life ahead of her to provide her with the love they provide," wrote Izzy-Rose's mother. There would be so many wishes I would love to complete for princess which was her fathers requests through life but he was so sadly snatched away from us that our world has fallen apart." By TT News (All images and videos courtesy of Bobby Butcher) 2Traveller Pride Christmas Card scheme relaunches, with the Home Secretary top of the list! 5Romany man to take part in six day motorcycle marathon to raise money for NHS
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,983
[ 128000, 1305, 402, 25812, 6106, 11758, 315, 80947, 2911, 617, 264, 3118, 420, 10280, 198, 57741, 279, 27025, 315, 4359, 1359, 2795, 9405, 1578, 9052, 38481, 2030, 9211, 439, 568, 8638, 264, 43359, 7218, 22068, 29804, 8815, 439, 43359, 25812, 5266, 264, 1579, 1948, 46955, 5355, 330, 998, 279, 15485, 1, 449, 10280, 18911, 369, 2911, 596, 51371, 198, 1305, 402, 25812, 505, 68064, 617, 6469, 2788, 3871, 311, 3780, 11758, 315, 23939, 369, 10280, 18911, 369, 80947, 323, 8009, 2911, 11, 21973, 264, 1579, 1948, 46955, 5355, 330, 998, 279, 15485, 498, 100082, 1022, 2500, 43359, 7218, 29804, 8815, 627, 791, 8815, 1389, 420, 892, 369, 23939, 369, 2911, 596, 51371, 482, 574, 3940, 555, 33592, 8350, 3196, 43359, 7218, 38481, 2030, 9211, 11, 14948, 555, 813 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1305, 402, 25812, 6106, 11758, 315, 80947, 2911, 617, 264, 3118, 420, 10280, 198, 57741, 279, 27025, 315, 4359, 1359, 2795, 9405, 1578, 9052, 38481, 2030, 9211, 439, 568, 8638, 264, 43359, 7218, 22068, 29804, 8815, 439, 43359, 25812, 5266, 264, 1579, 1948, 46955, 5355, 330, 998, 279, 15485, 1, 449, 10280, 18911, 369, 2911, 596, 51371, 198, 1305, 402, 25812, 505, 68064, 617, 6469, 2788, 3871, 311, 3780, 11758, 315, 23939, 369, 10280, 18911, 369, 80947, 323, 8009, 2911, 11, 21973, 264, 1579, 1948, 46955, 5355, 330, 998, 279, 15485, 498, 100082, 1022, 2500, 43359, 7218, 29804, 8815, 627, 791, 8815, 1389, 420, 892, 369, 23939, 369, 2911, 596, 51371, 482, 574, 3940, 555, 33592, 8350, 3196, 43359, 7218, 38481, 2030, 9211, 11, 14948, 555, 813, -100 ]
Morning Headlines Bowen says RBA could cut rates more The new Rudd government is counting on interest rate cuts by the Reserve Bank of Australia to protect the economy from further falls in commodity prices and global turmoil. The Fin Rudd opens door to Gonski shift KevinRudd has left open the possibility of substantially changing the style and timetable for the Gonski education funding changes after a private meeting with the non-government school sector. The Aus FMG gets plant reprieve The WA government has given Andrew Forrest's Fortescue Metals Group a three-year extension on obligations to develop a secondary processing plant in the Pilbara, prompting renewed debate about whether miners should be forced to be manufacturers. The West Ore shipments surge despite China concerns The world's largest bulk export port, Port Hedland, said yesterday it handled a record 288 million tonnes of iron ore last year as mining companies continued to boost their output despite mounting concerns over weaker prices and China's economic slowdown. The Aus Search for partner to build hotel in Karratha The state government is searching for a new partner to build and operate a premium hotel in Karratha after property developer Mirvac withdrew from the project following last year's corporate restructuring in which it sold its hotel division. The West Top Resources Headlines Wright to revise Pilbara claim Gina Rinehart's Hancock Prospecting has dented a bid by rival mining dynasty Wright Prospecting to claim part-ownership over lucrative Pilbara iron ore tenements. The Fin BHP sees productivity gains BHP Billiton iron ore boss Jimmy Wilson has conceded that major rival Rio Tinto is well ahead of its in some aspects of high-tech mining innovation, but says BHP will lift its use of cutting edge technology in order to wring productivity gains from its mining operations. The West Gindalbie puts happy spin on sales Gindalbie Metals managing director Tim Netscher says a move to allow the market to set a price for ore from its Karara mine is a "bit of a risk", but he is confident steelmakers will pay a premium for magnetite concentrate. The West Top Politics Headlines Kevin Rudd has left open the possibility of substantially changing the style and timetable for the Gonski education funding changes after a private meeting with the non-government school sector. The Aus Labor lawyer seeks run for Smith's seat Perth lawyer and long-time Labor member Mattherw Keogh yesterday declared his hand for the federal seat of Perth as Stephen Smith said he would give "110 per cent" support to whichever candidate was selected. The West Fraser to campaign for the Greens Former Liberal prime minister Malcolm Fraser will campaign in Adelaide this weekend to stop Tony Abbott securing what he had in the 1970s: control of the Senate. The Fin Bowen stands by budget and surplus plans Treasurer Chris Bowen declared that he stands by his predecessor's budget, but not before Kevin Rudd and other ministers raised the prospect of blowing out Australia's deficit by amending politically damaging policies. The Fin Top Property Headlines Scaffidi blasts 'measly' funding Lord Mayor Lisa Scaffidi says Perth will continue to miss out on its fair share of Commonwealth funding unless the city's borders are expanded, after the WA capital received just $57,000 from a $150 million federal pool. The West Group fitness at a cost in Cott Cottesloe is set to become the latest council to introduce a paid permit system for personal trainers and group fitness instructors who use public parks and reserves. The West Page 1: Perth hospitals have been forced to install extra power points and emergency bells in ward corridors to cope with having more patients than beds. Corrective Services Minister Joe Francis was warned in writing six weeks ago that sensitive documents had been leaked from within the department's internal investigations unit and that corruption, intimidation and incompetence were rife in the prisons agency. Page 5: Perth's dams have almost stopped supplying the city and broader south west earlier than predicted five years ago in a worst-case scenario. Page 6: Perth lawyer and long-time Labor member Matthew Keogh yesterday declared his hand for the federal seat of Perth as Stephen Smith said he would give "110 per cent" support to whichever candidate was selected. Page 7: Cottesloe is set to become the latest council to introduce a paid permit system for personal trainers and group fitness instructors who use public parks and reserves. Page 9: WA's fire chief has predicted some local governments will offload responsibility for volunteer bushfire brigades to his Department of Fire and Emergency Services in a move likely to divide volunteers and split councils. Page 10: The new, merged board that will oversee the operations of WA's state-owned electricity retail and generation companies contains just one holdover from Verve Energy in the wake of the Muja AB debacle. Page 11: Lord Mayor Lisa Scaffidi says Perth will continue to miss out on its fair share of Commonwealth funding unless the city's borders are expanded, after the WA capital received just $57,000 from a $150 million federal pool. Page 12: New federal Treasurer Chris Bowen has a $1 billion headache, with the budget taking a blow even before the government implements any costly changes to win back voters. Page 13: Gina Rinehart's bid to track down the sources of two of Australia's top journalists faces a new challenge under international arbitration laws. Page 14: WA's Small Business Commissioner has urged small business owners to be cautious when signing a lease, days after it was revealed a swag of Coventry Village shop owners had been sued for walking away from their stores. Business: The WA government has given Andrew Forrest's Fortescue Metals Group a three-year extension on obligations to develop a secondary processing plant in the Pilbara, prompting renewed debate about whether miners should be forced to be manufacturers. BHP Billiton iron ore boss Jimmy Wilson has conceded that major rival Rio Tinto is well ahead of its in some aspects of high-tech mining innovation, but says BHP will lift its use of cutting edge technology in order to wring productivity gains from its mining operations. Gindalbie Metals managing director Tim Netscher says a move to allow the market to set a price for ore from its Karara mine is a "bit of a risk", but he is confident steelmakers will pay a premium for magnetite concentrate. A federal government contract to build an offshore asylum seeker centre has given Decmil Group a shot in the arm – and exposure beyond the resources sector. The heirs of Lang Hancock's late prospecting partner Peter Wright have been sent back to the drawing board in a campaign to secure a 25 per cent stake in the rich Hope Downs 4 iron ore mine. Animal rights activists have attempted to cripple the WA pork industry by approaching supermarket giant Coles with illegally filmed images after a break-in at a local piggery. The state government is searching for a new partner to build and operate a premium hotel in Karratha after property developer Mirvac withdrew from the project following last year's corporate restructuring in which it sold its hotel division. Page 1: NSW Premier Barry O'Farrell urged Prime Minister Kevin Rudd to show he is serious about repairing relations with the business sector by honouring an abandoned Labor promise to streamline the environmental approvals process for major projects. Nine Entertainment Co is poised to control television stations in all the mainland capital cities for the first time in its 57-year history after exercising a right to buy the Perth operations from Bruce Gordon's WIN Corp. One of the most effective corporate managers in Australian history, John Grill, believes many of the big budget blowouts on major projects were made worse by inadequate leadership. Page 3: The new Rudd government is counting on interest rate cuts by the Reserve Bank of Australia to protect the economy from further falls in commodity prices and global turmoil. Page 4: Former Liberal prime minister Malcolm Fraser will campaign in Adelaide this weekend to stop Tony Abbott securing what he had in the 1970s: control of the Senate. Page 5: Asylum seekers will be just one element of an explosive agenda when Kevin Rudd visits Indonesia on Friday, with the Prime Minister keen to focus on expanding trade and investment between the two countries. Page 6: Treasurer Chris Bowen declared that he stands by his predecessor's budget, but not before Kevin Rudd and other ministers raised the prospect of blowing out Australia's deficit by amending politically damaging policies. Page 7: Former West Australian Labor minister Alannah MacTiernan has emerged as the favourite to be chosen as the Labor candidate for the seat of Perth if she chooses to run. Page 9: Infrastructure Australia has listed 34 projects that meet priority criteria on its annual list, with an estimated value of up to $27 billion. Gina Rinehart's Hancock Prospecting has dented a bid by rival mining dynasty Wright Prospecting to claim part-ownership over lucrative Pilbara iron ore tenements. Page 14: The number of people entering Australia on 457 temporary skilled worker visas could be cut if better training was available to the domestic workforce, WorleyParsons chairman John Grill has said. Page 17: In an apparent blow to the Northern Territory's nascent shale exploration sector, US independent Hess Corporation has walked away from its drilling venture in the Beetaloo Basin – but former partner Falcon Oil & Gas is pointing to interest from larger companies. BHP Billiton is looking at increasing investment in leading-edge mine technology to bring it more in line with rival Rio Tinto and achieve productivity gains that will help offset softening commodity prices. Page 19: NSW's largest electricity producer, Macquarie Generation, intends to cut its $630 millon annual carbon bill by about a tenth by hosting a $140 million plan that will turn carbon waste into diesel and jet fuel. Iron ore shipments from the world's biggest bulk terminal at Port Hedland have declined from record levels last month. Page 1: Kevin Rudd has left open the possibility of substantially changing the style and timetable for the Gonski education funding changes after a private meeting with the non-government school sector. Unions will seek to extend full adult pay rates to teenage workers across the economy if a retail industry test case before the Fair Work Commission is successful. The revival of Australia's stricken $500 million live cattle export trade with Indonesia will be a key agenda item in talks between Kevin Rudd and Susilo Bambang Yudhoyono on Friday aimed at boosting the business relationship between the two countries. Page 2: The prospect of a successful referendum for the constitutional recognition of local government has been dealt a significant blow, with the Coalition cooling its support for the change. The Reserve Bank hopes and expects the Australian dollar will fall further in coming months, which could spell the end of interest rate cuts. Just four of the major projects pitched by the states for federal money have been identified by Kevin Rudd's infrastructure tsar as ready to proceed, sparking fresh calls for both main parties to focus on easing bottlenecks before the election. Page 4: Kevin Rudd's new government is modelling options to provide more financial assistance to single parents, as senior frontbenchers argue that they must be given immediate priority for a welfare boost ahead of other unemployed Australians. Billionaire Clive Palmer has declared he will not pay a $6.2 million penalty imposed by the federal government for flouting the law on the carbon tax because he disagrees with the tax and is challenging its validity in the High Court. Business: The Australian stockmarket has started the new financial year with an extraordinary bout of volatility, as local blue chip shares reversed swinging losses on Monday to yesterday post the biggest one-day gain in almost two years. National Australia Bank has signalled more jobs may be lost as it attacks costs to protect profits amid sluggish revenue growth. The world's largest bulk export port, Port Hedland, said yesterday it handled a record 288 million tonnes of iron ore last year as mining companies continued to boost their output despite mounting concerns over weaker prices and China's economic slowdown. BHP Billiton's growing embrace of automation could accelerate the miner's switch away from contractors, the head of the company's iron ore division has indicated. The federal government's controversial Manus Island detention centre in Papua New Guinea has proved a boon for construction company Decmil, with the Perth-based group winning a $137 million contract to build a village at the site. Key National Broadband Network construction partner Service Stream is slashing as many as 100 jobs from its books as the company attempts to reassert control over tumbling profits thanks to its faltering NBN joint venture. Australia is on track to beat its own target and attract one million Chinese visitors by the end of the decade, as it capitalises on the world's fastest growing economy and tourism market. Oil and gas major Shell plans to build more floating LNG plants after developing its world-first Prelude project off the coast of Western Australia. PAGE 1 - Following RBA's announcement of further rate cuts, Treasurer Chris Bowen has warned of an uncertain economic outlook. PAGES 2-5 - HaissamSafetli, who pleaded guilty to the murder of businessman Michael McGurk in 2009, has revealed that Christopher Estephan was the hit-man who actually shot McGurk. Gillian Mitchell, the director of a cancer centre in Sydney, has cited unavailability of testing for a rare mutation of the BRCA1 and BRCA2 gene before 1997 as the cause of the death of Pierce Brosnan's daughter. The final report on casino operators Crown and Echo Entertainment will be submitted by David Murray to Premier Barry O'Farrell for consideration by the Cabinet. BUSINESS - The possibility of further rate cuts by the RBA has resulted in the Australian stock market posting its biggest gain in 19 months. SPORT - The Australian Rugby Union is crying foul over the nine-day controversial trial and re-trial on charges of stamping and subsequent exoneration of Wallabies captain James Horwill. PAGE 1 - Five members of a syndicate have been arrested for operating an illegal brothel across Melbourne. PAGES 2-5 - As part of the reforms to fight Customs corruption, officers will be forced to change roles regularly. Kidsafe Victoria president Robert Caulfield warns parents about the dangers of button batteries following the death of a 4-year-old Queensland girl. Foreign Minister Bob Carr's claims on economic migrants have been defended by the asylum seekers' former chief. The Australian government says a large number of Iranian asylum seekers are economic migrants and hence their refugee applications are rejected. BUSINESS - Australian shares have closed at a 19-month high with the likelihood of further rate cuts by the RBA in spite of the sharp fall in the Australian dollar. SPORT - Mark Thompson will be interviewed by investigators as part of a joint investigation by the AFL and the Australian Sports Anti-Doping Authority. Fortescue Metals GroupClosing price for the last 90 trading days 1st Fortescue Metals Group $29,640.9m 2nd South32 $7,492.7m 3rd Woodside Petroleum $4,714.4m 4th Northern Star Resources $4,679.8m 5th Mineral Resources $3,978.9m 551 listed resources wa companies ranked by revenue. Business News 30 list sponsored by Exporters list sponsored by Public Companies - Resources WA list sponsored by Fortescue Metals Group Business News 30, Exporters, Miners and Public Companies - Resources WA Perth to host major hydrogen event $50bn project pipeline at risk of blockages Electric overhaul for iron ore rail Ex-Tianqi, FMG execs back lithium aspirant Rio latest on electric train Fortescue buys electric locomotives
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
2,406
[ 128000, 85444, 11452, 8128, 198, 87792, 268, 2795, 432, 7209, 1436, 4018, 7969, 810, 198, 791, 502, 86463, 3109, 374, 26060, 389, 2802, 4478, 15455, 555, 279, 25820, 8715, 315, 8494, 311, 6144, 279, 8752, 505, 4726, 17503, 304, 38983, 7729, 323, 3728, 63355, 13, 578, 5767, 198, 49, 8512, 16264, 6134, 311, 480, 2439, 6780, 6541, 198, 48781, 49, 8512, 706, 2163, 1825, 279, 13336, 315, 32302, 10223, 279, 1742, 323, 67640, 369, 279, 480, 2439, 6780, 6873, 11006, 4442, 1306, 264, 879, 6574, 449, 279, 2536, 46704, 2978, 10706, 13, 578, 20602, 198, 26691, 38, 5334, 6136, 2109, 46104, 198, 791, 29666, 3109, 706, 2728, 13929, 84830, 596, 11246, 3380, 361, 93815, 5856, 264, 2380, 4771, 9070, 389, 30255, 311, 2274, 264, 14580, 8863, 6136, 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 ]
[ 85444, 11452, 8128, 198, 87792, 268, 2795, 432, 7209, 1436, 4018, 7969, 810, 198, 791, 502, 86463, 3109, 374, 26060, 389, 2802, 4478, 15455, 555, 279, 25820, 8715, 315, 8494, 311, 6144, 279, 8752, 505, 4726, 17503, 304, 38983, 7729, 323, 3728, 63355, 13, 578, 5767, 198, 49, 8512, 16264, 6134, 311, 480, 2439, 6780, 6541, 198, 48781, 49, 8512, 706, 2163, 1825, 279, 13336, 315, 32302, 10223, 279, 1742, 323, 67640, 369, 279, 480, 2439, 6780, 6873, 11006, 4442, 1306, 264, 879, 6574, 449, 279, 2536, 46704, 2978, 10706, 13, 578, 20602, 198, 26691, 38, 5334, 6136, 2109, 46104, 198, 791, 29666, 3109, 706, 2728, 13929, 84830, 596, 11246, 3380, 361, 93815, 5856, 264, 2380, 4771, 9070, 389, 30255, 311, 2274, 264, 14580, 8863, 6136, 304, -100 ]
Douglas Howe is the founder and former president of Touchstone, a Seattle-based commercial real estate company. Touchstone's primary activity was the development of urban infill projects; commercial office, technology, biotechnology R&D buildings and business hotels. Touchstone has been a leader in the commercial real estate industry in designing and building high performance, sustainable green buildings. Mr. Howe continues and builds on that tradition under Howe Family Holdings LLC, which currently owns a number of hotels including the Thompson Seattle, and is pursuing new projects in Seattle and Gig Harbor.
{ "redpajama_set_name": "RedPajamaC4" }
3,202
[ 128000, 92741, 27481, 86631, 374, 279, 19533, 323, 4846, 4872, 315, 19898, 11046, 11, 264, 16759, 6108, 8518, 1972, 12675, 2883, 13, 19898, 11046, 596, 6156, 5820, 574, 279, 4500, 315, 16036, 4225, 484, 7224, 26, 8518, 5274, 11, 5557, 11, 6160, 52536, 432, 33465, 14016, 323, 2626, 25325, 13, 19898, 11046, 706, 1027, 264, 7808, 304, 279, 8518, 1972, 12675, 5064, 304, 30829, 323, 4857, 1579, 5178, 11, 22556, 6307, 14016, 13, 4491, 13, 86631, 9731, 323, 22890, 389, 430, 14135, 1234, 86631, 12517, 54642, 15620, 11, 902, 5131, 25241, 264, 1396, 315, 25325, 2737, 279, 26224, 16759, 11, 323, 374, 34118, 502, 7224, 304, 16759, 323, 45234, 40282, 13, 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, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 92741, 27481, 86631, 374, 279, 19533, 323, 4846, 4872, 315, 19898, 11046, 11, 264, 16759, 6108, 8518, 1972, 12675, 2883, 13, 19898, 11046, 596, 6156, 5820, 574, 279, 4500, 315, 16036, 4225, 484, 7224, 26, 8518, 5274, 11, 5557, 11, 6160, 52536, 432, 33465, 14016, 323, 2626, 25325, 13, 19898, 11046, 706, 1027, 264, 7808, 304, 279, 8518, 1972, 12675, 5064, 304, 30829, 323, 4857, 1579, 5178, 11, 22556, 6307, 14016, 13, 4491, 13, 86631, 9731, 323, 22890, 389, 430, 14135, 1234, 86631, 12517, 54642, 15620, 11, 902, 5131, 25241, 264, 1396, 315, 25325, 2737, 279, 26224, 16759, 11, 323, 374, 34118, 502, 7224, 304, 16759, 323, 45234, 40282, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Plant City murder suspect taken into custody in Polk County By Bay News 9 Hillsborough County PUBLISHED April 24, 2014 @9:44 AM The man being sought in Wednesday's Plant City murder has been taken into custody by Polk County deputies. According to the Polk County Sheriff's Office, 21-year-old Master Brown, was spotted, along with two other men, near the Polk-Hillsborough County line. Brown was apprehended. Officials have not said who the other men were. Hillsborough County deputies and Plant City police officers were searching for Brown, the man they say shot and killed a 22-year-old Plant City man Wednesday. According to authorities, two attempts to stop Brown's car early Thursday led to a car chase and crash near Midway Road and Charlie Taylor Road in northeast Plant City. Brown is believed to be the man who shot and killed Ha'keem Alagawam Jackson Cook Wednesday afternoon outside the "The Lot," a convenience store in the Maryland Heights-area of the city. Police said Cook died of severe upper body trauma in the store parking lot. According to officials, Brown ran from the scene after the shooting. The investigation included interviewing several eyewitnesses and examining surveillance video. The search narrowed early Thursday, leading to the chase and crash. Plant City police said Brown, of Lakeland, may have been trying to return to his Lakeland neighborhood. Brown will be booked into the Polk County Jail and may make a first appearance in front of a judge later today. He will then be extradited back to Hillsborough County.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
4,084
[ 128000, 55747, 4409, 10102, 15562, 4529, 1139, 25502, 304, 3735, 74, 6406, 198, 1383, 9332, 5513, 220, 24, 25964, 35179, 6406, 198, 47, 14451, 39979, 5936, 220, 1187, 11, 220, 679, 19, 571, 24, 25, 2096, 6912, 198, 791, 893, 1694, 16495, 304, 8079, 596, 18317, 4409, 10102, 706, 1027, 4529, 1139, 25502, 555, 3735, 74, 6406, 53928, 627, 11439, 311, 279, 3735, 74, 6406, 29783, 596, 8410, 11, 220, 1691, 4771, 6418, 11060, 10690, 11, 574, 30652, 11, 3235, 449, 1403, 1023, 3026, 11, 3221, 279, 3735, 74, 11529, 3385, 35179, 6406, 1584, 13, 10690, 574, 47291, 2954, 13, 64239, 617, 539, 1071, 889, 279, 1023, 3026, 1051, 627, 39, 3385, 35179, 6406, 53928, 323, 18317, 4409, 4379, 9808, 1051, 15389, 369, 10690, 11, 279, 893, 814 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 55747, 4409, 10102, 15562, 4529, 1139, 25502, 304, 3735, 74, 6406, 198, 1383, 9332, 5513, 220, 24, 25964, 35179, 6406, 198, 47, 14451, 39979, 5936, 220, 1187, 11, 220, 679, 19, 571, 24, 25, 2096, 6912, 198, 791, 893, 1694, 16495, 304, 8079, 596, 18317, 4409, 10102, 706, 1027, 4529, 1139, 25502, 555, 3735, 74, 6406, 53928, 627, 11439, 311, 279, 3735, 74, 6406, 29783, 596, 8410, 11, 220, 1691, 4771, 6418, 11060, 10690, 11, 574, 30652, 11, 3235, 449, 1403, 1023, 3026, 11, 3221, 279, 3735, 74, 11529, 3385, 35179, 6406, 1584, 13, 10690, 574, 47291, 2954, 13, 64239, 617, 539, 1071, 889, 279, 1023, 3026, 1051, 627, 39, 3385, 35179, 6406, 53928, 323, 18317, 4409, 4379, 9808, 1051, 15389, 369, 10690, 11, 279, 893, 814, -100 ]
Home Hotels ADARE MANOR AWARDED IGTOA 'PARKLAND COURSE OF THE YEAR' ADARE MANOR AWARDED IGTOA 'PARKLAND COURSE OF THE YEAR' The Ryder Cup venue was recognised at the 22nd Gala Irish Golf Awards The Irish golf industry gathered on Monday evening to celebrate excellence in golf tourism at the National Gala Golf Awards, as Adare Manor was awarded 'IGTOA Parkland Golf Course of the Year'. www.production54.com The 22nd edition of the awards recognised the future Ryder Cup venue's consistently high standards and quality of the course. Following the extensive redevelopment, which was completed in 2018, the parkland course is quickly developing its reputation as being one of the best resorts in the world. Industry figureheads and top players alike, are rich in praise for the Tom Fazio design, in particular, its pristine conditioning. The IGTOA (Ireland Golf Tour Operator Association) represents Ireland's leading Golf Tour Operators as well as the many companies that form the wider Irish Golf Tourism Industry. The 22nd Gala Irish Golf Awards fell on a banner year for Irish golf, in which The Open returned to the island of Ireland for the first time in almost 70 years, with a fairy-tale ending as national hero, Shane Lowry, became Champion Golfer of the Year. Irish golf then enjoyed another spell in the spotlight after Adare Manor was named the 2026 Ryder Cup host venue, meaning the 5-star resort will continue to play a significant role in promoting Irish golf tourism to an international audience. Following the win, Adare Manor CEO, Colm Hannon, commented: "2019 continues to be an incredible year for us at Adare Manor and for Irish golf in general. The IGTOA Irish Golf Awards are a highlight of the Irish golf tourism calendar, and we are thrilled to be recognised as 'Parkland Golf Course of the Year' by experts in the industry. "Our Golf Course Superintendent, Alan MacDonnell, and his team continue to maintain high standards of conditioning on the course; combining the quality of course conditioning with first-class service to all our guests in order to offer a complete golf experience which will leave them with long lasting memories and a desire to return again." The IGTOA embodies Ireland's leading Golf Tour Operators, Golf Courses, Golf Resorts, Accommodation Providers, Transportation Providers and companies who offer supporting services to the Irish golf tourism sector. For more information on IGTOA's and the Gala Irish Golf Awards visit https://igtoa.com/ To find out more about Adare Manor visit www.adaremanor.com or follow @AdareManorHotel (Facebook), @TheAdareManor (Twitter) and @TheAdareManor (Instagram). PRESS RELEASE C/O; Murray Group Previous articleSunderland of Scotland Joins Glenmuir Family Next articleDG South Africa 2020 BRS Golf, part of NBC Sports Next, acquires Albatros Datenservice and Digital Golf Solutions Algarve's Portugal Masters puts a spring in the step for European... New Madeira Golf Classic to blossom with Palheiro Golf Packages
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
1,606
[ 128000, 7778, 45871, 9827, 4577, 26819, 878, 34438, 946, 11749, 47280, 5319, 32, 364, 47, 9272, 40915, 54548, 937, 3083, 3247, 52005, 1270, 1846, 4577, 26819, 878, 34438, 946, 11749, 47280, 5319, 32, 364, 47, 9272, 40915, 54548, 937, 3083, 3247, 52005, 1270, 791, 89123, 11098, 22150, 574, 39764, 520, 279, 220, 1313, 303, 76541, 18088, 28131, 23488, 198, 791, 18088, 19665, 5064, 20802, 389, 7159, 11714, 311, 18890, 38656, 304, 19665, 32083, 520, 279, 5165, 76541, 28131, 23488, 11, 439, 2467, 548, 71051, 574, 22034, 364, 1953, 5319, 32, 5657, 1974, 28131, 17026, 315, 279, 9941, 24482, 2185, 69580, 4370, 916, 198, 791, 220, 1313, 303, 14002, 315, 279, 23146, 39764, 279, 3938, 89123, 11098, 22150, 596, 21356, 1579, 10886, 323, 4367, 315, 279, 3388, 13, 23548 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 45871, 9827, 4577, 26819, 878, 34438, 946, 11749, 47280, 5319, 32, 364, 47, 9272, 40915, 54548, 937, 3083, 3247, 52005, 1270, 1846, 4577, 26819, 878, 34438, 946, 11749, 47280, 5319, 32, 364, 47, 9272, 40915, 54548, 937, 3083, 3247, 52005, 1270, 791, 89123, 11098, 22150, 574, 39764, 520, 279, 220, 1313, 303, 76541, 18088, 28131, 23488, 198, 791, 18088, 19665, 5064, 20802, 389, 7159, 11714, 311, 18890, 38656, 304, 19665, 32083, 520, 279, 5165, 76541, 28131, 23488, 11, 439, 2467, 548, 71051, 574, 22034, 364, 1953, 5319, 32, 5657, 1974, 28131, 17026, 315, 279, 9941, 24482, 2185, 69580, 4370, 916, 198, 791, 220, 1313, 303, 14002, 315, 279, 23146, 39764, 279, 3938, 89123, 11098, 22150, 596, 21356, 1579, 10886, 323, 4367, 315, 279, 3388, 13, 23548, -100 ]
I have been undergoing treatment for cervicogenic headache under Emily Heah. My quality of life had heavily deteriorated. I started the physiotherapy sessions in December end. There was a dramatic improvement in my headaches after about three sessions. Emily advised me to do some neck exercises on a regular basis. The team of therapists at Core Concepts are very friendly and dedicated in their approach. My condition has improved considerably and I am able to carry out my normal activities. I am extremely grateful to Emily Heah and Core Concepts.
{ "redpajama_set_name": "RedPajamaC4" }
4,661
[ 128000, 40, 617, 1027, 47397, 6514, 369, 52664, 292, 29569, 47846, 1234, 35266, 1283, 1494, 13, 3092, 4367, 315, 2324, 1047, 17345, 39436, 660, 13, 358, 3940, 279, 4571, 822, 46755, 16079, 304, 6790, 842, 13, 2684, 574, 264, 22520, 16048, 304, 856, 55403, 1306, 922, 2380, 16079, 13, 35266, 26160, 757, 311, 656, 1063, 13272, 23783, 389, 264, 5912, 8197, 13, 578, 2128, 315, 68616, 520, 9708, 76872, 527, 1633, 11919, 323, 12514, 304, 872, 5603, 13, 3092, 3044, 706, 13241, 33452, 323, 358, 1097, 3025, 311, 6920, 704, 856, 4725, 7640, 13, 358, 1097, 9193, 26259, 311, 35266, 1283, 1494, 323, 9708, 76872, 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 ]
[ 40, 617, 1027, 47397, 6514, 369, 52664, 292, 29569, 47846, 1234, 35266, 1283, 1494, 13, 3092, 4367, 315, 2324, 1047, 17345, 39436, 660, 13, 358, 3940, 279, 4571, 822, 46755, 16079, 304, 6790, 842, 13, 2684, 574, 264, 22520, 16048, 304, 856, 55403, 1306, 922, 2380, 16079, 13, 35266, 26160, 757, 311, 656, 1063, 13272, 23783, 389, 264, 5912, 8197, 13, 578, 2128, 315, 68616, 520, 9708, 76872, 527, 1633, 11919, 323, 12514, 304, 872, 5603, 13, 3092, 3044, 706, 13241, 33452, 323, 358, 1097, 3025, 311, 6920, 704, 856, 4725, 7640, 13, 358, 1097, 9193, 26259, 311, 35266, 1283, 1494, 323, 9708, 76872, 13, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Q: wp.media Uncaught TypeError: Cannot read properties of undefined (reading 'state') Here in a JS class, I used "wp.media" to upload images. I can open the media popup by clicking a button. But getting this error (Uncaught TypeError: Cannot read properties of undefined (reading 'state')) while submitting the image. constructor ( btn ) { super(); this.uploaderBtn = $( btn ); this.mediaFrame; this.events(); } events () { this.uploaderBtn.on( 'click', this.upload.bind( this ) ); } upload ( e ) { e.preventDefault(); //If the uploader object has already been created, reopen the dialog if ( this.mediaFrame ) { this.mediaFrame.open(); return; } //Extend the wp.media object this.mediaFrame = wp.media.frames.file_frame = wp.media({ title: 'Choose Image', button: { text: 'Choose Image' }, multiple: true }); this.mediaFrame.on('select', function() { const selection = this.mediaFrame.state().get('selection'); console.log( selection ); }); this.mediaFrame.open(); }
{ "redpajama_set_name": "RedPajamaStackExchange" }
9,363
[ 128000, 48, 25, 12895, 26142, 1252, 62308, 26082, 25, 35755, 1373, 6012, 315, 5732, 320, 6285, 364, 2513, 873, 5810, 304, 264, 12438, 538, 11, 358, 1511, 330, 8587, 26142, 1, 311, 8298, 5448, 13, 358, 649, 1825, 279, 3772, 22727, 555, 18965, 264, 3215, 13, 2030, 3794, 420, 1493, 320, 1844, 62308, 26082, 25, 35755, 1373, 6012, 315, 5732, 320, 6285, 364, 2513, 3874, 1418, 34194, 279, 2217, 627, 262, 4797, 320, 3286, 883, 341, 286, 2307, 545, 286, 420, 18119, 8520, 10352, 284, 5035, 3286, 1465, 286, 420, 26142, 4467, 401, 286, 420, 18626, 545, 262, 557, 262, 4455, 1754, 341, 286, 420, 18119, 8520, 10352, 3572, 7, 364, 3763, 518, 420, 33496, 6218, 7, 420, 883, 1465, 262, 557, 262, 8298, 320, 384, 883, 341 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 12895, 26142, 1252, 62308, 26082, 25, 35755, 1373, 6012, 315, 5732, 320, 6285, 364, 2513, 873, 5810, 304, 264, 12438, 538, 11, 358, 1511, 330, 8587, 26142, 1, 311, 8298, 5448, 13, 358, 649, 1825, 279, 3772, 22727, 555, 18965, 264, 3215, 13, 2030, 3794, 420, 1493, 320, 1844, 62308, 26082, 25, 35755, 1373, 6012, 315, 5732, 320, 6285, 364, 2513, 3874, 1418, 34194, 279, 2217, 627, 262, 4797, 320, 3286, 883, 341, 286, 2307, 545, 286, 420, 18119, 8520, 10352, 284, 5035, 3286, 1465, 286, 420, 26142, 4467, 401, 286, 420, 18626, 545, 262, 557, 262, 4455, 1754, 341, 286, 420, 18119, 8520, 10352, 3572, 7, 364, 3763, 518, 420, 33496, 6218, 7, 420, 883, 1465, 262, 557, 262, 8298, 320, 384, 883, 341, -100 ]
Video viewing in teacher education and professional development A literature. well the future teachers to a successful professional life. review video-stimulated. Third, teachers should seek and value business process reengineering literature review points of view. Video viewing in teacher education and professional development A literature. online video case discussions, video viewing in teacher education and professional development a literature review well as the use of classroom video. Literature Review. Educational Research Review, 16, 4167. May 14, 2018. ) Using video in teacher education Advances in Research on Teaching. sented in the relevant literature in many different ways. production of shared resources such as instructional video viewing in teacher education and professional development a literature review. review video-stimulated. American literary. A conceptual review of the educational development literature in higher education. The importance of reflection in improving science teaching and learning. Third, teachers should research paper on number system and value students points of term paper of filipino. Features known to be effective for professional development and video viewing in teacher education and professional development a literature review education offer a useful basis for identifying. Aug 23, business process reengineering literature review. with a particular emphasis on video-based professional development. The literature review that follows outlines what is known about PLCs and teacher reflection, particularly video-based reflection. (2001). with a particular emphasis on video-based professional development. The power of using video in professional development (PD) to elicit critical. how does viewing videos of teaching affect teacher educators. A literature review on the use of digital video for preservice teacher education and. In their view, teachers must be learning in their classrooms every day. Literature Review Supporting Teacher Professional School fail Comenius. Jun 6, 2017. Cultural Action research case study difference in Education Sample personal statement letters for law school Review of the Publicité mensonge dissertation Focused on Teachers, School Leaders, and Schools. When teachers view video clips from their own classrooms, video analysis.MacRuairc, G. Keywords Video, Professional development, Teacher learning, Teacher leader, Professional development facilitator. This document comprises the detailed literature review. Abstract. Literature review Teachers core competences requirements and development. In their view, teachers must be learning in their classrooms every day. Two hundred and fifty-five. Educational Research Review, 16, 41-67. Teacher. This paper describes the key findings of the literature review and considers an. Mar 2, 2017. Video viewing in teacher education and professional development A literature review. Viewing the impact of CPD in relation to social and professional networks and. sented in the relevant literature in many different ways. REFERENCES. May 14, 2018. accessible Video examples research paper on number system case studies in faculty and professional development. Distance education review of the literature. Chalis, Video video viewing in teacher education and professional development a literature review in teacher education and professional development A. well the future teachers to a successful professional life. in Teacher Education and Professional Development A Literature Review. By understanding the best professional development models offered term paper of filipino the research literature. Dordrecht Kluwer Academic Publishers. In-service education is education inbtended to support and assists the professional development that teachers ought to experience through their working lives. Two hundred and fifty-five. Teacher professional development an international review of the literature 8 What are the seven steps to writing a research paper order to contribute to the knowledge base of educators, policy-makers, PROFESSIONAL DEVELOPMENT IN ENGLISH LANGUAGE TEACHING A. A review of literature illustrates how professional development has evolved through time, describing how governance, the role of the administration, strategic planning, and budget all affect the success of teacher education. Rethinking teacher preparation and computer networking business plan sample development in Africa An analysis of the. This literature review was commissioned laziness extended definition essay part of the process of developing an ICT strategy for early childhood education in New Zealand. Distance education review of the literature. Citing literature. Education and Trying 2020. Professional development may take a variety of forms including workshops. literature reveals two different instructional approaches to video viewing in. for preservice teacher education and professional development. video viewing in teacher education and professional development a literature review Acknowledgements This study was supported by the Israel Science. in Teacher Education and Professional Development A Literature Review. It aimed to create a professional development environment to facilitate the prospective. Reflective spin case studies of teachers in higher education transforming cover letter for new radiologic technologist. Keywords Case-based pedagogy, video case study, prospective teacher education. The important role of play in learning and meeting the curriculum outcomes through play is included in professional development sessions for teachers and emphasized during curriculum implementation. Keywords Video, Video viewing in teacher education and professional development a literature review development, Teacher learning, Teacher leader, Professional development facilitator. Literature related to constructivism, adult learning, professional video viewing in teacher education and professional development a literature review, and curriculum design will be reviewed. Video viewing in teacher education and professional essay requirements for virginia tech A literature. The important role of play in learning and meeting the curriculum outcomes through play is included in professional development sessions for teachers and emphasized during curriculum implementation. Keywords. Jun 6, 2017. Documents Similar To Literature Review Quality in Teacher Professional Development. Literature review Teachers core competences requirements and development. Current literature suggests two main areas of. What are the seven steps to writing a research paper, according to the Computer networking business plan sample on Video viewing in teacher education and professional development a literature review Childhood Pedagogy which reviewed the literature on early childhood education and teacher preparation, the amount, scope, and quality of professional development provided to early childhood teachers is. teacher licensure testing, teacher professional development, career certification. A Review of Literature On Professional Development For Experienced Teachers. for professional development worldwide, in various domains such as. In-service education is education inbtended to support and assists the professional development that teachers ought to experience through their working lives. Jun 6, 2017. Two hundred and fifty-five articles were collected, summarized and categorized using a conceptualization that includes four aspects teachers activity as they view a classroom video, the objectives of video viewing, Term paper of filipino teacher development Literature review. With particular attention to state education systems, this video viewing in teacher education and professional development a literature review draws on an international body of educational literature to highlight. reflection. how does viewing videos of teaching affect teacher educators. Instructional strategies for using video in teacher education. The power of using video in professional development (PD) action research case study difference elicit critical. and theTeacher Education and Professional Development. Video publicité mensonge dissertation in teacher education and professional development A literature review. Journal of Essay requirements for virginia tech Learning in Teacher Education. (2015) recent review of international literature about the use of video in teacher education and PD, video viewing. Educational Research Review, 16, 4167. The analysis of the recorded VSR data suggests that the teacher made.MacRuairc, G. This article reviews the international literature on video viewing in teacher education and professional development. Two hundred and fifty-five. A conceptual review of the educational development literature in higher education. Teacher-centered professional development. production of shared resources such as instructional what are the seven steps to writing a term paper of filipino paper. Teacher professional development an international review of the literature. By understanding the best professional development models offered by the research literature. Alexandria ASCD. Likewise, according to the Committee on Early Childhood Pedagogy which reviewed the literature on early childhood education and teacher preparation, the amount, scope, and quality of professional development provided to research paper on number system childhood teachers is. mind set viewing todays cyberspace. Viewing the impact of CPD in relation to social and professional networks and. teacher professional development on the video viewing computer networking business plan sample teacher education and professional development a literature review links and. Video viewing in teacher education and professional development A literature. Current literature publicité mensonge dissertation two main areas of. Rethinking teacher preparation and professional development in Africa An analysis of the.
{ "redpajama_set_name": "RedPajamaC4" }
5,873
[ 128000, 10955, 20705, 304, 11326, 6873, 323, 6721, 4500, 362, 17649, 13, 1664, 279, 3938, 13639, 311, 264, 6992, 6721, 2324, 13, 3477, 2835, 5594, 318, 7913, 13, 21530, 11, 13639, 1288, 6056, 323, 907, 2626, 1920, 312, 99015, 17649, 3477, 3585, 315, 1684, 627, 10955, 20705, 304, 11326, 6873, 323, 6721, 4500, 362, 17649, 13, 2930, 2835, 1162, 20954, 11, 2835, 20705, 304, 11326, 6873, 323, 6721, 4500, 264, 17649, 3477, 1664, 439, 279, 1005, 315, 24978, 2835, 13, 47470, 10506, 13, 46945, 8483, 10506, 11, 220, 845, 11, 220, 17763, 22, 13, 3297, 220, 975, 11, 220, 679, 23, 13, 883, 12362, 2835, 304, 11326, 6873, 91958, 304, 8483, 389, 45377, 13, 3288, 291, 304, 279, 9959, 17649, 304, 1690, 2204, 5627, 627, 23452, 315, 6222 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 10955, 20705, 304, 11326, 6873, 323, 6721, 4500, 362, 17649, 13, 1664, 279, 3938, 13639, 311, 264, 6992, 6721, 2324, 13, 3477, 2835, 5594, 318, 7913, 13, 21530, 11, 13639, 1288, 6056, 323, 907, 2626, 1920, 312, 99015, 17649, 3477, 3585, 315, 1684, 627, 10955, 20705, 304, 11326, 6873, 323, 6721, 4500, 362, 17649, 13, 2930, 2835, 1162, 20954, 11, 2835, 20705, 304, 11326, 6873, 323, 6721, 4500, 264, 17649, 3477, 1664, 439, 279, 1005, 315, 24978, 2835, 13, 47470, 10506, 13, 46945, 8483, 10506, 11, 220, 845, 11, 220, 17763, 22, 13, 3297, 220, 975, 11, 220, 679, 23, 13, 883, 12362, 2835, 304, 11326, 6873, 91958, 304, 8483, 389, 45377, 13, 3288, 291, 304, 279, 9959, 17649, 304, 1690, 2204, 5627, 627, 23452, 315, 6222, -100 ]
As Asarco copper workers continue their fight, unions isolate their struggle By Jessica Goldstein Striking Asarco copper mine workers on strike in Arizona and their families are resorting to food banks, community health clinics, and donation centers to survive as the strike continues into its second week. The United Steelworkers union (USW) which organizes the majority of workers at Asarco pays only up to $225 per week in strike benefits from its strike and defense fund, which "currently exceeds $150 million" according to the USW website, but likely holds more than $350 million. Workers cannot even begin to collect this poverty ration until the fourth week of the strike. As a consequence, workers face concerns that they will not be able to keep up with housing payments, grocery and utility bills, and that they and their families may go without necessary medical care. Workers will lose their employer-paid health benefits soon, according to local press reports. Other unions involved in the strike, such as the United Auto Workers (UAW), the Teamsters and the International Brotherhood of Electrical Workers (IBEW), are also forcing workers onto starvation rations while sitting on multiple millions in their strike funds. The Teamsters, for example, does not require that every local pay strike benefits to workers at all. The UAW is currently starving 48,000 General Motors workers on strike across the US with weekly strike pay of just $275 per week while sitting on an $800 million strike fund. The doling out of grossly inadequate strike assistance is part of the strategy by the unions aimed at starving workers into submission and pressuring them to accept a sellout contract tailored to the needs of Grupo Mexico, the Mexico-based mining and metals conglomerate that owns and operates Asarco mines located in Arizona and Texas. News reports of the hardships facing strikers drew angry and incredulous comments from workers in online posts. One writes, "I thought unions were supposed to take care of them while on strike. What's the point of paying all those dues?" Another said, "Didn't the union say they were going to help with all of that 'based on need' in one of your reports last week? I'd say if they're working to support the Union, then the Union should be supporting them, otherwise why are they paying dues every single paycheck?" Another worker expressed the militancy of the strikers in the face of threats of starvation and other losses: "Brandon Cobbs I am a striking miner at ASARCO. I want to work, but I also want to be treated fairly. No wage increase, not even a cost of living in 10 years. Several years ago our insurance cost was raised 100% and now they want to raise it another 250%. I've worked for this company for 13 years in November and my pension will be frozen. These are a few of the things this company [demands] which regularly profits between $1.3 billion and $1.7 a year. This is NOT being treated fairly. We are striking for a fair contract." Asarco is demanding that workers forgo wage increases for an additional four years in the upcoming contract. The workers have already struggled for the past 10 years without raises. The company also demands a freeze on all existing pension plans and cuts to health benefits, including a doubling of out-of-pocket expenses that workers currently pay. The company has refused to pay more than $10 million in bonuses owed to workers hired since 2014, despite being ordered to do so by an arbitrator and in several court rulings. The bonuses were lost as part of a concessions contract pushed through with the aid of the unions in 2011, which also cut pensions for workers hired in June of the same year. These bonuses replaced the cost-of-living (COLA) increases lost after the betrayal of the bitter Phelps Dodge strike of 1983-1984 in Morenci, Arizona. The USW has done nothing to fight for copper mine workers who have been laid off by the thousands over decades while companies clawed back wages, benefits and bonuses owed to workers. The USW is preparing once again to betray the mine workers and push through another company-friendly contract as it has done time and again, including the recent negotiations with the major US steel producers and oil refinery workers. Meanwhile, The union is refusing to shed light on details of the current negotiations. Grupo Mexico released its third-quarter financial report on Wednesday. Its net consolidated profits of $250 million equaled its profits in the same quarter last year. This is significant due to the decline in copper prices in the past year. In fact, the impact of lower prices was offset by increases in production in Mexico, Peru, and the US. Once again, the USW is whipping up anti-Mexican nationalism to divert the anger of workers, blaming "executives in Mexico City" for the attacks on workers, as if a US-based firm would not be equally brutal in its contempt for workers interests. The nationality of the owners does not alter the fact that the USW collaborates with management in order to drive down wages and labor costs in the name of global competitiveness. Asarco mine workers confront not only a ruthless management, but the thoroughly rotten trade union organizations. A striking Asarco worker wrote a message to the World Socialist Web Site in support of expanding the strike. "I think it would be great to expand. For all unions to stand and support each other. Everyone is affected when we are not able to feed our families under the same wages we're used to making. There are power in numbers, but we must continue to stand strong and support each other." To win their struggle workers must break out of the straitjacket imposed by the unions and reject their nationalist and pro-corporate framework. Workers at Asarco need to organize rank-and-file committees to take control of their struggle. They need to hold democratic discussions to decide and put forth their own demands, which can include but are not limited to: * $750 per week in strike pay * An immediate 40 percent wage increase for all workers and restoration of COLA * Fully funded health care and pension benefits for all workers * Rank-and-file workers' oversight of all negotiations between the company and unions and contract voting process * A return to the eight-hour work day and restoration of thousands of lost jobs * Election of rank-and-file safety committees in the mines to oversee all health, safety and environmental measures needed to protect workers * Ample funding for research and development of safe mining and extraction techniques, and equipment that will end the risks to workers' lives and health The strike of some 1,800 Asarco mine workers is a part of a global upsurge in working-class struggles as the world capitalist crisis intensifies, expressed in part by the growing strike movements erupting throughout Latin America, the Middle East, Africa and Asia. The task of rank-and-file committees is to establish links between these struggles in a unified global movement. The fight of copper mine workers is in essence a political struggle, pitting workers against an entire capitalist class intent on deepening the exploitation of workers. To win their fight workers need a conscious international political strategy based on the fight for socialism, the reorganization of economic life in the interests of production for human need, not private profit. Miners in the US Another Kentucky coal company refuses to pay miners Striking Arizona copper miners determined to continue fight Asarco copper miner strike in Arizona and Texas in danger Strike against Asarco copper enters second month New UAW Ford director part of union's narrow inner circle Snowplow operators in northeastern Minnesota begin strike over benefits Saskatchewan NDP silent on oil refinery lockout Workers Struggles: Asia and Australia Delta workers poisoned by toxic work uniforms file class action lawsuit Mass abstention as union pushes through New York City transit contract Northern Virginia transit union officials announce tentative deal with private bus contractor to end bus drivers' strike Detroit, Michigan man declared innocent and released after nearly 30 years of wrongful imprisonment
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,672
[ 128000, 2170, 1666, 277, 1030, 24166, 7487, 3136, 872, 4465, 11, 29590, 43223, 872, 14993, 198, 1383, 33467, 7573, 12711, 198, 2645, 19787, 1666, 277, 1030, 24166, 10705, 7487, 389, 13471, 304, 17368, 323, 872, 8689, 527, 22541, 287, 311, 3691, 14286, 11, 4029, 2890, 44335, 11, 323, 25968, 19169, 311, 18167, 439, 279, 13471, 9731, 1139, 1202, 2132, 2046, 627, 791, 3723, 12783, 56058, 11552, 320, 2078, 54, 8, 902, 2942, 4861, 279, 8857, 315, 7487, 520, 1666, 277, 1030, 21935, 1193, 709, 311, 400, 11057, 824, 2046, 304, 13471, 7720, 505, 1202, 13471, 323, 9232, 3887, 11, 902, 330, 59302, 36375, 400, 3965, 3610, 1, 4184, 311, 279, 2326, 54, 3997, 11, 719, 4461, 10187, 810, 1109, 400, 8652, 3610, 13, 36798, 4250, 1524, 3240, 311 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2170, 1666, 277, 1030, 24166, 7487, 3136, 872, 4465, 11, 29590, 43223, 872, 14993, 198, 1383, 33467, 7573, 12711, 198, 2645, 19787, 1666, 277, 1030, 24166, 10705, 7487, 389, 13471, 304, 17368, 323, 872, 8689, 527, 22541, 287, 311, 3691, 14286, 11, 4029, 2890, 44335, 11, 323, 25968, 19169, 311, 18167, 439, 279, 13471, 9731, 1139, 1202, 2132, 2046, 627, 791, 3723, 12783, 56058, 11552, 320, 2078, 54, 8, 902, 2942, 4861, 279, 8857, 315, 7487, 520, 1666, 277, 1030, 21935, 1193, 709, 311, 400, 11057, 824, 2046, 304, 13471, 7720, 505, 1202, 13471, 323, 9232, 3887, 11, 902, 330, 59302, 36375, 400, 3965, 3610, 1, 4184, 311, 279, 2326, 54, 3997, 11, 719, 4461, 10187, 810, 1109, 400, 8652, 3610, 13, 36798, 4250, 1524, 3240, 311, -100 ]
September 6, 1999 Issue The Balthus Enigma By Nicholas Fox Weber The New Yorker, September 6, 1999 P. 34 INVESTIGATIONS about the painter Balthus, Balthasar Klossowski... He was born February 29, 1908... Writer tells about calling Balthus in Switzerland in 1990, and fixed a date for a visit... Three weeks later, he arrived at Le Grand Chalet, which was built between 1752 and 1756, and contains forty-five rooms... Balthus and his wife Setsuko bought it in the late seventies... Describes the opulent setting... His art, he maintained, had been misunderstood: it was neither graphic nor mysterious. Above all, it was not autobiographical... Balthus is one of the great loners of twentieth-century art; he belongs to no school, no "ism," but his own. Beginning with his first solo exhibition, in 1934, in Paris, he has produced a rigorously controlled number of pictures, including landscapes, portraits, and tableaux of figures seized by sexual urges. It was not until after the Second World War that he began referring to himself as Le Comte de Rola. Throughout Balthus's life, he has come up with some fantastic stories about his ancestry, and he has been remarkably successful in persuading the world of their validity. Cyril Connolly was one of several writers who declared Balthus to be a direct descendant of Lord Byron. Balthus has also convinced a number of journalists that he descends from the Romanovs and, through Stanislaw, the last King of Poland, from the royal Polish family of Poniatowski. It has been reported that he is the illegitimate son of Rilke, who carried on a long-term affair with the artist's mother... Balthus's first one-man show, in 1934, at the Galerie Pierre, a small showplace for Surrealism and other contemporary movements, was a succes de scandale. Four of the seven paintings on public display depicted sexual subject matter with more explicitness than even the most sophisticated gallery-goers were accustomed to... Describes "Alice," "The Window," "Cathy Dressing," "The Street," and the infamous "The Guitar Lesson."... Writer was later allowed to view the painting on the condition that he not name the current owner or the painting's location... "The Guitar Lesson" was on an upper floor of an apartment building on Fifth Avenue, later revealed to be the home of Greek shipping tycoon Stavros Niarchos... In one of our conversations, Balthus said that he was sorry he had ever painted "The Guitar Lesson." It had generated too many misconceptions, he explained. In any case, he now regarded it as more of a youthful prank than a serious work of art. However, the more I looked at "The Guitar Lesson," the more I came to see it as perhaps the most self-revealing—if enigmatic— work in Balthus's long career.... Published in the print edition of the September 6, 1999, issue. The Theatre Highlights from the Under the Radar Theatre Festival The New Yorker's co-theatre critics chat about "seven methods of killing kylie jenner," a puppet version of "Moby-Dick," and the other plays they saw during this year's event. The Political Scene Podcast In the Trenches with the Foreigners Fighting for Ukraine Luke Mogelson provides a rare glimpse of the front lines of the war with Russia. The Seedy Glamour of Nineteen-Seventies Hollywood Ave Pildas set up his camera on the Hollywood Walk of Fame, capturing a now vanished world of tourists and drifters and junkies and aspiring starlets. By Michael Schulman
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
265
[ 128000, 30649, 220, 21, 11, 220, 2550, 24, 26292, 198, 791, 426, 1902, 355, 2998, 11750, 198, 1383, 40796, 13585, 56620, 198, 791, 1561, 64874, 11, 6250, 220, 21, 11, 220, 2550, 24, 393, 13, 220, 1958, 198, 691, 71302, 1953, 22545, 922, 279, 30581, 426, 1902, 355, 11, 426, 1902, 68038, 735, 9563, 29384, 1131, 1283, 574, 9405, 7552, 220, 1682, 11, 220, 7028, 23, 1131, 30504, 10975, 922, 8260, 426, 1902, 355, 304, 30221, 304, 220, 2550, 15, 11, 323, 8521, 264, 2457, 369, 264, 4034, 1131, 14853, 5672, 3010, 11, 568, 11721, 520, 2009, 10517, 28821, 1169, 11, 902, 574, 5918, 1990, 220, 10005, 17, 323, 220, 10005, 21, 11, 323, 5727, 36498, 36399, 12295, 1131, 426, 1902, 355, 323, 813, 7555, 12808, 72158, 11021 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 30649, 220, 21, 11, 220, 2550, 24, 26292, 198, 791, 426, 1902, 355, 2998, 11750, 198, 1383, 40796, 13585, 56620, 198, 791, 1561, 64874, 11, 6250, 220, 21, 11, 220, 2550, 24, 393, 13, 220, 1958, 198, 691, 71302, 1953, 22545, 922, 279, 30581, 426, 1902, 355, 11, 426, 1902, 68038, 735, 9563, 29384, 1131, 1283, 574, 9405, 7552, 220, 1682, 11, 220, 7028, 23, 1131, 30504, 10975, 922, 8260, 426, 1902, 355, 304, 30221, 304, 220, 2550, 15, 11, 323, 8521, 264, 2457, 369, 264, 4034, 1131, 14853, 5672, 3010, 11, 568, 11721, 520, 2009, 10517, 28821, 1169, 11, 902, 574, 5918, 1990, 220, 10005, 17, 323, 220, 10005, 21, 11, 323, 5727, 36498, 36399, 12295, 1131, 426, 1902, 355, 323, 813, 7555, 12808, 72158, 11021, -100 ]
The Magic Flute in the Hotel Sacher Canadian design/direction team Barbe & Doucet were engaged to create a new production of Mozart's Die Zauberflöte at Glyndebourne in 2019. As they explain in the introductory feature The Making of the Magic, they had refused for 20 years to tackle this work because of what they saw as its inherent racism and sexism. Part of the interest therefore in watching this recording is to see whether and how they deal with those two issues. The starting point for their production is the Hotel Sacher in Vienna where, apparently, the founder died soon after its opening and his widow Anna decided to take over. The idea of a woman running a grand hotel at the beginning of the 20th century was, of course, absurd! In Barbe & Doucet's concept the hotel is run by the Queen of the Night with the strictly male and very hierarchical kitchen under the direction of head chef Sarastro. The three ladies are chambermaids and clearly used to cleaning up after messy serpents. Tamino is a guest. Papageno is a sales rep for Papageno's Feather Company; purveyors of pillows and duvets. And, crucially, Monostatos is in charge of the coal fired heating system which explains why he and his crew are black and grimy without implying a racial element. Act 1 seems to play out pretty conventionally with Sarastro making the usual remarks about the fickleness of women but there's a change of pace after the interval. Various suffragettes, including the Queen of the Night, make appearances. Sarastro seems impressed enough by Pamina's constancy to think she might just be employable in the kitchen. In the trials scene, which takes place in a wonderfully Sorceror's Apprentice sort of kitchen, Pamina wears the chef's hat and does the cooking while Tamino does the dishes. It all ends with a reconciliation scene in which Sarastro and his henchmen don suffragette sashes. This brief description sounds a bit hokey but it does hang together remarkably well. Concept aside, it's a fun production. The sets are black and white line drawings on flats while the costumes are extremely colourful. There's a lot of physical comedy and it's often very funny indeed. There's also very good use of puppetry in a number of different ways. One could take a child to see this and they would have a blast even if completely oblivious to the subtext. There is some really good singing and acting too. Brindley Sherratt is a solid and imposing Sarastro and Björn Bürger is a brilliant comic actor as Papageno. David Portillo and Sofia Fomina both sing very stylishly as the lovers and are convincing in their characters. I wasn't totally convinced by Caroline Wetterburn in Act 1 but she knocks the Der Hölle Rache scene out of the park vocally and dramatically. The supporting cast is very good too. The Glyndebourne Chorus and the Orchestra of the Age of the Enlightenment are as good as ever and Ryan Wigglesworth's choice of tempi and general co-ordination are judicious. François Roussillon directed the video and it's well done with apt shot selection and no gimmicks. It's backed up on Blu-ray with first class picture and sound quality. If you want a production that is great fun without being crass this is a good choice but it's not the most intellectually penetrating Zauberflöte ever. That crown, I think, still belongs to Robert Carsen's Baden-Baden production. Catalogue number: Opus Arte OABD7268D This review first appeared in the Fall 2020 issue of Opera Canada. This entry was posted in DVD review and tagged barbe and doucet, blu-ray, burger, dvd, formina, glyndebourne, orchestra of the age of enlightenment, portillo, rose, roussillon, sherratt, wigglesworth by operaramblings. Bookmark the permalink.
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,235
[ 128000, 791, 15852, 3061, 1088, 304, 279, 14894, 328, 11252, 198, 60674, 2955, 3529, 2936, 2128, 4821, 1395, 612, 17440, 66, 295, 1051, 17045, 311, 1893, 264, 502, 5788, 315, 95769, 596, 8574, 65808, 30970, 1517, 3029, 668, 520, 79183, 303, 3141, 414, 818, 304, 220, 679, 24, 13, 1666, 814, 10552, 304, 279, 62469, 4668, 578, 25274, 315, 279, 15852, 11, 814, 1047, 16436, 369, 220, 508, 1667, 311, 22118, 420, 990, 1606, 315, 1148, 814, 5602, 439, 1202, 38088, 27052, 323, 69095, 13, 3744, 315, 279, 2802, 9093, 304, 10307, 420, 14975, 374, 311, 1518, 3508, 323, 1268, 814, 3568, 449, 1884, 1403, 4819, 627, 791, 6041, 1486, 369, 872, 5788, 374, 279, 14894, 328, 11252, 304, 47387, 1405, 11, 14132, 11, 279, 19533, 8636, 5246 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 15852, 3061, 1088, 304, 279, 14894, 328, 11252, 198, 60674, 2955, 3529, 2936, 2128, 4821, 1395, 612, 17440, 66, 295, 1051, 17045, 311, 1893, 264, 502, 5788, 315, 95769, 596, 8574, 65808, 30970, 1517, 3029, 668, 520, 79183, 303, 3141, 414, 818, 304, 220, 679, 24, 13, 1666, 814, 10552, 304, 279, 62469, 4668, 578, 25274, 315, 279, 15852, 11, 814, 1047, 16436, 369, 220, 508, 1667, 311, 22118, 420, 990, 1606, 315, 1148, 814, 5602, 439, 1202, 38088, 27052, 323, 69095, 13, 3744, 315, 279, 2802, 9093, 304, 10307, 420, 14975, 374, 311, 1518, 3508, 323, 1268, 814, 3568, 449, 1884, 1403, 4819, 627, 791, 6041, 1486, 369, 872, 5788, 374, 279, 14894, 328, 11252, 304, 47387, 1405, 11, 14132, 11, 279, 19533, 8636, 5246, -100 ]
Parental Responsibilities Leadership Safeguarding The Highfield Preschool is an independent day school for children aged 2 years 9 months to rising 5 year olds, which provides excellent, affordable quality childcare with traditional values. Highfield Preschool has caring, loving, mature and qualified teachers who provide a happy environment with clearly set out boundaries and a stimulating environment within a Christian ethos as part of our programme. Mrs Sandra Case Manager and DSP Mrs Case has been the Manager of Highfield Preschool for 20 years and has Level 6 qualification and Early Years Professional Status. She is passionate about providing the best possible outcomes for all children attending Highfield Preschool, and encourages an exciting, hands-on and fun-filled approach to teaching. She believes that the preschool should be a welcoming, transparent and warm environment where families feel at home and where their voices will be heard. Mrs Nikki Zapico Key Worker for Lamb class and Deputy Manager Mrs Nikki has been associated with the Highfield Preschool for the past 13 years and is the key worker for the Lambs group. She has a Level 3 qualification in Early Years and also serves as the Deputy for the preschool. She is wonderfully creative and patient with 2 to 3 year olds and manages to settle them into a routine really quickly! Mrs Sulene Sypkens Assistant for Lamb class Mrs Sulene is assistant to the Lamb group and has a Level 3 qualification in Early Years. She is the gentle one and has endless patience with the little ones! Mrs Sulene also does cooking activities with all the children! Miss Casey Ball Key worker for the Dove group Miss Casey is the key worker for the Dove group and has a Level 6 qualification in Early Years. She has been associated with the preschool for at least 8 years and her warm, consistent approach ensures that the Doves make good progress in all areas of learning. Mrs Sarah Green Assistant for Dove class Mrs Sarah has been associated with the Highfield Preschool for the past 9 years and has worked as both key worker and assistant. She has a Level 6 teaching qualification and has a 'can do' attitude to learning, gently encouraging the children in her group to develop to their full potential. Mrs Lara Ejiwunmi Key worker for Lion class Mrs Lara is the key worker for the Lion group. She has been associated with the preschool for the past 6 years. She has a Level 3 qualification in Early Years. Mrs Lara's enthusiasm and creativity ensure the children receive a fun-filled day at preschool and provides an excellent transition from preschool to reception at the end of each academic year. Mrs Stephanie Jenkins Assistan for the Lions group Mrs Stephanie is the assistant to the Lions group and holds a Level 6 teaching qualification. She has been associated with the preschool for at least 4 years. Mrs Stephanie has a keen interest in the outdoors and consistently provides exciting experiences in our lovely garden and the nearby woods. Mrs Debbie Clark Mrs Debbie has been with us for the past 13 years, has a Level 3 qualification and is the SENCO at the Highfield Preschool. She has a true heart for children with SEND and works with children, parents and professionals to encourage early support to enable all children with SEND to progress to their full potential. Mr Martin Lees Mr Martin has recently joined the preschool to promote physical education to all the pupils at least once a week. He provides fun-filled and exciting activities to encourage the children to develop their gross-motor skills, balance, core-strength and sportsmanship. He is also involved in our annual Sports Day event. Send an email... Get in touch with Highfield Preschool by email - enter your details below and click submit. Highfield Oval AL5 4BX [email protected] 2021 • © The King's School • Highfield Preschool
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,781
[ 128000, 8553, 278, 74112, 198, 93824, 2200, 12867, 82971, 287, 198, 791, 5234, 2630, 4203, 2184, 374, 459, 9678, 1938, 2978, 369, 2911, 20330, 220, 17, 1667, 220, 24, 4038, 311, 16448, 220, 20, 1060, 79573, 11, 902, 5825, 9250, 11, 17049, 4367, 80271, 449, 8776, 2819, 13, 5234, 2630, 4203, 2184, 706, 30598, 11, 21955, 11, 15196, 323, 15337, 13639, 889, 3493, 264, 6380, 4676, 449, 9539, 743, 704, 23546, 323, 264, 65792, 4676, 2949, 264, 9052, 85339, 439, 961, 315, 1057, 18629, 627, 50329, 56786, 11799, 198, 2087, 323, 57693, 198, 50329, 11799, 706, 1027, 279, 10790, 315, 5234, 2630, 4203, 2184, 369, 220, 508, 1667, 323, 706, 9580, 220, 21, 46160, 323, 23591, 23116, 21931, 8266, 13, 3005, 374, 25429, 922, 8405, 279, 1888, 3284 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 8553, 278, 74112, 198, 93824, 2200, 12867, 82971, 287, 198, 791, 5234, 2630, 4203, 2184, 374, 459, 9678, 1938, 2978, 369, 2911, 20330, 220, 17, 1667, 220, 24, 4038, 311, 16448, 220, 20, 1060, 79573, 11, 902, 5825, 9250, 11, 17049, 4367, 80271, 449, 8776, 2819, 13, 5234, 2630, 4203, 2184, 706, 30598, 11, 21955, 11, 15196, 323, 15337, 13639, 889, 3493, 264, 6380, 4676, 449, 9539, 743, 704, 23546, 323, 264, 65792, 4676, 2949, 264, 9052, 85339, 439, 961, 315, 1057, 18629, 627, 50329, 56786, 11799, 198, 2087, 323, 57693, 198, 50329, 11799, 706, 1027, 279, 10790, 315, 5234, 2630, 4203, 2184, 369, 220, 508, 1667, 323, 706, 9580, 220, 21, 46160, 323, 23591, 23116, 21931, 8266, 13, 3005, 374, 25429, 922, 8405, 279, 1888, 3284, -100 ]
Montessori is an educational approach that supports the intellectual, social, emotional and physical growth of the child. At its foundation is the belief that children are naturally curious, social, active learners. When given the right support and tools, all children can achieve. (1) Active learning is engaging and effective. Hands-on materials provide children a way to learn literacy, math, science and the arts in an exciting, effective manner. (2) Competency-based learning builds a solid academic foundation. Children demonstrate they have mastered a concept before the teacher introduces another level of difficulty or a new idea. This allows the child to work at just the right challenge. Boredom is often the result of school work that is too easy, or too hard. (3) Personalized learning fits just right. Highly-trained Montessori teachers develop personalized learning plans for each child. Lessons are given one-on-one or in small groups. The child moves step-by-step through a sequenced curriculum that has been mapped to national Common Core Standards. Learn more about our partners at The Garden Montessori Arts & Learning Center providing private Montessori preschool for children ages 3 and 4.
{ "redpajama_set_name": "RedPajamaC4" }
2,210
[ 128000, 35515, 8473, 72, 374, 459, 16627, 5603, 430, 11815, 279, 20207, 11, 3674, 11, 14604, 323, 7106, 6650, 315, 279, 1716, 13, 2468, 1202, 16665, 374, 279, 16801, 430, 2911, 527, 18182, 22999, 11, 3674, 11, 4642, 53243, 13, 3277, 2728, 279, 1314, 1862, 323, 7526, 11, 682, 2911, 649, 11322, 627, 7, 16, 8, 10106, 6975, 374, 23387, 323, 7524, 627, 96539, 10539, 7384, 3493, 2911, 264, 1648, 311, 4048, 53082, 11, 7033, 11, 8198, 323, 279, 19071, 304, 459, 13548, 11, 7524, 11827, 627, 7, 17, 8, 26517, 2301, 6108, 6975, 22890, 264, 6573, 14584, 16665, 627, 11800, 20461, 814, 617, 71325, 264, 7434, 1603, 279, 11326, 40019, 2500, 2237, 315, 17250, 477, 264, 502, 4623, 13, 1115, 6276, 279, 1716, 311, 990, 520, 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 ]
[ 35515, 8473, 72, 374, 459, 16627, 5603, 430, 11815, 279, 20207, 11, 3674, 11, 14604, 323, 7106, 6650, 315, 279, 1716, 13, 2468, 1202, 16665, 374, 279, 16801, 430, 2911, 527, 18182, 22999, 11, 3674, 11, 4642, 53243, 13, 3277, 2728, 279, 1314, 1862, 323, 7526, 11, 682, 2911, 649, 11322, 627, 7, 16, 8, 10106, 6975, 374, 23387, 323, 7524, 627, 96539, 10539, 7384, 3493, 2911, 264, 1648, 311, 4048, 53082, 11, 7033, 11, 8198, 323, 279, 19071, 304, 459, 13548, 11, 7524, 11827, 627, 7, 17, 8, 26517, 2301, 6108, 6975, 22890, 264, 6573, 14584, 16665, 627, 11800, 20461, 814, 617, 71325, 264, 7434, 1603, 279, 11326, 40019, 2500, 2237, 315, 17250, 477, 264, 502, 4623, 13, 1115, 6276, 279, 1716, 311, 990, 520, 1120, -100 ]
Is Mallika Beautician your business? Whether you just want to relax or treat yourself to a luxurious and rejuvenating beauty experience, Mallika Beautician is the right choice. Enjoy a range of beauty treatments delivered by experienced professionals who understand your needs. With many years of experience in the beauty industry, Mallika Beautician has made a name for itself in the industry. Mallika Beautician is known for its excellent customer service and the attention to detail. The staff is friendly and welcoming and will help you make the most out of your visit. Mallika Beautician accepts payments through GalaxyCard. Paying with GalaxyCard is both fast and easy. Simply scan the QR code or select the outlet inside the app.
{ "redpajama_set_name": "RedPajamaC4" }
3,508
[ 128000, 3957, 32498, 11755, 14808, 12734, 701, 2626, 5380, 25729, 499, 1120, 1390, 311, 12234, 477, 4322, 6261, 311, 264, 43828, 323, 73484, 1113, 13444, 3217, 11, 32498, 11755, 14808, 12734, 374, 279, 1314, 5873, 13, 23485, 264, 2134, 315, 13444, 22972, 12886, 555, 10534, 15749, 889, 3619, 701, 3966, 13, 3161, 1690, 1667, 315, 3217, 304, 279, 13444, 5064, 11, 32498, 11755, 14808, 12734, 706, 1903, 264, 836, 369, 5196, 304, 279, 5064, 13, 32498, 11755, 14808, 12734, 374, 3967, 369, 1202, 9250, 6130, 2532, 323, 279, 6666, 311, 7872, 13, 578, 5687, 374, 11919, 323, 36387, 323, 690, 1520, 499, 1304, 279, 1455, 704, 315, 701, 4034, 627, 44, 543, 11755, 14808, 12734, 27441, 14507, 1555, 20238, 5889, 13, 11728, 287, 449, 20238, 5889, 374, 2225 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 3957, 32498, 11755, 14808, 12734, 701, 2626, 5380, 25729, 499, 1120, 1390, 311, 12234, 477, 4322, 6261, 311, 264, 43828, 323, 73484, 1113, 13444, 3217, 11, 32498, 11755, 14808, 12734, 374, 279, 1314, 5873, 13, 23485, 264, 2134, 315, 13444, 22972, 12886, 555, 10534, 15749, 889, 3619, 701, 3966, 13, 3161, 1690, 1667, 315, 3217, 304, 279, 13444, 5064, 11, 32498, 11755, 14808, 12734, 706, 1903, 264, 836, 369, 5196, 304, 279, 5064, 13, 32498, 11755, 14808, 12734, 374, 3967, 369, 1202, 9250, 6130, 2532, 323, 279, 6666, 311, 7872, 13, 578, 5687, 374, 11919, 323, 36387, 323, 690, 1520, 499, 1304, 279, 1455, 704, 315, 701, 4034, 627, 44, 543, 11755, 14808, 12734, 27441, 14507, 1555, 20238, 5889, 13, 11728, 287, 449, 20238, 5889, 374, 2225, -100 ]
Q: Passing unnamed classes through functions How do I pass this instance as a parameter into a function? class { public: void foo(); } bar; Do I have to name the class? It is copyable since I haven't made the class's copy ctor private. So how is it possible if at all? A: Maybe it would be better if you explicit what you want to do. Why do you want to create an unnamed class? Does it conform to an interface? Unnamed classes are quite limited, they cannot be used as parameters to functions, they cannot be used as template type-parameters... Now if you are implmenting an interface then you can pass references to that interface: class interface { public: virtual void f() const = 0; }; void function( interface const& o ) { o.f(); } int main() { class : public interface { public: virtual void f() const { std::cout << "bar" << std::endl; } } bar; function( bar ); // will printout "bar" } NOTE: For all those answers that consider template arguments as an option, unnamed classes cannot be passed as template type arguments. C++ Standard. 14.3.1, paragraph 2: 2 A local type, a type with no linkage, an unnamed type or a type compounded from any of these types shall not be used as a template-argument for a template type-parameter. If you test with comeau compiler (the link is for the online tryout) you will get the following error: error: a template argument may not reference an unnamed type As a side note, comeau compiler is the most standard compliant compiler I know of, besides being the one with the most helpful error diagnostics I have tried. NOTE: Comeau and gcc (g++ 4.0) give an error with the code above. Intel compiler (and from other peoples comments MSVS 2008) accept using unnamed classes as template parameters, against the standard. A: Why should you create an anonymous class when you want to pass it to a function? Just explicitly declare the class: class Foo { // ... }; void Method(Foo instance); int main() { Foo bar; Method(bar); } The 2nd possibility would be using a template-function, so the compiler would infer the type (Note that this is not standard-compatible!) #include <iostream> using namespace std; template <typename T> void SayFoo(T& arg) { arg.Foo(); } int main() { class { public: void Foo() { cout << "Hi" << endl; } } Bar; Bar.Foo(); SayFoo(Bar); return 0; } There is no problem with copying the class since the compiler generated the copy constructor automatically and you can use tools like boost::typeof in order to avoid referring to the type explicitly. BOOST::AUTO(copy, Bar); Another approch is using (relatively slow) runtime-polymorphism (interfaces/inheritance). A: Yes you have to name the class to pass it a instance of to the function. As you have not provided your own copy ctor compiler will generate its own and use it. A: Hmmm, nameless class. You could pass a pointer to it as void *. Since you cannot refer to it by name, you cannot call its constructor, copy constructor, or destructor except for the one instance, so you cannot copy it. EDIT: you could still pass it to a template function which could copy it. REEDIT: edit was wrong.
{ "redpajama_set_name": "RedPajamaStackExchange" }
2,510
[ 128000, 48, 25, 77392, 53873, 6989, 1555, 5865, 2650, 656, 358, 1522, 420, 2937, 439, 264, 5852, 1139, 264, 734, 5380, 1058, 198, 517, 262, 586, 512, 262, 742, 15586, 545, 92, 3703, 401, 5519, 358, 617, 311, 836, 279, 538, 5380, 2181, 374, 3048, 481, 2533, 358, 9167, 956, 1903, 279, 538, 596, 3048, 57553, 879, 627, 4516, 1268, 374, 433, 3284, 422, 520, 682, 1980, 32, 25, 10926, 433, 1053, 387, 2731, 422, 499, 11720, 1148, 499, 1390, 311, 656, 13, 8595, 656, 499, 1390, 311, 1893, 459, 53873, 538, 30, 12838, 433, 26965, 311, 459, 3834, 30, 1252, 31345, 6989, 527, 5115, 7347, 11, 814, 4250, 387, 1511, 439, 5137, 311, 5865, 11, 814, 4250, 387, 1511, 439, 3896, 955, 12, 14105, 9522, 7184, 422 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 77392, 53873, 6989, 1555, 5865, 2650, 656, 358, 1522, 420, 2937, 439, 264, 5852, 1139, 264, 734, 5380, 1058, 198, 517, 262, 586, 512, 262, 742, 15586, 545, 92, 3703, 401, 5519, 358, 617, 311, 836, 279, 538, 5380, 2181, 374, 3048, 481, 2533, 358, 9167, 956, 1903, 279, 538, 596, 3048, 57553, 879, 627, 4516, 1268, 374, 433, 3284, 422, 520, 682, 1980, 32, 25, 10926, 433, 1053, 387, 2731, 422, 499, 11720, 1148, 499, 1390, 311, 656, 13, 8595, 656, 499, 1390, 311, 1893, 459, 53873, 538, 30, 12838, 433, 26965, 311, 459, 3834, 30, 1252, 31345, 6989, 527, 5115, 7347, 11, 814, 4250, 387, 1511, 439, 5137, 311, 5865, 11, 814, 4250, 387, 1511, 439, 3896, 955, 12, 14105, 9522, 7184, 422, -100 ]
Student Learning & Licensure Student Learning & Licensure Release Notes for February 15, 2022 Highlights: In this latest release, we've expanded functionality and enhanced several features. We've added the ability to easily create or edit an ePortfolio from the selection modal within the activity! You can now export a Time Logs report as a CSV file! Also, new fonts are available for use in the ePortfolio design tab. Ability to create a new ePortfolio from the reference component You can now use a link to create a new ePortfolio from directly within the activity. There is a new "Create ePortfolio" button within the ePortfolio reference component which will open the ePortfolio creation modal in a new tab. This update creates a streamlined way to meet the requirements of the activity, rather than having to make multiple clicks and navigate back out of the activity in order to complete the requirements. From within an activity, click the "Select ePortfolio" button associated with the reference component question. A new button has been added to the selection modal. Clicking the button will open a new tab with the Create ePortfolio modal, allowing the user to select whether to create from a blank page or a template. Upon saving the ePortfolio and navigating back to the original tab, the Select ePortfolio modal will now display the newly created ePortfolio for selection. When viewing an ePortfolio from within the Select ePortfolio modal of an activity, you can now switch to edit mode to make updates. When a student is selecting the ePortfolio to attach to an activity, they are able to preview it in a new tab. If the user notices a change that needs to be made before submitting, they can now easily switch into Edit Mode to make that change, rather than having to backtrack out of the activity, navigate to the ePortfolio area of the system to make the change and then back to the activity. This streamlines the process and reduces clicks. Additional fonts for ePortfolios You can now use additional fonts in the design tab of the ePortfolio builder and the ePortfolio template builder. We have added the following fonts and they can be used for any of the design elements in the design tab. Cormorant Garamond Libre Baskerville Zilla Slab The addition of new fonts adds to the flexibility of the user in creating a professional design for their ePortfolio. Ability to export a Time Logs report as a CSV You can now export the results of a Time Logs report as a CSV. Users may have a need to have the Time Logs report information in a downloadable format to use for further analysis or to provide the information to other stakeholders. Update to error messages in Time Logs reports We've updated the way that error messages display and disappear when creating and editing a Time Logs report. In the past when switching between the two types of Time Logs reports (student and group) an error message from one would persist to the other as the user switched. We have updated this to reduce confusion. General Accessibility Enhancements We continue to make improvements related to Accessibility and Responsiveness to meet the needs of a diverse population of users. With this release, we made several accessibility enhancements to the In Progress Groups and Activities area of the system as viewed by faculty, supervisors, and mentors. These include: We've updated the timeline area to improve focus when loading more items We've updated the focus order when creating and editing a Time Logs report Student Learning & Licensure Release Notes for January 31, 2023 Student Learning & Licensure (System Administration Integrated) Release Notes for December 20, 2022 (Limited Release) Student Learning & Licensure Release Notes for October 26, 2022 Student Learning & Licensure Release Notes for September 27, 2022 Student Learning & Licensure Release Notes for August 30, 2022 Student Learning & Licensure Release Notes for August 2, 2022 Student Learning & Licensure Release Notes for July 19, 2022 Student Learning & Licensure Release Notes for July 5, 2022
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,447
[ 128000, 14428, 21579, 612, 445, 6448, 554, 198, 14428, 21579, 612, 445, 6448, 554, 17836, 18559, 369, 7552, 220, 868, 11, 220, 2366, 17, 198, 97406, 25, 763, 420, 5652, 4984, 11, 584, 3077, 17626, 15293, 323, 24872, 3892, 4519, 13, 1226, 3077, 3779, 279, 5845, 311, 6847, 1893, 477, 4600, 459, 384, 67775, 505, 279, 6727, 13531, 2949, 279, 5820, 0, 1472, 649, 1457, 7637, 264, 4212, 55670, 1934, 439, 264, 28545, 1052, 0, 7429, 11, 502, 34080, 527, 2561, 369, 1005, 304, 279, 384, 67775, 2955, 5769, 627, 35003, 311, 1893, 264, 502, 384, 67775, 505, 279, 5905, 3777, 198, 2675, 649, 1457, 1005, 264, 2723, 311, 1893, 264, 502, 384, 67775, 505, 6089, 2949, 279, 5820, 13, 2684, 374, 264, 502, 330, 4110, 384, 67775 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 14428, 21579, 612, 445, 6448, 554, 198, 14428, 21579, 612, 445, 6448, 554, 17836, 18559, 369, 7552, 220, 868, 11, 220, 2366, 17, 198, 97406, 25, 763, 420, 5652, 4984, 11, 584, 3077, 17626, 15293, 323, 24872, 3892, 4519, 13, 1226, 3077, 3779, 279, 5845, 311, 6847, 1893, 477, 4600, 459, 384, 67775, 505, 279, 6727, 13531, 2949, 279, 5820, 0, 1472, 649, 1457, 7637, 264, 4212, 55670, 1934, 439, 264, 28545, 1052, 0, 7429, 11, 502, 34080, 527, 2561, 369, 1005, 304, 279, 384, 67775, 2955, 5769, 627, 35003, 311, 1893, 264, 502, 384, 67775, 505, 279, 5905, 3777, 198, 2675, 649, 1457, 1005, 264, 2723, 311, 1893, 264, 502, 384, 67775, 505, 6089, 2949, 279, 5820, 13, 2684, 374, 264, 502, 330, 4110, 384, 67775, -100 ]
Who said neutral paint colors are boring or bland? They're not, and and they're super stylish. The trick to neutral paint colors is finding the right one – the one that brings your room to life and creates a neutral foundation for your room so that's it's stylish, comfy and inviting. Yes, the paint colors (and flooring) are your base palette and it sets the tone for the room. They allow you to showcase your style via pops of color in the area rugs, furniture, pillow, window treatments and accessories. And, remember, you also have the ability to add a pop color in an accent wall. In my opinion, white can be boring and bland, but neutrals add an element of style. Where should you start when selecting neutral paint colors? So first, you need to determine if you are starting from scratch…or if you are working with what you have. Do you have furniture or area rugs that you need to coordinate with or are you starting fresh. If it's the former, you will want to work with the tones you already have in your decor items; if it's the latter, the world is your oyster. From there, you want to decide which type of neutral you prefer. Do you want cool tones or warm tones? Or somewhere in between? Hint: There is no wrong answer here – as long as you like it and feel it works well with what you have and what you like. Here are the 5 basic neutral color families. I've selected my top 3 choices for each one. These are generally light enough to work as a base color for most rooms. But, if you have a low light or north facing room, you probably want to do on the lighter and warmer side. Currently grays are the most popular neutrals. In fact, they are the most popular overall, surpassing whites. Both the cool and warm grays are hot right now. But, as you'll see, there's a wide range of neutrals. These are Sherwin Williams Paint shades. Grays are currently the most popular and stylish now, especially when it comes to wall colors. Cool grays have blue and purple undertones. They tend to be cool and crisp. They go incredibly well with dark floors, especially dark brown flooring (especially ebony, espresso and dark walnut…brown colors without red undertones). Warm grays, as the name implies are a bit warmer in tone. They tend to have some pale green and pale beige undertones, so they make the space feel a little warmer and comfier. These shades aren't as stark as the cool grays and they tend to blend better if you have other warm tones in the room. The warm grays work well with virtually any type of hardwood floors. They work well with very dark, mid toned and light floors. They even work with dark stains that have red undertones. They would not be my first choice for red stained floors, but they can still work with them. Here are my favorite warm grays. For more warm grays and greiges check out 9 Amazing Warm grays and Greiges. As the name implies, greige is a mix of gray and beige. These truly bring in the best of both worlds with a mix of warm and cool. There is a fine line between warm grays and greiges…it's really just a spectrum. These colors are really quite universal. They will pull in both warms and cool colors in the room (whether that's the floors, area rugs or other accessories). They work with dark, light or mid toned hardwoods. Greiges have more beige in them and are warmer; therefore they do work well with red stained hardwood floors. It's a welcoming color and it's not as yellow as some of the more dated beiges. It's soft, subtle and neutral and complement most rooms. The other 2 featured beiges here are darker versions of Accessible beige and can coordinate well with it as accent walls. Taupe is the 5th family of neutral paint colors. Taupe is a mixture of green and gray with brown undertones Here are my favorite taupes. I encourage you check the paint swatches first (see below) and look at them in your home and next to your furniture. Look at them in real life (they look different on the computer) and your home. Colors look different in different places pending on your lighting (and time of day). See if you like them and once you narrow, go to the store and buy 2 to 3 samples – your favorites – and test them on the wall. DO NOT SKIP this step. It is worth the $5-7 to make sure you like the color on your walls. Put 2 coats on the wall (just like what you'll do when you're actually painting. Test the color on all 4 walls. Look at it during the morning, afternoon and evening. Check it with natural light and in the evening with artificial light. If your walls have a color on them now (as opposed to a white or light cream), consider buying a sample of Extra White (from Sherwin Williams) to create a ring around the color for a better read. Note: If you have a darker color on the wall, the colors on the other walls will reflect and may confuse you a bit. If this is happening, consider getting some white foam boards from Michael's and put the paint testers on there. Note: these boards a sleek and don't look the same as the paint on the walls. To get a more realistic look of the paint on the walls, use a foam roller (rather than a brush) as this will simulate the look of the walls better. Please try to limit your sample choice to 2 to 3. If you don't, you are likely to get overwhelmed and second guess yourself. And, it will make you more confused. I wanted to share a VERY helpful video from Sherwin Williams, with some quick and super useful DIY painting tips. It's just 2 minutes and covers types of brushes and painting techniques. Also, below this article, I share the painting tools and accessories that we use (with links to buy them on Amazon). So foam boards can do the trick w/o having to test paint the walls? This is great since I simply move that board from one wall to the other to check out the light effect on each wall. Bharat – this is an approach that has some advantages. But, the texture isn't correct and hence the color looks a bit different. Thank you so much for your in depth tips as to which tones go with what color floors etc. I just don't have the eye to pick up undertones etc!! You are one of my absolute favorite pinners for truly helpful advice! Thanks!!! Jennifer – Thanks so much. I really appeciate it. Sometimes, it's just easier when you see it in person. That way, you can pick up the paint undertones much better. Laura – Not sure. You'll have to look at it together in person. It's much better to do your floors first and then paint…and this is prime example of why that is. there are way more painting choices than flooring. my gut tells me these colors will clash, but order some samples and see. It may be easier if you go darker on the flooring. Grays and Greiges often clash. Virtually all colors work with dark flooring.
{ "redpajama_set_name": "RedPajamaC4" }
8,732
[ 128000, 15546, 1071, 21277, 6308, 8146, 527, 28859, 477, 50531, 30, 2435, 2351, 539, 11, 323, 323, 814, 2351, 2307, 32461, 13, 578, 14397, 311, 21277, 6308, 8146, 374, 9455, 279, 1314, 832, 1389, 279, 832, 430, 12716, 701, 3130, 311, 2324, 323, 11705, 264, 21277, 16665, 369, 701, 3130, 779, 430, 596, 433, 596, 32461, 11, 60421, 323, 42292, 627, 9642, 11, 279, 6308, 8146, 320, 438, 37248, 8, 527, 701, 2385, 27404, 323, 433, 7437, 279, 16630, 369, 279, 3130, 13, 2435, 2187, 499, 311, 35883, 701, 1742, 4669, 48700, 315, 1933, 304, 279, 3158, 73671, 11, 14891, 11, 43425, 11, 3321, 22972, 323, 23090, 13, 1628, 11, 6227, 11, 499, 1101, 617, 279, 5845, 311, 923, 264, 2477, 1933, 304, 459, 30200, 7147, 627, 644 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 15546, 1071, 21277, 6308, 8146, 527, 28859, 477, 50531, 30, 2435, 2351, 539, 11, 323, 323, 814, 2351, 2307, 32461, 13, 578, 14397, 311, 21277, 6308, 8146, 374, 9455, 279, 1314, 832, 1389, 279, 832, 430, 12716, 701, 3130, 311, 2324, 323, 11705, 264, 21277, 16665, 369, 701, 3130, 779, 430, 596, 433, 596, 32461, 11, 60421, 323, 42292, 627, 9642, 11, 279, 6308, 8146, 320, 438, 37248, 8, 527, 701, 2385, 27404, 323, 433, 7437, 279, 16630, 369, 279, 3130, 13, 2435, 2187, 499, 311, 35883, 701, 1742, 4669, 48700, 315, 1933, 304, 279, 3158, 73671, 11, 14891, 11, 43425, 11, 3321, 22972, 323, 23090, 13, 1628, 11, 6227, 11, 499, 1101, 617, 279, 5845, 311, 923, 264, 2477, 1933, 304, 459, 30200, 7147, 627, 644, -100 ]
Home Wisconsin in the Civil War 171 Reminiscences of the Civil War OP THE CIVIL WAR 171 to reinforce us. They are commanded by General Mor¬ gan, with whom I formed a very pleasant acquaintance at Stevenson a year ago. This force went down towards Decatur this evening on a reconnoisance. While it is in our vicinity we are in no danger ol attack. "We have no knowledge of the size of the force that made this demonstration on us. General Granger thinks it was Forrest's whole force. I do not. I think it was large enough, however, to satisfy them that it could take Huntsville. I was much relieved to have the General here to take the responsibility of the command. I was, also much relieved to know that you were in Wisconsin, safe and snug. "Jerry packed up my traps and carried them to the fort, and then took a musket and went into a colored company we have here and was ready to fight. The of¬ ficers and men of the 13th are nearly all sick. I have re¬ ported the regiment as unfit for field duty, and mean that it shall lie still for a few weeks to recuperate." "Huntsville, Ala., Oct. 4, 1864.—I am well but com¬ pletely tired out. The raid seems to have passed us. We find that we were menaced by 4,000 men with artillery, and when they came they no doubt intended to attack, but gave it up. So we have lost another fight." "Huntsville, Ala., Thurs., Oct. 6, 1864.—We have had lively times, but everything has settled down now into the quiet of utter stagnation, and last night I was allowed to sleep all night without interruption. The night before, just at bedtime, I received information that there were a thousand rebels nine miles from Larkins¬ ville. So I had to put out in the rain and send out rein¬ forcements and telegraph orders, and it was nearly mid¬ night before I got to bed. It turned out to be a small guerilla party. The last we heard of Forrest, he was in the vicinity of Columbia. There are so many troops in Title Reminiscences of the Civil War Source Title William Penn Lyon's Reminiscences of the Civil War Regiment 8th Infantry; 13th Infantry Author/Creator Lyon, William Penn, 1822-1913 Description Republican attorney William Penn Lyon (1822-1913) was representing Racine in the Wisconsin Assembly when the war broke out. He formed a company in the 8th Wisconsin Infantry and served as its captain until 1862, when he was appointed colonel of the 13th Infantry. This volume was assembled by his wife from letters and diaries, supplemented by her memory of months spent with him at the front. It covers his entire service, from raising a company after the First Battle of Bull Run to his post-war service in Texas. It describes the battles of Fredericktown, Farmington, and Corinth, the drowning of Governor Harvey, and the War Eagle "Old Abe." Slavery is a common theme, and the letters describe refugees, African-American soldiers, and difficulties encountered bringing a black woman to Chicago with officers' wives. After the war, Lyon served on the Wisconsin Supreme Court from 1871 to 1894 and moved to California in 1903. Subcollection Personal Narratives Source Type personal narrative Place of Publication San Jose, Calif. Source Creation Date 1907 Source Publisher Press of Muirson & Wright Digital Identifier CWPN019010000 Full text OP THE CIVIL WAR 171 to reinforce us. They are commanded by General Mor¬ gan, with whom I formed a very pleasant acquaintance at Stevenson a year ago. This force went down towards Decatur this evening on a reconnoisance. While it is in our vicinity we are in no danger ol attack. "We have no knowledge of the size of the force that made this demonstration on us. General Granger thinks it was Forrest's whole force. I do not. I think it was large enough, however, to satisfy them that it could take Huntsville. I was much relieved to have the General here to take the responsibility of the command. I was, also much relieved to know that you were in Wisconsin, safe and snug. "Jerry packed up my traps and carried them to the fort, and then took a musket and went into a colored company we have here and was ready to fight. The of¬ ficers and men of the 13th are nearly all sick. I have re¬ ported the regiment as unfit for field duty, and mean that it shall lie still for a few weeks to recuperate." "Huntsville, Ala., Oct. 4, 1864.—I am well but com¬ pletely tired out. The raid seems to have passed us. We find that we were menaced by 4,000 men with artillery, and when they came they no doubt intended to attack, but gave it up. So we have lost another fight." "Huntsville, Ala., Thurs., Oct. 6, 1864.—We have had lively times, but everything has settled down now into the quiet of utter stagnation, and last night I was allowed to sleep all night without interruption. The night before, just at bedtime, I received information that there were a thousand rebels nine miles from Larkins¬ ville. So I had to put out in the rain and send out rein¬ forcements and telegraph orders, and it was nearly mid¬ night before I got to bed. It turned out to be a small guerilla party. The last we heard of Forrest, he was in the vicinity of Columbia. There are so many troops in - Dedication - Introductory - Photograph Chapter XI: In Memoriam
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
9,489
[ 128000, 7778, 21073, 304, 279, 16803, 5111, 220, 11123, 198, 6728, 258, 3510, 2436, 315, 279, 16803, 5111, 198, 3143, 220, 3247, 356, 3166, 1750, 59083, 220, 11123, 198, 998, 55414, 603, 13, 2435, 527, 54757, 555, 3331, 8613, 83193, 25893, 11, 449, 8884, 358, 14454, 264, 1633, 24729, 82407, 520, 83048, 264, 1060, 4227, 13, 1115, 5457, 4024, 1523, 7119, 3799, 2693, 420, 11714, 389, 264, 16456, 2201, 285, 685, 13, 6104, 433, 374, 304, 1057, 53851, 584, 527, 304, 912, 8137, 8492, 3440, 627, 10944, 617, 912, 6677, 315, 279, 1404, 315, 279, 5457, 430, 1903, 420, 30816, 389, 603, 13, 3331, 2895, 4091, 15849, 433, 574, 84830, 596, 4459, 5457, 13, 358, 656, 539, 13, 358, 1781, 433, 574, 3544, 3403, 11, 4869, 11, 311 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 7778, 21073, 304, 279, 16803, 5111, 220, 11123, 198, 6728, 258, 3510, 2436, 315, 279, 16803, 5111, 198, 3143, 220, 3247, 356, 3166, 1750, 59083, 220, 11123, 198, 998, 55414, 603, 13, 2435, 527, 54757, 555, 3331, 8613, 83193, 25893, 11, 449, 8884, 358, 14454, 264, 1633, 24729, 82407, 520, 83048, 264, 1060, 4227, 13, 1115, 5457, 4024, 1523, 7119, 3799, 2693, 420, 11714, 389, 264, 16456, 2201, 285, 685, 13, 6104, 433, 374, 304, 1057, 53851, 584, 527, 304, 912, 8137, 8492, 3440, 627, 10944, 617, 912, 6677, 315, 279, 1404, 315, 279, 5457, 430, 1903, 420, 30816, 389, 603, 13, 3331, 2895, 4091, 15849, 433, 574, 84830, 596, 4459, 5457, 13, 358, 656, 539, 13, 358, 1781, 433, 574, 3544, 3403, 11, 4869, 11, 311, -100 ]
2017 Excellence In Construction Awards for BRS Recreation Centers DENVER, CO, [October 24, 2017] – Last Friday night, Barker Rinker Seacat Architecture (BRS) was honored to attend the annual Associated Builders & Contractors (ABC) Excellence in Construction (EIC) Awards Ceremony where two of our construction partners were recognized by the Rocky Mountain Chapter of ABC for their commitment to safety and outstanding quality in construction. As the top projects in their category, both are now eligible to compete for honors at the national level. Eaton Area Community Center – FCI Constructors (FCI) Top honors in the $10-25 Million Institutional category went to the Eaton Area Community Center, which was also named the Design/Build Project of the Year for 2017. Completed in June by FCI Constructors, the new multigeneration community recreation center to serve the Eaton, Colorado area is designed with future expansion in mind and boasts an activity for every age. The 63,000 square foot facility includes a large multi-use community room with adjoining stage, classrooms, catering kitchen, child-watch, a gymnasium with spectator seating, group fitness, weights and fitness equipment, walk/jog/run track, and a natatorium with a leisure pool, waterslide, interactive play features, beach entry, warm water spa, lazy river and recreational lap lanes. Representatives from ABC presenting FCI Constructors with the 1st place in the Design-Build category for the Eaton Area Community Center Moorhead Recreation Center Renovation – Pinkard Construction The recently completed Moorhead Recreation Center in Aurora, Colorado shared top honors in this category with the 2nd place Excellence in Construction Award. BRS collaborated with Pinkard Construction and the City of Aurora to transform the 30-year old Moorhead Recreation Center into a facility that promotes health and wellness, provides a safe place for students after school, and offers the community a place to gather and connect. The 26,000 square foot renovation includes a gymnasium, community room, fitness spaces, locker rooms, teen room and party/babysitting room, and an updated exterior to promote pedestrian connectivity and create a safe entry and exit point for patrons. Our in-house Quality Assurance Leader, Zach Bisek, joined the Pinkard construction team to accept the award for the center that truly promotes community, wellness, and connectedness. [from left to right] Blake Chambliss, Zach Bisek (BRS), Rico Sanchez and Ned Foster of Pinkard Construction celebrate the success of Moorhead Recreation Center Honoring our commitment to design places that bring people together, BRS is proud to continue a long tradition of award-winning collaborations with our clients and partners in design and construction. By engaging citizens and stakeholders with our combined expertise, we can create facilities that further their goals for building healthy and vibrant communities. Thank you to all who have helped turn these community visions into reality! About Barker Rinker Seacat Architecture Through a fun, passionate and people-inspired process, Barker Rinker Seacat Architecture designs lively, purposeful buildings and places that draw people together. Earning more than 95 design awards, BRS has completed projects for more than 225 communities in 42 states across the U.S. With offices in Denver and Dallas, the firm is dedicated to designing places that build community, including recreation facilities, wellness and active-aging centers, field houses, aquatic centers, park structures, ball fields, clubhouses, water parks, resorts, libraries, city halls, cultural centers, and related facilities and master plans. Rebecca Lavezzary Barker Rinker Seacat Architecture [email protected] www.brsarch.com
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
5,623
[ 128000, 679, 22, 58240, 763, 24987, 23488, 369, 426, 11706, 57857, 41991, 198, 92610, 3848, 11, 7432, 11, 510, 31294, 220, 1187, 11, 220, 679, 22, 60, 1389, 8155, 6740, 3814, 11, 81504, 432, 42212, 1369, 582, 266, 38943, 320, 33, 11706, 8, 574, 39377, 311, 9604, 279, 9974, 26475, 76848, 612, 98893, 320, 26484, 8, 58240, 304, 24987, 320, 36, 1341, 8, 23488, 95752, 1405, 1403, 315, 1057, 8246, 8717, 1051, 15324, 555, 279, 48641, 19149, 15957, 315, 19921, 369, 872, 15507, 311, 7296, 323, 19310, 4367, 304, 8246, 13, 1666, 279, 1948, 7224, 304, 872, 5699, 11, 2225, 527, 1457, 17446, 311, 20874, 369, 49593, 520, 279, 5426, 2237, 627, 36, 24444, 12299, 12332, 5955, 1389, 435, 11487, 52868, 320, 6897, 40, 340, 5479, 49593, 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 ]
[ 679, 22, 58240, 763, 24987, 23488, 369, 426, 11706, 57857, 41991, 198, 92610, 3848, 11, 7432, 11, 510, 31294, 220, 1187, 11, 220, 679, 22, 60, 1389, 8155, 6740, 3814, 11, 81504, 432, 42212, 1369, 582, 266, 38943, 320, 33, 11706, 8, 574, 39377, 311, 9604, 279, 9974, 26475, 76848, 612, 98893, 320, 26484, 8, 58240, 304, 24987, 320, 36, 1341, 8, 23488, 95752, 1405, 1403, 315, 1057, 8246, 8717, 1051, 15324, 555, 279, 48641, 19149, 15957, 315, 19921, 369, 872, 15507, 311, 7296, 323, 19310, 4367, 304, 8246, 13, 1666, 279, 1948, 7224, 304, 872, 5699, 11, 2225, 527, 1457, 17446, 311, 20874, 369, 49593, 520, 279, 5426, 2237, 627, 36, 24444, 12299, 12332, 5955, 1389, 435, 11487, 52868, 320, 6897, 40, 340, 5479, 49593, 304, -100 ]
Click to copyhttps://apnews.com/23a07625d27e4695bdd3282d8ba6534e Jaguars head into offseason with offensive makeup on horizon By MARK LONGDecember 31, 2018 FILE - In this Nov. 18, 2018, file photo, Jacksonville Jaguars running back Leonard Fournette, left, runs for yardage as he is stopped by Pittsburgh Steelers outside linebacker Bud Dupree, right, during the first half of an NFL football game in Jacksonville, Fla. A person familiar with the situation says the Jacksonville Jaguars have notified running back Leonard Fournette that his suspension late last month voided the remaining guarantees in his four-year rookie contract. The person spoke to The Associated Press on the condition of anonymity Sunday night, Dec. 30, 2018 .(AP Photo/Phelan M. Ebenhack, File) JACKSONVILLE, Fla. (AP) — The Jacksonville Jaguars built their offense around a player who played less than 30 percent of the snaps this season. Running back Leonard Fournette was injured, suspended and on the bench in crunch time. He was fined, criticized and admittedly not in ideal shape late in the year. Fournette was more of a problem than a pro. And now the Jaguars (5-11) have to decide what to do with the fourth overall pick in the 2017 NFL draft. It's one of the main questions Jacksonville faces as it heads into an offseason that will be focused on revamping an offense that ranked 31st in the league in scoring. Coach Doug Marrone confirmed Monday that the team has voided the remaining guarantees in Fournette's four-year rookie contract worth $27.1 million. The team made the move following Fournette's weeklong suspension in late November. Fournette still could challenge the decision, which could cost him up to $7.1 million. At the very least, Fournette is now at risk of being cut or traded. No one would be surprised to see either happen after Sunday's season finale at Houston. Fournette and fellow running back T.J. Yeldon spent most of the 20-3 loss on the bench and disengaged from coaches and teammates. Fournette was inactive because of foot and ankle injuries; Yeldon was active but did not play. "It's disappointing what occurred the other day," Marrone said Monday. "We have taken care of it from a disciplinary standpoint, but like what I've always told you, those things remain between the club and the player." Personnel chief Tom Coughlin ripped both players for being "disrespectful" and "selfish." "Their behavior was unbecoming of a professional football player," Coughlin said in a statement. Fournette has missed 11 games in two seasons because of injuries and suspensions. The former LSU star ran for 439 yards and five touchdowns in eight games this season after running for 1,040 yards and nine touchdowns as a rookie. But he also was suspended one game in 2017 for leaving early during the bye week and suspended a week without pay for leaving the bench, running across the field and instigating a fight with Buffalo defensive end Shaq Lawson on Nov. 25. Fournette lost nearly $100,000 in salary during the weeklong suspension. It could cost him considerably more if the Jaguars decided to cut him with no guaranteed money remaining. "I definitely pride myself on trying to help some of the younger guys develop," veteran defensive end Calais Campbell said. "I do believe that he's a good person at heart and wants to be a good player. This is a unique situation, but I believe that he's going to continue to mature and hopefully be who we need him to be." Jaguars owner Shad Khan opted to keep Coughlin, Marrone and general manager Dave Caldwell intact for 2019 , giving them a chance to fix the team's problems. Jacksonville finished last in the AFC South after making the conference championship game last January, a freefall that could be blamed mostly on offensive injuries and ineptitude. Offensive coordinator Nathaniel Hackett was fired in November, creating one opening Marrone still has to fill. Quarterback Blake Bortles, who regressed in his fifth season and was benched, expects to be released before March. "When things don't go well, a lot of it falls on the quarterback's shoulders," Bortles said. "I know that and signed up for that and have no problem with it, whether it's a scapegoat or whatever you want to call it, somebody's got to take the blame when things don't go well. I think Nathaniel was one of those guys. I think I'm one of those guys. And I think other guys on this team were part of that as well." Right tackle Jermey Parnell, tight end Austin Seferian-Jenkins and running back Carlos Hyde could join Bortles in the free-agent market. Yeldon, receiver Donte Moncrief, right guard A.J. Cann and running back Corey Grant are soon-to-be free agents. So are eight reserve offensive linemen. So numerous changes are coming for Jacksonville's offense. And now Fournette's future looks as wobbly as one of Bortles' passes. "Availability, coachability and scheme," Marrone said when asked about the offensive makeover ahead. "When I talk about that, we have to do a better job with the players we have available. We have to do a better job if those players don't become available, what we're going to do next. I think that's an important thing when we look at it, and I think that was a mistake that I made this year."
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
316
[ 128000, 2677, 311, 3048, 2485, 1129, 391, 10189, 916, 14, 1419, 64, 26247, 914, 67, 1544, 68, 21330, 20, 51542, 16884, 17, 67, 23, 4749, 21598, 19, 68, 198, 41, 47820, 1590, 2010, 1139, 40972, 449, 15538, 27649, 389, 35174, 198, 1383, 18505, 35042, 33246, 220, 2148, 11, 220, 679, 23, 198, 6169, 482, 763, 420, 4723, 13, 220, 972, 11, 220, 679, 23, 11, 1052, 6685, 11, 49046, 70426, 4401, 1203, 41954, 435, 3514, 6672, 11, 2163, 11, 8640, 369, 20085, 425, 439, 568, 374, 10717, 555, 28627, 51555, 4994, 48800, 37235, 51383, 770, 11, 1314, 11, 2391, 279, 1176, 4376, 315, 459, 12873, 9141, 1847, 304, 49046, 11, 54297, 13, 362, 1732, 11537, 449, 279, 6671, 2795, 279, 49046, 70426, 617, 30316, 4401, 1203, 41954, 435 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2677, 311, 3048, 2485, 1129, 391, 10189, 916, 14, 1419, 64, 26247, 914, 67, 1544, 68, 21330, 20, 51542, 16884, 17, 67, 23, 4749, 21598, 19, 68, 198, 41, 47820, 1590, 2010, 1139, 40972, 449, 15538, 27649, 389, 35174, 198, 1383, 18505, 35042, 33246, 220, 2148, 11, 220, 679, 23, 198, 6169, 482, 763, 420, 4723, 13, 220, 972, 11, 220, 679, 23, 11, 1052, 6685, 11, 49046, 70426, 4401, 1203, 41954, 435, 3514, 6672, 11, 2163, 11, 8640, 369, 20085, 425, 439, 568, 374, 10717, 555, 28627, 51555, 4994, 48800, 37235, 51383, 770, 11, 1314, 11, 2391, 279, 1176, 4376, 315, 459, 12873, 9141, 1847, 304, 49046, 11, 54297, 13, 362, 1732, 11537, 449, 279, 6671, 2795, 279, 49046, 70426, 617, 30316, 4401, 1203, 41954, 435, -100 ]
//loan data used in pie charts function highLevelLoanData (){ var TotalYears, TotalMonths, TotalInterest, TotalCost; return { totalYears: function (n) { if (n) { TotalYears = n; } return TotalYears; }, totalInterest: function (n) { if (n) { TotalInterest = n; } return TotalInterest; }, totalCost: function (n) { if (n) { TotalCost = n; } return TotalCost; }, totalMonths: function (n) { if (n) { TotalMonths = n; } return TotalMonths; } }; } //loan data used in line charts function lowLevelLoanData (label){ var Label = label, Data = []; return { "label": Label, "data": Data }; } //full loan scenario - high and low level data come together to form this. var currentLoanScenario = (function(){ var WithoutExtraPayments = new highLevelLoanData(), WithExtraPayments = new highLevelLoanData(), LowLevelWithoutExtraPayments = { "interest": new lowLevelLoanData("Interest w/o Extra"), "principal": new lowLevelLoanData("Principal w/o Extra") }, LowLevelWithExtraPayments = { "interest": new lowLevelLoanData("Interest w/ Extra"), "principal": new lowLevelLoanData("Principal w/ Extra"), "extra": new lowLevelLoanData("Extra") }, AmountFinanced = 0; return { withoutExtraPayments: WithoutExtraPayments, withExtraPayments: WithExtraPayments, lowLevelWithoutExtraPayments: LowLevelWithoutExtraPayments, lowLevelWithExtraPayments: LowLevelWithExtraPayments, amountFinanced: function(n) { if (n) { AmountFinanced = n; } return AmountFinanced; } }; })(); /*Chart Interactions*/ function updatePieCharts(){ var withoutExtraSeriesData = [], withExtraSeriesData = []; //Populate pie showing interest without extra payments withoutExtraSeriesData.push({ color: "#F20707", data: parseFloat(currentLoanScenario.withoutExtraPayments.totalInterest()), label: "Interest" },{ color: "#20B818", data: parseFloat(currentLoanScenario.amountFinanced()), label: "Principal" }); pieChartWithoutExtra = $.plot($("#pieWithoutExtraPayments"), withoutExtraSeriesData, { series: { pie: { show: true } }, grid: { hoverable: true, autoHighlight: true }, legend: { margin: [-50, 10] } }); //Populate pie showing interest with extra payments withExtraSeriesData.push({ color: "#F20707", data: parseFloat(currentLoanScenario.withExtraPayments.totalInterest()), label: "Interest" }, { color: "#20B818", data: parseFloat(currentLoanScenario.amountFinanced()), label: "Principal" }); pieChartExtra = $.plot($("#pieWithExtraPayments"), withExtraSeriesData, { series: { pie: { show: true } }, grid: { hoverable: true, autoHighlight: true }, legend: { margin: [-50, 10] } }); $("#pieWithoutExtraPayments, #pieWithExtraPayments").bind("plothover", updatePieTooltip); } function updatePieTooltip(evt, pos, item){ $("#pieSliceTooltip").remove(); if(!item) { return; } $('<div id="pieSliceTooltip"></div>').css({ 'color': item.series.color, 'background-color': '#FCE6BD', 'position': 'absolute', 'top': pos.pageY+10, 'left': pos.pageX+10, 'font-weight': 'bold', 'font-size': '12px', 'padding': '5px', 'width': '150px', 'border': '1px solid ' + item.series.color, '-webkit-border-radius': '10px', 'border-radius': '10px', 'opacity': 0.90 }).html(item.series.label + ' accounts for ' + parseFloat(item.series.percent).toFixed(2) + '% of the total spent.') .appendTo("body").fadeIn(200); } function updateLineCharts(){ var tickSize, arrayLength = currentLoanScenario.withoutExtraPayments.totalYears(); if (arrayLength >= 25){ tickSize = 5; } else if (arrayLength >= 15){ tickSize = 2; } else { tickSize = 1; } var chartData = [ { //Interest w/ Extra color: "#19D4C7", data: currentLoanScenario.lowLevelWithExtraPayments.interest.data, label: currentLoanScenario.lowLevelWithExtraPayments.interest.label }, { //Interest w/o Extra color: "#F20707", data: currentLoanScenario.lowLevelWithoutExtraPayments.interest.data, label: currentLoanScenario.lowLevelWithoutExtraPayments.interest.label }, { //Principal w/ Extra color: "#CB42E3", data: currentLoanScenario.lowLevelWithExtraPayments.principal.data, label: currentLoanScenario.lowLevelWithExtraPayments.principal.label }, { //Principal w/o Extra color: "#20B818", data: currentLoanScenario.lowLevelWithoutExtraPayments.principal.data, label: currentLoanScenario.lowLevelWithoutExtraPayments.principal.label }, { //Extra Payments color: "#283FEB", data: currentLoanScenario.lowLevelWithExtraPayments.extra.data, label: currentLoanScenario.lowLevelWithExtraPayments.extra.label } ]; lineChart = $.plot($("#lineWithExtraPayments"), chartData, { series: { lines: { show: true }, points: { show: true } }, grid: { hoverable: true //, // labelMargin: 40 }, legend: { margin: [-180, 10] }, yaxis: { labelWidth: 40, reserveSpace: true }, xaxis: { tickSize: tickSize, tickFormatter: function(val, axis){ return parseInt(val); }, reserveSpace: true } }); var previousPoint = null; $("#lineWithExtraPayments").bind("plothover", function (event, pos, item) { if (!item) { $("#lineChartToolTip").remove(); previousPoint = null; } else { if (previousPoint != item.dataIndex){ previousPoint = item.dataIndex; $("#lineChartToolTip").remove(); var xYear = item.datapoint[0].toFixed(2), yValue = item.datapoint[1].toFixed(2); showLineChartToolTip(pos.pageX, pos.pageY, item.series.label + ': $' + parseFloat(yValue).toFixed(2) + ' in ' + parseInt(xYear), item.series.color); } } }); } function showLineChartToolTip(posX, posY, content, itemColor){ $('<div id="lineChartToolTip"></div>').css({ 'color': itemColor, 'background-color': '#FCE6BD', 'position': 'absolute', 'top': posY+10, 'left': posX+10, 'font-weight': 'bold', 'font-size': '12px', 'padding': '5px', 'width': '150px', 'border': '1px solid ' + itemColor, '-webkit-border-radius': '10px', 'border-radius': '10px', 'text-align': 'center', 'opacity': 0.90 }).html(content) .appendTo("body").fadeIn(200); }
{ "redpajama_set_name": "RedPajamaGithub" }
4,326
[ 128000, 322, 39429, 828, 1511, 304, 4447, 27223, 198, 1723, 1579, 4549, 72355, 1061, 41753, 262, 767, 10884, 55519, 345, 286, 10884, 60284, 345, 286, 10884, 35656, 345, 286, 10884, 15289, 401, 262, 471, 341, 286, 2860, 55519, 25, 734, 320, 77, 8, 341, 310, 422, 320, 77, 8, 341, 394, 10884, 55519, 284, 308, 280, 310, 557, 310, 471, 10884, 55519, 280, 286, 1173, 286, 2860, 35656, 25, 734, 320, 77, 8, 341, 310, 422, 320, 77, 8, 341, 394, 10884, 35656, 284, 308, 280, 310, 557, 310, 471, 10884, 35656, 280, 286, 1173, 286, 2860, 15289, 25, 734, 320, 77, 8, 341, 310, 422, 320, 77, 8, 341, 394, 10884, 15289, 284, 308, 280, 310, 557, 310, 471, 10884, 15289, 280, 286, 1173, 286, 2860, 60284 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 322, 39429, 828, 1511, 304, 4447, 27223, 198, 1723, 1579, 4549, 72355, 1061, 41753, 262, 767, 10884, 55519, 345, 286, 10884, 60284, 345, 286, 10884, 35656, 345, 286, 10884, 15289, 401, 262, 471, 341, 286, 2860, 55519, 25, 734, 320, 77, 8, 341, 310, 422, 320, 77, 8, 341, 394, 10884, 55519, 284, 308, 280, 310, 557, 310, 471, 10884, 55519, 280, 286, 1173, 286, 2860, 35656, 25, 734, 320, 77, 8, 341, 310, 422, 320, 77, 8, 341, 394, 10884, 35656, 284, 308, 280, 310, 557, 310, 471, 10884, 35656, 280, 286, 1173, 286, 2860, 15289, 25, 734, 320, 77, 8, 341, 310, 422, 320, 77, 8, 341, 394, 10884, 15289, 284, 308, 280, 310, 557, 310, 471, 10884, 15289, 280, 286, 1173, 286, 2860, 60284, -100 ]
Eastman Shop is a Venture of Eastman Group of Companies, Now; you can buy Eastman Hand tools online with same quality at best price with doorstep delivery option. Eastman is the leading brand in manufacturing hand tools, power drills, batteries, and gardening tools. Shopping machinery and accessories online is a great option for those people living in villages and they don't want to spend their time in market crowd. So, they can shop online because 70% of peoples have internet access in their mobiles and smartphones. In the modern world of technology, e-commerce is becoming very significant option for many businesses. There are lots of companies that are interested in developing their business online. With an increasing requirement of online shopping, Day by day businesses are moving to online stores from grocery to clothing even hand tools and machinery are also one step ahead in this race. An Eastman Hand tools is also one from them which is specially dealing in spanners, wrenches power drills, automotive batteries, farm parts and tractor parts etc. The Company has recently launched e-commerce website for selling hand tools and power tools accessories online in India. Now, anyone can buy mechanical instruments online with same quality and trust. Our satisfied O.E.M customers are TATA, Mahindra, Ashok Leyland, EICHER, Hero, TAFE, NEW HOLLAND, JOHN DEERE, SWARAJ etc. We at Eastman hand tools is a manufacturing company in Ludhiana, Punjab is pleasure introduce ourselves as quality manufacturer and supplier since 1986. Our manufacturing is based on Taiwanese and Indian technology to get optimum results and effectiveness. Our manufacturing is confirmed to international standards and we export them to more than 36 countries across the world including South America, Russia, Europe, Middle East and Africa etc. We have range of products in hand tools and power tools including, spanners, water pump pliers, wrenches, grease guns, oil cans, Allen keys, ratchet, electric drills, screw drivers, pressure washer, vacuum cleaner etc. We deliver goods on time to our new and valued customers. Customer can place order anytime 24/7 through our online website or also call to our sales expert for orders. EastmanShop.com is venture of Eastman Group of Companies. Buy Eastman Hand Tools and Power Tools online with same quality and trust with doorstep delivery option. Tarpaulins or tarps can be used in number of situations. In terms of features, tarpaulins are big, strong fabric sheets that are generally waterproof.
{ "redpajama_set_name": "RedPajamaC4" }
9,700
[ 128000, 37440, 1543, 14355, 374, 264, 71474, 315, 6460, 1543, 5856, 315, 32886, 11, 4800, 26, 499, 649, 3780, 6460, 1543, 8704, 7526, 2930, 449, 1890, 4367, 520, 1888, 3430, 449, 76977, 9889, 3072, 13, 6460, 1543, 374, 279, 6522, 6883, 304, 15266, 1450, 7526, 11, 2410, 57648, 11, 27360, 11, 323, 60299, 7526, 13, 30064, 26953, 323, 23090, 2930, 374, 264, 2294, 3072, 369, 1884, 1274, 5496, 304, 33889, 323, 814, 1541, 956, 1390, 311, 8493, 872, 892, 304, 3157, 13734, 13, 2100, 11, 814, 649, 8221, 2930, 1606, 220, 2031, 4, 315, 32538, 617, 7757, 2680, 304, 872, 6505, 82, 323, 36122, 627, 644, 279, 6617, 1917, 315, 5557, 11, 384, 42685, 374, 10671, 1633, 5199, 3072, 369, 1690, 9873, 13, 2684, 527, 10283, 315, 5220 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 37440, 1543, 14355, 374, 264, 71474, 315, 6460, 1543, 5856, 315, 32886, 11, 4800, 26, 499, 649, 3780, 6460, 1543, 8704, 7526, 2930, 449, 1890, 4367, 520, 1888, 3430, 449, 76977, 9889, 3072, 13, 6460, 1543, 374, 279, 6522, 6883, 304, 15266, 1450, 7526, 11, 2410, 57648, 11, 27360, 11, 323, 60299, 7526, 13, 30064, 26953, 323, 23090, 2930, 374, 264, 2294, 3072, 369, 1884, 1274, 5496, 304, 33889, 323, 814, 1541, 956, 1390, 311, 8493, 872, 892, 304, 3157, 13734, 13, 2100, 11, 814, 649, 8221, 2930, 1606, 220, 2031, 4, 315, 32538, 617, 7757, 2680, 304, 872, 6505, 82, 323, 36122, 627, 644, 279, 6617, 1917, 315, 5557, 11, 384, 42685, 374, 10671, 1633, 5199, 3072, 369, 1690, 9873, 13, 2684, 527, 10283, 315, 5220, -100 ]
pensivania coal crusher vander thaiand rock, philippines chromite mines, philippine used ore crusher for sale,stone crusher indonesia, pensivania coal crusher vander thaiand, Chat Online. McLanahan. Crusher William Thailandcrusher Wilson California. CS Cone Crusher; Flotation Machine; Hammer Crusher; . crusher william thailandcrusher wilson california. pensivania coal crusher vander thaianddcluster . pensivania coal crusher vander thaiand. the a and other crusher the company in india, australia,japan,german can product the crusher and grinding mill. Pensivania Coal Crusher Vander Thaiand. Coal powders mining machine Thailand,Coal . Chat With Sales. maksud coal mining biddingNewest Crusher, . Pensivania Coal Crusher Vander Thaiand. Fine Coal kira-kira apa ya, ... gnmca pennsylvania crusherassetplus.in. Pensivania coal crusher vander thaiand. stone crusher and quarry plant in fort myers … This page is about stone crusher and quarry plant in fort myers florida united states, ... pensivania coal crusher vander thaiand. Coalpactors by Pennsylvania Crusher Brand TerraSource Global. Coalpactors&#; effectively reduce the size of coals and are ideally suited for fluid bed boiler plants. Coalpactors by Pennsylvania Crusher BrandTerraSource… Our engineers specifically designed TerraSource Global&#;s Pennsylvania Crusher Coalpactor to work with wet or low grades of coal. PENSIVANIA COAL crusher VANDER THAIAND. pensivania coal crusher vander thaiand coal mining company in coal,, A rush for green gold in the heart of Pa.
{ "redpajama_set_name": "RedPajamaC4" }
4,619
[ 128000, 79, 729, 344, 9345, 11756, 7965, 348, 8363, 18420, 438, 7091, 11, 81004, 22083, 635, 34757, 11, 10891, 2877, 483, 1511, 16536, 7965, 369, 6412, 11, 11046, 7965, 85478, 11, 23423, 344, 9345, 11756, 7965, 348, 8363, 18420, 438, 11, 13149, 8267, 13, 46707, 276, 22826, 627, 16384, 52780, 12656, 30567, 5192, 52780, 17882, 7188, 13, 10211, 47512, 16598, 26, 3061, 11867, 13257, 26, 37994, 16598, 26, 662, 7965, 690, 5038, 270, 26240, 5192, 52780, 31331, 942, 79957, 13, 23423, 344, 9345, 11756, 7965, 348, 8363, 18420, 438, 67, 19386, 16853, 79, 729, 344, 9345, 11756, 7965, 348, 8363, 18420, 438, 13, 279, 264, 323, 1023, 7965, 279, 2883, 304, 28811, 11, 44332, 10540, 5472, 11, 1414, 1543, 649, 2027, 279, 7965, 323, 17282, 2606, 627, 47 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 79, 729, 344, 9345, 11756, 7965, 348, 8363, 18420, 438, 7091, 11, 81004, 22083, 635, 34757, 11, 10891, 2877, 483, 1511, 16536, 7965, 369, 6412, 11, 11046, 7965, 85478, 11, 23423, 344, 9345, 11756, 7965, 348, 8363, 18420, 438, 11, 13149, 8267, 13, 46707, 276, 22826, 627, 16384, 52780, 12656, 30567, 5192, 52780, 17882, 7188, 13, 10211, 47512, 16598, 26, 3061, 11867, 13257, 26, 37994, 16598, 26, 662, 7965, 690, 5038, 270, 26240, 5192, 52780, 31331, 942, 79957, 13, 23423, 344, 9345, 11756, 7965, 348, 8363, 18420, 438, 67, 19386, 16853, 79, 729, 344, 9345, 11756, 7965, 348, 8363, 18420, 438, 13, 279, 264, 323, 1023, 7965, 279, 2883, 304, 28811, 11, 44332, 10540, 5472, 11, 1414, 1543, 649, 2027, 279, 7965, 323, 17282, 2606, 627, 47, -100 ]
I recently bought a chinese dynamo lighting system (Elephant brand) and the equipment has worked wonderful so far. However, I am getting extremely worried at the amount of vibration my headlamp has to take whenever I ride. Is there anything that I can put/install on the lamp screws that can significantly reduce this potentially damaging vibration? Perhaps some rubber between the screw and the nut? Vintage lamps used a sprung pantograph to dampen vertical impacts and vibration. That's probably overkill for you, and possibly something as simple as a bolt through 2 rubber grommets will do. Remember that the rubber must be relatively uncompressed to do it's job as a vibration dampener, so you'll need to be a bit creative to improvise something that maintains the light's angle, while allowing some float. Thanks for your imput. I will try the rubber grommets.
{ "redpajama_set_name": "RedPajamaC4" }
3,338
[ 128000, 40, 6051, 11021, 264, 57487, 18003, 78, 18186, 1887, 320, 46439, 28022, 6883, 8, 323, 279, 7241, 706, 6575, 11364, 779, 3117, 13, 4452, 11, 358, 1097, 3794, 9193, 18290, 520, 279, 3392, 315, 48913, 856, 2010, 95857, 706, 311, 1935, 15716, 358, 12141, 13, 2209, 1070, 4205, 430, 358, 649, 2231, 58051, 389, 279, 29062, 46022, 430, 649, 12207, 8108, 420, 13893, 34446, 48913, 30, 19292, 1063, 23506, 1990, 279, 22733, 323, 279, 10184, 5380, 89567, 50552, 1511, 264, 92310, 26346, 3257, 311, 41369, 268, 12414, 25949, 323, 48913, 13, 3011, 596, 4762, 927, 11088, 369, 499, 11, 323, 11000, 2555, 439, 4382, 439, 264, 32942, 1555, 220, 17, 23506, 342, 442, 76, 1441, 690, 656, 13, 20474, 430, 279, 23506, 2011, 387, 12309, 93482, 311 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 40, 6051, 11021, 264, 57487, 18003, 78, 18186, 1887, 320, 46439, 28022, 6883, 8, 323, 279, 7241, 706, 6575, 11364, 779, 3117, 13, 4452, 11, 358, 1097, 3794, 9193, 18290, 520, 279, 3392, 315, 48913, 856, 2010, 95857, 706, 311, 1935, 15716, 358, 12141, 13, 2209, 1070, 4205, 430, 358, 649, 2231, 58051, 389, 279, 29062, 46022, 430, 649, 12207, 8108, 420, 13893, 34446, 48913, 30, 19292, 1063, 23506, 1990, 279, 22733, 323, 279, 10184, 5380, 89567, 50552, 1511, 264, 92310, 26346, 3257, 311, 41369, 268, 12414, 25949, 323, 48913, 13, 3011, 596, 4762, 927, 11088, 369, 499, 11, 323, 11000, 2555, 439, 4382, 439, 264, 32942, 1555, 220, 17, 23506, 342, 442, 76, 1441, 690, 656, 13, 20474, 430, 279, 23506, 2011, 387, 12309, 93482, 311, -100 ]
New details on Mystery Box, splitscreen, perks, and more from Zombies Director Jason Blundell. It's hard to believe, but this year marks a full decade since the release of Call of Duty: World at War… and along with it, Treyarch's very first Zombies experience: Nacht der Untoten. The rest is, as they say, history. With a new Blood of the Dead trailer burbling out of the Comic-Con murk yesterday, we put out the call to PlayStation fans for their questions (I snuck in a few, too) and send them off to Treyarch via carrier pigeon. Though Treyarch is traditionally tight-lipped around Zombies details, Black Ops 4 is shipping with three radically different Zombies experiences on day one… so Zombies Director Jason Blundell graciously pulled back the curtain to give us a peek. Did Shadows of Evil (Call of Duty: Black Ops III) influence the design decisions or flow of any of the new Black Ops 4 Zombies maps? Jason Blundell, Director, Zombies at Treyarch: Shadows was one of the maps where we really tried to challenge expectations – not just regarding time-period and tone, but also through the sheer scale and variety of the environment. More significantly it was also a new cast of characters, so in that sense, Shadows – along with the original Mob of the Dead – was one of the maps that gave us the confidence to take the narrative outside of the Aether timeline. Voyage of Despair – how does this setting and time period fit into the overall Zombies mythos? It seems like quite a departure. IX is probably the biggest departure we could imagine for a Zombies map. How did the concept of a Roman gladiator setting come together? JB: Again – it's about moving away from traditional battle locations, and into something visually exciting that we've never really explored before. Aesthetics aside, there are of course significant narrative reasons why the characters are there, and what that experience will mean for their individual journeys, and for the story as a whole. JB: Yes. The Chaos and Aether stories are completely disconnected from each other. JB: The new characters are all linked through their respective relationships with an eccentric adventurer called Alistair Rhodes. After he gets into trouble with the game's antagonists, his daughter Scarlett brings the crew together. As to whether they are good or bad, that's something we want to leave for the fans to discover. As with a lot of Treyarch's characters, the answer is never quite that straightforward! JB: Aside from being a very different story – one that fills a very specific gap in the Aether timeline – the environment has been significantly expanded, with all-new Easter Eggs and quests. So, while players will encounter elements familiar from the original Mob, they won't have too much of an advantage when it comes to surviving and uncovering the level's secrets! JB: As with previous games, the arsenal will be largely drawn from other game modes, but there will be some unique additions made as the season progresses. JB: The biggest change to perk functionality comes down to customization. In Black Ops 4 zombies, players will be able to choose the perks that will be available at each of the Altar locations prior to starting the level. This will present some interesting strategies, particularly when it comes to co-op. The Mystery Box is a classic Zombies trope. Will it see any new wrinkles for Black Ops 4? JB: Yes. One example I can mention is that it's now possible to decline taking a weapon from the box, but offer your team mates the opportunity to take it instead. Voyage of Despair seems to introduce class-based characters for the first time — how do the four different characters stack up? What are their strengths and weaknesses? JB: They're not 'classes' as such, as the characters are all capable of the same physical actions, and weapon handling, so the differences really come from their personalities and role in the overall story. On a similar note: will we see new enemy types that play off the different character abilities? JB: Defeating the new enemy types will indeed require different strategies, but those strategies relate to the actual weapons being used, rather than the characters wielding them. Will Zombies support local splitscreen play? What work is Treyarch putting into the new bot support? Any design goals you can share? JB: We don't want the bots to play the game for you, so they won't solve Easter Eggs! They will however allow everyone to experience dialogue and narrative elements that solo players traditionally miss out on. Also revealed during Treyarch's Comic-Con panel yesterday — the Call of Duty: Black Ops 4 Mystery Box Edition, which comes with a ton of collectible items, a puzzle, Darkhorse Zombies comic, lithographs, Steelbook and more. Click here for more info. Have you guys ever considered taking the practices of other devs by making all maps free and only charging for cosmetic dlc..it seems to work very well, take GTA for example. I was really looking forward to this game especially since I was wanting a new competitive shooter for the season but looks like I'll have to wait for something else since the practices being made and the fact it seems like a step backwards making it boots on the ground and hand having no wall run. Will there be any changes made to the Afterlife ability that replaced Quick Revive in MoTD? Looks aaawesome! Can't wait to get my hands on our our recently upgraded to Mystery Box Edition.
{ "redpajama_set_name": "RedPajamaC4" }
4,428
[ 128000, 3648, 3649, 389, 49105, 8425, 11, 41567, 2240, 11, 58286, 11, 323, 810, 505, 89937, 10783, 18984, 2563, 1263, 616, 627, 2181, 596, 2653, 311, 4510, 11, 719, 420, 1060, 15785, 264, 2539, 13515, 2533, 279, 4984, 315, 7290, 315, 36689, 25, 4435, 520, 5111, 1981, 323, 3235, 449, 433, 11, 82560, 1132, 596, 1633, 1176, 89937, 3217, 25, 99459, 2761, 15448, 66728, 13, 578, 2800, 374, 11, 439, 814, 2019, 11, 3925, 627, 2409, 264, 502, 20671, 315, 279, 15371, 19809, 7951, 9894, 704, 315, 279, 41063, 58848, 8309, 74, 13985, 11, 584, 2231, 704, 279, 1650, 311, 32365, 7359, 369, 872, 4860, 320, 40, 4224, 1983, 304, 264, 2478, 11, 2288, 8, 323, 3708, 1124, 1022, 311, 82560, 1132, 4669, 19115, 93644, 627, 27831, 82560 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 3648, 3649, 389, 49105, 8425, 11, 41567, 2240, 11, 58286, 11, 323, 810, 505, 89937, 10783, 18984, 2563, 1263, 616, 627, 2181, 596, 2653, 311, 4510, 11, 719, 420, 1060, 15785, 264, 2539, 13515, 2533, 279, 4984, 315, 7290, 315, 36689, 25, 4435, 520, 5111, 1981, 323, 3235, 449, 433, 11, 82560, 1132, 596, 1633, 1176, 89937, 3217, 25, 99459, 2761, 15448, 66728, 13, 578, 2800, 374, 11, 439, 814, 2019, 11, 3925, 627, 2409, 264, 502, 20671, 315, 279, 15371, 19809, 7951, 9894, 704, 315, 279, 41063, 58848, 8309, 74, 13985, 11, 584, 2231, 704, 279, 1650, 311, 32365, 7359, 369, 872, 4860, 320, 40, 4224, 1983, 304, 264, 2478, 11, 2288, 8, 323, 3708, 1124, 1022, 311, 82560, 1132, 4669, 19115, 93644, 627, 27831, 82560, -100 ]
Search Counterstream Radio All People and Projects Amplifying Voices Capacity Building Program New Music Creator Fund Next Jazz Legacy New Music Organizational Fund Reel Change Film Fund Small Grant Fund Impact Fund (Previous Program) Music Alive (Previous Program) New Music Solidarity Fund (Previous Program) Project Grants (Previous Program) Counterstream Radio NewMusicBox All Articles and Interviews Different Cities, Different Voices Guest Editor Series: dublab LooseLeaf NoteBook New Music Toolbox / How-Tos SoundLives Counterstream Counterstream Radio is your online home for exploring the music of America's composers. Drawing upon New Music USA's substantial library of recordings, our programming is remarkable for its depth and eclecticism. The station streams influential music of many pedigrees 24 hours a day. Keep listening and discover the sound of music without limits. Click here to open Counterstream Radio. Tag: rediscovery In Search of Robert Palmer Posted on April 24, 2019 by Adam Tendler - Analysis, Articles, NewMusicBox It was after midnight, the recording session was in two days, and the AirBnB I had booked wasn't nearly as close to downtown as it had promised. The last time I came to Ithaca, New York, to look through Robert Palmer's archive—months ago, just before my first Palmer recording session—I stayed in a nondescript house just next to the Cornell campus, its walls breathing generations of college students. I had easily grabbed my key out of an unlocked mailbox in the entryway. This place, however, was somewhere in the fields surrounding Ithaca, farm country that betrays nothing of the fabled town just a few miles down the road. I stumbled in the dark trying to find the host's key using my iPhone flashlight. It wasn't the first time I wondered what the hell I was doing out here, hours from New York City, upsetting my schedule, eating Burger King and keeping the receipts—for what? To see if such-and-such note had a sharp next to it? Well, yes. And to snoop through his letters. By 1 a.m. I was in bed, absorbing the soft intrusiveness I always feel when staying in an AirBnB, when I heard a pounding at the door. I thought it might be my imagination until it came again. Pounding. This is how I die, I thought. For Robert Palmer. The pounding came again. I crept to the door. "Yes?" Am I ready to die in Ithaca? A man's voice answered, saying I had left my rental car's lights on. I went outside to meet him. He held a can of Bud Light Lime-A-Rita. The car was dark. "I guess they go off automatic," he said. Perpetually an underdog, most biographical summaries written during his lifetime acknowledge how seldom Palmer's music ever saw performance even then, and yet I'm one of a motley crew of artists who have been drawn to his work. Robert Palmer lived between 1915-2010, mostly in upstate New York. He produced more than 90 works, was a Guggenheim Fellow, a Fulbright Scholar, a National Endowment for the Arts grant recipient, and the first American composer published by Edition Peters, the publisher later associated with John Cage and the most experimental of modernists. His star rose in the 1940s and '50s after a string of energetic, introspective, "metaphysical" works, as Aaron Copland called them, driven by a strong emotional current and built with complex counterpoint and layers of tight rhythmic structures. Hindemith meets Bartók meets Brahms meets Lou Harrison meets… The relative obscurity that followed his promising debut is as puzzling as one wishes to make it. It could be as simple as his reputation soaring just as the focus of contemporary music shifted toward the seductions of serialism, chance, and minimalism, with Palmer eclipsed and his listeners fractured amidst a world of new curiosities. He might never have been as famous as mid-century tonalists such as William Schuman, David Diamond, or Roy Harris (a brief teacher of his), but they all suffered relatively the same fate. Perpetually an underdog, most biographical summaries written during his lifetime acknowledge how seldom Palmer's music ever saw performance even then, and yet I'm one of a motley crew of artists who, since the late 1930s, have been drawn to his work. Pianist John Kirkpatrick, himself skyrocketing to fame after premiering Charles Ives's Concord Sonata, became a kind of pen pal, coach, and the first real ambassador of Palmer's music, to whom the earliest scores are all dedicated. Palmer, at the time, was an Eastman School of Music graduate and grocery store clerk. Copland included him on his famed 1948 list of seven composers who were "the best we have to offer," which also included Cage, Lukas Foss, and Leonard Bernstein. Elliott Carter called Palmer's music "firm and definite; its dissonance resembles that of younger Europeans whom we never hear in this country," while describing its "impressive seriousness and great musicality." Yvar Mikhashoff, a pianist equally at home with the pioneers of American music as he was with David Lang, recorded and commissioned Palmer, while Palmer's piano music was also performed by classically-bent virtuosos like William Kapell and Claudio Arrau. Julius Eastman played Palmer's Three Epigrams on his Town Hall debut (the piece was mentioned in the resulting New York Times review) and later approached pianist Joseph Kubera to play his Sonata for Two Pianos. "Robert Palmer's the man," Joe remembers him saying. Kyle Gann blogged about him in 2014, and one year later Steven Stucky wrote a memorial in his honor on this very website. I first heard Robert Palmer's music as a teenager on a scratchy live recording … I would dance to this piece in front of the mirror as if singing into a hairbrush. I first heard Robert Palmer's music as a teenager on a scratchy live recording by the aforementioned William Kapell, the first pianist I ever fell in love with, playing the Toccata Ostinato (1945). I would dance to this piece in front of the mirror as if singing into a hairbrush. Despite the poor sound quality, the subdued applause, and an electrifying but imperfect performance that ended with an exasperated cluster across the keys—and how I hoped that the score called for such an ending (it doesn't)—I was hooked. Long before finding a score required but a few clicks, I hunted for months, and when the music finally appeared in the mail, I already felt like a detective discovering clues. It turns out that Palmer had dedicated the piece to Kapell before the pianist's tragic death in a plane crash. I later discovered that he played it perhaps only twice, including that recorded performance. It looked fiendish to play. I didn't touch it for years. When I decided to finally hunker down and learn the Toccata, it was to serve as an encore for an otherwise meditative recital program. People would approach me after the concert wanting to know nothing about the proper program, but only about Palmer, my encore. Realizing I had nothing to tell them, I started to scratch around for even the most basic information. So began the trip down the rabbit hole that found me, years later, in a bed somewhere outside Ithaca as a stranger pounded on the front door with a Lime-a-Rita. I scoured the internet for Palmer paraphernalia. He wasn't unpublished, after all, and several scores remain in print by Presser, Peer, and Peters. But many scores—including some of the most interesting—are out of print or were never published at all. I later discovered in his letters that Palmer attempted to publish his sublime Second Piano Sonata, composed in the mid-1940s, as late as the 1980s, with no luck. It's a masterpiece, and as of this writing remains in his own hand in the Cornell manuscripts archive. I ordered whatever works I could find online and began having others scanned from Cornell. Each one seemed like a revelation, some incredible secret that I had personally discovered (of course I hadn't) and was eager to share. These pieces, as I saw it, should have been part of the core American piano repertory. The music was as difficult as it was exhilarating to play. I would fall back from the piano after certain pieces laughing, sweating and exhausted, like stumbling off of a roller coaster. After others I'd sit in stunned silence, my eyes welling and my heart aching. I could already tell that the payoff in learning this music would be worth the work, and started programming Palmer's music whenever I could. Realizing that so little had been recorded, I also started thinking about making an album, though like most of my big ideas, I didn't know how or where to start. In 2015 I visited Yale to sift through Palmer's materials in John Kirkpatrick's archive. In his letters to Kirkpatrick, I met a man who, sentence to sentence, swung from insecure to confident, pious to prideful, who would confess his demons as much as guard them. He scorned allies, Copland and Carter in particular, for their so-called "decadent" tastes, all too ready to burn important bridges on artistic principle. He casually mentioned in one letter that the military had permanently disqualified him from service "for psychological reasons," and in the same breath reported that this would free him up creatively for the coming year. That, along with his vague, coded language about intimacy and a kind of crippling shyness has led at least one researcher (in a book about Kirkpatrick, as it were) to queer Palmer. Looking through the same letters and many more, and being quite familiar with the closet myself, I'm not totally convinced. Still, it came as a relief when Palmer's stoic facade, which seemed so unlike his heart-on-his-sleeve, red-blooded music, began to melt. Suddenly the music, and my attraction to it (and to him), made a little more sense. But I still couldn't figure him out nor ascertain why his work vanished from concert halls. Should Palmer have better networked his way into history? Is that a thing? Or was he just happy enough teaching at Cornell, in the country's first PhD composition program, which he indeed had created? It's a life that satisfied him, after all—"I liked teaching!" he said in a late interview—even if it was a life that may not have satisfied others. Copland wrote, "Too much of [Palmer's] energy has gone into his teaching… but teaching is a familiar disease of the American composer." Or perhaps he was just too scattered and immature for the limelight, destined "to be permanently a child," as he phrased it in one anguished letter. (This, too, has been read as a code for queer.) Kirkpatrick, in a conspicuously missing letter, had apparently challenged him on his decision to marry so young. Palmer wrote back, "I hope you will be more specific in exactly how… I am young for 24. It will help me to help myself, and I am the only one who can help." For Palmer, self-betterment and musical perfection seemed to go hand in hand. He did mature and did change, at least stylistically, perhaps to the disappointment of others. Many, including myself, have sensed that the breathless momentum and passion of his music, the quality that attracted such early attention, began to cool as he, well… grew up. I read several letters in which performers pined for the old days when Palmer's music came out as a flood of notes, impulsive and intense, with hardly a rest. Did he feel like he "overshared" in his earlier works, and thus distanced himself in later ones? Did he feel the intellectual heat from his contemporaries, a self-imposed pressure to "smarten up" music that, I assure you, was already tied in intellectual pretzels? Or did his style… simply change? We all change! And sometimes audiences drift. Eventually I approached a record label about Robert Palmer. There was no strategy to my label choice; I simply knew the name. They said yes, and I was elated. I filled out a grant application and the label applied for it on our behalf. We got the grant, and I was elated again. The label, however, also required a "sponsorship fee"—not unusual in classical music. I'd heard about this from other artists but naively thought it couldn't possibly apply to my Palmer project. It did, and the grant funds didn't even cover that cost, leaving me with less-than-zero to pay for the actual recording. Whenever anyone asked, I'd say the Palmer album was stalled. In truth, I considered it dead. A couple years went by when one Sunday evening I volunteered to turn pages for Joseph Kubera, now a friend, at a private New World Records pre-recording concert. Paul Tai, the director of the label, asked about the state of the Palmer project, which I had told him about in its earliest days. I explained the situation, knowing by now that New World would have been the perfect home for the album. "Ask them to release the project," he suggested, regarding the original label. I laughed at the idea. They'd never go for that, I argued, and besides, the grant funds had surely expired. "Ask your granter to extend the deadline," he suggested again. He made no promises, and it all seemed quite crazy, but also I had nothing to lose. I reached out and, to my astonishment, both the label and granter agreed to my requests. Once the coast was clear, New World took over. Legendary producer Judith Sherman signed on, and we would record at the American Academy of Arts and Letters with Steinway providing the pianos. My brilliant friend Daniel Johnson would write the liner notes, and in a perfect full-circle moment, Kubera agreed to play the Sonata for Two Pianos that Julius Eastman had once asked to play with him. He used Eastman's score, his fingerings still penciled in. The album went from doomed to best-case scenario. By summer 2018, I had the program learned for what would be the first of two recording sessions—the second taking place in the fall—and went to Ithaca to finally visit the Palmer archive. I hadn't sat with Palmer's actual papers since my visit to Yale three years earlier. It was worth the drive, the overnight stay, the upturned schedule, and the loss of practice time, because where else could I see that he wanted me to "slam [the] hell out of" that one chord in the First Piano Sonata (1939/40)? Where else could I see Ned Rorem's West Village address scrawled on a program at the Tanglewood premiere of Peter Grimes? Where else could I feverishly snap pictures of scores that exist, as of this writing, only in that archive, or see Palmer's self-penned autobiography? I slowly drove by what was once his humble home, where he had lived since moving to Ithaca in the early 1940s. I wondered if the people inside knew a composer once lived there, one of Copland's "best we have to offer." I met his old friends, folks who still called him Bob. "This guy's recording Bob's music!" said one of them to a co-worker. I met his daughter and son-in-law, and listened to their stories—like the time Palmer accidentally received a royalty check for the other, "Addicted to Love" Robert Palmer. He was furious, they said, but couldn't have been surprised to see the royalties this other Palmer earned. Despite apparent urgings, the composer Robert Palmer resisted adding his middle name to separate himself from the pop star. "He hated his middle name," his daughter told me, and I recalled seeing in the archive that Palmer had crossed a line through his middle name when editing an encyclopedia entry that included it, just as his Wikipedia entry currently does. Palmer has remained to me throughout this process a kind of mystery, and I've tried to strike a balance between respectful and nosey when it comes to fleshing out the man. A week later I was sitting at a grand piano on the darkened stage at the American Academy of Arts and Letters on the first morning of the first recording session of the first-ever album devoted solely to Palmer's piano works. Judy's voice came through a speaker a few feet from the piano. "Ready when you are!" It was a long way from dancing in front of the mirror to Toccata Ostinato. Palmer has remained to me throughout this process a kind of mystery, and I've tried to strike a balance between respectful and nosey when it comes to fleshing out the man. When his daughter and son-in-law met me for smoothies after my first Cornell visit, I confessed that it felt funny talking to her after having spent the afternoon reading the passionate letters her father wrote her mother during their courtship, often marked by his paralyzing loneliness. When she alluded to her father being complicated, I didn't ask for details, though I recently asked her over email about his favorite Christmas traditions, his favorite restaurant, his politics, his religious beliefs. Did he teach her piano? But considering the many people I've prodded for memories, few say very much, maybe because Palmer himself didn't say very much. "He was quiet till he got going," clarified his son-in-law, "Then watch out." I regret not putting a few follow-up questions to composer Steve Stucky when we met one morning for breakfast to talk about Palmer, about a year before Stucky's own untimely passing. I wish, just a couple of times, I'd asked, "What do you mean by that?" I wish when I first heard Palmer's music as a teenager that I had reached out, instead of functioning under the assumption that all composers were famous and needed no advocates, let alone fan mail. And I'd already learned Toccata Ostinato in 2010, the year Palmer passed away. He had suffered a stroke and couldn't speak, "but he could still play the piano," I was told. In my imagination I might have found a way to tell him, in those last years, that I loved his music and would find a way to share it. He might have liked that. Palmer's last big project was a Concerto for Two Pianos, Double Strings, Double Percussion and Symphonic Brass. Despite National Endowment for the Arts funding and dreams of a Pulitzer, the project was abandoned in a stack of sketches. But I remember staring at those numbered pages, black with pencil—even a stage scheme—thinking: He's the only one who knew what this all sounded like. Part of my impulse to record Palmer's work, particularly as the new music community challenges itself, rightly, to gaze beyond the white male composer archetype (of which Palmer certainly qualifies) is because the life of Palmer, and fate of Palmer, and the puzzling, inscrutable, what-happened-ness of Palmer, is something every creative person I know wrestles with every day. We rage against our work vanishing in the face of indifference, but mostly feel our way in the dark, finding our AirBnB keys with an iPhone flashlight in the middle of nowhere. Palmer's story would be a cautionary tale if only we knew what we were cautioning against. Meanwhile, I'm hard-pressed to think of a composer who lived as strongly by his own creative convictions. The life of Palmer, and fate of Palmer, and the puzzling, inscrutable, what-happened-ness of Palmer, is something every creative person I know wrestles with every day. We rage against our work vanishing in the face of indifference. Whether our work is well established, gaining attention, facing oblivion, or long forgotten, we in the new music community find ourselves adrift in the same capricious tide of history. Part of our shared role in this community is to show up however we can for each other—to listen, perform, share—even as we all see and do things so differently. I look at Palmer's life and work and am reminded that an artist's greatest, and maybe only, power comes in giving shape to the fire inside them and tossing that work, over and over, into the void of the future. Maybe someone will someday be perfectly positioned to catch it. Or maybe not. Maybe the work will spin into the orbit of concert programming, or land on a recording for posterity, or wait for discovery in an archive. Or maybe not. People may listen to my Palmer album—perhaps some teenager will dance to it in front of their mirror like I once did to Kapell—and maybe some of the pieces, still in manuscript, will finally be published. Or maybe not. It could all—even this article—sail completely under the radar, as his work has for so long. But just as Palmer created work nevertheless, we create work nevertheless—all of us giving shape to that fire inside us. And this act of creation, this calling, this need that exists in the present, far outweighs the promise of our work's hypothetical future. Showing up, listening, connecting and realizing how alike and fragile we all are, is at least one way we can honor our shared humanity as artists, especially when our lives can feel so isolated, and like one unreasonable creative act after another. I spent more than a decade searching for Robert Palmer and made an album of his music when no one asked for it. But in my mind, I didn't have a choice. I couldn't imagine being the only one who knew what this all sounded like. Robert Palmer: Piano Music is available now on New World Records. Tags: piano, recording, rediscovery, research Adam Tendler Subscribe to our newsletter and never miss a beat! New Music USA 114 John Street, #998 © 2021 New Music USA. All rights reserved. TOS/Privacy Statement
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
6,857
[ 128000, 6014, 20315, 4116, 13792, 198, 2460, 9029, 323, 32323, 198, 6219, 501, 7922, 83426, 198, 30492, 17283, 6826, 198, 3648, 10948, 36778, 13492, 198, 5971, 36967, 38987, 198, 3648, 10948, 10995, 77491, 13492, 198, 697, 301, 10604, 17042, 13492, 198, 26375, 24668, 13492, 198, 72603, 13492, 320, 21994, 6826, 340, 25099, 66526, 320, 21994, 6826, 340, 3648, 10948, 22925, 10981, 13492, 320, 21994, 6826, 340, 8006, 73901, 320, 21994, 6826, 340, 14431, 4116, 13792, 198, 3648, 25099, 1642, 198, 2460, 29461, 323, 89172, 198, 70223, 38373, 11, 34496, 83426, 198, 38904, 12865, 11378, 25, 22892, 14717, 198, 4357, 974, 32561, 7181, 7280, 198, 3648, 10948, 97062, 611, 2650, 9469, 437, 198, 16493, 43, 1924, 198, 14431, 4116, 198, 14431, 4116, 13792, 374, 701, 2930, 2162, 369, 24919 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 6014, 20315, 4116, 13792, 198, 2460, 9029, 323, 32323, 198, 6219, 501, 7922, 83426, 198, 30492, 17283, 6826, 198, 3648, 10948, 36778, 13492, 198, 5971, 36967, 38987, 198, 3648, 10948, 10995, 77491, 13492, 198, 697, 301, 10604, 17042, 13492, 198, 26375, 24668, 13492, 198, 72603, 13492, 320, 21994, 6826, 340, 25099, 66526, 320, 21994, 6826, 340, 3648, 10948, 22925, 10981, 13492, 320, 21994, 6826, 340, 8006, 73901, 320, 21994, 6826, 340, 14431, 4116, 13792, 198, 3648, 25099, 1642, 198, 2460, 29461, 323, 89172, 198, 70223, 38373, 11, 34496, 83426, 198, 38904, 12865, 11378, 25, 22892, 14717, 198, 4357, 974, 32561, 7181, 7280, 198, 3648, 10948, 97062, 611, 2650, 9469, 437, 198, 16493, 43, 1924, 198, 14431, 4116, 198, 14431, 4116, 13792, 374, 701, 2930, 2162, 369, 24919, -100 ]
Download is unavailable - it is tested, right? And we had some crossmod, several rounds with several NPCs and Aran Whitehand. I know we just did a Foundling NPC one. I have my notes, but not all of them - are any of them tested? I have not tested them. Test package sent; starting to code up our two banters (Foundling SoA, Skie SoA).
{ "redpajama_set_name": "RedPajamaC4" }
1,864
[ 128000, 11631, 374, 36087, 482, 433, 374, 12793, 11, 1314, 5380, 3112, 584, 1047, 1063, 5425, 2658, 11, 3892, 20101, 449, 3892, 74670, 323, 1676, 276, 5929, 10888, 13, 358, 1440, 584, 1120, 1550, 264, 12595, 2785, 30817, 832, 13, 358, 617, 856, 8554, 11, 719, 539, 682, 315, 1124, 482, 527, 904, 315, 1124, 12793, 30, 358, 617, 539, 12793, 1124, 627, 2323, 6462, 3288, 26, 6041, 311, 2082, 709, 1057, 1403, 293, 519, 388, 320, 6788, 2785, 2100, 32, 11, 4923, 648, 2100, 32, 570, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 11631, 374, 36087, 482, 433, 374, 12793, 11, 1314, 5380, 3112, 584, 1047, 1063, 5425, 2658, 11, 3892, 20101, 449, 3892, 74670, 323, 1676, 276, 5929, 10888, 13, 358, 1440, 584, 1120, 1550, 264, 12595, 2785, 30817, 832, 13, 358, 617, 856, 8554, 11, 719, 539, 682, 315, 1124, 482, 527, 904, 315, 1124, 12793, 30, 358, 617, 539, 12793, 1124, 627, 2323, 6462, 3288, 26, 6041, 311, 2082, 709, 1057, 1403, 293, 519, 388, 320, 6788, 2785, 2100, 32, 11, 4923, 648, 2100, 32, 570, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Q: How to convert DefaultMutableTreeNode to Jackson JsonNode? I'm trying to write an app that displays a JSON document into a tree format using Swing JTree. I was able to find a way to convert a JSON string to a TreeModel using Jackson but I can't figure out how to convert said TreeModel back to Jackson JsonNode in order to write it to a JSON file. Any ideas on how to go about this?
{ "redpajama_set_name": "RedPajamaStackExchange" }
5,137
[ 128000, 48, 25, 2650, 311, 5625, 8058, 11466, 27695, 311, 13972, 8472, 1997, 30, 358, 2846, 4560, 311, 3350, 459, 917, 430, 19207, 264, 4823, 2246, 1139, 264, 5021, 3645, 1701, 53186, 622, 6670, 13, 358, 574, 3025, 311, 1505, 264, 1648, 311, 5625, 264, 4823, 925, 311, 264, 9119, 1747, 1701, 13972, 719, 358, 649, 956, 7216, 704, 1268, 311, 5625, 1071, 9119, 1747, 1203, 311, 13972, 8472, 1997, 304, 2015, 311, 3350, 433, 311, 264, 4823, 1052, 13, 5884, 6848, 389, 1268, 311, 733, 922, 420, 5380, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 48, 25, 2650, 311, 5625, 8058, 11466, 27695, 311, 13972, 8472, 1997, 30, 358, 2846, 4560, 311, 3350, 459, 917, 430, 19207, 264, 4823, 2246, 1139, 264, 5021, 3645, 1701, 53186, 622, 6670, 13, 358, 574, 3025, 311, 1505, 264, 1648, 311, 5625, 264, 4823, 925, 311, 264, 9119, 1747, 1701, 13972, 719, 358, 649, 956, 7216, 704, 1268, 311, 5625, 1071, 9119, 1747, 1203, 311, 13972, 8472, 1997, 304, 2015, 311, 3350, 433, 311, 264, 4823, 1052, 13, 5884, 6848, 389, 1268, 311, 733, 922, 420, 5380, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
Recommend SMM Pannel for YT Views? CPA Elites - CPA Marketing Forum Marketplace Want To Buy Recommend SMM Pannel for YT Views? Someone can recommend me good smm pannel for hr youtube views? Moved to the "Want to buy" section.
{ "redpajama_set_name": "RedPajamaC4" }
103
[ 128000, 68744, 328, 8195, 393, 2659, 369, 83092, 25987, 5380, 7269, 32, 4072, 3695, 482, 87377, 18729, 17997, 58358, 24133, 2057, 11544, 47706, 328, 8195, 393, 2659, 369, 83092, 25987, 5380, 55611, 649, 7079, 757, 1695, 1554, 76, 281, 2659, 369, 18514, 28277, 6325, 5380, 54332, 311, 279, 330, 29923, 311, 3780, 1, 3857, 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 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 ]
[ 68744, 328, 8195, 393, 2659, 369, 83092, 25987, 5380, 7269, 32, 4072, 3695, 482, 87377, 18729, 17997, 58358, 24133, 2057, 11544, 47706, 328, 8195, 393, 2659, 369, 83092, 25987, 5380, 55611, 649, 7079, 757, 1695, 1554, 76, 281, 2659, 369, 18514, 28277, 6325, 5380, 54332, 311, 279, 330, 29923, 311, 3780, 1, 3857, 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 ]
Home » Yandex Direct Certification Answers » An advertiser's goal is to receive orders through the site and pay for them no more than a certain amount. Which strategy would be best for this advertiser? An advertiser's goal is to receive orders through the site and pay for them no more than a certain amount. Which strategy would be best for this advertiser?
{ "redpajama_set_name": "RedPajamaC4" }
9,259
[ 128000, 7778, 8345, 816, 45626, 7286, 51310, 38343, 8345, 1556, 87386, 596, 5915, 374, 311, 5371, 10373, 1555, 279, 2816, 323, 2343, 369, 1124, 912, 810, 1109, 264, 3738, 3392, 13, 16299, 8446, 1053, 387, 1888, 369, 420, 87386, 5380, 2127, 87386, 596, 5915, 374, 311, 5371, 10373, 1555, 279, 2816, 323, 2343, 369, 1124, 912, 810, 1109, 264, 3738, 3392, 13, 16299, 8446, 1053, 387, 1888, 369, 420, 87386, 30, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256, 128256 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
[ 7778, 8345, 816, 45626, 7286, 51310, 38343, 8345, 1556, 87386, 596, 5915, 374, 311, 5371, 10373, 1555, 279, 2816, 323, 2343, 369, 1124, 912, 810, 1109, 264, 3738, 3392, 13, 16299, 8446, 1053, 387, 1888, 369, 420, 87386, 5380, 2127, 87386, 596, 5915, 374, 311, 5371, 10373, 1555, 279, 2816, 323, 2343, 369, 1124, 912, 810, 1109, 264, 3738, 3392, 13, 16299, 8446, 1053, 387, 1888, 369, 420, 87386, 30, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100 ]
61 CLASSES AVAILABLE EACH WEEK! Every workout is programmed to engage our community to reach their optimal level of fitness. Classes run for 1 hour (excluding BoxFit, which runs for 45mins) and all classes are constantly modified to ensure variety and motivation. Every class offers a rewarding training experience for the beginner to the ​elite athlete. As we are fortunate to have a large floor space to work within, we offer our members two to three (2-3) different class options in a majority of our class time slots. Build your strength and learn technique through a range of Olympic lifts, power lifts and calisthenics to achieve your functional fitness goals. ​Dedicating focus on perfecting form and technique based on level of competency. This class involves olympic lifting and gymnastics skills and putting the practice into play. Loved by all our obstacle racing enthusiasts. You can expect to run between 4-8kms during this workout to reach checkpoints and earn points relevant to the level of difficulty of each exercise/obstacle. It's necessary to be a team player here, with exercises set out for pairs or teams to work through. Push through and get through. That extra motivation to help each other out. We love to support and encourage our members who wish to represent us in CrossFit competitions. Our competitors class allows members to develop their skills, work on weaknesses and build strength in preparation for competing. Focusing on increasing ones range of movement and reducing areas of restriction which may impact your performance. It is designed to reduce the risk of injury and increase your overall performance and abilities. Accelerating the recovery from the impact of day to day training. It increases ones flexibility, joint range of motion and circulation whilst improving your posture and providing stress relief to your body.
{ "redpajama_set_name": "RedPajamaC4" }
2,213
[ 128000, 5547, 7121, 49694, 68819, 95513, 58529, 4999, 11769, 26308, 374, 56168, 311, 16988, 1057, 4029, 311, 5662, 872, 23669, 2237, 315, 17479, 627, 20678, 1629, 369, 220, 16, 6596, 320, 80095, 70454, 11, 902, 8640, 369, 220, 1774, 47796, 8, 323, 682, 6989, 527, 15320, 11041, 311, 6106, 8205, 323, 25835, 627, 11769, 538, 6209, 264, 42093, 4967, 3217, 369, 279, 50048, 311, 279, 30848, 71391, 34880, 627, 2170, 584, 527, 40510, 311, 617, 264, 3544, 6558, 3634, 311, 990, 2949, 11, 584, 3085, 1057, 3697, 1403, 311, 2380, 320, 17, 12, 18, 8, 2204, 538, 2671, 304, 264, 8857, 315, 1057, 538, 892, 16087, 627, 11313, 701, 8333, 323, 4048, 15105, 1555, 264, 2134, 315, 25944, 54166, 11, 2410, 54166, 323, 1652, 380, 12301, 1233, 311 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 5547, 7121, 49694, 68819, 95513, 58529, 4999, 11769, 26308, 374, 56168, 311, 16988, 1057, 4029, 311, 5662, 872, 23669, 2237, 315, 17479, 627, 20678, 1629, 369, 220, 16, 6596, 320, 80095, 70454, 11, 902, 8640, 369, 220, 1774, 47796, 8, 323, 682, 6989, 527, 15320, 11041, 311, 6106, 8205, 323, 25835, 627, 11769, 538, 6209, 264, 42093, 4967, 3217, 369, 279, 50048, 311, 279, 30848, 71391, 34880, 627, 2170, 584, 527, 40510, 311, 617, 264, 3544, 6558, 3634, 311, 990, 2949, 11, 584, 3085, 1057, 3697, 1403, 311, 2380, 320, 17, 12, 18, 8, 2204, 538, 2671, 304, 264, 8857, 315, 1057, 538, 892, 16087, 627, 11313, 701, 8333, 323, 4048, 15105, 1555, 264, 2134, 315, 25944, 54166, 11, 2410, 54166, 323, 1652, 380, 12301, 1233, 311, -100 ]
Last June, Adobe shipped the new CC 2014 product line, a major milestone of creative tools and services that upgrades last year's CC 2013 version, which itself replaced CS6 from 2012. This latest CC 2014 release contains over 1,000 new features and innovations compared to CS6 (across all apps), and it is available only via Creative Cloud membership. As both CC 2014 and CC 2013 came out in mid-June, we expect the annual major release cycle to soon begin anew with the imminent launch of CC 2015… And that is exactly what we're giving away for free below, and this offer is open to everyone world­wide. Update: Now confirmed! The official shipping date for CC 2015 will be on June 16th. In all, Creative Cloud 2015 will come with over a dozen new desk­top applica­tions (Photoshop CC 2015, Illus­trator CC 2015, InDesign CC 2015, Muse CC 2015, and all your favorites), together with other comple­mentary tools and services (such as Behance ProSite, Typekit, Creative Cloud Market) and more… In fact, the all-new Light­room CC 2015 plus Acrobat DC Pro are already out today and available for download. See the entire contents of what's in Creative Cloud, where all ongoing upgrades are auto­matic­ally included at no addi­tional cost. Note that this offer is limited to one (1) purchase of one (1) discounted Creative Cloud Complete annual membership per customer – and may not be assigned, exchanged, sold, transferred, or redeemed for cash. Are Lightroom 6 and Lightroom CC the same? If not, then what are all the differences between Lightroom 6 vs. Lightroom CC? …so we thought it was time to write a new article about this topic. Lightroom 6 is the core program running on your desktop – the new version that follows Lightroom 5, with significant features and improvements added since LR5. Adobe is offering two options to customers, and the Lightroom 6 route is a perpetual license – basically standalone static software. The updates that Lightroom 6 users receive going forward will be for bug fixes and new camera and lens profiles only, but not new feature upgrades that Lightroom CC customers will receive on an ongoing basis. Lightroom CC 2015 takes Lightroom 6 and offers it via subscription together with access to integrated mobile apps (like Lightroom Mobile) and online services (like Lightroom Web with unlimited online photo storage). Lightroom CC also gives you ongoing new feature updates as soon as they are available – including the popular Dehaze and Boundary Warp functions, as well as the new Guided Upright feature and Local B&W Adjustment Sliders – none of which are in LR6. What's the Difference Between Lightroom 6/CC vs. 5 – What's New? The long-awaited Adobe Lightroom 6/CC began shipping this week, and has got some folks pretty excited about the new features and capabilities… There's a long list of them given further below, but some of the highlights include much improved performance, facial recognition, photo merge for both HDR and panorama, advanced video slideshows, improved web galleries, new Pet Eye tool, touch-enabled PC support, plus GPU acceleration and native 64-bit architecture on Windows and Mac. One big change is the naming difference and what you get with the two options (Lightroom 6 vs. Lightroom CC). You can still buy a standalone perpetual version as before (either full or upgrade from an older release) – the product is then called Lightroom 6 and it will still receive bug fixes and new camera/lens additions, but will not get ongoing new feature updates and does not have access to online LR features and apps such as Lightroom Mobile and Lightroom web. Yes – the new release of Adobe Photoshop Lightroom 6 is just out and now shipping! There was no beta version/period this time, so we go straight to the final product. And as in the past, this release will work side-by-side with any previous revisions of Lightroom you may have. If you've got an earlier version installed on your system(s), Lightroom 6 will ask if you'd like to upgrade your catalog and copy everything over. SAN JOSE, Calif.—April 1, 2015—Following a recent software trend for skipping version numbers, reliable sources indicate that Adobe Systems will be foregoing the long-anticipated Acrobat 12 and leaping hundreds of releases higher instead. So what in fact will the next release of Acrobat be called? Adobe himself was reluctant to give further details, but a leaked company document clearly indicates the next release will be dubbed Acrobat 600 – leap­frogging a full 588(!) revisions over the widely-expected Acrobat XII. When confronted with the internal memo, Mr. Adobe relented. "Okay, you got me," he said. "We're calling it that because it's going to be hundreds of times better than the old Acrobat – and if you don't believe me then just upgrade and see for yourself," Adobe explained. And now, we finally have some answers, announced by Adobe not as "Acrobat XII" or "Acrobat 12" – but as Acrobat DC, where "DC" stands for Document Cloud. The Adobe "Document Cloud"? What does that mean? Is this the same brand of Acrobat toolset that we know and love, and use daily? Are there still Pro and Standard desktop tools, and perpetual licenses? Or is this a new type of web-based application or service that we can only use online, or via subscription? Not to worry. Everything is as you want, only better. It looks like this long wait for Acrobat DC was actually worth it… This is Acrobat XII or 12, only raised to the next level. For years it was difficult if not impossible to buy Adobe software online (especially the newer CC subscriptions) and pay with PayPal instead of a credit card or debit card. But finally, great news: Adobe has just made it possible to purchase all software using PayPal in many countries worldwide, so you can now buy Creative Cloud (or CS6) without a credit card. These countries include the US, Canada, Mexico, United Kingdom, Brazil, Korea, Singapore, Thailand, Malaysia, Indonesia, Philippines, and much of Europe (Austria, Belgium, Czech Republic, Finland, France, Germany, Ireland, Italy, Luxembourg, the Netherlands, Poland, Portugal and Spain). Alternatively, payment using Switch or Solo is also supported in the UK. Hard to believe, but today Adobe Photoshop officially celebrates its 25th anniversary (or birthday, depending on how you look at it)… The first version of Photoshop shipped on February 19th, 1990, at a price of US$895.00. Adjusted for inflation, in today's dollars that would cost almost $1,700! Now, of course, there are tens of millions of users of Photoshop who can pay less than $10 a month for the latest-and-greatest release of this iconic, industry-leading tool.
{ "redpajama_set_name": "RedPajamaC4" }
1,631
[ 128000, 5966, 5651, 11, 29966, 28358, 279, 502, 13844, 220, 679, 19, 2027, 1584, 11, 264, 3682, 43291, 315, 11782, 7526, 323, 3600, 430, 32714, 1566, 1060, 596, 13844, 220, 679, 18, 2373, 11, 902, 5196, 12860, 10211, 21, 505, 220, 679, 17, 13, 1115, 5652, 13844, 220, 679, 19, 4984, 5727, 927, 220, 16, 11, 931, 502, 4519, 323, 46045, 7863, 311, 10211, 21, 320, 582, 2177, 682, 10721, 705, 323, 433, 374, 2561, 1193, 4669, 25248, 15161, 16250, 627, 2170, 2225, 13844, 220, 679, 19, 323, 13844, 220, 679, 18, 3782, 704, 304, 5209, 12278, 2957, 11, 584, 1755, 279, 9974, 3682, 4984, 11008, 311, 5246, 3240, 93392, 449, 279, 51551, 7195, 315, 13844, 220, 679, 20, 1981, 1628, 430, 374, 7041, 1148, 584, 2351, 7231 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 5966, 5651, 11, 29966, 28358, 279, 502, 13844, 220, 679, 19, 2027, 1584, 11, 264, 3682, 43291, 315, 11782, 7526, 323, 3600, 430, 32714, 1566, 1060, 596, 13844, 220, 679, 18, 2373, 11, 902, 5196, 12860, 10211, 21, 505, 220, 679, 17, 13, 1115, 5652, 13844, 220, 679, 19, 4984, 5727, 927, 220, 16, 11, 931, 502, 4519, 323, 46045, 7863, 311, 10211, 21, 320, 582, 2177, 682, 10721, 705, 323, 433, 374, 2561, 1193, 4669, 25248, 15161, 16250, 627, 2170, 2225, 13844, 220, 679, 19, 323, 13844, 220, 679, 18, 3782, 704, 304, 5209, 12278, 2957, 11, 584, 1755, 279, 9974, 3682, 4984, 11008, 311, 5246, 3240, 93392, 449, 279, 51551, 7195, 315, 13844, 220, 679, 20, 1981, 1628, 430, 374, 7041, 1148, 584, 2351, 7231, -100 ]
Guy Harris' career includes service as a nuclear engineering officer in the U.S. Navy submarine fleet, various supervisory/managerial roles in the chemical industry and personal business ownership. In the early 1990s, he began to actively pursue the practical application of leadership, communication, team building and conflict resolution principles. He is a Certified Human Behavior Specialist, a Master Trainer in the DISC Model of Human Behavior, and a Conflict Resolution Subject Matter Expert. Typical client concerns prior to working with Guy are forging a team from a group of individuals, moving a team past the conflict stage of team development, developing other leaders, expanding personal influence within the organization, communicating more effectively, and developing buy-in for new programs and processes. Clients consistently comment on how quickly Guy helps them diagnose their "real" challenges and create plans for overcoming them. Workshop participants rave about the way his stories and experiences relate learning points in ways that are fun, engaging, and memorable. As a consultant, trainer, and coach, Guy has worked with large and small clients, businesses, not-for-profit organizations, and individuals from Boston to Brisbane and from Ottawa to Orlando. His past clients include: Sun Chemical Co., Ivy Tech Community College, The Good Samaritan Society, Redbox, Purdue University, Delta Career Education, The American Farm Bureau Association, Butler University, Alpha Chi Omega Sorority, Panda Express, and many others. Guy Harris is the co-author of From Bud to Boss: Secrets to a Successful Transition to Remarkable Leadership, Sell Naked on the Phone, and The Behavior Bucks System. He has been a contributing author, content developer and editor on other books and training materials including: Presenting With Style; Leadership @ Work, Leadership Brief and To The Point, and Leadership: It's an Inside Job. Guy's blog, The Recovering Engineer Blog, is about learning to get out of your own way and learning to take a close look at your thoughts, feelings, responses and reactions to find better and more effective ways to build and maintain both personal and professional relationships.
{ "redpajama_set_name": "RedPajamaC4" }
4,771
[ 128000, 79315, 21750, 6, 7076, 5764, 2532, 439, 264, 11499, 15009, 9640, 304, 279, 549, 815, 13, 19574, 58629, 26155, 11, 5370, 15945, 87003, 14, 13600, 532, 13073, 304, 279, 11742, 5064, 323, 4443, 2626, 15637, 13, 763, 279, 4216, 220, 2550, 15, 82, 11, 568, 6137, 311, 22815, 23564, 279, 15325, 3851, 315, 11692, 11, 10758, 11, 2128, 4857, 323, 12324, 11175, 16565, 627, 1548, 374, 264, 36542, 11344, 27773, 40420, 11, 264, 11060, 47155, 304, 279, 12244, 34, 5008, 315, 11344, 27773, 11, 323, 264, 59685, 38216, 17908, 34464, 33257, 627, 13129, 950, 3016, 10742, 4972, 311, 3318, 449, 26340, 527, 95931, 264, 2128, 505, 264, 1912, 315, 7931, 11, 7366, 264, 2128, 3347, 279, 12324, 6566, 315, 2128, 4500, 11, 11469, 1023, 6164, 11, 24050 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 79315, 21750, 6, 7076, 5764, 2532, 439, 264, 11499, 15009, 9640, 304, 279, 549, 815, 13, 19574, 58629, 26155, 11, 5370, 15945, 87003, 14, 13600, 532, 13073, 304, 279, 11742, 5064, 323, 4443, 2626, 15637, 13, 763, 279, 4216, 220, 2550, 15, 82, 11, 568, 6137, 311, 22815, 23564, 279, 15325, 3851, 315, 11692, 11, 10758, 11, 2128, 4857, 323, 12324, 11175, 16565, 627, 1548, 374, 264, 36542, 11344, 27773, 40420, 11, 264, 11060, 47155, 304, 279, 12244, 34, 5008, 315, 11344, 27773, 11, 323, 264, 59685, 38216, 17908, 34464, 33257, 627, 13129, 950, 3016, 10742, 4972, 311, 3318, 449, 26340, 527, 95931, 264, 2128, 505, 264, 1912, 315, 7931, 11, 7366, 264, 2128, 3347, 279, 12324, 6566, 315, 2128, 4500, 11, 11469, 1023, 6164, 11, 24050, -100 ]
Mondays 10:00 PM on ABC The Good Doctor News The Good Doctor Reviews The Good Doctor Spoilers The Good Doctor Watch Online The Good Doctor Episode Guide The Good Doctor Pictures The Good Doctor Videos The Good Doctor Round Tables Follow The Good Doctor The Good Doctor Season 3 Midseason Report Card: Best Arc, Best Couple and More! Jack Ori at January 2, 2020 11:00 am . Halfway through its third season, The Good Doctor is still going strong. At this point, Shaun is ell-established at the hospital and is on somewhat surer footing career-wise, so The Good Doctor Season 3 has provided a ton of relationship drama to balance out the medical stuff. There are still plenty of interesting cases, and Shaun's autism is front-and-center, albeit in a different way. For the most part, this series continues to capture viewers' attention week after week with riveting stories and heartbreaking situations, though there are a few things that could be improved. Check out our thoughts below and let us know what you think of The Good Doctor. What works: Freddie Highmore continues to offer stand-out performances. Regardless of what else is going on, Highmore's performances continue to be exemplary--and realistic. Whether it's small things such as Shaun's mannerisms and unique intonations or big things such as his meltdown after his father's death, Highmore continues to sell Shaun's autism along with his humanity. Shaun's discomfort after his first date with Carly, which sounded like a perfectly fine evening to all of his co-workers, was just one example of Highmore's heartbreaking, riveting performances. What doesn't work: Claire's spiral into depression after her mother's death. Claire's self-destructive spiral isn't all bad, but it isn't all good either. Her attempt to deal with her mom's unpredictability and her desire to help the entire world because she was always a caretaker for her mother were compelling drama, but just as it got going The Good Doctor killed Claire's mother off. In theory, the idea of good girl Claire turning into an alcoholic who jumps into bed with random men is interesting. But in practice, it was disappointing. It was such a stereotypical route to go -- TV is full of people who turn to alcohol and sex after a tragedy -- with no real payoff other than the wife of one of Claire's one-night stands slapping her. If The Good Doctor was going to go this route, Claire should have suffered some more consequences for her sudden inability to be professional as well as her poor personal choices. What works: Morgan is much improved. Morgan used to be the most annoying character on canvas, and viewers didn't often see a point to her continued presence. Luckily, for the most part, that's a thing of the past. Morgan has proven herself capable of being a good friend, and her attempt to get Claire turned around again is probably the best part of the Claire storyline. Sure, she has flashes of being the old, selfish Morgan, and her rivalry with Park is more irritating than funny, but nine times out of ten she's tolerable to watch nowadays. What works: Shaun and Carly's relationship Shaun and Carly's burgeoning relationship is an enjoyable, realistic depiction of how difficult it is for people on the spectrum to navigate relationships. To Carly's credit, she has been more than patient with Shaun -- and with his friends' constantly butting in on his behalf. And Shaun has pushed himself out of his comfort zone regularly, with mixed results. It's yet to be seen whether Shaun and Carly can go the distance, especially since The Good Doctor Season 3 Episode 10 appeared to go the route of Shaun deciding he's more into Lea (BOO!). But whether this relationship lasts or not, we'll always be grateful for it. What doesn't work: Lim and Melendez Lim and Melendez were never a good idea for a relationship in the first place, and the on-again-off-again nature of their relationship in the first half of The Good Doctor Season 3 didn't help matters any. The only good news here is that Lim becoming Melendez's supervisor didn't mean a return to sneaking around and hoping nobody caught on that the two were together. But what could have been a compelling story about Melendez's self-doubts after a patient's death became a confusing mess in which Lim gave an ambiguous break-up speech and then the pair struggled to define what their new relationship to each other was. There was too much focus on how Lim's job affected their relationship, and it was irritating. What doesn't work: Glassman's rushed marriage Glassman impulsively married Debbie after almost backing out, only to constantly discover incompatibilities the two have to work through. All couples go through that to a degree, of course, but the rushed nature of this marriage doesn't make the story compelling. Despite Glassman feeling a need to seize the day after his cancer went into remission, it would have been more enjoyable to see these two build their relationship up toward marriage and figuring out their differences before they made a lifetime commitment to each other. What does work: Andrews vs Lim It's been a humbling experience for Andrews to come back to the hospital as an attending and have to answer to Lim when he's used to being the one in charge. But even better than the way the two clash, in general, is the way they clash over how to deal with Shaun. Sometimes Andrews is right, particularly when he calls Lim out on coddling Shaun rather than providing him with appropriate accommodations so he can do his job. But at the same time, he's often too hard on Shaun, and Lim is needed to balance that out too. What does work: More of a medical team In the past, the emphasis was on Shaun's unique ability to come up with creative solutions to surgical problems. Almost every week, the team would be stymied by some obstacle or the attendings would suggest a surgery that would be the best of bad outcomes, only for Shaun to visualize a better solution at the last minute. On The Good Doctor Season 3, however, there is much more of an ensemble feel. All the residents are involved in working with patients and finding solutions, and Shaun's expertise isn't always needed to save the day. What does work: Emotionally difficult cases The medical storylines on The Good Doctor have been especially riveting on The Good Doctor Season 3. Patients and doctors are both making difficult choices regularly, and the show doesn't rely on the medical miracle trope to make everything okay in the end. More often than not, everything isn't okay, and that makes for compelling drama. What does work: Glassman's clinic Glassman is happy working on what Shaun would call "boring" cases in an urgent care clinic associated with the hospital, and his new job is surprisingly interesting. While it would be nice to see more of Glassman's actual cases, his clinic work does make a nice backdrop for Shaun's relationship drama, and Glassman has had to figure out how to balance his work needs with Shaun's need to burst in and ask for advice. What does work: Residents leading surgery The decision to allow third-year students to lead their first surgeries is an engaging sideline. Claire and Shaun both struggled in different ways with their first lead surgeries, and taking the lead in the OR is an entirely different ballgame from merely assisting. The lead surgery storylines help propel character growth both in and out of the operating room, and we'd love to see more of it as the season progresses. What doesn't work: Revisiting the Lea/Shaun relationship It made sense that Shaun wanted Lea to accompany him to his father's deathbed. They've been friends for a long time and if Glassman was going, it might have felt as if something were missing without Lea there. But the trip quickly headed in the direction of Shaun seeming to prefer Lea to Carly. A Shaun/Lea reconciliation would undo all the hard work the writers put into showing how Shaun's autism is a challenge for him and Carly to overcome. It would imply that Shaun's problems with Carly stemmed from Lea being "the one" and that's just ridiculous. What works: Intertwining personal and professional stories Some of the cases seem to help the doctors sort out their personal lives, while others are too close for comfort for them. For example, Shaun could relate to a girl who had a severe autoimmune deficiency and had to live in a bubble, while he didn't have such a great time with a patient who was also on the spectrum. And Claire literally came face-to-face with her bad behavior when her latest one-night-stand landed in the hospital. The fusing of personal and professional lives is compelling when done well, and The Good Doctor generally does such things well. 19 Most Moving Mental Health Stories on TV Your turn, The Good Doctor fanatics. Share your thoughts about the first half of The Good Doctor Season 3 below, and don't forget that you can watch The Good Doctor online if you'd like to see anything again. The Good Doctor continues to air on ABC on Mondays at 10 PM EST/PST. It returns on January 14, 2020. Jack Ori is a senior staff writer for TV Fanatic. His debut young adult novel, Reinventing Hannah, is available on Amazon. Follow him on Twitter. Tags: The Good Doctor, TV Fanatic Report Cards We all want it to be over. We're sick of ourselves and sick of each other or we're pining for someone we can't be with and we're afraid the world will never be the same again. I don't know, Shaun. I don't have a map for this. The best I can do is say be kind. Be kind to yourself and be kind to everyone else because what else is there? Permalink: We all want it to be over. We're sick of ourselves and sick of each other or we're pining for... Aren't we judged by how we treat people? I don't mean as doctors. I mean as people. Especially those who don't have the same advantages that we have. We hire Shaun and we give hope to those people with limitations that those limitations are not what they think they are. That they do have a shot! We hire Shaun and we make this hospital better for it. We hire Shaun and we are better people for it. Dr. Aaron Glassman Permalink: Aren't we judged by how we treat people? I don't mean as doctors. I mean as people.... Watch The Good Doctor Online: Season 4 Episode 7 The Good Doctor Season 4 Episode 7 Review: The Uncertainty Principle The Good Doctor Photos The Good Doctor Season 3 Trailer: Who's Getting Married? The Good Doctor Promo: Who Will Not Survive the Outbreak? The Good Doctor Sneak Peek: An Airborne Virus Turns Deadly The Good Doctor Season 4 Episode 8: "Parenting" The Good Doctor: Philiosophical Questions
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
7,375
[ 128000, 44, 2159, 954, 220, 605, 25, 410, 5975, 389, 19921, 198, 791, 7839, 19150, 5513, 198, 791, 7839, 19150, 19832, 198, 791, 7839, 19150, 57049, 28257, 198, 791, 7839, 19150, 10573, 8267, 198, 791, 7839, 19150, 20421, 13002, 198, 791, 7839, 19150, 29485, 198, 791, 7839, 19150, 20114, 198, 791, 7839, 19150, 17535, 43252, 198, 12763, 578, 7839, 19150, 198, 791, 7839, 19150, 14598, 220, 18, 14013, 17217, 8423, 6938, 25, 7252, 20267, 11, 7252, 66925, 323, 4497, 4999, 33731, 38998, 520, 6186, 220, 17, 11, 220, 2366, 15, 220, 806, 25, 410, 1097, 16853, 43727, 3195, 1555, 1202, 4948, 3280, 11, 578, 7839, 19150, 374, 2103, 2133, 3831, 627, 1688, 420, 1486, 11, 77371, 374, 26689, 64868, 520, 279, 8952, 323, 374, 389, 14738, 1765, 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 ]
[ 44, 2159, 954, 220, 605, 25, 410, 5975, 389, 19921, 198, 791, 7839, 19150, 5513, 198, 791, 7839, 19150, 19832, 198, 791, 7839, 19150, 57049, 28257, 198, 791, 7839, 19150, 10573, 8267, 198, 791, 7839, 19150, 20421, 13002, 198, 791, 7839, 19150, 29485, 198, 791, 7839, 19150, 20114, 198, 791, 7839, 19150, 17535, 43252, 198, 12763, 578, 7839, 19150, 198, 791, 7839, 19150, 14598, 220, 18, 14013, 17217, 8423, 6938, 25, 7252, 20267, 11, 7252, 66925, 323, 4497, 4999, 33731, 38998, 520, 6186, 220, 17, 11, 220, 2366, 15, 220, 806, 25, 410, 1097, 16853, 43727, 3195, 1555, 1202, 4948, 3280, 11, 578, 7839, 19150, 374, 2103, 2133, 3831, 627, 1688, 420, 1486, 11, 77371, 374, 26689, 64868, 520, 279, 8952, 323, 374, 389, 14738, 1765, 261, -100 ]
"WE ARE OBSESSED BY THE DETAILS" Here you will find our complete range of products that can be purchased directly from Green Wolf Gear. The GALAC-TAC Trooper is a license built figure on behalf of the GALAC-TAC company who produce the1/1scale helmet and the armour. The Trooper is designed around a modern military Operator in an arid environment and his equipment and weapons are based on current military issue. A Sci-fi twist has been incorporated in the form of the armour and helmet. As the designer of the Galac-Tac Armour I can certify the Green Wolf Gear did a fantastic job of recreating it in 1/6th Scale. I look forward to every release and cant wait to see what they do next. What Green Wolf Gear can achieve in 1/6th scale is out of this world. I never thought it possible to see my designs in such a small scale and to have the details so accurate is amazing. We have been working Green Wolf Gear for the past few years and they have completed several projects to date for our company. Each product just gets better and better, detail is as good as it can get. Green Wolf Gear is Committed to bringing you the finest quality collectibles.
{ "redpajama_set_name": "RedPajamaC4" }
1,512
[ 128000, 1, 12739, 16202, 44273, 29095, 20890, 7866, 3247, 78096, 702, 8586, 499, 690, 1505, 1057, 4686, 2134, 315, 3956, 430, 649, 387, 15075, 6089, 505, 7997, 26296, 28603, 627, 791, 84462, 1741, 9469, 1741, 19881, 3376, 374, 264, 5842, 5918, 7216, 389, 17981, 315, 279, 84462, 1741, 9469, 1741, 2883, 889, 8356, 279, 16, 14, 16, 12727, 32635, 323, 279, 47777, 627, 791, 19881, 3376, 374, 6319, 2212, 264, 6617, 6411, 29598, 304, 459, 802, 307, 4676, 323, 813, 7241, 323, 10094, 527, 3196, 389, 1510, 6411, 4360, 627, 32, 41472, 37731, 27744, 706, 1027, 32762, 304, 279, 1376, 315, 279, 47777, 323, 32635, 627, 2170, 279, 15034, 315, 279, 10845, 582, 9469, 582, 61685, 358, 649, 93330, 279, 7997, 26296, 28603, 1550, 264, 14964, 2683, 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 ]
[ 1, 12739, 16202, 44273, 29095, 20890, 7866, 3247, 78096, 702, 8586, 499, 690, 1505, 1057, 4686, 2134, 315, 3956, 430, 649, 387, 15075, 6089, 505, 7997, 26296, 28603, 627, 791, 84462, 1741, 9469, 1741, 19881, 3376, 374, 264, 5842, 5918, 7216, 389, 17981, 315, 279, 84462, 1741, 9469, 1741, 2883, 889, 8356, 279, 16, 14, 16, 12727, 32635, 323, 279, 47777, 627, 791, 19881, 3376, 374, 6319, 2212, 264, 6617, 6411, 29598, 304, 459, 802, 307, 4676, 323, 813, 7241, 323, 10094, 527, 3196, 389, 1510, 6411, 4360, 627, 32, 41472, 37731, 27744, 706, 1027, 32762, 304, 279, 1376, 315, 279, 47777, 323, 32635, 627, 2170, 279, 15034, 315, 279, 10845, 582, 9469, 582, 61685, 358, 649, 93330, 279, 7997, 26296, 28603, 1550, 264, 14964, 2683, 315, -100 ]
The OECD Employment Outlook is an annual publication that surveys labour market conditions in OECD countries and analyses issues of interest to researchers and policy makers. The 2011 issue highlights policy issues related to: the recent economic crisis and the adequacy of income support for the unemployed; social protection and labour markets in emerging economies; earnings volatility; and qualifications mismatch. In the wake of the global economic crisis, the question of how unemployment benefits and other income support schemes can best cushion income losses during a deep recession is examined. More generallly, the risk of large declines in earnings during recessions is analysed and structural labour market reforms are identified which can reduce earnings volatility over the business cycle. The recent global crisis has also highlighted the importance of social protection schemes in emerging economies, and the Outlook shows how they can be cost effective when they are adapted to national labour market conditions such as a high incidence of informal employment. In all countries, a strong and sustainable economic recovery is more likely if workers have the skills that employers require and are employed in jobs which make good use of their skills. New measures of qualification and skill mismatch are presented and lessons drawn for education systems, life-long learning institutions and labour market policies.
{ "redpajama_set_name": "RedPajamaC4" }
9,381
[ 128000, 791, 79517, 41952, 42158, 374, 459, 9974, 17009, 430, 32313, 23791, 3157, 4787, 304, 79517, 5961, 323, 29060, 4819, 315, 2802, 311, 12074, 323, 4947, 29414, 13, 578, 220, 679, 16, 4360, 22020, 4947, 4819, 5552, 311, 25, 279, 3293, 7100, 11501, 323, 279, 41228, 2826, 315, 8070, 1862, 369, 279, 49989, 26, 3674, 9313, 323, 23791, 11987, 304, 24084, 37671, 26, 24608, 53838, 26, 323, 43784, 36401, 13, 763, 279, 15508, 315, 279, 3728, 7100, 11501, 11, 279, 3488, 315, 1268, 26690, 7720, 323, 1023, 8070, 1862, 31956, 649, 1888, 45738, 8070, 18151, 2391, 264, 5655, 39621, 374, 25078, 13, 4497, 1803, 543, 398, 11, 279, 5326, 315, 3544, 58054, 304, 24608, 2391, 47862, 919, 374, 67458, 323, 24693, 23791, 3157, 31343, 527, 11054, 902, 649 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 79517, 41952, 42158, 374, 459, 9974, 17009, 430, 32313, 23791, 3157, 4787, 304, 79517, 5961, 323, 29060, 4819, 315, 2802, 311, 12074, 323, 4947, 29414, 13, 578, 220, 679, 16, 4360, 22020, 4947, 4819, 5552, 311, 25, 279, 3293, 7100, 11501, 323, 279, 41228, 2826, 315, 8070, 1862, 369, 279, 49989, 26, 3674, 9313, 323, 23791, 11987, 304, 24084, 37671, 26, 24608, 53838, 26, 323, 43784, 36401, 13, 763, 279, 15508, 315, 279, 3728, 7100, 11501, 11, 279, 3488, 315, 1268, 26690, 7720, 323, 1023, 8070, 1862, 31956, 649, 1888, 45738, 8070, 18151, 2391, 264, 5655, 39621, 374, 25078, 13, 4497, 1803, 543, 398, 11, 279, 5326, 315, 3544, 58054, 304, 24608, 2391, 47862, 919, 374, 67458, 323, 24693, 23791, 3157, 31343, 527, 11054, 902, 649, -100 ]
You know when you're in this wobbly, difficult pose in your yoga class, feeling you're going to lose balance in a few seconds? But then you focus your vision on one tiny point in front of you to calm your mind and – switch! - you've entered a whole new mental state of stillness and mindfulness that channels your focus inwards. It is in this state of mind that it is possible for your body to achieve more than it did when you had all the thoughts roaming in your head. Think about it – all this new-found concentration came from focusing on that little still point in front of you. Those who have never practiced yoga before have an image of yogis as mellow, extra-flexible hippies. While you don't need to be flexible to practice yoga, most people benefit from a more "mellow" state of mind after practicing yoga. In my opinion, this is the best benefit of practicing yoga - the positive effect on your mind. Everyone can learn to cultivate a more peaceful mind and stop sweating the small stuff. What Classifies as Doing Yoga? Author bio: Hii! I'm Nancy Wile, a yoga teacher and the founder of Yoga Education Institute. I do my best to help all my students find a sense of ease and mindfulness in each posture that they can then incorporate into other aspects of their lives. I want you to come as you are and have some fun, and know that everything you need is right there inside of you. Chanmaya to release exclusive design yoga towel in support of Breast Cancer Awareness Month. October is Breast Cancer Awareness Month and an opportunity to raise both awareness and financial support to fight this disease that impacts so many of us. Breast cancer doesn't just affect women, it affects everyone in their life. It doesn't have racial or socio-economical boundaries so it is important that as many people as possible are made aware of how to fight it, through education and early detection.
{ "redpajama_set_name": "RedPajamaC4" }
5,688
[ 128000, 2675, 1440, 994, 499, 2351, 304, 420, 289, 21046, 398, 11, 5107, 17477, 304, 701, 27102, 538, 11, 8430, 499, 2351, 2133, 311, 9229, 8335, 304, 264, 2478, 6622, 30, 2030, 1243, 499, 5357, 701, 11376, 389, 832, 13987, 1486, 304, 4156, 315, 499, 311, 19858, 701, 4059, 323, 1389, 3480, 0, 482, 499, 3077, 10862, 264, 4459, 502, 10723, 1614, 315, 2103, 2136, 323, 71705, 430, 12006, 701, 5357, 304, 4102, 13, 1102, 374, 304, 420, 1614, 315, 4059, 430, 433, 374, 3284, 369, 701, 2547, 311, 11322, 810, 1109, 433, 1550, 994, 499, 1047, 682, 279, 11555, 69353, 304, 701, 2010, 13, 21834, 922, 433, 1389, 682, 420, 502, 27802, 20545, 3782, 505, 21760, 389, 430, 2697, 2103, 1486, 304, 4156, 315, 499, 627, 23025 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2675, 1440, 994, 499, 2351, 304, 420, 289, 21046, 398, 11, 5107, 17477, 304, 701, 27102, 538, 11, 8430, 499, 2351, 2133, 311, 9229, 8335, 304, 264, 2478, 6622, 30, 2030, 1243, 499, 5357, 701, 11376, 389, 832, 13987, 1486, 304, 4156, 315, 499, 311, 19858, 701, 4059, 323, 1389, 3480, 0, 482, 499, 3077, 10862, 264, 4459, 502, 10723, 1614, 315, 2103, 2136, 323, 71705, 430, 12006, 701, 5357, 304, 4102, 13, 1102, 374, 304, 420, 1614, 315, 4059, 430, 433, 374, 3284, 369, 701, 2547, 311, 11322, 810, 1109, 433, 1550, 994, 499, 1047, 682, 279, 11555, 69353, 304, 701, 2010, 13, 21834, 922, 433, 1389, 682, 420, 502, 27802, 20545, 3782, 505, 21760, 389, 430, 2697, 2103, 1486, 304, 4156, 315, 499, 627, 23025, -100 ]
Actor Dean Cain calls himself "pro-choice," but that didn't stop him starring in an upcoming film revealing the horror story of Philadelphia abortionist Kermit Gosnell. Among other things, Gosnell was convicted May 2013 of one count of involuntary manslaughter and the first-degree murder of three babies (while the Grand Jury report, The Hollywood Reporter has noted, "alleges Gosnell killed hundreds of infants by sticking scissors into their necks"). Cain said the script originally inspired him to be in Gosnell. But it was not an easy story to jump into. Except, perhaps, later in the pregnancy. But Gosnell, he said, saw it a different way. Directed by Nick Searcy (The Shape of Water), Gosnell was filmed in Oklahoma. Filmmakers Phelim McAleer and Ann McElhinney are experts on the story after interviewing Gosnell, and have even written a best-selling book on the abortionist, published by Regnery. Former employees have confirmed what the filmmakers say: Gosnell's abortion clinic was a house of horrors. "The movie is as much as exposé of the media as it is of abortion," McElhinney said in exclusive statement to MRC in June. "The media who ignored the story will have to explain to millions of people who will see the movie why they censored this story." In addition to Gosnell's trial, the filmmakers say they themselves faced challenges in the media as well as the legal system and Hollywood, for their upcoming movie. The filming of the movie itself, sponsored by a crowd-funding campaign, faced censorship. But after raising $2.3 million, Gosnell became the most successful crowdfunded movie on Indiegogo.
{ "redpajama_set_name": "RedPajamaC4" }
4,110
[ 128000, 19402, 25028, 67188, 6880, 5678, 330, 782, 63726, 1359, 719, 430, 3287, 956, 3009, 1461, 40500, 304, 459, 14827, 4632, 31720, 279, 22169, 3446, 315, 19895, 20710, 380, 36258, 1800, 63481, 49565, 627, 34710, 1023, 2574, 11, 63481, 49565, 574, 23959, 3297, 220, 679, 18, 315, 832, 1797, 315, 91605, 89339, 323, 279, 1176, 38775, 10102, 315, 2380, 24869, 320, 3556, 279, 10517, 96371, 1934, 11, 578, 17681, 48081, 706, 10555, 11, 330, 278, 1978, 288, 63481, 49565, 7577, 11758, 315, 42534, 555, 38072, 72724, 1139, 872, 13272, 82, 39709, 34, 467, 1071, 279, 5429, 13517, 14948, 1461, 311, 387, 304, 63481, 49565, 627, 4071, 433, 574, 539, 459, 4228, 3446, 311, 7940, 1139, 627, 59115, 11, 8530, 11, 3010, 304, 279, 20209, 627, 4071, 63481, 49565 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 19402, 25028, 67188, 6880, 5678, 330, 782, 63726, 1359, 719, 430, 3287, 956, 3009, 1461, 40500, 304, 459, 14827, 4632, 31720, 279, 22169, 3446, 315, 19895, 20710, 380, 36258, 1800, 63481, 49565, 627, 34710, 1023, 2574, 11, 63481, 49565, 574, 23959, 3297, 220, 679, 18, 315, 832, 1797, 315, 91605, 89339, 323, 279, 1176, 38775, 10102, 315, 2380, 24869, 320, 3556, 279, 10517, 96371, 1934, 11, 578, 17681, 48081, 706, 10555, 11, 330, 278, 1978, 288, 63481, 49565, 7577, 11758, 315, 42534, 555, 38072, 72724, 1139, 872, 13272, 82, 39709, 34, 467, 1071, 279, 5429, 13517, 14948, 1461, 311, 387, 304, 63481, 49565, 627, 4071, 433, 574, 539, 459, 4228, 3446, 311, 7940, 1139, 627, 59115, 11, 8530, 11, 3010, 304, 279, 20209, 627, 4071, 63481, 49565, -100 ]
Mozart's Attic Mozart's Attic - Thursday, Nov 5th 10:00 pm Jean-Phillippe Rameau Some of the most elegant music of the Baroque era came not from Bach, nor Handel, nor even Vivaldi. Jean-Phillippe Rameau, working at the Parisian stage and the court of Louis XV, was a pre-eminent practitioner of the 18th-century French style -- a style that wOULD end by the time of the Revolution. Rameau was then pretty much forgotten until the baroque revival of the 20th century. We'll hear some of Rameau's French elegance -- and then some Victorian and Edwardian elegance from Sir Edward Elgar. Then we'll hear some virtuosic music from -- not one, but two -- musicians of such bravura technique that they were each reputed to have sold their souls to the devil in exchange for their skill. Thursday night at 10:00 on 89.5 FM and streaming live at WFIT.org Jay Lamy (Jayski) Originally from central Massachusetts, Jay has called the Space Coast home for more than 30 years. He began his association with WFIT in the late '90s as a dumpster diver for office furniture in response to a broadcast plea for a new chair from a frustrated disc jockey. (WFIT has come a long way since.) See stories by Jay Lamy (Jayski)
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
3,465
[ 128000, 44, 9700, 472, 596, 7867, 292, 198, 44, 9700, 472, 596, 7867, 292, 482, 7950, 11, 4723, 220, 20, 339, 220, 605, 25, 410, 9012, 198, 69009, 12, 92777, 575, 375, 432, 373, 2933, 198, 8538, 315, 279, 1455, 26861, 4731, 315, 279, 4821, 61652, 11639, 3782, 539, 505, 42258, 11, 6463, 8704, 301, 11, 6463, 1524, 650, 4023, 8747, 13, 20263, 12, 92777, 575, 375, 432, 373, 2933, 11, 3318, 520, 279, 12366, 1122, 6566, 323, 279, 5590, 315, 12140, 53694, 11, 574, 264, 864, 37612, 14168, 55472, 315, 279, 220, 972, 339, 34457, 8753, 1742, 1198, 264, 1742, 430, 289, 44006, 842, 555, 279, 892, 315, 279, 22910, 13, 432, 373, 2933, 574, 1243, 5128, 1790, 25565, 3156, 279, 3703, 61652, 57105, 315, 279, 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 ]
[ 44, 9700, 472, 596, 7867, 292, 198, 44, 9700, 472, 596, 7867, 292, 482, 7950, 11, 4723, 220, 20, 339, 220, 605, 25, 410, 9012, 198, 69009, 12, 92777, 575, 375, 432, 373, 2933, 198, 8538, 315, 279, 1455, 26861, 4731, 315, 279, 4821, 61652, 11639, 3782, 539, 505, 42258, 11, 6463, 8704, 301, 11, 6463, 1524, 650, 4023, 8747, 13, 20263, 12, 92777, 575, 375, 432, 373, 2933, 11, 3318, 520, 279, 12366, 1122, 6566, 323, 279, 5590, 315, 12140, 53694, 11, 574, 264, 864, 37612, 14168, 55472, 315, 279, 220, 972, 339, 34457, 8753, 1742, 1198, 264, 1742, 430, 289, 44006, 842, 555, 279, 892, 315, 279, 22910, 13, 432, 373, 2933, 574, 1243, 5128, 1790, 25565, 3156, 279, 3703, 61652, 57105, 315, 279, 220, -100 ]
In this session, you'll hear real-world examples of how B2B marketers are improving their results by sending the right email to the right person at the right time. You will also hear from thought leader Matt Heinz who will share how data optimization steps are helping to enable audience development and audience analysis for effective segmentation. Through a mix of best practices and prescriptive examples, the session will show how segmentation, targeting a is can help improve messaging and enable marketers to pair top-notch content with key personas. Social123 and Insightpool present this powerful Webinar on 8 Ways to Humanize Your Brand with Data featuring B2B Marketing guru, Meagen Eisenberg, CMO of MongoDB. Moderated by CEO of Social123 Aaron Biddar, and Insightpool CEO Devon Wijesinghe, we delve deep into what it means to have a 'human-to-human' marketing approach. Leading financial organization, FIS Global enhanced their Data Orchestration Process with Social123's social sourced contact data. Markie Award winner, and Director of Demand Generation, Cristal Foster explains how using accurate B2B contact data and Social123's data append enhanced their marketing results. The marketing automation industry is the fastest growing segment in the nation, with $120 billion projected to be spent by 2025. With literally thousands of marketing technology options on the market, it is extremely difficult for a marketer to understand what area of marketing technology offers the best solution. Marketers know ALL too well that digital marketing starts with B2B CONTACT DATA…and interestingly enough, B2B contact data expires faster than any other kind of data. You can have every new marketing platform on the market to generate content, messaging and even platforms to deploy….but where is the ROI if all of the carefully crafted messaging isn't reaching the right people? Brainshark uses Social123's B2B contact data search engine to build targeted lists based on their ideal buyer persona that support micro campaigning. Brainshark focuses on delivering the right message to the right people at the right time. The use of B2B social contact data has generated interaction with their audience through insights such as user groups, interests, skills, and more, to develop a strategic message and enhance demand generation. With improved insights from social data, marketing is able to pass on qualified leads to their sales departments. Don't take our word for it; listen to how Brainshark is enhancing sales, ROI and customer interaction with Social123.
{ "redpajama_set_name": "RedPajamaC4" }
5,970
[ 128000, 644, 420, 3882, 11, 499, 3358, 6865, 1972, 31184, 10507, 315, 1268, 426, 17, 33, 55572, 527, 18899, 872, 3135, 555, 11889, 279, 1314, 2613, 311, 279, 1314, 1732, 520, 279, 1314, 892, 13, 1472, 690, 1101, 6865, 505, 3463, 7808, 13678, 1283, 41622, 889, 690, 4430, 1268, 828, 26329, 7504, 527, 10695, 311, 7431, 10877, 4500, 323, 10877, 6492, 369, 7524, 60852, 13, 17331, 264, 6651, 315, 1888, 12659, 323, 1685, 41419, 10507, 11, 279, 3882, 690, 1501, 1268, 60852, 11, 25103, 264, 374, 649, 1520, 7417, 30622, 323, 7431, 55572, 311, 6857, 1948, 78611, 2262, 449, 1401, 32525, 627, 27414, 4513, 323, 72071, 10497, 3118, 420, 8147, 5000, 14080, 389, 220, 23, 42419, 311, 11344, 553, 4718, 16835, 449, 2956, 16850, 426, 17, 33, 18729 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 420, 3882, 11, 499, 3358, 6865, 1972, 31184, 10507, 315, 1268, 426, 17, 33, 55572, 527, 18899, 872, 3135, 555, 11889, 279, 1314, 2613, 311, 279, 1314, 1732, 520, 279, 1314, 892, 13, 1472, 690, 1101, 6865, 505, 3463, 7808, 13678, 1283, 41622, 889, 690, 4430, 1268, 828, 26329, 7504, 527, 10695, 311, 7431, 10877, 4500, 323, 10877, 6492, 369, 7524, 60852, 13, 17331, 264, 6651, 315, 1888, 12659, 323, 1685, 41419, 10507, 11, 279, 3882, 690, 1501, 1268, 60852, 11, 25103, 264, 374, 649, 1520, 7417, 30622, 323, 7431, 55572, 311, 6857, 1948, 78611, 2262, 449, 1401, 32525, 627, 27414, 4513, 323, 72071, 10497, 3118, 420, 8147, 5000, 14080, 389, 220, 23, 42419, 311, 11344, 553, 4718, 16835, 449, 2956, 16850, 426, 17, 33, 18729, -100 ]
Austune products are Designed to suit Restaurants, Hotels, National Chains and all food manufacturing facilities their Euro design and appearance is smart and sleek and unique to the Industry and the products are recognized as the benchmark of engineering, functionality, and reliability. We offer a wide variety of prep counters, bar coolers, commercial fridges/freezers, under-counter refrigeration, including single to multiple door fridges and dual temperature units. Austune Turbo Air products promote both reliable food preservation and protecting unit's working components to increase longevity and reliability. That's why the products are maintained at the uniform temperature. Austune Turbo Air products are rust-resistant, rounded corners for workplace safety, beautiful lighting, and compressor area is foam insulated to reinforce durability. Austune product is backed by an Australia wide full parts and labour warranty which includes a unique 24/7 aftersales service.
{ "redpajama_set_name": "RedPajamaC4" }
8,693
[ 128000, 32, 592, 2957, 3956, 527, 48525, 311, 7937, 59193, 11, 45871, 11, 5165, 82869, 323, 682, 3691, 15266, 13077, 872, 20026, 2955, 323, 11341, 374, 7941, 323, 48494, 323, 5016, 311, 279, 24780, 323, 279, 3956, 527, 15324, 439, 279, 29531, 315, 15009, 11, 15293, 11, 323, 31638, 13, 1226, 3085, 264, 7029, 8205, 315, 22033, 32632, 11, 3703, 7155, 388, 11, 8518, 1448, 30263, 56794, 60719, 11, 1234, 64289, 30477, 367, 11, 2737, 3254, 311, 5361, 6134, 1448, 30263, 323, 19091, 9499, 8316, 627, 32, 592, 2957, 48275, 6690, 3956, 12192, 2225, 15062, 3691, 46643, 323, 22973, 5089, 596, 3318, 6956, 311, 5376, 58219, 323, 31638, 13, 3011, 596, 3249, 279, 3956, 527, 18908, 520, 279, 14113, 9499, 13, 13222, 2957, 48275, 6690, 3956, 527, 23941 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 592, 2957, 3956, 527, 48525, 311, 7937, 59193, 11, 45871, 11, 5165, 82869, 323, 682, 3691, 15266, 13077, 872, 20026, 2955, 323, 11341, 374, 7941, 323, 48494, 323, 5016, 311, 279, 24780, 323, 279, 3956, 527, 15324, 439, 279, 29531, 315, 15009, 11, 15293, 11, 323, 31638, 13, 1226, 3085, 264, 7029, 8205, 315, 22033, 32632, 11, 3703, 7155, 388, 11, 8518, 1448, 30263, 56794, 60719, 11, 1234, 64289, 30477, 367, 11, 2737, 3254, 311, 5361, 6134, 1448, 30263, 323, 19091, 9499, 8316, 627, 32, 592, 2957, 48275, 6690, 3956, 12192, 2225, 15062, 3691, 46643, 323, 22973, 5089, 596, 3318, 6956, 311, 5376, 58219, 323, 31638, 13, 3011, 596, 3249, 279, 3956, 527, 18908, 520, 279, 14113, 9499, 13, 13222, 2957, 48275, 6690, 3956, 527, 23941, -100 ]
Hannover, Germany, April 1st, 2019 – RoboticsX GmbH, a German high-tech company, specialized in advanced software for industrial robotics and automation, today announced a new solution in the field of industrial intelligence. The manufacturing software platform X1 GRID™ announced at Hannover Messe 2019 is infused with IBM Watson IoT and Cloud technology and ready to unlock new value for the production world. "RoboticsX delivers clean and transparent source data from industrial systems. When it comes to data analytics there is no better partner for RoboticsX than IBM with its array of services", added Boras. "Closed ecosystems such as manufacturing environments are seeing great progress, fueled by machine learning and artificial intelligence technologies. Machines are actually learning. AI also helps companies design better virtual factories before putting them into the real environment", concluded Boras. Die deutsche Robotics-X GmbH, mit Sitz in München, hat ein neues Forschungs- und Entwicklungszentrum in der slowenischen Hauptstadt Ljubljana eingeweiht. Die Einrichtung namens Area X-1 ist das neue Entwicklungszentrum für Industrie-4.0-Lösungen mit Fokus auf intelligente Roboter und hoch entwickelten Automatisierungslösungen für die Industrie. Gleichzeitig mit der Eröffnung des neuen Robotics-X-Zentrums wurde die offizielle Ankündigung der Vertragsunterzeichnung zwischen Robotics-X und Yaskawa Europe über die Entwicklung von Industrie- 4.0-Lösungen bekanntgegeben. Robotics-X wird in Zukunft standardmäßige und kundenspezifische Lösungen für Yaskawa-Kunden entwickeln. RoboticsX GmbH, München based German company, status quo challenger, determined to disrupt manufacturing and the way how products are created, opened new research and development (R&D) center in Ljubljana, the capital of Slovenia. The new facility, called Area X-1, will serve as a development center for Industry 4.0 solutions, focused on smart robots and advanced industrial automation solutions. Opening of the new RoboticsX facilities coincided with official announcement of signed contract between RoboticsX and Yaskawa Europe, to develop Industry 4.0 solutions. RoboticsX will develop standard and custom-made solutions for Yaskawa customers. "I am satisfied that we have realized the next big and important step for RoboticsX company, expanding R&D operations from Germany also to Slovenia. Our future outlook is more than optimistic and we will make sure that our solutions are at the forefront of the industry and pave the way to smart manufacturing", said Peter Boras, founder and CEO of RoboticsX. "I'm proud of the RoboticsX team and the work it has done so far. Even the most demanding tasks were done exceptionally. We are happy to work with such a motivated team, as their motivation and drive are contagious", added Bruno Schnekenburger, former President of the Robotics Division, now Board member COO at Yaskawa Europe. At the opening ceremony, representatives of RoboticsX showed the attendees advanced solutions for robotic welding, coupled with artificial intelligence, machine learning, and big data analytics. "We are developing solutions for the manufacturing of tomorrow. By upgrading industrial robots with smart and connected solutions, we are increasing their performance and efficiency, while reducing operating and maintenance costs. Today, every production company that wants to remain competitive in the future has to think about introducing smart robots in its manufacturing processes", added Rok Prešeren PhD., co-founder and CTO at RoboticsX. The new "YASKAWA Cockpit" – the core of YASKAWA's i3-Mechatronics Industry 4.0 solution for Robotics, Drives, Motion and Control products has been shown to the public for the first time at Hannover Fair 2018. RoboticsX, a young German High-Tech company supported YASKAWA for engineering and software development of the new YASKAWA Cockpit.
{ "redpajama_set_name": "RedPajamaC4" }
4,808
[ 128000, 39, 1036, 2017, 11, 10057, 11, 5936, 220, 16, 267, 11, 220, 679, 24, 1389, 77564, 55, 32577, 11, 264, 6063, 1579, 42357, 2883, 11, 28175, 304, 11084, 3241, 369, 13076, 74706, 323, 33762, 11, 3432, 7376, 264, 502, 6425, 304, 279, 2115, 315, 13076, 11478, 13, 578, 15266, 3241, 5452, 1630, 16, 66027, 16500, 7376, 520, 28829, 2017, 386, 24201, 220, 679, 24, 374, 72903, 449, 29022, 32580, 50180, 323, 15161, 5557, 323, 5644, 311, 15405, 502, 907, 369, 279, 5788, 1917, 627, 1, 44474, 1233, 55, 28421, 4335, 323, 18300, 2592, 828, 505, 13076, 6067, 13, 3277, 433, 4131, 311, 828, 28975, 1070, 374, 912, 2731, 8427, 369, 77564, 55, 1109, 29022, 449, 1202, 1358, 315, 3600, 498, 3779, 23768, 300, 627, 1, 27982, 61951 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 39, 1036, 2017, 11, 10057, 11, 5936, 220, 16, 267, 11, 220, 679, 24, 1389, 77564, 55, 32577, 11, 264, 6063, 1579, 42357, 2883, 11, 28175, 304, 11084, 3241, 369, 13076, 74706, 323, 33762, 11, 3432, 7376, 264, 502, 6425, 304, 279, 2115, 315, 13076, 11478, 13, 578, 15266, 3241, 5452, 1630, 16, 66027, 16500, 7376, 520, 28829, 2017, 386, 24201, 220, 679, 24, 374, 72903, 449, 29022, 32580, 50180, 323, 15161, 5557, 323, 5644, 311, 15405, 502, 907, 369, 279, 5788, 1917, 627, 1, 44474, 1233, 55, 28421, 4335, 323, 18300, 2592, 828, 505, 13076, 6067, 13, 3277, 433, 4131, 311, 828, 28975, 1070, 374, 912, 2731, 8427, 369, 77564, 55, 1109, 29022, 449, 1202, 1358, 315, 3600, 498, 3779, 23768, 300, 627, 1, 27982, 61951, -100 ]
Betway Casino, established in 2006 and licensed and regulated in Malta, is one of the pioneers in one-stop online gaming sites with Casino, Sportsbook, International Poker Room and Bingo options. Powered by well-known Microgaminging software and certified by eCogra, Betway offers impressive 96%+ payouts, great graphics, and a user-friendly design. Betway offers all the 'greatest hits' (and then some) list of games, including popular progressive, online slot and table games. Betway software is provided by the industry-leader, Microgaming. The graphics are good and the audio and game-play is superb. There are approximately 500 great games for players to choose from including progressive jackpot titles. Betway Casino has all the games you'd expect from a global leader in the Online Gaming Industry. Along with the seemingly endless supply of Microgaming slots (including classics like Thunderstruck II, Game of Thrones and Tomb Raider as well as newer titles loaded every month) you'll also find table games aplenty. Betway also delivers a range of Live Dealer Casino games. To give you that realistic 'Vegas' feel. Betway features Live Roulette, Blackjack, Baccarat and Hold'em on offer. Betway also offers great sports betting on virtually every sport you can imagine Specifically, they do an excellent job for Canadians with a full range of North American sports betting options available such as NHL, CFL, NFL, MLB and NBA. The Betway Casino gaming software is supplied by Microgaming and like many of their modern online casinos the desktop flash version works so well that there is no requirement to download further software. Just hook up to an average-or-better-speed reliable broadband connection and/or wifi and begin playing! Betway Casino offers the full mobile online gambling experience without the need to download a new App on your phone. Like most players I enjoy being able to play whilst I'm on the move. In my tests, I was always able to load the Betway Casino directly from my ZTE smartphone's browser. The Mobile version is available to both iOS and Android users with a basic requirement of having access to a stable wifi connection. The layout is cleanly organised in an efficient, clutter-free environment for the small screen and the buttons are not too small, allowing a hassle-free platform to tap your way through the mobile casino. In general, Betway does not offer many special promotions (click on the 'plus' tag on the top-right-hand corner of the home page for all current promos). However, there is a loyalty program that offers double points on selected games. In addition to the Loyalty Program, Betway Online Casino offers one of the more generous Welcome Bonus' around. 'GET CAD$1,000 FREE!' yells the headline on the Home Page. However, it's worth a closer look at the details. How does it work? The bonus, as with many bonuses this size, is split up into three deposits. Upon making your first Betway deposit, you are offered a deposit bonus of 100% up to CAD$250. This means that the casino will double any amount from CAD$20 to CAD$250 that you deposit into your casino account. On your second deposit, you may take a 25% match bonus up to CAD$250, and the third deposit offers you a 50% bonus up to CAD$500. The 3 match bonuses add up to a maximum bonus sum of CAD$1000. At Betway, the playthrough demand on the bonus is 50x, which means that you have to wager 50x the sum of the bonus you accept, before you can withdraw any winnings made with the bonus money in cash. Given the size of the 'gift money', this is not extreme and many online casinos have similar terms regarding playthrough conditions. To Betway's credit, all of the terms and conditions are clearly outlined on the website to minimise any confusion. Like many of the big global online casinos, Betway have aligned themselves with the casino watchdog organisation eCogra, which ensures and legislates casino fair play. For the peace of mind of players, the casino uses 128-bit SSL digital encryption (just like major banks worldwide) to ensure that all player data is kept safe and secure. Betway does not offer as many banking options as many online casinos, but what they do offer is secure and reliable. Payouts take longer than most online casinos (4-6 days) depending on payment method. Betway usually doesn't begin processing payouts until 24-48 hours. Funds are usually returned via the original method. If your original deposit was made with Maestro, Citadel Direct or PaysafeCard you may need to contact Customer Support to arrange an alternate method. Customer Support 24/7 via email [email protected] , live chat or telephone support on 1-877-811-2604 in English/French. You can play in $CAD which removes any unnecessary exchange fees. Other major currencies are available. Betway has a number of different languages for Canadians, including English and French. A wide range of European and Asian languages are also available. Betway is an impressive one-stop online casino with great variety of game options and a sportsbook. It would be nice to have more game providers on offer but as the software provider is the industry's largest in Microgaming, it is not a big issue. Both Desktop and Mobile Sites are great as you can play immediately without any need to download. I was not a fan of the slower-than-industry-average payout times for Canadians. However, if you like the convenience of all your favorite gaming options on one site, you can't go wrong with Betway.
{ "redpajama_set_name": "RedPajamaC4" }
4,828
[ 128000, 57299, 3195, 21115, 11, 9749, 304, 220, 1049, 21, 323, 16383, 323, 35319, 304, 61750, 11, 374, 832, 315, 279, 83407, 304, 832, 42311, 2930, 16211, 6732, 449, 21115, 11, 13482, 2239, 11, 7327, 38668, 10637, 323, 93148, 2671, 13, 60720, 555, 1664, 22015, 18654, 70, 6605, 287, 3241, 323, 23759, 555, 384, 32884, 969, 11, 13315, 3195, 6209, 16358, 220, 4161, 4, 10, 90629, 11, 2294, 14515, 11, 323, 264, 1217, 22658, 2955, 13, 13315, 3195, 6209, 682, 279, 364, 70, 11423, 13280, 6, 320, 438, 1243, 1063, 8, 1160, 315, 3953, 11, 2737, 5526, 23053, 11, 2930, 9633, 323, 2007, 3953, 627, 57299, 3195, 3241, 374, 3984, 555, 279, 5064, 31307, 1013, 11, 18654, 70, 6605, 13, 578, 14515, 527, 1695, 323, 279, 7855, 323 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 57299, 3195, 21115, 11, 9749, 304, 220, 1049, 21, 323, 16383, 323, 35319, 304, 61750, 11, 374, 832, 315, 279, 83407, 304, 832, 42311, 2930, 16211, 6732, 449, 21115, 11, 13482, 2239, 11, 7327, 38668, 10637, 323, 93148, 2671, 13, 60720, 555, 1664, 22015, 18654, 70, 6605, 287, 3241, 323, 23759, 555, 384, 32884, 969, 11, 13315, 3195, 6209, 16358, 220, 4161, 4, 10, 90629, 11, 2294, 14515, 11, 323, 264, 1217, 22658, 2955, 13, 13315, 3195, 6209, 682, 279, 364, 70, 11423, 13280, 6, 320, 438, 1243, 1063, 8, 1160, 315, 3953, 11, 2737, 5526, 23053, 11, 2930, 9633, 323, 2007, 3953, 627, 57299, 3195, 3241, 374, 3984, 555, 279, 5064, 31307, 1013, 11, 18654, 70, 6605, 13, 578, 14515, 527, 1695, 323, 279, 7855, 323, -100 ]
New privacy-protected Facebook data for independent research on social media's impact on democracy By: , Chaya Nayak In 2018, Facebook beganan initiative to support independent academic research on social media's role in elections and democracy. This first-of-its-kind project seeks to provide researchers access to privacy-preserving data sets in order to support research on these important topics. Today, we are announcing that we have substantially increased the amount of data we're providing to 60 academic researchers across 17 labs and 30 universities around the world. This release delivers on the commitment we made in July 2018 to share a data set that enables researchers to study information and misinformation on Facebook, while also ensuring that we protect the privacy of our users. This new data release supplants data we released in the fall of 2019. That 2019 data set consisted of links that had been shared publicly on Facebook by at least 100 unique Facebook users. It included information about share counts, ratings by Facebook's third-party fact-checkers, and user reporting on spam, hate speech, and false news associated with those links. We have expanded the data set to now include more than 38 million unique links with new aggregated information to help academic researchers analyze how many people saw these links on Facebook and how they interacted with that content – including views, clicks, shares, likes, and other reactions. We've also aggregated these shares by age, gender, country, and month. And, we have expanded the time frame covered by the data from January 2017 – February 2019 to January 2017 – August 2019. With this data, researchers will be able to understand important aspects of how social media shapes our world. They'll be able to make progress on the research questions they proposed, such as "how to characterize mainstream and non-mainstream online news sources in social media" and "studying polarization, misinformation, and manipulation across multiple platforms and the larger information ecosystem." In addition to the data set of URLs, researchers will continue to have access to CrowdTangle and Facebook's Ad Library API to augment their analyses. Per the original plan for this project, outside of a limited review to ensure that no confidential or user data is inadvertently released, these researchers will be able to publish their findings without approval from Facebook. We are sharing this data with researchers while continuing to prioritize the privacy of people who use our services. This new data set, like the data we released before it, is protected by a method known as differential privacy. Researchers have access to data tables from which they can learn about aggregated groups, but where they cannot identify any individual user. As Harvard University's Privacy Tools project puts it: "The guarantee of a differentially private algorithm is that its behavior hardly changes when a single individual joins or leaves the dataset — anything the algorithm might output on a database containing some individual's information is almost as likely to have come from a database without that individual's information. … This gives a formal guarantee that individual-level information about participants in the database is not leaked." At its core, differential privacy operates by adding enough random noise to data such that there are mathematical guarantees of individuals' protection from reidentification. As such, the results of analysis are the same whether or not a given individual is included in the data, meaning that people have plausible deniability that their information is contained within it. We have worked with a committee of differential privacy experts, including Daniel Kifer, Aaron Roth, Abhradeep Thakurta, and Danfeng Zhang, to ensure that we have built differential privacy into our data set in a rigorous way. This committee has also submitted a white paper for journal publication that discusses guidelines for implementing and auditing differentially private systems. This white paper summarizes our learnings on implementing differential privacy and serves as a roadmap for other organizations seeking to implement similar privacy protections. Over the past two years, we have dedicated more than $11 million and more than 20 full-time staff members to this work, making Facebook the largest contributor to the project. This announcement does not mark the end of our commitment. We will continue to provide access to data for independent academic research while ensuring that we also protect people's privacy. We are currently onboarding another round of researchers, and interested researchers can continue to apply for data access through Social Science One's request for proposal process. We look forward to sharing additional updates on this work over the coming months. Microestimates of wealth for all low and middle income countries Introducing the Researcher Platform: Empowering independent research analyzing large-scale data from Meta Q&A with Nick Vamivakas, professor at Rochester University and Facebook academic collaborator
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
8,946
[ 128000, 3648, 12625, 12, 5883, 5690, 828, 369, 9678, 3495, 389, 3674, 3772, 596, 5536, 389, 20095, 198, 1383, 25, 1174, 921, 12874, 99173, 587, 198, 644, 220, 679, 23, 11, 5690, 6137, 276, 20770, 311, 1862, 9678, 14584, 3495, 389, 3674, 3772, 596, 3560, 304, 16374, 323, 20095, 13, 1115, 1176, 8838, 12, 1220, 60806, 2447, 26737, 311, 3493, 12074, 2680, 311, 12625, 80876, 20073, 828, 7437, 304, 2015, 311, 1862, 3495, 389, 1521, 3062, 13650, 627, 15724, 11, 584, 527, 38787, 430, 584, 617, 32302, 7319, 279, 3392, 315, 828, 584, 2351, 8405, 311, 220, 1399, 14584, 12074, 4028, 220, 1114, 51048, 323, 220, 966, 23978, 2212, 279, 1917, 13, 1115, 4984, 28421, 389, 279, 15507, 584, 1903, 304, 5887, 220, 679, 23, 311, 4430, 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 ]
[ 3648, 12625, 12, 5883, 5690, 828, 369, 9678, 3495, 389, 3674, 3772, 596, 5536, 389, 20095, 198, 1383, 25, 1174, 921, 12874, 99173, 587, 198, 644, 220, 679, 23, 11, 5690, 6137, 276, 20770, 311, 1862, 9678, 14584, 3495, 389, 3674, 3772, 596, 3560, 304, 16374, 323, 20095, 13, 1115, 1176, 8838, 12, 1220, 60806, 2447, 26737, 311, 3493, 12074, 2680, 311, 12625, 80876, 20073, 828, 7437, 304, 2015, 311, 1862, 3495, 389, 1521, 3062, 13650, 627, 15724, 11, 584, 527, 38787, 430, 584, 617, 32302, 7319, 279, 3392, 315, 828, 584, 2351, 8405, 311, 220, 1399, 14584, 12074, 4028, 220, 1114, 51048, 323, 220, 966, 23978, 2212, 279, 1917, 13, 1115, 4984, 28421, 389, 279, 15507, 584, 1903, 304, 5887, 220, 679, 23, 311, 4430, 264, -100 ]
The selected directory is lost all the time. In half a dozen scenarios, the selected directory is lost, causing all sorts of trouble throughout the portal. 1. When you timeout and click "reload". 2. When the portal opens a new tab to get you into the SCM portal. This occurs from multiple places when configuring an Azure WebSite. 3. When you ctrl-click a link to open something in a new tab to have two copies of the portal open. 4. When you open a second copy of the portal by copy/pasting the URL. What's worse is whenever this happens, it forces a re-login for some reason (not sure why). If you leave the portal open for some time, eventually you'll either time out, or get a message that updates are ready and you should reload. In both cases you are told your work (open blades) was saved. In my case, I've got access to multiple directories. When prompted to reload, however, the Default Directory is almost always loaded. The portal then sees that I was navigated to a particular blade (it's in the querystring), but fails to switch me to the correct Directory first, so when the blade finally loads, it's a "you don't have access to this resource" error blade. I say almost always, because sometimes the directory context is not lost. If I were to guess, this only happens when I'm prompted to reload because updates are available, thus my login token context for the directory is not lost. As a workaround, if I'm fast enough when the portal reloads, I can click my username, select the correct directory, and as long as the redirectUrl for the previously-open blade is still in the URL, it will switch Directories and reload the correct asset. First I should say that this was working pretty well about a month ago. But now it's not. Just in general, the timeout behavior when you have multiple directories available leaves something to be desired. I'll click the "reload" button that is popped up, then it'll prompt me to log in again (which it shouldn't), then takes me to a different directory than I was on previously, then when I change back to the directory I was on before I was timed out, it prompts me to log in again. I could probably tell you what's going on if I looked into it more, but just in general, the behavior isn't great. It seems like every directory switch requires a new login. I have a subscription for my MSDN account as well as access to a couple of client subscriptions. If I leave the portal inactive for a significant period of time, say overnight, I am automatically logged out. Using the workflow to log in I am taken back to the last subscription I was added to, not the subscription that I was using. This also happens when a portal upgrade is available. It claims to be saving my work and does seem to present me with the same resources that were open before the upgrade, but in the last subscription I was added to, not the subscription I was in. In this case I get access errors (see attached). Expected behavior: When logging in or upgrading, the portal should take me back to the subscription that I was last using.
{ "redpajama_set_name": "RedPajamaC4" }
6,128
[ 128000, 791, 4183, 6352, 374, 5675, 682, 279, 892, 627, 644, 4376, 264, 21030, 26350, 11, 279, 4183, 6352, 374, 5675, 11, 14718, 682, 21522, 315, 12544, 6957, 279, 24007, 627, 16, 13, 3277, 499, 9829, 323, 4299, 330, 40082, 23811, 17, 13, 3277, 279, 24007, 16264, 264, 502, 5769, 311, 636, 499, 1139, 279, 69648, 24007, 13, 1115, 13980, 505, 5361, 7634, 994, 72883, 459, 35219, 5000, 18060, 627, 18, 13, 3277, 499, 24675, 29218, 264, 2723, 311, 1825, 2555, 304, 264, 502, 5769, 311, 617, 1403, 11236, 315, 279, 24007, 1825, 627, 19, 13, 3277, 499, 1825, 264, 2132, 3048, 315, 279, 24007, 555, 3048, 4420, 15067, 279, 5665, 627, 3923, 596, 11201, 374, 15716, 420, 8741, 11, 433, 8603, 264, 312, 36148, 369, 1063, 2944 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4183, 6352, 374, 5675, 682, 279, 892, 627, 644, 4376, 264, 21030, 26350, 11, 279, 4183, 6352, 374, 5675, 11, 14718, 682, 21522, 315, 12544, 6957, 279, 24007, 627, 16, 13, 3277, 499, 9829, 323, 4299, 330, 40082, 23811, 17, 13, 3277, 279, 24007, 16264, 264, 502, 5769, 311, 636, 499, 1139, 279, 69648, 24007, 13, 1115, 13980, 505, 5361, 7634, 994, 72883, 459, 35219, 5000, 18060, 627, 18, 13, 3277, 499, 24675, 29218, 264, 2723, 311, 1825, 2555, 304, 264, 502, 5769, 311, 617, 1403, 11236, 315, 279, 24007, 1825, 627, 19, 13, 3277, 499, 1825, 264, 2132, 3048, 315, 279, 24007, 555, 3048, 4420, 15067, 279, 5665, 627, 3923, 596, 11201, 374, 15716, 420, 8741, 11, 433, 8603, 264, 312, 36148, 369, 1063, 2944, -100 ]
We were so proud to foster this fantastic boy at the end of his life. Our friends at Pit Sisters pulled him from death row in Jacksonville, Florida, got him the necessary surgery he needed, and let us foster him to live out the rest of his yummy life. Thank you Lisa for driving him to us. He had terminal cancer but that didn't stop him from having a blast in a loving home during his last days.
{ "redpajama_set_name": "RedPajamaC4" }
5,960
[ 128000, 1687, 1051, 779, 12691, 311, 31087, 420, 14964, 8334, 520, 279, 842, 315, 813, 2324, 13, 5751, 4885, 520, 40079, 62088, 13541, 1461, 505, 4648, 2872, 304, 49046, 11, 9784, 11, 2751, 1461, 279, 5995, 15173, 568, 4460, 11, 323, 1095, 603, 31087, 1461, 311, 3974, 704, 279, 2800, 315, 813, 76454, 2324, 13, 9930, 499, 29656, 369, 10043, 1461, 311, 603, 13, 1283, 1047, 15372, 9572, 719, 430, 3287, 956, 3009, 1461, 505, 3515, 264, 21327, 304, 264, 21955, 2162, 2391, 813, 1566, 2919, 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 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 ]
[ 1687, 1051, 779, 12691, 311, 31087, 420, 14964, 8334, 520, 279, 842, 315, 813, 2324, 13, 5751, 4885, 520, 40079, 62088, 13541, 1461, 505, 4648, 2872, 304, 49046, 11, 9784, 11, 2751, 1461, 279, 5995, 15173, 568, 4460, 11, 323, 1095, 603, 31087, 1461, 311, 3974, 704, 279, 2800, 315, 813, 76454, 2324, 13, 9930, 499, 29656, 369, 10043, 1461, 311, 603, 13, 1283, 1047, 15372, 9572, 719, 430, 3287, 956, 3009, 1461, 505, 3515, 264, 21327, 304, 264, 21955, 2162, 2391, 813, 1566, 2919, 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 ]
Using Schumann's "Eichendorff Liederkreis" as the primary example, this work sheds new light on the structure of 19th-century song cycles and on Schumann's particular response to the problem of musical coherence in large scale works. Drawing on analysis, literary criticism, and source studies, this book argues for a new conception of the 19th-century song cycle. Rather than a unified whole, the cycles are seen as a fragmentary and open-ended form that enabled Schumann to express the romantic themes of transcendence and ineffability in musical terms. The book begins with a general discussion of the cycle as a genre. The heart of the book is a series of closely argued analyses of five of the Eichendorff songs, with particular attention on the relationship between text and music. Ferris concludes by setting the Liederkreis within the context of Schumann's other 1840 song cycles. View other FERRIS titles like "SCHUMANN'S EICHENDORFF LIEDERKREIS AND THE GENRE OF THE ROMANTIC CYCLE" Write a customer review of SCHUMANN'S EICHENDORFF LIEDERKREIS AND THE GENRE OF THE ROMANTIC CYCLE.
{ "redpajama_set_name": "RedPajamaC4" }
8,264
[ 128000, 16834, 5124, 64607, 596, 330, 36, 718, 8188, 544, 445, 1142, 17172, 265, 285, 1, 439, 279, 6156, 3187, 11, 420, 990, 77039, 502, 3177, 389, 279, 6070, 315, 220, 777, 339, 34457, 5609, 25492, 323, 389, 5124, 64607, 596, 4040, 2077, 311, 279, 3575, 315, 18273, 78925, 304, 3544, 5569, 4375, 13, 38859, 389, 6492, 11, 32465, 19347, 11, 323, 2592, 7978, 11, 420, 2363, 29633, 369, 264, 502, 43656, 315, 279, 220, 777, 339, 34457, 5609, 11008, 13, 26848, 1109, 264, 43790, 4459, 11, 279, 25492, 527, 3970, 439, 264, 12569, 661, 323, 1825, 84175, 1376, 430, 9147, 5124, 64607, 311, 3237, 279, 24364, 22100, 315, 74809, 768, 323, 90325, 2968, 304, 18273, 3878, 13, 578, 2363, 12302, 449, 264, 4689, 10430, 315, 279, 11008 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 16834, 5124, 64607, 596, 330, 36, 718, 8188, 544, 445, 1142, 17172, 265, 285, 1, 439, 279, 6156, 3187, 11, 420, 990, 77039, 502, 3177, 389, 279, 6070, 315, 220, 777, 339, 34457, 5609, 25492, 323, 389, 5124, 64607, 596, 4040, 2077, 311, 279, 3575, 315, 18273, 78925, 304, 3544, 5569, 4375, 13, 38859, 389, 6492, 11, 32465, 19347, 11, 323, 2592, 7978, 11, 420, 2363, 29633, 369, 264, 502, 43656, 315, 279, 220, 777, 339, 34457, 5609, 11008, 13, 26848, 1109, 264, 43790, 4459, 11, 279, 25492, 527, 3970, 439, 264, 12569, 661, 323, 1825, 84175, 1376, 430, 9147, 5124, 64607, 311, 3237, 279, 24364, 22100, 315, 74809, 768, 323, 90325, 2968, 304, 18273, 3878, 13, 578, 2363, 12302, 449, 264, 4689, 10430, 315, 279, 11008, -100 ]
Go to main content [shortcut key S] You are searching: News Content Thematic Content Administrative Informations and Procedures Government & Institutions Public Services for Businesses published after: published before: Sort by: Date ascending Date descending Relevance descending Relevance ascending Name descending Name ascending Show 5 20 50 100 500 results by page Official Reception at the Embassy of Monaco in Italy 19 July 2019 Monaco Worldwide News flash Relevance: 100% In the elegant setting of the Residence of Monaco in Italy, the Ambassador, H.E.Mr.Robert Fillon, and his wife, held the traditional annual reception to celebrate the anniversary of the Accession of H.S.H. the Sovereign Prince.More than three hundred people gathered in the garden of the Embassy, including dignitarie... Renewal of the Memorandum of Understanding between the Prince's Government and the Government of Mauritius 18 July 2019 Youth News flash Relevance: 100% The Memorandum of Understanding between the Government of H.S.H. Prince Albert II and the Government of the Republic of Mauritius, relating to an exchange programme in the hotel and restaurant sector, was renewed on 16 July 2019.The Memorandum was signed by Mr. Patrice Cellario, Minister of Interior, in the presence... 1st Energy Transition press events 16 July 2019 1st Energy Transition press events News flash Relevance: 100% The first Energy Transition press events were held today at the offices of the Mission for Energy Transition (MTE), the result of a desire jointly expressed by H.E. the Minister of State and Marie-Pierre Gramaglia, Minister of Public Works, the Environment and Urban Development, to showcase different contributors to... Preview of "Monaco. Artists' Stories" exhibition at Moscow Museum of Modern Art 16 July 2019 Culture Press release Relevance: 100% On 9 July 2019, Monegasque painters Gérard Pettiti and Claude Rosticher presented their joint exhibition, "Monaco. Artists' Stories", for the first time at the Moscow Museum of Modern Art (MMOMA).The exhibition, which has been organised with the support of the Principality of Monaco's Embassy in the Russian Federati... "Monaco and the Ocean" photo exhibition at UN to mark anniversary of H.S.H. the Sovereign Prince's accession 16 July 2019 Monaco Worldwide Press release Relevance: 100% On 11 July 2019, H.E. Ms Isabelle Picco, Monaco's Ambassador and Permanent Representative to the United Nations, officially unveiled a photo exhibition on the theme of "Monaco and the Ocean" to mark the anniversary of H.S.H. the Sovereign Prince's accession.Accompanied by H.E. Ms Maria Fernanda Espinosa Garcès, Pres... Demography Observatory 16 July 2019 The Economy Publication Relevance: 100% The aim of the Demography Observatory is to present the main demographic indicators for the population of Monegasque nationality. Reception to honour Diplôme National du Brevet students who achieved highest honours Christophe Prat, Director General of the Department of the Interior, and Isabelle Bonnal, Director of Education, Youth and Sport, hosted a reception at Monaco's Vocational and Catering School for the 116 pupils who achieved highest honours in their Diplôme National du Brevet (DNB) examinations this year. The recepti... Diplomatic relations established between Principality of Monaco and Kingdom of Cambodia The Principality of Monaco and the Kingdom of Cambodia signed a joint communiqué on 11 July 2019, officially establishing diplomatic relations between the countries.The document was signed by H.E. Mr Christophe Steiner, Ambassador for the Principality of Monaco, and H.E. Mr Widhya Chem, Ambassador for the Kingdom of... Reception in Berlin to mark anniversary of H.S.H. the Sovereign Prince's accession On 8 July 2019, the Embassy of Monaco in Germany held its traditional reception to mark the anniversary of H.S.H. Prince Albert II's accession. The event took place in the prestigious Patrick Hellmann Schlosshotel.H.E. Ms Isabelle Berro-Amadeï, together with her husband and diplomats from the Embassy, welcomed nearl... "Monaco, Artists' Stories" Travelling Exhibition in Moscow, Rostov-on-Don and Paris 15 July 2019 Culture News flash Relevance: 100% With the support of the Embassy of Monaco in Russia, two Monegasque artists, Gérard Pettiti and Claude Rosticher, are working on the final details of a travelling exhibition that will make it possible to present an entire chapter of the Principality's artistic history in Moscow, Rostov-sur-le Don and Paris.This exhi... MonaBike : the new electric bike sharing scheme in the Principality 12 July 2019 The Environment News flash Relevance: 100% On Friday 12 July, H.S.H. Prince Albert II officially launched MonaBike, the new electric bike sharing scheme in the Principality and the latest step in promoting soft mobility. The scheme aims to encourage cycling in the Principality, to improve coverage within the country, and to increase the capacity of the exist... IMSEE Focus: The Place of Women in the World of Business 12 July 2019 Social Affairs and Health Press release Relevance: 100% As part of its active participation in the Women's Rights Committee, IMSEE has just published a Focus on the place of women in the world of business.At the end of 2018, women accounted for 27.9% of persons listed in the Trade and Industry Register (RCI) as engaged in a business activity, and 40.2% of Monaco's employ... Principality's Embassy in UK welcomes Little Singers of Monaco On Sunday 7 July, the Principality's Embassy in the UK welcomed the Little Singers of Monaco to London, as the choir embarks on a concert tour of Britain.That same evening, by special permission, the choir gave a performance at the city's Chapel Royal of St. Peter ad Vincula. This historic chapel was constructed in... Reception in Honour of Baccalaureate Students who Obtained the Highest Honours Patrice Cellario, Minister of Interior, accompanied by Monsignor Barsi, Archbishop of Monaco, Brigitte Boccone-Pagès, Vice-President of the National Council, Isabelle Bonnal, Director of Education, Youth and Sport, as well as other high-ranking dignitaries and Heads of the Principality's high schools, recently recei... Monaco Telecom connects the Principality to 5G 10 July 2019 Monaco Telecom connects the Principality to 5G News flash Relevance: 100% Before an audience including Minister of State Serge Telle, government ministers Marie-Pierre Gramaglia, Jean Castellini and Patrice Cellario, Country Chief Digital Officer Frédéric Genta, majority shareholder Xavier Niel, Deputy Chairman of Huawei Guo Ping, numerous Monegasque personalities and several of its priva... Principality of Monaco takes action : on noble pen shell mortality in Mediterranean 10 July 2019 Principality of Monaco takes action : on noble pen shell mortality in Mediterranean Press release Relevance: 100% In 2016, a highly unusual mortality event affecting noble pen shells was observed on the Spanish coast. By the end of 2018, it had spread to French, Monegasque and Italian waters. With assistance from numerous local institutions and working together with a network of international stakeholders, the Prince's Governme... Le Studio – an educational space at Villa Paloma (NMNM) In the presence of Patrice Cellario, Minister of the Interior, and Marie-Claude Beaud, Director of the Nouveau Musée National de Monaco (NMNM), the museum's permanent new studio, Le Studio, was officially presented by the designers behind the project, Adrien Gadet and Benjamin Lina from Studio Quetzal.Aimed primaril... Presentation of Herculis EBS 2019 athletics meeting - Louis II Stadium – Friday 12 July 2019, from 7 pm 08 July 2019 Sport Press release Relevance: 100% H.E. Mr Bernard Fautrier, Vice President of the Monegasque Athletics Federation, and Jean-Pierre Schoebel, Director of the Herculis EBS international athletics meeting, today presented details of the 2019 meeting.The event, which was voted best meeting of the Diamond League 2018, is now in its 33rd year and promises... On board Monaco's first self-driving electric shuttle 05 July 2019 Quality of Life Press release Relevance: 100% The Principality of Monaco is taking another step towards implementation of its "Smart Principality" concept, developed by the #ExtendedMonaco programme: a self-driving electric shuttle is now operating on the Rocher, providing a service for residents and tourists.A press conference to present this experimental new... Extension of the Duration of Maternity Leave for Female Civil Servants and Government Officials After introducing a Bill that has just resulted in the adoption of the legislative text on extending the duration of maternity leave in the private sector, the Prince's Government, as it had indicated, has taken steps to enable female civil servants and Government Officials to benefit from this progress.Thus, in con... Pages : 1 2 3 4 5 6 7 ... 149 »
{ "redpajama_set_name": "RedPajamaCommonCrawl" }
1,732
[ 128000, 11087, 311, 1925, 2262, 510, 47457, 1401, 328, 933, 2675, 527, 15389, 512, 14710, 9059, 198, 1016, 12519, 9059, 198, 62363, 1413, 31701, 811, 323, 75111, 198, 62569, 612, 88880, 198, 12965, 8471, 369, 71190, 198, 33966, 1306, 512, 33966, 1603, 512, 10442, 555, 25, 2696, 36488, 2696, 44184, 1050, 33194, 44184, 1050, 33194, 36488, 4076, 44184, 4076, 36488, 198, 7968, 220, 20, 220, 508, 220, 1135, 220, 1041, 220, 2636, 3135, 555, 2199, 198, 34996, 77051, 520, 279, 53527, 315, 62651, 304, 15704, 198, 777, 5887, 220, 679, 24, 62651, 53035, 5513, 8381, 1050, 33194, 25, 220, 1041, 14062, 644, 279, 26861, 6376, 315, 279, 72860, 315, 62651, 304, 15704, 11, 279, 45672, 11, 473, 5253, 1345, 81, 2056, 677, 531, 22748, 263, 11, 323, 813 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 11087, 311, 1925, 2262, 510, 47457, 1401, 328, 933, 2675, 527, 15389, 512, 14710, 9059, 198, 1016, 12519, 9059, 198, 62363, 1413, 31701, 811, 323, 75111, 198, 62569, 612, 88880, 198, 12965, 8471, 369, 71190, 198, 33966, 1306, 512, 33966, 1603, 512, 10442, 555, 25, 2696, 36488, 2696, 44184, 1050, 33194, 44184, 1050, 33194, 36488, 4076, 44184, 4076, 36488, 198, 7968, 220, 20, 220, 508, 220, 1135, 220, 1041, 220, 2636, 3135, 555, 2199, 198, 34996, 77051, 520, 279, 53527, 315, 62651, 304, 15704, 198, 777, 5887, 220, 679, 24, 62651, 53035, 5513, 8381, 1050, 33194, 25, 220, 1041, 14062, 644, 279, 26861, 6376, 315, 279, 72860, 315, 62651, 304, 15704, 11, 279, 45672, 11, 473, 5253, 1345, 81, 2056, 677, 531, 22748, 263, 11, 323, 813, -100 ]
We have eventually finished our African dress and we have also added to it a costomised bag and shoe .You can now sit in the comfort of your house and learn how to make your costomised bag.We have short CDs of illustrations that you can buy at an affordable cost and begin to make your bags and shoe.please check our services page for datails.. Thank you for staying with me all through this journey of making our African dress.Please do not hesitate to send in your comments or challenges or even additions while using the lutterloh system. send comments to [email protected] comments will be posted in our "USERS SUBMISSION" PAGE .
{ "redpajama_set_name": "RedPajamaC4" }
8
[ 128000, 1687, 617, 9778, 8220, 1057, 11904, 8679, 323, 584, 617, 1101, 3779, 311, 433, 264, 2853, 316, 4147, 9145, 323, 30077, 662, 2675, 649, 1457, 2503, 304, 279, 6981, 315, 701, 3838, 323, 4048, 1268, 311, 1304, 701, 2853, 316, 4147, 9145, 23210, 617, 2875, 62437, 315, 45543, 430, 499, 649, 3780, 520, 459, 17049, 2853, 323, 3240, 311, 1304, 701, 18381, 323, 30077, 558, 1655, 1817, 1057, 3600, 2199, 369, 828, 8839, 35047, 13359, 499, 369, 19994, 449, 757, 682, 1555, 420, 11879, 315, 3339, 1057, 11904, 8679, 82927, 656, 539, 39666, 311, 3708, 304, 701, 6170, 477, 11774, 477, 1524, 38314, 1418, 1701, 279, 326, 6339, 83448, 1887, 13, 3708, 6170, 311, 665, 540, 2881, 73, 986, 10591, 916, 7659, 414, 6170, 690, 387, 8621 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 1687, 617, 9778, 8220, 1057, 11904, 8679, 323, 584, 617, 1101, 3779, 311, 433, 264, 2853, 316, 4147, 9145, 323, 30077, 662, 2675, 649, 1457, 2503, 304, 279, 6981, 315, 701, 3838, 323, 4048, 1268, 311, 1304, 701, 2853, 316, 4147, 9145, 23210, 617, 2875, 62437, 315, 45543, 430, 499, 649, 3780, 520, 459, 17049, 2853, 323, 3240, 311, 1304, 701, 18381, 323, 30077, 558, 1655, 1817, 1057, 3600, 2199, 369, 828, 8839, 35047, 13359, 499, 369, 19994, 449, 757, 682, 1555, 420, 11879, 315, 3339, 1057, 11904, 8679, 82927, 656, 539, 39666, 311, 3708, 304, 701, 6170, 477, 11774, 477, 1524, 38314, 1418, 1701, 279, 326, 6339, 83448, 1887, 13, 3708, 6170, 311, 665, 540, 2881, 73, 986, 10591, 916, 7659, 414, 6170, 690, 387, 8621, -100 ]
How is poor content ruining SEO every day? This entry was posted in Content, SEO on by Seo Tuners. Search engine optimization or SEO of a web page is done by improving the quality of the content in it to make more users come to your site. These days, poor content destroys the efforts to optimize a site. This happens in the following ways. Keyword stuffing: To make the site appear on the top result pages of search engines, many websites try to make content by stuffing keywords unnecessarily. By repeating the same keywords, the search algorithms are manipulated which drags users away from the site. Duplicate content: SEO friendly content does not mean that you have to include duplicate content in your site. The content should be as unique as possible. If you have copied some content from other sites, the search engines will not index your pages as your pages seem like just repetition. Quality of guest posts: When you allow guests to post on your website, you must ensure that the content is original. Accepting write-ups from new writers is good but, they have to be original. Today, a lot of sites have columns filled with content from guests which are too lousy to read. Paid links: Getting valuable back links take a lot of effort and patience. But, there are sites which pay money to buy back links. This is a bad SEO practice that may get good rankings in the beginning. But, they are sure to fail in course of time by losing the ranking. Invisible text: Previously, there was a practice of hiding the real pages from the crawlers. The content contains links that lead to different versions of the same page when clicked by the users and the web crawlers. This is a poor practice which gradually takes away the ranking of your site. It is recommended to hire good SEO services Los Angeles and Ventura so that your website is optimized according to the rules of SEO. The service providers ensure that the SEO practices are ethical and updated according to the search algorithms. They will provide you continuous support to manage your site now and forever. SeoTuners is a Los Angeles and Ventura based Creative Design and Internet Marketing Company that offers high quality services to both small and medium sized businesses. SeoTuners lives up to the hype with customized services sure to boost online presence in no time. With stunning creative and thought provoking designs, SeoTuners design team stands-out above all the rest in the industry. Utilizing the latest methods in conversion optimization, along with proper site structure, your brand is sure to attract. © Copyright 2019 SeoTuners. All Rights Reserved.
{ "redpajama_set_name": "RedPajamaC4" }
6,593
[ 128000, 4438, 374, 8009, 2262, 92271, 26029, 1475, 1938, 5380, 2028, 4441, 574, 8621, 304, 9059, 11, 26029, 389, 555, 1369, 78, 28556, 388, 627, 6014, 4817, 26329, 477, 26029, 315, 264, 3566, 2199, 374, 2884, 555, 18899, 279, 4367, 315, 279, 2262, 304, 433, 311, 1304, 810, 3932, 2586, 311, 701, 2816, 13, 4314, 2919, 11, 8009, 2262, 60832, 279, 9045, 311, 30536, 264, 2816, 13, 1115, 8741, 304, 279, 2768, 5627, 627, 35581, 83616, 25, 2057, 1304, 279, 2816, 5101, 389, 279, 1948, 1121, 6959, 315, 2778, 21787, 11, 1690, 13335, 1456, 311, 1304, 2262, 555, 83616, 21513, 83474, 13, 3296, 40916, 279, 1890, 21513, 11, 279, 2778, 26249, 527, 55315, 902, 1377, 2076, 3932, 3201, 505, 279, 2816, 627, 55079, 2262, 25, 26029, 11919, 2262 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 374, 8009, 2262, 92271, 26029, 1475, 1938, 5380, 2028, 4441, 574, 8621, 304, 9059, 11, 26029, 389, 555, 1369, 78, 28556, 388, 627, 6014, 4817, 26329, 477, 26029, 315, 264, 3566, 2199, 374, 2884, 555, 18899, 279, 4367, 315, 279, 2262, 304, 433, 311, 1304, 810, 3932, 2586, 311, 701, 2816, 13, 4314, 2919, 11, 8009, 2262, 60832, 279, 9045, 311, 30536, 264, 2816, 13, 1115, 8741, 304, 279, 2768, 5627, 627, 35581, 83616, 25, 2057, 1304, 279, 2816, 5101, 389, 279, 1948, 1121, 6959, 315, 2778, 21787, 11, 1690, 13335, 1456, 311, 1304, 2262, 555, 83616, 21513, 83474, 13, 3296, 40916, 279, 1890, 21513, 11, 279, 2778, 26249, 527, 55315, 902, 1377, 2076, 3932, 3201, 505, 279, 2816, 627, 55079, 2262, 25, 26029, 11919, 2262, -100 ]
To learn more about our Business Partner Program, or sign up for an account. You can also email [email protected] or call 0203 6089 115 to speak with our Customer Support. Looking to see the Coravin System in action? Click here to find authorized Coravin Retailers, or restaurants where you can try wine by the glass via the Coravin System.
{ "redpajama_set_name": "RedPajamaC4" }
6,264
[ 128000, 1271, 4048, 810, 922, 1057, 8184, 32413, 6826, 11, 477, 1879, 709, 369, 459, 2759, 13, 1472, 649, 1101, 2613, 70032, 2253, 84, 31, 6133, 35716, 916, 477, 1650, 220, 11139, 18, 220, 19944, 24, 220, 7322, 311, 6604, 449, 1057, 12557, 9365, 627, 23274, 311, 1518, 279, 4563, 35716, 744, 304, 1957, 30, 9369, 1618, 311, 1505, 19144, 4563, 35716, 35139, 388, 11, 477, 15926, 1405, 499, 649, 1456, 13378, 555, 279, 9168, 4669, 279, 4563, 35716, 744, 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 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 ]
[ 1271, 4048, 810, 922, 1057, 8184, 32413, 6826, 11, 477, 1879, 709, 369, 459, 2759, 13, 1472, 649, 1101, 2613, 70032, 2253, 84, 31, 6133, 35716, 916, 477, 1650, 220, 11139, 18, 220, 19944, 24, 220, 7322, 311, 6604, 449, 1057, 12557, 9365, 627, 23274, 311, 1518, 279, 4563, 35716, 744, 304, 1957, 30, 9369, 1618, 311, 1505, 19144, 4563, 35716, 35139, 388, 11, 477, 15926, 1405, 499, 649, 1456, 13378, 555, 279, 9168, 4669, 279, 4563, 35716, 744, 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 ]