text
stringlengths 14
5.22M
| meta
dict | __index_level_0__
int64 0
9.97k
| input_ids
listlengths 128
128
| attention_mask
listlengths 128
128
| labels
listlengths 128
128
|
---|---|---|---|---|---|
<?php
namespace google\appengine\WordPress\Mail {
use google\appengine\api\app_identity\AppIdentityService;
use google\appengine\api\mail\Message;
use Exception;
/**
* Admin settings for the Mail module
*
* @package WordPress
* @subpackage Mail
*/
class Admin {
/**
* Register our action
*/
public static function bootstrap(){
add_action( 'appengine_register_settings', __CLASS__ . '::register_google_settings' );
}
/**
* Register our admin settings and settings UI
*
* @wp-action appengine_register_settings
*/
public static function register_google_settings() {
register_setting( 'appengine_settings', 'appengine_email_enable', __CLASS__ . '::enable_validation' );
register_setting( 'appengine_settings', 'appengine_email', __CLASS__ . '::email_validation' );
add_settings_section( 'appengine-mail', __( 'Email Settings', 'appengine' ), __CLASS__ . '::section_text', 'appengine' );
add_settings_field( 'appengine_email_enable', __( 'Use App Engine Email Service', 'appengine' ), __CLASS__ . '::enable_input', 'appengine', 'appengine-mail', [ 'label_for' => 'appengine_email_enable' ] );
add_settings_field( 'appengine_email', __( 'App Email Address', 'appengine' ), __CLASS__ . '::email_input', 'appengine', 'appengine-mail', [ 'label_for' => 'appengine_email' ] );
}
/**
* Informational text for the settings section
*/
public static function section_text() {
?>
<p>
<?php _e( "Emails from WordPress will be sent through the App Engine email infrastructure, including password emails and those sent from plugins. If you're not happy with the default email address, set it here.", 'appengine' ) ?>
</p>
<?php
}
/**
* Output the checkbox for the enable checkbox
*/
public static function enable_input() {
$enabled = get_option( 'appengine_email_enable', true );
echo '<input id="appengine_email_enable" name="appengine_email_enable"
type="checkbox" ' . checked( $enabled, true, false ) . ' />';
}
/**
* Validate the enable checkbox input
*
* @param mixed $input
* @return bool
*/
public static function enable_validation( $input ) {
return (bool) $input;
}
/**
* Output the input field for the email address override
*/
public static function email_input() {
$email = get_option( 'appengine_email', '' );
echo '<input id="appengine_email" name="appengine_email"
type="email" value="' . esc_attr( $email ) . '" />';
$desc = __( 'This address can be the email address of a registered administrator (developer) of your application or an address of the form <code>%1$s</code>.<br />If this is not set, this will default to <code>%2$s</code>', 'appengine' );
echo '<p class="description">'
. sprintf(
$desc,
get_default_email( '[string]' ),
get_default_email()
) . '</code>.</p>';
}
/**
* Validate the App Engine email address
*
* @param mixed $input
* @return string
*/
public static function email_validation( $input ) {
$email = get_option( 'appengine_email', '' );
if ( is_email( $input ) || empty($input) ) {
$email = $input;
}
else {
add_settings_error( 'appengine_email', 'invalid-email', __( 'You have entered an invalid e-mail address.', 'appengine' ) );
}
return $email;
}
}
/**
* Get the default email address for App Engine
*
* @param string $user User part of the email address (typically 'wordpress')
* @return string Email address with the correct email domain
*/
function get_default_email( $user = 'wordpress' ) {
// Let's build an email address for the app via the app identity api
$service_account = new AppIdentityService();
$id = $service_account->getApplicationId();
if ( empty( $id ) ) {
$service_account_name = $service_account->getServiceAccountName();
$service_account_from_name = explode( '@', $service_account_name );
$id = $service_account_from_name[0];
}
return $user . '@' . $id . '.appspotmail.com';
}
/**
* Send email
*
* This is based on {@see wp_mail()} which is in turn based on PHP's
* built-in mail() function. This is typically called from the overriden
* version of {@see wp_mail()} below.
*
* @param string|array $to Array or comma-separated list of email addresses to send message.
* @param string $subject Email subject
* @param string $message Message contents
* @param string|array $headers Optional. Additional headers.
* @param string|array $attachments Optional. Files to attach.
*
* @return bool Whether the email contents were sent successfully.
*/
function send_mail( $to, $subject, $message, $headers = '', $attachments = array() ) {
// Compact the input, apply the filters, and extract them back out
extract( apply_filters( 'wp_mail', compact( 'to', 'subject', 'message', 'headers', 'attachments' ) ) );
global $phpmailer;
if ( ! is_object( $phpmailer ) || ! is_a( $phpmailer, 'Message' ) ) {
$phpmailer = new Message();
}
$cc = array();
$bcc = array();
// Headers
if ( empty( $headers ) ) {
$headers = array();
}
else {
if ( ! is_array( $headers ) ) {
// Explode the headers out, so this function can take both
// string headers and an array of headers.
$tempheaders = explode( "\n", str_replace( "\r\n", "\n", $headers ) );
}
else {
$tempheaders = $headers;
}
$headers = array();
// If it's actually got contents
if ( ! empty( $tempheaders ) ) {
// Iterate through the raw headers
foreach ( (array) $tempheaders as $header ) {
if ( false === strpos( $header, ':' ) ) {
if ( false !== stripos( $header, 'boundary=' ) ) {
$parts = preg_split( '/boundary=/i', trim( $header ) );
$boundary = trim( str_replace( array( "'", '"' ), '', $parts[1] ) );
}
continue;
}
// Explode them out
list( $name, $content ) = explode( ':', trim( $header ), 2 );
// Cleanup crew
$name = trim( $name );
$content = trim( $content );
switch ( strtolower( $name ) ) {
// Mainly for legacy -- process a From: header if it's there
case 'from':
if ( false !== strpos( $content, '<' ) ) {
// So... making my life hard again?
$from_name = substr( $content, 0, strpos( $content, '<' ) - 1 );
$from_name = str_replace( '"', '', $from_name );
$from_name = trim( $from_name );
$from_email = substr( $content, strpos( $content, '<' ) + 1 );
$from_email = str_replace( '>', '', $from_email );
$from_email = trim( $from_email );
}
else {
$from_email = trim( $content );
}
break;
case 'content-type':
if ( false !== strpos( $content, ';' ) ) {
list( $type, $charset ) = explode( ';', $content );
$content_type = trim( $type );
if ( false !== stripos( $charset, 'charset=' ) ) {
$charset = trim( str_replace( array( 'charset=', '"' ), '', $charset ) );
}
elseif ( false !== stripos( $charset, 'boundary=' ) ) {
$boundary = trim( str_replace( array( 'BOUNDARY=', 'boundary=', '"' ), '', $charset ) );
$charset = '';
}
}
else {
$content_type = trim( $content );
}
break;
case 'cc':
$cc = array_merge( (array) $cc, explode( ',', $content ) );
break;
case 'bcc':
$bcc = array_merge( (array) $bcc, explode( ',', $content ) );
break;
default:
// Add it to our grand headers array
$headers[trim( $name )] = trim( $content );
break;
}
}
}
}
// Empty out the values that may be set
$phpmailer->clearBcc();
$phpmailer->clearCc();
$phpmailer->clearReplyTo();
$phpmailer->clearTo();
// From email and name
// If we don't have a name from the input headers
if ( ! isset( $from_name ) ) {
$from_name = 'App Engine';
}
/* If we don't have an email from the input headers default to wordpress@$sitename
* Some hosts will block outgoing mail from this address if it doesn't exist but
* there's no easy alternative. Defaulting to admin_email might appear to be another
* option but some hosts may refuse to relay mail from an unknown domain. See
* http://trac.wordpress.org/ticket/5007.
*/
if ( ! isset( $from_email ) ) {
$from_email = get_option( 'appengine_email', false );
if ( ! $from_email ) {
$from_email = get_default_email();
}
}
// Plugin authors can override the potentially troublesome default
// TODO: Currently, App Engine doesn't support a from name. We should
// come back to this and fix it if/when it does
//$phpmailer->setSender( apply_filters( 'wp_mail_from_name', $from_name ) . " <" . apply_filters( 'wp_mail_from', $from_email ) . ">");
$phpmailer->setSender( apply_filters( 'wp_mail_from', $from_email ) );
// Set destination addresses
if ( ! is_array( $to ) ) {
$to = explode( ',', $to );
}
foreach ( (array) $to as $recipient ) {
try {
// Break $recipient into name and address parts if in the format "Foo <[email protected]>"
$recipient_name = '';
if ( preg_match( '/(.*)<(.+)>/', $recipient, $matches ) ) {
if ( count( $matches ) == 3 ) {
$recipient_name = $matches[1];
$recipient = $matches[2];
}
}
$phpmailer->addTo( $recipient, $recipient_name );
} catch ( Exception $e ) {
syslog( LOG_DEBUG, 'Mail error: ' . $e->getMessage() );
continue;
}
}
// Add any CC and BCC recipients
$cc = array_filter( $cc );
$bcc = array_filter( $bcc );
if ( ! empty( $cc ) ) {
foreach ( (array) $cc as $recipient ) {
try {
// Break $recipient into name and address parts if in the format "Foo <[email protected]>"
$recipient_name = '';
if ( preg_match( '/(.*)<(.+)>/', $recipient, $matches ) ) {
if ( count( $matches ) == 3 ) {
$recipient_name = $matches[1];
$recipient = $matches[2];
}
}
$phpmailer->addCc( $recipient, $recipient_name );
} catch ( Exception $e ) {
syslog( LOG_DEBUG, 'Mail error: ' . $e->getMessage() );
continue;
}
}
}
if ( ! empty( $bcc ) ) {
foreach ( (array) $bcc as $recipient ) {
try {
// Break $recipient into name and address parts if in the format "Foo <[email protected]>"
$recipient_name = '';
if ( preg_match( '/(.*)<(.+)>/', $recipient, $matches ) ) {
if ( count( $matches ) == 3 ) {
$recipient_name = $matches[1];
$recipient = $matches[2];
}
}
$phpmailer->addBcc( $recipient, $recipient_name );
} catch ( Exception $e ) {
syslog( LOG_DEBUG, 'Mail error: ' . $e->getMessage() );
continue;
}
}
}
// Set Content-Type and charset
// If we don't have a content-type from the input headers
if ( ! isset( $content_type ) ) {
$content_type = 'text/plain';
}
$content_type = apply_filters( 'wp_mail_content_type', $content_type );
// Set whether it's plaintext, depending on $content_type
if ( 'text/html' == $content_type ) {
$phpmailer->setHtmlBody( $message );
}
else {
$phpmailer->setTextBody( $message );
}
$phpmailer->setSubject( $subject );
// If we don't have a charset from the input headers
if ( !isset( $charset ) ) {
$charset = get_bloginfo( 'charset' );
}
// Set the content-type and charset
//$phpmailer->charsset = apply_filters( 'wp_mail_charset', $charset );
// Set custom headers
if ( !empty( $headers ) ) {
if ( isset( $headers['MIME-Version'] ) ) {
unset( $headers['MIME-Version'] );
}
$phpmailer->addHeaderArray( $headers );
if ( false !== stripos( $content_type, 'multipart' ) && ! empty($boundary) ) {
$phpmailer->addHeaderArray( 'Content-Type', sprintf( "%s;\n\t boundary=\"%s\"", $content_type, $boundary ) );
}
}
if ( !empty( $attachments ) ) {
foreach ( $attachments as $attachment ) {
try {
$name = basename( $attachment );
$data = file_get_contents( $attachment );
$phpmailer->addAttachment( $name, $data );
} catch ( Exception $e ) {
syslog( LOG_DEBUG, 'Mail error: ' . $e->getMessage() );
continue;
}
}
}
// Send!
$phpmailer->send();
return true;
}
Admin::bootstrap();
}
namespace {
use google\appengine\WordPress;
use google\appengine\WordPress\Mail;
if ( get_option( 'appengine_email_enable', true ) && !function_exists( 'wp_mail' ) ) {
/**
* Send mail, similar to PHP's mail
*
* @uses \google\appengine\WordPress\Mail\send_mail()
*
* @param string|array $to Array or comma-separated list of email addresses to send message.
* @param string $subject Email subject
* @param string $message Message contents
* @param string|array $headers Optional. Additional headers.
* @param string|array $attachments Optional. Files to attach.
*
* @return bool Whether the email contents were sent successfully.
*/
function wp_mail( $to, $subject, $message, $headers = '', $attachments = array() ) {
$GLOBALS[ 'appengine_mail_last_error' ] = null;
try {
return Mail\send_mail( $to, $subject, $message, $headers, $attachments );
} catch ( Exception $e ) {
$GLOBALS[ 'appengine_mail_last_error' ] = $e;
syslog( LOG_DEBUG, 'Mail error: ' . $e->getMessage() );
return false;
}
}
}
}
| {
"redpajama_set_name": "RedPajamaGithub"
} | 8,645 | [
128000,
1340,
1230,
1432,
2280,
11819,
59,
680,
8680,
59,
93302,
78232,
1504,
42919,
11819,
59,
680,
8680,
59,
2113,
59,
680,
47344,
41023,
19069,
1898,
280,
42919,
11819,
59,
680,
8680,
59,
2113,
59,
3796,
63109,
280,
42919,
4204,
401,
197,
1784,
197,
353,
7735,
5110,
369,
279,
15219,
4793,
198,
197,
1235,
197,
353,
571,
1757,
20394,
198,
197,
353,
571,
43937,
15219,
198,
197,
740,
15854,
7735,
341,
197,
197,
1784,
298,
353,
8618,
1057,
1957,
198,
298,
740,
197,
1241,
1118,
734,
28023,
3108,
298,
13008,
8090,
7,
364,
680,
8680,
14327,
11090,
518,
1328,
25411,
565,
662,
98852,
6477,
48255,
11090,
6,
1465,
197,
197,
633,
197,
197,
1784,
298,
353,
8618,
1057,
4074,
5110,
323,
5110,
3774,
198,
298,
1235,
298,
353
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
1340,
1230,
1432,
2280,
11819,
59,
680,
8680,
59,
93302,
78232,
1504,
42919,
11819,
59,
680,
8680,
59,
2113,
59,
680,
47344,
41023,
19069,
1898,
280,
42919,
11819,
59,
680,
8680,
59,
2113,
59,
3796,
63109,
280,
42919,
4204,
401,
197,
1784,
197,
353,
7735,
5110,
369,
279,
15219,
4793,
198,
197,
1235,
197,
353,
571,
1757,
20394,
198,
197,
353,
571,
43937,
15219,
198,
197,
740,
15854,
7735,
341,
197,
197,
1784,
298,
353,
8618,
1057,
1957,
198,
298,
740,
197,
1241,
1118,
734,
28023,
3108,
298,
13008,
8090,
7,
364,
680,
8680,
14327,
11090,
518,
1328,
25411,
565,
662,
98852,
6477,
48255,
11090,
6,
1465,
197,
197,
633,
197,
197,
1784,
298,
353,
8618,
1057,
4074,
5110,
323,
5110,
3774,
198,
298,
1235,
298,
353,
-100
]
|
Coal Miner Days June 13!!
Shelley will be casino there!! Come back for more updates on entertainers!!
Shelley and STARS Tee's and Hoodies!
Shelley and STARS Air Ambulance have teamed up and took flight January 24, 2014! Shelley will be donating 50% of all the proceeds of 911 Rescue Me to this amazing Rescue Service!
You can purchase the song "911 Rescue Me" from iTunes by clicking this link.
We also have Limited Edition Hoodies and Tee"s! Just click on the pictures below and the link will take you to the site!! | {
"redpajama_set_name": "RedPajamaC4"
} | 4,822 | [
128000,
96773,
91012,
21882,
5651,
220,
1032,
51447,
2059,
301,
3258,
690,
387,
12109,
1070,
3001,
15936,
1203,
369,
810,
9013,
389,
46276,
388,
51447,
2059,
301,
3258,
323,
4015,
17485,
68099,
596,
323,
36443,
552,
4999,
2059,
301,
3258,
323,
4015,
17485,
6690,
20423,
41932,
617,
61310,
709,
323,
3952,
11213,
6186,
220,
1187,
11,
220,
679,
19,
0,
91609,
690,
387,
61959,
220,
1135,
4,
315,
682,
279,
34555,
315,
220,
17000,
45503,
2206,
311,
420,
8056,
45503,
5475,
4999,
2675,
649,
7782,
279,
5609,
330,
17000,
45503,
2206,
1,
505,
13323,
555,
18965,
420,
2723,
627,
1687,
1101,
617,
19439,
14398,
36443,
552,
323,
68099,
41887,
0,
4702,
4299,
389,
279,
9364,
3770,
323,
279,
2723,
690,
1935,
499,
311,
279,
2816,
3001,
128256,
128256
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0
]
| [
96773,
91012,
21882,
5651,
220,
1032,
51447,
2059,
301,
3258,
690,
387,
12109,
1070,
3001,
15936,
1203,
369,
810,
9013,
389,
46276,
388,
51447,
2059,
301,
3258,
323,
4015,
17485,
68099,
596,
323,
36443,
552,
4999,
2059,
301,
3258,
323,
4015,
17485,
6690,
20423,
41932,
617,
61310,
709,
323,
3952,
11213,
6186,
220,
1187,
11,
220,
679,
19,
0,
91609,
690,
387,
61959,
220,
1135,
4,
315,
682,
279,
34555,
315,
220,
17000,
45503,
2206,
311,
420,
8056,
45503,
5475,
4999,
2675,
649,
7782,
279,
5609,
330,
17000,
45503,
2206,
1,
505,
13323,
555,
18965,
420,
2723,
627,
1687,
1101,
617,
19439,
14398,
36443,
552,
323,
68099,
41887,
0,
4702,
4299,
389,
279,
9364,
3770,
323,
279,
2723,
690,
1935,
499,
311,
279,
2816,
3001,
-100,
-100,
-100
]
|
St. Patrick's Guild has many different followers that help control wax during burning. We have brass and glass followers, along with many different diameter sizes. If you cannot find the exact size you are looking for please call our Church Goods Department at 1-800-652-9767. | {
"redpajama_set_name": "RedPajamaC4"
} | 9,601 | [
128000,
626,
13,
20199,
596,
33592,
706,
1690,
2204,
20723,
430,
1520,
2585,
37123,
2391,
20252,
13,
1226,
617,
37138,
323,
9168,
20723,
11,
3235,
449,
1690,
2204,
23899,
12562,
13,
1442,
499,
4250,
1505,
279,
4839,
1404,
499,
527,
3411,
369,
4587,
1650,
1057,
9441,
42695,
6011,
520,
220,
16,
12,
4728,
12,
23181,
12,
25208,
22,
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
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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
]
| [
626,
13,
20199,
596,
33592,
706,
1690,
2204,
20723,
430,
1520,
2585,
37123,
2391,
20252,
13,
1226,
617,
37138,
323,
9168,
20723,
11,
3235,
449,
1690,
2204,
23899,
12562,
13,
1442,
499,
4250,
1505,
279,
4839,
1404,
499,
527,
3411,
369,
4587,
1650,
1057,
9441,
42695,
6011,
520,
220,
16,
12,
4728,
12,
23181,
12,
25208,
22,
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
]
|
Component::Component(const ComponentType & type)
: m_type(type)
{ }
Component::~Component()
{ }
ComponentType Component::getType()
{
return m_type;
}
| {
"redpajama_set_name": "RedPajamaGithub"
} | 764 | [
128000,
2238,
487,
2238,
2809,
5695,
941,
612,
955,
340,
262,
551,
296,
1857,
5930,
340,
90,
557,
2238,
14586,
2238,
746,
90,
557,
2238,
941,
5695,
487,
29649,
746,
517,
262,
471,
296,
1857,
280,
534,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
]
| [
2238,
487,
2238,
2809,
5695,
941,
612,
955,
340,
262,
551,
296,
1857,
5930,
340,
90,
557,
2238,
14586,
2238,
746,
90,
557,
2238,
941,
5695,
487,
29649,
746,
517,
262,
471,
296,
1857,
280,
534,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100
]
|
It's the Next, Most, Wonderful Time, of the Year.
This is the time of year when things get out of routine, although it's happened about 23 times, now. It's when we go to Lake Mead for a long weekend on the houseboat.
By things, I mean stuff just happens around this trip. There's plans to be made, stuff to buy. . . this is the impetus for us to buy music to play on the boat, books to borrow/buy to read on the boat, things to float on (we have a large inflatable shark, for example, from a previous year), meals to plan/cook ahead. This year, it's been a challenge to find folks to take care of the kids while we're gone, but we did it. Leaving your children in the care of others for nearly five days is a mental exercise regarding probabilities and possible outcomes that frankly leaves me with a hollow feeling in my stomach. Bittersweet.
There's a lot of other stuff going on, too. We're just about mid-way through a project to make the garage a usable space for us. Let's just say that we put a bunch of junk in there when we moved in 13 years ago and just added to it until it was 'waste high'. Several trips to the dump and various recyclers has left us with a storage unit half full in the driveway and a nearly drywalled space soon to be filled with grown-up cabinets and, hopefully, some semblance of organization. There's even talk of a shed for the landscaping accoutrements (that's French, without the umlauts). There might be "after" pictures, but no "before" pictures were taken for legal reasons, and those who have assisted us are sworn to secrecy.
Friday, as I was cutting someone off on the freeway (hey, she'd jerked her car in front of me on the onramp, I was just returning the favor), Kar-ma (made myself laugh) struck when my sudden acceleration (again joking because it's a '91 Civic sedan, awright?) caused the alternator belt to shred. Savvy motorist that I am, recovering from the interesting sound of it flapping around for 5 seconds or so, followed by the illuminated 'battery' idiot light - along with the lack of billowing smoke or remaining recognizable pieces in my rear-view mirror, I ascertained this truth and drove home. Those of you who have worked on Japanese cars will sympathize with me when I opened the hood to the realization that the alternator belt is the first of three belts attached to the main pulley. For the rest of you, this means that one (and this was the moment when I determined that I was not to be that one) must remove the other two to complete the task at hand. And need I remind you that my tools are distributed in about 5 boxes in the previously mentioned storage box in the driveway? So, another day off from work on Monday whilst a younger person with a lift, a real toolbox, and probably a hangover replaces all three belts, with the appropriate grunting and tension on them. Might as well change the oil, too.
In addition, today we're driving up to Temecula to see an unusual mix of inlaws and outlaws. Another afternoon of chasing Emma around Pat & Oscar's.
So I'll need Monday to make the Green Chile Stew in advance; my boatmates are tired of watching me work on it on Saturday afternoon. How else am I to garner their heartfelt appreciation for my culinary efforts – now it's just another frozen dinner from Costco. Big whoop. I'm.Just.kidding –it'll taste better after that chemical thing that happens to soups and stews that makes them taste better the next day. Probably.
Like I said, stuff just happens around this excursion. The trip will be great – paying good $$ for a properly maintained boat with a marine radio to complain into (and that is rare) is a worthwhile investment - it's just the GETTING ON THE BOAT part that requires so much effort. We will not be moving Heaven and Earth, merely the contents of lower Manhattan back and forth over the next 6 days or so. We have gotten better at it, with practice. According to the Park Newsletter(pdf), the Bald Eagle count has soared; we'll be on the lookout. We've seen wild asses (no, not just other boaters), bighorn sheep, and a few other wild things, but I don't remember seeing our national bird,there. Gazing at the horizon for Bald Eagles is a worthy occupation onboard – it's about the extent of what's expected. Therein lies the beauty of the whole situation, if youse gets my drift, and we most certainly will NOT drift (inside joke, sorry). | {
"redpajama_set_name": "RedPajamaC4"
} | 450 | [
128000,
2181,
596,
279,
9479,
11,
7648,
11,
68963,
4212,
11,
315,
279,
9941,
627,
2028,
374,
279,
892,
315,
1060,
994,
2574,
636,
704,
315,
14348,
11,
8051,
433,
596,
7077,
922,
220,
1419,
3115,
11,
1457,
13,
1102,
596,
994,
584,
733,
311,
11940,
2206,
329,
369,
264,
1317,
9178,
389,
279,
3838,
38865,
627,
1383,
2574,
11,
358,
3152,
6392,
1120,
8741,
2212,
420,
8577,
13,
2684,
596,
6787,
311,
387,
1903,
11,
6392,
311,
3780,
13,
662,
662,
420,
374,
279,
3242,
64476,
369,
603,
311,
3780,
4731,
311,
1514,
389,
279,
15688,
11,
6603,
311,
17636,
3554,
4168,
311,
1373,
389,
279,
15688,
11,
2574,
311,
2273,
389,
320,
906,
617,
264,
3544,
97307,
44892,
11,
369,
3187,
11,
505,
264,
3766,
1060
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
2181,
596,
279,
9479,
11,
7648,
11,
68963,
4212,
11,
315,
279,
9941,
627,
2028,
374,
279,
892,
315,
1060,
994,
2574,
636,
704,
315,
14348,
11,
8051,
433,
596,
7077,
922,
220,
1419,
3115,
11,
1457,
13,
1102,
596,
994,
584,
733,
311,
11940,
2206,
329,
369,
264,
1317,
9178,
389,
279,
3838,
38865,
627,
1383,
2574,
11,
358,
3152,
6392,
1120,
8741,
2212,
420,
8577,
13,
2684,
596,
6787,
311,
387,
1903,
11,
6392,
311,
3780,
13,
662,
662,
420,
374,
279,
3242,
64476,
369,
603,
311,
3780,
4731,
311,
1514,
389,
279,
15688,
11,
6603,
311,
17636,
3554,
4168,
311,
1373,
389,
279,
15688,
11,
2574,
311,
2273,
389,
320,
906,
617,
264,
3544,
97307,
44892,
11,
369,
3187,
11,
505,
264,
3766,
1060,
-100
]
|
Melicucco (Melikokkos in greco-calabro) è un comune italiano di abitanti della città metropolitana di Reggio Calabria in Calabria.
Situato nell'area geografica della Piana di Gioia Tauro, è posto a 167 metri s.l.m.
Centro pianeggiante di origini medievali, alle tradizionali attività agricole ha affiancato modeste iniziative industriali e terziarie.
Nel centro storico si trova la chiesa di San Nicola Vescovo.
Origini del nome
Il nome del comune deriva dal greco melìkokkos che significa "bagolaro".
Secondo la leggenda, quest'albero possedeva la straordinaria capacità di donare a coloro che avessero mangiato i frutti una forza erculea.
Secondo invece lo storiografo Giovan Battista Pacichelli il nome venne dato per la dolcezza del clima e l'abbondanza fertile del territorio.
Storia
Casale della baronia di San Giorgio Morgeto fino al 1568, nella seconda metà del XVI secolo fu venduto da Consalvo II di Cordova a Violante della Quadra. In seguito registrò diversi passaggi di proprietà, venendo assegnato a Cola Tomarchiello da Tropea, a Ottavio Mangeruva, ai Ruffo di Scilla e ai Milano, sotto la cui signoria rimase fino al crollo del sistema feudale, decretato dalle leggi napoleoniche.
Espansosi sul finire del Seicento, fu quasi interamente distrutto dal terremoto del 1783 che devastò tutta la Piana di Gioia Tauro.
All'inizio dell'Ottocento con le riforme amministrative attuate dai francesi a seguito del riordino degli assetti interni del Regno di Napoli, (così come si era deciso per tutti gli stati europei del tempo in occasione del Congresso di Vienna convocato alla vigilia della disfatta napoleonica), la legge 19 gennaio 1807 ne faceva un Luogo, ossia Università del cosiddetto Governo di Polistena, per poi essere retrocesso, con disposizione del decreto 4 maggio 1811, istitutivo di Circondari e Comuni, a località di questa cittadina.
Nel giugno del 1935, da Roma provengono delle indiscrezioni sulla possibilità concreta che il governo fascista restituisca l'Autonomia amministrativa a Melicucco.
Ai primi di agosto del 1935 l'entusiasmo dei melicucchesi viene raffreddato da un incidente aereo capitato ad un velivolo sul quale viaggiavano personalità e funzionari che dovevano raggiungere l'Eritrea. A morire, fra gli altri è il Ministro dei LL.PP., Luigi Razza, originario di Vibo Valentia. Razza stava per proporre non solo l'elevazione a Provincia della "sua" Vibo Valentia, ma aveva pure mostrato interesse verso l'autonomia amministrativa di Melicucco che intendeva proporre direttamente al Duce. La disponibilità di Luigi Razza verso la causa melicucchese, nasce dall'amicizia personale che il Ministro ha con un suo stretto collaboratore presso il Ministero; un dirigente originario di Melicucco: Domenico Romano.
La tragica uscita di scena di Luigi Razza fece nascere non poche preoccupazioni circa l'autonomia amministrativa di Melicucco. Il 5 settembre dello stesso anno il Duce nominò il nuovo Ministro dei LL.PP. La scelta di Benito Mussolini cadde su un gerarca fascista: Giuseppe Cobolli Gigli. Le preoccupazioni dei melicucchesi vennero dipanate verso la fine di ottobre del 1935: il Duce, anche in ossequio alla volontà di Luigi Razza, si era espresso favorevolmente alla nascita del nuovo Comune.
La nascita del comune risale al 14 luglio 1936, anno in cui Melicucco, in precedenza frazione di Polistena (dal 1816 e fino al 1936), divenne autonomo. Divenne comune indipendente comprendendo parti del territorio antecedentemente detenuto da Rosarno e dalla stessa Polistena.
Tornare ad essere Comune autonomo è stata una condizione che ha favorito uno sviluppo molto sostenuto: basta pensare che in 75 anni Melicucco ha registrato una crescita urbana enorme ed ha più che raddoppiato la sua popolazione residente, con un incremento che non ha riscontri in nessun comune della provincia di Reggio Calabria. Non è un caso che nel 1996 un particolare studio dell'Istat ha inserito Melicucco fra i primi dieci comuni italiani dal più alto tasso di natalità.
Società
Evoluzione demografica
Tradizioni e folclore
Il 16 agosto si celebra la festa di San Rocco, preceduti dal "ciuccio", un asino di cartapesta munito di polvere da sparo pirotecnica.
Cultura
Cucina
La cucina melicucchese si può definire una cucina povera ma, allo stesso tempo, ricca di sapori e condimenti. Piatto tipico per eccellenza sono i "maccarruna", maccheroni conditi con il sugo al sapore di carne di capra e le patate fritte con peperoni e melanzane. La coddara insieme alle salsicce, alla nduja melicucchese e alla soppressata, sono il fiore all'occhiello della tradizione natalizia.
Il dolce tipico sono le nacatole, biscotto fritto a base di uova, strutto e liquori profumati.
Caratteristica della cucina locale è la preparazione casereccia della salsa di pomodoro e di diversi prodotti in salamoia o sott'olio, quali le olive, i peperoncini piccanti, le sardine e le verdure in giardiniera. Un'altra pietanza caratteristica della cucina melicucchese sono: "i zippuli", che oltre ad essere preparate come dolce, vengono preparate anche in varianti salate, ripiene e a mo' di ciambella salata.
Economia
L'economia del paese è prevalentemente agricola, basata sulla produzione dell'olio di oliva e degli agrumi (arance e mandarini). L'industria è costituita da piccole aziende che operano nei comparti edile, estrattivo, della lavorazione e conservazione di frutta e ortaggi, del vetro e della fabbricazione di strumenti ottici e fotografici, oltre che di macchine per l'agricoltura e la silvicoltura.
Infrastrutture e trasporti
Il paese è attraversato dalla SS 281 Rosarno-Marina di Gioiosa Ionica, ed è collegato con la SS 682 Jonio-Tirreno tramite l'omonimo svincolo.
Amministrazione
Note
Altri progetti
Collegamenti esterni
Comuni della città metropolitana di Reggio Calabria | {
"redpajama_set_name": "RedPajamaWikipedia"
} | 2,769 | [
128000,
40249,
292,
14912,
78,
320,
40249,
1609,
564,
57778,
304,
2886,
1030,
49236,
370,
299,
8,
11676,
653,
470,
2957,
60904,
1891,
220,
671,
275,
15719,
15587,
98039,
2322,
23143,
275,
3444,
1891,
3263,
46245,
3400,
370,
4298,
304,
3400,
370,
4298,
382,
50,
33462,
4428,
66902,
6,
4903,
3980,
26113,
3074,
15587,
393,
12699,
1891,
67765,
689,
24172,
2868,
11,
11676,
88699,
264,
220,
220,
11515,
2322,
462,
274,
929,
749,
382,
23026,
299,
60166,
797,
8376,
5048,
1891,
6371,
72,
42108,
72,
11,
12584,
4790,
450,
4001,
72,
1651,
79543,
40574,
292,
1286,
6520,
3611,
1122,
66,
4428,
1491,
18223,
304,
34335,
1413,
13076,
72,
384,
2024,
8510,
67545,
627,
45,
301,
41987,
34789,
4042,
4502,
8348,
6723,
1208,
523,
552,
64,
1891,
5960,
79541
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
40249,
292,
14912,
78,
320,
40249,
1609,
564,
57778,
304,
2886,
1030,
49236,
370,
299,
8,
11676,
653,
470,
2957,
60904,
1891,
220,
671,
275,
15719,
15587,
98039,
2322,
23143,
275,
3444,
1891,
3263,
46245,
3400,
370,
4298,
304,
3400,
370,
4298,
382,
50,
33462,
4428,
66902,
6,
4903,
3980,
26113,
3074,
15587,
393,
12699,
1891,
67765,
689,
24172,
2868,
11,
11676,
88699,
264,
220,
220,
11515,
2322,
462,
274,
929,
749,
382,
23026,
299,
60166,
797,
8376,
5048,
1891,
6371,
72,
42108,
72,
11,
12584,
4790,
450,
4001,
72,
1651,
79543,
40574,
292,
1286,
6520,
3611,
1122,
66,
4428,
1491,
18223,
304,
34335,
1413,
13076,
72,
384,
2024,
8510,
67545,
627,
45,
301,
41987,
34789,
4042,
4502,
8348,
6723,
1208,
523,
552,
64,
1891,
5960,
79541,
-100
]
|
It's not something we like to think about, but chances are that at some point in our lives, each of us will end up in the hospital. It may be planned, or completely unexpected. For a person who is blind or has a visual impairment, a visit to the hospital can be a more stressful experience, full of unfamiliar people and procedures.
Those who have less stressful hospital stays have likely done their homework first, to make the experience a bit easier. Fortunately for us, some of those people have shared their experience so that we can benefit.
In the March 2017 AccessWorld, Deborah Kendrick shares her experiences in an article: Advocating for Yourself in an Emergency Medical Situation: Advice for People with Visual Impairments. Reading this article is helpful as it provides in narrative form, information about what you can do to empower yourself and make your stay as positive as possible.
Another invaluable source of information comes from the Pennsylvania Council of the Blind. Their Information Access Committee has developed a document you can either print or email to your healthcare team. It contains information helpful to medical personnel of all types. The document is: Best Practices for Healthcare Professionals with Patients who are Visually Impaired.
Going to the hospital or even medical appointments isn't necessarily fun, but a little planning and advocacy can make it a much more positive experience. That way, you can concentrate on the important things, like feeling better.
If you have an experience or tip you'd like to share, we'd be happy to hear it. You can comment on our Facebook page, follow us on Twitter, or subscribe to our informative chat list.
"Captain! We're Taking on Water!" | {
"redpajama_set_name": "RedPajamaC4"
} | 6,730 | [
128000,
2181,
596,
539,
2555,
584,
1093,
311,
1781,
922,
11,
719,
17393,
527,
430,
520,
1063,
1486,
304,
1057,
6439,
11,
1855,
315,
603,
690,
842,
709,
304,
279,
8952,
13,
1102,
1253,
387,
13205,
11,
477,
6724,
16907,
13,
1789,
264,
1732,
889,
374,
18507,
477,
706,
264,
9302,
53317,
11,
264,
4034,
311,
279,
8952,
649,
387,
264,
810,
46883,
3217,
11,
2539,
315,
50383,
1274,
323,
16346,
627,
23025,
889,
617,
2753,
46883,
8952,
27656,
617,
4461,
2884,
872,
29559,
1176,
11,
311,
1304,
279,
3217,
264,
2766,
8831,
13,
42536,
369,
603,
11,
1063,
315,
1884,
1274,
617,
6222,
872,
3217,
779,
430,
584,
649,
8935,
627,
644,
279,
5587,
220,
679,
22,
9742,
10343,
11,
70625,
88713,
13551,
1077,
11704,
304,
459
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
2181,
596,
539,
2555,
584,
1093,
311,
1781,
922,
11,
719,
17393,
527,
430,
520,
1063,
1486,
304,
1057,
6439,
11,
1855,
315,
603,
690,
842,
709,
304,
279,
8952,
13,
1102,
1253,
387,
13205,
11,
477,
6724,
16907,
13,
1789,
264,
1732,
889,
374,
18507,
477,
706,
264,
9302,
53317,
11,
264,
4034,
311,
279,
8952,
649,
387,
264,
810,
46883,
3217,
11,
2539,
315,
50383,
1274,
323,
16346,
627,
23025,
889,
617,
2753,
46883,
8952,
27656,
617,
4461,
2884,
872,
29559,
1176,
11,
311,
1304,
279,
3217,
264,
2766,
8831,
13,
42536,
369,
603,
11,
1063,
315,
1884,
1274,
617,
6222,
872,
3217,
779,
430,
584,
649,
8935,
627,
644,
279,
5587,
220,
679,
22,
9742,
10343,
11,
70625,
88713,
13551,
1077,
11704,
304,
459,
-100
]
|
hos.pimp_id refers to pimps.id and cascades on update and delete.
But, wait! It's "A Pimp Named Slickback". You say the whole thing. It's like "A Tribe Called Quest".
That's better! Let's see how Crytal, like the champagne is doing.
Uh oh. Crystal ran off with Grandad, it looks.
Moral of the story? REPLACE INTO is not intelligent. It never does UPDATE. When the record already exists, it DELETEs and then INSERTs. This can be bad because it will trigger foreign key constraints.
If you are using foreign keys, you must check that they exist at the application layer. The REPLACE INTO might look like an attractive avenue to pursue, but it will leave you in tears. You will lose all your hos.
update An anonymous patron points out that with "INSERT INTO ... ON DUPLICATE KEY UPDATE", I can keep my ho's amd my foreign keys, and still be lazy about checking if a row exists or not! The best of both worlds.
I have no idea what that was, but it was funny.
Warren and I were talking about A Pimp Named Slickback today.
I never want to lose all my hos.
I hope everything with your dad went ok!
Also, I saw you from across the train station at cecil today and tried to text you "I see you" but then I realized somehow your number didnt transfer over to me new phone!
Hit me up with yo number.
Shoot. I don't think I copied your number over to my new phone either! Heh. I'll give you my number next time I see you on aim.
Thank you for the well wishing. My father is still in ICU, but doing well.
That should just cause an UPDATE event rather than a combo DELETE/INSERT event on a key collision, and therefore your ho-ranks are unchanged.
Thanks! First I've heard of that clause.
I filed a bug with Class::PObject, so hopefully they'll start using "ON DUPLICATE KEY UPDATE" instead of "REPLACE INTO" for updates and inserts. | {
"redpajama_set_name": "RedPajamaC4"
} | 330 | [
128000,
42935,
558,
6802,
851,
19813,
311,
281,
67758,
1801,
323,
76057,
3536,
389,
2713,
323,
3783,
627,
4071,
11,
3868,
0,
1102,
596,
330,
32,
393,
6802,
41559,
328,
1228,
1445,
3343,
1472,
2019,
279,
4459,
3245,
13,
1102,
596,
1093,
330,
32,
63804,
21839,
15403,
23811,
4897,
596,
2731,
0,
6914,
596,
1518,
1268,
43805,
51977,
11,
1093,
279,
65393,
374,
3815,
627,
72891,
14346,
13,
29016,
10837,
1022,
449,
10517,
329,
11,
433,
5992,
627,
44,
10020,
315,
279,
3446,
30,
85471,
12779,
374,
539,
25530,
13,
1102,
2646,
1587,
23743,
13,
3277,
279,
3335,
2736,
6866,
11,
433,
17640,
82,
323,
1243,
40618,
82,
13,
1115,
649,
387,
3958,
1606,
433,
690,
8346,
7362,
1401,
17413,
627,
2746,
499,
527,
1701,
7362,
7039,
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
]
| [
42935,
558,
6802,
851,
19813,
311,
281,
67758,
1801,
323,
76057,
3536,
389,
2713,
323,
3783,
627,
4071,
11,
3868,
0,
1102,
596,
330,
32,
393,
6802,
41559,
328,
1228,
1445,
3343,
1472,
2019,
279,
4459,
3245,
13,
1102,
596,
1093,
330,
32,
63804,
21839,
15403,
23811,
4897,
596,
2731,
0,
6914,
596,
1518,
1268,
43805,
51977,
11,
1093,
279,
65393,
374,
3815,
627,
72891,
14346,
13,
29016,
10837,
1022,
449,
10517,
329,
11,
433,
5992,
627,
44,
10020,
315,
279,
3446,
30,
85471,
12779,
374,
539,
25530,
13,
1102,
2646,
1587,
23743,
13,
3277,
279,
3335,
2736,
6866,
11,
433,
17640,
82,
323,
1243,
40618,
82,
13,
1115,
649,
387,
3958,
1606,
433,
690,
8346,
7362,
1401,
17413,
627,
2746,
499,
527,
1701,
7362,
7039,
11,
-100
]
|
We continue to show you iuvo team's faces! Next on our meet-up list is Radina – our organized, ambitious and goal-oriented Customer Support Specialist. If we had to define her personality, we would say that Radina is always understanding and supportive, and "sometimes perfectionist" – as she may add. She holds a degree in International Economic Relations, but her passion and job positions so far lead her to communications and customer support. Before she joined iuvo team, Radina has been working in the non-banking financing sector.
I found out about iuvo from colleagues. I'm always open to new opportunities and this was something that I instantly got interested in.
I like going out with friends, reading, traveling. The usual stuff.
I believe that every investment I make is actually an investment in myself.
People should invest in themselves and their future. Investing money and assets is part of the whole picture, of course.
Some of them are still very insecure with P2P type of investments. It sounds to them too good to be true.
I rarely get mad. I always try to see the things from different perspective. We should be open to accept other people's opinion and mistakes.
Just try it out. Everything new could be scary in the beginning, but this is the only way we can improve. And in this case – you lose nothing, so why not give a try?
9. Let's wrap this up with an existential one. What comes first, the chicken or the egg? Explain why.
Oh, this one is easy. The chicken came first as a result of a cross-breed between two other species. | {
"redpajama_set_name": "RedPajamaC4"
} | 2,029 | [
128000,
1687,
3136,
311,
1501,
499,
602,
94563,
2128,
596,
12580,
0,
9479,
389,
1057,
3449,
5352,
1160,
374,
21254,
2259,
1389,
1057,
17057,
11,
32855,
323,
5915,
36185,
12557,
9365,
40420,
13,
1442,
584,
1047,
311,
7124,
1077,
17743,
11,
584,
1053,
2019,
430,
21254,
2259,
374,
2744,
8830,
323,
33445,
11,
323,
330,
57753,
39143,
380,
1,
1389,
439,
1364,
1253,
923,
13,
3005,
10187,
264,
8547,
304,
7327,
23362,
32467,
11,
719,
1077,
11939,
323,
2683,
10093,
779,
3117,
3063,
1077,
311,
17320,
323,
6130,
1862,
13,
13538,
1364,
11096,
602,
94563,
2128,
11,
21254,
2259,
706,
1027,
3318,
304,
279,
2536,
1481,
33434,
29642,
10706,
627,
40,
1766,
704,
922,
602,
94563,
505,
18105,
13,
358,
2846,
2744,
1825,
311,
502,
10708,
323,
420
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
3136,
311,
1501,
499,
602,
94563,
2128,
596,
12580,
0,
9479,
389,
1057,
3449,
5352,
1160,
374,
21254,
2259,
1389,
1057,
17057,
11,
32855,
323,
5915,
36185,
12557,
9365,
40420,
13,
1442,
584,
1047,
311,
7124,
1077,
17743,
11,
584,
1053,
2019,
430,
21254,
2259,
374,
2744,
8830,
323,
33445,
11,
323,
330,
57753,
39143,
380,
1,
1389,
439,
1364,
1253,
923,
13,
3005,
10187,
264,
8547,
304,
7327,
23362,
32467,
11,
719,
1077,
11939,
323,
2683,
10093,
779,
3117,
3063,
1077,
311,
17320,
323,
6130,
1862,
13,
13538,
1364,
11096,
602,
94563,
2128,
11,
21254,
2259,
706,
1027,
3318,
304,
279,
2536,
1481,
33434,
29642,
10706,
627,
40,
1766,
704,
922,
602,
94563,
505,
18105,
13,
358,
2846,
2744,
1825,
311,
502,
10708,
323,
420,
-100
]
|
I was searching for a Property and found this listing (MLS® #219012230). Please send me more information regarding 5706 Mayflower Way 202, AVE MARIA, FL, 34142. Thank you!
I'd like to request a showing of 5706 Mayflower Way 202, AVE MARIA, FL, 34142 (MLS® #219012230). Thank you! | {
"redpajama_set_name": "RedPajamaC4"
} | 8,143 | [
128000,
40,
574,
15389,
369,
264,
8825,
323,
1766,
420,
15182,
320,
51076,
12175,
674,
13762,
11531,
9870,
570,
5321,
3708,
757,
810,
2038,
9002,
220,
18712,
21,
3297,
39853,
12424,
220,
2366,
11,
362,
4592,
38599,
5987,
11,
13062,
11,
220,
16546,
2983,
13,
9930,
499,
4999,
40,
4265,
1093,
311,
1715,
264,
9204,
315,
220,
18712,
21,
3297,
39853,
12424,
220,
2366,
11,
362,
4592,
38599,
5987,
11,
13062,
11,
220,
16546,
2983,
320,
51076,
12175,
674,
13762,
11531,
9870,
570,
9930,
499,
0,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
]
| [
40,
574,
15389,
369,
264,
8825,
323,
1766,
420,
15182,
320,
51076,
12175,
674,
13762,
11531,
9870,
570,
5321,
3708,
757,
810,
2038,
9002,
220,
18712,
21,
3297,
39853,
12424,
220,
2366,
11,
362,
4592,
38599,
5987,
11,
13062,
11,
220,
16546,
2983,
13,
9930,
499,
4999,
40,
4265,
1093,
311,
1715,
264,
9204,
315,
220,
18712,
21,
3297,
39853,
12424,
220,
2366,
11,
362,
4592,
38599,
5987,
11,
13062,
11,
220,
16546,
2983,
320,
51076,
12175,
674,
13762,
11531,
9870,
570,
9930,
499,
0,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100
]
|
System Cameras
New Leica M Monochrom sees the world in sharper black and white
Every day is grey with this powerful, pricy update to the 2012 original
by Sam Kieldsen
Follow @samkieldsen
30 April 2015 / 23:48MYT
This camera came out three years ago, didn't it?
Not really. That was simply the first Leica M Monochrom, while this is its replacement. It's just not called the "Mark II" or anything like that, just to confuse you. Leica dubs it the "Typ 246", but nobody's actually going to call it that are they?
I'm guessing it shoots only in black and white, like the first one
You're right on the money there, partner. The line of thinking is that colour digital camera images converted into black and white after the fact lose a little in the process, while the Monochrom's sensor is designed for black and white from the ground up. That means sharper black and white images – at least, according to Leica.
It looks exactly the same as the original though…
That it does (aside from the removal of the built-in flash). It's under that expensive-looking metal bodywork that the changes have been made.
The black and white sensor is an entirely new 24MP full-frame model with no low-pass filter and the ability to shoot with up to ISO 25,000 sensitivity, while the original's was 18MP, had a maximum ISO of 10,000 and wasn't full-frame. One advantage of the move to full-frame (aside from improved low light capabilities and the more scope for narrow depth of field shooting) is that almost all Leica's R series lenses are compatible, in addition to the M series lenses you could use with the first M Monochrom.
The other big addition is a speedy new Maestro image processor, which adds extra briskness to general operation.
Can it record video?
Yep, unlike its predecessor it can capture 1080p full HD video with stereo sound in the Motion JPEG format, which means each frame is an individual JPEG and nicely editable.
Any other changes?
The rear screen has been boosted from a 2.5in 230,000-dot LCD to a 3in 921,000-dot LCD, which is a pretty huge leap (and what the heck was Leica thinking with that first screen?). So it's all round a much, much better camera – at least on paper.
I suppose that means it's much, much pricier too?
The Leica M Monochrom Typ 246 is actually cheaper than the original was at launch: £5,750 (RM31,320) as opposed to £6,000 (RM32,681). However, you couldn't exactly describe it as affordable. But it's a Leica, after all – with that pedigree it was never going to be something you might buy on impulse.
More Leica Hot Stuff
Leica M-P Correspondent is inspired by Lenny Kravitz' first camera (yes, really!) | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 4,147 | [
128000,
2374,
89870,
198,
3648,
2009,
3074,
386,
3206,
5059,
442,
16008,
279,
1917,
304,
96569,
3776,
323,
4251,
198,
11769,
1938,
374,
20366,
449,
420,
8147,
11,
550,
2912,
2713,
311,
279,
220,
679,
17,
4113,
198,
1729,
8388,
735,
7052,
268,
198,
12763,
571,
47096,
74,
7052,
268,
198,
966,
5936,
220,
679,
20,
611,
220,
1419,
25,
2166,
19708,
51,
198,
2028,
6382,
3782,
704,
2380,
1667,
4227,
11,
3287,
956,
433,
5380,
2688,
2216,
13,
3011,
574,
5042,
279,
1176,
2009,
3074,
386,
3206,
5059,
442,
11,
1418,
420,
374,
1202,
14039,
13,
1102,
596,
1120,
539,
2663,
279,
330,
9126,
8105,
1,
477,
4205,
1093,
430,
11,
1120,
311,
59217,
499,
13,
2009,
3074,
294,
16115,
433,
279,
330,
13129,
220,
14205,
498
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
2374,
89870,
198,
3648,
2009,
3074,
386,
3206,
5059,
442,
16008,
279,
1917,
304,
96569,
3776,
323,
4251,
198,
11769,
1938,
374,
20366,
449,
420,
8147,
11,
550,
2912,
2713,
311,
279,
220,
679,
17,
4113,
198,
1729,
8388,
735,
7052,
268,
198,
12763,
571,
47096,
74,
7052,
268,
198,
966,
5936,
220,
679,
20,
611,
220,
1419,
25,
2166,
19708,
51,
198,
2028,
6382,
3782,
704,
2380,
1667,
4227,
11,
3287,
956,
433,
5380,
2688,
2216,
13,
3011,
574,
5042,
279,
1176,
2009,
3074,
386,
3206,
5059,
442,
11,
1418,
420,
374,
1202,
14039,
13,
1102,
596,
1120,
539,
2663,
279,
330,
9126,
8105,
1,
477,
4205,
1093,
430,
11,
1120,
311,
59217,
499,
13,
2009,
3074,
294,
16115,
433,
279,
330,
13129,
220,
14205,
498,
-100
]
|
Still have unanswered questions about vasectomy procedures, recovery time, or what to expect? Check out our vasectomy infographic by clicking on the image below. Also feel free to contact us with additional questions.
Excellent Dr. very caring of ones needs. Also makes certain you are well taken care of. Also his staff up front kind and courteous.
Dr. Crownover is great. He is very professional but still takes the necessary time to make sure all needs are met. Thank you!
I was initially in need of a vasectomy. I also did not have a personal physician. After my pre-op consult I am convinced that Dr. Crownover will be my regular physician for current and future health needs. I was very impressed with the office staff and Dr. Crownover's professionalism. He is very friendly and thorough. I can appreciate Dr. Crownover's attention to detail and expertise.
Google reviews were extremely accurate. This was the reason I selected TVFM for my vasectomy. After seeing the office meeting the staff and receiving my consult from Dr. Crownover I decided to make TVFM the provider for all my health needs. I was so impressed with the friendliness and professionalism displayed on my visit. I am certain I have chosen wisely.
Dr. Crownover was very professional and knowledgeable. I had a vasectomy done and he explained everything in detail and in words that I can understand made me feel comfortable and relaxed. | {
"redpajama_set_name": "RedPajamaC4"
} | 8,168 | [
128000,
24205,
617,
76547,
4860,
922,
44496,
72783,
16346,
11,
13654,
892,
11,
477,
1148,
311,
1755,
30,
4343,
704,
1057,
44496,
72783,
98482,
555,
18965,
389,
279,
2217,
3770,
13,
7429,
2733,
1949,
311,
3729,
603,
449,
5217,
4860,
627,
50755,
2999,
13,
1633,
30598,
315,
6305,
3966,
13,
7429,
3727,
3738,
499,
527,
1664,
4529,
2512,
315,
13,
7429,
813,
5687,
709,
4156,
3169,
323,
89288,
627,
9023,
13,
29743,
2017,
374,
2294,
13,
1283,
374,
1633,
6721,
719,
2103,
5097,
279,
5995,
892,
311,
1304,
2771,
682,
3966,
527,
2322,
13,
9930,
499,
4999,
40,
574,
15453,
304,
1205,
315,
264,
44496,
72783,
13,
358,
1101,
1550,
539,
617,
264,
4443,
28378,
13,
4740,
856,
864,
30592,
8666,
358,
1097,
22954,
430,
2999,
13,
29743
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
24205,
617,
76547,
4860,
922,
44496,
72783,
16346,
11,
13654,
892,
11,
477,
1148,
311,
1755,
30,
4343,
704,
1057,
44496,
72783,
98482,
555,
18965,
389,
279,
2217,
3770,
13,
7429,
2733,
1949,
311,
3729,
603,
449,
5217,
4860,
627,
50755,
2999,
13,
1633,
30598,
315,
6305,
3966,
13,
7429,
3727,
3738,
499,
527,
1664,
4529,
2512,
315,
13,
7429,
813,
5687,
709,
4156,
3169,
323,
89288,
627,
9023,
13,
29743,
2017,
374,
2294,
13,
1283,
374,
1633,
6721,
719,
2103,
5097,
279,
5995,
892,
311,
1304,
2771,
682,
3966,
527,
2322,
13,
9930,
499,
4999,
40,
574,
15453,
304,
1205,
315,
264,
44496,
72783,
13,
358,
1101,
1550,
539,
617,
264,
4443,
28378,
13,
4740,
856,
864,
30592,
8666,
358,
1097,
22954,
430,
2999,
13,
29743,
-100
]
|
Cuetzalan del Progreso è una municipalità dello stato di Puebla, nel Messico centrale, il cui capoluogo è la località di Ciudad de Cuetzalan.
Conta 47.433 abitanti (2010) e ha una estensione di 181,73 km².
Il significato del nome della località in lingua nahuatl è luogo vicino agli uccelli quetzal.
Altri progetti
Collegamenti esterni
Todos Los Municipios de México
Enciclopedia de los Municipios y Delegaciones de México
Comuni del Puebla | {
"redpajama_set_name": "RedPajamaWikipedia"
} | 958 | [
128000,
34,
14127,
89,
33383,
1624,
1322,
73256,
11676,
5203,
27512,
24892,
82701,
49253,
1891,
393,
361,
65826,
11,
25334,
19234,
4042,
2960,
46140,
11,
3900,
39044,
2107,
44906,
24404,
11676,
1208,
2254,
24892,
1891,
75245,
409,
356,
14127,
89,
33383,
382,
98241,
220,
2618,
13,
20153,
671,
275,
15719,
320,
679,
15,
8,
384,
6520,
5203,
1826,
2711,
68,
1891,
220,
10562,
11,
5958,
4194,
16400,
30556,
13,
66597,
16176,
12319,
4698,
4428,
1624,
17567,
15587,
2254,
24892,
304,
38172,
4381,
308,
27793,
60435,
11676,
25774,
24404,
32531,
3394,
99782,
577,
641,
21148,
934,
43289,
278,
382,
2149,
23254,
463,
97472,
271,
6255,
1978,
64580,
1826,
944,
72,
198,
220,
64331,
9853,
36803,
3614,
409,
63271,
198,
220,
10984,
292,
43473,
409,
2537,
36803,
3614,
379,
1611
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
34,
14127,
89,
33383,
1624,
1322,
73256,
11676,
5203,
27512,
24892,
82701,
49253,
1891,
393,
361,
65826,
11,
25334,
19234,
4042,
2960,
46140,
11,
3900,
39044,
2107,
44906,
24404,
11676,
1208,
2254,
24892,
1891,
75245,
409,
356,
14127,
89,
33383,
382,
98241,
220,
2618,
13,
20153,
671,
275,
15719,
320,
679,
15,
8,
384,
6520,
5203,
1826,
2711,
68,
1891,
220,
10562,
11,
5958,
4194,
16400,
30556,
13,
66597,
16176,
12319,
4698,
4428,
1624,
17567,
15587,
2254,
24892,
304,
38172,
4381,
308,
27793,
60435,
11676,
25774,
24404,
32531,
3394,
99782,
577,
641,
21148,
934,
43289,
278,
382,
2149,
23254,
463,
97472,
271,
6255,
1978,
64580,
1826,
944,
72,
198,
220,
64331,
9853,
36803,
3614,
409,
63271,
198,
220,
10984,
292,
43473,
409,
2537,
36803,
3614,
379,
1611,
-100
]
|
Q: Call different list with similar name in a for loop I have a few lists that are with names: group1, group2, group3...
I need a for loop (lets say for (int i=1; i<=6; i++) and right now I check for example if i is 1 then use group1, if i is 2 use group2 etc... My question is, can I call the list with the 'i' in the end? Like groupi and when i is 1, its group1, when i is 2, its group2 etc. Here is the code:
for (int i = 0; i < groupNum; i++)
{
if (i == 0)
{
foreach (Player p1 in group1)
{
foreach (Player p2 in group1)
{
if (p1 != p2)
{
if (group1.IndexOf(p1) > group1.IndexOf(p2))
{
Game game = new Game(tournamentID, p1.id, p2.id);
game.status = "Pending";
gm.CreateGame(game);
}
}
}
}
}
else if (i == 1)
{
foreach (Player p1 in group2)
{
foreach (Player p2 in group2)
{
if (p1 != p2)
{
if (group2.IndexOf(p1) > group2.IndexOf(p2))
{
Game game = new Game(tournamentID, p1.id, p2.id);
game.status = "Pending";
gm.CreateGame(game);
}
}
}
}
}
else if (i == 2)
{
foreach (Player p1 in group3)
{
foreach (Player p2 in group3)
{
if (p1 != p2)
{
if (group3.IndexOf(p1) > group3.IndexOf(p2))
{
Game game = new Game(tournamentID, p1.id, p2.id);
game.status = "Pending";
gm.CreateGame(game);
}
}
}
}
}
else if (i == 3)
{
foreach (Player p1 in group4)
{
foreach (Player p2 in group4)
{
if (p1 != p2)
{
if (group4.IndexOf(p1) > group4.IndexOf(p2))
{
Game game = new Game(tournamentID, p1.id, p2.id);
game.status = "Pending";
gm.CreateGame(game);
}
}
}
}
}
else if (i == 4)
{
foreach (Player p1 in group5)
{
foreach (Player p2 in group5)
{
if (p1 != p2)
{
if (group5.IndexOf(p1) > group5.IndexOf(p2))
{
Game game = new Game(tournamentID, p1.id, p2.id);
game.status = "Pending";
gm.CreateGame(game);
}
}
}
}
}
else if (i == 5)
{
foreach (Player p1 in group6)
{
foreach (Player p2 in group6)
{
if (p1 != p2)
{
if (group6.IndexOf(p1) > group6.IndexOf(p2))
{
Game game = new Game(tournamentID, p1.id, p2.id);
game.status = "Pending";
gm.CreateGame(game);
}
}
}
}
}
As you can see, the code for different if statements is literally the same but the only difference is in using different lists with similar name (group1, group2..).
A: In General
This comes up a lot. No; you cannot programmatically build a variable name. By the time the code is compiled the variable names are gone anyway
If you ever have variables with names like
something1
something2
something3
etc, then this is a candidate for using an array but remember arrays start from 0
var something = new Thing[3];
(In your case the Thing is e.g. a Player)
Now you can have a fixed part and a varying part in your name:
Before you had Now you have
-------------- ------------
something1 something[0]
something2 something[1]
something3 something[2]
Arrays can be looped over with a for or foreach, and they can be accessed at random with hard coded indexes like above. Just like your code only having 3 variables named somethingX your array also has a fixed number of 3 values. Arrays don't grow
If you need something that works like an array but does grow, use a List:
var something = new List<Thing>();
This is a list of Thing, just like before you had an array of Thing.
Also, don't forget about dictionaries, which are like lists, in that they grow, but they can be indexed by anything, so you can programmatically build an index, and unlike arrays/lists which are indexed by an incrementing integer, a dictionary can skip out some indexes:
var dict = new Dictionary<int, Thing>();
This means "a dictionary indexed by an int and holding a Thing"
Now, this is possible:
dict[1] = new Thing();
dict[2] = new Thing();
dict[4] = new Thing(); //we skipped
The key can be anything, for example a string:
var dict = new Dictionary<string, Thing>();
dict["something1"] = new Thing();
dict["something2"] = new Thing();
dict["sometheng4"] = new Thing(); //watch out for typos!
You can programmatically build the key:
int x = 1;
dict["something"+x].SomePropertyOfThing = "Hello";
The only thing to note is that dictionary doesn't necessarily store it's contents in any kind of order. If you foreach it you might get the entries out in something2, sometheng4, something1 order. If you need order, you either have to sort the dict.Keys and then use it to access the dictionary, or you use a SortedDictionary or OrderedDictionary depending what you want
In summary, those are the main kinds of collections we use in C#; they have different strengths and weaknesses and choosing which to use in a situation is often an important engineering decision
Final point of note; strive to use plural names when working with collections, as it makes the code easier to reason about
Specifically in this case
In your particular case you're actually looking for an array of arrays, and a bit of LINQ might make your code easier to deal with:
var groups = new []{ group1, group2, group3 };
foreach(var g in groups)
foreach(var p1 in g)
foreach(var p2 in g.Where(p => p.id > p1.id))
gm.CreateGame(new Game(tournamentID, p1.id, p2.id){status = "Pending"});
If you want to make just one tournament for a particular group N, replace the foreach(var g in groups) with var g = groups[N]
This logic you have of "for each player 1, for each player 2, if they aren't the same player, find the index of the player 1, find the index of the player 2, if the one index is less than the two index" contains redundant logic, and it wastes resources finding things it has already found
Saying "for every player1 in the group, for every player2 whose id is greater than player1" cuts all that out. Player 2 must be a different player to Player 1 because their id is greater. There is no need to look up the index; you could shortcut your code to comparing the IDs rather than doing a notequals check then finding indexes then comparing
If your ID values aren't intrinsically comparable in a greater than sense for some reason (I assumed they would be ints) you can use a bit more linq to assign an index i to each player p in a group:
var groups = new []{
group1.Select((p,i) => (p,i)),
group2.Select((p,i) => (p,i)),
group3.Select((p,i) => (p,i))
};
This make a tuple of the player, and the index they're at, so a similar logic as before can work:
foreach(var g in groups)
foreach(var p1t in g)
foreach(var p2t in g.Where(pt => pt.i > p1t.i))
gm.CreateGame(new Game(tournamentID, p1t.p.id, p2t.p.id){status = "Pending"});
This time the Where demands the index i be greater for player 2
You should name your properties using PascalCase, not camelCase
A: As has already been suggested, you could collect all your groups in an array, and then iterate over that group array:
List<Player>[] groups = new[] { group1, group2, group3, group4, group5, group6 };
foreach (var group in groups)
{
// play games
}
I would like to suggest a simplification of your logic as well. You can achieve the same result using fewer nested loops by only looping through the necessary combinations of player 1 and player 2 in each group.
One way to do this is to:
*
*loop over the players' list indices rather than the Player objects in the lists (i.e. replace your nested foreach (Player p*) loops with nested for (int i*) (player index) loops)
*let the outer loop (looping over the indices for player 1) iterate over the current group from 0 to the second-to-last-index
*let the inner loop (looping over the indices for player 2) iterate over the current group from one index larger than the index of player 1 to the very last index
Implementation:
foreach (var group in groups)
{
for (int i1 = 0; i1 < group.Count - 1; i1++)
{
Player p1 = group[i1];
for (int i2 = i1 + 1; i2 < group.Count; i2++)
{
Player p2 = group[i2];
Game game = new Game(tournamentID, p1.id, p2.id);
game.status = "Pending";
gm.CreateGame(game);
}
}
}
If we refer to the index of player 1 simply as 1 and the index of player 2 simply as 2, the iterations over a group containing four players can be visualized as follows:
1 2 _ _
1 _ 2 _
1 _ _ 2
_ 1 2 _
_ 1 _ 2
_ _ 1 2
If you rather want the games to be created in the exact same order of player combinations as is done in your original post, the index conditions need to be altered so that p2 always comes before p1 in the group:
2 1 _ _
2 _ 1 _
_ 2 1 _
2 _ _ 1
_ 2 _ 1
_ _ 2 1
This can be achieved by altering the for loop statements slightly:
*
*the index of player 1 goes from 1 to the very last index in the group
*the index of player 2 goes from 0 to one index smaller than the index of player 1
foreach (var group in groups)
{
for (var i1 = 1; i1 < group.Count; i1++)
{
//
for (var i2 = 0; i2 < i1; i2++)
{
//
}
}
}
To ensure you are not trying to perform invalid looping on any of the groups, you could alter the foreach statement to consider the length of each group; either by using .Skip(1).Any() from the System.Linq namespace:
//using System.Linq;
foreach (var group in groups.Where(gr => gr.Skip(1).Any()))
{
// play games
}
or by counting the items in each group:
foreach (var group in groups.Where(gr => gr.Count > 1))
{
// play games
}
We're checking that the number of items in each group is greater than 1 (i.e. the number of items is at least 2), seeing as we want to play games with two players at a time.
A: create a list of grpups
var groups = new List<Group>(){
group1, group1, group3};
now you can do
if(group[i].Indexof.....)
etc
A: Just make an array of your groups, assuming they are List<Player> below, and iterate over that:
foreach(var grp in new List<Player>[] {group1, group2, group3, group4, group5, group6}) {
foreach (Player p1 in grp)
{
foreach (Player p2 in grp)
{
if (p1 != p2)
{
if (grp.IndexOf(p1) > grp.IndexOf(p2))
{
Game game = new Game(tournamentID, p1.id, p2.id);
game.status = "Pending";
gm.CreateGame(game);
}
}
}
}
}
| {
"redpajama_set_name": "RedPajamaStackExchange"
} | 4,622 | [
128000,
48,
25,
7290,
2204,
1160,
449,
4528,
836,
304,
264,
369,
6471,
358,
617,
264,
2478,
11725,
430,
527,
449,
5144,
25,
1912,
16,
11,
1912,
17,
11,
1912,
18,
9522,
40,
1205,
264,
369,
6471,
320,
10145,
2019,
369,
320,
396,
602,
28,
16,
26,
602,
8367,
21,
26,
602,
2516,
323,
1314,
1457,
358,
1817,
369,
3187,
422,
602,
374,
220,
16,
1243,
1005,
1912,
16,
11,
422,
602,
374,
220,
17,
1005,
1912,
17,
5099,
1131,
3092,
3488,
374,
11,
649,
358,
1650,
279,
1160,
449,
279,
364,
72,
6,
304,
279,
842,
30,
9086,
1912,
72,
323,
994,
602,
374,
220,
16,
11,
1202,
1912,
16,
11,
994,
602,
374,
220,
17,
11,
1202,
1912,
17,
5099,
13,
5810,
374,
279,
2082,
512
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
7290,
2204,
1160,
449,
4528,
836,
304,
264,
369,
6471,
358,
617,
264,
2478,
11725,
430,
527,
449,
5144,
25,
1912,
16,
11,
1912,
17,
11,
1912,
18,
9522,
40,
1205,
264,
369,
6471,
320,
10145,
2019,
369,
320,
396,
602,
28,
16,
26,
602,
8367,
21,
26,
602,
2516,
323,
1314,
1457,
358,
1817,
369,
3187,
422,
602,
374,
220,
16,
1243,
1005,
1912,
16,
11,
422,
602,
374,
220,
17,
1005,
1912,
17,
5099,
1131,
3092,
3488,
374,
11,
649,
358,
1650,
279,
1160,
449,
279,
364,
72,
6,
304,
279,
842,
30,
9086,
1912,
72,
323,
994,
602,
374,
220,
16,
11,
1202,
1912,
16,
11,
994,
602,
374,
220,
17,
11,
1202,
1912,
17,
5099,
13,
5810,
374,
279,
2082,
512,
-100
]
|
I love that after six years the experience was still as genuine as the first time. In a time where everything seems to be overdone and impersonal, this group still delivers an activity where you're as involved as you want to be and you matter! Step on board, help as you're able, and relax... they even take the pictures! Pictures? Yes! They take the pictures and provide you a link to all of them... at no extra cost!
Wow! This was an awesome experience; an opportunity to sail, grind and take the helm of this amazing America's Cup vessel in beautiful San Diego Bay. No sailing experience required, crewed by a team of professionals under the leadership of Lynn and Bee. Learn the history of the America's Cup as part of this great adventure! The Stars and Stripes was in Dennis Connor's, 4 time America's Cup champion, fleet of racing yachts.
The captain did explain the problem before we left and offered to let us come on another day. Unfortunately, that was after we left San Diego. He kindly gifted us with a cap or shirt. It would be nice if the crew, when they weren't working could be a bit friendlier like the captain's wife.
Joan - Thank you for pointing out in your review that we always try to put safety first. It was a disappointment for us that unforecasted winds gusting to 20 knots (23 MPH) happened on the day you sailed. We apologize that it was unsafe to raise our mainsail.
It's a rare day here in San Diego that the winds would be too heavy. Our 78' boat, Stars & Stripes USA-11, under full sail carries about 4,000 sq ft of sail. It was specifically designed for San Diego's moderate winds, not heavy winds. The 65' 12 Meter America's Cup race boat you sailed on years ago in Maui carries about 2,000 sq ft of sail and was specifically designed for heavier wind, like what might be found in Hawaii.
We hope you will be able to join us next time you visit San Diego!
Again thank you for taking the time to write a review.
Unbelievable experience on such a classic boat. It is very rare that you can experience the extreme power that a sailboat can generate, but on the Star & Stripes, that power is everywhere. The crew made our trip a complete package of entertaining, exhilaration, and raw sailing experience. Can't wait until my next trip. | {
"redpajama_set_name": "RedPajamaC4"
} | 4,067 | [
128000,
40,
3021,
430,
1306,
4848,
1667,
279,
3217,
574,
2103,
439,
22785,
439,
279,
1176,
892,
13,
763,
264,
892,
1405,
4395,
5084,
311,
387,
927,
10655,
323,
60849,
278,
11,
420,
1912,
2103,
28421,
459,
5820,
1405,
499,
2351,
439,
6532,
439,
499,
1390,
311,
387,
323,
499,
5030,
0,
15166,
389,
4580,
11,
1520,
439,
499,
2351,
3025,
11,
323,
12234,
1131,
814,
1524,
1935,
279,
9364,
0,
29485,
30,
7566,
0,
2435,
1935,
279,
9364,
323,
3493,
499,
264,
2723,
311,
682,
315,
1124,
1131,
520,
912,
5066,
2853,
4999,
36981,
0,
1115,
574,
459,
12738,
3217,
26,
459,
6776,
311,
30503,
11,
40336,
323,
1935,
279,
34865,
315,
420,
8056,
5270,
596,
11098,
27274,
304,
6366,
5960,
18842,
9332,
13,
2360,
51129,
3217
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
3021,
430,
1306,
4848,
1667,
279,
3217,
574,
2103,
439,
22785,
439,
279,
1176,
892,
13,
763,
264,
892,
1405,
4395,
5084,
311,
387,
927,
10655,
323,
60849,
278,
11,
420,
1912,
2103,
28421,
459,
5820,
1405,
499,
2351,
439,
6532,
439,
499,
1390,
311,
387,
323,
499,
5030,
0,
15166,
389,
4580,
11,
1520,
439,
499,
2351,
3025,
11,
323,
12234,
1131,
814,
1524,
1935,
279,
9364,
0,
29485,
30,
7566,
0,
2435,
1935,
279,
9364,
323,
3493,
499,
264,
2723,
311,
682,
315,
1124,
1131,
520,
912,
5066,
2853,
4999,
36981,
0,
1115,
574,
459,
12738,
3217,
26,
459,
6776,
311,
30503,
11,
40336,
323,
1935,
279,
34865,
315,
420,
8056,
5270,
596,
11098,
27274,
304,
6366,
5960,
18842,
9332,
13,
2360,
51129,
3217,
-100
]
|
Join us for a Sashiko embroidery workshop with Jamie Lau!
Sashiko is a Japanese embroidery technique that can be traced back as far as 17th century Japan. It is mostly used for decorative purposes involving an outline design with geometric patterns. Traditionally, Sashiko was used as a form of functional embroidery to reinforce points of wear on garments, or to repair worn places with patches.
Sashiko embroidery is a great way to embellish your clothing and accessories. In this workshop, students will learn this running stitch technique and create a sampler using the seigaiha (or wave) pattern. After the class, students are encouraged to incorporate their samplers into sewing projects such as tote bags, quilting, coasters, or clothing patches.
Jamie Lau is a designer, sewing instructor, fashion writer, and native San Franciscan. A self-taught seamstress consistently inspired by her love of dresses, Jamie infuses a playful nostalgia into her work by transforming simple silhouettes into fashion forward looks cut and sewn from traditional Japanese prints, luxurious brocades, handwoven ikats, and her own textile designs. In addition to designing her clothing line Jamie Lau Designs, Jamie has taught fashion and sewing workshops across the country including the Textile Arts Center, Britex Fabrics, and the American Folk Art Museum. Jamie is the author of BurdaStyle Sewing Vintage Modern, published in 2012 by Potter Craft (The Crown Publishing Group/Random House, Inc.). Her work has been featured in The New York Times, Martha Stewart Weddings, San Francisco Magazine, and the Star Tribune. | {
"redpajama_set_name": "RedPajamaC4"
} | 9,822 | [
128000,
12572,
603,
369,
264,
328,
1003,
24551,
85927,
26129,
449,
36857,
86091,
4999,
50,
1003,
24551,
374,
264,
11002,
85927,
15105,
430,
649,
387,
51400,
1203,
439,
3117,
439,
220,
1114,
339,
9478,
6457,
13,
1102,
374,
10213,
1511,
369,
46536,
10096,
16239,
459,
21782,
2955,
449,
53584,
12912,
13,
15415,
17868,
11,
328,
1003,
24551,
574,
1511,
439,
264,
1376,
315,
16003,
85927,
311,
55414,
3585,
315,
10051,
389,
67556,
11,
477,
311,
13023,
24634,
7634,
449,
29760,
627,
50,
1003,
24551,
85927,
374,
264,
2294,
1648,
311,
72514,
819,
701,
17895,
323,
23090,
13,
763,
420,
26129,
11,
4236,
690,
4048,
420,
4401,
33961,
15105,
323,
1893,
264,
42899,
1701,
279,
513,
343,
2192,
4317,
320,
269,
12330,
8,
5497,
13,
4740,
279,
538,
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
]
| [
12572,
603,
369,
264,
328,
1003,
24551,
85927,
26129,
449,
36857,
86091,
4999,
50,
1003,
24551,
374,
264,
11002,
85927,
15105,
430,
649,
387,
51400,
1203,
439,
3117,
439,
220,
1114,
339,
9478,
6457,
13,
1102,
374,
10213,
1511,
369,
46536,
10096,
16239,
459,
21782,
2955,
449,
53584,
12912,
13,
15415,
17868,
11,
328,
1003,
24551,
574,
1511,
439,
264,
1376,
315,
16003,
85927,
311,
55414,
3585,
315,
10051,
389,
67556,
11,
477,
311,
13023,
24634,
7634,
449,
29760,
627,
50,
1003,
24551,
85927,
374,
264,
2294,
1648,
311,
72514,
819,
701,
17895,
323,
23090,
13,
763,
420,
26129,
11,
4236,
690,
4048,
420,
4401,
33961,
15105,
323,
1893,
264,
42899,
1701,
279,
513,
343,
2192,
4317,
320,
269,
12330,
8,
5497,
13,
4740,
279,
538,
11,
-100
]
|
You don't want to miss this.
Sacramento Clean Cities' goal is to reduce fossil petroleum consumption in the transportation sector.
Electriphi Fleet Electrification Services
Electriphi, a company that provides a full menu of fleet electrification services will provide information on the importance of vehicle fleet charge management, and an overview of their pilot project at the Twin Rivers School District on March 16, 2021 at noon.
Registration is NOT required. Join at noon on 3/16/21 with this LINK
New California Updates, Regulations, and Requirements
Upcoming CARB Fleet Workshop
HD I/M Regulation 2/22/21: This new regulation will apply to all vehicles over 14,000#. Fleets will need to establish an account and submit regular reports. CARB also expects to do on-road "remote sensing" to identify vehicles with excessive emissions.
Advanced Clean Fleets Workshop
Advanced Clean Fleets Workshop 3/2/21 & 3/4/21: This regulation will require fleets in California to move to zero-emission vehicles in accordance with governor Newsom's executive order. The evening presentation has been moved from 3/4/21 to 3/2/21. You must re-register for the evening presentation.
Register or Re-register Here
Biodiesel Mandates
Biodiesel is currently mandated to use expensive additives to reduce NOx emissions if statewide use exceeds certain levels. This mandate will be lifted by CARB when engines with advanced NOx controls achieve certain penetration levels in on-road and off-road vehicles.
Sacramento Clean Cities Sponsors Make The News
Toyota's eTNGA Platform
Toyota New Global Architecture (TNGA), developed cooperatively with Subaru, is their adaptable and reconfigurable EV platform that will underpin a wide range of Toyota, Lexus and Subaru EVs, allowing for front, rear and all wheel drive configurations and multiple battery pack sizes.
Toyota All-Electric SUV
Toyota will introduce an all-electric SUV in 2022, and is teasing the introduction of a second all-electric vehicle and a new plug-in hybrid. The Toyota "TNGA" platform will underpin all their future electric models
Toyota Hydrogen Fuel Cell Mirai
Toyota's 2021 ZEV Fuel Cell Mirai has a sophisticated, two-stage air filtration system to clean the ambient air that enters the fuel cell. The first stage removes larger particles plus some NOx and ammonia. The second stage is an electrostatically charged micro filter. The combined effect actually cleans the ambient air, removing 94% - 99.7% of particles down to 2.5 microns.
Ohm Electric Cars: Protect Yourself From Catalytic Converter Theft
Ohm Electric Cars in Dixon has a low-cost solution for catalytic converter theft. For a flat rate of $150, they will install the Cat Security™ system, protecting your Prius from a $3K cat replacement bill.
Ohm Electric Cars
Ohm Electric Cars: Upfits, Conversions, and Diagnostics
Ohm Electric is also the place you can go for help with hard-to-diagnose EV performance issues, EV equipment upfits and even ICE-to-EV conversions.
Contact Ash Dalal at [email protected]
Nissan Mobile Office
Nissan has created a concept mobile office based on their NV350 van. The office module is fully contained within the van but can extend out the back to become a shaded outdoor office space. Nissan is considering making the office module components available for 3rd party upfit.
Alternative Fuel Insight
Amazon's Rivian Electric Van
Rivian is starting out with a commitment from Amazon to purchase 100,000 delivery vans,and has announced that their vans will come in three sizes, 500, 700 and 900 cubic feet of cargo storage. The 500 will be narrower but all three will have the same turning radius. The skateboard platform will be nearly identical, stretched to fit from smallest to largest.
Millor to Manufacture Cobalt-Free Lithium-Ion Batteries
Millor, a European battery manufacturer, has announced that they expect to market a cobalt-free battery by Q4 2023. Cobalt is a scarce rare earth metal.
Powerpaste Stores Hydrogen at Higher Density than Lithium Batteries
Fraunhofer Institute for Manufacturing Technology and Advanced Materials in Germany have developed a gel that stores hydrogen for fuel cells at 10 times the energy density of a lithium battery. The gel does not require heavy tanks or high pressures and that can be stored and transported in conventional tank trucks.
Komatsu and Proterra Collaboration to Develop Electric Construction Equipment
Komatsu has announced a plan to put a battery-electric excavator into pilot demonstration by Q4 of 2021, using Proterra's high energy density battery technology. (Note: Sacramento Regional Transit, Yolo Transit and the Sacramento Airport are all currently running Proterra buses in daily operation.)
ChargePoint Fleet Electrification Study
ChargePoint reports on a study done by UPS and GreenBiz of the top reasons why fleets are electrifying. 83% of fleets indicated they were going electric to meet sustainability and environmental goals and 64% said it was to achieve lower operating costs.
Refineries Report
California Refineries: For the week ending 2/6/21, refineries in California produced 5,731 barrels of gasoline and 1,891 barrels of diesel. The current LCFS Credit for 1 MT of CO2 is $190.00.
Read More Here for gasoline and diesel production.
Read More Here for LCFS credit.
Subscribe to the Sacramento Clean Cities Weekly E-Newsletter
Sacramento Clean Cities Coalition | 916 - 622 - 8433 | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 6,727 | [
128000,
2675,
1541,
956,
1390,
311,
3194,
420,
627,
94528,
36856,
9785,
38373,
6,
5915,
374,
311,
8108,
31376,
60063,
15652,
304,
279,
18386,
10706,
627,
30431,
462,
17247,
44555,
10085,
81,
2461,
8471,
198,
30431,
462,
17247,
11,
264,
2883,
430,
5825,
264,
2539,
5130,
315,
26155,
43906,
2461,
3600,
690,
3493,
2038,
389,
279,
12939,
315,
7458,
26155,
6900,
6373,
11,
323,
459,
24131,
315,
872,
18178,
2447,
520,
279,
36047,
36739,
6150,
11182,
389,
5587,
220,
845,
11,
220,
2366,
16,
520,
38245,
627,
24253,
374,
4276,
2631,
13,
16877,
520,
38245,
389,
220,
18,
14,
845,
14,
1691,
449,
420,
41591,
198,
3648,
7188,
28600,
11,
49357,
11,
323,
34884,
198,
2378,
5065,
28876,
33,
44555,
36202,
198,
19694,
358,
10482,
48338,
220,
17
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
1541,
956,
1390,
311,
3194,
420,
627,
94528,
36856,
9785,
38373,
6,
5915,
374,
311,
8108,
31376,
60063,
15652,
304,
279,
18386,
10706,
627,
30431,
462,
17247,
44555,
10085,
81,
2461,
8471,
198,
30431,
462,
17247,
11,
264,
2883,
430,
5825,
264,
2539,
5130,
315,
26155,
43906,
2461,
3600,
690,
3493,
2038,
389,
279,
12939,
315,
7458,
26155,
6900,
6373,
11,
323,
459,
24131,
315,
872,
18178,
2447,
520,
279,
36047,
36739,
6150,
11182,
389,
5587,
220,
845,
11,
220,
2366,
16,
520,
38245,
627,
24253,
374,
4276,
2631,
13,
16877,
520,
38245,
389,
220,
18,
14,
845,
14,
1691,
449,
420,
41591,
198,
3648,
7188,
28600,
11,
49357,
11,
323,
34884,
198,
2378,
5065,
28876,
33,
44555,
36202,
198,
19694,
358,
10482,
48338,
220,
17,
-100
]
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>frameworks-vertx-web-server</artifactId>
<parent>
<groupId>es.msanchez.frameworks</groupId>
<artifactId>frameworks-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../frameworks-parent/</relativePath>
</parent>
<properties>
<main.verticle>es.msanchez.implementations.vertx.starter.StarterVerticle</main.verticle>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Vertx -->
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-unit</artifactId>
<scope>test</scope>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</dependency>
<!-- Rest of Dependencies -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project> | {
"redpajama_set_name": "RedPajamaGithub"
} | 4,891 | [
128000,
27,
5094,
26015,
429,
1277,
1129,
76,
5389,
5206,
2726,
16744,
1937,
14,
19,
13,
15,
13,
15,
1,
26015,
36354,
6455,
429,
1277,
1129,
2185,
1444,
18,
2726,
14,
1049,
16,
54366,
74755,
1,
38857,
14835,
3499,
4812,
429,
1277,
1129,
76,
5389,
5206,
2726,
16744,
1937,
14,
19,
13,
15,
13,
15,
1795,
1129,
76,
5389,
5206,
2726,
11009,
13752,
3262,
5389,
12,
19,
13,
15,
13,
15,
2036,
13752,
891,
220,
366,
2590,
5755,
29,
19,
13,
15,
13,
15,
524,
2590,
5755,
397,
220,
366,
64822,
769,
29,
3879,
82,
12,
1653,
87,
30531,
27396,
524,
64822,
769,
397,
2355,
220,
366,
3850,
397,
256,
197,
27,
52954,
29,
288,
40215,
29097,
89,
21672,
82,
524,
52954,
397,
256,
197,
27,
64822,
769
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
27,
5094,
26015,
429,
1277,
1129,
76,
5389,
5206,
2726,
16744,
1937,
14,
19,
13,
15,
13,
15,
1,
26015,
36354,
6455,
429,
1277,
1129,
2185,
1444,
18,
2726,
14,
1049,
16,
54366,
74755,
1,
38857,
14835,
3499,
4812,
429,
1277,
1129,
76,
5389,
5206,
2726,
16744,
1937,
14,
19,
13,
15,
13,
15,
1795,
1129,
76,
5389,
5206,
2726,
11009,
13752,
3262,
5389,
12,
19,
13,
15,
13,
15,
2036,
13752,
891,
220,
366,
2590,
5755,
29,
19,
13,
15,
13,
15,
524,
2590,
5755,
397,
220,
366,
64822,
769,
29,
3879,
82,
12,
1653,
87,
30531,
27396,
524,
64822,
769,
397,
2355,
220,
366,
3850,
397,
256,
197,
27,
52954,
29,
288,
40215,
29097,
89,
21672,
82,
524,
52954,
397,
256,
197,
27,
64822,
769,
-100
]
|
Q: How to give a file name to uploadFile EF C# I am uploading a file and wish to name it with one of the input fields which I wille be typing in my view. For ex: I type "Test" in my "Designation Commerciale" field. However, it gives me the NullReferenceException as it does not find any. Would appreciate your help. Thanks.
Controller:
public async Task<string> UploadFile(IFormFile file)
{
//bool iscopied;
string resp = String.Empty;
try
{
if (file.Length > 0)
{
var model = new IdentificationProduitViewModel();
string x = model.DesignationCommerciale;
string filename = x + Path.GetExtension(file.FileName);
string path = Path.GetFullPath(Path.Combine(Directory.GetCurrentDirectory(), "UploadFds"));
using (var filestream = new FileStream(Path.Combine(path, filename), FileMode.Create))
{
await file.CopyToAsync(filestream);
}
//iscopied = true;
resp = filename;
}
else
{
// iscopied = false;
resp = String.Empty;
}
}
catch(Exception)
{
throw;
}
return resp;
}
HTTPPOST:
string tryupload = await UploadFile(file_fds);
if (!String.IsNullOrEmpty(tryupload))
{
TempData["uploadok"] = "Fichier chargé avec success !";
model.Fds_Filepath = tryupload;
}
| {
"redpajama_set_name": "RedPajamaStackExchange"
} | 9,808 | [
128000,
48,
25,
2650,
311,
3041,
264,
1052,
836,
311,
8298,
1738,
45090,
356,
2,
358,
1097,
48429,
264,
1052,
323,
6562,
311,
836,
433,
449,
832,
315,
279,
1988,
5151,
902,
358,
289,
4618,
387,
20061,
304,
856,
1684,
13,
1789,
506,
25,
358,
955,
330,
2323,
1,
304,
856,
330,
21103,
367,
1219,
65522,
20487,
1,
2115,
13,
4452,
11,
433,
6835,
757,
279,
18576,
9032,
1378,
439,
433,
1587,
539,
1505,
904,
13,
19418,
15763,
701,
1520,
13,
11361,
627,
2095,
512,
898,
3393,
5546,
5053,
29,
26045,
1738,
9149,
1876,
1738,
1052,
340,
286,
341,
310,
443,
2707,
374,
38828,
1142,
280,
19548,
310,
925,
9216,
284,
935,
11428,
280,
310,
1456,
198,
310,
341,
394,
422,
320,
1213,
6976,
871,
220,
15,
340
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
48,
25,
2650,
311,
3041,
264,
1052,
836,
311,
8298,
1738,
45090,
356,
2,
358,
1097,
48429,
264,
1052,
323,
6562,
311,
836,
433,
449,
832,
315,
279,
1988,
5151,
902,
358,
289,
4618,
387,
20061,
304,
856,
1684,
13,
1789,
506,
25,
358,
955,
330,
2323,
1,
304,
856,
330,
21103,
367,
1219,
65522,
20487,
1,
2115,
13,
4452,
11,
433,
6835,
757,
279,
18576,
9032,
1378,
439,
433,
1587,
539,
1505,
904,
13,
19418,
15763,
701,
1520,
13,
11361,
627,
2095,
512,
898,
3393,
5546,
5053,
29,
26045,
1738,
9149,
1876,
1738,
1052,
340,
286,
341,
310,
443,
2707,
374,
38828,
1142,
280,
19548,
310,
925,
9216,
284,
935,
11428,
280,
310,
1456,
198,
310,
341,
394,
422,
320,
1213,
6976,
871,
220,
15,
340,
-100
]
|
Published by Philip W. Thomas
HomeServicesAboutContact
MS Litigation Review & Commentary
Comments on the Latest Developments in Mississippi Civil Litigation
The Worst Legal Decision in Mississippi History
By Philip Thomas on October 16, 2013
Posted in Mississippi Supreme Court
What's the worst legal decision in Mississippi history? That's easy: Brown v. State, 161 So. 465 (Miss. 1935).
In a decision that the U.S. Supreme Court reversed, the Mississippi Supreme Court affirmed the conviction of three black men based on confessions obtained by a lynch mob through torturing the defendants. Judge Primeaux blogged about the case and the dissenting judge (Justice Griffith) a few weeks ago in this post.
The Brown case was also covered in Philip Dray's At the Hands of Persons Unknown – The Lynching of Black America. The case involved the Kemper County murder of a white planter. Three black laborers were convicted based on a confession obtained by a deputy sheriff led mob.
Judge Primeaux quotes the dissent, which includes this description of old style Mississippi justice:
Upon his denial they seized him, and with the participation of the deputy they hanged him by a rope to the limb of a tree, and, having let him down, they hung him again, and when he was let down the second time, and he still protested his innocence, he was tied to a tree and whipped, and, still declining to accede to the demands that he confess, he was finally released, and he returned with some difficulty to his home, suffering intense pain and agony. The record of the testimony shows that the signs of the rope on his neck were plainly visible during the socalled trial. A day or two thereafter the said deputy, accompanied by another, returned to the home of the said defendant and arrested him, and departed with the prisoner towards the jail in an adjoining county, but went by a route which led into the state of Alabama; and while on the way, in that state, the deputy stopped and again severely whipped the defendant, declaring that he would continue the whipping until he confessed, and the defendant then agreed to confess to such a statement as the deputy would dictate, and he did so, after which he was delivered to jail.
The other two defendants were treated just as badly and then warned that if they recanted their confessions, the would be tortured again.
The deputy did not dispute the defendants' account of the torture:
So confident were the police in their actions that when Deputy Dial followed the accused to the witness stand he did not dispute their testimony. Asked by the judge how seriously the men had been beaten, the deputy replied, 'Not too much for a negro; not as much as I would have done if it were left to me.' Despite having heard the accused complain of torture and Dial admit that the confessions had been extracted by force, the jury voted to convict. [At the Hands of Persons Unknown, p. 316].
No direct or circumstantial evidence connected the defendants to the murder other than the bogus confessions.
The Miss. Supreme Court refused to set aside the convictions by finding that the defendants did not properly raise objections to their "confessions":
This record discloses no objection to the confessions on the ground of self–crimination, but, aside from that, they were competent when admitted, and, although the appellants had the right and an opportunity so to do, no request to exclude them was made after evidence tending to show their incompetency was introduced.
The majority reasoned that to set aside the confessions would give the defendants preferential treatment based on race:
The rules of procedure here applied are technical only in the sense that all such rules are, and what the appellants request is simply that they be excepted from the procedure heretofore uniformly applied to all litigants. This we cannot do. All litigants, of every race or color, are equal at the bar of this court, and we would feel deeply humiliated if the contrary could be justly said.
Nothing herein said is intended to even remotely sanction the method by which these confessions were obtained.
The U.S. Supreme Court reversed, holding that the defendants' due process rights were violated. Dray describes the Brown decision as a stepping stone for federal civil rights decisions.
Sadly, lynch mob justice continued in Mississippi for over twenty more years. A mob lynched Mack Charles Parker in Pearl River County in 1959. The FBI solved the crime, but neither state nor federal grand juries indicted the perpetrators–who were known by all in the community.
Philip Thomas is an attorney based in Jackson, Mississippi. His practice focuses on commercial litigation, business disputes, and other complex litigation.
Read more about Philip ThomasPhilip's Linkedin ProfilePhilip's Twitter Profile
Miss. Supreme Court: You Better Not Fail the Bar Exam More Than Twice
Supreme Court Search Ends Back Where it Started
No Class Actions in Mississippi a Big Deal?
Miss. Supreme Court Reinstates $500,000 Bench Verdict
Miss. Supreme Court Quietly Puts Fax Machines Out of Their Misery
Philip ThomasTrial Attorney
Subscribe via RSS Feed LinkedIn Profile Follow Me on Twitter Avvo
Topics Select Category 5th Circuit Court of Appeals A&O Life Funds Litigation Alienation of Affection Lawsuits Appellate Decisions From Jury Verdicts Attorney Mental Health Book Reviews Eaton v. Frisby General Gulf Oil Spill Litigation Hinds County Circuit Court Improving the Jury System Law School Legal Technology Madison Timber Ponzi Scheme Mississippi Court of Appeals Mississippi Supreme Court National Politics PERS Crisis Politics in Mississippi Tort Reform U.S. District Courts in Mississippi U.S. Supreme Court Uninsured Mississippi Nursing Homes Verdicts in Mississippi
Archives Select Month March 2020 January 2020 December 2019 November 2019 October 2019 September 2019 August 2019 July 2019 June 2019 May 2019 April 2019 March 2019 February 2019 January 2019 December 2018 November 2018 October 2018 September 2018 August 2018 June 2018 May 2018 April 2018 March 2018 February 2018 January 2018 December 2017 November 2017 October 2017 September 2017 August 2017 July 2017 June 2017 May 2017 April 2017 March 2017 February 2017 January 2017 December 2016 November 2016 October 2016 September 2016 August 2016 July 2016 June 2016 May 2016 April 2016 March 2016 February 2016 January 2016 December 2015 November 2015 October 2015 September 2015 August 2015 July 2015 June 2015 May 2015 April 2015 March 2015 February 2015 January 2015 December 2014 November 2014 October 2014 September 2014 August 2014 July 2014 June 2014 May 2014 April 2014 March 2014 February 2014 January 2014 December 2013 November 2013 October 2013 September 2013 August 2013 July 2013 June 2013 May 2013 April 2013 March 2013 February 2013 January 2013 December 2012 November 2012 October 2012 September 2012 August 2012 July 2012 June 2012 May 2012 April 2012 March 2012 February 2012 January 2012 December 2011 November 2011 October 2011 September 2011 August 2011 July 2011 June 2011 May 2011 April 2011 March 2011 February 2011 January 2011 December 2010 November 2010 October 2010 September 2010 August 2010 July 2010 June 2010 May 2010 April 2010 March 2010 February 2010 January 2010 December 2009 November 2009 October 2009 September 2009 August 2009 July 2009 June 2009 May 2009 April 2009 March 2009 February 2009
Two Tips and an Announcement
What About Web Based Advertising?
Multi-millions Spent on Attorney Advertising in Mississippi
Why Don't All State Courts Have Electronic Filing?
MC Law Judicial Data Project
Philip Thomas Law Firm
State of Mississippi Judiciary
The Mississippi Bar Association
Chancery Judge Larry Primeaux's Blog
Jackson Jambalaya
Jane's Law Blog
MissAppeal
Y'all Politics
Philip W. Thomas
226 North President St.
Mississippi attorney Philip W. Thomas, offering services related to commercial litigation, business disputes, and other complex litigation
Copyright © 2022, Philip W. Thomas. All Rights Reserved. | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 5,130 | [
128000,
29986,
555,
26241,
468,
13,
11355,
198,
7778,
11271,
10714,
8906,
198,
4931,
39351,
18413,
10506,
612,
73544,
198,
17828,
389,
279,
29257,
8000,
1392,
304,
29538,
16803,
39351,
18413,
198,
791,
70192,
25705,
41525,
304,
29538,
11346,
198,
1383,
26241,
11355,
389,
6664,
220,
845,
11,
220,
679,
18,
198,
17827,
304,
29538,
13814,
7301,
198,
3923,
596,
279,
12047,
5897,
5597,
304,
29538,
3925,
30,
3011,
596,
4228,
25,
10690,
348,
13,
3314,
11,
220,
10718,
2100,
13,
220,
19988,
320,
36412,
13,
220,
7285,
20,
4390,
644,
264,
5597,
430,
279,
549,
815,
13,
13814,
7301,
28537,
11,
279,
29538,
13814,
7301,
74549,
279,
29191,
315,
2380,
3776,
3026,
3196,
389,
2389,
8719,
12457,
555,
264,
326,
69581,
12881,
1555,
16831,
1711,
279,
40246
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
29986,
555,
26241,
468,
13,
11355,
198,
7778,
11271,
10714,
8906,
198,
4931,
39351,
18413,
10506,
612,
73544,
198,
17828,
389,
279,
29257,
8000,
1392,
304,
29538,
16803,
39351,
18413,
198,
791,
70192,
25705,
41525,
304,
29538,
11346,
198,
1383,
26241,
11355,
389,
6664,
220,
845,
11,
220,
679,
18,
198,
17827,
304,
29538,
13814,
7301,
198,
3923,
596,
279,
12047,
5897,
5597,
304,
29538,
3925,
30,
3011,
596,
4228,
25,
10690,
348,
13,
3314,
11,
220,
10718,
2100,
13,
220,
19988,
320,
36412,
13,
220,
7285,
20,
4390,
644,
264,
5597,
430,
279,
549,
815,
13,
13814,
7301,
28537,
11,
279,
29538,
13814,
7301,
74549,
279,
29191,
315,
2380,
3776,
3026,
3196,
389,
2389,
8719,
12457,
555,
264,
326,
69581,
12881,
1555,
16831,
1711,
279,
40246,
-100
]
|
New HLO ready for Lift-Off!
This system is as strong as it looks, able to lift loads of 12kg in its standard configuration. The engineers haven't decided whether it should be optimised to deliver kegs of beer or barrels of wine, but all the same, we raise our glasses for a toast. Cheers!
Versadrones is approved by the Irish Aviation Authority (IAA) to operate its entire UAS range in Irish airspace, and to provide RPAS certification and full flight instruction and training courses, to FAA (USA) and CAA (UK) standards equivalence.
All aerial photography and video on this website was obtained by Versadrones staff using our own UAVs or by customers using Versadrones aerial photography equipment, and limited stock photography is also used to illustrate Search & Rescue, Emergency Services, Police, Situation Awareness applications. | {
"redpajama_set_name": "RedPajamaC4"
} | 7,535 | [
128000,
3648,
473,
1623,
5644,
369,
53535,
12,
4699,
4999,
2028,
1887,
374,
439,
3831,
439,
433,
5992,
11,
3025,
311,
12157,
21577,
315,
220,
717,
7501,
304,
1202,
5410,
6683,
13,
578,
25175,
9167,
956,
6773,
3508,
433,
1288,
387,
7706,
4147,
311,
6493,
2004,
5981,
315,
13179,
477,
42975,
315,
13378,
11,
719,
682,
279,
1890,
11,
584,
4933,
1057,
29247,
369,
264,
23211,
13,
80089,
4999,
85056,
329,
32921,
374,
12054,
555,
279,
18088,
50047,
22677,
320,
5987,
32,
8,
311,
14816,
1202,
4553,
549,
1950,
2134,
304,
18088,
88282,
11,
323,
311,
3493,
42561,
1950,
28706,
323,
2539,
11213,
7754,
323,
4967,
14307,
11,
311,
67036,
320,
25342,
8,
323,
356,
6157,
320,
25554,
8,
10886,
85262,
627,
2460,
41884,
24685,
323,
2835,
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
]
| [
3648,
473,
1623,
5644,
369,
53535,
12,
4699,
4999,
2028,
1887,
374,
439,
3831,
439,
433,
5992,
11,
3025,
311,
12157,
21577,
315,
220,
717,
7501,
304,
1202,
5410,
6683,
13,
578,
25175,
9167,
956,
6773,
3508,
433,
1288,
387,
7706,
4147,
311,
6493,
2004,
5981,
315,
13179,
477,
42975,
315,
13378,
11,
719,
682,
279,
1890,
11,
584,
4933,
1057,
29247,
369,
264,
23211,
13,
80089,
4999,
85056,
329,
32921,
374,
12054,
555,
279,
18088,
50047,
22677,
320,
5987,
32,
8,
311,
14816,
1202,
4553,
549,
1950,
2134,
304,
18088,
88282,
11,
323,
311,
3493,
42561,
1950,
28706,
323,
2539,
11213,
7754,
323,
4967,
14307,
11,
311,
67036,
320,
25342,
8,
323,
356,
6157,
320,
25554,
8,
10886,
85262,
627,
2460,
41884,
24685,
323,
2835,
389,
-100
]
|
Both Wisconsin and Marquette have been selected as five seeds for the NCAA men's basketball tournament.
Wisconsin will take on 12th seeded Pac 12 champions Oregon in a first round game in San Jose Friday.
"Obviously this is an exciting day for us, this group of young men to my right, and the rest of the team in terms of how much we've worked this year," Badgers head coach Greg Gard said. "They've really improved and grown and came together and knew this was a big one of their goals as they entered the off season a year ago was to get back to this position and I couldn't be more proud of how this group has worked and overcome a lot of things and they've earn their way into the tournament again. For this program to go to 20 of the last 21 speaks to the young men that have been in this program."
Marquette will play 12th seeded Ohio Valley Conference champions Murray State Thursday in Hartford, Connecticut. | {
"redpajama_set_name": "RedPajamaC4"
} | 2,273 | [
128000,
21279,
21073,
323,
2947,
52806,
617,
1027,
4183,
439,
4330,
19595,
369,
279,
34260,
3026,
596,
19794,
16520,
627,
79848,
19396,
690,
1935,
389,
220,
717,
339,
90916,
12925,
220,
717,
34838,
19313,
304,
264,
1176,
4883,
1847,
304,
5960,
11097,
6740,
627,
1,
49314,
420,
374,
459,
13548,
1938,
369,
603,
11,
420,
1912,
315,
3995,
3026,
311,
856,
1314,
11,
323,
279,
2800,
315,
279,
2128,
304,
3878,
315,
1268,
1790,
584,
3077,
6575,
420,
1060,
1359,
11717,
10863,
2010,
7395,
16431,
23251,
1071,
13,
330,
7009,
3077,
2216,
13241,
323,
15042,
323,
3782,
3871,
323,
7020,
420,
574,
264,
2466,
832,
315,
872,
9021,
439,
814,
10862,
279,
1022,
3280,
264,
1060,
4227,
574,
311,
636,
1203,
311,
420,
2361,
323,
358,
7846,
956
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
21279,
21073,
323,
2947,
52806,
617,
1027,
4183,
439,
4330,
19595,
369,
279,
34260,
3026,
596,
19794,
16520,
627,
79848,
19396,
690,
1935,
389,
220,
717,
339,
90916,
12925,
220,
717,
34838,
19313,
304,
264,
1176,
4883,
1847,
304,
5960,
11097,
6740,
627,
1,
49314,
420,
374,
459,
13548,
1938,
369,
603,
11,
420,
1912,
315,
3995,
3026,
311,
856,
1314,
11,
323,
279,
2800,
315,
279,
2128,
304,
3878,
315,
1268,
1790,
584,
3077,
6575,
420,
1060,
1359,
11717,
10863,
2010,
7395,
16431,
23251,
1071,
13,
330,
7009,
3077,
2216,
13241,
323,
15042,
323,
3782,
3871,
323,
7020,
420,
574,
264,
2466,
832,
315,
872,
9021,
439,
814,
10862,
279,
1022,
3280,
264,
1060,
4227,
574,
311,
636,
1203,
311,
420,
2361,
323,
358,
7846,
956,
-100
]
|
Bailey Northcott is a fresh and driven media artist with a flare for design and a passion for photography. She studied for a year at Ryerson but dropped out to pursue a more rewarding career as a graphic artist. A former-model, she loves to create flawless images and is a huge part of the creative process from planning to post. She is inspired by the energy of the urban environment in which she lives and the alternative lifestyle that thrives in the dark corners of the city. | {
"redpajama_set_name": "RedPajamaC4"
} | 1,616 | [
128000,
59927,
18280,
4892,
51805,
374,
264,
7878,
323,
16625,
3772,
10255,
449,
264,
61363,
369,
2955,
323,
264,
11939,
369,
24685,
13,
3005,
20041,
369,
264,
1060,
520,
26775,
1293,
719,
12504,
704,
311,
23564,
264,
810,
42093,
7076,
439,
264,
21154,
10255,
13,
362,
4846,
29344,
11,
1364,
16180,
311,
1893,
69616,
5448,
323,
374,
264,
6908,
961,
315,
279,
11782,
1920,
505,
9293,
311,
1772,
13,
3005,
374,
14948,
555,
279,
4907,
315,
279,
16036,
4676,
304,
902,
1364,
6439,
323,
279,
10778,
19433,
430,
8983,
1924,
304,
279,
6453,
24359,
315,
279,
3363,
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
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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
]
| [
59927,
18280,
4892,
51805,
374,
264,
7878,
323,
16625,
3772,
10255,
449,
264,
61363,
369,
2955,
323,
264,
11939,
369,
24685,
13,
3005,
20041,
369,
264,
1060,
520,
26775,
1293,
719,
12504,
704,
311,
23564,
264,
810,
42093,
7076,
439,
264,
21154,
10255,
13,
362,
4846,
29344,
11,
1364,
16180,
311,
1893,
69616,
5448,
323,
374,
264,
6908,
961,
315,
279,
11782,
1920,
505,
9293,
311,
1772,
13,
3005,
374,
14948,
555,
279,
4907,
315,
279,
16036,
4676,
304,
902,
1364,
6439,
323,
279,
10778,
19433,
430,
8983,
1924,
304,
279,
6453,
24359,
315,
279,
3363,
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
]
|
Język kamarian (a. kamariang), także seruawan – język austronezyjski z wyspy Seram w prowincji Moluki w Indonezji.
Był używany w trzech wsiach. W 1978 r. znała go niewielka część mieszkańców wsi Kamarian i Rumakai (osoby w wieku powyżej 50/60 lat), dziś znajduje się na skraju wymarcia. W 2000 r. odnotowano, że ma mniej niż 50 użytkowników. Według doniesień z 2013 r. główny język wsi Rumakai to malajski amboński. Lokalny język pozostaje w użyciu w pewnych obrzędach, aczkolwiek w ograniczonym zakresie.
Przypisy
Języki Moluków
Języki austronezyjskie
Języki wymarłe w Azji | {
"redpajama_set_name": "RedPajamaWikipedia"
} | 7,422 | [
128000,
41,
5267,
4341,
74,
34761,
8997,
320,
64,
13,
34761,
2850,
526,
705,
64954,
1446,
84,
42029,
1389,
503,
5267,
4341,
74,
264,
3497,
606,
4341,
2580,
6780,
1167,
55647,
3368,
8409,
309,
289,
48658,
2910,
7910,
33518,
22227,
289,
2314,
606,
89,
7910,
382,
1383,
4697,
62508,
86,
3852,
289,
490,
26835,
289,
6455,
613,
13,
468,
220,
4468,
23,
436,
13,
1167,
3458,
22250,
733,
308,
572,
13327,
4657,
70394,
25898,
94173,
4657,
19699,
66,
12543,
289,
6455,
29549,
8997,
602,
46332,
587,
2192,
320,
437,
28113,
289,
13672,
12407,
7019,
88,
16020,
73,
220,
1135,
14,
1399,
6987,
705,
52126,
7545,
68815,
1072,
3841,
12951,
4415,
1940,
969,
8783,
72341,
8362,
689,
13,
468,
220,
1049,
15,
436,
13,
11018,
1962,
363,
5770,
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
]
| [
41,
5267,
4341,
74,
34761,
8997,
320,
64,
13,
34761,
2850,
526,
705,
64954,
1446,
84,
42029,
1389,
503,
5267,
4341,
74,
264,
3497,
606,
4341,
2580,
6780,
1167,
55647,
3368,
8409,
309,
289,
48658,
2910,
7910,
33518,
22227,
289,
2314,
606,
89,
7910,
382,
1383,
4697,
62508,
86,
3852,
289,
490,
26835,
289,
6455,
613,
13,
468,
220,
4468,
23,
436,
13,
1167,
3458,
22250,
733,
308,
572,
13327,
4657,
70394,
25898,
94173,
4657,
19699,
66,
12543,
289,
6455,
29549,
8997,
602,
46332,
587,
2192,
320,
437,
28113,
289,
13672,
12407,
7019,
88,
16020,
73,
220,
1135,
14,
1399,
6987,
705,
52126,
7545,
68815,
1072,
3841,
12951,
4415,
1940,
969,
8783,
72341,
8362,
689,
13,
468,
220,
1049,
15,
436,
13,
11018,
1962,
363,
5770,
11,
-100
]
|
11/19/2014 01:03 pm ET Updated Nov 19, 2014
Idina Menzel And Michael Bublé Release Cover Of 'Baby, It's Cold Outside,' The Kiddie Edition
The song has been covered by everyone from Miss Piggy to Ray Charles, and now Idina Menzel and Michael Bublé have released their own rendition "Baby, It's Cold Outside" -- with a kid-friendly twist.
On Monday, Menzel posted a music video of the new duet on her YouTube page. The clip, which has been watched more than 630,000 times so far, features two snazzily dressed children mouthing the words to the holiday classic as they prance around a retro-looking hotel.
"Baby, It's Cold Outside" has long been criticized for its questionable lyrics, so some of the words in this latest version were tweaked. The eyebrow-raising line "Say, what's in this drink," for instance, was changed to "Was that a wink?"
Still, viewers have been conflicted about this kid-ified cover of the holiday classic, with some calling it sweet and others, totally creepy.
As The Daily Beast put it: "The children are precocious and cute and the whole thing is freaking adorable. But also … what the hell?!"
Disturbing or darling? Watch the video, and tell us what you think in the comments.
Dominique Mosbergen
Baby It's Cold Outside Michael Buble Entertainment Idina Menzel | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 9,077 | [
128000,
806,
14,
777,
14,
679,
19,
220,
1721,
25,
2839,
9012,
18241,
16459,
4723,
220,
777,
11,
220,
679,
19,
198,
769,
2259,
11258,
28493,
1628,
8096,
426,
392,
69328,
17836,
18230,
5046,
364,
60860,
11,
1102,
596,
24062,
42251,
2965,
578,
98238,
648,
14398,
198,
791,
5609,
706,
1027,
9960,
555,
5127,
505,
9083,
49654,
4680,
311,
13558,
15274,
11,
323,
1457,
5336,
2259,
11258,
28493,
323,
8096,
426,
392,
69328,
617,
6004,
872,
1866,
83965,
330,
60860,
11,
1102,
596,
24062,
42251,
1,
1198,
449,
264,
10585,
22658,
27744,
627,
1966,
7159,
11,
11258,
28493,
8621,
264,
4731,
2835,
315,
279,
502,
3930,
295,
389,
1077,
13674,
2199,
13,
578,
12607,
11,
902,
706,
1027,
15746,
810,
1109,
220,
18660,
11,
931,
3115,
779,
3117
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
806,
14,
777,
14,
679,
19,
220,
1721,
25,
2839,
9012,
18241,
16459,
4723,
220,
777,
11,
220,
679,
19,
198,
769,
2259,
11258,
28493,
1628,
8096,
426,
392,
69328,
17836,
18230,
5046,
364,
60860,
11,
1102,
596,
24062,
42251,
2965,
578,
98238,
648,
14398,
198,
791,
5609,
706,
1027,
9960,
555,
5127,
505,
9083,
49654,
4680,
311,
13558,
15274,
11,
323,
1457,
5336,
2259,
11258,
28493,
323,
8096,
426,
392,
69328,
617,
6004,
872,
1866,
83965,
330,
60860,
11,
1102,
596,
24062,
42251,
1,
1198,
449,
264,
10585,
22658,
27744,
627,
1966,
7159,
11,
11258,
28493,
8621,
264,
4731,
2835,
315,
279,
502,
3930,
295,
389,
1077,
13674,
2199,
13,
578,
12607,
11,
902,
706,
1027,
15746,
810,
1109,
220,
18660,
11,
931,
3115,
779,
3117,
-100
]
|
So, if you don't already know it, I'm in love with Mason jars. Well, Mason jars and pallets, but that's another blog post. I know we've already covered Mason jars once on Thrifty Thursday, (that blog post is here), but ol' Mason and I have recently rekindled our relationship so I thought I'd share.
Several months ago, I decided to stop using plastic (even BPA free) and start using my extra glass jars for storage purposes. Surprisingly, these containers have met almost every need I have (with the exception of packing my daughter's PB&J for lunch). So, let's do it–the top ten uses of glass jars in the kitchen.
7. Shakers–Take the flat top of the metal lid and poke holes in top with an ice pick and hammer. Perfect to create some rustic shakers for salt and pepper, cinnamon, spices, etc.
8. Pinch bowls–The 4oz size work nicely for holding those small amounts of baking items like baking soda or salt as well as herbs while your cooking. Forget investing in those fancy 4 for $16 pinch bowls–4 0z canning jars are perfect.
9. Baking–baking? yes, baking! Did you know you can bake in jar. Whenever I need single servings, I use a Mason jar and my toaster over. Perfect!
10. Window gardens–a great project for kids or just to add some flair to your kitchen windowsill.
I love Mason jars too! I have not been using the 4oz ones, but I will try them! I usually buy them for gift canning, so a give a lot of them away! I bet they are the perfect container for dip to go with chips!
We do that as well! | {
"redpajama_set_name": "RedPajamaC4"
} | 2,286 | [
128000,
4516,
11,
422,
499,
1541,
956,
2736,
1440,
433,
11,
358,
2846,
304,
3021,
449,
29927,
61111,
13,
8489,
11,
29927,
61111,
323,
59903,
82,
11,
719,
430,
596,
2500,
5117,
1772,
13,
358,
1440,
584,
3077,
2736,
9960,
29927,
61111,
3131,
389,
30665,
39724,
7950,
11,
320,
9210,
5117,
1772,
374,
1618,
705,
719,
8492,
6,
29927,
323,
358,
617,
6051,
312,
15674,
839,
1057,
5133,
779,
358,
3463,
358,
4265,
4430,
627,
35862,
4038,
4227,
11,
358,
6773,
311,
3009,
1701,
12466,
320,
17206,
426,
8201,
1949,
8,
323,
1212,
1701,
856,
5066,
9168,
61111,
369,
5942,
10096,
13,
8242,
49264,
11,
1521,
24794,
617,
2322,
4661,
1475,
1205,
358,
617,
320,
4291,
279,
4788,
315,
36813,
856,
10003,
596,
32034,
5,
41,
369,
16163
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
4516,
11,
422,
499,
1541,
956,
2736,
1440,
433,
11,
358,
2846,
304,
3021,
449,
29927,
61111,
13,
8489,
11,
29927,
61111,
323,
59903,
82,
11,
719,
430,
596,
2500,
5117,
1772,
13,
358,
1440,
584,
3077,
2736,
9960,
29927,
61111,
3131,
389,
30665,
39724,
7950,
11,
320,
9210,
5117,
1772,
374,
1618,
705,
719,
8492,
6,
29927,
323,
358,
617,
6051,
312,
15674,
839,
1057,
5133,
779,
358,
3463,
358,
4265,
4430,
627,
35862,
4038,
4227,
11,
358,
6773,
311,
3009,
1701,
12466,
320,
17206,
426,
8201,
1949,
8,
323,
1212,
1701,
856,
5066,
9168,
61111,
369,
5942,
10096,
13,
8242,
49264,
11,
1521,
24794,
617,
2322,
4661,
1475,
1205,
358,
617,
320,
4291,
279,
4788,
315,
36813,
856,
10003,
596,
32034,
5,
41,
369,
16163,
-100
]
|
The Wall Street JournalOpinion
Of Mustard Fuel and Marines
How do you hide from the enemy if your camp runs on a giant windmill?
Although few realize it, the military is just as susceptible to fads and political correctness as any other government agency. Thus, in response to prodding from the executive branch, both the Air Force and Navy have announced plans to get half their fuel from "renewable resources" by 2020.
"We have already tested the F-18 Hornet on biofuels, the Green Hornet," Secretary of the Navy Ray Mabus explained in a speech last year. "The biofuel it used was made from camelina, a member of the mustard family.... | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 9,747 | [
128000,
791,
9935,
6825,
10139,
7271,
37400,
198,
2173,
15832,
569,
37384,
323,
51889,
198,
4438,
656,
499,
10477,
505,
279,
9354,
422,
701,
3190,
8640,
389,
264,
14880,
10160,
26064,
5380,
16179,
2478,
13383,
433,
11,
279,
6411,
374,
1120,
439,
47281,
311,
282,
7819,
323,
5054,
58423,
439,
904,
1023,
3109,
9266,
13,
14636,
11,
304,
2077,
311,
463,
634,
287,
505,
279,
11145,
9046,
11,
2225,
279,
6690,
11994,
323,
19574,
617,
7376,
6787,
311,
636,
4376,
872,
10633,
505,
330,
265,
943,
481,
5070,
1,
555,
220,
2366,
15,
627,
10944,
617,
2736,
12793,
279,
435,
12,
972,
27206,
295,
389,
17332,
33721,
2053,
11,
279,
7997,
27206,
295,
1359,
12667,
315,
279,
19574,
13558,
386,
58641,
11497,
304,
264,
8982,
1566,
1060,
13
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
791,
9935,
6825,
10139,
7271,
37400,
198,
2173,
15832,
569,
37384,
323,
51889,
198,
4438,
656,
499,
10477,
505,
279,
9354,
422,
701,
3190,
8640,
389,
264,
14880,
10160,
26064,
5380,
16179,
2478,
13383,
433,
11,
279,
6411,
374,
1120,
439,
47281,
311,
282,
7819,
323,
5054,
58423,
439,
904,
1023,
3109,
9266,
13,
14636,
11,
304,
2077,
311,
463,
634,
287,
505,
279,
11145,
9046,
11,
2225,
279,
6690,
11994,
323,
19574,
617,
7376,
6787,
311,
636,
4376,
872,
10633,
505,
330,
265,
943,
481,
5070,
1,
555,
220,
2366,
15,
627,
10944,
617,
2736,
12793,
279,
435,
12,
972,
27206,
295,
389,
17332,
33721,
2053,
11,
279,
7997,
27206,
295,
1359,
12667,
315,
279,
19574,
13558,
386,
58641,
11497,
304,
264,
8982,
1566,
1060,
13,
-100
]
|
The fundamental principle of cardiac behaviour which states that the force of contraction of the cardiac muscle is proportional to its initial length. The energy set free at each contraction is a simple function of cardiac filling. When the diastolic filling of the heart is increased or decreased with a given volume, the displacement of the heart increases or decreases with this volume.
The LINACRE lecture on the law of the heart.(Cambridge, 1915). London, 1918.
Methoden zur Bestimmung von Volumschwankungen.
Handbuch der biologischen Arbeitsmethoden, Abt. 5, T. 4, 1, Berlin and Vienna, 1923. Die Bestimmung des Schlagvolumens beim Tier.
Handbuch der biologischen Arbeitsmethoden, Abt. 5, T. 4, 1, Berlin and Vienna, 1923.
The regulation of the output of the heart.
Journal of Physiology, Cambridge, 1927, 62: 243-261. | {
"redpajama_set_name": "RedPajamaC4"
} | 8,101 | [
128000,
791,
16188,
17966,
315,
47345,
17432,
902,
5415,
430,
279,
5457,
315,
71895,
315,
279,
47345,
16124,
374,
55272,
311,
1202,
2926,
3160,
13,
578,
4907,
743,
1949,
520,
1855,
71895,
374,
264,
4382,
734,
315,
47345,
21973,
13,
3277,
279,
1891,
561,
7918,
21973,
315,
279,
4851,
374,
7319,
477,
25983,
449,
264,
2728,
8286,
11,
279,
44153,
315,
279,
4851,
12992,
477,
43154,
449,
420,
8286,
627,
791,
65889,
1741,
793,
31678,
389,
279,
2383,
315,
279,
4851,
13127,
26479,
14024,
11,
220,
7529,
20,
570,
7295,
11,
220,
7529,
23,
627,
3607,
268,
17761,
7252,
12828,
2234,
6675,
650,
1152,
21740,
86,
1201,
11856,
627,
2367,
73143,
2761,
6160,
1640,
18211,
71265,
4492,
268,
11,
3765,
83,
13,
220,
20,
11,
350,
13,
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
]
| [
791,
16188,
17966,
315,
47345,
17432,
902,
5415,
430,
279,
5457,
315,
71895,
315,
279,
47345,
16124,
374,
55272,
311,
1202,
2926,
3160,
13,
578,
4907,
743,
1949,
520,
1855,
71895,
374,
264,
4382,
734,
315,
47345,
21973,
13,
3277,
279,
1891,
561,
7918,
21973,
315,
279,
4851,
374,
7319,
477,
25983,
449,
264,
2728,
8286,
11,
279,
44153,
315,
279,
4851,
12992,
477,
43154,
449,
420,
8286,
627,
791,
65889,
1741,
793,
31678,
389,
279,
2383,
315,
279,
4851,
13127,
26479,
14024,
11,
220,
7529,
20,
570,
7295,
11,
220,
7529,
23,
627,
3607,
268,
17761,
7252,
12828,
2234,
6675,
650,
1152,
21740,
86,
1201,
11856,
627,
2367,
73143,
2761,
6160,
1640,
18211,
71265,
4492,
268,
11,
3765,
83,
13,
220,
20,
11,
350,
13,
220,
-100
]
|
You don't say. Now let's find the NSA agent who dialed them in.
According to NBC, these threats are against planes already in the sky.
What turned out to be a hoax led to police searching a US Airways flight and its passengers after it landed at Philadelphia International Airport Tuesday morning.
The airport confirmed there was a police investigation going on around 6:30 a.m. after flight 648 from San Diego landed as scheduled in Philly with 88 passengers and five crew on board.
The aircraft had taken off from California at 10:35 p.m. PDT and landed in Philadelphia on schedule shortly after 6:15 a.m. EDT.
"The TSA Operations Center in Washington, DC had received a phone threat stating that there was an explosive device on the plane," said Philadelphia Police Chief Inspector Joe Sullivan. "Out of an abundance of caution" the airport declared a bomb threat and moved the plane to a remote area.
At least five bomb threats were phoned in Tuesday against flights originating or landing in the United States, government sources told NBC News. The sources said that the threats were not deemed credible.
Four of the five flights — one each from US Airways, Delta Air Lines, United Airlines and the Mexican carrier Volaris — landed. The fifth, Korean Air Flight 23 from Seoul to San Francisco, was still in the air, scheduled to land Tuesday afternoon.
In Philadelphia, police met the US Airways plane, Flight 648 from San Diego, when it landed. NBC Philadelphia reported that a police bomb squad, including dogs, searched the plane and passengers and gave the all-clear.
The three other flights that had landed were Delta Flight 55, from Los Angeles to Atlanta; United Flight 995, from San Francisco to Chicago O'Hare; and Volaris Flight 939, from Portland, Oregon,to Guadalajara, Mexico.
US equity markets dropped on the news but judging by how fast stocks rebounded after the original CNBC report it makes one wonder if this was just a trial balloon to see how fast BTFDers BTFD after a terrorism headline. The answer: 5 minutes.
Conclusion: the Fear Department will need to work harder to overcome the natural instinct of an entire generation of BTFDers to inspire a marketwide panic. | {
"redpajama_set_name": "RedPajamaC4"
} | 3,889 | [
128000,
2675,
1541,
956,
2019,
13,
4800,
1095,
596,
1505,
279,
31883,
8479,
889,
18205,
839,
1124,
304,
627,
11439,
311,
24426,
11,
1521,
18208,
527,
2403,
25761,
2736,
304,
279,
13180,
627,
3923,
6656,
704,
311,
387,
264,
73944,
6197,
311,
4379,
15389,
264,
2326,
70502,
11213,
323,
1202,
22961,
1306,
433,
27212,
520,
19895,
7327,
21348,
7742,
6693,
627,
791,
17149,
11007,
1070,
574,
264,
4379,
8990,
2133,
389,
2212,
220,
21,
25,
966,
264,
749,
13,
1306,
11213,
220,
23802,
505,
5960,
18842,
27212,
439,
13847,
304,
66254,
449,
220,
2421,
22961,
323,
4330,
13941,
389,
4580,
627,
791,
14467,
1047,
4529,
1022,
505,
7188,
520,
220,
605,
25,
1758,
281,
749,
13,
46557,
323,
27212,
304,
19895,
389,
9899,
20193,
1306,
220,
21,
25
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
1541,
956,
2019,
13,
4800,
1095,
596,
1505,
279,
31883,
8479,
889,
18205,
839,
1124,
304,
627,
11439,
311,
24426,
11,
1521,
18208,
527,
2403,
25761,
2736,
304,
279,
13180,
627,
3923,
6656,
704,
311,
387,
264,
73944,
6197,
311,
4379,
15389,
264,
2326,
70502,
11213,
323,
1202,
22961,
1306,
433,
27212,
520,
19895,
7327,
21348,
7742,
6693,
627,
791,
17149,
11007,
1070,
574,
264,
4379,
8990,
2133,
389,
2212,
220,
21,
25,
966,
264,
749,
13,
1306,
11213,
220,
23802,
505,
5960,
18842,
27212,
439,
13847,
304,
66254,
449,
220,
2421,
22961,
323,
4330,
13941,
389,
4580,
627,
791,
14467,
1047,
4529,
1022,
505,
7188,
520,
220,
605,
25,
1758,
281,
749,
13,
46557,
323,
27212,
304,
19895,
389,
9899,
20193,
1306,
220,
21,
25,
-100
]
|
Japanese IT Firm to Digitize Vatican Manuscripts
tags: Vatican, digitization
(VATICAN CITY) — A Japanese information technology company has agreed to digitize 3,000 Vatican manuscripts in a deal to make some of the Catholic Church's most historic documents available online.
The Vatican Apostolic Library says it hopes Thursday's announced agreement with Tokyo-based NTT DATA Corp. would protect fragile manuscripts for perusal by scholars worldwide.
NTT DATA said it would digitize 3,000 manuscripts totaling 1.5 million pages over the next four years in a contract worth 18 million euros ($22.6 million)....
Read entire article at Time Magazine | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 7,566 | [
128000,
52566,
8871,
38725,
311,
72565,
553,
47647,
96433,
25207,
198,
14412,
25,
47647,
11,
16099,
2065,
198,
12692,
47459,
1111,
47652,
8,
2001,
362,
11002,
2038,
5557,
2883,
706,
7378,
311,
16099,
553,
220,
18,
11,
931,
47647,
79688,
304,
264,
3568,
311,
1304,
1063,
315,
279,
16879,
9441,
596,
1455,
18526,
9477,
2561,
2930,
627,
791,
47647,
47859,
7918,
11896,
2795,
433,
16388,
7950,
596,
7376,
9306,
449,
27286,
6108,
452,
15249,
14444,
22621,
13,
1053,
6144,
45350,
79688,
369,
824,
36514,
555,
31839,
15603,
627,
6542,
51,
14444,
1071,
433,
1053,
16099,
553,
220,
18,
11,
931,
79688,
82223,
220,
16,
13,
20,
3610,
6959,
927,
279,
1828,
3116,
1667,
304,
264,
5226,
5922,
220,
972,
3610,
33588,
1746,
1313,
13,
21,
3610,
8,
78928
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
52566,
8871,
38725,
311,
72565,
553,
47647,
96433,
25207,
198,
14412,
25,
47647,
11,
16099,
2065,
198,
12692,
47459,
1111,
47652,
8,
2001,
362,
11002,
2038,
5557,
2883,
706,
7378,
311,
16099,
553,
220,
18,
11,
931,
47647,
79688,
304,
264,
3568,
311,
1304,
1063,
315,
279,
16879,
9441,
596,
1455,
18526,
9477,
2561,
2930,
627,
791,
47647,
47859,
7918,
11896,
2795,
433,
16388,
7950,
596,
7376,
9306,
449,
27286,
6108,
452,
15249,
14444,
22621,
13,
1053,
6144,
45350,
79688,
369,
824,
36514,
555,
31839,
15603,
627,
6542,
51,
14444,
1071,
433,
1053,
16099,
553,
220,
18,
11,
931,
79688,
82223,
220,
16,
13,
20,
3610,
6959,
927,
279,
1828,
3116,
1667,
304,
264,
5226,
5922,
220,
972,
3610,
33588,
1746,
1313,
13,
21,
3610,
8,
78928,
-100
]
|
Board game maker The OP is teaming up with Kingdom Hearts for a special RPG-style version of its Talisman game.
Talisman is a tabletop RPG-style "sugoroku" dice game from Games Workshop, which is known for the Warhammer series. The player chooses a character and then plays through the three-level board fighting battles and encountering events while picking up items to increase their strength as they head towards the final level.
Hobby Japan will be selling the Japanese language edition of the game, while an English language edition will also be available digitally via PC and mobile.
The game will be titled Talisman: Kingdom Hearts Edition. Gameplay details have not yet been confirmed but the game will feature Sora, Kairi, Riku, King Mickey, and Goofy and will be playable by two to six players. While preserving the classic Talisman features, the Kingdom Hearts edition is expected to incorporate various areas etc from the much loved video game.
The key to Kingdom Hearts' secret ending lies in a certain iconic Disney mark. | {
"redpajama_set_name": "RedPajamaC4"
} | 3,355 | [
128000,
12198,
1847,
25214,
578,
13435,
374,
2128,
287,
709,
449,
15422,
53876,
369,
264,
3361,
34602,
11549,
2373,
315,
1202,
18051,
63670,
1847,
627,
51,
35965,
1543,
374,
264,
89571,
34602,
11549,
330,
82,
773,
269,
16900,
1,
22901,
1847,
505,
11871,
36202,
11,
902,
374,
3967,
369,
279,
5111,
46434,
4101,
13,
578,
2851,
41011,
264,
3752,
323,
1243,
11335,
1555,
279,
2380,
11852,
4580,
11039,
25572,
323,
92372,
4455,
1418,
21816,
709,
3673,
311,
5376,
872,
8333,
439,
814,
2010,
7119,
279,
1620,
2237,
627,
39,
10530,
6457,
690,
387,
11486,
279,
11002,
4221,
14002,
315,
279,
1847,
11,
1418,
459,
6498,
4221,
14002,
690,
1101,
387,
2561,
68878,
4669,
6812,
323,
6505,
627,
791,
1847,
690,
387,
25891,
18051,
63670,
25,
15422,
53876,
14398
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
12198,
1847,
25214,
578,
13435,
374,
2128,
287,
709,
449,
15422,
53876,
369,
264,
3361,
34602,
11549,
2373,
315,
1202,
18051,
63670,
1847,
627,
51,
35965,
1543,
374,
264,
89571,
34602,
11549,
330,
82,
773,
269,
16900,
1,
22901,
1847,
505,
11871,
36202,
11,
902,
374,
3967,
369,
279,
5111,
46434,
4101,
13,
578,
2851,
41011,
264,
3752,
323,
1243,
11335,
1555,
279,
2380,
11852,
4580,
11039,
25572,
323,
92372,
4455,
1418,
21816,
709,
3673,
311,
5376,
872,
8333,
439,
814,
2010,
7119,
279,
1620,
2237,
627,
39,
10530,
6457,
690,
387,
11486,
279,
11002,
4221,
14002,
315,
279,
1847,
11,
1418,
459,
6498,
4221,
14002,
690,
1101,
387,
2561,
68878,
4669,
6812,
323,
6505,
627,
791,
1847,
690,
387,
25891,
18051,
63670,
25,
15422,
53876,
14398,
-100
]
|
Val Villas is a Contemporary style community located within minutes to shops, restaurants, and the ocean in the Circle Area/Eastside region of Long Beach, California. Built in 1985, Val Villas is comprised of several luxury units. This complex offers floor plans that feature mirrored closet doors, open living areas, ceiling fans, granite elements, modern kitchens, and many updates. Residents are attracted to Val Villas because of the amazing amenities, the Southern California lifestyle, and the ocean breezes. It is also a short distance to grocery stores, public schools, medical offices, freeway access, and public transportation. This complex offers secured parking and pet friendly policies.
Range $370 - $370 /sq.ft.
Would you like to be notified when a new condo is listed in Val Villas?
There are currently no available properties for sale at Val Villas. If you would like to be alerted via email when the next listing comes up for sale, simply fill in your contact information. With inventory being at historic lows across Long Beach, this is a great way to ensure you remain a step ahead of other buyers looking to buy in this same complex.
Whether you are contemplating purchasing or selling your condo in Val Villas, it is imperative that you hire the right Long Beach Real Estate Expert that can exceed all of your expectations. When you work with The Ryan Case Team, your every need will be met with the greatest attention to detail. We are intimately familiar with Val Villas, and you will not find a more qualified Long Beach Real Estate Agent to help you achieve your goals.
As a seller of a Condo or Townhome in Val Villas, your unit will be front and center on our top ranked website. This gives you maximum exposure above what a normal Long Beach Realtor would provide, as our highly trafficked website will help us to sell your property in less time, at the highest possible net to you! After all, the same way you found us is how your next buyer will!
Listed once again as of September 13th at 8:36am, this Spanish home was originally listed on September 12th in 2018. The property is being listed at a price of $319,000 , the same as its original list price. This 2 bedroom, 1 full bath residence is located on Obispo Avenue, an excellent location in .
With a total size of 860 square feet, this beautiful home comes in at $370.93 per square foot. That's 0.00% higher than the neighborhood average. There are also 2.00 garage spaces available for parking.
Originally built in 1985, this home sits on a 6,099 square foot lot.
Listing provided courtesy of Michelle Harding at Keller Williams Realty. | {
"redpajama_set_name": "RedPajamaC4"
} | 6,270 | [
128000,
2257,
16959,
300,
374,
264,
48302,
1742,
4029,
7559,
2949,
4520,
311,
20021,
11,
15926,
11,
323,
279,
18435,
304,
279,
21918,
12299,
26729,
561,
3002,
5654,
315,
5843,
13011,
11,
7188,
13,
34154,
304,
220,
3753,
20,
11,
4196,
16959,
300,
374,
40056,
315,
3892,
19913,
8316,
13,
1115,
6485,
6209,
6558,
6787,
430,
4668,
70137,
33044,
14365,
11,
1825,
5496,
5789,
11,
22959,
7359,
11,
38390,
5540,
11,
6617,
66438,
11,
323,
1690,
9013,
13,
64348,
527,
29123,
311,
4196,
16959,
300,
1606,
315,
279,
8056,
36483,
11,
279,
16642,
7188,
19433,
11,
323,
279,
18435,
68399,
32893,
13,
1102,
374,
1101,
264,
2875,
6138,
311,
30687,
10756,
11,
586,
8853,
11,
6593,
19672,
11,
84674,
2680,
11,
323,
586,
18386,
13,
1115,
6485,
6209
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
2257,
16959,
300,
374,
264,
48302,
1742,
4029,
7559,
2949,
4520,
311,
20021,
11,
15926,
11,
323,
279,
18435,
304,
279,
21918,
12299,
26729,
561,
3002,
5654,
315,
5843,
13011,
11,
7188,
13,
34154,
304,
220,
3753,
20,
11,
4196,
16959,
300,
374,
40056,
315,
3892,
19913,
8316,
13,
1115,
6485,
6209,
6558,
6787,
430,
4668,
70137,
33044,
14365,
11,
1825,
5496,
5789,
11,
22959,
7359,
11,
38390,
5540,
11,
6617,
66438,
11,
323,
1690,
9013,
13,
64348,
527,
29123,
311,
4196,
16959,
300,
1606,
315,
279,
8056,
36483,
11,
279,
16642,
7188,
19433,
11,
323,
279,
18435,
68399,
32893,
13,
1102,
374,
1101,
264,
2875,
6138,
311,
30687,
10756,
11,
586,
8853,
11,
6593,
19672,
11,
84674,
2680,
11,
323,
586,
18386,
13,
1115,
6485,
6209,
-100
]
|
Hanieh Tavassoli ( هانیه توسلی ) is an Iranian actress, born on 4 June 1979 in Hamedan. She has two older sisters and two younger ones. One of the older siblings is the famous journalist and film critic Homa Tavassoli. Hanieh Tavassoli first name means she who brings joy and happiness, and according to her friends and family this describes Haniehs character perfectly. She is an owner of the Best Actress award from the 2012 Fajr Film Festival. | {
"redpajama_set_name": "RedPajamaC4"
} | 1,516 | [
128000,
39,
19700,
71,
350,
402,
395,
14559,
320,
56991,
100819,
16552,
109603,
100377,
883,
374,
459,
28501,
24577,
11,
9405,
389,
220,
19,
5651,
220,
4468,
24,
304,
473,
3690,
276,
13,
3005,
706,
1403,
9191,
30393,
323,
1403,
14992,
6305,
13,
3861,
315,
279,
9191,
37783,
374,
279,
11495,
23672,
323,
4632,
9940,
473,
7942,
350,
402,
395,
14559,
13,
473,
19700,
71,
350,
402,
395,
14559,
1176,
836,
3445,
1364,
889,
12716,
16267,
323,
23871,
11,
323,
4184,
311,
1077,
4885,
323,
3070,
420,
16964,
473,
19700,
5104,
3752,
14268,
13,
3005,
374,
459,
6506,
315,
279,
7252,
79539,
10292,
505,
279,
220,
679,
17,
435,
1662,
81,
17042,
17772,
13,
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,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
]
| [
39,
19700,
71,
350,
402,
395,
14559,
320,
56991,
100819,
16552,
109603,
100377,
883,
374,
459,
28501,
24577,
11,
9405,
389,
220,
19,
5651,
220,
4468,
24,
304,
473,
3690,
276,
13,
3005,
706,
1403,
9191,
30393,
323,
1403,
14992,
6305,
13,
3861,
315,
279,
9191,
37783,
374,
279,
11495,
23672,
323,
4632,
9940,
473,
7942,
350,
402,
395,
14559,
13,
473,
19700,
71,
350,
402,
395,
14559,
1176,
836,
3445,
1364,
889,
12716,
16267,
323,
23871,
11,
323,
4184,
311,
1077,
4885,
323,
3070,
420,
16964,
473,
19700,
5104,
3752,
14268,
13,
3005,
374,
459,
6506,
315,
279,
7252,
79539,
10292,
505,
279,
220,
679,
17,
435,
1662,
81,
17042,
17772,
13,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100
]
|
Knowledge & Application
Notes & Examples
Understanding Interfaces
people_outline file_download
Application note: Stability study of battery coating slurries
Stability study of battery coating slurries
The stability of coating slurries used for the production of anodes and cathodes was tested using the dispersion stability analysis system MultiScan MS 20. Analysing the time-dependent and position-dependent transmission and backscattering intensity of different slurries, unstable slurry formulations could be identified within a short period of time which is valuable information in the development and optimisation of battery slurries.
Note as PDFfile_download
Electro mobility is one of the key elements for climate-friendly transportation and has the potential to render our environment cleaner as well as to improve quality of life especially in urban areas. The success of electro mobility strongly depends on the affordability and efficiency of the utilised battery systems. Tremendous efforts are undertaken in labs all around the world aiming at the improvement of different components of the batteries, such as the anodes and cathodes [1].
Lithium batteries are the most widespread used mobile battery systems [2]. Their electrodes are made up of multi-component mixtures that are manufactured from dispersions of micro- or nano-scaled powders in highly viscous polymer solutions. These 'coating slurries' contain a large percentage of solid particles of different composition, size and shape.
In order to facilitate the electrode production and guarantee products of reproducible quality it is crucial that the coating slurries are homogeneous and stable regarding the distribution of their ingredients.
Hence, during the development process of the coating slurries, it is essential to study the dispersion stability. Challengingly, the separation of individual components is very often invisible to the naked eye for weeks, or even months, which makes technical help a must have for a fast and timely product development process. The dispersion stability analysis system MultiScan MS 20 from DataPhysics Instruments (see Fig. 2) with its matching software MSC, is the ideal partner for the thorough stability optimisations required in the development of nano-particle based battery slurries. It is able to detect even slightest changes within dispersions and thus allows looking into and evaluating any occurring separation processes fast and objectively. Moreover, a dispersion stability analysis with the MS 20 can also provide information on possible destabilisation mechanisms which is helpful to eventually eliminate the instabilities.
A study of two different nano-particle based battery coating slurries with the MS 20 and a comparison of the results will be presented throughout this application note.
Fig. 1 left: Battery pack for electric vehicle
right: Battery slurry 1 in sample container after 26 hours
For analysing a dispersion with the MultiScan MS 20, the dispersion is filled into a, standard sample container (max. volume 27 ml) which is then placed into one of the system's ScanTowers . The towers incorporate a scanning unit, composed of a transmission and a backscattering LED along with a detector, which moves up and down the vertical side of the sample container (along the z-axis) in customer-defined time intervals. This allows to detect the transmission and backscattering intensities both position-resolved and time-resolved, which is represented as multiple intensity profiles in intensity–position diagrams in the MSC software (see figure 3, figure 4 and figure 5)
In the experiment described here the stability of two battery slurries with different formulations was studied. For this purpose 20 ml of each battery slurry was poured into a standard sample container and put into a scan tower in which temperature had been set to T = 25 °C. A measurement routine was set up which scheduled scans every 5 min for a total measuring time of 26 hours (slurry 1) or 120 hours (slurry 2), respectively. The scanned z-axis range was between 0 mm (bottom of the sample container) and 50 mm (fill level).
Figure 1 right shows the sample container filled with unstable battery coating slurry 1 at the end of the experiment.
Fig. 2: DataPhysics Instruments MS 20 stability analysis system
Figure 3 shows the plots of the transmission and backscattering intensities against the position for battery slurry 1. The colour-coding indicates the time at which the individual intensity profiles were recorded (red: t = 0 s, to purple: t = 26 h).
The transmission profiles of slurry 1 (see figure 3, top) show a constant mean intensity value of ITr = 0 %, which does not change throughout the whole experiment. This can be explained by the turbidity of the battery coating slurry that prevents the transmission of any incident light.
The backscattering diagram (see figure 3, bottom), on the other hand, shows a clear time-dependent and position-dependent change of the intensity signal.
Fig. 3: Transmission (top) and backscattering (bottom) intensity vs. position diagrams for battery slurry 1, with intensity profiles colour-coded from red to violet from the first to the last scan, respectively
This indicates that battery slurry 1 is not stable over the investigated time period but some destabilisation processes are occurring. This becomes even more obvious in a relative plot where the change of the backscattering intensity compared to the one of the very first scan is shown (see figure 4).
Looking closer at the shape of the backscattering profiles in figure 4 one can see an increase of the backscattering at the bottom of the sample container along with a backscattering decrease at the top of the sample. This indicates a sedimentation process with a sedimentation layer building up at the bottom and the sample clearing up from the top (see figure 1 right). Hence, a possible further analysis step could be the determination of the sedimentation velocity using the Migration Front analysis option of the MSC software.
Fig. 4: Relative backscattering intensity vs. position diagram with profiles illustrating the intensity relative to the intensity measured at t = 0 s
For the second studied sample, battery slurry 2, the situation looks completely different. As can be seen in figure 5, for battery slurry 2 both the transmission and the backscattering intensities did not change during the whole measurement time of 120 hours. This indicates that slurry 2 is very stable and hence from this perspective a great candidate for battery coating.
Fig. 5: Relative transmission (top) and backscattering (bottom) intensity vs. position diagrams for battery slurry 2 (intensities relative to the one measured at t = 0 s)
Using the dispersion stability analysis system MultiScan MS 20 from DataPhysics Instruments and the corresponding MSC software the stability of two different battery slurries was studied and compared. Recording transmission and backscattering intensity profiles for a period of 26 and 120 hours, respectively, one of the slurries (sample 2) could be identified as stable while the other one (sample 1) clearly turned out to be unstable.
Due to the turbidity of the two slurries this was not seen in the transmission data, but became directly obvious looking at the (relative) backscattering profiles which show distinct changes for battery slurry 1, after a couple of hours, while for slurry 2 there are no changes during the whole measuring time of 5 days.
Due to the shape of the evolving backscattering profiles of battery slurry 1 one can furthermore deduce that the predominant destabilisation process is apparently sedimentation as a migrating sedimentation front and a growing sedimentation layer are seen.
The opportunity to observe position-resolved and time-resolved even smallest changes of a sample's backscattering and transmission within a very short period of time enables the producers of battery coating slurries (as well as producers of all kinds of dispersions) to fast and objectively carry out stability analysis. Thus, the dispersion stability analysis system MultiScan MS 20 from DataPhysics Instruments helps to quickly anticipate long term stability and thus guarantees a time and cost efficient product development.
Liu, D. , Chen, L. , Liu, T. , Fan, T. , Tsou, E. and Tiu, C. (2014) An Effective Mixing for Lithium Ion Battery Slurries. Advances in Chemical Engineering and Science, 4, 515-528.
Brodd R.J. (2009) Synopsis of the Lithium-Ion Battery Markets. In: Yoshio M., Brodd R. J., Kozawa A. (Eds.) Lithium-Ion Batteries. Springer, New York, NY
file_download Download people_outline Contact
DataPhysics Instruments GmbH
placeRaiffeisenstraße 34, 70794 Filderstadt, Germany
phone +49 711 77 05 56 0, print+49 711 77 05 56 99
mail_outline [email protected] , www.dataphysics-instruments.com
© DataPhysics Instruments GmbH
Keine deutsche Version verfügbar
Leider können wir Ihnen zur Zeit keine deutsche Version dieses Applikationsberichtes anbieten. Sie können aber gerne die englische Version des Berichtes lesen. | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 7,148 | [
128000,
81434,
612,
7473,
198,
22405,
612,
26379,
198,
71251,
80957,
198,
16455,
74080,
1052,
37039,
198,
5095,
5296,
25,
81238,
4007,
315,
11863,
41394,
84671,
4108,
198,
626,
2968,
4007,
315,
11863,
41394,
84671,
4108,
198,
791,
20334,
315,
41394,
84671,
4108,
1511,
369,
279,
5788,
315,
459,
2601,
323,
31747,
2601,
574,
12793,
1701,
279,
86712,
20334,
6492,
1887,
17896,
27668,
10504,
220,
508,
13,
20017,
1065,
287,
279,
892,
43918,
323,
2361,
43918,
18874,
323,
1203,
2445,
31436,
21261,
315,
2204,
84671,
4108,
11,
45311,
1776,
40956,
98077,
1436,
387,
11054,
2949,
264,
2875,
4261,
315,
892,
902,
374,
15525,
2038,
304,
279,
4500,
323,
7706,
8082,
315,
11863,
84671,
4108,
627,
9290,
439,
11612,
1213,
37039,
198,
30431,
299,
31139,
374,
832,
315,
279
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
81434,
612,
7473,
198,
22405,
612,
26379,
198,
71251,
80957,
198,
16455,
74080,
1052,
37039,
198,
5095,
5296,
25,
81238,
4007,
315,
11863,
41394,
84671,
4108,
198,
626,
2968,
4007,
315,
11863,
41394,
84671,
4108,
198,
791,
20334,
315,
41394,
84671,
4108,
1511,
369,
279,
5788,
315,
459,
2601,
323,
31747,
2601,
574,
12793,
1701,
279,
86712,
20334,
6492,
1887,
17896,
27668,
10504,
220,
508,
13,
20017,
1065,
287,
279,
892,
43918,
323,
2361,
43918,
18874,
323,
1203,
2445,
31436,
21261,
315,
2204,
84671,
4108,
11,
45311,
1776,
40956,
98077,
1436,
387,
11054,
2949,
264,
2875,
4261,
315,
892,
902,
374,
15525,
2038,
304,
279,
4500,
323,
7706,
8082,
315,
11863,
84671,
4108,
627,
9290,
439,
11612,
1213,
37039,
198,
30431,
299,
31139,
374,
832,
315,
279,
-100
]
|
var addon = require('./build/Release/addon');
module.exports = function(workerId, datacenterId){
"use strict";
return new addon.IdWorker(workerId, datacenterId);
};
var datacenterIds = {
'beta': [31, 30, 29, 28, 27, 26],
'production': [19, 18, 17, 16, 15, 14, 13, 12, 11, 10]
},
datacenterId = datacenterIds[process.env.NODE_ENV] || 0;
if(Array.isArray(datacenterId)){
datacenterId = datacenterId[Math.floor(Math.random() * datacenterId.length)];
}
var workerId = Math.floor(Math.random()*31);
var worker;
var i = -1,
start = Date.now(),
bench = 1000000,
stop = -1,
totalTime = -1,
worker = new addon.IdWorker(workerId, datacenterId);
for(i = 1; i <= bench; i++){
worker.getNextId();
}
// var os = require('os'),
// ifaces=os.networkInterfaces(),
// name;
// for (name in ifaces) {
// ifaces[name].forEach(function(details){
// if (details.family == 'IPv4' && details.name === 'eth') {
// console.log(details.address);
// }
// });
// }
stop = Date.now();
totalTime = stop - start;
console.log('generated ' + bench + ' ids in ' + totalTime + ' ms, ' +
'or ' + (bench/ totalTime) + ' ids/second');
var alpha = 'abcdefghijklmnopqrstuvwxyz'.toUpperCase().split(''),
vowels = 'aeiouy'.toUpperCase().split(''); | {
"redpajama_set_name": "RedPajamaGithub"
} | 7,429 | [
128000,
959,
49097,
284,
1397,
8447,
5957,
14,
16464,
20200,
263,
3840,
4450,
7587,
284,
734,
74848,
769,
11,
828,
3133,
769,
1287,
262,
330,
817,
7452,
886,
262,
471,
502,
49097,
6580,
22701,
74848,
769,
11,
828,
3133,
769,
317,
2368,
959,
828,
3133,
12990,
284,
341,
286,
364,
19674,
1232,
510,
2148,
11,
220,
966,
11,
220,
1682,
11,
220,
1591,
11,
220,
1544,
11,
220,
1627,
1282,
286,
364,
23452,
1232,
510,
777,
11,
220,
972,
11,
220,
1114,
11,
220,
845,
11,
220,
868,
11,
220,
975,
11,
220,
1032,
11,
220,
717,
11,
220,
806,
11,
220,
605,
933,
262,
1173,
262,
828,
3133,
769,
284,
828,
3133,
12990,
58,
4734,
9449,
37892,
22802,
60,
1393,
220,
15,
401,
333,
39292,
32909,
2657
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
959,
49097,
284,
1397,
8447,
5957,
14,
16464,
20200,
263,
3840,
4450,
7587,
284,
734,
74848,
769,
11,
828,
3133,
769,
1287,
262,
330,
817,
7452,
886,
262,
471,
502,
49097,
6580,
22701,
74848,
769,
11,
828,
3133,
769,
317,
2368,
959,
828,
3133,
12990,
284,
341,
286,
364,
19674,
1232,
510,
2148,
11,
220,
966,
11,
220,
1682,
11,
220,
1591,
11,
220,
1544,
11,
220,
1627,
1282,
286,
364,
23452,
1232,
510,
777,
11,
220,
972,
11,
220,
1114,
11,
220,
845,
11,
220,
868,
11,
220,
975,
11,
220,
1032,
11,
220,
717,
11,
220,
806,
11,
220,
605,
933,
262,
1173,
262,
828,
3133,
769,
284,
828,
3133,
12990,
58,
4734,
9449,
37892,
22802,
60,
1393,
220,
15,
401,
333,
39292,
32909,
2657,
-100
]
|
Major legislation changes by the NSW Government to remove the semi-protected status of deer will be the topic of discussion at GLENRAC's Deer Information Evening later this month.
Under changes to the Game and Federal Animal Control Act 2002, landholders will experience an ease in game restrictions to assist them in managing the surging populations of feral deer that are damaging properties across NSW.
Minister for Agriculture, Adam Marshall praised the changes, saying that removing game status will give landholders more flexibility to manage deer and will bring its classification into line with other feral animals such as wild dogs, foxes, rabbits and pigs.
A number of leading industry professionals will be on hand during the information evening to assist landholders in understanding what the changes are, and how these can be implemented effectively.
Professional Pest Controller, Ned Makim, will be discussing the simplest ways for farmers to manage deer populations, including what to look for in deer behaviour and quick and effective strategies to reduce deer numbers.
"What I hope to help landholders with is some simple strategies that they can immediately put into place to effectively reduce the impact of deer on drought affected land," said Mr Makim.
NSW DPI Compliance Officer, Andrew McCallister, will be discussing Biosecurity legislation as well as the changes to the licensing required for wild deer management and what this means for farmers.
The evening will also include a presentation by NSW Police Rural Crime Investigator, Sergeant Gavin Berry, who will discuss the rates of rural crime in the region. Representatives from Local Land Services and trail camera resellers, Get Trapped, will be available to speak with attendees on the night.
This event is supported by The NSW Department of Industries and Landcare NSW Program: Managing Established Pest Animals and Weeds and the NSW Police Force.
The Deer Information Evening will be held on
Thursday September 26th, 7:00pm-9:00pm, Glen Innes & District Services Club.
For catering purposes, please RSVP to GLENRAC by
24th September by phone:
02 6732 3443, or email: [email protected], or drop in to the GLENRAC office at 68 Church St, Glen Innes. | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 1,655 | [
128000,
35575,
13543,
4442,
555,
279,
39008,
10423,
311,
4148,
279,
18768,
12,
5883,
2704,
315,
39149,
690,
387,
279,
8712,
315,
10430,
520,
480,
26385,
49,
1741,
596,
64191,
8245,
57202,
3010,
420,
2305,
627,
16648,
4442,
311,
279,
4140,
323,
12411,
21995,
7935,
3298,
220,
1049,
17,
11,
4363,
17075,
690,
3217,
459,
14553,
304,
1847,
17294,
311,
7945,
1124,
304,
18646,
279,
1765,
3252,
22673,
315,
282,
3333,
39149,
430,
527,
34446,
6012,
4028,
39008,
627,
6349,
1601,
369,
37963,
11,
15387,
30508,
37475,
279,
4442,
11,
5605,
430,
18054,
1847,
2704,
690,
3041,
4363,
17075,
810,
25152,
311,
10299,
39149,
323,
690,
4546,
1202,
24790,
1139,
1584,
449,
1023,
282,
3333,
10099,
1778,
439,
8545,
12875,
11,
39935,
288,
11,
70244,
323,
49910,
627
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
35575,
13543,
4442,
555,
279,
39008,
10423,
311,
4148,
279,
18768,
12,
5883,
2704,
315,
39149,
690,
387,
279,
8712,
315,
10430,
520,
480,
26385,
49,
1741,
596,
64191,
8245,
57202,
3010,
420,
2305,
627,
16648,
4442,
311,
279,
4140,
323,
12411,
21995,
7935,
3298,
220,
1049,
17,
11,
4363,
17075,
690,
3217,
459,
14553,
304,
1847,
17294,
311,
7945,
1124,
304,
18646,
279,
1765,
3252,
22673,
315,
282,
3333,
39149,
430,
527,
34446,
6012,
4028,
39008,
627,
6349,
1601,
369,
37963,
11,
15387,
30508,
37475,
279,
4442,
11,
5605,
430,
18054,
1847,
2704,
690,
3041,
4363,
17075,
810,
25152,
311,
10299,
39149,
323,
690,
4546,
1202,
24790,
1139,
1584,
449,
1023,
282,
3333,
10099,
1778,
439,
8545,
12875,
11,
39935,
288,
11,
70244,
323,
49910,
627,
-100
]
|
Extending the life of an airframe has proven challenging and costly. Extending the life of an avionics system, however, is one of the most critical and difficult aspects of extending total aircraft system lifetimes. Critical components go out of production or become obsolete, and many former suppliers of military-grade components have gone out of business. From 1986 to 1996, for example, the percentage of discontinued military/aerospace electronic devices nearly doubled— from 7.5 percent to 13.5 percent. In addition, legacy avionics systems, which were designed to meet requirements of the past, generally lack the full capability to perform new missions, meet new threats, or perform well in the new information-intensive battlefield environments.
As the legacy aircraft fleet ages, avionics systems will become more and more difficult to support and maintain. Whereas the military once provided a large and profitable market for the electronics industry, the military electronics market today constitutes less than 1 percent of the commercial market. As a result, the military must increasingly rely on commercial off-the-shelf (COTS) technologies for its avionics hardware and software. Although COTS items are generally less expensive than comparable items designed especially to meet military specifications, the technology-refresh cycle for COTS is typically 18 months or less, which exacerbates the obsolescence problem for aircraft whose lifetimes are measured in decades. The short refresh cycle is driven mostly by the tremendous advances in computer systems, which comprise an increasing percentage of avionics content.
- Gather information from DoD, other government agencies, and industrial sources on the status of, and issues surrounding, the aging avionics problem. This should include briefings from and discussions with senior industry executives and military acquisition and support personnel. A part of this activity should include a review of Air Force Materiel Command's study on diminishing manufacturing sources to recommend ways to mitigate avionics obsolescence.
- Provide recommendations for new approaches and innovative techniques to improve management of aging avionics, with the goal of helping the Air Force to enhance supportability and replacement of aging and obsolescing avionics and minimize associated life cycle costs. Comment on the division of technology responsibility between DoD and industry.
National Research Council. 2001. Aging Avionics in Military Aircraft. Washington, DC: The National Academies Press. https://doi.org/10.17226/10108.
Click here to obtain permission for Aging Avionics in Military Aircraft. | {
"redpajama_set_name": "RedPajamaC4"
} | 3,078 | [
128000,
6899,
2518,
279,
2324,
315,
459,
3805,
6906,
706,
17033,
17436,
323,
34348,
13,
9634,
2518,
279,
2324,
315,
459,
1860,
290,
1233,
1887,
11,
4869,
11,
374,
832,
315,
279,
1455,
9200,
323,
5107,
13878,
315,
33459,
2860,
14467,
1887,
10345,
7034,
13,
35761,
6956,
733,
704,
315,
5788,
477,
3719,
47166,
11,
323,
1690,
4846,
20972,
315,
6411,
41327,
6956,
617,
8208,
704,
315,
2626,
13,
5659,
220,
3753,
21,
311,
220,
2550,
21,
11,
369,
3187,
11,
279,
11668,
315,
65259,
6411,
14520,
6398,
1330,
14683,
7766,
7154,
35717,
2345,
505,
220,
22,
13,
20,
3346,
311,
220,
1032,
13,
20,
3346,
13,
763,
5369,
11,
20160,
1860,
290,
1233,
6067,
11,
902,
1051,
6319,
311,
3449,
8670,
315,
279,
3347,
11,
8965,
6996
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
6899,
2518,
279,
2324,
315,
459,
3805,
6906,
706,
17033,
17436,
323,
34348,
13,
9634,
2518,
279,
2324,
315,
459,
1860,
290,
1233,
1887,
11,
4869,
11,
374,
832,
315,
279,
1455,
9200,
323,
5107,
13878,
315,
33459,
2860,
14467,
1887,
10345,
7034,
13,
35761,
6956,
733,
704,
315,
5788,
477,
3719,
47166,
11,
323,
1690,
4846,
20972,
315,
6411,
41327,
6956,
617,
8208,
704,
315,
2626,
13,
5659,
220,
3753,
21,
311,
220,
2550,
21,
11,
369,
3187,
11,
279,
11668,
315,
65259,
6411,
14520,
6398,
1330,
14683,
7766,
7154,
35717,
2345,
505,
220,
22,
13,
20,
3346,
311,
220,
1032,
13,
20,
3346,
13,
763,
5369,
11,
20160,
1860,
290,
1233,
6067,
11,
902,
1051,
6319,
311,
3449,
8670,
315,
279,
3347,
11,
8965,
6996,
-100
]
|
For Easter brunch this year, I decided to brighten up the colors of our table by featuring our favorite Fiestaware, arranged on a flowery tablecloth. There's something fun about bringing mix-matched items together without a lot of fuss. With fresh flowers, hand-painted Easter eggs and Lindt chocolate bunnies in little take-home favor-baskets for the guests, the table is set.
This brings us to the amazing story of Fiestaware, the classic American dishes that seem to brighten up our coastal entertaining for almost every occasion.
When we built our Galveston weekend beach cottage 20 years ago, our dear late mother, Lorene, loved selecting each item of our Fiestaware collection, piece by piece.
After recent research, I discovered Fiestaware is the most popular American dinnerware ever and the only remaining pottery produced in the United States. These dishes were introduced to the American public in 1936 by Englishman Frederick Hurten Rhead, and were produced by the Homer Laughlin China Company of Newell, West Virginia. This pottery lost favor in 1973, but was reintroduced in 1986 by this same company and is going stronger than ever. The new Fiestaware is free of lead, oven-proof and microwave-safe compared to the vintage pieces.
Martha Stewart, a famous collector of Fiestaware, loved her grandmother's colorful collection, she has said. As Stewart tells the story, she always chose the turquoise plate when dining in her grandmother's kitchen. These days, Fiestaware can be purchased from a host of retailers at very reasonable price points. The new Fiestaware is available at "Yesterday's Best," 114 20th St. After a trip to this wonderful little shop, I couldn't pass up purchasing the happy color turquoise oven-proof baking dishes for our collection.
Serve these coastal-inspired crab bites with sips of your favorite seaside margarita to get the party started. Adapted from a recipe by Betty Crocker Kitchens.
Preheat oven to 375 F. Spray 24 mini muffin cups generously with cooking spray.
In small bowl, stir baking mix and butter until blended. Add boiling water and stir vigorously until soft dough forms. Press rounded teaspoonful of dough in bottom and up side of each muffin cup to make a thin crust. Divide crabmeat among muffin cups.
In another bowl, beat half and half and egg with fork until blended. Stir in onion tops, salt and cayenne pepper. Spoon 1 teaspoon egg mixture into each muffin cup. Sprinkle Parmesan cheese over tops. Bake 15-20 minutes or until edges are golden brown and centers are set. Let cool 10 minutes.
Slide a knife around each quiche and carefully remove from pan. These hardy appetizers can be made a day ahead stored lightly covered on a cookie sheet and refrigerated. Reheat in 375 F oven about 5 minutes or until hot.
Fruity glazed ham steak is a great choice for those who want to avoid cooking the whole big ham.
Preheat oven to 350 F. Drain pineapple, reserving juice. Pat ham dry with paper towels. In large skillet on stove top, lightly brown ham steak, each side, in 1 tablespoon butter.
In another pan, prepare glaze with remaining 1 tablespoon butter, brown sugar, cinnamon, nutmeg, Dijon mustard, pineapple juice and white rum. Stir together and cook slowly until thick.
Slice oranges and arrange slices on bottom of 13-inch-by-9-inch baking pan. Place ham steak over the oranges. Spread glaze over the ham. Arrange pineapple and cherries on top of the ham. Bake uncovered for 30 minutes or more until heated through.
Preheat oven to 350 F. Spray an 8- or 9-inch square baking dish with cooking spray.
Combine water and salt in large saucepan and bring to a boil. Gradually stir in grits. Reduce heat to low, cover and cook 5 minutes, stirring occasionally.
Remove from heat. Stir in butter, 2 cups of the cheese and garlic powder. Stir until cheese is melted. Add Worcestershire, eggs and chopped jalapeños, mixing slowly and gradually so that the eggs incorporate into the hot grits. Pour into prepared baking dish. Sprinkle with remaining ½ cup cheese and dust lightly with paprika.
Bake 45 minutes or until set. Let stand at least 10 minutes before serving.
Place cream cheese and seasonings in blender or food processor and mix until creamy. Marinate asparagus in dressing an hour or more and drain.
Melt butter. Trim crusts from bread and brush each side with melted butter. Spread one side of bread with cream cheese mixture. Place 2 asparagus spears diagonally on top of cream cheese. Bring corners together, diagonally and cross edges, securing with a toothpick.
Dust lightly with paprika. Place on shallow baking sheet. Bake 8 or 10 minutes until lightly browned and toasty.
This yummy muffin is an old-fashioned favorite from famous cookbook author Helen Corbitt. This recipe makes 24 mini muffins and six regular for guests to choose their preferences.
Preheat oven to 375 F. With electric mixer, cream butter and sugar. Add eggs, beat well and mix in flour.
Stir baking soda into buttermilk. Add this to batter along with zest from the oranges. (Save juice for the glaze.) Beat just until mixed.
For glaze, mix together brown sugar and orange juice (about ½ cup of juice) Using a small spoon, drizzle glaze over warm muffins. Let cool a few minutes. Remove muffins carefully from pan while still warm.
For the latest in holiday décor, coastal fans are loving hurricane lanterns in all colors, shapes and sizes. Martha Justice's simple turquoise lantern was transformed into an Easter showpiece with fresh flowers of the season, created by Christina Diaz, floral manager at Randalls on 61st Street in Galveston.
Martha Justice is the author of "Easy Breezy Coastal Cooking," inspired by Galveston's coastal lifestyle. The cookbook is available for order online at www.grandcookbook.com or through Justice via email at [email protected]. | {
"redpajama_set_name": "RedPajamaC4"
} | 8,390 | [
128000,
2520,
33500,
70917,
420,
1060,
11,
358,
6773,
311,
10107,
268,
709,
279,
8146,
315,
1057,
2007,
555,
16850,
1057,
7075,
435,
13744,
20111,
11,
28902,
389,
264,
6530,
727,
2007,
89054,
13,
2684,
596,
2555,
2523,
922,
12967,
6651,
1474,
35344,
3673,
3871,
2085,
264,
2763,
315,
64864,
13,
3161,
7878,
19837,
11,
1450,
2320,
31329,
33500,
19335,
323,
28318,
83,
18414,
293,
15278,
552,
304,
2697,
1935,
25389,
4799,
1481,
49240,
369,
279,
15051,
11,
279,
2007,
374,
743,
627,
2028,
12716,
603,
311,
279,
8056,
3446,
315,
435,
13744,
20111,
11,
279,
11670,
3778,
26863,
430,
2873,
311,
10107,
268,
709,
1057,
35335,
30311,
369,
4661,
1475,
13402,
627,
4599,
584,
5918,
1057,
10845,
7164,
263,
9178,
11573,
46722,
220,
508,
1667,
4227,
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
]
| [
2520,
33500,
70917,
420,
1060,
11,
358,
6773,
311,
10107,
268,
709,
279,
8146,
315,
1057,
2007,
555,
16850,
1057,
7075,
435,
13744,
20111,
11,
28902,
389,
264,
6530,
727,
2007,
89054,
13,
2684,
596,
2555,
2523,
922,
12967,
6651,
1474,
35344,
3673,
3871,
2085,
264,
2763,
315,
64864,
13,
3161,
7878,
19837,
11,
1450,
2320,
31329,
33500,
19335,
323,
28318,
83,
18414,
293,
15278,
552,
304,
2697,
1935,
25389,
4799,
1481,
49240,
369,
279,
15051,
11,
279,
2007,
374,
743,
627,
2028,
12716,
603,
311,
279,
8056,
3446,
315,
435,
13744,
20111,
11,
279,
11670,
3778,
26863,
430,
2873,
311,
10107,
268,
709,
1057,
35335,
30311,
369,
4661,
1475,
13402,
627,
4599,
584,
5918,
1057,
10845,
7164,
263,
9178,
11573,
46722,
220,
508,
1667,
4227,
11,
-100
]
|
'The enthusiasm is there': College students push through obstacles to cast their votes
Boston Globe, Laura Krantz:
"What we are seeing is challenges because of COVID, and then innovations to overcome those challenges," Thomas said.
Many voting advocates hope young people will make the connection between the historic levels of activism that took place over the summer, following the deaths of George Floyd, Breonna Taylor, and other Black people at the hands of police, and the ballot box.
"What we are trying to do... is help [college students] understand that full trajectory. That you can be out protesting, and now you can vote and be heard in that way, and then after the election you can stay engaged," said Michael Burns, national director of the Campus Vote Project.
At Harvard University, a new program aimed at increasing civic engagement is on hyperdrive in the final days before the election. It began last year with an initiative that gave first-year students an opportunity to vote when they picked up their ID card and dorm key on move-in day.
This year, the program has hired 12 undergraduate fellows to contact every member of the student body individually and make sure they are registered to vote and help with any issues. Out of the approximately 5,200 undergraduates, somewhere between 500 and 750 experienced problems, said Kevin Ballen, a junior who co-chairs the Harvard Votes Challenge. | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 8,048 | [
128000,
17773,
383,
36232,
374,
1070,
1232,
9304,
4236,
4585,
1555,
32116,
311,
6445,
872,
12973,
198,
65432,
41910,
11,
30928,
16852,
90597,
512,
31437,
584,
527,
9298,
374,
11774,
1606,
315,
20562,
11,
323,
1243,
46045,
311,
23075,
1884,
11774,
1359,
11355,
1071,
627,
8607,
16043,
28424,
3987,
3995,
1274,
690,
1304,
279,
3717,
1990,
279,
18526,
5990,
315,
55280,
430,
3952,
2035,
927,
279,
7474,
11,
2768,
279,
16779,
315,
10058,
46899,
11,
11681,
13767,
16844,
11,
323,
1023,
5348,
1274,
520,
279,
6206,
315,
4379,
11,
323,
279,
26938,
3830,
627,
31437,
584,
527,
4560,
311,
656,
1131,
374,
1520,
510,
68534,
4236,
60,
3619,
430,
2539,
35782,
13,
3011,
499,
649,
387,
704,
59310,
11,
323,
1457,
499,
649,
7055,
323,
387,
6755,
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
]
| [
17773,
383,
36232,
374,
1070,
1232,
9304,
4236,
4585,
1555,
32116,
311,
6445,
872,
12973,
198,
65432,
41910,
11,
30928,
16852,
90597,
512,
31437,
584,
527,
9298,
374,
11774,
1606,
315,
20562,
11,
323,
1243,
46045,
311,
23075,
1884,
11774,
1359,
11355,
1071,
627,
8607,
16043,
28424,
3987,
3995,
1274,
690,
1304,
279,
3717,
1990,
279,
18526,
5990,
315,
55280,
430,
3952,
2035,
927,
279,
7474,
11,
2768,
279,
16779,
315,
10058,
46899,
11,
11681,
13767,
16844,
11,
323,
1023,
5348,
1274,
520,
279,
6206,
315,
4379,
11,
323,
279,
26938,
3830,
627,
31437,
584,
527,
4560,
311,
656,
1131,
374,
1520,
510,
68534,
4236,
60,
3619,
430,
2539,
35782,
13,
3011,
499,
649,
387,
704,
59310,
11,
323,
1457,
499,
649,
7055,
323,
387,
6755,
304,
-100
]
|
Arianne Binette September 9, 2019 Festivals, Reviews, TIFF19
Seberg [TIFF19 Review]
Jean Seberg became an icon after starring in the film that would start the French New Wave, Jean-Luc Goddard's Breathless. She became a staple in French cinema and her star burned bright after. While never really being able to escape her feature debut as Joan of Arc, a role that left permanent scars not only on her body but also on her mind, Seberg disappeared from Hollywood and would go on to die from what appeared to be suicide after disappearing for ten days just a few days after the anniversary of her daughter's death. But the real mystery came between those years before she left Hollywood where a few years she found herself being a political activist in the United States and found herself at the centre of an FBI investigation that would end up kind of ruining her life. This is period of her life is explored in the biopic Seberg starring Kristen Stewart in the titular role.
Kristen Stewart as being able to create herself a portfolio of work that is strong. While some might still scruff at her name, just like they do at Robert Pattinson's, she has been able to shed her Bella Swan image from Twilight and nothing is more evident than with her work in this film. While her performance starts really small and contained, she plays the emotional scene as Jean starts to break down perfectly. While not on par with my favourite role of hers, Clouds of Sils Maria, Stewart continues to prove that she is a fine actress. The scene where Jean is having a mental breakdown and tries to find a bug that isn't there is heartbreaking and Stewart sells Seberg's desperation in a subtle but powerful way. Without her, the film would fail because she is by far the strongest component of the film.
The other strong performance of the film belongs to Jack O'Connell. He does everything he can with his role but he is also my main problem with the film. This film might be about Jean Seberg but because he was added, it makes it feel like it becomes his film too. While doing research, I quickly realized that Jack, the character that O'Connell plays, is probably an invention and that makes it worse. Because we could have had the story without him. Having the FBI investigation is interesting but we didn't need him to become the reason why Jean gets better by the end. She was strong and her film should have been about her and no about someone else too. A lot of time is spent with Jack and because of that Jean's story starts to feel like a second thought at times.
Shot by Rachel Morrison, it's no surprise that the film looks great. Morrison has been making a name for herself in the last few years and she has an eye that just pulls you in. Her camera sees the little things that you wouldn't and she is able to create frames that look like art. While not flashy like some of her other work, Black Panther is the best example, Morrison is still able to create frames that capture your attention. Her quiet eye fits with the film and it becomes more and more "flashy" as Jean's justified paranoia starts to take control.
Seberg could have been great, it has a great lead actress and an interesting story but the fact that they decided to add an element that was unnecessary made the film fall. The story of Jean Seberg is interesting and should have been enough to sustain itself. It's nothing against O'Connell who does a great job but he takes away from the main story and it kind of becomes his film which it shouldn't be. He is the one who gets the big emotional redemption, he is the one who gets to save the day, he is the one who gets to have the big moments while Jean just seems to be a character in her own story. It's a shame because she deserves more and yet she doesn't get it.
Posted in Festivals, Reviews, TIFF19 and tagged Jean Seberg, kristen stewart, Seberg, TIFF, TIFF19, Toronto, Toronto International Film Festival, Toronto International Film Festival 2019. Bookmark the permalink.
Portrait of a Lady on Fire [Trailer]
Color Out of Space [TIFF19 Review] | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 6,562 | [
128000,
32,
7414,
818,
30444,
6672,
6250,
220,
24,
11,
220,
679,
24,
39750,
18734,
11,
19832,
11,
75221,
777,
198,
1542,
7881,
510,
27712,
1785,
777,
10506,
933,
69009,
1369,
7881,
6244,
459,
4706,
1306,
40500,
304,
279,
4632,
430,
1053,
1212,
279,
8753,
1561,
32418,
11,
20263,
8288,
1791,
4359,
67,
569,
596,
58292,
1752,
13,
3005,
6244,
264,
50056,
304,
8753,
34292,
323,
1077,
6917,
27724,
10107,
1306,
13,
6104,
2646,
2216,
1694,
3025,
311,
12731,
1077,
4668,
17755,
439,
51206,
315,
20267,
11,
264,
3560,
430,
2163,
15690,
61699,
539,
1193,
389,
1077,
2547,
719,
1101,
389,
1077,
4059,
11,
1369,
7881,
29496,
505,
17681,
323,
1053,
733,
389,
311,
2815,
505,
1148,
9922,
311,
387,
18639,
1306,
67503,
369,
5899,
2919,
1120,
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
]
| [
32,
7414,
818,
30444,
6672,
6250,
220,
24,
11,
220,
679,
24,
39750,
18734,
11,
19832,
11,
75221,
777,
198,
1542,
7881,
510,
27712,
1785,
777,
10506,
933,
69009,
1369,
7881,
6244,
459,
4706,
1306,
40500,
304,
279,
4632,
430,
1053,
1212,
279,
8753,
1561,
32418,
11,
20263,
8288,
1791,
4359,
67,
569,
596,
58292,
1752,
13,
3005,
6244,
264,
50056,
304,
8753,
34292,
323,
1077,
6917,
27724,
10107,
1306,
13,
6104,
2646,
2216,
1694,
3025,
311,
12731,
1077,
4668,
17755,
439,
51206,
315,
20267,
11,
264,
3560,
430,
2163,
15690,
61699,
539,
1193,
389,
1077,
2547,
719,
1101,
389,
1077,
4059,
11,
1369,
7881,
29496,
505,
17681,
323,
1053,
733,
389,
311,
2815,
505,
1148,
9922,
311,
387,
18639,
1306,
67503,
369,
5899,
2919,
1120,
264,
-100
]
|
Cortical development is a complex process that involves many events including proliferation, cell cycle exit and differentiation that need to be appropriately synchronized. Neural stem cells (NSCs) isolated from embryonic cortex are characterized by their ability of self-renewal under continued maintenance of multipotency. Cell cycle progression and arrest during development is regulated by numerous factors, including cyclins, cyclin dependent kinases and their inhibitors. In this study, we exogenously expressed the homeodomain transcription factor Pitx2, usually expressed in postmitotic progenitors and neurons of the embryonic cortex, in NSCs with low expression of endogenous Pitx2. We found that Pitx2 expression induced a rapid decrease in proliferation associated with an accumulation of NSCs in G1 phase. A search for potential cell cycle inhibitors responsible for such cell cycle exit of NSCs revealed that Pitx2 expression caused a rapid and dramatic (≈20-fold) increase in expression of the cell cycle inhibitor p21 (WAF1/Cip1). In addition, Pitx2 bound directly to the p21 promoter as assessed by chromatin immunoprecipitation (ChIP) in NSCs. Surprisingly, Pitx2 expression was not associated with an increase in differentiation markers, but instead the expression of nestin, associated with undifferentiated NSCs, was maintained. Our results suggest that Pitx2 promotes p21 expression and induces cell cycle exit in neural progenitors.
(OH) Department of Neuroscience, Karolinska Institutet, Retzius vag 8, S-171177 Stockholm, Sweden. | {
"redpajama_set_name": "RedPajamaC4"
} | 3,485 | [
128000,
34,
371,
950,
4500,
374,
264,
6485,
1920,
430,
18065,
1690,
4455,
2737,
53840,
11,
2849,
11008,
4974,
323,
60038,
430,
1205,
311,
387,
36001,
22183,
13,
61577,
19646,
7917,
320,
2507,
34645,
8,
25181,
505,
44481,
14338,
49370,
527,
32971,
555,
872,
5845,
315,
659,
5621,
943,
278,
1234,
8738,
13709,
315,
12842,
354,
2301,
13,
14299,
11008,
33824,
323,
8163,
2391,
4500,
374,
35319,
555,
12387,
9547,
11,
2737,
32343,
1354,
11,
32343,
258,
18222,
24890,
2315,
323,
872,
68642,
13,
763,
420,
4007,
11,
584,
506,
11968,
7162,
13605,
279,
2162,
347,
3199,
46940,
8331,
40079,
87,
17,
11,
6118,
13605,
304,
1772,
1800,
14546,
84360,
12170,
323,
34313,
315,
279,
44481,
14338,
49370,
11,
304,
3119,
34645,
449,
3428,
7645,
315,
842,
53595
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
34,
371,
950,
4500,
374,
264,
6485,
1920,
430,
18065,
1690,
4455,
2737,
53840,
11,
2849,
11008,
4974,
323,
60038,
430,
1205,
311,
387,
36001,
22183,
13,
61577,
19646,
7917,
320,
2507,
34645,
8,
25181,
505,
44481,
14338,
49370,
527,
32971,
555,
872,
5845,
315,
659,
5621,
943,
278,
1234,
8738,
13709,
315,
12842,
354,
2301,
13,
14299,
11008,
33824,
323,
8163,
2391,
4500,
374,
35319,
555,
12387,
9547,
11,
2737,
32343,
1354,
11,
32343,
258,
18222,
24890,
2315,
323,
872,
68642,
13,
763,
420,
4007,
11,
584,
506,
11968,
7162,
13605,
279,
2162,
347,
3199,
46940,
8331,
40079,
87,
17,
11,
6118,
13605,
304,
1772,
1800,
14546,
84360,
12170,
323,
34313,
315,
279,
44481,
14338,
49370,
11,
304,
3119,
34645,
449,
3428,
7645,
315,
842,
53595,
-100
]
|
The semi-serious quest began in 1971 on a venture to Alaska. I was equipped with a Kodak instamatic camera and three rolls of film. It was a great trip and I took a lot of pictures, almost two rolls! Surely this qualified me to join the ranks as a "wildlife photographer". This naive attitude soon vanished when the film was processed. The animals were mere "dots" and you couldn't tell a moose from a bear or a caribou from a wolf. Disappointed for sure....but the good news.....I had not quit my day job.
After the trip to Alaska, with the urge for outdoor photography still strong, I decided to invest in "real photography" equipment and bought an SLR 35 mm camera system, including a 400 mm lens, a wide-angle lens, tripod and other equipment needed...spent almost $400!! Competition was keen so more upgrading was needed. I purchased the best Canon had to offer in cameras and lenses.
In 1984 I was persuaded by Sharon to dig out my slides and submit them to magazines for possible publication. That year I had three cover shots of deer and later more covers with rattlesnakes, antelope, mule deer and others. Then came the request for calendars, posters, postcards, and Christmas cards.
This success only fueled my passion for wildlife photography. I entered photo contests such as the Valley Land Fund Photo Contest and the Coastal Bend Wildlife Photo Contest, both in my home state of Texas. I was fortunate to be included in the coveted "Top 5" each time.
In 2006 another significant change in the photography world presented itself....digital imaging. For an "older than dirt" fellow who had finally solved all of the film camera problems, this was quite an unwelcome development. I considered moving on to another one of our passions -- Indian artifact collecting. However, a few friends convinced me to try it, so I jumped in...feet first. In 2006 it was a major investment....computer, new camera bodies, new lenses, and new everything else needed to compete in this fascinating world of digital photography.
My wife, Sharon, became interested in wildlife photography which made it much more enjoyable for me. Up until 2006 she would accompany me and claims she was my "pack mule" helping to carry all of my gear. This came to a halt in 2007 when she started buying camera equipment and became quite interested in photographing wildlife. She is definitely hooked now! It's hard to get a home-cooked meal out of her anymore as she is outside most of the time photographing anything that moves! We entered the 2007 Coastal Bend Wildlife Photo Contest as partners and with the patient help and support of several friends we managed to be competitive. We then entered the 2009 contest and finished in 1st place.
The many, many hours spent in hot blinds in the summer and cold blinds in the winter trying to get that perfect shot is sometimes very grueling but if people can get just a few moments of pleasure from any of our images, it is definitely worth the time and effort put into it. | {
"redpajama_set_name": "RedPajamaC4"
} | 3,023 | [
128000,
791,
18768,
26469,
1245,
2271,
6137,
304,
220,
4468,
16,
389,
264,
26255,
311,
28366,
13,
358,
574,
19167,
449,
264,
68402,
587,
1798,
309,
780,
6382,
323,
2380,
28473,
315,
4632,
13,
1102,
574,
264,
2294,
8577,
323,
358,
3952,
264,
2763,
315,
9364,
11,
4661,
1403,
28473,
0,
65288,
420,
15337,
757,
311,
5249,
279,
21467,
439,
264,
330,
68974,
14789,
29867,
3343,
1115,
50765,
19451,
5246,
59581,
994,
279,
4632,
574,
15590,
13,
578,
10099,
1051,
17983,
330,
68916,
1,
323,
499,
7846,
956,
3371,
264,
4647,
974,
505,
264,
11984,
477,
264,
1841,
581,
283,
505,
264,
37642,
13,
4185,
71216,
369,
2771,
1975,
8248,
279,
1695,
3754,
18575,
40,
1047,
539,
17257,
856,
1938,
2683,
627,
6153,
279,
8577,
311,
28366,
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,
18768,
26469,
1245,
2271,
6137,
304,
220,
4468,
16,
389,
264,
26255,
311,
28366,
13,
358,
574,
19167,
449,
264,
68402,
587,
1798,
309,
780,
6382,
323,
2380,
28473,
315,
4632,
13,
1102,
574,
264,
2294,
8577,
323,
358,
3952,
264,
2763,
315,
9364,
11,
4661,
1403,
28473,
0,
65288,
420,
15337,
757,
311,
5249,
279,
21467,
439,
264,
330,
68974,
14789,
29867,
3343,
1115,
50765,
19451,
5246,
59581,
994,
279,
4632,
574,
15590,
13,
578,
10099,
1051,
17983,
330,
68916,
1,
323,
499,
7846,
956,
3371,
264,
4647,
974,
505,
264,
11984,
477,
264,
1841,
581,
283,
505,
264,
37642,
13,
4185,
71216,
369,
2771,
1975,
8248,
279,
1695,
3754,
18575,
40,
1047,
539,
17257,
856,
1938,
2683,
627,
6153,
279,
8577,
311,
28366,
11,
-100
]
|
Rochdale Borough Libraries are hosting a number of events as part of the annual Get Online Week in a bid to encourage internet confidence amongst residents.
There's an exciting events programme for children at this year's Rochdale Literature & Ideas Festival with festival organisers promising shows that will keep little ones engaged and entertained for hours!
You don't have to come out to come in!
The Lesbian and Gay Foundation will be holding its fifth annual event in Rochdale borough to mark National Coming Out Day on Saturday 11 October.
Rochdale Borough Libraries is hosting a special workshop to celebrate National Poetry Day.
With just five weeks to go, the 12 page programme for Rochdale Literature & Ideas Festival has been unveiled.
LINE UP: Acting Chief Executive Linda Fisher (front) with two festival performers.
The Word Weavers group will be warmly welcoming the esteemed poet Chris Coey to host a writing workshop, in celebration of National Poetry Day.
A billboard-sized piece of street art has been unveiled in Rochdale Central Library today as part of a nationwide project to create a unique and online response to the First World War.
Did you know you can save £78 a month by having just two takeaways less a week? Save £60 a month by smoking just five cigarettes less a day? Lose £300 in 60 seconds by playing roulette machines?
Rochdale borough residents are invited to quiz local experts about proposed changes to health and care services in Greater Manchester at a BBC Question Time-style event. | {
"redpajama_set_name": "RedPajamaC4"
} | 8,336 | [
128000,
49,
5059,
35283,
85303,
55612,
527,
20256,
264,
1396,
315,
4455,
439,
961,
315,
279,
9974,
2175,
8267,
10563,
304,
264,
14435,
311,
15253,
7757,
12410,
24059,
11062,
627,
3947,
596,
459,
13548,
4455,
18629,
369,
2911,
520,
420,
1060,
596,
36969,
35283,
47470,
612,
23748,
17772,
449,
19309,
91560,
26455,
5039,
430,
690,
2567,
2697,
6305,
17045,
323,
65550,
369,
4207,
4999,
2675,
1541,
956,
617,
311,
2586,
704,
311,
2586,
304,
4999,
791,
53643,
323,
21334,
5114,
690,
387,
10168,
1202,
18172,
9974,
1567,
304,
36969,
35283,
66841,
311,
1906,
5165,
40991,
4470,
6187,
389,
7884,
220,
806,
6664,
627,
49,
5059,
35283,
85303,
55612,
374,
20256,
264,
3361,
26129,
311,
18890,
5165,
68787,
6187,
627,
2409,
1120,
4330,
5672,
311,
733,
11,
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
]
| [
49,
5059,
35283,
85303,
55612,
527,
20256,
264,
1396,
315,
4455,
439,
961,
315,
279,
9974,
2175,
8267,
10563,
304,
264,
14435,
311,
15253,
7757,
12410,
24059,
11062,
627,
3947,
596,
459,
13548,
4455,
18629,
369,
2911,
520,
420,
1060,
596,
36969,
35283,
47470,
612,
23748,
17772,
449,
19309,
91560,
26455,
5039,
430,
690,
2567,
2697,
6305,
17045,
323,
65550,
369,
4207,
4999,
2675,
1541,
956,
617,
311,
2586,
704,
311,
2586,
304,
4999,
791,
53643,
323,
21334,
5114,
690,
387,
10168,
1202,
18172,
9974,
1567,
304,
36969,
35283,
66841,
311,
1906,
5165,
40991,
4470,
6187,
389,
7884,
220,
806,
6664,
627,
49,
5059,
35283,
85303,
55612,
374,
20256,
264,
3361,
26129,
311,
18890,
5165,
68787,
6187,
627,
2409,
1120,
4330,
5672,
311,
733,
11,
279,
220,
-100
]
|
US Attorney For Oregon Calls For Investigation Into Portland Protester Arrests
By Ryan Haas
Published July 17, 2020 at 5:03 PM PDT
Jonathan Levinson
OPB
A federal officer peeks from behind a door to the Mark O. Hatfield federal courthouse in Portland, Ore., on July 12, 2020. Federal law enforcement officers have increased their presence and escalated tactics against people protesting police brutality and systemic racism.
U.S. Attorney Billy Williams said Friday he wants an investigation into actions of federal officers who have pulled Portland protesters off the street and into unmarked vehicles.
UPDATE (4:21 p.m. PT) —
Federal officers with U.S. Customs and Border Protection have come under significant scrutiny after OPB first reported Thursday that they were involved in constitutionally questionable arrests in Portland.
The officers, along with employees of the U.S. Marshals Service and the Federal Protective Service, have had an increased presence in the city as protests over police brutality have continued for more than six weeks.
"Based on news accounts circulating that allege federal law enforcement detained two protesters without probable cause, I have requested the Department of Homeland Security Office of the Inspector General to open a separate investigation directed specifically at the actions of DHS personnel," Williams said in his statement.
At least one officer with the Marshals Service is under investigation for severely injuring a Portland protester July 11 by shooting him in the face with an impact munition round.
In his statement, Williams said federal officers have spent the past 50 nights in Portland defending the Mark O. Hatfield federal courthouse and other federal property. That building has seen significant graffiti, and been a frequent gathering place for protesters opposing police violence.
"[Federal officers] have rebuffed efforts to enter the building by force and have been met with an onslaught of commercial fireworks, laser strikes, glass, mortars, paint and anything else near at hand," Williams said. "They have endeavored to find the individuals within the crowd who are committing these violent acts and arrest them in a manner that is safe for both the officers and nearby non-violent protesters."
However, Williams said in "limited instances" federal officers may have engaged in questionable conduct, such as the unmarked vehicle arrests, and that he believes investigations by the Department of Justice Office of the Inspector General are appropriate.
Lisa Hay, Oregon's federal public defender, said any arrest without probable cause violates the law.
"It's a fundamental constitutional value that people in this country are free to walk the streets without fear of secret arrest," Hay said. "That circumstance raises concerns that the arrests occurred without probable cause."
In a statement Friday, CBP acknowledged it had carried out at least one of the arrests in question. The agency defended its actions, saying it was arresting someone suspected of criminal activity and needed to remove them from the area because of threat from a "violent mob." Video of that arrest posted online does not show anyone trying to interfere with officers, but many people can be heard asking the officers for their names and who they work for.
Two protesters who spoke to OPB about their arrest Thursday said they were alone when "four or five agents" stopped an unmarked minivan in front of them and grabbed one of the men. The federal officers did not have clearly seen insignia on their uniforms, and the protesters said the officers did not identify themselves when making the arrest.
In its statement, CBP defended not having officer names on their uniforms, saying identification would pose a threat to the officers.
"The names of the agents were not displayed due to recent doxing incidents against law enforcement personnel who serve and protect our country," CBP wrote.
Civil rights advocates and Oregon lawmakers — both federal and local — have strongly condemned the actions of federal officers.
Oregon Democratic Sen. Jeff Merkley took to Twitter to criticize President Donald Trump and the Department of Homeland Security's focus on protests in Portland.
"Get your DHS lackey and uninvited paramilitary actions out of my state. Our communities are not a stage for your twisted reelection campaign," Merkley said.
Rep. Earl Blumenauer, D-Oregon, also said the Oregon congressional delegation has asked for an immediate inspector investigation into the "violent actions of unrequested federal law enforcement officials here in Portland."
Williams' call for an investigation stands in contrast with comments Thursday by U.S. Customs and Border Protection Acting Commissioner Mark Morgan. Speaking to Fox News, Morgan called Portland protesters criminals and said DHS and the U.S. Department of Justice would be ramping up federal response in Oregon.
"I don't want to get ahead of the president and his announcement," Morgan said, "but the Department of Justice is going to be involved in this, DHS is going to be involved in this, and we're really going to take a stand across the board."
Both Portland Mayor Ted Wheeler and Oregon Gov. Kate Brown have said they want to see a withdrawal of federal officers at protests.
Copyright 2020 Oregon Public Broadcasting. To see more, visit .
Law and Justice Top StoriesOregon NewsAppfeed
Ryan Haas
Ryan Haas has been with Oregon Public Broadcasting since 2013. His work has won numerous awards, including two National Magazine Award nominations for the podcast "Bundyville." Prior to working at OPB, Haas worked at newspapers in Illinois, Florida, Oregon and the Caribbean.
See stories by Ryan Haas | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 6,226 | [
128000,
2078,
18919,
1789,
19313,
41227,
1789,
47997,
32745,
23947,
37759,
261,
72417,
82,
198,
1383,
13960,
14433,
300,
198,
29986,
5887,
220,
1114,
11,
220,
2366,
15,
520,
220,
20,
25,
2839,
5975,
46557,
198,
66091,
67977,
942,
198,
3143,
33,
198,
32,
6918,
9640,
1069,
21854,
505,
4920,
264,
6134,
311,
279,
4488,
507,
13,
22050,
2630,
6918,
82132,
304,
23947,
11,
34543,
2637,
389,
5887,
220,
717,
11,
220,
2366,
15,
13,
12411,
2383,
13627,
9808,
617,
7319,
872,
9546,
323,
81700,
26411,
2403,
1274,
59310,
4379,
63132,
323,
46417,
27052,
627,
52,
815,
13,
18919,
33919,
13926,
1071,
6740,
568,
6944,
459,
8990,
1139,
6299,
315,
6918,
9808,
889,
617,
13541,
23947,
26827,
1022,
279,
8761,
323,
1139,
653,
47462,
11731,
627,
9422,
320
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
2078,
18919,
1789,
19313,
41227,
1789,
47997,
32745,
23947,
37759,
261,
72417,
82,
198,
1383,
13960,
14433,
300,
198,
29986,
5887,
220,
1114,
11,
220,
2366,
15,
520,
220,
20,
25,
2839,
5975,
46557,
198,
66091,
67977,
942,
198,
3143,
33,
198,
32,
6918,
9640,
1069,
21854,
505,
4920,
264,
6134,
311,
279,
4488,
507,
13,
22050,
2630,
6918,
82132,
304,
23947,
11,
34543,
2637,
389,
5887,
220,
717,
11,
220,
2366,
15,
13,
12411,
2383,
13627,
9808,
617,
7319,
872,
9546,
323,
81700,
26411,
2403,
1274,
59310,
4379,
63132,
323,
46417,
27052,
627,
52,
815,
13,
18919,
33919,
13926,
1071,
6740,
568,
6944,
459,
8990,
1139,
6299,
315,
6918,
9808,
889,
617,
13541,
23947,
26827,
1022,
279,
8761,
323,
1139,
653,
47462,
11731,
627,
9422,
320,
-100
]
|
Former Secretary of State Hillary Clinton (photo credit: Lorie Shaull via Flickr, CC BY-SA 2.0)
Democrats' New Abortion Mantra: Unrestricted, Widespread, and Taxpayer-Funded
by Danny Cannon
For years, the Clintons claimed that they wanted abortion to be "safe, legal, and rare," a relatively moderate position they stuck to so long as they considered it politically convenient. In 2008, Hillary Clinton agreed wholeheartedly when asked if America should try to reduce the number of abortions to zero. For "at least fifteen years," she said, that had been her goal in "talking about abortion being safe, legal and rare — and by rare I mean rare."
Yet as soon as she perceived an opening to do so, "rare" mysteriously dropped from her mantra. Now she only advocates for "safe and legal" abortion. When you are pushing to fund abortion both domestically and across the globe, one assumes, it is hard to say you actually long for a world without it.
Over the past few days, it has become clear that neither she nor the Democratic Party are really all that concerned with women's safety either. In their eyes, abortion is sacred ground: if an abortion clinic cannot meet basic safety standards, the standards must be unconstitutional. Not only will they fight to keep abortion common, they will sacrifice safety to do so.
Clinton no longer portrays abortion as the tragic decision she described it as through 2008. No longer does she claim to respect both sides of the argument. Instead, she has pushed for widespread, taxpayer-funded abortion without any restriction.
This position was embraced in the final draft of the Democratic platform completed by the party's Platform Committee last Saturday. They proudly admit the platform "goes further than previous Democratic platforms on women's reproductive rights." In it, they repeat Clinton's call for the repeal of the Hyde Amendment, which bars the federal government from using tax dollars to pay for abortion. Unsurprisingly, the platform also "champions Planned Parenthood" and promises to "push back on all Republican efforts to defund it" — a fitting payment for Planned Parenthood championing the Democratic Party and promising to spend millions of dollars funding their nominee.
Most brazenly, however, the platform "vows to oppose, and seek to overturn, all federal and state laws that impede a woman's access to abortion." Any law which might close an abortion clinic, regardless of the reason, is opposed by the Democratic Party. Anything less than unrestricted access to abortion, at any point, for any reason, is anathema. If taxpayers need to foot the bill, so be it. For Hillary Clinton, and now, the Democratic Party, abortion is not a matter of private conscience which should be tolerated by law under certain conditions. It is a public good and sacred right, which the American people must support at any cost.
Danny Cannon works for the American Principles Project.
Danny Cannon
Pelosi, Clinton Finance Director Becomes Lobbyist For Chinese Chamber Of Commerce. | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 5,173 | [
128000,
31945,
12667,
315,
3314,
15383,
8283,
320,
11817,
6807,
25,
445,
30303,
29070,
620,
4669,
55458,
11,
13844,
7866,
93314,
220,
17,
13,
15,
340,
75817,
6,
1561,
3765,
26973,
2418,
2221,
25,
1252,
51897,
11,
468,
3422,
21376,
11,
323,
15545,
94686,
7424,
37153,
198,
1729,
33699,
51823,
198,
2520,
1667,
11,
279,
93130,
11922,
430,
814,
4934,
20710,
311,
387,
330,
19193,
11,
5897,
11,
323,
9024,
1359,
264,
12309,
24070,
2361,
814,
16075,
311,
779,
1317,
439,
814,
6646,
433,
31205,
17125,
13,
763,
220,
1049,
23,
11,
15383,
8283,
7378,
4459,
18207,
53423,
994,
4691,
422,
5270,
1288,
1456,
311,
8108,
279,
1396,
315,
54373,
311,
7315,
13,
1789,
330,
266,
3325,
37755,
1667,
1359,
1364,
1071,
11,
430,
1047,
1027,
1077,
5915
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
31945,
12667,
315,
3314,
15383,
8283,
320,
11817,
6807,
25,
445,
30303,
29070,
620,
4669,
55458,
11,
13844,
7866,
93314,
220,
17,
13,
15,
340,
75817,
6,
1561,
3765,
26973,
2418,
2221,
25,
1252,
51897,
11,
468,
3422,
21376,
11,
323,
15545,
94686,
7424,
37153,
198,
1729,
33699,
51823,
198,
2520,
1667,
11,
279,
93130,
11922,
430,
814,
4934,
20710,
311,
387,
330,
19193,
11,
5897,
11,
323,
9024,
1359,
264,
12309,
24070,
2361,
814,
16075,
311,
779,
1317,
439,
814,
6646,
433,
31205,
17125,
13,
763,
220,
1049,
23,
11,
15383,
8283,
7378,
4459,
18207,
53423,
994,
4691,
422,
5270,
1288,
1456,
311,
8108,
279,
1396,
315,
54373,
311,
7315,
13,
1789,
330,
266,
3325,
37755,
1667,
1359,
1364,
1071,
11,
430,
1047,
1027,
1077,
5915,
-100
]
|
This paper describes the simulation of arm movements of a stepper motor controlled pick-and-place robot using the mathematical model of a stepper motor. The model includes: a) a model of the stepper model driver board, b) a model of the hybrid stepper motor and load combination, and c) the interconnection of the two models which is used to simulate the motions of the base, shoulder, elbow, and wrist (pitch) motions of the pick-and-place robot. The model is simulated using Simulink and the results of angular displacement from the simulation and actual measurements show good uniformity. | {
"redpajama_set_name": "RedPajamaC4"
} | 5,382 | [
128000,
2028,
5684,
16964,
279,
19576,
315,
6916,
19567,
315,
264,
97032,
9048,
14400,
3820,
9976,
42761,
12585,
1701,
279,
37072,
1646,
315,
264,
97032,
9048,
13,
578,
1646,
5764,
25,
264,
8,
264,
1646,
315,
279,
97032,
1646,
5696,
4580,
11,
293,
8,
264,
1646,
315,
279,
26038,
97032,
9048,
323,
2865,
10824,
11,
323,
272,
8,
279,
958,
7898,
315,
279,
1403,
4211,
902,
374,
1511,
311,
38553,
279,
54245,
315,
279,
2385,
11,
17308,
11,
46811,
11,
323,
33271,
320,
54338,
8,
54245,
315,
279,
3820,
9976,
42761,
12585,
13,
578,
1646,
374,
46836,
1701,
4567,
360,
771,
323,
279,
3135,
315,
20932,
44153,
505,
279,
19576,
323,
5150,
22323,
1501,
1695,
14113,
488,
13,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
]
| [
2028,
5684,
16964,
279,
19576,
315,
6916,
19567,
315,
264,
97032,
9048,
14400,
3820,
9976,
42761,
12585,
1701,
279,
37072,
1646,
315,
264,
97032,
9048,
13,
578,
1646,
5764,
25,
264,
8,
264,
1646,
315,
279,
97032,
1646,
5696,
4580,
11,
293,
8,
264,
1646,
315,
279,
26038,
97032,
9048,
323,
2865,
10824,
11,
323,
272,
8,
279,
958,
7898,
315,
279,
1403,
4211,
902,
374,
1511,
311,
38553,
279,
54245,
315,
279,
2385,
11,
17308,
11,
46811,
11,
323,
33271,
320,
54338,
8,
54245,
315,
279,
3820,
9976,
42761,
12585,
13,
578,
1646,
374,
46836,
1701,
4567,
360,
771,
323,
279,
3135,
315,
20932,
44153,
505,
279,
19576,
323,
5150,
22323,
1501,
1695,
14113,
488,
13,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100
]
|
Actuarial Pension Consultant-8485 | S.C. International, LTD.
Seeking pension actuary looking to serve client base by providing annual valuations, consulting on special projects, and managing workflow. This company has grown from a local to a regional to a small national organization. Unique opportunity to work with both private and public sector clients and help grow business. | {
"redpajama_set_name": "RedPajamaC4"
} | 9,452 | [
128000,
2471,
19253,
532,
81557,
56546,
12,
24951,
20,
765,
328,
732,
13,
7327,
11,
51285,
627,
40450,
287,
28781,
1180,
3620,
3411,
311,
8854,
3016,
2385,
555,
8405,
9974,
1062,
38170,
11,
31831,
389,
3361,
7224,
11,
323,
18646,
29388,
13,
1115,
2883,
706,
15042,
505,
264,
2254,
311,
264,
15481,
311,
264,
2678,
5426,
7471,
13,
29750,
6776,
311,
990,
449,
2225,
879,
323,
586,
10706,
8403,
323,
1520,
3139,
2626,
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
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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
]
| [
2471,
19253,
532,
81557,
56546,
12,
24951,
20,
765,
328,
732,
13,
7327,
11,
51285,
627,
40450,
287,
28781,
1180,
3620,
3411,
311,
8854,
3016,
2385,
555,
8405,
9974,
1062,
38170,
11,
31831,
389,
3361,
7224,
11,
323,
18646,
29388,
13,
1115,
2883,
706,
15042,
505,
264,
2254,
311,
264,
15481,
311,
264,
2678,
5426,
7471,
13,
29750,
6776,
311,
990,
449,
2225,
879,
323,
586,
10706,
8403,
323,
1520,
3139,
2626,
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
]
|
The thing is that giving a fast look at the source of the rtaudio and the rtaudio file in chuck, seems that the source in chuck is modified ad hoc. Also there are other dependencies that in the new rtaudio source are not listed.
I'm not really an expert on these things so I don't know exactly what to do!
> > Sorry if it is a dumb question, but how do I do that? I mean, I imagine that downloading and compiling the new version of rtaudio isn't enough, the link with ChucK would be missing.
> It looked as though the old RTaudio files in ChucK should be replaced by the new one; then recompile. That is, Chuck does not call RTaudio library but uses the sources.
> But if that proves complicated, it should be possible to install RTAudio as a library, take away the old sources from 'chuck', and the make sure the rtaudio library is included when linking (say by tweaking the chuck Makefile). That does not result in a standalone binary, though., but you will know if it fixes the problem. | {
"redpajama_set_name": "RedPajamaC4"
} | 971 | [
128000,
791,
3245,
374,
430,
7231,
264,
5043,
1427,
520,
279,
2592,
315,
279,
436,
2629,
3310,
323,
279,
436,
2629,
3310,
1052,
304,
43560,
11,
5084,
430,
279,
2592,
304,
43560,
374,
11041,
1008,
67490,
13,
7429,
1070,
527,
1023,
20113,
430,
304,
279,
502,
436,
2629,
3310,
2592,
527,
539,
10212,
627,
40,
2846,
539,
2216,
459,
6335,
389,
1521,
2574,
779,
358,
1541,
956,
1440,
7041,
1148,
311,
656,
4999,
29,
871,
33386,
422,
433,
374,
264,
30355,
3488,
11,
719,
1268,
656,
358,
656,
430,
30,
358,
3152,
11,
358,
13085,
430,
33577,
323,
55320,
279,
502,
2373,
315,
436,
2629,
3310,
4536,
956,
3403,
11,
279,
2723,
449,
921,
1791,
42,
1053,
387,
7554,
627,
29,
1102,
7111,
439,
3582,
279,
2362,
10860
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
3245,
374,
430,
7231,
264,
5043,
1427,
520,
279,
2592,
315,
279,
436,
2629,
3310,
323,
279,
436,
2629,
3310,
1052,
304,
43560,
11,
5084,
430,
279,
2592,
304,
43560,
374,
11041,
1008,
67490,
13,
7429,
1070,
527,
1023,
20113,
430,
304,
279,
502,
436,
2629,
3310,
2592,
527,
539,
10212,
627,
40,
2846,
539,
2216,
459,
6335,
389,
1521,
2574,
779,
358,
1541,
956,
1440,
7041,
1148,
311,
656,
4999,
29,
871,
33386,
422,
433,
374,
264,
30355,
3488,
11,
719,
1268,
656,
358,
656,
430,
30,
358,
3152,
11,
358,
13085,
430,
33577,
323,
55320,
279,
502,
2373,
315,
436,
2629,
3310,
4536,
956,
3403,
11,
279,
2723,
449,
921,
1791,
42,
1053,
387,
7554,
627,
29,
1102,
7111,
439,
3582,
279,
2362,
10860,
-100
]
|
It's 12:30 on a Friday. The first day of June is here. I decided to go to the Grove and do a little shopping, come home pay rent and eat some food from my full fridge. I got haggled into buying 60 dollars worth of a dead sea nail kits and have been kinda bummed ever since. I decided to do some research online and it turns out I got extremely ripped off. Warning do NOT buy Seacret nail care collection.
Moving on; so I was sitting here reading Facebook and came across a link to "40 of the most powerful photographs ever taken" I clicked the link and BAM! Got hit in the face with emotion I can not control. These pictures show everything from love, war, protest, bravery, honesty, and most of all raw emotion.
As I was clicking through these pictures I was overwhelmed with gratitude. I can't believe how lucky I am to be living in a wonderful house in Los Angeles and I get to eat organic, local foods and never ever have had to deal with a disaster. I am so very lucky. People have had to go through some unimaginable things in their lives, and I am worried about spending 60 dollars on nail care. Talk about first world problems.
I wanted to write this blog to share this gratitude with you and hope to pass it along. We take our everyday lives and people in them for granted, and we shouldn't. We are blessed everyday to have homes, food, clothes, cars, and even things we never think of like electricity, CLEAN running water.
Please take a minute or two to reflect on how good you got it. Give thanks to the universe for providing you with everything you need. Check out these pictures if my words alone don't inspire you.
The creepy old LA zoo..
Same as it ever was.. | {
"redpajama_set_name": "RedPajamaC4"
} | 144 | [
128000,
2181,
596,
220,
717,
25,
966,
389,
264,
6740,
13,
578,
1176,
1938,
315,
5651,
374,
1618,
13,
358,
6773,
311,
733,
311,
279,
41234,
323,
656,
264,
2697,
12185,
11,
2586,
2162,
2343,
8175,
323,
8343,
1063,
3691,
505,
856,
2539,
38681,
13,
358,
2751,
305,
16094,
839,
1139,
12096,
220,
1399,
11441,
5922,
315,
264,
5710,
9581,
32095,
32596,
323,
617,
1027,
34490,
73974,
2106,
3596,
2533,
13,
358,
6773,
311,
656,
1063,
3495,
2930,
323,
433,
10800,
704,
358,
2751,
9193,
44092,
1022,
13,
27956,
656,
4276,
3780,
1369,
582,
2171,
32095,
2512,
4526,
627,
40832,
389,
26,
779,
358,
574,
11961,
1618,
5403,
5690,
323,
3782,
4028,
264,
2723,
311,
330,
1272,
315,
279,
1455,
8147,
25232,
3596,
4529,
1,
358,
20505,
279
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
2181,
596,
220,
717,
25,
966,
389,
264,
6740,
13,
578,
1176,
1938,
315,
5651,
374,
1618,
13,
358,
6773,
311,
733,
311,
279,
41234,
323,
656,
264,
2697,
12185,
11,
2586,
2162,
2343,
8175,
323,
8343,
1063,
3691,
505,
856,
2539,
38681,
13,
358,
2751,
305,
16094,
839,
1139,
12096,
220,
1399,
11441,
5922,
315,
264,
5710,
9581,
32095,
32596,
323,
617,
1027,
34490,
73974,
2106,
3596,
2533,
13,
358,
6773,
311,
656,
1063,
3495,
2930,
323,
433,
10800,
704,
358,
2751,
9193,
44092,
1022,
13,
27956,
656,
4276,
3780,
1369,
582,
2171,
32095,
2512,
4526,
627,
40832,
389,
26,
779,
358,
574,
11961,
1618,
5403,
5690,
323,
3782,
4028,
264,
2723,
311,
330,
1272,
315,
279,
1455,
8147,
25232,
3596,
4529,
1,
358,
20505,
279,
-100
]
|
Dear Black Women is an affirmation movement and network for Black women by Black women.
Dear Black Women networks have launched in Southeast Michigan and New York City! With our next cities to be announced by late 2018.
Whether in our cities yet or not, we can connect through our affirmations, events, merchandise and more!
YAS! We LOVE that you want to bring DBW to your city! We hope to see you soon. In the meantime, please be sure to keep up with us on our podcast, newsletter and social media. | {
"redpajama_set_name": "RedPajamaC4"
} | 1,026 | [
128000,
31765,
5348,
11215,
374,
459,
96963,
7351,
323,
4009,
369,
5348,
3278,
555,
5348,
3278,
627,
31765,
5348,
11215,
14488,
617,
11887,
304,
36664,
14972,
323,
1561,
4356,
4409,
0,
3161,
1057,
1828,
9919,
311,
387,
7376,
555,
3389,
220,
679,
23,
627,
25729,
304,
1057,
9919,
3686,
477,
539,
11,
584,
649,
4667,
1555,
1057,
33449,
811,
11,
4455,
11,
36045,
323,
810,
4999,
56,
1950,
0,
1226,
40835,
430,
499,
1390,
311,
4546,
6078,
54,
311,
701,
3363,
0,
1226,
3987,
311,
1518,
499,
5246,
13,
763,
279,
33953,
11,
4587,
387,
2771,
311,
2567,
709,
449,
603,
389,
1057,
18181,
11,
20846,
323,
3674,
3772,
13,
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,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
]
| [
31765,
5348,
11215,
374,
459,
96963,
7351,
323,
4009,
369,
5348,
3278,
555,
5348,
3278,
627,
31765,
5348,
11215,
14488,
617,
11887,
304,
36664,
14972,
323,
1561,
4356,
4409,
0,
3161,
1057,
1828,
9919,
311,
387,
7376,
555,
3389,
220,
679,
23,
627,
25729,
304,
1057,
9919,
3686,
477,
539,
11,
584,
649,
4667,
1555,
1057,
33449,
811,
11,
4455,
11,
36045,
323,
810,
4999,
56,
1950,
0,
1226,
40835,
430,
499,
1390,
311,
4546,
6078,
54,
311,
701,
3363,
0,
1226,
3987,
311,
1518,
499,
5246,
13,
763,
279,
33953,
11,
4587,
387,
2771,
311,
2567,
709,
449,
603,
389,
1057,
18181,
11,
20846,
323,
3674,
3772,
13,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100
]
|
All MORNINGSIDE homes currently listed for sale in Sarasota as of 04/18/2019 are shown below. You can change the search criteria at any time by pressing the 'Change Search' button below.
"Enjoy the maintenance-free lifestyle of this 1 bedroom, 1 bathroom villa, located in the desirable Morningside community, within the heart of The Meadows. Vaulted ceiling adds to a more spacious feel. Beautiful view from the screened lanai. Surrounded by nature yet Prime location. Perfect for golf weekends or for Northerners needing to thaw out. Short drive to beaches, downtown, University Corridor, and easy access to I-75." | {
"redpajama_set_name": "RedPajamaC4"
} | 4,833 | [
128000,
2460,
386,
47052,
12124,
12420,
10632,
5131,
10212,
369,
6412,
304,
95914,
6217,
439,
315,
220,
2371,
14,
972,
14,
679,
24,
527,
6982,
3770,
13,
1472,
649,
2349,
279,
2778,
13186,
520,
904,
892,
555,
26422,
279,
364,
4164,
7694,
6,
3215,
3770,
627,
1,
39804,
279,
13709,
12862,
19433,
315,
420,
220,
16,
14150,
11,
220,
16,
15197,
47625,
11,
7559,
304,
279,
35946,
386,
52785,
579,
4029,
11,
2949,
279,
4851,
315,
578,
78142,
13,
42497,
291,
22959,
11621,
311,
264,
810,
33236,
2733,
13,
20055,
1684,
505,
279,
58677,
31791,
2192,
13,
8242,
45091,
555,
7138,
3686,
12801,
3813,
13,
24118,
369,
19665,
38102,
477,
369,
8170,
700,
5079,
33921,
311,
86478,
704,
13,
10928,
6678,
311,
35909,
11,
19441,
11,
3907,
4563
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
386,
47052,
12124,
12420,
10632,
5131,
10212,
369,
6412,
304,
95914,
6217,
439,
315,
220,
2371,
14,
972,
14,
679,
24,
527,
6982,
3770,
13,
1472,
649,
2349,
279,
2778,
13186,
520,
904,
892,
555,
26422,
279,
364,
4164,
7694,
6,
3215,
3770,
627,
1,
39804,
279,
13709,
12862,
19433,
315,
420,
220,
16,
14150,
11,
220,
16,
15197,
47625,
11,
7559,
304,
279,
35946,
386,
52785,
579,
4029,
11,
2949,
279,
4851,
315,
578,
78142,
13,
42497,
291,
22959,
11621,
311,
264,
810,
33236,
2733,
13,
20055,
1684,
505,
279,
58677,
31791,
2192,
13,
8242,
45091,
555,
7138,
3686,
12801,
3813,
13,
24118,
369,
19665,
38102,
477,
369,
8170,
700,
5079,
33921,
311,
86478,
704,
13,
10928,
6678,
311,
35909,
11,
19441,
11,
3907,
4563,
-100
]
|
\section{INTRODUCTION}
Analysing respiratory sound has been recently attracted attention as leveraging robust machine learning and deep learning methods.
In these both approaches, systems proposed generally comprise two main steps, referred to as the front-end feature extraction and the back-end model.
In machine learning based systems, handcrafted features such as Mel-frequency cepstral coefficient (MFCC)~\cite{lung_tree_18, lung_hmm_02}, or a combined feature of four time domain features (variance, range, sum of simple moving average) and one frequency domain feature (spectrum mean)~\cite{lung_svm_01} are extracted at the front-end feature extraction.
These features are then fed into conventional machine learning models of Hidden Markov Model~\cite{lung_hmm_02}, Support Vector Machine~\cite{lung_svm_01}, or Decision Tree~\cite{lung_tree_18} for specific tasks of classification or regression.
Meanwhile, deep learning based systems make use of spectrogram where both temporal and spectral features are well represented.
These spectrograms are then explored by a wide range of convolutional deep neural networks (CNNs)~\cite{lung_cnn_01, lung_cnn_02, pham2020_01, lam_11} or recurrent neural networks (RNNs)~\cite{lung_rnn_01, lung_rnn_02}.
Compare between two approaches, deep learning based systems are more effective and show potential results mentioned in~\cite{lung_cnn_01, pham2020_01, lam_11}.
As the deep learning approach proves powerful for analysing respiratory sounds, we evaluate a wide range of deep leaning frameworks which are applied for the specific task of audio respiratory cycles classification in this paper.
By conducting extensive experiments on the 2017 Internal Conference on Biomedical Health Informatics (ICBHI)~\cite{lung_dataset}, which is one of the largest benchmark respiratory sound dataset published, we mainly contribute: (1) We evaluate whether benchmark and complex deep neural network architectures (e.g. ResNet50, Xception, InceptionV3, etc.) are more effective than inception-based and low footprint models, and (2) we evaluate whether applying transfer learning techniques on the downstream task of respiratory cycle classification can achieve competitive performance compared with direct training approaches.
\section{ICBHI dataset and tasks defined}
ICBHI dataset~\cite{lung_dataset} comprising of 920 audio recordings was collected from 128 patients over 5.5 hours.
Each audio recording contains one or different types of respiratory cycles (\textit{Crackle}, \textit{Wheeze}, \textit{Both Crackle \& Wheeze}, and \textit{Normal}) which are labelled with onset and offset time by experts.
Given ICBHI dataset, this paper aims to classify four different types of respiratory cycles mentioned that is also the main task of the ICBHI challenge~\cite{lung_dataset}.
To evaluate, we follow the ICBHI challenge, then split 920 audio recordings into Train and Test subsets with a ratio of 60/40 without overlapping patient objects in both subsets (Note that some systems randomly separate ICBHI dataset into training and test subsets regardless patient object~\cite{lung_cnn_01, lung_cnn_02, lung_rnn_01}).
Using available onset and offset time, we then extract respiratory cycles from entire recordings, obtain four categories of respiratory cycles on each subset.
Regarding the evaluating metrics, we use Sensitivity (Sen.), Specitivity (Spec.), and ICBHI scores (ICB.) which is an average score of Sen. and Spec..
These scores are also the ICBHI criteria as mentioned in the ICBHI challenge~\cite{icb_ratio} and~\cite{ic_cnn_19_iccas, pham2020cnnmoe}.
\section{Deep learning frameworks proposed}
\label{framework}
To classify four types of respiratory cycles from ICBHI dataset, we firstly propose a high-level architecture of three main deep learning frameworks as shown in Figure~\ref{fig:A1}: (I) The upper stream in Figure~\ref{fig:A1} shows how we directly train and evaluate small-footprint inception-based network architectures; (II) Benchmark and large footprint deep learning network architectures of VGG16, VGG19, MobileNetV1, MobileNetV2, ResNet50, DenseNet201, InceptionV3, Xception are directly trained and evaluated as shown in the middle stream of Figure~\ref{fig:A1}; and (III) The lower stream in Figure~\ref{fig:A1} shows how we reuse pre-trained models, which were trained with the large-scale AudioSet dataset, to extract embedding features for the training process on multilayer perception (MLP) network architecture.
In general, these three proposed deep learning frameworks comprise two main steps of the front-end spectrogram feature extraction and the back-end classification model.
\subsection{The front-end spectrogram feature extraction}
\label{feature}
\begin{figure}[t]
\vspace{-0.2cm}
\centering
\includegraphics[width =1.0\linewidth]{A1.eps}
\vspace{-0.5cm}
\caption{The high-level architecture for three deep learning frameworks proposed.}
\label{fig:A1}
\end{figure}
\begin{table}[t]
\caption{The general inception based network architectures.}
\vspace{-0.2cm}
\centering
\scalebox{0.95}{
\begin{tabular}{|c |c |}
\hline
\textbf{Single Inception Layer} & \textbf{Double Inception Layers} \\
\hline
\multicolumn{2}{|c|}{BN} \\
\hline
Inc(\textbf{ch1}) - ReLU & Inc(\textbf{ch1}) - ReLU - Inc(\textbf{ch1}) - ReLU \\
\hline
\multicolumn{2}{|c|}{BN - MP - Dr(10\%) - BN} \\
\hline
Inc(\textbf{ch2}) - ReLU & Inc(\textbf{ch2}) - ReLU - Inc(\textbf{\textbf{ch2}}) - ReLU\\
\hline
\multicolumn{2}{|c|}{BN - MP - Dr(15\%) - BN} \\
\hline
Inc(\textbf{ch3}) - ReLU & Inc(\textbf{ch3}) - ReLU - Inc(\textbf{ch3}) - ReLU \\
\hline
\multicolumn{2}{|c|}{BN - MP - Dr(20\%) - BN} \\
\hline
Inc(\textbf{ch4}) - ReLU & Inc(\textbf{ch4}) - ReLU - Inc(\textbf{ch4}) - ReLU\\
\hline
\multicolumn{2}{|c|}{BN - GMP - Dr(25\%)} \\
\hline
\multicolumn{2}{|c|}{FC(\textbf{fc1}) - ReLU - Dr(30\%)} \\
\hline
\multicolumn{2}{|c|}{FC(\textbf{fc2}) - ReLU - Dr(30\%)} \\
\hline
\multicolumn{2}{|c|}{FC(\textbf{4}) - Softmax} \\
\hline
\end{tabular}
}
\vspace{-0.3cm}
\label{table:inc01}
\end{table}
As proposed deep learning frameworks are shown in Figure~\ref{fig:A1}, we firstly duplicate the short-time cycles or cut off the long-time cycles to make all respiratory cycles equal to 10 seconds.
For the first two deep learning frameworks (I) and (II), we extract Wavelet-based spectrograms which proves effective in our previous work~\cite{lam_11}.
As we reuse the setting from~\cite{lam_11}, we then generate Wavelet spectrograms of $124{\times}154$ from 10-second respiratory cycles.
Meanwhile, we extract log-Mel spectrogram in the deep learning framework (III) as we re-use pre-trained models from~\cite{kong_pretrain} receiving log-Mel spectrogram input.
By using the same setting from~\cite{kong_pretrain}, we generate log-Mel spectrograms of $128{\times}1000$ for 10-second respiratory cycles.
To enforce back-end classifiers, two data augmentation methods of spectrum~\cite{spec_aug} and mixup~\cite{mixup1, mixup2} are applied on both log-Mel and Wavelet-based spectrograms before feeding into back-end deep learning models for classification.
\subsection{The back-end deep learning networks for classification}
\textit{(I) The low-footprint inception based network architectures}: As the potential results were achieved from our previous work~\cite{lam_11}, we further evaluate different inception based network architectures in this paper.
In particular, two high-level architectures with single or double inception layers as shown in Table~\ref{table:inc01} are used in this paper.
These architectures perform different layers: inception layer (Inc(output channel number)) as shown in Figure~\ref{fig:A2}, batch normalization (BN)~\cite{batchnorm}, rectified linear units (ReLU)~\cite{relu}, max pooling (MP), global max pooling (GMP), dropout~\cite{dropout} (Dr(percentage)), fully connected (FC(output node number)) and Sigmoid layers.
By using the two architectures and setting different parameters to channel numbers of inception layers and output node numbers of fully connected layers, we then create six inception based deep neural networks as shown in Table~\ref{table:inc02}, referred to as Inc-01, Inc-02, Inc-03, Inc-04, Inc-05, and Inc-06, respectively.
\textit{(II) The benchmark and complex neural network architectures}:
We next evaluate different benchmark neural network architectures of VGG16, VGG19, MobileNetV1, MobileNetV2, ResNet50, DenseNet201, InceptionV3, and Xception, which are available in Keras library~\cite{keras_app} and popularly applied in different research domains.
Compare with the inception based network architectures used in the framework (I), these benchmark neural networks show large footprint with complex architecture and trunks of convolutional layers.
\begin{figure}[t]
\vspace{-0.2cm}
\centering
\includegraphics[width =0.9\linewidth]{A2.eps}
\caption{The single inception layer architecture.}
\label{fig:A2}
\end{figure}
\begin{table}[t]
\caption{Setting for inception based network architectures.}
\vspace{-0.2cm}
\centering
\scalebox{0.9}{
\begin{tabular}{|c |c |c |c |c |c |c |}
\hline
\textbf{Networks} & \textbf{Inc-01} & \textbf{Inc-02} & \textbf{Inc-03} & \textbf{Inc-04} & \textbf{Inc-05} & \textbf{Inc-06}\\
\hline
\textbf{Single/Double} & & & & & & \\
\textbf{Inception } & Single & Double & Single & Double & Single & Double \\
\textbf{Layers} & & & & & & \\
\hline
\textbf{ch1} & 32 & 32 & 64 & 64 & 128 & 128 \\
\textbf{ch2} & 64 & 64 & 128 & 128 & 256 & 256 \\
\textbf{ch3} & 128 & 128 & 256 & 256 & 512 & 512 \\
\textbf{ch4} & 256 & 256 & 512 & 512 & 1024 & 1024 \\
\textbf{fc1} & 512 & 512 & 1024 & 1024 & 2048 & 2048 \\
\textbf{fc2} & 512 & 512 & 1024 & 1024 & 2048 & 2048 \\
\hline
\end{tabular}
}
\vspace{-0.3cm}
\label{table:inc02}
\end{table}
\begin{table*}[t]
\caption{Performance comparison of proposed deep learning frameworks.}
\vspace{-0.2cm}
\centering
\scalebox{1.0}{
\begin{tabular}{| l c | l c | l c | l c |}
\hline
\textbf{Inception-based } &\textbf{Scores} &\textbf{Benchmark } &\textbf{Scores} &\textbf{Transfer learning} &\textbf{Scores} \\
\textbf{Frameworks} &\textbf{(Spec./Sen./ICB.)} &\textbf{Frameworks} &\textbf{(Spec./Sen./ICB.)} &\textbf{Frameworks} &\textbf{(Spec./Sen./ICB.)} \\
\hline
Inc-01 &56.3/\textbf{40.5}/48.4 &VGG16 &70.1/28.6/49.3 &VGG14 &\textbf{82.1}/28.1/\textbf{55.1}\\
Inc-02 &69.7/31.9/50.8 &VGG19 &69.7/28.4/49.1 &DaiNet19 &76.4/26.9/51.7\\
Inc-03 &81.7/28.4/\textbf{55.1} &MobileNetV1 &75.5/14.3/44.9 &MobileNetV1 &64.4/\textbf{40.3}/52.3\\
Inc-04 &\textbf{84.0}/24.8/54.4 &MobileNetV2 &74.7/16.1/45.4 &MobileNetV2 &76.0/32.7/54.4\\
Inc-05 &80.5/26.3/53.4 &ResNet50 &\textbf{88.0}/15.2/\textbf{51.6} &LeeNet24 &70.7/30.9/52.8\\
Inc-06 &74.8/30.0/52.4 &DenseNet201 &71.7/30.3/51.1 &Res1DNet30 &74.9/26.7/50.8\\
& &InceptionV3 &70.9/\textbf{32.2/51.6} &ResNet38 &71.6/32.2/51.9 \\
& &Xception &75.7/22.1/48.9 &Wavegram-CNN &69.0/38.1/53.5 \\
\hline
\end{tabular}
}
\label{table:res_01}
\end{table*}
\begin{table}[t]
\caption{The MLP architecture used for training embedding features.}
\vspace{-0.2cm}
\centering
\scalebox{1.0}{
\begin{tabular}{l c}
\hline
\textbf{Setting layers} & \textbf{Output} \\
\hline
FC(4096) - ReLU - Dr($10\%$) & $4096$ \\
FC(4096) - ReLU - Dr($10\%$) & $4096$ \\
FC(1024) - ReLU - Dr($10\%$) & $1024$ \\
FC(4) - Softmax & $4$ \\
\hline
\end{tabular}
}
\vspace{-0.3cm}
\label{table:mlp}
\end{table}
\textit{(III) The transfer learning based network architectures}: As transfer learning techniques have proven effective for downstream tasks with a limitation of training data and smaller categories classified~\cite{kong_pretrain}, we leverage pre-trained networks which were trained with the large-scale AudioSet dataset from~\cite{kong_pretrain}: LeeNet24, DaiNet19, VGG14, MobileNetV1, MobileNetV2, Res1DNet30, ResNet38, Wavegram-CNN.
We then modify these networks to match the downstream task of classifying four respiratory cycles in ICBHI dataset.
In particular, we remain trainable parameters from the first layer to the global pooling layer of the pre-trained networks.
We then replace layers after the global pooling layer by new fully connected layers to create a new network (i.e. Trainable parameters in new fully connected layers are initialized with mean and variance set to 0 and 0.1, respectively).
In the other words, we use a multilayer perception (MLP) as shown in Table~\ref{table:mlp} (i.e. The multilayer perception (MLP) is configured by FC, ReLU, Dr, and Softmax layers) to train embedding features extracted from the pre-trained models (i.e. The embedding features are the feature map of the final global pooling layer in the pre-trained networks).
\section{Experiments and results}
\subsection{Experimental setting for back-end classifiers}
As using spectrum~\cite{spec_aug} and mixup~\cite{mixup1, mixup2} data augmentation methods, labels are not one-hot encoding format. Therefore, we use Kullback–Leibler divergence (KL) loss shown in Eq. (\ref{eq:kl_loss}) below.
\begin{align}
\label{eq:kl_loss}
Loss_{KL}(\Theta) = \sum_{n=1}^{N}\mathbf{y}_{n}\log \left\{ \frac{\mathbf{y}_{n}}{\mathbf{\hat{y}}_{n}} \right\} + \frac{\lambda}{2}||\Theta||_{2}^{2}
\end{align}
where \(\Theta\) are trainable parameters, constant \(\lambda\) is set initially to $0.0001$, $N$ is batch size set to 100, $\mathbf{y_{i}}$ and $\mathbf{\hat{y}_{i}}$ denote expected and predicted results.
While we construct deep learning networks proposed in frameworks (I) and (II) with Tensorflow, we use Pytorch for extracting embedding features and training MLP in the framework (III) as the pre-trained networks were built in Pytorch environment.
We set epoch number=100 and using Adam method~\cite{Adam} for optimization.
\subsection{Performance comparison among deep learning frameworks proposed}
As the experimental results are shown in Table~\ref{table:res_01}, it can be seen that generally the low-footprint inception based frameworks and the transfer learning based frameworks are competitive and outperform the benchmark frameworks.
Table~\ref{table:res_01} records the best ICBHI score of 55.1\% from the Inc-03 framework and the transfer learning framework with the pre-trained VGG14 (i.e. The best performance obtained from the pre-trained VGG14 makes sense as this network outperforms the other network architectures for classifying sound events in AudioSet dataset).
Notably, while we use the same network architecture of MobileNetV1 and MobinetV2, transfer learning frameworks significantly outperform the benchmark frameworks.
As a result, we can conclude that (1) applying the transfer learning technique on the downstream task of classifying respiratory cycles is effective; and (2) low-footprint inception based networks focusing on minimal variation of time and frequency are effective for respiratory sounds rather than benchmark and large network architectures.
\subsection{Early, middle, and late fusion of inception based and transfer learning based frameworks}
\begin{table}[t]
\caption{Performance comparison of fusion strategies of inception based and transfer learning based frameworks.}
\vspace{-0.2cm}
\centering
\scalebox{1.0}{
\begin{tabular}{l c c c}
\hline
\textbf{Fusion Strategies} & \textbf{Spec.} & \textbf{Sen.} & \textbf{ICB.}\\
\hline
Pre-trained VGG14 &82.1 &28.1 &55.1\\
Inc-03 &81.7 &28.4 &55.1 \\
The early fusion &79.9 &\textbf{30.9} &55.4 \\
The middle fusion &\textbf{87.3} &25.1 &56.2 \\
The late fusion &85.6 &30.0 &\textbf{57.3} \\
\hline
\end{tabular}
}
\vspace{-0.5cm}
\label{table:fusion}
\end{table}
As the deep learning frameworks basing on Inc-03 and transfer learning with the pre-trained VGG14 achieve the best scores, we then evaluate whether a fusion of results from these frameworks can help to further improve the task performance.
In particular, we propose three fusion strategies.
In the first and second fusion strategies referred to as the early and middle fusion, we concatenate the embedding feature extracted from the pre-trained VGG14 (e.g. the feature map of the global pooling of the pre-trained VGG14) with an embedding feature extracted from Inc-03 to generate a new combined feature. We than train the new combined feature with a MLP network architecture as shown in Table~\ref{table:mlp}.
While the feature map of the max global pooling (MGP) of Inc-03 is considered as the embedding feature in the first fusion strategy, the feature map of the second fully connected layer of Inc-03 (e.g. FC(fc2)) is used for the second fusion strategy.
In the third fusion strategy referred to as the late fusion, we use PROD fusion of the predicted probabilities obtained from these inception-based and transfer learning based frameworks.
The PROD fusion result \(\mathbf{p_{f-prod}} = (\bar{p}_{1}, \bar{p}_{2}, ..., \bar{p}_{C}) \) is obtained by:
\begin{equation}
\label{eq:mix_up_x1}
\bar{p_{c}} = \frac{1}{S} \prod_{s=1}^{S} \bar{p}_{sc} ~~~ for ~~ 1 \leq s \leq S,
\end{equation}
where \(\mathbf{\bar{p_{s}}}= (\bar{p}_{s1}, \bar{p}_{s2}, ..., \bar{p}_{sC})\) is the predicted probability of a single framework, $C$ is the category number and the \(s^{th}\) out of \(S\) individual frameworks evaluated.
The predicted label \(\hat{y}\) is determined by:
\begin{equation}
\label{eq:label_determine}
\hat{y} = arg max (\bar{p}_{1}, \bar{p}_{2}, ...,\bar{p}_{C} )
\end{equation}
As Table~\ref{table:fusion} shows, all three fusion strategies help to enhance the performance, report a further ICBHI score improvement of 0.3, 1.1, 2.2 from early, middle, late fusion strategies, respectively.
It proves that embedding features extracted from the inception based Inc-03 framework and the transfer learning framework with the pre-trained VGG14 contain distinct features of respiratory cycles.
\subsection{Performance comparison to the state of the art}
To compare with the state of the art, we only select published systems which follow the recommended official setting of ICBHI dataset~\cite{icb_ratio} with the train/set ratio of 60/40 and none of overlapping patient subject on both subsets.
As experimental results are shown in Table~\ref{table:res_02}, our system with a late fusion of inception-based and transfer learning frameworks outperform the state of the art, records the best score of 57.3\%.
\begin{table}[t]
\caption{Comparison against the state-of-the-art systems.}
\vspace{-0.2cm}
\centering
\scalebox{1.0}{
\begin{tabular}{|l |l |c |c |c|}
\hline
\textbf{Method} &\textbf{Spec.} &\textbf{Sen.} &\textbf{ICBHI Score} \\
\hline
HMM~\cite{ic_hmm_18_sp} &38.0 &41.0 &39.0 \\
DT~\cite{lung_dataset} &75.0 &12.0 &43.0 \\
1D-CNN~\cite{t2021} &36.0 &51.0 &43.0 \\
SVM~\cite{ic_svm_18_sp} &78.0 &20.0 &47.0 \\
Autoencoder~\cite{dat_01} &69.0 &30.0 &49.0 \\
ResNet~\cite{ma2019} &69.2 &31.1 &50.2 \\
ResNet~\cite{Ma2020} &63.2 &41.3 &52.3 \\
Inception~\cite{lam_11} &73.2 &32.2 &53.2 \\
CNN-RNN~\cite{ic_cnn_19_iccas} &81.0 &28.0 &54.0 \\
ResNet50~\cite{microsoft2021} &72.3 &40.1 &56.2 \\
\hline
\textbf{Our best system} &\textbf{85.6} &\textbf{30.0} &\textbf{57.3} \\
\hline
\end{tabular}
}
\vspace{-0.3cm}
\label{table:res_02}
\end{table}
\section{Conclusion}
This paper has presented an exploration of various deep learning models for detecting respiratory anomaly from auditory recordings.
By conducting intensive experiments over the ICBHI dataset, our best model, which uses an ensemble of inception-based and transfer-learning-based deep learning frameworks, outperforms the state-of-the-art systems, then validate this application of deep learning for early detecting of respiratory anomaly.
\bibliographystyle{IEEEbib}
| {
"redpajama_set_name": "RedPajamaArXiv"
} | 7,237 | [
128000,
59,
2879,
90,
3301,
91199,
633,
63085,
1065,
287,
42631,
5222,
706,
1027,
6051,
29123,
6666,
439,
77582,
22514,
5780,
6975,
323,
5655,
6975,
5528,
627,
644,
1521,
2225,
20414,
11,
6067,
11223,
8965,
54350,
1403,
1925,
7504,
11,
14183,
311,
439,
279,
4156,
13368,
4668,
33289,
323,
279,
1203,
13368,
1646,
627,
644,
5780,
6975,
3196,
6067,
11,
1450,
80894,
4519,
1778,
439,
11220,
79412,
63190,
56070,
36706,
320,
32707,
3791,
8,
93,
59,
68175,
90,
39049,
11925,
62,
972,
11,
21271,
1552,
3906,
62,
2437,
2186,
477,
264,
11093,
4668,
315,
3116,
892,
8106,
4519,
320,
959,
5397,
11,
2134,
11,
2694,
315,
4382,
7366,
5578,
8,
323,
832,
11900,
8106,
4668,
320,
82,
39806,
3152,
8,
93,
59,
68175,
90,
39049,
646,
7488,
62
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
59,
2879,
90,
3301,
91199,
633,
63085,
1065,
287,
42631,
5222,
706,
1027,
6051,
29123,
6666,
439,
77582,
22514,
5780,
6975,
323,
5655,
6975,
5528,
627,
644,
1521,
2225,
20414,
11,
6067,
11223,
8965,
54350,
1403,
1925,
7504,
11,
14183,
311,
439,
279,
4156,
13368,
4668,
33289,
323,
279,
1203,
13368,
1646,
627,
644,
5780,
6975,
3196,
6067,
11,
1450,
80894,
4519,
1778,
439,
11220,
79412,
63190,
56070,
36706,
320,
32707,
3791,
8,
93,
59,
68175,
90,
39049,
11925,
62,
972,
11,
21271,
1552,
3906,
62,
2437,
2186,
477,
264,
11093,
4668,
315,
3116,
892,
8106,
4519,
320,
959,
5397,
11,
2134,
11,
2694,
315,
4382,
7366,
5578,
8,
323,
832,
11900,
8106,
4668,
320,
82,
39806,
3152,
8,
93,
59,
68175,
90,
39049,
646,
7488,
62,
-100
]
|
Comments Off on Quantum Spatial Wins Two Prestigious MAPPS Excellence Awards
Quantum Spatial Wins Two Prestigious MAPPS Excellence Awards
ST. PETERSBURG, Fla., Jan. 29, 2019 – Quantum Spatial, Inc. (QSI), the nation's largest independent geospatial data firm, this week was presented with two MAPPS 2018 Geospatial Products and Services Excellence Awards during the MAPPS Winter Conference.
In the Airborne and Satellite Data Acquisition category, QSI won for its work with the U.S. Geological Survey to collect and process topo-bathymetric LiDAR, natural color imagery and hyperspectral imagery for a 54-mile stretch of the Kootenai River in northern Idaho. During this project, QSI tested new remote sensing methodologies to discover and model fluvial processes that leveraged multiple instruments on a single airport platform. QSI demonstrated how topo-bathymetric LiDAR was an efficient and cost-effective method for future inland riverine mapping. This project showed how the process could improve flood hazard preparedness; be used to gain a better understanding of river ecology, flow dynamics and connectivity to better manage and restore fish habitat; quantify sediment transport and morphology dynamics; and increase accuracy of predictive models to guide future planning and development.
In the GIS/IT category, QSI won for the Marine Minerals Information System (MMIS), a project QSI developed for the Bureau of Ocean Energy Management (BOEM) in collaboration with the National Oceanic and Atmospheric Administration (NOAA) and the Bureau of Safety and Environmental Enforcement (BSEE). The goal of MMIS was to develop a GIS that would serve as a central authoritative system of record for all available ocean sand and minerals geospatial data and non-geospatial documentation. MMIS characterizes and spatially displays marine minerals geospatial data along the Outer Continental Shelf and offers a robust set of tools designed for viewing, analyzing, and modeling that data. Using an agile development methodology, QSI combined more than 30 years of data in different formats, resolutions, accuracy, scale and completeness – including more than 150,000 historical and current geospatial data elements – into a new standardized data model. By standardizing this information, MMIS will enable more reliable public policy decisions, improve integrity of BOEM resource management and leasing oversight, and increase coastal resiliency.
"We are honored that our topobathy and MMIS work were chosen as the top projects in their categories given the number of impressive products and services entered in this year's competition," said Michael Shillenn, vice president at QSI. "QSI's award-winning projects highlight our expertise in remote sensing, analytics and eGIS project development to deliver insights for better managing our natural resources and facilitating future planning efforts."
The annual MAPPS Geospatial Products and Services Excellence Awards are given to projects in eight categories: airborne and satellite data acquisition; photogrammetry/elevation data generation; remote sensing; GIS/IT; surveying/field data collection; small projects; technology innovation; and, licensed data products.
QSI will share details about its award-winning projects in Booth 805 during the International LiDAR Mapping Forum (January 28-30), also happening this week in Denver as a part of GeoWeek. In addition, at its booth, QSI is showcasing its cutting-edge applications for surveying and mapping, using high-resolution LiDAR, hyperspectral imagery and topobathy, as well as projects that include remote sensing and advanced analytics, for a wide range of uses, including the U.S. Geological Survey (USGS) 3D Elevation Program, emergency response and planning, forestry and utility vegetation management.
About Quantum Spatial, Inc.
Quantum Spatial, Inc., (QSI) the nation's largest independent geospatial analytics firm, provides geospatial intelligence to government and corporate organizations to mitigate risk, plan for growth, better manage resources and achieve advanced scientific understanding. A pioneer in advanced mapping technology, QSI's end-to-end solutions deliver data and services of the highest quality and accuracy, leveraging the widest array of technologies in all types of landscapes. Clients use the company's acquisition, processing, analytics and visualization solutions in a range of technical and scientific disciplines – from geology and biology, to hydrology, forestry and civil engineering. Utilities, oil and gas producers, engineering and construction firms, as well as the military and major government agencies, are QSI customers. QSI has multiple offices around the country. For more information visit quantumspatial.com, join us on LinkedIn or follow us on Twitter @QuantumSpatial. | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 6,993 | [
128000,
17828,
4206,
389,
56413,
75797,
49544,
9220,
36002,
22941,
28322,
5119,
58240,
23488,
198,
45320,
372,
75797,
49544,
9220,
36002,
22941,
28322,
5119,
58240,
23488,
198,
790,
13,
393,
39355,
86194,
38,
11,
54297,
2637,
4448,
13,
220,
1682,
11,
220,
679,
24,
1389,
56413,
75797,
11,
4953,
13,
320,
48,
14137,
705,
279,
7140,
596,
7928,
9678,
3980,
437,
33514,
828,
7626,
11,
420,
2046,
574,
10666,
449,
1403,
28322,
5119,
220,
679,
23,
4323,
437,
33514,
15899,
323,
8471,
58240,
23488,
2391,
279,
28322,
5119,
20704,
15217,
627,
644,
279,
6690,
32096,
323,
61657,
2956,
73471,
5699,
11,
1229,
14137,
2834,
369,
1202,
990,
449,
279,
549,
815,
13,
80850,
24507,
311,
6667,
323,
1920,
73619,
1481,
589,
1631,
16743,
14851,
35,
946,
11,
5933
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
17828,
4206,
389,
56413,
75797,
49544,
9220,
36002,
22941,
28322,
5119,
58240,
23488,
198,
45320,
372,
75797,
49544,
9220,
36002,
22941,
28322,
5119,
58240,
23488,
198,
790,
13,
393,
39355,
86194,
38,
11,
54297,
2637,
4448,
13,
220,
1682,
11,
220,
679,
24,
1389,
56413,
75797,
11,
4953,
13,
320,
48,
14137,
705,
279,
7140,
596,
7928,
9678,
3980,
437,
33514,
828,
7626,
11,
420,
2046,
574,
10666,
449,
1403,
28322,
5119,
220,
679,
23,
4323,
437,
33514,
15899,
323,
8471,
58240,
23488,
2391,
279,
28322,
5119,
20704,
15217,
627,
644,
279,
6690,
32096,
323,
61657,
2956,
73471,
5699,
11,
1229,
14137,
2834,
369,
1202,
990,
449,
279,
549,
815,
13,
80850,
24507,
311,
6667,
323,
1920,
73619,
1481,
589,
1631,
16743,
14851,
35,
946,
11,
5933,
-100
]
|
Tomb Of The Mask Hack is an online tool created to help you increase your resources by giving you free Coins for the game app Tomb Of The Mask by using an online generator.
The Tomb Of The Mask Hack is an online hack which is easy to use and helps you play the game in a better manner. Since this hack is online you don't need to install any software and your device is always safe from virus and Trojan. There are a number of benefits that you can get from this hack, but the main element is the unlimited Coins generator. This helps you buy the best gear in the game and become a strong player. The more Coins you have the more gear you can unlock and the stronger you can become. This helps you win all the fights without any difficulty. One of the best parts about this hack is that it is an online hack that works every time. It's been tested on various platforms and devices and it has always managed to work well.
The Tomb Of The Mask Hack is an online hack which is very simple and effective. The main use of this hack is to grant you with instant unlimited Coins. These Coins help you unlock various weapons in the battlefield and ensure you handle the battle with tact and precision. Unlike most hacks which need you to install specific software downloads for it to work, this Tomb Of The Mask Hack is very easy to use and is online which makes it safe. With the unlimited Coins, you can make unlimited purchases in the game. This makes you a very strong player and you will win most battles.
The best thing to do is use the Tomb Of The Mask Hack rarely. Once you've got access to unlimited Coins, you can unlock all the weapons you think will help you. The more often you use the hack, the less time you will spend actually playing the game and this will make the game boring. While the hack is beneficial in situations where you need assistance and you're stuck, overusing it will make the game just too easy to play. You will not find it interesting anymore.
This Tomb Of The Mask Hack is different from all the other hacks available in the market. Firstly, it is an online hack which means it requires no download of any sort. This keeps your system safe from virus and Trojan attacks and enables you to use the hack more efficiently. The core use of this hack is to grant you with unlimited Coins which help you unlock all the weapons and become a strong player. Unlike other hacking tools that require you to enter your personal details, this hack is a simple link that works every time you use it. You are no longer required to enter any of your personal details in order to access the hack. This hack has been tested on various platforms and devices and has worked well at all times.
The best part about this Tomb Of The Mask Hack is that it is user friendly and convenient to use. It's a simple procedure that enables you to get unlimited Coins within minutes. While it is not recommended to overuse the hack, you can use it as often as you need to. | {
"redpajama_set_name": "RedPajamaC4"
} | 2,516 | [
128000,
51,
2925,
5046,
578,
20519,
36082,
374,
459,
2930,
5507,
3549,
311,
1520,
499,
5376,
701,
5070,
555,
7231,
499,
1949,
62876,
369,
279,
1847,
917,
57272,
5046,
578,
20519,
555,
1701,
459,
2930,
14143,
627,
791,
57272,
5046,
578,
20519,
36082,
374,
459,
2930,
17524,
902,
374,
4228,
311,
1005,
323,
8779,
499,
1514,
279,
1847,
304,
264,
2731,
11827,
13,
8876,
420,
17524,
374,
2930,
499,
1541,
956,
1205,
311,
4685,
904,
3241,
323,
701,
3756,
374,
2744,
6220,
505,
17188,
323,
96615,
13,
2684,
527,
264,
1396,
315,
7720,
430,
499,
649,
636,
505,
420,
17524,
11,
719,
279,
1925,
2449,
374,
279,
27862,
62876,
14143,
13,
1115,
8779,
499,
3780,
279,
1888,
14787,
304,
279,
1847,
323,
3719,
264,
3831,
2851,
13,
578
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
51,
2925,
5046,
578,
20519,
36082,
374,
459,
2930,
5507,
3549,
311,
1520,
499,
5376,
701,
5070,
555,
7231,
499,
1949,
62876,
369,
279,
1847,
917,
57272,
5046,
578,
20519,
555,
1701,
459,
2930,
14143,
627,
791,
57272,
5046,
578,
20519,
36082,
374,
459,
2930,
17524,
902,
374,
4228,
311,
1005,
323,
8779,
499,
1514,
279,
1847,
304,
264,
2731,
11827,
13,
8876,
420,
17524,
374,
2930,
499,
1541,
956,
1205,
311,
4685,
904,
3241,
323,
701,
3756,
374,
2744,
6220,
505,
17188,
323,
96615,
13,
2684,
527,
264,
1396,
315,
7720,
430,
499,
649,
636,
505,
420,
17524,
11,
719,
279,
1925,
2449,
374,
279,
27862,
62876,
14143,
13,
1115,
8779,
499,
3780,
279,
1888,
14787,
304,
279,
1847,
323,
3719,
264,
3831,
2851,
13,
578,
-100
]
|
Volunteers with the Friends of Lardeau River set up the diversionary salt licks on April 18. Photo submitted
The goat problem vexed Leonard Sielecki for over a decade.
Every spring, goats suffering from mineral deficiency following the long winter trek down mountains in search of salt. They find it on B.C. highways, which either have salt left over from icy conditions or may draw the animals in with the road's brine residue.
Sielecki, who manages the Ministry of Transportation and Infrastructure's wildlife program, is an expert on vehicle collision mitigation. But luring goats away from the roads proved more difficult than he expected, at least until he realized he should just give the animals what they wanted.
"It sounds very simple now but for some reason it took a lot of thinking to come up with that," he said.
Sielecki's not kidding. He'd previously tried a number of deterrents, such as mixing cayenne pepper into salt (which worked on goats and, unexpectedly, also on allergic drivers) or magnesium chloride (which not only made the goats sick but also damaged vehicles and cars).
He even tried placing satchels of dog fur from wolf-like species such as huskies and malamutes along the highway. That also backfired. "If you're ever going to do an experiment like that, make sure you freeze all the boxes because you'll get fleas," he said.
Finally, after at least one goat was killed last summer on Highway 31 between the small West Kootenay towns of Lardeau and Argenta, Sielecki decided to try another tact.
Sielecki contacted Nelson-based wildlife research biologist Kim Poole, who partnered with the Friends of Lardeau River to haul approximately 125 kilograms of livestock salt up the hill from the highway late last summer. They set up small piles and hoped it would distract the goats from the nearby highway.
"I put some cameras up and if you can believe it, within 55 minutes of us leaving the goats were on the lick site," said Poole. "So in the short term it looked really promising."
Mountain goats have long been a fixture on the Lardeau Bluffs.
The Ministry of Forests, Lands, Natural Resource Operations and Rural Development estimates the herd's population is 50, but Poole said he's had locals tell him it is more likely 25 to 30. The goats are also protected from hunting after a ban was placed on the bluffs in 2004.
Protecting the goats, Poole said, is a local prerogative.
"It's not like you have several hundred goats running around in that area and dropping one or two to a vehicle isn't such a bad thing," he said. "It's just not a lot of goats. You don't want to lose too many of them."
Last year the salt licks were placed too late in the season to judge how successful they were. This year, Poole and nine volunteers returned on April 18 with 175 kilos of salt that were placed in two different locations about 150 metres from the highway. The transportation ministry has purchased approximately 400 kilos of salt, which Poole said he'll use to replenish the licks every four-to-six weeks.
The salt is placed in spread-out piles to simulate natural licks. Sielecki said he opted against using blocks to avoid the possibility of animals sharing diseases.
It's still too early to know if the project is a success, but Lardeau isn't the only community trying out the licks. Three sites have also been added in the East Kootenay and Sielecki has plans for two more.
Although the salt can keep drivers safe from collisions, Sielecki said protecting animals is his priority. He recalled meeting a woman in Kaslo and mentioning the Lardeau goats.
"She knew the herd. That was really neat because I'm trying to help a herd she knows locally. It's that attachment people have, that love people have for the wildlife of our province."
[email protected]
This group hauled 150 kilograms of salt up a steep hill in order to protect the local goat herd. Photo submitted
These goats were caught on video taking advantage of a salt lick near Lardeau meant to divert them from the nearby highway. Screenshot courtesy Ministry of Transportation and Infrastructure
B.C. woman looks for spot to show overdose display blessed by Pope
Watering restrictions begin in Mission | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 1,880 | [
128000,
37461,
63784,
449,
279,
23323,
315,
32404,
451,
2933,
11188,
743,
709,
279,
77364,
661,
12290,
326,
5908,
389,
5936,
220,
972,
13,
11064,
14976,
198,
791,
54392,
3575,
84265,
291,
41954,
8663,
94976,
72,
369,
927,
264,
13515,
627,
11769,
10683,
11,
71932,
16066,
505,
25107,
48294,
2768,
279,
1317,
12688,
45688,
1523,
24405,
304,
2778,
315,
12290,
13,
2435,
1505,
433,
389,
426,
732,
13,
60395,
11,
902,
3060,
617,
12290,
2163,
927,
505,
67004,
4787,
477,
1253,
4128,
279,
10099,
304,
449,
279,
5754,
596,
1437,
483,
49232,
627,
50,
25641,
98838,
11,
889,
29972,
279,
20214,
315,
30978,
323,
45587,
596,
30405,
2068,
11,
374,
459,
6335,
389,
7458,
19277,
66860,
13,
2030,
326,
1711,
71932,
3201,
505,
279,
19795,
19168,
810,
5107
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
37461,
63784,
449,
279,
23323,
315,
32404,
451,
2933,
11188,
743,
709,
279,
77364,
661,
12290,
326,
5908,
389,
5936,
220,
972,
13,
11064,
14976,
198,
791,
54392,
3575,
84265,
291,
41954,
8663,
94976,
72,
369,
927,
264,
13515,
627,
11769,
10683,
11,
71932,
16066,
505,
25107,
48294,
2768,
279,
1317,
12688,
45688,
1523,
24405,
304,
2778,
315,
12290,
13,
2435,
1505,
433,
389,
426,
732,
13,
60395,
11,
902,
3060,
617,
12290,
2163,
927,
505,
67004,
4787,
477,
1253,
4128,
279,
10099,
304,
449,
279,
5754,
596,
1437,
483,
49232,
627,
50,
25641,
98838,
11,
889,
29972,
279,
20214,
315,
30978,
323,
45587,
596,
30405,
2068,
11,
374,
459,
6335,
389,
7458,
19277,
66860,
13,
2030,
326,
1711,
71932,
3201,
505,
279,
19795,
19168,
810,
5107,
-100
]
|
Almost 1,000 Palestinians live in a disused hospital 23 years after fleeing fighting.
"We thought we would be here for a few months," says Huda al-Rukun, her red-rimmed eyes flicking around the tiny space she shares with her husband and five children. "No-one believed we would stay this long."
Twenty-three years after they were forced out of the nearby Shatila refugee camp during a particularly bloody phase of the Lebanese civil war known as the War of the Camps, the Palestinian al-Rukun family are one of hundreds still living in a disused hospital in south Beirut.
The conflict may have finished 19 years ago, but many of those who fled the fighting have not been allowed back. Rebuilding was only permitted on the original site of camp, so those who had lived in the unofficial settlements attached to Shatila found themselves homeless.
Instead of returning to the camp, those families have spent the past quarter of a century squatting in the hospital complex, known locally as the Gaza buildings. This "temporary" shelter has become a permanent slum, housing almost a thousand people.
It is just a short taxi ride from downtown Beirut, but the buildings' crumbling rooms make the city's bright lights and trendy beach clubs seem a distant memory. Some of its residents live without running water, others without regular electricity. All are desperately poor.
The community is known as a "gathering," the name given to any informal Palestinian settlement outside Lebanon's 12 official camps.
Officials say that almost half of the 400,000 Palestinians in Lebanon now live in gatherings, where they are particularly vulnerable to poverty and ill-health.
"Palestinians in Lebanon live with a very high unemployment rate, and have limited access to public services and to the job market. This makes them poorer than Palestinians living in other countries," says Hoda el Turk, a spokeswoman for the UN Relief and Works Agency (UNRWA) in Lebanon, which is tasked with providing services for Palestinian refugees.
She says those living outside the camps are not eligible for some of the essential services provided by the agency. "They cannot have their shelter rehabilitated by UNRWA because they are outside the camps, where UNRWA has no mandate to work," she explains.
As a result, living conditions in Palestinian gatherings are often dire. The EU recently paid for improvements to the Gaza buildings, but walking through the main entrance to the al-Rukuns' building, you would not know it.
Electricity cables loop from the ceiling in the corridors, dropping dangerously close to the puddles of stagnant water that gather on the bare concrete floors. Rubbish piles up in the disused lift shafts, infusing the place with a permanent stench of decay, and a trickle of foul-smelling liquid drips down the staircase from an unseen source.
Inside the family's two spartan rooms on the fourth floor, there have been efforts to brighten things up. A threadbare rug lies on the floor, and a carefully placed picture frame covers the worst of a crack in the wall. But it is hard to escape the squalor of the buildings; refuse is piled up on the flat roof outside the window, rotting in the late summer heat.
"The only good thing about this place is that we don't pay rent," Huda says, watching her youngest children playing together on the floor.
The mother of five fears for their future. "There is no life here for my children," she says. "They have no privacy. There is no dignity. They get sick all the time."
But they have nowhere else to go. The camps are full and poverty is rife. UNRWA is facing serious funding problems, and the possibility of cutting services and scaling back operations is never far away.
Meanwhile, figures released in June show there is a greater proportion of designated "hardship cases"- a status given to particularly poor or vulnerable refugees - in the Palestinian population of Lebanon than anywhere else in the region, including the Gaza Strip.
It is a sign of the desperate conditions that many Palestinian refugees in Lebanon have found themselves in.
For those living in the gatherings, accessing UNRWA services can be difficult. Most of UNWRA's facilities - schools, clinics and welfare offices - are inside the camps, and while in theory they are open to all registered Palestinians, regardless of where they live, in practise getting from the more remote gatherings to the camps can be difficult.
Even in the Gaza buildings, which lie close to the facilities of the Shatila camp, almost a quarter of the children do not go to school and the residents rely on local NGOs rather than UNRWA for essential services.
Rita Hamdan, the director of Popular Aid for Relief and Development, a local NGO, has been involved in helping residents of the buildings since they arrived in 1986.
"These people have been deprived of many direct services," she says. "We are raising awareness on health issues, and provide sanitation services. We also run a clinic, and a community development centre where we do youth activities."
She believes that money would be better spent on moving the residents of the hospital than on endless maintenance projects.
"The best solution is not to improve the Gaza buildings," she says. "There is no sustainability there. It was not built to accommodate all these people. They shouldn't be made to stay there for ever."
But back in the gloom of the disused hospital, Huda says she does not expect to leave the damp rooms that have become her home any time soon.
"I have no hope for the future," she says, looking to the door and sighing. "Maybe what I haven't had in this life, I will be given in the next." | {
"redpajama_set_name": "RedPajamaC4"
} | 9,127 | [
128000,
39782,
220,
16,
11,
931,
34234,
3974,
304,
264,
834,
2656,
8952,
220,
1419,
1667,
1306,
50387,
11039,
627,
10944,
3463,
584,
1053,
387,
1618,
369,
264,
2478,
4038,
1359,
2795,
473,
8213,
453,
11151,
3178,
359,
11,
1077,
2579,
3880,
318,
2106,
6548,
29447,
287,
2212,
279,
13987,
3634,
1364,
13551,
449,
1077,
10177,
323,
4330,
2911,
13,
330,
2822,
19101,
11846,
584,
1053,
4822,
420,
1317,
10246,
76896,
49493,
1667,
1306,
814,
1051,
9770,
704,
315,
279,
14373,
1443,
266,
10746,
34267,
3190,
2391,
264,
8104,
36277,
10474,
315,
279,
69345,
8431,
4208,
3967,
439,
279,
5111,
315,
279,
9702,
82,
11,
279,
22596,
453,
11151,
3178,
359,
3070,
527,
832,
315,
11758,
2103,
5496,
304,
264,
834,
2656,
8952,
304,
10007,
95411,
627,
791
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
39782,
220,
16,
11,
931,
34234,
3974,
304,
264,
834,
2656,
8952,
220,
1419,
1667,
1306,
50387,
11039,
627,
10944,
3463,
584,
1053,
387,
1618,
369,
264,
2478,
4038,
1359,
2795,
473,
8213,
453,
11151,
3178,
359,
11,
1077,
2579,
3880,
318,
2106,
6548,
29447,
287,
2212,
279,
13987,
3634,
1364,
13551,
449,
1077,
10177,
323,
4330,
2911,
13,
330,
2822,
19101,
11846,
584,
1053,
4822,
420,
1317,
10246,
76896,
49493,
1667,
1306,
814,
1051,
9770,
704,
315,
279,
14373,
1443,
266,
10746,
34267,
3190,
2391,
264,
8104,
36277,
10474,
315,
279,
69345,
8431,
4208,
3967,
439,
279,
5111,
315,
279,
9702,
82,
11,
279,
22596,
453,
11151,
3178,
359,
3070,
527,
832,
315,
11758,
2103,
5496,
304,
264,
834,
2656,
8952,
304,
10007,
95411,
627,
791,
-100
]
|
Q: Determine whether the set $\{ k \in \mathbb R^{1 \times n} : \rho(A-bk^T) < 1 \}$ is convex Suppose we have a controllable (stabilizable) pair $(A, b)$ (Definition can be found here and it is equivalent to $(b, Ab, A^2b, \dots, A^n b)$ having full rank), where $A \in \mathbb R^{n \times n}$ and $b \in \mathbb R^{n}$. I am interested in determining whether the following set
$$\{ k \in \mathbb R^{n} : \rho(A-b k^T) < 1 \}$$
where $\rho(\cdot)$ denotes the spectral radius, is convex. In control theory, this set corresponds to stabilizing feedback controllers and have many real applications.
In general, there is no reason to believe the set of stabilizing feedback controllers to be convex. As pointed in Appendix B of this paper, if $A \in \mathbb R^{3 \times 3}$ and $B \in \mathbb R^{3 \times 3}$ we can easily construct an example to show the corresponding stable feedback controller set is not convex.
But here I am considering a modest case, where $b$ is restricted to be $\mathbb R^{n}$. The reason for me to believe the set is probably to be convex is simulation result. Indeed, in all my randomly generated $(A, b)$, the set of $k$ forms a convex set for $n=2, 3, 4$ (I grid the space of $\mathbb R^{n}$ and check the eigenvalues for each point). For higher dimensions, it takes much longer to simulate. So either the set is indeed convex or I am not sampling the space fine enough.
As commented by @loup blanc, the question was initially formulated for the specific case $n=2$. Before it drew too much attention, I did more simulations to see the shape of $k$ and then I changed the formulation since I am not sure it is OK to start a new question. If this brought inconvenience, I sincerely apologize.
A: I'm not aware of any specific convexity results for the single-input $b \in \mathbb{R}^n$ case you mentioned, but for the general case of multiple inputs and $B \in \mathbb{R}^{n \times m}$, there exists a very useful convexifying change of variables that is often used for controller design. This means that the nonconvexity of the set of stabilising $K$ is not usually an issue and state feedback controllers can be designed using convex optimisation.
A discrete time linear system is stabilised by a state feedback $K$ if and only if $A + BK$ admits a quadratic Lyapunov function, so that for some symmetric matrix $P$ we have
$$
x^T P x > 0, \qquad x^T P x - x^T (A+BK)^T P (A+BK) x < 0
$$
for all $x \neq 0$. Factorising the LHS of the second inequality gives
$$
x^T P x > 0, \qquad x^T \left( P - (A+BK)^T P (A+BK) \right) x < 0
$$
for all $x \neq 0$, which is equivalent to the matrix inequalities:
$$
P \succ 0, \qquad - P + (A+BK)^T P (A+BK) \succ 0
$$
The second inequality is jointly nonconvex in $P$ and $K$, but we can make it convex by pre-and post- multiplying by $Q = P^{-1}$ (noting that $Q$ is positive definite iff $P$ is)
$$
Q \succ 0, \qquad - Q + Q (A+BK)^T Q^{-1} (A+BK) Q \succ 0
$$
then applying the Schur Complement Lemma to give
$$
\left[ \begin{array}{cc} -Q & Q (A+BK)^T \\ (A+BK)Q & -Q\end{array} \right] \succ 0
$$
and then considering a change of variables $Y = K Q$ to yield
$$
\left[ \begin{array}{cc} -Q & Q A^T+Y^T B^T \\ AQ+BY & -Q\end{array} \right] \succ 0
$$
which is a Linear Matrix Inequality (LMI) in the variables $Q$ and $Y$ and therefore define a convex set (a spectrahedron). This parameterises the whole set of stabilising state feedback controllers, in the sense that for any $Q$ and $Y$ satisfying the LMI, $K = Y Q ^{-1}$ gives a stabilising state feedback and if the LMI is infeasible then no such $K$ exists.
I suggest taking a look at the book by Boyd and co-workers on LMIs in control, which is available online at https://web.stanford.edu/~boyd/lmibook/. Chapter 7 in particular contains many results about state feedback synthesis in continuous-time for various system types (LTI, LDI, LFT), and some discrete-time results are available in Chapter 9 (for the more general case of stochastic systems).
| {
"redpajama_set_name": "RedPajamaStackExchange"
} | 1,768 | [
128000,
48,
25,
31001,
3508,
279,
743,
59060,
90,
597,
1144,
258,
1144,
10590,
6194,
432,
48922,
16,
1144,
15487,
308,
92,
551,
1144,
41422,
4444,
1481,
74,
61,
51,
8,
366,
220,
16,
1144,
32816,
374,
67030,
83710,
584,
617,
264,
687,
69855,
320,
267,
13052,
8499,
8,
6857,
5035,
32,
11,
293,
15437,
320,
10614,
649,
387,
1766,
1618,
323,
433,
374,
13890,
311,
5035,
65,
11,
3765,
11,
362,
61,
17,
65,
11,
1144,
68916,
11,
362,
87267,
293,
15437,
3515,
2539,
7222,
705,
1405,
400,
32,
1144,
258,
1144,
10590,
6194,
432,
48922,
77,
1144,
15487,
308,
32816,
323,
400,
65,
1144,
258,
1144,
10590,
6194,
432,
48922,
77,
92,
13244,
358,
1097,
8173,
304,
26679,
3508,
279,
2768,
743,
720,
14415,
59,
90
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
31001,
3508,
279,
743,
59060,
90,
597,
1144,
258,
1144,
10590,
6194,
432,
48922,
16,
1144,
15487,
308,
92,
551,
1144,
41422,
4444,
1481,
74,
61,
51,
8,
366,
220,
16,
1144,
32816,
374,
67030,
83710,
584,
617,
264,
687,
69855,
320,
267,
13052,
8499,
8,
6857,
5035,
32,
11,
293,
15437,
320,
10614,
649,
387,
1766,
1618,
323,
433,
374,
13890,
311,
5035,
65,
11,
3765,
11,
362,
61,
17,
65,
11,
1144,
68916,
11,
362,
87267,
293,
15437,
3515,
2539,
7222,
705,
1405,
400,
32,
1144,
258,
1144,
10590,
6194,
432,
48922,
77,
1144,
15487,
308,
32816,
323,
400,
65,
1144,
258,
1144,
10590,
6194,
432,
48922,
77,
92,
13244,
358,
1097,
8173,
304,
26679,
3508,
279,
2768,
743,
720,
14415,
59,
90,
-100
]
|
First, you need to show your interest and prove to them you can solve research problems. Following guide was written by a second semester MS in Mechanical Engineering student in USA.
Details of the Professors / curriculum vitae – Can be found from department site.
Don't worry at all if you're not getting reply from Professor. Usually they rarely reply to students who use mail IDs other than the university's mail IDs. Even if you don't get to know their latest research work and the labs where they work through their e-mail, just make a reminder of it somewhere so that you don't forget to collect that information once you reach US.
Find all the publications of the Professor through Google, Google Scholar, Science Direct etc. If it is copyrighted and you're unable to access it, make a note of it. Take printouts of all the publications that are accessible to you. Read them carefully with interest. Find some topic in the paper that interests you to discuss with someone. Note down all your doubts. Do some other ground works like getting to know about the latest developments in that field. Use Google to find some resources for it. Refer some textbooks. Even little knowledge about the topic in this manner is enough to start a successful conversation with the Professor.
hi …my gre score 287….am i eligible to study in USA??
i completed graduation level next my plan is study the ms in us.but i have no economical back ground.
I have 3 years bachelors degree From University of Colombo in Sri lanka and 2 years Masters Degree in Applied Statistics.GRE 1070(730 Gor Quantitative Part).I am looking forward to sit for the TOEFL.
I am Looking forward to apply for the PHD in Applied Statistics.What is the chance of me getting selected for the course in overall. | {
"redpajama_set_name": "RedPajamaC4"
} | 6,878 | [
128000,
5451,
11,
499,
1205,
311,
1501,
701,
2802,
323,
12391,
311,
1124,
499,
649,
11886,
3495,
5435,
13,
23548,
8641,
574,
5439,
555,
264,
2132,
34253,
10504,
304,
51684,
17005,
5575,
304,
7427,
627,
7955,
315,
279,
8626,
434,
1105,
611,
30676,
64220,
1389,
3053,
387,
1766,
505,
9476,
2816,
627,
8161,
956,
11196,
520,
682,
422,
499,
2351,
539,
3794,
10052,
505,
17054,
13,
34067,
814,
19029,
10052,
311,
4236,
889,
1005,
8232,
29460,
1023,
1109,
279,
12374,
596,
8232,
29460,
13,
7570,
422,
499,
1541,
956,
636,
311,
1440,
872,
5652,
3495,
990,
323,
279,
51048,
1405,
814,
990,
1555,
872,
384,
11724,
11,
1120,
1304,
264,
27626,
315,
433,
15038,
779,
430,
499,
1541,
956,
10894,
311,
6667,
430,
2038,
3131,
499,
5662,
2326
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
5451,
11,
499,
1205,
311,
1501,
701,
2802,
323,
12391,
311,
1124,
499,
649,
11886,
3495,
5435,
13,
23548,
8641,
574,
5439,
555,
264,
2132,
34253,
10504,
304,
51684,
17005,
5575,
304,
7427,
627,
7955,
315,
279,
8626,
434,
1105,
611,
30676,
64220,
1389,
3053,
387,
1766,
505,
9476,
2816,
627,
8161,
956,
11196,
520,
682,
422,
499,
2351,
539,
3794,
10052,
505,
17054,
13,
34067,
814,
19029,
10052,
311,
4236,
889,
1005,
8232,
29460,
1023,
1109,
279,
12374,
596,
8232,
29460,
13,
7570,
422,
499,
1541,
956,
636,
311,
1440,
872,
5652,
3495,
990,
323,
279,
51048,
1405,
814,
990,
1555,
872,
384,
11724,
11,
1120,
1304,
264,
27626,
315,
433,
15038,
779,
430,
499,
1541,
956,
10894,
311,
6667,
430,
2038,
3131,
499,
5662,
2326,
-100
]
|
When you join this run of The MineThatData Elite Program, you get the following.
Your comp segment analysis for the past few years.
File evolution over the past few years - explaining how your business is changing behind the scenes.
A five year forecast for where your business is headed.
Yesterday we talked about file evolution. Today we'll briefly discuss where your business is headed.
This is the base-case for a business, and it doesn't look good, does it?
New buyer counts need to "go nuts" (in red) for the business to grow at a reasonable rate.
With the file evolution analysis and the five year forecast, it's hard to figure out what would stop you from participating in this round.
New Clients = $1,800 for this run, then you are in at the $1,000 level going forward.
Contact me to participate ([email protected]) ... I will share file formats and expectations with you. | {
"redpajama_set_name": "RedPajamaC4"
} | 624 | [
128000,
4599,
499,
5249,
420,
1629,
315,
578,
31783,
4897,
1061,
34864,
6826,
11,
499,
636,
279,
2768,
627,
7927,
1391,
10449,
6492,
369,
279,
3347,
2478,
1667,
627,
1738,
15740,
927,
279,
3347,
2478,
1667,
482,
26073,
1268,
701,
2626,
374,
10223,
4920,
279,
16451,
627,
32,
4330,
1060,
18057,
369,
1405,
701,
2626,
374,
19946,
627,
51377,
584,
15243,
922,
1052,
15740,
13,
11450,
584,
3358,
27851,
4358,
1405,
701,
2626,
374,
19946,
627,
2028,
374,
279,
2385,
39585,
369,
264,
2626,
11,
323,
433,
3250,
956,
1427,
1695,
11,
1587,
433,
5380,
3648,
26171,
14921,
1205,
311,
330,
3427,
31049,
1,
320,
258,
2579,
8,
369,
279,
2626,
311,
3139,
520,
264,
13579,
4478,
627,
2409,
279,
1052,
15740,
6492,
323,
279,
4330,
1060,
18057
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
499,
5249,
420,
1629,
315,
578,
31783,
4897,
1061,
34864,
6826,
11,
499,
636,
279,
2768,
627,
7927,
1391,
10449,
6492,
369,
279,
3347,
2478,
1667,
627,
1738,
15740,
927,
279,
3347,
2478,
1667,
482,
26073,
1268,
701,
2626,
374,
10223,
4920,
279,
16451,
627,
32,
4330,
1060,
18057,
369,
1405,
701,
2626,
374,
19946,
627,
51377,
584,
15243,
922,
1052,
15740,
13,
11450,
584,
3358,
27851,
4358,
1405,
701,
2626,
374,
19946,
627,
2028,
374,
279,
2385,
39585,
369,
264,
2626,
11,
323,
433,
3250,
956,
1427,
1695,
11,
1587,
433,
5380,
3648,
26171,
14921,
1205,
311,
330,
3427,
31049,
1,
320,
258,
2579,
8,
369,
279,
2626,
311,
3139,
520,
264,
13579,
4478,
627,
2409,
279,
1052,
15740,
6492,
323,
279,
4330,
1060,
18057,
-100
]
|
Q: Given the VB.net code, combine multiple queries into 1 Given this code below which returns a first recordset (rs) based on a date range with some values that are then used in the second recordset (rs2) to sum up a cost. Further explanation is below the code:
strSQL = "SELECT job, suffix, isnull(qty_scrapped,0),isnull(qty_released,0), isnull(price,0),co_num FROM vwDashboardsQuality "
strSQL &= " WHERE trans_date >= '" & dtpStartDate.Value & "' AND trans_date <= '" & dtpEndDate.Value & "' "
rs = conn.Execute(strSQL)
While Not rs.EOF
strCONUM = Trim("" & rs("co_num").Value)
strSelectString = "SELECT ISNULL(a_cost,0) FROM jobmatl WHERE job='" & rs("job").Value & "' AND suffix = " & Format(rs("suffix").Value)
rs2 = conn.Execute(strSelectString)
While Not rs2.EOF
dblSumActualMaterialCost = dblSumActualMaterialCost + CDbl(rs2(0).Value)
rs2.MoveNext()
End While
rs2.Close()
rs2 = Nothing
rs.MoveNext()
End While
rs.Close()
rs = Nothing
I want to combine the queries into a single query so I am not hitting the database through the second recordset (rs2) just to sum up something that I know can be done in a single query.
Any tips would be helpful. Thank you in advance.
A: It looks like you're just needing to do an inner join on the two queries to get one result set.
See if this works. If so, you can eliminate the second query and second inner loop.
strSQL = "SELECT d.job, d.suffix, isnull(d.qty_scrapped,0), isnull(d.qty_released,0)," _
& " isnull(d.price,0), d.co_num, ISNULL(m.a_cost,0)" _
& " FROM vwDashboardsQuality d" _
& " INNER JOIN jobmatl m" _
& " ON d.job = m.job" _
& " AND d.suffix = m.suffix" _
& " WHERE trans_date >= '" & dtpStartDate.Value & "'" _
& " AND trans_date <= '" & dtpEndDate.Value & "'"
You can paste this in Management Studio, replacing dates as applicable to check the results.
SELECT d.job, d.suffix, isnull(d.qty_scrapped,0), isnull(d.qty_released,0), isnull(d.price,0), d.co_num,
ISNULL(m.a_cost,0)
FROM vwDashboardsQuality d
INNER JOIN jobmatl m
ON d.job = m.job
AND d.suffix = m.suffix
WHERE trans_date >= '2015-09-29'
AND trans_date <= '2015-09-30'
A: From your code I see that you are at the end just running a SUM on all values for jobmatl.a_cost that fulfill a condition set by the where clause. So why not doing everything on the same query? And you will save yourself all the unnecessary iterations on the result set, you are loosing previous CPU time and resources there.
Also, you are not using all other values on the first query, why getting them on the first place? I removed them from the following query.
SELECT SUM(j.a_cost)
FROM vwDashboardsQuality vDQ
INNER JOIN jobmatl j
ON vDQ.job = j.job
AND vDQ.suffix = j.suffix
WHERE vDQ.trans_date >= @startdate
AND vDQ.trans_date <= @enddate;
| {
"redpajama_set_name": "RedPajamaStackExchange"
} | 3,131 | [
128000,
48,
25,
16644,
279,
64539,
5181,
2082,
11,
16343,
5361,
20126,
1139,
220,
16,
16644,
420,
2082,
3770,
902,
4780,
264,
1176,
3335,
751,
320,
5544,
8,
3196,
389,
264,
2457,
2134,
449,
1063,
2819,
430,
527,
1243,
1511,
304,
279,
2132,
3335,
751,
320,
5544,
17,
8,
311,
2694,
709,
264,
2853,
13,
220,
15903,
16540,
374,
3770,
279,
2082,
512,
496,
6827,
284,
330,
4963,
2683,
11,
21166,
11,
374,
2994,
10806,
1919,
60828,
5795,
11,
15,
705,
285,
2994,
10806,
1919,
1311,
4778,
11,
15,
705,
374,
2994,
45846,
11,
15,
705,
1030,
4369,
4393,
75186,
43363,
19826,
34174,
6360,
496,
6827,
14923,
330,
286,
5401,
1380,
4257,
2669,
7273,
612,
294,
796,
45630,
6298,
612,
7326,
3651,
1380,
4257,
2717,
7273,
612,
294
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
16644,
279,
64539,
5181,
2082,
11,
16343,
5361,
20126,
1139,
220,
16,
16644,
420,
2082,
3770,
902,
4780,
264,
1176,
3335,
751,
320,
5544,
8,
3196,
389,
264,
2457,
2134,
449,
1063,
2819,
430,
527,
1243,
1511,
304,
279,
2132,
3335,
751,
320,
5544,
17,
8,
311,
2694,
709,
264,
2853,
13,
220,
15903,
16540,
374,
3770,
279,
2082,
512,
496,
6827,
284,
330,
4963,
2683,
11,
21166,
11,
374,
2994,
10806,
1919,
60828,
5795,
11,
15,
705,
285,
2994,
10806,
1919,
1311,
4778,
11,
15,
705,
374,
2994,
45846,
11,
15,
705,
1030,
4369,
4393,
75186,
43363,
19826,
34174,
6360,
496,
6827,
14923,
330,
286,
5401,
1380,
4257,
2669,
7273,
612,
294,
796,
45630,
6298,
612,
7326,
3651,
1380,
4257,
2717,
7273,
612,
294,
-100
]
|
HCSB
Chapter:45
Reading Mode Parallel Chapters Popular Verse Thematic Bible Interlinear Images
Joseph Reveals His Identity
1 Joseph could no longer keep his composure in front of all his attendants,(a) so he called out, "Send everyone away from me!" No one was with him when he revealed his identity to his brothers.(A)
2 But he wept so loudly that the Egyptians heard it, and also Pharaoh's household heard it.
3 Joseph said to his brothers, "I am Joseph! Is my father still living?" But they could not answer him because they were terrified in his presence.
4 Then Joseph said to his brothers, "Please, come near me," and they came near. "I am Joseph, your brother," he said, "the one you sold into Egypt.(B)
5 And now don't be worried or angry with yourselves for selling me here, because God sent me ahead of you to preserve life.(C)
6 For the famine has been in the land these two years, and there will be five more years without plowing or harvesting.
7 God sent me ahead of you to establish you as a remnant within the land and to keep you alive by a great deliverance.(b)
8 Therefore it was not you who sent me here, but God. He has made me a father to Pharaoh, lord of his entire household, and ruler over all the land of Egypt.
9 "Return quickly to my father and say to him, 'This is what your son Joseph says: "God has made me lord of all Egypt. Come down to me without delay.
10 You can settle in the land of Goshen(D) and be near me—you, your children, and grandchildren, your sheep, cattle, and all you have.
11 There I will sustain you, for there will be five more years of famine. Otherwise, you, your household, and everything you have will become destitute."'(E)
12 Look! Your eyes and my brother Benjamin's eyes can see that it is I , Joseph, who am(c) speaking to you.
13 Tell my father about all my glory in Egypt and about all you have seen. And bring my father here quickly."(F)
14 Then Joseph threw his arms around Benjamin and wept, and Benjamin wept on his shoulder.
15 Joseph kissed each of his brothers as he wept,(d) and afterward his brothers talked with him.
The Return for Jacob
16 When the news reached Pharaoh's palace, "Joseph's brothers have come," Pharaoh and his servants were pleased.
17 Pharaoh said to Joseph, "Tell your brothers, 'Do this: Load your animals and go on back to the land of Canaan.
18 Get your father and your families, and come back to me. I will give you the best of the land of Egypt, and you can eat from the richness of the land.'
19 You are also commanded, 'Do this: Take wagons from the land of Egypt for your young children and your wives and bring your father here.(G)
20 Do not be concerned about your belongings, for the best of all the land of Egypt is yours.'"(H)
21 The sons of Israel did this. Joseph gave them wagons as Pharaoh had commanded, and he gave them provisions for the journey.
22 He gave each of the brothers changes of clothes,(I) but he gave Benjamin 300 pieces of silver and five changes of clothes.(J)
23 He sent his father the following: 10 donkeys carrying the best products of Egypt and 10 female donkeys carrying grain, food, and provisions for his father on the journey.
24 So Joseph sent his brothers on their way, and as they were leaving, he said to them, "Don't argue on the way."
25 So they went up from Egypt and came to their father Jacob in the land of Canaan.
26 They said, "Joseph is still alive, and he is ruler over all the land of Egypt!" Jacob was stunned,(e) for he did not believe them.
27 But when they told Jacob all that Joseph had said to them, and when he saw the wagons that Joseph had sent to transport him, the spirit of their father Jacob revived.
28 Then Israel said, "Enough! My son Joseph is still alive. I will go to see him before I die."
a. Genesis 45:1: Lit all those standing about him
b. Genesis 45:7: Or keep alive for you many survivors
c. Genesis 45:12: Lit that my mouth is
d. Genesis 45:15: Lit brothers, and he wept over them
e. Genesis 45:26: Lit Jacob's heart was numb
A. Genesis 45:1: Acts 7:13
B. Genesis 45:4: Genesis 37:18-36
C. Genesis 45:5: Genesis 45:7-8; Genesis 50:20; Psalm 105:17
D. Genesis 45:10: Genesis 46:34; Genesis 47:1; Genesis 47:4; Genesis 47:6; Genesis 47:11; Genesis 47:27; Genesis 50:8; Exodus 8:22; Joshua 10:41
E. Genesis 45:11: Genesis 47:12; Genesis 50:21
F. Genesis 45:13: Acts 7:14
G. Genesis 45:19: Genesis 46:5
H. Genesis 45:20: Deuteronomy 32:9-14
I. Genesis 45:22: 2 Kings 5:5
J. Genesis 45:22: Genesis 43:34
Cross Refs | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 6,584 | [
128000,
39,
6546,
33,
198,
26072,
25,
1774,
198,
32999,
14904,
50372,
69481,
32495,
85168,
666,
12519,
17377,
5783,
23603,
12041,
198,
61760,
67653,
1147,
5414,
27638,
198,
16,
15466,
1436,
912,
5129,
2567,
813,
470,
12313,
304,
4156,
315,
682,
813,
9604,
1821,
13247,
64,
8,
779,
568,
2663,
704,
11,
330,
11764,
5127,
3201,
505,
757,
9135,
2360,
832,
574,
449,
1461,
994,
568,
10675,
813,
9764,
311,
813,
20820,
13127,
32,
340,
17,
2030,
568,
584,
418,
779,
54945,
430,
279,
82604,
6755,
433,
11,
323,
1101,
2405,
82297,
596,
14048,
6755,
433,
627,
18,
15466,
1071,
311,
813,
20820,
11,
330,
40,
1097,
15466,
0,
2209,
856,
7126,
2103,
5496,
7673,
2030,
814,
1436,
539,
4320,
1461,
1606,
814,
1051,
53731,
304,
813,
9546
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
6546,
33,
198,
26072,
25,
1774,
198,
32999,
14904,
50372,
69481,
32495,
85168,
666,
12519,
17377,
5783,
23603,
12041,
198,
61760,
67653,
1147,
5414,
27638,
198,
16,
15466,
1436,
912,
5129,
2567,
813,
470,
12313,
304,
4156,
315,
682,
813,
9604,
1821,
13247,
64,
8,
779,
568,
2663,
704,
11,
330,
11764,
5127,
3201,
505,
757,
9135,
2360,
832,
574,
449,
1461,
994,
568,
10675,
813,
9764,
311,
813,
20820,
13127,
32,
340,
17,
2030,
568,
584,
418,
779,
54945,
430,
279,
82604,
6755,
433,
11,
323,
1101,
2405,
82297,
596,
14048,
6755,
433,
627,
18,
15466,
1071,
311,
813,
20820,
11,
330,
40,
1097,
15466,
0,
2209,
856,
7126,
2103,
5496,
7673,
2030,
814,
1436,
539,
4320,
1461,
1606,
814,
1051,
53731,
304,
813,
9546,
-100
]
|
Elisa Pezzotta, PhD in Film & Television Studies, Cultore della materia at the University of Bergamo. Her major interests are film analysis, adaptation studies, the concept of time, and Stanley Kubrick. She published articles in Adaptation, Alphaville Journal, Cinergie, Elephant & Castle, Journal of Adaptation in Film & Performance, Offscreen, Wide Screen, and in Ai Confini della comprensione (Ghislotti [ed.], 2012). She co-edited a special issue of Elephant & Castle. She is the author of Stanley Kubrick: Adapting the Sublime (2013). | {
"redpajama_set_name": "RedPajamaC4"
} | 5,459 | [
128000,
6719,
10994,
5250,
10616,
22983,
11,
30661,
304,
17042,
612,
41445,
19241,
11,
26676,
461,
15587,
45558,
520,
279,
3907,
315,
31782,
21781,
13,
6385,
3682,
12034,
527,
4632,
6492,
11,
34185,
7978,
11,
279,
7434,
315,
892,
11,
323,
31552,
63649,
12938,
13,
3005,
4756,
9908,
304,
59531,
367,
11,
1708,
764,
402,
4618,
10139,
11,
30011,
2431,
648,
11,
79189,
612,
27987,
11,
10139,
315,
59531,
367,
304,
17042,
612,
21304,
11,
4206,
8337,
11,
33845,
14275,
11,
323,
304,
57086,
1221,
5589,
72,
15587,
1391,
78440,
6473,
320,
38,
71,
23265,
42327,
510,
291,
13,
1145,
220,
679,
17,
570,
3005,
1080,
35535,
1639,
264,
3361,
4360,
315,
79189,
612,
27987,
13,
3005,
374,
279,
3229,
315,
31552,
63649,
12938,
25,
2467,
391,
1303
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
6719,
10994,
5250,
10616,
22983,
11,
30661,
304,
17042,
612,
41445,
19241,
11,
26676,
461,
15587,
45558,
520,
279,
3907,
315,
31782,
21781,
13,
6385,
3682,
12034,
527,
4632,
6492,
11,
34185,
7978,
11,
279,
7434,
315,
892,
11,
323,
31552,
63649,
12938,
13,
3005,
4756,
9908,
304,
59531,
367,
11,
1708,
764,
402,
4618,
10139,
11,
30011,
2431,
648,
11,
79189,
612,
27987,
11,
10139,
315,
59531,
367,
304,
17042,
612,
21304,
11,
4206,
8337,
11,
33845,
14275,
11,
323,
304,
57086,
1221,
5589,
72,
15587,
1391,
78440,
6473,
320,
38,
71,
23265,
42327,
510,
291,
13,
1145,
220,
679,
17,
570,
3005,
1080,
35535,
1639,
264,
3361,
4360,
315,
79189,
612,
27987,
13,
3005,
374,
279,
3229,
315,
31552,
63649,
12938,
25,
2467,
391,
1303,
-100
]
|
Absolutely stunning home featuring 4 bedrooms on the upper level, including an impressive master suite with dual sinks, soaker tub, cosmetic counter,and walk in closet. This home has it all, main floor office, large mudroom with custom maple lockers and drop zone, fireplace with built-ins, quartz countertops, and stainless appliances included! You will fall in love with this home!
© 2019 Fargo-Moorhead Association of REALTORS. All rights reserved. Information deemed to be reliable but not guaranteed. The data relating to real estate for sale on this website comes from Fargo-Moorhead Association of REALTORS and the Broker Reciprocity Program.sm. Real estate listings held by brokerage firms other than Beyond Realty are marked with the BR logo and detailed information about them includes the name of the listing brokers. Listing broker has attempted to offer accurate data, but buyers are advised to confirm all items. Information last updated on 2019-04-20. | {
"redpajama_set_name": "RedPajamaC4"
} | 1,183 | [
128000,
78145,
20441,
2162,
16850,
220,
19,
28689,
389,
279,
8582,
2237,
11,
2737,
459,
16358,
7491,
16578,
449,
19091,
58052,
11,
779,
4506,
15286,
11,
46552,
5663,
51526,
4321,
304,
33044,
13,
1115,
2162,
706,
433,
682,
11,
1925,
6558,
5274,
11,
3544,
27275,
3039,
449,
2587,
55480,
5409,
388,
323,
6068,
10353,
11,
40511,
449,
5918,
22610,
11,
52255,
85313,
11,
323,
25468,
34802,
5343,
0,
1472,
690,
4498,
304,
3021,
449,
420,
2162,
4999,
20644,
220,
679,
24,
58750,
5364,
10922,
2025,
10229,
315,
26339,
51,
10022,
13,
2052,
3268,
4694,
13,
8245,
25660,
311,
387,
15062,
719,
539,
19883,
13,
578,
828,
23343,
311,
1972,
12675,
369,
6412,
389,
420,
3997,
4131,
505,
58750,
5364,
10922,
2025,
10229,
315,
26339,
51,
10022,
323,
279
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
78145,
20441,
2162,
16850,
220,
19,
28689,
389,
279,
8582,
2237,
11,
2737,
459,
16358,
7491,
16578,
449,
19091,
58052,
11,
779,
4506,
15286,
11,
46552,
5663,
51526,
4321,
304,
33044,
13,
1115,
2162,
706,
433,
682,
11,
1925,
6558,
5274,
11,
3544,
27275,
3039,
449,
2587,
55480,
5409,
388,
323,
6068,
10353,
11,
40511,
449,
5918,
22610,
11,
52255,
85313,
11,
323,
25468,
34802,
5343,
0,
1472,
690,
4498,
304,
3021,
449,
420,
2162,
4999,
20644,
220,
679,
24,
58750,
5364,
10922,
2025,
10229,
315,
26339,
51,
10022,
13,
2052,
3268,
4694,
13,
8245,
25660,
311,
387,
15062,
719,
539,
19883,
13,
578,
828,
23343,
311,
1972,
12675,
369,
6412,
389,
420,
3997,
4131,
505,
58750,
5364,
10922,
2025,
10229,
315,
26339,
51,
10022,
323,
279,
-100
]
|
20th CPC National Congress delegates witness big changes in past decade
Special: 20th CPC National Congress
The past decade has seen notable changes in various fields across the country, according to delegates to the 20th National Congress of the Communist Party of China (CPC), who spoke to the media on Sunday.
"I was sent into space twice in 2013 and 2021. China's manned space program has made new achievements over the past decade, offering us a broader flight platform and longer flight time," said astronaut Wang Yaping.
Short-track skater and Winter Olympic medalist Wu Dajing still remembered the days when they had to queue up into late night for on-ice training due to the lack of skating rinks 10 years ago. "It no longer bothers today's athletes as the indoor skating rinks top 1,400 now."
Kunshan City in east China's Jiangsu Province has seen its industrial scale become larger and its industrial structure more optimized in the past 10 years, according to Zhou Wei, the city's Party chief, adding that the city's proportion of strategic emerging industries has exceeded 50 percent.
Yang Ning, Party chief of Jiangmen Village in Rongshui Miao Autonomous County, south China's Guangxi Zhuang Autonomous Region, has seen the mountainous village shake off poverty with its per capita net income soaring since she returned to her hometown in 2010 as a college graduate.
"I will stay in the village to make it more beautiful and affluent," Yang said.
The spectrum of the more than 2,000 delegates attending the ongoing congress is broadly representative. The delegates come from various sectors, administrative levels, and institutions.
The congress will run from Oct. 16 to 22.
Blooming Bougainvillea flowers look like pink ribbons along viaduct
China's decade of solid progress on emergency response
China's first 120-TEU pure electric inland container ship makes maiden voyage
Frost flowers 'bloom' in N China's forest
Themed exhibition on China's great changes: Culture
Themed exhibition on China's great changes: Science and technology
Primary school students experience rice harvest
Maiwan Water Conservancy under construction in Hainan
CPC outlines China's overall development objectives for year 2035
China opposes protectionism, decoupling: report
CPC expounds on main objectives, tasks for next 5 years
China works to build major-country relations featuring peaceful coexistence, overall stability, balanced development: report
Chinese people's lives see all-around improvement over past decade: report | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 3,662 | [
128000,
508,
339,
96246,
5165,
8151,
36159,
11550,
2466,
4442,
304,
3347,
13515,
198,
20989,
25,
220,
508,
339,
96246,
5165,
8151,
198,
791,
3347,
13515,
706,
3970,
28289,
4442,
304,
5370,
5151,
4028,
279,
3224,
11,
4184,
311,
36159,
311,
279,
220,
508,
339,
5165,
8151,
315,
279,
37961,
8722,
315,
5734,
320,
34,
4977,
705,
889,
12570,
311,
279,
3772,
389,
7418,
627,
7189,
574,
3288,
1139,
3634,
11157,
304,
220,
679,
18,
323,
220,
2366,
16,
13,
5734,
596,
89425,
3634,
2068,
706,
1903,
502,
33997,
927,
279,
3347,
13515,
11,
10209,
603,
264,
27927,
11213,
5452,
323,
5129,
11213,
892,
1359,
1071,
47733,
29346,
816,
14550,
627,
12755,
54566,
1940,
977,
323,
20704,
25944,
37712,
380,
37230,
423,
1662,
287,
2103,
27569,
279,
2919
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
508,
339,
96246,
5165,
8151,
36159,
11550,
2466,
4442,
304,
3347,
13515,
198,
20989,
25,
220,
508,
339,
96246,
5165,
8151,
198,
791,
3347,
13515,
706,
3970,
28289,
4442,
304,
5370,
5151,
4028,
279,
3224,
11,
4184,
311,
36159,
311,
279,
220,
508,
339,
5165,
8151,
315,
279,
37961,
8722,
315,
5734,
320,
34,
4977,
705,
889,
12570,
311,
279,
3772,
389,
7418,
627,
7189,
574,
3288,
1139,
3634,
11157,
304,
220,
679,
18,
323,
220,
2366,
16,
13,
5734,
596,
89425,
3634,
2068,
706,
1903,
502,
33997,
927,
279,
3347,
13515,
11,
10209,
603,
264,
27927,
11213,
5452,
323,
5129,
11213,
892,
1359,
1071,
47733,
29346,
816,
14550,
627,
12755,
54566,
1940,
977,
323,
20704,
25944,
37712,
380,
37230,
423,
1662,
287,
2103,
27569,
279,
2919,
-100
]
|
Home News Anime News Long Running Bleach Manga To Do A Live-Action Movie in 2018
Long Running Bleach Manga To Do A Live-Action Movie in 2018
JRBandillo
At first they we're just rumors but now the news Bleach manga fans have been waiting for is finally here. Tite Kubo's long-running manga Bleach is doing a live-action movie adaptation. The movie will open in Japan sometime in 2018. The news comes in time with the ending of the manga which is now in it's 74th and final volume. Leaks have been circulating online recently but Weekly Shonen Jump is expected to release an official announcement on Monday, August 22nd.
Bleach Live-Action Movie
Sōta Fukushi will play Ichigo Kurosaki, the boy who becomes a shinigami and helps good souls crossover. Shinsuke Sato, known for his work in the Gantz series, Oblivion Island and many others will direct the live-action film. Original creator Tite Kubo will continue to assist in the production to make sure fans remain happy.
Weekly Shonen Jump first published the manga in 2001. Since then, Bleached has inspired an anime TV series and a few films. The manga also became inspiration for a number of video games, novels and musical productions.
Source: Kotaku
Ichigo Kurosaki
Japanese Movie
Shinsuke Sato
Sōta Fukushi
Japanese Trailers
Trailer for New Anime Film "Weathering With You"
Trailer for Upcoming Anime Feature Film "Children of the Sea"
Film Review: Fudoh: The New Generation (1996) by Takashi Miike
Film Review: Bleach (2018) by Shinsuke Sato
Trailer for Upcoming Anime Film "Flavors of Youth"
Film Review: Night is Short, Walk on Girl (2017) by Masaaki Yuasa | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 6,213 | [
128000,
7778,
5513,
52215,
5513,
5843,
29125,
39285,
613,
71035,
2057,
3234,
362,
11406,
12,
2573,
14270,
304,
220,
679,
23,
198,
6720,
29125,
39285,
613,
71035,
2057,
3234,
362,
11406,
12,
2573,
14270,
304,
220,
679,
23,
198,
41,
30359,
438,
22532,
198,
1688,
1176,
814,
584,
2351,
1120,
35492,
719,
1457,
279,
3754,
39285,
613,
35350,
7359,
617,
1027,
8748,
369,
374,
5616,
1618,
13,
350,
635,
63649,
78,
596,
1317,
54589,
35350,
39285,
613,
374,
3815,
264,
3974,
26115,
5818,
34185,
13,
578,
5818,
690,
1825,
304,
6457,
36113,
304,
220,
679,
23,
13,
578,
3754,
4131,
304,
892,
449,
279,
13696,
315,
279,
35350,
902,
374,
1457,
304,
433,
596,
220,
5728,
339,
323,
1620,
8286,
13,
2009,
10011,
617,
1027,
54828,
2930,
6051
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
5513,
52215,
5513,
5843,
29125,
39285,
613,
71035,
2057,
3234,
362,
11406,
12,
2573,
14270,
304,
220,
679,
23,
198,
6720,
29125,
39285,
613,
71035,
2057,
3234,
362,
11406,
12,
2573,
14270,
304,
220,
679,
23,
198,
41,
30359,
438,
22532,
198,
1688,
1176,
814,
584,
2351,
1120,
35492,
719,
1457,
279,
3754,
39285,
613,
35350,
7359,
617,
1027,
8748,
369,
374,
5616,
1618,
13,
350,
635,
63649,
78,
596,
1317,
54589,
35350,
39285,
613,
374,
3815,
264,
3974,
26115,
5818,
34185,
13,
578,
5818,
690,
1825,
304,
6457,
36113,
304,
220,
679,
23,
13,
578,
3754,
4131,
304,
892,
449,
279,
13696,
315,
279,
35350,
902,
374,
1457,
304,
433,
596,
220,
5728,
339,
323,
1620,
8286,
13,
2009,
10011,
617,
1027,
54828,
2930,
6051,
-100
]
|
Westhope is a notable building in Tulsa, Oklahoma, USA.
Westhope may also refer to:
Westhope, Herefordshire, England
Westhope, North Dakota, USA
Westhope, Shropshire, England | {
"redpajama_set_name": "RedPajamaWikipedia"
} | 8,199 | [
128000,
24188,
61893,
374,
264,
28289,
4857,
304,
75662,
11,
23640,
11,
7427,
382,
24188,
61893,
1253,
1101,
8464,
311,
512,
24188,
61893,
11,
5810,
8350,
15255,
11,
9635,
198,
24188,
61893,
11,
4892,
28972,
11,
7427,
198,
24188,
61893,
11,
1443,
897,
15255,
11,
9635,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
128256,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
]
| [
24188,
61893,
374,
264,
28289,
4857,
304,
75662,
11,
23640,
11,
7427,
382,
24188,
61893,
1253,
1101,
8464,
311,
512,
24188,
61893,
11,
5810,
8350,
15255,
11,
9635,
198,
24188,
61893,
11,
4892,
28972,
11,
7427,
198,
24188,
61893,
11,
1443,
897,
15255,
11,
9635,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100
]
|
Greenhouse emissions fall for the seventh year
Provisional data published by the government on the 26th of March has shown that the UK's greenhouse gas emissions fell for a seventh consecutive year in 2019. Let's take a closer look at what this means for the UK and its 2050 carbon-neutral goals.
Effect of Coronavirus
An increase in the use of renewables
Optimism for development beyond wind
Energy minister Kwasi Kwarteng has praised her own government's "extraordinary progress" in tackling climate change, which may be overstating this 3.6% drop somewhat. It is true, however, that since 2010 the UK's emissions have come down by almost a third, which is an achievement.
These figures have come out at a time when energy use is in decline, with the lockdown that has come as a result of the Coronavirus outbreak leading to a 7% decrease in demand for energy.
Expected to see energy use rise with everyone working from home?It's obviously true that home energy use has increased since people have started working from home, but the huge drop in demand factories, construction sites and offices has more than offset this.
A further drop in demand for electricity is expected as more and more businesses are forced to shut up shop - which will mean even fewer emissions in 2020. This presents a very slight silver lining to the crisis the UK and the world is currently experiencing.
The main driver behind continuous drops in emissions, however, is the shift in focus from traditional energy sources to cleaner renewable sources of energy that has been taking place in recent years.
Want to do your bit to reduce emissions?Give us a call on 02039 360059 one of our agents will help you switch to a 100% renewable energy provider, even saving you money in the process.
Renewable energy in the UK is generated mainly from the following sources:
Tidal energy
Wind farms are becoming particularly important to the UK energy market, with almost a fifth of the country's energy supply being generated through wind energy. Around 37% of our electricity last year came from renewable sources, which is a new record and shows that much is being done to push us toward a greener future.
It's also the case that it's becoming cheaper and thus easier to make a profit to generate energy through renewable sources. A report into Australia's thermal coal export industry earlier this year found that building wind and solar plants will soon be cheaper, in fact, than existing coal-fired power stations in every major market the world over.
While the UK is in no danger of leading the world in solar energy production, an increasingly cost-effective means of channelling wind energy will allow it to keep on making strides toward a more renewable energy market. The new Hornsea offshore wind farm, the largest of its kind in the world, is evidence of this.
Deputy chief executive of RenewableUK Melanie Onn is optimistic about the UK's potential to diversify into renewables outside of wind energy. "As well as wind," she said, "we'll use innovative new technologies like renewable hydrogen and marine power, and we'll scale up battery storage."
"Low-cost renewables are central to the government's energy strategy and our sector will grow rapidly in the years ahead as our domestic supply chain expands and we continue to seize multi-billion-pound export opportunities around the world."
At Selectra, we're hoping to see the government put its money where its mouth is with regard to advancing the technology around renewables, to make it even cheaper for ordinary people to access green energy and not make it a choice between the planet and your wallet.
Even as a student of literature, Will always had one eye on new TV deals and never overpaid a penny on his broadband. He worked as a copywriter and then as a journalist before realising his life's purpose and joining Selectra in January. He now dedicates himself to decrying poor customer service and championing affordable broadband. | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 7,966 | [
128000,
20147,
7830,
20748,
4498,
369,
279,
31487,
1060,
198,
1360,
13311,
278,
828,
4756,
555,
279,
3109,
389,
279,
220,
1627,
339,
315,
5587,
706,
6982,
430,
279,
6560,
596,
37647,
6962,
20748,
11299,
369,
264,
31487,
24871,
1060,
304,
220,
679,
24,
13,
6914,
596,
1935,
264,
12401,
1427,
520,
1148,
420,
3445,
369,
279,
6560,
323,
1202,
220,
10866,
15,
12782,
92322,
9021,
627,
7894,
315,
70920,
198,
2127,
5376,
304,
279,
1005,
315,
89085,
198,
22078,
318,
2191,
369,
4500,
7953,
10160,
198,
33775,
13015,
65462,
10426,
735,
36708,
833,
706,
37475,
1077,
1866,
3109,
596,
330,
15824,
21707,
5208,
1,
304,
57911,
10182,
2349,
11,
902,
1253,
387,
83509,
1113,
420,
220,
18,
13,
21,
4,
6068,
14738,
13,
1102,
374,
837,
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
]
| [
20147,
7830,
20748,
4498,
369,
279,
31487,
1060,
198,
1360,
13311,
278,
828,
4756,
555,
279,
3109,
389,
279,
220,
1627,
339,
315,
5587,
706,
6982,
430,
279,
6560,
596,
37647,
6962,
20748,
11299,
369,
264,
31487,
24871,
1060,
304,
220,
679,
24,
13,
6914,
596,
1935,
264,
12401,
1427,
520,
1148,
420,
3445,
369,
279,
6560,
323,
1202,
220,
10866,
15,
12782,
92322,
9021,
627,
7894,
315,
70920,
198,
2127,
5376,
304,
279,
1005,
315,
89085,
198,
22078,
318,
2191,
369,
4500,
7953,
10160,
198,
33775,
13015,
65462,
10426,
735,
36708,
833,
706,
37475,
1077,
1866,
3109,
596,
330,
15824,
21707,
5208,
1,
304,
57911,
10182,
2349,
11,
902,
1253,
387,
83509,
1113,
420,
220,
18,
13,
21,
4,
6068,
14738,
13,
1102,
374,
837,
11,
-100
]
|
In the previous post I broke down some of my rules on how to style your small space so that it feels larger than what it actually is. We spoke about color and texture and how it affects the size of your space. Today we break down how space planning, furniture size and creating multifunctional spaces will help you feel like the Queen/King you are in your small, comfy space.
Let's begin with the biggest issue, huge bulky furniture. If you are styling you small space you need to consider purchasing smaller pieces. Using bulky, large furniture will take away from your space making it feel stuffy. That rectangular dinning table that you absolutely love because you got a fabulous deal on.. That's not going to work in your tiny space. No one wants to be tripping over a table and chairs while trying to throw down in the kitchen. But we know you need some where to eat. How about replacing the rectangular table with a circle one? It frees up more space for you.
When it comes to seating, instead of having a large couch set consider a comfy two seater. If a two seater just isn't enough add a small chair to the setting. If that isn't sufficient use an ottoman. Ottomans are one of my favorite pieces. They can be used in multiple rooms and for multiple purposes. They are cute, comfy and all around great.
Like I mentioned above Ottomans are great and I suggest everyone should have at least one in their house. It is a multifunctional pieces which is essential to help keep your tiny area clean and tidy. An ottoman can be used as seating and storage – it's a two-in-one. Multifunctional furniture will help solve your small space problems in more than one way. Pieces like a bed with storage underneath, stack-able side tables, vanity turned desk, pull out couch, things of those nature are what you should be looking for. And the more pieces that can help you stores stuff, the easier it'll be to create that visually larger space. Mess and clutter will make your space appear smaller so be as organized as possible!
Another furniture tip in regards to space planning is to purchase pieces that are more vertical. Going up with furniture instead of across will help free up floor space. If you need a book case replace that with shelves so that you still have the floor beneath for whatever you may need that space for. It could be a desk, a side table or even one of those cute and multifunctional ottomans.
When choosing furniture please be mindful of your surroundings. Yes, that couch may be super cute but realistically it's not working for what you have. We all want to have a stylish home but at the end of the day if you're not comfortable you won't be happy. So strategically plan when styling you small sp ace! Good luck!
Do you have any small space styling tips? Let me know!
****BONUS: glass/acrylic furniture helps visually enlarge your space. Also add mirrors wherever you can! It brightens and enlarges the space. | {
"redpajama_set_name": "RedPajamaC4"
} | 5,931 | [
128000,
644,
279,
3766,
1772,
358,
14760,
1523,
1063,
315,
856,
5718,
389,
1268,
311,
1742,
701,
2678,
3634,
779,
430,
433,
11321,
8294,
1109,
1148,
433,
3604,
374,
13,
1226,
12570,
922,
1933,
323,
10651,
323,
1268,
433,
22223,
279,
1404,
315,
701,
3634,
13,
11450,
584,
1464,
1523,
1268,
3634,
9293,
11,
14891,
1404,
323,
6968,
62387,
600,
278,
12908,
690,
1520,
499,
2733,
1093,
279,
16657,
33954,
287,
499,
527,
304,
701,
2678,
11,
60421,
3634,
627,
10267,
596,
3240,
449,
279,
8706,
4360,
11,
6908,
78921,
14891,
13,
1442,
499,
527,
42428,
499,
2678,
3634,
499,
1205,
311,
2980,
23395,
9333,
9863,
13,
12362,
78921,
11,
3544,
14891,
690,
1935,
3201,
505,
701,
3634,
3339,
433,
2733,
6392,
88,
13,
3011,
52524,
11884,
1251
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
279,
3766,
1772,
358,
14760,
1523,
1063,
315,
856,
5718,
389,
1268,
311,
1742,
701,
2678,
3634,
779,
430,
433,
11321,
8294,
1109,
1148,
433,
3604,
374,
13,
1226,
12570,
922,
1933,
323,
10651,
323,
1268,
433,
22223,
279,
1404,
315,
701,
3634,
13,
11450,
584,
1464,
1523,
1268,
3634,
9293,
11,
14891,
1404,
323,
6968,
62387,
600,
278,
12908,
690,
1520,
499,
2733,
1093,
279,
16657,
33954,
287,
499,
527,
304,
701,
2678,
11,
60421,
3634,
627,
10267,
596,
3240,
449,
279,
8706,
4360,
11,
6908,
78921,
14891,
13,
1442,
499,
527,
42428,
499,
2678,
3634,
499,
1205,
311,
2980,
23395,
9333,
9863,
13,
12362,
78921,
11,
3544,
14891,
690,
1935,
3201,
505,
701,
3634,
3339,
433,
2733,
6392,
88,
13,
3011,
52524,
11884,
1251,
-100
]
|
Zurich North America Small Business Forms Partnership with Foremost Co.
PIA Fed. Legislative Summit Set for Washington, D.C.
AAI Promotes O'Brien to V.P.
IIABA's 27th Annual National Legislative Conf. Set for Washington, D.C.
New Data Shows Worsening Med-Mal Crisis in Fla. | {
"redpajama_set_name": "RedPajamaC4"
} | 1,578 | [
128000,
57,
324,
718,
4892,
5270,
15344,
8184,
24485,
47362,
449,
8371,
3646,
3623,
627,
1932,
32,
24526,
13,
68505,
35769,
2638,
369,
6652,
11,
423,
732,
627,
6157,
40,
18042,
6429,
507,
62561,
311,
650,
1087,
627,
5660,
57650,
596,
220,
1544,
339,
25992,
5165,
68505,
15323,
13,
2638,
369,
6652,
11,
423,
732,
627,
3648,
2956,
37380,
468,
1105,
6147,
3344,
5364,
278,
46250,
304,
54297,
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
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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
]
| [
57,
324,
718,
4892,
5270,
15344,
8184,
24485,
47362,
449,
8371,
3646,
3623,
627,
1932,
32,
24526,
13,
68505,
35769,
2638,
369,
6652,
11,
423,
732,
627,
6157,
40,
18042,
6429,
507,
62561,
311,
650,
1087,
627,
5660,
57650,
596,
220,
1544,
339,
25992,
5165,
68505,
15323,
13,
2638,
369,
6652,
11,
423,
732,
627,
3648,
2956,
37380,
468,
1105,
6147,
3344,
5364,
278,
46250,
304,
54297,
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
]
|
HomeCollectionEternal Idol
French, b.1840, d.1917
Eternal Idol
Presented by the New Zealand Government from the New Zealand Fund in France For Cultural Development, 1964
Tags: figures (representations), love, men (male humans), nudes (representations), people (agents), sculpture (visual work), women (female humans)
One of the most significant sculptors of his generation, Auguste Rodin revelled in the tactile qualities of the clay or wax he used to form the sculptures from which his castings were taken. The human body was of great interest to Rodin and here he explores the sensuality and intimacy of the lovers' forms. Rodin completed several versions of this subject in varying mediums and sizes.
(New Dawn Fades, November 2018)
New Dawn Fades
Love Sweet Love
earlier labels about this work
Auguste Rodin used the human figure as an instrument of expression, rather than as an object for anatomical study. The two figures in Eternal Idol express their intimacy and complete absorption in each other. The work, like all his sculptural figures, displays great strength, gentleness and sensuality. Rodin became one of the most celebrated sculptors of the 19th century. He broke from the rigid formulas and styles of academic sculpture, introducing a new sense of energy, imagination and invention. Born in Paris, Rodin showed promise in drawing as a child but was rejected by the École des Beaux-Arts and started working as a moulder, ornamentor and goldsmith instead. He later took lessons from the animal sculptor, Antoine-Louis Barye (1796 -1875), and studied the work of Donatello (c.1386-1466) and Michelangelo (1475 -1564). By 1880 he had become renowned for his sculptural portraits of famous contemporary figures. Rodin's fame as a sculptor grew and in 1882 a studio was freely placed at his disposal by the state.
(Gallery opening hang, 2003)
Rodin made several versions of this subject in varying sizes and materials. It was first worked in 1889 and is thought to have been inspired by a sculpture by Camille Claudel entitled "Surrender". This work emphasised Rodin's joy in the human form and in human sensuality. The two figures express their itimacy and complete absorption in each other. To this artist this interaction parallels an act of worship and he gave this composition an alternative title as 'The Host' suggesting that the physical act of adoration can also ascend to the mystical or spiritual planes of meaning. Rodin's figures all displayed great strength, gentleness or sensuality. He said: "I have invented nothing - I have only rediscovered."
Rodin, who was born in Paris, showed his ability at an early age and persevered through early difficulites to gain entry to the Ecole des Beaux Arts. In 1875 he visited Italy where he studied the works of Donatello and Michelangelo whose influences can be seen in Eternal Idol. By 1882 his fame as a sculptor had grown and a pavillion was dedicated to his work at the 1900 Exposition.
The foundry of George Rudier handled most of his bronze casting including the work. Limited edition castings were made in 1960 after Rodin's death from waxes held by the Rodin Museum in Paris. This work was purchased from those works in 1962 by the New Zealand Government and presented to the Gallery in 1964.
Christchurch Idol
We'd like to think that we know the Christchurch Art Gallery collection inside-out, and generally speaking, we do.
Mary Kisler's selection
On 16 April 2011, Mary Kisler spoke about some of her favourite works in the Gallery on Kim Hill's Saturday morning radio programme on Radio New Zealand National.
See the works she selected here.
Eternal Idol by Auguste Rodin
"One day, from up on the scaffolding where I was working on the Burghers of Calais, I noticed Rodin, who between some scenes, was doing a nude sculpture, for which the model was a young woman, stretched out on the table. As the session was drawing to a close, he bent over toward the woman and kissed her tenderly on her belly - a gesture of adoration of nature, which gave him so much joy." | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 4,087 | [
128000,
7778,
6618,
36,
15702,
78964,
198,
44297,
11,
293,
13,
10336,
15,
11,
294,
13,
7529,
22,
198,
36,
15702,
78964,
198,
21886,
291,
555,
279,
1561,
17340,
10423,
505,
279,
1561,
17340,
13492,
304,
9822,
1789,
41333,
11050,
11,
220,
5162,
19,
198,
16309,
25,
12678,
320,
36369,
811,
705,
3021,
11,
3026,
320,
37576,
12966,
705,
308,
29246,
320,
36369,
811,
705,
1274,
320,
55975,
705,
51067,
320,
30318,
990,
705,
3278,
320,
43734,
12966,
340,
4054,
315,
279,
1455,
5199,
27863,
1105,
315,
813,
9659,
11,
6287,
68,
13611,
258,
22899,
839,
304,
279,
99683,
29600,
315,
279,
37148,
477,
37123,
568,
1511,
311,
1376,
279,
75973,
505,
902,
813,
6445,
826,
1051,
4529,
13,
578,
3823,
2547,
574,
315,
2294,
2802,
311,
13611
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
6618,
36,
15702,
78964,
198,
44297,
11,
293,
13,
10336,
15,
11,
294,
13,
7529,
22,
198,
36,
15702,
78964,
198,
21886,
291,
555,
279,
1561,
17340,
10423,
505,
279,
1561,
17340,
13492,
304,
9822,
1789,
41333,
11050,
11,
220,
5162,
19,
198,
16309,
25,
12678,
320,
36369,
811,
705,
3021,
11,
3026,
320,
37576,
12966,
705,
308,
29246,
320,
36369,
811,
705,
1274,
320,
55975,
705,
51067,
320,
30318,
990,
705,
3278,
320,
43734,
12966,
340,
4054,
315,
279,
1455,
5199,
27863,
1105,
315,
813,
9659,
11,
6287,
68,
13611,
258,
22899,
839,
304,
279,
99683,
29600,
315,
279,
37148,
477,
37123,
568,
1511,
311,
1376,
279,
75973,
505,
902,
813,
6445,
826,
1051,
4529,
13,
578,
3823,
2547,
574,
315,
2294,
2802,
311,
13611,
-100
]
|
I'm the owner. I was born and raised here on the Mississippi Gulf Coast, so my heart is where my home is - and that can mean a lot when it comes to representing the best interests of my clients. When you trust me to insure your homes, autos and businesses, I treat them like family. It is my personal guarantee that no matter how large or small your policy, I will give it my individual attention.
My staff and I at Bishop Insurance Services are dedicated to working for you. And that means keeping you abreast of current insurance trends, regularly reviewing your policies to make sure you are getting the best coverage at the best rates possible, and answering your questions in a courteous, timely manner.
I'm a Political Science graduate of Southern Mississippi. My hobbies include hunting, fishing and enjoying sports. I'm married to my beautiful wife, Ashton. I bring 6 years insurance experience to Bishop Insurance Services.
Give me a call to meet all your insurance needs. | {
"redpajama_set_name": "RedPajamaC4"
} | 4,091 | [
128000,
40,
2846,
279,
6506,
13,
358,
574,
9405,
323,
9408,
1618,
389,
279,
29538,
27945,
16377,
11,
779,
856,
4851,
374,
1405,
856,
2162,
374,
482,
323,
430,
649,
3152,
264,
2763,
994,
433,
4131,
311,
14393,
279,
1888,
12034,
315,
856,
8403,
13,
3277,
499,
7095,
757,
311,
70632,
701,
10632,
11,
47972,
323,
9873,
11,
358,
4322,
1124,
1093,
3070,
13,
1102,
374,
856,
4443,
15803,
430,
912,
5030,
1268,
3544,
477,
2678,
701,
4947,
11,
358,
690,
3041,
433,
856,
3927,
6666,
627,
5159,
5687,
323,
358,
520,
34342,
22413,
8471,
527,
12514,
311,
3318,
369,
499,
13,
1628,
430,
3445,
10494,
499,
67441,
561,
315,
1510,
8276,
18845,
11,
15870,
34988,
701,
10396,
311,
1304,
2771,
499,
527,
3794,
279,
1888,
10401,
520
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
40,
2846,
279,
6506,
13,
358,
574,
9405,
323,
9408,
1618,
389,
279,
29538,
27945,
16377,
11,
779,
856,
4851,
374,
1405,
856,
2162,
374,
482,
323,
430,
649,
3152,
264,
2763,
994,
433,
4131,
311,
14393,
279,
1888,
12034,
315,
856,
8403,
13,
3277,
499,
7095,
757,
311,
70632,
701,
10632,
11,
47972,
323,
9873,
11,
358,
4322,
1124,
1093,
3070,
13,
1102,
374,
856,
4443,
15803,
430,
912,
5030,
1268,
3544,
477,
2678,
701,
4947,
11,
358,
690,
3041,
433,
856,
3927,
6666,
627,
5159,
5687,
323,
358,
520,
34342,
22413,
8471,
527,
12514,
311,
3318,
369,
499,
13,
1628,
430,
3445,
10494,
499,
67441,
561,
315,
1510,
8276,
18845,
11,
15870,
34988,
701,
10396,
311,
1304,
2771,
499,
527,
3794,
279,
1888,
10401,
520,
-100
]
|
Spike Lee saves his biggest punch for the finale of BlacKkKlansman. It's not exactly a twist ending; more of a thought-provoking coda that left the audience at the world premiere in Cannes speechless, rocked back in their seats, questioning their reactions to what they'd just seen and to the world that exists outside the cinema. It is not easy to forget. But, annoying though this may be, I won't say any more about it here.
BlacKkKlansman – a title guaranteed to drive writers and copy editors mad like nothing since Inglourious Basterds, is based on a true story, though you'd be forgiven for thinking Lee and his three co-writers made it up after smoking something. Here's how it went down.
In 1979, Ron Stallworth (John David Washington in the film) became one of the first black police officers in the force in Colorado Springs, Colo. When he noticed an ad for the Ku Klux Klan in the local paper, he called on a whim – and joined the group. He spouted a ridiculous list of derogatory terms into the phone line; Walter (Ryan Eggold) liked what he heard and wanted to meet.
That part was clearly going to be a problem, so Ron enlisted fellow cop Flip Zimmerman (Adam Driver) – a Jew, as it happens – to be the white face of Ron Stallworth. There's a parallel here to the recent Sorry To Bother You, in which a black telemarketer uses his "white voice" to increase his success over the phone except, to be clear – true story this time.
Ron and Flip – and, by extension, the movie and we in the audience – make great sport of the KKK. When Ron calls David Duke to inquire about why his membership card is taking so long to arrive, he impulsively asks the Grand Wizard whether he ever worries about a black man pretending to be white on the phone. Duke doesn't use the term black-dar, but he says he can just tell. Chuckles all around.
Of course, racism is no laughing matter, and Lee occasionally pulls back on the yoke of comedy to remind us of that. Flip is confronted with his own identity as a Jew – "I never thought much about it and now I'm thinking about it all the time," he muses. And both cops are put in real danger from their scheme, not least when Klansman Ivanhoe – a real mouth-breather, perfectly portrayed by I, Tonya's Paul Walter Hauser – smells a rat.
Lee has an agenda here, which sometimes fights with his storytelling instincts. The scene where Harry Belafonte shows up recounting the 1916 lynching of Jesse Washington, while in another location the local KKK group is laughing uproariously at a private screening of the 1915 film Birth of a Nation, is a little too on the nose.
But the point is still valid. Things were bad a hundred years ago, and they're still bad today, in spite of the Ron Stallworths and Flip Zimmermans of the world. You'll laugh at the antics of BlacKkKlansman, but you may find yourself in tears, or shaking in anger, on the way out. | {
"redpajama_set_name": "RedPajamaC4"
} | 1,254 | [
128000,
50,
65546,
12336,
27024,
813,
8706,
21004,
369,
279,
37398,
315,
2563,
582,
42,
74,
42,
75,
598,
1543,
13,
1102,
596,
539,
7041,
264,
27744,
13696,
26,
810,
315,
264,
3463,
10039,
85,
10979,
272,
14320,
430,
2163,
279,
10877,
520,
279,
1917,
35952,
304,
84620,
8982,
1752,
11,
78360,
1203,
304,
872,
16712,
11,
34685,
872,
25481,
311,
1148,
814,
4265,
1120,
3970,
323,
311,
279,
1917,
430,
6866,
4994,
279,
34292,
13,
1102,
374,
539,
4228,
311,
10894,
13,
2030,
11,
30931,
3582,
420,
1253,
387,
11,
358,
2834,
956,
2019,
904,
810,
922,
433,
1618,
627,
5028,
582,
42,
74,
42,
75,
598,
1543,
1389,
264,
2316,
19883,
311,
6678,
16483,
323,
3048,
29846,
13088,
1093,
4400,
2533,
763,
6200,
414,
1245,
426
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
50,
65546,
12336,
27024,
813,
8706,
21004,
369,
279,
37398,
315,
2563,
582,
42,
74,
42,
75,
598,
1543,
13,
1102,
596,
539,
7041,
264,
27744,
13696,
26,
810,
315,
264,
3463,
10039,
85,
10979,
272,
14320,
430,
2163,
279,
10877,
520,
279,
1917,
35952,
304,
84620,
8982,
1752,
11,
78360,
1203,
304,
872,
16712,
11,
34685,
872,
25481,
311,
1148,
814,
4265,
1120,
3970,
323,
311,
279,
1917,
430,
6866,
4994,
279,
34292,
13,
1102,
374,
539,
4228,
311,
10894,
13,
2030,
11,
30931,
3582,
420,
1253,
387,
11,
358,
2834,
956,
2019,
904,
810,
922,
433,
1618,
627,
5028,
582,
42,
74,
42,
75,
598,
1543,
1389,
264,
2316,
19883,
311,
6678,
16483,
323,
3048,
29846,
13088,
1093,
4400,
2533,
763,
6200,
414,
1245,
426,
-100
]
|
If you have oily skin, you are prone to acne, blackheads and spots. Your skin probably looks shiny and thick. Just as with any skin type, taking certain precautions and special care can help reduce skin problems.
The following are 5 tips for taking care of oily skin.
Wash your face twice a day—once in the morning and once before bed. Washing more often can strip your skin of all the natural moisturizers and increase oil production. The only time you should wash your face more than twice a day is if you have been perspiring.
Use a gentle cleanser. If you need something stronger, look for ingredients specifically made for oily skin and acne, such as benzoyl peroxide, salicylic acid, glycolic acid, or beta-hydroxy acid. Although usually marketed for acne, these products work well for oily skin too.
If you are experimenting with different cleansers to find one that works for you, keep a notebook and write down the date, what cleanser you are using and keep track of how your skin looks after a few weeks. If you notice irritation, write that down so you know not to try that cleanser again.
Oily skin still needs to be moisturized, but be careful to choose the right moisturizer. Look for water based or oil-free moisturizers and stay away from creams and heavy moisturizers.
No matter how tempted, don't pick, pop or squeeze pimples as it can cause scarring and leave red spots on your face.
Remember, having oily skin does have some benefits. Those with oily skin tend to age slower. Oily skin tends to wrinkle less than those with dry or normal skin. Always remember to apply sunscreen before going outside, no matter the weather. | {
"redpajama_set_name": "RedPajamaC4"
} | 9,701 | [
128000,
2746,
499,
617,
78571,
6930,
11,
499,
527,
38097,
311,
46905,
11,
3776,
36910,
323,
19300,
13,
4718,
6930,
4762,
5992,
42299,
323,
12314,
13,
4702,
439,
449,
904,
6930,
955,
11,
4737,
3738,
61003,
323,
3361,
2512,
649,
1520,
8108,
6930,
5435,
627,
791,
2768,
527,
220,
20,
10631,
369,
4737,
2512,
315,
78571,
6930,
627,
54,
1003,
701,
3663,
11157,
264,
1938,
2345,
13486,
304,
279,
6693,
323,
3131,
1603,
4950,
13,
82238,
810,
3629,
649,
13619,
701,
6930,
315,
682,
279,
5933,
54902,
12509,
323,
5376,
5707,
5788,
13,
578,
1193,
892,
499,
1288,
11623,
701,
3663,
810,
1109,
11157,
264,
1938,
374,
422,
499,
617,
1027,
7565,
79863,
627,
10464,
264,
22443,
35294,
261,
13,
1442,
499,
1205,
2555,
16643,
11,
1427,
369
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
2746,
499,
617,
78571,
6930,
11,
499,
527,
38097,
311,
46905,
11,
3776,
36910,
323,
19300,
13,
4718,
6930,
4762,
5992,
42299,
323,
12314,
13,
4702,
439,
449,
904,
6930,
955,
11,
4737,
3738,
61003,
323,
3361,
2512,
649,
1520,
8108,
6930,
5435,
627,
791,
2768,
527,
220,
20,
10631,
369,
4737,
2512,
315,
78571,
6930,
627,
54,
1003,
701,
3663,
11157,
264,
1938,
2345,
13486,
304,
279,
6693,
323,
3131,
1603,
4950,
13,
82238,
810,
3629,
649,
13619,
701,
6930,
315,
682,
279,
5933,
54902,
12509,
323,
5376,
5707,
5788,
13,
578,
1193,
892,
499,
1288,
11623,
701,
3663,
810,
1109,
11157,
264,
1938,
374,
422,
499,
617,
1027,
7565,
79863,
627,
10464,
264,
22443,
35294,
261,
13,
1442,
499,
1205,
2555,
16643,
11,
1427,
369,
-100
]
|
From April, 2004 through January, 2005, Dahr Jamail surveyed 13 hospitals in Iraq in order to research how the healthcare system was faring under the US-led occupation.
The report documents the desperate supply shortages facing hospitals, the disastrous effect that the lack of basic services like water and electricity have on hospitals and the disruption of medical services at Iraqi hospitals by US military forces.
Three out of the eleven hospitals surveyed are frequently raided by the US military, five others sporadically.
Dr. Qasim al-Nuwesri, the chief manager at Chuwader General Hospital, one of two hospitals in the sprawling slum area of Sadr City, Baghdad, an area of nearly 2 million people, said that for his hospital, the lack of potable water was the major problem. The hospital needs at least 2000 liters of water per day to function with basic sterilization practices. According to Dr. al-Nuwesri, they received 15% of this amount.
In November 2004, shortly after razing Nazzal Emergency Hospital to the ground, US forces entered Fallujah General Hospital, the city's only healthcare facility for trauma victims, detaining employees and patients alike. According to medics on the scene, water and electricity were "cut off," ambulances confiscated, and surgeons, without exception, kept out of the besieged city.
As an occupying power, the US was responsible for conforming with international humanitarian law and human rights law, regarding the situation of healthcare in Iraq. The Fourth Geneva Convention contains specific provisions pertaining to the delivery of healthcare services.
The report clearly illustrates the abject failure of the US to carry out even minimal humanitarian duties as occupying power.
"Many doctors in Iraq believe that, more widely, the lack of assistance, if not outright hostility, by the US military, coupled with the lack of rebuilding and reconstruction by foreign contractors has compounded the problems they are facing.
"When asked if his hospital had received assistance from the US military or reconstruction contractors, Dr. Sarmad Raheem, the administrator of chief doctors at Al-Kerkh Hospital in Baghdad said, "Never ever. Some soldiers came here five months ago and asked what we needed. We told them and they never brought us one single needle... We heard that some people from the CPA came here, but they never did anything for us."
"At Fallujah General Hospital, Dr. Mohammed10 said there has been virtually no assistance from foreign contractors, and of the US military he commented, "They send only bombs, not medicine."
Dahr Jamail reports on the struggling health care situation in Iraq. The report surveys 13 Iraqi Hospitals, examines the actions taken by US military against hospitals and care workers that constitute war crimes as defined by the Geneva conventions, discusses and documents cases of US medical personnel complicit in torture through failures to document the visible signs of torture on their patients, and much more. | {
"redpajama_set_name": "RedPajamaC4"
} | 8,564 | [
128000,
3915,
5936,
11,
220,
1049,
19,
1555,
6186,
11,
220,
1049,
20,
11,
423,
15464,
20614,
607,
49098,
220,
1032,
24461,
304,
11340,
304,
2015,
311,
3495,
1268,
279,
18985,
1887,
574,
3117,
287,
1234,
279,
2326,
35054,
30747,
627,
791,
1934,
9477,
279,
28495,
8312,
67276,
13176,
24461,
11,
279,
53057,
2515,
430,
279,
6996,
315,
6913,
3600,
1093,
3090,
323,
18200,
617,
389,
24461,
323,
279,
44219,
315,
6593,
3600,
520,
31334,
24461,
555,
2326,
6411,
8603,
627,
20215,
704,
315,
279,
45314,
24461,
49098,
527,
14134,
79496,
555,
279,
2326,
6411,
11,
4330,
3885,
62016,
329,
2740,
627,
9023,
13,
1229,
300,
318,
453,
11500,
43210,
288,
462,
11,
279,
10388,
6783,
520,
921,
43210,
1013,
3331,
15429,
11,
832,
315,
1403,
24461,
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
]
| [
3915,
5936,
11,
220,
1049,
19,
1555,
6186,
11,
220,
1049,
20,
11,
423,
15464,
20614,
607,
49098,
220,
1032,
24461,
304,
11340,
304,
2015,
311,
3495,
1268,
279,
18985,
1887,
574,
3117,
287,
1234,
279,
2326,
35054,
30747,
627,
791,
1934,
9477,
279,
28495,
8312,
67276,
13176,
24461,
11,
279,
53057,
2515,
430,
279,
6996,
315,
6913,
3600,
1093,
3090,
323,
18200,
617,
389,
24461,
323,
279,
44219,
315,
6593,
3600,
520,
31334,
24461,
555,
2326,
6411,
8603,
627,
20215,
704,
315,
279,
45314,
24461,
49098,
527,
14134,
79496,
555,
279,
2326,
6411,
11,
4330,
3885,
62016,
329,
2740,
627,
9023,
13,
1229,
300,
318,
453,
11500,
43210,
288,
462,
11,
279,
10388,
6783,
520,
921,
43210,
1013,
3331,
15429,
11,
832,
315,
1403,
24461,
304,
-100
]
|
Slickplan is the perfect app to help you start planning a website sitemap or any other organizational project. Planning your information architecture from the start is a great idea on the road to success with your project. Get started by building your sitemap from a blank canvas or inputting the structure of a current website by using our site crawler or importing a Google XML file.
Slickplan is great for: web developers, graphic designers, project managers, user experience experts, information architects, and more! Slickplan can support projects of all sizes including personal blogs and portfolios to expansive enterprise and institutional layouts with hundreds of pages.
Our agency focuses on putting together logical and creative information architecture for our customers. Not just creating a site that the decision makers want, but a site that their companies customers want.
Before slickplan we used Illustrator, Excel and Word. Most of our clients didn't have the right versions and of software to look that our site plans. Talk about frustrating. Next was version control. Keeping track of the back and forth with clients and changes to a document that is moving between a lot of people really struggled to keep everything organized.
Slickplan has a pretty small cost of entry and we have been able to grow with the different packages as our clientele has grown (We started with the free version before is became a Saas model program, now we are on an unlimited use plan). There are many features that are very useful for our process, such as sharing a url with our clients or even adding team members to the project to collaborate.
Since our company has the unlimited version we are able to pull in existing customer site maps and help them make decisions about their content planning. We also have used it to put together our company organization chart.
Overall we like the functionality, ease of use and price point.
The Slickplan app is beyond easy to use. Everything you could need to build an awesome website. Their online support chat is very helpful if you can't find an answer or need some help troubleshooting an issue. Simple billing model.
How easy the software is to use and once the sitemap has been generated we send these over to our clients and they comment how easy it is to understand the sitemap layout compared to previous examples they have been shown.
Also good for planning web content!
Nothing the software is easy to use and very intuitive.
It's super simple to use and the drag and drop type of format makes it very quick to update. Also, the sharing or downloading in different versions is great. The ability to download the content pages is super.
I wish there were more themes for different looks so you could make them more custom looking instead of the same over and over.
Try all of Slickplan's features free for 30 days, no credit card required.
Easily add or edit cells representing pages, processes or sections using Slickplan's drag and drop interface. Your changes will appear directly on the sitemap with our intuitive in-place editing system. Choose from a variety of color schemes or create your own to liven up or categorize your designs. Assign page types to quickly identify what page cells represent in the final project.
Collaborate with others by adding users to your account, in app real-time chat, leave page notes and comments for others, and setup an approval process. Our system uses vector based graphics so that the sitemap cells and trees will resize automatically and look great on any size screen.
Once you are finished, share your sitemap to everyone with a link or limit access to selected viewers only with a password. This is an especially good features for designers and agencies looking to share proposals with clients or a design team sharing plans with a development or management team. Easily post your projects to Facebook, Twitter, LinkedIn or link directly to it from an email or a webpage.
Customize the Slickplan app with your own company name, logo, and colors scheme to give your designs a branded white label effect. Share your designs using your own personalized url too.
Our auto-save feature is always making sure your projects are up to date. Utilize version control to easily branch off or evolve your projects. When you are finished, simply export your project to a variety of formats including: PDF, Vector EPS, PNG, HTML, XML, CSV or DOCX. Use the Slickplan Wordpress or Joomla Importers, to automatically turn your sitemaps into an actual website structure instantly.
Seamlessly integrate with basecamp so that your projects can be easily found and edited by your team.
Weiter unter folgen häufig gestellte Fragen über Slickplan.
F. Welche Preispläne bietet Slickplan an?
F. Was sind die Hauptfunktionen von Slickplan?
F. Wer sind die typischen Nutzer von Slickplan?
F: Welche Sprachen werden von Slickplan unterstützt?
F. Unterstützt Slickplan mobile Geräte?
F. Mit welchen anderen Applikationen integriert Slickplan?
F. Welche Varianten der Kundenbetreuung bietet Slickplan an? | {
"redpajama_set_name": "RedPajamaC4"
} | 7,532 | [
128000,
50,
1228,
10609,
374,
279,
4832,
917,
311,
1520,
499,
1212,
9293,
264,
3997,
274,
26398,
477,
904,
1023,
41295,
2447,
13,
28780,
701,
2038,
18112,
505,
279,
1212,
374,
264,
2294,
4623,
389,
279,
5754,
311,
2450,
449,
701,
2447,
13,
2175,
3940,
555,
4857,
701,
274,
26398,
505,
264,
10321,
10247,
477,
1988,
1303,
279,
6070,
315,
264,
1510,
3997,
555,
1701,
1057,
2816,
74194,
477,
50995,
264,
5195,
12138,
1052,
627,
50,
1228,
10609,
374,
2294,
369,
25,
3566,
13707,
11,
21154,
26897,
11,
2447,
20258,
11,
1217,
3217,
11909,
11,
2038,
56035,
11,
323,
810,
0,
328,
1228,
10609,
649,
1862,
7224,
315,
682,
12562,
2737,
4443,
26743,
323,
76808,
311,
61838,
20790,
323,
33232,
50154,
449,
11758,
315,
6959,
627,
8140,
9266
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
50,
1228,
10609,
374,
279,
4832,
917,
311,
1520,
499,
1212,
9293,
264,
3997,
274,
26398,
477,
904,
1023,
41295,
2447,
13,
28780,
701,
2038,
18112,
505,
279,
1212,
374,
264,
2294,
4623,
389,
279,
5754,
311,
2450,
449,
701,
2447,
13,
2175,
3940,
555,
4857,
701,
274,
26398,
505,
264,
10321,
10247,
477,
1988,
1303,
279,
6070,
315,
264,
1510,
3997,
555,
1701,
1057,
2816,
74194,
477,
50995,
264,
5195,
12138,
1052,
627,
50,
1228,
10609,
374,
2294,
369,
25,
3566,
13707,
11,
21154,
26897,
11,
2447,
20258,
11,
1217,
3217,
11909,
11,
2038,
56035,
11,
323,
810,
0,
328,
1228,
10609,
649,
1862,
7224,
315,
682,
12562,
2737,
4443,
26743,
323,
76808,
311,
61838,
20790,
323,
33232,
50154,
449,
11758,
315,
6959,
627,
8140,
9266,
-100
]
|
A Short History of France
Authors: D. J. Peters
A Short History of France comprises brief accounts of significant events in the history of France. Some of the topics discussed in this book include the origins of France; Capetians to St. Louis; Joan of Arc and the restoration of France at the end of the Middle Ages; France from Charles VIII to the rise of Catherine de' Medici; end of the Valois line and the reign of Henry IV; and Mazarin and the years of the Fronde. Louis XIV and the establishment of absolutism; Waterloo to the revolution of 1848; The Second Empire and its collapse; and events in the last 50 years in France are also described in this text. This publication is valuable to French language and literature students who wish to gain general knowledge on French history.
1. The Origins of France
2. The Capetians to St. Louis
3. The Last Capetians and the Early Valois Kings
4. Joan of Arc and the Restoration of France at the End of the Middle Ages
5. France from Charles VIII to the Rise of Catherine de' Medici
6. Protestant and Catholic — France in the Days of Catherine de' Medici
7. The End of the Valois Line, and the Reign of Henry IV
8. France under Marie de' Medici, and the Creation of French Power by Richelieu
9. Mazarin and the Years of the Fronde
10. Louis XIV and the Establishment of Absolutism
11. Louis XV and the Decline of the French Monarchy, 1715-74
12. The Coming of Revolution
13. The Revolutionary Republic and the Napoleonic Empire
14. From Waterloo to the Revolution of 1848
15. The Second Empire and its Collapse
16. The Third Republic, 1870-1914
17. The Last Fifty Years
D. J. Peters | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 0 | [
128000,
32,
10928,
11346,
315,
9822,
198,
58990,
25,
423,
13,
622,
13,
32284,
198,
32,
10928,
11346,
315,
9822,
41095,
10015,
9815,
315,
5199,
4455,
304,
279,
3925,
315,
9822,
13,
4427,
315,
279,
13650,
14407,
304,
420,
2363,
2997,
279,
33472,
315,
9822,
26,
8171,
295,
5493,
311,
800,
13,
12140,
26,
51206,
315,
20267,
323,
279,
35093,
315,
9822,
520,
279,
842,
315,
279,
12877,
50093,
26,
9822,
505,
15274,
58333,
311,
279,
10205,
315,
42663,
409,
6,
3344,
3457,
26,
842,
315,
279,
4196,
30148,
1584,
323,
279,
31402,
315,
18063,
17244,
26,
323,
386,
34144,
258,
323,
279,
1667,
315,
279,
435,
2298,
451,
13,
12140,
94515,
323,
279,
21967,
315,
64262,
2191,
26,
77475,
311,
279,
14110,
315,
220,
10336,
23,
26
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
10928,
11346,
315,
9822,
198,
58990,
25,
423,
13,
622,
13,
32284,
198,
32,
10928,
11346,
315,
9822,
41095,
10015,
9815,
315,
5199,
4455,
304,
279,
3925,
315,
9822,
13,
4427,
315,
279,
13650,
14407,
304,
420,
2363,
2997,
279,
33472,
315,
9822,
26,
8171,
295,
5493,
311,
800,
13,
12140,
26,
51206,
315,
20267,
323,
279,
35093,
315,
9822,
520,
279,
842,
315,
279,
12877,
50093,
26,
9822,
505,
15274,
58333,
311,
279,
10205,
315,
42663,
409,
6,
3344,
3457,
26,
842,
315,
279,
4196,
30148,
1584,
323,
279,
31402,
315,
18063,
17244,
26,
323,
386,
34144,
258,
323,
279,
1667,
315,
279,
435,
2298,
451,
13,
12140,
94515,
323,
279,
21967,
315,
64262,
2191,
26,
77475,
311,
279,
14110,
315,
220,
10336,
23,
26,
-100
]
|
Publix Pharmacies Refuse to Offer Covid Vaccines to Children Under Age 5
Date: June 23, 2022Author: Nwo Report 0 Comments
Representative said company would not offer jab at its more than 1,200 stores to children under 5 'at this time,' adding they would not issue a formal statement on the decision.
Posted BY: Adan Salazar
Florida-based grocery chain Publix says it will not issue Covid jabs to children younger than 5, despite an announcement by the CDC last week recommending the jab for children aged 6-months and older.
A representative for Publix on Wednesday said the company would not offer the jab at its more than 1,200 stores to children under 5 "at this time," adding they would not be issuing a formal statement on the decision.
The Tampa Bay Times said it spoke with a mother who'd scheduled an appointment at a Publix to have her 3-year-old jabbed, but she later received a phone call telling her "that her chosen location was not authorized to vaccinate children under 5."
The company's decision comes as the CDC last week issued a recommendation approving the jab for children 6-months-old and older, claiming it helps parents "better protect them from COVID-19."
The Florida grocer's new policy also follows state Surgeon General Dr. Joseph Lapado's announcement in March advising parents against getting youngsters jabbed, saying it provides no benefit to healthy children.
The retailer, Florida's largest employee-owned grocery chain, reportedly distributed hundreds of thousands of Covid vaccines back in early 2021 when tapped by Governor Ron DeSantis (R) to lead the state's vaccination effort.
The Times reports the company is still offering flu shots for children as young as 6 months old.
Meanwhile, many including the UK's Daily Mail are questioning the grounds on which the jab was approved for youngsters, considering Pfizer based its approval on research that only studied three children, not to mention the fact Moderna has admitted its jab is only 37% effective.
"We should just assume that we don't have efficacy data," Drexel University College of Medicine pediatrics professor Sarah Long admitted to the New York Times last week.
Publix Pharmacies Refuse
Previous Previous post: Clown World Police
Next Next post: Alarming Chart Shows Rapid Escalation Of Mysterious Destructive Events Hitting America's Food Supply Chain With Meat Under All Out Attack As The Globalists Push 'Crickets' As New Superfood
Minnesota House passes legislation establishing unlimited 'right' to abortion on demand January 27, 2023 | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 7,818 | [
128000,
30262,
15401,
25603,
27121,
8718,
817,
311,
25510,
38074,
59788,
1572,
311,
15394,
9636,
13381,
220,
20,
198,
1956,
25,
5651,
220,
1419,
11,
220,
2366,
17,
7279,
25,
452,
1146,
8423,
220,
15,
18149,
198,
66843,
1413,
1071,
2883,
1053,
539,
3085,
61164,
520,
1202,
810,
1109,
220,
16,
11,
1049,
10756,
311,
2911,
1234,
220,
20,
364,
266,
420,
892,
2965,
7999,
814,
1053,
539,
4360,
264,
16287,
5224,
389,
279,
5597,
627,
17827,
7866,
25,
2467,
276,
8375,
34144,
198,
58127,
6108,
30687,
8957,
23435,
15401,
2795,
433,
690,
539,
4360,
38074,
503,
3518,
311,
2911,
14992,
1109,
220,
20,
11,
8994,
459,
17480,
555,
279,
40409,
1566,
2046,
65774,
279,
61164,
369,
2911,
20330,
220,
21,
23086,
82,
323,
9191,
627,
32,
18740
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
30262,
15401,
25603,
27121,
8718,
817,
311,
25510,
38074,
59788,
1572,
311,
15394,
9636,
13381,
220,
20,
198,
1956,
25,
5651,
220,
1419,
11,
220,
2366,
17,
7279,
25,
452,
1146,
8423,
220,
15,
18149,
198,
66843,
1413,
1071,
2883,
1053,
539,
3085,
61164,
520,
1202,
810,
1109,
220,
16,
11,
1049,
10756,
311,
2911,
1234,
220,
20,
364,
266,
420,
892,
2965,
7999,
814,
1053,
539,
4360,
264,
16287,
5224,
389,
279,
5597,
627,
17827,
7866,
25,
2467,
276,
8375,
34144,
198,
58127,
6108,
30687,
8957,
23435,
15401,
2795,
433,
690,
539,
4360,
38074,
503,
3518,
311,
2911,
14992,
1109,
220,
20,
11,
8994,
459,
17480,
555,
279,
40409,
1566,
2046,
65774,
279,
61164,
369,
2911,
20330,
220,
21,
23086,
82,
323,
9191,
627,
32,
18740,
-100
]
|
Frank Lampard dismisses Fikayo Tomori's loan speculation
Chelsea manager Frank Lampard has insisted that there have been no discussions to send Fikayo Tomori on loan for the upcoming campaign. The England international fell out-of-favour under Lampard during the backend of the previous season and there has been the speculation that he could be loaned out to Everton this summer.
Earlier this year, Fikayo was the fifth-choice centre-back behind Antonio Rudiger, Kurt Zouma, Cesar Azpilicueta and Andreas Christensen and the arrival of Thiago Silva from Paris Saint-Germain on a free transfer has meant that he will drop further down the selection order. Despite this, Lampard has insisted that there are no plans to send him out of loan at the moment.
He told: "With Fikayo, no, I'm not aware of those conversations getting to any point where I'm going to be talking about that. Fikayo trained with us today and is in contention for the Brighton game, and that's where we're at. There's nothing specific I want him to improve, all I want him to do is work hard, show the work ethic he's shown me at Derby and for major parts of last season. I hope every player knows at that point I'm fair in how I try to pick the team."
The Blues are obviously expected to be without Silva for the opening few games, considering he has yet to integrate into training after his Champions League final appearance for Paris Saint-Germain last month. Hence, Fikayo could stay put for the next few weeks and it won't come as a surprise, if he is loaned out to the Toffees before the transfer window closes on October 5.
Zouma had a productive loan season with the Merseyside outfit during the 2018/19 campaign which enabled him to become a regular for the Blues and Tomori could have a similar opportunity with the Toffees, who are currently managed by the legendary Carlo Ancelotti.
Abraham to get playing time next season despite Werner's arrival, says Schwarzer
CARVALHO NAMED THE TOUGHEST OPPONENT | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 543 | [
128000,
38426,
42277,
569,
13738,
288,
435,
1609,
77080,
8529,
13915,
596,
11941,
33422,
198,
87406,
6783,
9454,
42277,
569,
706,
29676,
430,
1070,
617,
1027,
912,
20954,
311,
3708,
435,
1609,
77080,
8529,
13915,
389,
11941,
369,
279,
14827,
4901,
13,
578,
9635,
6625,
11299,
704,
8838,
2269,
27089,
1234,
42277,
569,
2391,
279,
19713,
315,
279,
3766,
3280,
323,
1070,
706,
1027,
279,
33422,
430,
568,
1436,
387,
11941,
291,
704,
311,
63539,
420,
7474,
627,
34141,
420,
1060,
11,
435,
1609,
77080,
574,
279,
18172,
63726,
12541,
15825,
4920,
23245,
48538,
7420,
11,
44023,
1901,
283,
1764,
11,
356,
33340,
15757,
79,
321,
292,
84,
1955,
323,
51162,
3771,
35117,
323,
279,
19163,
315,
60223,
6438,
42141,
505,
12366,
14539,
12279,
261,
3902,
389,
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
]
| [
38426,
42277,
569,
13738,
288,
435,
1609,
77080,
8529,
13915,
596,
11941,
33422,
198,
87406,
6783,
9454,
42277,
569,
706,
29676,
430,
1070,
617,
1027,
912,
20954,
311,
3708,
435,
1609,
77080,
8529,
13915,
389,
11941,
369,
279,
14827,
4901,
13,
578,
9635,
6625,
11299,
704,
8838,
2269,
27089,
1234,
42277,
569,
2391,
279,
19713,
315,
279,
3766,
3280,
323,
1070,
706,
1027,
279,
33422,
430,
568,
1436,
387,
11941,
291,
704,
311,
63539,
420,
7474,
627,
34141,
420,
1060,
11,
435,
1609,
77080,
574,
279,
18172,
63726,
12541,
15825,
4920,
23245,
48538,
7420,
11,
44023,
1901,
283,
1764,
11,
356,
33340,
15757,
79,
321,
292,
84,
1955,
323,
51162,
3771,
35117,
323,
279,
19163,
315,
60223,
6438,
42141,
505,
12366,
14539,
12279,
261,
3902,
389,
264,
-100
]
|
It's Christmas day and I'm in Colorado living in my car. I'm out here on my own accord. I want adventure, I crave adventure, so I came out to these sub zero temps to climb some mountains, do some snowboarding, and actually have a white Christmas instead of the warm drizzle back on the East coast. But I'm in Starbucks in Breckenridge now and I miss my family and miss my home.
This morning I began an ascent of Quandary Peak just south of Breckenridge. It's one of the 52 Colorado 14ers and is decidedly the easiest winter route. With a long gradual, broad east ridge it allows the hiker to stay out of avalanche terrain for the duration of the climb with no pitches greater than maybe 30 percent.
I got a late start, leaving my car around 1130, expecting the climbing to be easy and the round trip to take less than 5 hours. If I wasn't on the summit by 3pm, I would turn around, no question. The conditions were rough, temps hovering just above 0, winds gusting up to 40mph, and dense snow finding its way in every crack in my clothes. About a half mile up, below tree line, I got too warm and stripped down to just my base layer and my Arc'Teryx Alpha AR jacket and Alpha SL pants. Seriously, the best, most breathable combo for winter mountaineering. Most of my sweat evaporated through the fabric and I stayed warm despite the bitter wind.
Just out of tree line I saw a couple postholing up the ridge just ahead of me without snowshoes. With the unrelenting snow over the past few days I sympathized with their struggle in the deep snow and passed them to help set trail. But with the heavy winds, my tracks were undetectable within minutes.
Coming up to a leveling on the ridge a little over halfway up I heard a whistle blaring. When hiking, especially with a fleece cap and hood up, I hear all kinds of fictitious noises from conversations to shouting to avalanches in the distance. Usually I don't remove my hood to listen more carefully, knowing that as soon as I stop I'll realize the sound was just my imagination. But the whistle had a distinct sound of desperation. I stopped, looked around, and continued to hear the high pitched pierce. For a moment I thought it was the call of a bird or an animal and hoped and hoped that no one had slid off the lips on either side of the ridge.
But I figured it must be coming from above me so I kept hiking to get a better vantage. And sure enough when I crested the incline there were three hikers very slowly limping toward me. From a distance I couldn't tell who was hurt and who was helping who but when I got closer, the emotionless, dazed face of the climber in the middle answered the question for me. I couldn't hear them over the blasting wind so I didn't answer their call until I was maybe 5 feet away. They could tell from my confusion that I wasn't the rescue they had called for.
"What's up, what's going on?" I shouted to the two hikers carrying the one in the middle.
"He's severely hypothermic, we found him up on the summit," the one on skis answered. They had hoped I was the rescue but unfortunately I was carrying very little but offered what I had.
They hesitated and said they thought they had it under control but I could tell they were saying it out of respect for my desire to summit, rather than actual lack of needing help.
For a moment I considered it. I didn't know how bad the situation was yet and didn't know how far away the summit was. But I thought better of becoming a statistic myself and said, "Nah, screw that, what can I do; what do you all need?" and immediately the one on skis, later I would learn is Jason, asked if I would mind carrying the other guy's pack. His pack was tremendous for a day hike, but in typical Grayson fashion, mine was tiny, so I could easily afford the extra weight.
"Of course, of course, what else can I do? Does one of you want to trade out?" I offered my jacket but the hypothermic climber, named Cole, was ridiculously bundled up, obviously wearing some layers from the other two guys. He declined so I offered him Sour Patch Kids, bound to be frozen by now, but still delicious, and some Gatorade I had been storing in my jacket. He said yes to the Gatorade with some hesitation and I poured it into his mouth while the other guys, the other one name Mike, held him up.
I grabbed Cole's pack and we started working our way down in silence, with only the occasional plea for a break from Cole. It was slow going but Cole was looking okay and was responsive so we knew we'd get down eventually. The other two guys had both pressed their Spot SOS buttons so we knew rescue was somewhat on the way, just didn't know when.
We soon caught up to the couple hikers I had passed on the way up and Jason and Mike were seriously bummed that it wasn't the rescue they had called for. But the two hikers had hand warmers and offered them up. Jason shouted with joy and said the hand warmers would really help. So the other two hikers got to opening up and warming up the hand warmers and then we worked Cole's gloves off his frozen hands to put the warmers in. This was the first moment I realized how awful the situation actually was. His hands were frozen in place with purple finger tips with the rest a pale yellow. I almost wretched when I first saw them and realized that Cole wasn't simply going home to tell a crazy story of his attempt on Quandary on Christmas day. We worked the warmer's into his clawed fists and then struggled to get his swollen hands back into the mittens.
Soon the slope steepened and Jason was having a tough time going the slow pace on skis so he asked if we could trade out. Before we switched I saw Cole's pants were falling down and some skin was exposed so I apologized for invading his personal space and helped lift them up and tucked his inner jacket into his pants.
Jason slipped out from under Cole's arm and I slid in, quickly realizing that the height difference was going to make for an interesting hike down. Cole was nearly a foot taller than me so I had to leverage on his arm and back to keep him from collapsing each time we postholed into softer snow. It was an art to walk side by side with two other guys in the deep snow, all of us wearing snowshoes. It was a skill that I had underestimated when I saw Jason and Mike carrying Cole down. But with practice it became easier and I stopped tripping over my own snowshoes.
After a while, both Mike's and my arms were getting tired so we switched sides to distribute the strain but it didn't help much. Mike had been going since 9am, had hiked up with Cole close on his heels, until Cole had turned around saying he was tired. Mike kept going, not knowing that Cole was desperately cold and topped out on the summit. In that time Jason had come upon Cole sitting in the snow, jackets off with bare hands, obviously in distress. He had reached the last stage of hypothermia where the body starts feeling hot and the victim strips down. Jason realized that Cole was dying and helped him put his clothes back on and added his own extra down jacket then started helping him down the mountain. Mike came upon the two of them shortly after and helped with the rescue. They had been going through this for over an hour when I met up with them.
On a more gradual slope I switched out with Jason again to do a personal check. My hands were stiff and cold and my feet numb and I was exhausted. But once the slope steepened again I switched back into position. I prayed for the rescue to be coming up and hated looking down the mountain at the empty slope. After all the stories I had read of the Robertsons and other people lost at sea or desperate for a rescue that would never come I figured we were on our own to get him down and that realization somewhat eased the pain of waiting for help that may not come.
But finally it did come. A lone skier with a tremendous pack and a red jacket slipped into view and I nearly lost it with joy. We were getting there on our own, but my goodness it was nice to see the professionals. Where we were though was extremely exposed and the wind was tearing at all of us. My beard and moustache were frozen and Cole had some ugly frostbite on his nose, lips, and cheeks. Mike suggested we continue on down to the trees and so we did. My arms were dying and I felt like I was going to collapse any minute so I really wanted to pass Cole off but at the same time I was just happy to be moving.
I know it may seem tacky but I took this once the rescuers arrived because I never want to forget this day and how important safety is in the backcountry.
Down behind the trees I traded out with one of the rescuers and got a much needed break. With more and more rescuers showing up and eventually an essential army of people coming up the mountain, I relaxed finally knowing he'd be alright. Down below treeline we all rested while they checked Cole's vitals and put some warmer layers on him. Eventually they had him on a snowmobile racing down to an ambulance waiting at the trailhead. I caught the story from Jason and Mike and finally had some idea what the hell had happened.
From our best guess Cole had worn too many layers on the way up and sweated through all of them. Likely dehydrated and soaking wet, he didn't have another layer to put on for the descent so the wind tore through his close and froze him to the core. He became delusional and took his clothes off, amplifying the problem and contributing to the frostbite on his hands. Had either Jason or Mike not been up there, there would have been no way one person could have gotten Cole down. And had Jason arrived even an hour later, he may have come upon a freezing corpse.
It's a scary thought and truly humbling one. My hands haven't stopped trembling from the incident and I feel sick from seeing Cole's hands. I truly hope for the best for him and hope he doesn't have too many issues from the frostbite.
The day has made me reevaluate my own tactic toward climbing and hiking. I am an absolute minimalist by nature and it always works out for me. I depend on experience and knowledge rather than gear. But had I been carrying even the tiniest sleeping bag, pad, and bivy sack, the day would have gone much better. Instead I had a couple bottles of gatorade, a couple granola bars, and a single lightweight fleece jacket. I had nothing to spare and was freezing during breaks at such exposed altitudes.
I'm happy we all had Spot satellite messengers but the rescue took forever when we were all freezing. In reality it was an incredible and rapid response and I am so thankful those guys are all there to help. But I need to carry supplies to at least sustain me till a rescue if I ever find myself in a similar situation.
It's also made me realize how dangerous a rescue can be. Had the slope been much steeper and snow a little firmer, Cole would have slid and kept sliding if he had fallen. We did our best to keep him up but it was brutal in the deep snow. If I ever find myself in a situation like this again I need to remember to look out for myself. I know it sounds superficial given the circumstance but I was freezing myself and didn't know it until I finally had a break to self-assess. I'm happy to be relaxing now but the sight of Cole's hand is sure to haunt me for years to come. It was an overwhelming day and now that we're all safe I really hope for the best for Cole. Time to get some rest.
UPDATE: I was mistaken to assume that Cole removed his clothes because of his hypothermia. He was in the process of adding layers but was unable to put on his jacket or gloves because his hands were stiff.
Thanks for sharing that story. Keep adventuring, learning and sharing what you learn.
Excellent write up! Thanks Grayson for sharing. Mike Via happens to be a good friend of mine and he told me all about it the next day. I was really hoping to find a news story so I could share it on FB and brag on my friend. He's not one to brag on himself.
Thanks Steven. It was great meeting Mike up there, despite the circumstances. Please feel free to share this post, I hope others can learn the lesson through this story rather than on their own.
Hi this is Coles mom, I would love to thank your friend Mike. He did an excellent job helping my son. I can't begin to thank him, Jason and Grayson for their efforts to save my son. I thank God every day since Christmas day, for each of them. Heroes in my book. Please tell Mike for me.
I will pass this message on to Mike!
This was in great detail of what happen. Cole is actually my best friend and I had texted him that day to wish him a Merry Christmas but never got a response. His parents live across the street from mine and his mother filled me in later that day of what happen. I gave Cole a call and he was still in the hospital but was in good spirits. Thanks again for being there to assist. The world would be a little less bright without that dude.
Of course. We were all happy to help. And agreed, Cole seems like an awesome guy!
Nice work Grayson! Glad you decided to help, it's a bit of the outdoor code for most of us, but good you had the opportunity to help and also glad you weren't in any more danger than a bit of cold as well.
Thanks Sean. I'm very glad I was there to be of assistance.
Mike and Jason were incredible out there. It was great meeting them both. Thanks for the share, I hope it helps bring some awareness to the risks out there.
Great story Grayson! Mike is also a good friend of mine. He told us the whole story when he got back. One minor detail that you probably didn't know as Mike probably wouldn't have mentioned, it was his Birthday!
Many thanks to the three of you for stepping up and being the Christmas Heroes for Cole!
Thanks David. What a crazy birthday and christmas!
I want to thank all of you for saving Cole. He is my youngest grandson. We live in Tennessee. I know how different Colorado weather is. Again thank you for saving our boy and all you do. Maybe when Cole is healed you may have a new volunteer when Cole heals. So thankful you saw him and helped him..
I am thrilled he is doing okay. I'm a Virginia boy myself so we east coast guys have to look out for each other!
I worked with Cole this past summer in Tennessee. Glad you were there to help out.
I am glad we were there too. I am certain Cole would've done the exact same for us had we been in his situation.
I enjoyed the write-up but wanted to make one comment, not to criticize, but to educate. I'm an emergency medicine doctor with some experience in wilderness medicine. I don't completely agree with your decision to try and rewarm the victim's hands on the way down. When treating frostbite in the backcountry it's generally recommended that you do not attempt re-warming when there is a risk of the affected extremity refreezing, (which I'd say was a possibility in this case, as you didn't know when you'd be able to get the victim out). Rewarming and then refreezing can significantly worsen the injury (http://www.wemjournal.org/article/S1080-6032(11)00077-9/fulltext#sec6). Keep up the adventuring and good luck with the rest of med school!
Hey Pete, thanks so much for the info! It is much appreciated. We were certain we would be down within a couple hours, even at our slow pace, so refreezing wasn't too much of a concern. But I was curious about where to draw the line between preventing more frostbite and yet trying to not thaw the already frozen tissue. In this case I considered that his hands might become worse if we didn't add the hand warmers. What're your thoughts?
I take the "could" in the second sentence very seriously. Once the tissue is frozen it's frozen. The damage is done. The issue with rewarming in the field is that if things don't go according to plan you're at risk of significantly worsening that damage. Make sense?
Yep. Thanks for the info. I'll have to look more into wilderness medicine to be better prepped for things like this in the future.
Thanks for the story. Quite the experience.
I also used to be fairly minimalist until I took a WFR course. Holy cow do you ever need a lot of gear for some emergencies. I now carry around a 2 pound med kit, blizzard blanket, spare gloves and spare sweater in my Targhee and it's still not enough for many situations.
Consider taking the course, it will save lives someday. I lead no expeditions and yet have used what I learned in that course repeatedly.
I hope you have some great summits ahead.
Hey Tyler, thanks for your comment. I'll definitely look into taking the course. That sort of thing is right up my alley after what happened that day.
Hey Grayson, what a day you had. I admire you for making the decision to give up your summit try and help. It sounds like you really contributed to getting Cole down to the rescue team. Hope you had a good fall and I'm looking forward to hearing more about your adventures! | {
"redpajama_set_name": "RedPajamaC4"
} | 349 | [
128000,
2181,
596,
10280,
1938,
323,
358,
2846,
304,
15745,
5496,
304,
856,
1841,
13,
358,
2846,
704,
1618,
389,
856,
1866,
14902,
13,
358,
1390,
18427,
11,
358,
81413,
18427,
11,
779,
358,
3782,
704,
311,
1521,
1207,
7315,
27138,
311,
26438,
1063,
24405,
11,
656,
1063,
12056,
38669,
11,
323,
3604,
617,
264,
4251,
10280,
4619,
315,
279,
8369,
1377,
44237,
1203,
389,
279,
6460,
13962,
13,
2030,
358,
2846,
304,
49884,
304,
11681,
41288,
11431,
1457,
323,
358,
3194,
856,
3070,
323,
3194,
856,
2162,
627,
2028,
6693,
358,
6137,
459,
76089,
315,
3489,
438,
661,
44262,
1120,
10007,
315,
11681,
41288,
11431,
13,
1102,
596,
832,
315,
279,
220,
4103,
15745,
220,
975,
388,
323,
374,
77120,
279,
30689,
12688,
6149,
13,
3161,
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
]
| [
2181,
596,
10280,
1938,
323,
358,
2846,
304,
15745,
5496,
304,
856,
1841,
13,
358,
2846,
704,
1618,
389,
856,
1866,
14902,
13,
358,
1390,
18427,
11,
358,
81413,
18427,
11,
779,
358,
3782,
704,
311,
1521,
1207,
7315,
27138,
311,
26438,
1063,
24405,
11,
656,
1063,
12056,
38669,
11,
323,
3604,
617,
264,
4251,
10280,
4619,
315,
279,
8369,
1377,
44237,
1203,
389,
279,
6460,
13962,
13,
2030,
358,
2846,
304,
49884,
304,
11681,
41288,
11431,
1457,
323,
358,
3194,
856,
3070,
323,
3194,
856,
2162,
627,
2028,
6693,
358,
6137,
459,
76089,
315,
3489,
438,
661,
44262,
1120,
10007,
315,
11681,
41288,
11431,
13,
1102,
596,
832,
315,
279,
220,
4103,
15745,
220,
975,
388,
323,
374,
77120,
279,
30689,
12688,
6149,
13,
3161,
264,
-100
]
|
Future-Proof, Sustainable And Flexible: Mercedes-Benz Plant In Wörth Sets Course For Future Series Production Of Battery-Electric And Fuel-Cell Trucks
By FuelCellsWorksJuly 15, 2021 7 min read (1391 words)
Stuttgart / Wörth am Rhein – Sustainable, highly flexible and ideally positioned for the future of transport: The Mercedes-Benz plant in Wörth is becoming the center for emission-free transport within the Mercedes-Benz truck production network. Management and works council have agreed on a corresponding target picture for the site.
Both parties agreed on key points for the future development and safeguarding of the future of Mercedes-Benz Trucks' largest location. Among other things, this includes the decision to locate the production of further trucks with CO2-neutral drive systems at the Wörth location. In addition to the Mercedes-Benz eActros, which will already go into series production there in October 2021, the production of further Mercedes-Benz zero-emission trucks, such as the eEconic and eActros LongHaul, is also planned for Wörth in the future. Accordingly, Daimler Truck will continue to invest substantially in the location in the coming years – a clear commitment to Germany as a business location and to the Mercedes-Benz plant in Wörth.
Management and Works Council agree on future orientation of the Wörth plant.
Daimler Truck is clearly committed to Wörth, which will play an important role in the company in the long term with a view to the transformation to CO2-neutral transport. The company will continue to invest in the location in the coming years; however, the upcoming transformation also requires support from the public sector.
The cornerstones of the agreement include the sustainable series production of battery-electric and fuel-cell trucks at the Mercedes-Benz plant in Wörth, the further development and qualification of the workforce within this transformation, and the further expansion of digitalization at the site.
Highly flexible production will ensure the efficient production of both conventional and locally CO2-neutral trucks at the Wörth plant in the coming years.
Daimler Truck is thus consistently taking the next step into the direction of CO2-neutral transport: the series-production of the eActros for urban distribution will already start in October this year in Wörth. The battery-electric eActros LongHaul for long-distance transport is scheduled to be ready for series production in 2024, and the first series-produced trucks with hydrogen-powered fuel-cell drive could be handed over to customers starting in 2027.
"Today we are laying the foundation for the future of the Mercedes-Benz truck production. The technology shift in our industry towards locally emission-free trucks also implies an immense transition for our locations and production. With the new target picture for the Wörth plant, we are securing the competitiveness and thus the long-term future of the location: In the future, we want to greatly expand the series production of our electric trucks here and are already creating the conditions for this," says Sven Gräble, Head of Mercedes-Benz Trucks Operations, responsible for the global production network of Mercedes-Benz Trucks.
Thomas Zwick, Chairman of the Works Council Mercedes-Benz Wörth plant: "After intensive negotiations with the management, we agreed on a strong and viable vision for the future of our plant. We have thus succeeded in securing employment and complying with existing collective agreements. I am proud that the works council has received a commitment to produce the new models in Wörth. We have thus secured the long-term future of the site and can confidently shape the transformation together with the employees. The new products offer many career opportunities and development possibilities."
The vision for the future of the Mercedes-Benz plant in Wörth is determined in a works agreement with a term until the end of 2029. The details for implementation will be further elaborated between management and works council in the coming months. Substantial funds will be required for the upcoming transformation of the site, including the conversion of production. The company will continue to invest in the site for this purpose in the coming years; however, the transformation also requires support from the public sector. Accordingly, Daimler Truck AG has submitted an application to the German government as part of the funding for hydrogen and fuel-cell technologies, which also includes the conversion at the Wörth plant. The state government of Rhineland-Palatinate has already signalled its support in the last government declaration.
The decision about the location for trucks with alternative drive systems forms an important pillar of the plant's new strategic orientation. Sven Gräble: "Though, we are going even further: Wörth is becoming the hub for the transport of the future in the Mercedes-Benz truck production network. We are bundling our technological know-how with fully flexible and thus even more efficient production, and all of this in a CO2-neutral, digitalized factory with corresponding logistics and infrastructure.
At the German Powertrain sites, the Mercedes-Benz plants in Gaggenau, Mannheim and Kassel, management and works council are also currently engaged in intensive talks on the future orientation of the sites. The talks are already at an advanced stage and an agreement is to be reached as soon as possible.
Zero-emission trucks secure long-term capacity utilization and employment at the location
In its transformation toward CO2-neutral transportation, Daimler Truck is consistently relying on two all-electric drive technologies: Battery and hydrogen-based fuel-cell. With these, every customer application can be covered with full flexibility in terms of routes – from well-plannable, urban distribution to difficult-to-plan, multi-day transports. Which solution is used by the customer depends on the specific application.
As the first battery-electric truck, the Mercedes-Benz eActros for routes in distribution transport will go into series production at the Mercedes-Benz plant in Wörth in October 2021, followed by the eEconic next year. The battery-electric eActros LongHaul for long-haul transport will follow from the middle of the decade. With the decision to manufacture the zero-emission trucks in Wörth, the company is securing the long-term capacity utilization of the plant and stable employment at the site.
Qualification and flexibilization as the key to the future
New assembly processes are being introduced at the Wörth plant for the production of trucks with alternative drive systems, including the necessary infrastructure. Daimler Truck is thus doing pioneering work for CO2-neutral transport "made in Wörth". Decisive factors on the way to this goal are both the qualification and further development of the workforce and the greater flexibilization of production. The aim is to prepare the workforce for future tasks. Since 2018, around 2,000 employees have so far gained further qualifications in the handling of high-voltage vehicles and components at the site's own training and development center in Wörth – and acquired indispensable skills for the assembly of electrically powered trucks.
Highly flexible production will ensure the efficient production of both conventional and zero-emission trucks at the Mercedes-Benz plant in Wörth in the coming years – and thus the competitiveness of the entire site. The so-called fullflex concept makes it possible to integrate zero-emission trucks into existing production. In this way, the plant is able to adapt efficiently and even faster to the respective market demand and reliably meet the demanding quality standards of Mercedes-Benz. In addition, the plant is currently preparing to significantly increase production capacity in line with the current positive order situation by switching from two-shift to three-shift operation before the end of this year.
Green factory: Production will also become CO2-neutral.
In addition to the products, the entire Wörth site, including production, will be CO2-neutral from 2022, just like all other European Daimler Truck plants. A unique green power concept at Daimler makes it possible, among other things: CO2-free power procurement from renewable energy sources will form the basis for CO2-neutral production. As part of this, the site will obtain electricity from wind and solar farms as well as hydroelectric power plants from 2022 onwards. On the way to becoming a green factory, the Mercedes-Benz plant in Wörth is also to operate CO2-free in the long term by successively establishing a completely renewable energy system over the next few years. The constant improvement of energy efficiency at the plant also plays an important role. One example: In the long term, a central absorption refrigeration system will replace hundreds of decentralized air-conditioning units at the site, using existing heat instead of electricity for air conditioning. Existing buildings and infrastructure are also being completely renovated in terms of energy efficiency, and new, more climate-friendly technologies are being used in production, such as the "Eco Paint Process" in the paint shop.
Previous PostGrInHy2.0: EU Funding Body Visits the World's Largest High-Temperature Electrolyser of Salzgitter Flachstahl GmbH
Next PostScottish Government Launches First £50 Million Phase For Zero Emission Buses In 2021 | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 6,258 | [
128000,
25184,
12,
32176,
11,
61593,
1628,
53411,
25,
34328,
63321,
18317,
763,
468,
9603,
339,
12808,
17026,
1789,
12781,
11378,
25003,
5046,
34712,
13737,
47262,
1628,
37384,
12,
3683,
86435,
198,
1383,
37384,
21526,
38783,
29527,
220,
868,
11,
220,
2366,
16,
220,
22,
1332,
1373,
320,
10125,
16,
4339,
340,
626,
55243,
611,
468,
9603,
339,
1097,
71636,
258,
1389,
61593,
11,
7701,
19303,
323,
50663,
35328,
369,
279,
3938,
315,
7710,
25,
578,
34328,
63321,
6136,
304,
468,
9603,
339,
374,
10671,
279,
4219,
369,
41353,
12862,
7710,
2949,
279,
34328,
63321,
11092,
5788,
4009,
13,
9744,
323,
4375,
15177,
617,
7378,
389,
264,
12435,
2218,
6945,
369,
279,
2816,
627,
21279,
9875,
7378,
389,
1401,
3585,
369,
279,
3938,
4500,
323,
49071,
287,
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
]
| [
25184,
12,
32176,
11,
61593,
1628,
53411,
25,
34328,
63321,
18317,
763,
468,
9603,
339,
12808,
17026,
1789,
12781,
11378,
25003,
5046,
34712,
13737,
47262,
1628,
37384,
12,
3683,
86435,
198,
1383,
37384,
21526,
38783,
29527,
220,
868,
11,
220,
2366,
16,
220,
22,
1332,
1373,
320,
10125,
16,
4339,
340,
626,
55243,
611,
468,
9603,
339,
1097,
71636,
258,
1389,
61593,
11,
7701,
19303,
323,
50663,
35328,
369,
279,
3938,
315,
7710,
25,
578,
34328,
63321,
6136,
304,
468,
9603,
339,
374,
10671,
279,
4219,
369,
41353,
12862,
7710,
2949,
279,
34328,
63321,
11092,
5788,
4009,
13,
9744,
323,
4375,
15177,
617,
7378,
389,
264,
12435,
2218,
6945,
369,
279,
2816,
627,
21279,
9875,
7378,
389,
1401,
3585,
369,
279,
3938,
4500,
323,
49071,
287,
315,
-100
]
|
UWSP running coach gave marrow to save a life
Scott A. Williams
STEVENS POINT — Kristin LeClair lay in a hospital bed at University Hospital in Madison while a pair of surgeons inserted long needles into each side of her pelvic bone for an hour and a half.
The University of Wisconsin-Stevens Point track and field and cross country graduate assistant coach spent the end of her summer break undergoing a procedure to remove a liter of bone marrow from her body.
LeClair, 23, still deals with some discomfort in her back a couple weeks removed from the procedure. Her energy levels have yet to fully return to pre-procedure levels.
Yet she wouldn't change places with anyone. Nothing can replace the satisfaction LeClair feels knowing she just might help save the life of her match.
"I guess the best way to describe it is I feel like I jumped out of a window and landed on my butt," LeClair said. "(But) I'm kind of the least of the picture compared to what my match is going through. When you hear what they are going through, nothing can compare to that."
LeClair qualified as a donor candidate through the "Be The Match," a program of the National Marrow Donor Program. The program connects patients diagnosed with leukemia, other cancers or genetic diseases with donors willing to provide them with healthy bone marrow.
The bone marrow removal capped off a whirlwind life experience for LeClair.
It began in March when several of her Pointers athletes prodded the Manitowc native to register for the "Be The Match" program as part of a drive being conducted by the UWSP athletic training department.
While working out on an elliptical machine on July 8, she was received a phone call that would change not only her life, but also potentially save the life of another human being.
LeClair heard the news she was the best match for a patient in need of a bone marrow transplant who is suffering with a type of leukemia.
"I really, really wanted to help this person," said LeClair of her reaction to the news of being a match. "It's such a cool thing and I can't imagine being a match turning it down."
Upon hearing the news she was a match, LeClair was about to embark on a nearly month-long battery of tests to make sure every minute detail of her physical make-up was checked and rechecked.
All the appointments and consultations could have wreaked havoc in her life if not for the helping hand of Arthur Frielund, who is the "Be The Match" Donor Center coordinator with the Community Blood Center in Appleton.
"I'm basically the travel agent for the donor," Frielund said. "My objective is to make the donor feel as comfortable and informed as possible before going in for the procedure.
"(The donor's) safety and livelihood is the top priority," Frielund added. "If it's just not the right fit or there is something going on in their life where this will not impact them well, then we tell them this is not for them."
"To tell you the truth," LeClair said, "it all became extremely real during the process of being pre-tested."
LeClair, who ran track at Carthage College for four years before enrolling in grad school at UWSP last semester, ultimately passed the multitude of necessary tests and was approved to have one of two procedures done.
LeClair actually qualified for the less common procedure — only 24 percent of bone marrow donors fall into the category — of drawing the marrow directly from the pelvic bone.
Only one in 540 people registered are actually called and informed they are a potential donor. To join the donor registry individuals must 18 and 44 years old. Once on the registry, a person can stay there until the age of 61. According to the National Marrow Donor Program, there are more than 10.5 million potential donors in its "Be the Match" database.
In some respects LeClair and her match have already beaten some pretty astronomical odds.
"Kristin has been amazing," Frielund said. "She has always been available to receive phone calls and she has really been on the ball with whatever we've needed. She has been very professional and very responsible and has been willing to bend over backwards for us."
LeClair is no stranger to the cruel impact cancer can have only a family. She has lost several relatives to the disease.
However, she also knows a cancer diagnosis is far from a death sentence. Her grandmother is a three-time cancer survivor.
Confidentiality concerns and the ramifications of a match's family knowing the identity of a donor prevent LeClair from having any personal contact with her match for a year. That is the law in the United States; however, donors can anonymously send cards or gifts to their matches
LeClair has sent her match a card letting that person know she was hoping the match would be okay and that she was thinking of him or her.
"I will forever be proud of this," LeClair said. "Part of the reason why I want to be a coach is I want to help people, and if I can save a life, that's better than anything else I can imagine.
"I could help this person again in the future and I would do it again in a heartbeat," she added. "I can't wait until a year passes and I maybe get to meet my match."
—Scott A. Williams can be reached at 715-345-2282, or on email at [email protected]. Find him on Twitter as @SPJScottWill.
For more information on how you can register to become a match, visit www.bethematch.org. | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 9,374 | [
128000,
52,
54,
4695,
4401,
7395,
6688,
83748,
311,
3665,
264,
2324,
198,
39320,
362,
13,
13926,
198,
790,
47110,
20982,
47695,
2001,
27973,
258,
2009,
5176,
1334,
11203,
304,
264,
8952,
4950,
520,
3907,
15429,
304,
31015,
1418,
264,
6857,
315,
74272,
22306,
1317,
57267,
1139,
1855,
3185,
315,
1077,
84168,
17685,
369,
459,
6596,
323,
264,
4376,
627,
791,
3907,
315,
21073,
40720,
5230,
729,
5236,
3839,
323,
2115,
323,
5425,
3224,
19560,
18328,
7395,
7543,
279,
842,
315,
1077,
7474,
1464,
47397,
264,
10537,
311,
4148,
264,
7080,
315,
17685,
83748,
505,
1077,
2547,
627,
2356,
5176,
1334,
11,
220,
1419,
11,
2103,
12789,
449,
1063,
44776,
304,
1077,
1203,
264,
5743,
5672,
7108,
505,
279,
10537,
13,
6385,
4907,
5990,
617,
3686,
311,
7373
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
52,
54,
4695,
4401,
7395,
6688,
83748,
311,
3665,
264,
2324,
198,
39320,
362,
13,
13926,
198,
790,
47110,
20982,
47695,
2001,
27973,
258,
2009,
5176,
1334,
11203,
304,
264,
8952,
4950,
520,
3907,
15429,
304,
31015,
1418,
264,
6857,
315,
74272,
22306,
1317,
57267,
1139,
1855,
3185,
315,
1077,
84168,
17685,
369,
459,
6596,
323,
264,
4376,
627,
791,
3907,
315,
21073,
40720,
5230,
729,
5236,
3839,
323,
2115,
323,
5425,
3224,
19560,
18328,
7395,
7543,
279,
842,
315,
1077,
7474,
1464,
47397,
264,
10537,
311,
4148,
264,
7080,
315,
17685,
83748,
505,
1077,
2547,
627,
2356,
5176,
1334,
11,
220,
1419,
11,
2103,
12789,
449,
1063,
44776,
304,
1077,
1203,
264,
5743,
5672,
7108,
505,
279,
10537,
13,
6385,
4907,
5990,
617,
3686,
311,
7373,
-100
]
|
About Louis Berger
Economic & Institutional Development
Capacity Building & Technical Assistance
Economics & Financial Services
Emergency & Disaster Management
Heritage Resource Management
Life at Louis Berger
2017 ASCE-NCS Award of Merit for Outstanding Civil Engineering Project for 17th Street Levee in Washington, DC
award-ASCE-NCS-DC-17th-st-levee_web.jpg
The 17th Street levee in Washington, D.C. was constructed to reduce risk to human safety and critical infrastructure from flooding of the Potomac River.
Agency:
American Society of Civil Engineers-National Capital Section (ASCE-NCS)
DC Department of Transportation
U.S. Army Corps of Engineers
17th Street Levee | Washington, DC
Louis Berger received the 2017 Award of Merit for Outstanding Civil Engineering Project from the American Society of Civil Engineers-National Capital Section (ASCE-NCS) for its work on the 17th Street Levee in Washington, D.C. The award was presented at the ASCE-NCS Annual Awards Banquet on March 21, 2017.
In collaboration with the National Park Service (NPS), District Department of Transportation (DDOT) and the U.S. Army Corps of Engineers (USACE), Louis Berger provided design management and archaeological services for the 17th Street flood containment system.
The 17th Street levee was constructed to reduce risk to human safety and critical infrastructure from flooding of the Potomac River. The levee is composed of concrete floodwalls with stone façades and a removable structure consisting of aluminum panels between steel posts. In the event of high water, the panels can be erected to attach to the floodwalls on both sides of 17th Street.
The project met all the USACE and Federal Emergency Management Agency (FEMA) standards for the 100-year flood event, helping Washington, D.C., achieve one of its many resiliency goals.
Louis Berger also worked closely with the DC National Capital Planning Commission and the NPS National Capital Region to ensure that all area lighting, plantings, connecting walkway paths and stone material were carefully designed in harmony with adjacent monuments and existing landscape.
The ASCE-NCS Award recognizes local excellence in projects, engineers, and students who contribute to the profession and the community.
ContactLogin | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 4,617 | [
128000,
10714,
12140,
69725,
198,
36,
32107,
612,
98984,
11050,
198,
30492,
17283,
612,
27766,
46865,
198,
36,
81192,
612,
17961,
8471,
198,
80069,
612,
73378,
9744,
198,
21364,
18950,
12027,
9744,
198,
26833,
520,
12140,
69725,
198,
679,
22,
5871,
2152,
11500,
6546,
17768,
315,
8930,
275,
369,
76441,
16803,
17005,
5907,
369,
220,
1114,
339,
6825,
2009,
588,
68,
304,
6652,
11,
11162,
198,
69706,
12,
1950,
2152,
11500,
6546,
12,
5744,
12,
1114,
339,
5594,
31307,
588,
68,
27050,
4924,
198,
791,
220,
1114,
339,
6825,
56589,
68,
304,
6652,
11,
423,
732,
13,
574,
20968,
311,
8108,
5326,
311,
3823,
7296,
323,
9200,
14054,
505,
39262,
315,
279,
14020,
316,
582,
11188,
627,
94820,
512,
29518,
13581,
315,
16803,
49796,
11500,
1697,
18880,
11360
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
10714,
12140,
69725,
198,
36,
32107,
612,
98984,
11050,
198,
30492,
17283,
612,
27766,
46865,
198,
36,
81192,
612,
17961,
8471,
198,
80069,
612,
73378,
9744,
198,
21364,
18950,
12027,
9744,
198,
26833,
520,
12140,
69725,
198,
679,
22,
5871,
2152,
11500,
6546,
17768,
315,
8930,
275,
369,
76441,
16803,
17005,
5907,
369,
220,
1114,
339,
6825,
2009,
588,
68,
304,
6652,
11,
11162,
198,
69706,
12,
1950,
2152,
11500,
6546,
12,
5744,
12,
1114,
339,
5594,
31307,
588,
68,
27050,
4924,
198,
791,
220,
1114,
339,
6825,
56589,
68,
304,
6652,
11,
423,
732,
13,
574,
20968,
311,
8108,
5326,
311,
3823,
7296,
323,
9200,
14054,
505,
39262,
315,
279,
14020,
316,
582,
11188,
627,
94820,
512,
29518,
13581,
315,
16803,
49796,
11500,
1697,
18880,
11360,
-100
]
|
Home/UK/Ex-Tory press chief AMANDA PLATELL asks: should a Prime Minister's consort wield so much power?
Ex-Tory press chief AMANDA PLATELL asks: should a Prime Minister's consort wield so much power?
Some years ago, when I was head of communications for William Hague, then Tory Leader of the Opposition, he called me and other key advisers to a crisis meeting at his Yorkshire home.
There were 12 of us at the dining table, including William's wife Ffion, a highly-intelligent civil servant.
But when Ffion offered her views on the crisis, William told her in no uncertain terms that, as interesting as her intervention was, it had no place at that meeting.
Sexist? No. Just a recognition of a British tradition: when we elect a party leader, we do not also ordain the wife, husband or girlfriend to proffer their wisdom on how to run the country.
This week, the glamorous Symonds appears to have intervened in a remarkable way to orchestrate a plot to boot out Boris Johnson's director of communications, Lee Cain, to prevent his promotion to chief of staff
Fast forward to today, and to our current Prime Minister's consort Carrie Symonds, 32. This week, the glamorous Symonds appears to have intervened in a remarkable way to orchestrate a plot to boot out Boris Johnson's director of communications, Lee Cain, to prevent his promotion to chief of staff.
This wasn't some minor personnel issue: it cut to the heart of who is really in charge of the Government's messaging in the midst of a pandemic – and even, some say, who is in charge of the Government itself.
Now, by many accounts, Cain divided opinion: a former red-top journalist, he's described as a 'wheeler-dealer' who, along with his mentor, the PM's chief adviser Dominic Cummings, could at times cast a malign influence over No10 – even presuming at times to dictate to the boss.
But even if Carrie was on the right side of the argument over Cain, she shouldn't have been having the argument to start with. Put simply, this was a 'power-grab', led by Carrie with the help of three formidable female accomplices.
When Ffion Hague (pictured with her husband William) offered her views on the crisis, William told her in no uncertain terms that, as interesting as her intervention was, it had no place at that meeting
The first is former Guardian journalist Allegra Stratton, newly appointed to head Boris's US-style daily press briefings due in January. It's reported that Stratton wouldn't work with Cain and wanted to report directly to the PM.
Second, Home Secretary Priti Patel, who has long been suspicious of Cain's close bond with the Machiavellian Cummings. (No one – apart from Boris – has much time for Cummings, of course, since he infamously broke the first lockdown to drive 264 miles to visit family and go sightseeing at Barnard Castle, including driving to 'test his eyesight').
Finally, the hitherto little-known but highly respected Munira Mirza, head of the Downing Street policy unit who also, apparently, had her misgivings about Cain.
Amanda Platell (pictured): This wasn't some minor personnel issue: it cut to the heart of who is really in charge of the Government's messaging in the midst of a pandemic – and even, some say, who is in charge of the Government itself
This group of women, taking back control: call it Girl Power, call it what you really, really want – but don't call it democracy. For make no mistake: Boris's determined fiancee is the lead suspect in this mini-coup at the heart of government.
And in light of this, we are entitled to ask: Who is Carrie Symonds really? What right does she have to determine the direction of policy behind the black door of No10?
And how, despite being unelected, has she become the most powerful woman in politics today, and possibly the most influential Prime Ministerial 'companion' in history?
Officially Carrie has a job as a senior advisor at Oceana, a not-for-profit organisation that protects the oceans. Oceana extols her qualifications as a 'graduate of the University of Warwick where she received first class honors (sic)' and her 'passion for protecting the oceans and marine life'.
Very noble, I'm sure, but that doesn't qualify you to dictate the Downing St spin operation. But evidently Carrie believes she has the right to pull the Government's strings as she worked as a press officer for the Tory Party and was once its head of communications, appointed in 2018 and stepping down later that year.
Former colleagues who met her before she began her relationship with Boris describe her as 'marvellously bewitching'. Known as 'Apples' for her adorable dimples, many men were captivated by her sparkling eyes and those long blonde tresses.
Even if Carrie was on the right side of the argument over Lee Cain (pictured), she shouldn't have been having the argument to start with
She also knew how to connect with the right people and had a knack of always being in the right place at the right time.
Carrie's boast to her small Tory Central Office team back then was that, whatever it took, she had her sights set on No10.
They assumed she meant standing for election or joining the PM's press team: little did they think that would it involve snapping up a Tory leader while he was still married to the mother of four of his children.
The key point is that whether or not Carrie worked as a Tory spin doctor before she moved in with Boris, it is surely not right for her to continue behind the scenes today, seemingly exerting influence over who is hired and fired, while she and the PM are living together and raising a child.
Indeed, in recent months, she appeared to have been quietly enjoying life as a new mum, nursing baby Wilfred just as, we assume, she nursed Boris through his own life-threatening bout with the virus.
Yet behind the scenes, it now appears she was instrumental in triggering Cain's resignation on Wednesday night, following media briefings about his alleged 'incompetence' and unsuitability for the new role.
No wonder there are whispers that this is her 'Lady Macbeth' moment: a calculating woman set on taking control of her husband's destiny. What palls is that, if true, it flies in the face of what we in Britain expect of the Prime Ministerial 'plus-one'.
Denis Thatcher was a wise sounding-board for the country's first and longest-serving female PM. It was he who, 30 years ago, gently told the Iron Lady, when the forces of the Tory party were raging against her, that it was time to go.
And, yes, Cherie Blair would intervene on behalf of her husband, phoning female MPs to vote for the dubious war in Iraq that became Tony's undoing. But apart from headlines over allegedly dodgy property deals, for the most part, Cherie was oft seen but seldom heard.
Sarah Brown spoke at one Labour conference imploring members to support her beleaguered husband Gordon. That was noble and enough.
Samantha Cameron once visited a refugee camp, before realising the British are not endeared to politicians' wives trying to garner public support, however worthy the cause.
Yet until this week, no PM's spouse or partner has ever made such a direct assault on the machinery of government, nor sought – as is alleged – to oust a trusted aide. Now, in the corridors of power, Carrie is a woman feared: the so-called 'blonde assassin' who can apparently destroy anyone she perceives to be an enemy, even if that person happens to be one of her partner's key allies.
Yet Carrie has broken the assassin's first rule in leaving a trail of evidence pointing to her apparent collusion in his downfall. Perhaps this was intentional, perhaps not.
But in doing so, she has emasculated Boris, our Prime Minister, at a time of crisis for the country and when we are in dire need of strong leadership.
She has made him appear weak, further damaging the nation's already shaky confidence in him.
After all, if he is not in control of his own destiny, why should we trust him with ours?
dailymail debate
Garcelle Beauvais adds a wild touch with leopard-print coat jacket over double denim ensemble in LA
MPs, charities, doctors and families back crusade to let relatives visit lonely loved ones
Jewish academic's sudden death after Twitter pile-on to be investigated by coroner
Andy Murray's wife Kim Sears shows off her smashing new hair-do
Negative Trustpilot review of law firm Summerfield Browne cost aggrieved Briton £28k
Labour leader Keir Starmer refuses FOURTEEN times to tell Piers Morgan if he has ever taken drugs
New poll shows only 25 percent of Americans support Biden's handling of Afghanistan
Britain's daily Covid cases fall by just 3% in a week as curve begins to flatten out | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 3,146 | [
128000,
7778,
14,
25554,
14,
849,
9469,
683,
3577,
10388,
6912,
4064,
32,
10528,
2390,
4178,
17501,
25,
1288,
264,
12801,
9675,
596,
63929,
42945,
779,
1790,
2410,
5380,
849,
9469,
683,
3577,
10388,
6912,
4064,
32,
10528,
2390,
4178,
17501,
25,
1288,
264,
12801,
9675,
596,
63929,
42945,
779,
1790,
2410,
5380,
8538,
1667,
4227,
11,
994,
358,
574,
2010,
315,
17320,
369,
12656,
86026,
11,
1243,
47250,
23896,
315,
279,
66659,
11,
568,
2663,
757,
323,
1023,
1401,
52075,
311,
264,
11501,
6574,
520,
813,
51327,
2162,
627,
3947,
1051,
220,
717,
315,
603,
520,
279,
18397,
2007,
11,
2737,
12656,
596,
7555,
435,
69,
290,
11,
264,
7701,
20653,
21149,
8431,
41564,
627,
4071,
994,
435,
69,
290,
9076,
1077,
6325,
389,
279,
11501,
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
]
| [
7778,
14,
25554,
14,
849,
9469,
683,
3577,
10388,
6912,
4064,
32,
10528,
2390,
4178,
17501,
25,
1288,
264,
12801,
9675,
596,
63929,
42945,
779,
1790,
2410,
5380,
849,
9469,
683,
3577,
10388,
6912,
4064,
32,
10528,
2390,
4178,
17501,
25,
1288,
264,
12801,
9675,
596,
63929,
42945,
779,
1790,
2410,
5380,
8538,
1667,
4227,
11,
994,
358,
574,
2010,
315,
17320,
369,
12656,
86026,
11,
1243,
47250,
23896,
315,
279,
66659,
11,
568,
2663,
757,
323,
1023,
1401,
52075,
311,
264,
11501,
6574,
520,
813,
51327,
2162,
627,
3947,
1051,
220,
717,
315,
603,
520,
279,
18397,
2007,
11,
2737,
12656,
596,
7555,
435,
69,
290,
11,
264,
7701,
20653,
21149,
8431,
41564,
627,
4071,
994,
435,
69,
290,
9076,
1077,
6325,
389,
279,
11501,
11,
-100
]
|
Q: PHP print_r not returning json request The following code runs without any errors, however it doesn't return anything.
If I paste it into my browser it returns the information I'm looking for, I can also replace it with another URL and it works perfectly.
$ch = curl_init();
$url = 'https://api.coronavirus.data.gov.uk/v1/data?filters=areaName=Somerset&structure={"date":"date","areaName":"areaName","areaCode":"areaCode","newCasesByPublishDate":"newCasesByPublishDate","cumCasesByPublishDate":"cumCasesByPublishDate","newDeathsByDeathDate":"newDeathsByDeathDate","cumDeathsByDeathDate":"cumDeathsByDeathDate"}';
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$resp = curl_exec($ch);
$decode =json_decode($resp);
print_r($decode);
curl_close($ch);
A: You can use following generated code by the postman
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.coronavirus.data.gov.uk/v1/',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_POSTFIELDS =>'{"date":"date","areaName":"areaName","areaCode":"areaCode","newCasesByPublishDate":"newCasesByPublishDate","cumCasesByPublishDate":"cumCasesByPublishDate","newDeathsByDeathDate":"newDeathsByDeathDate","cumDeathsByDeathDate":"cumDeathsByDeathDate"}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
A: This code is worked. Reason is encoding of received content.
try {
$ch = curl_init();
// Check if initialization had gone wrong*
if ( $ch === false ) {
throw new RuntimeException( 'failed to initialize' );
}
$ch = curl_init();
curl_setopt( $ch, CURLOPT_URL,
'https://api.coronavirus.data.gov.uk/v1/data?filters=areaName=Somerset&structure={"date":"date","areaName":"areaName","areaCode":"areaCode","newCasesByPublishDate":"newCasesByPublishDate","cumCasesByPublishDate":"cumCasesByPublishDate","newDeathsByDeathDate":"newDeathsByDeathDate","cumDeathsByDeathDate":"cumDeathsByDeathDate"}' );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Solution is here. Response is the compressed content which your curl failed to detect. Empty encoding means to handle any type of encoding. It should solve your issue.
curl_setopt($ch, CURLOPT_ENCODING, '');
$content = curl_exec( $ch );
curl_close( $ch );
if ( $content === false ) {
throw new RuntimeException( curl_error( $ch ), curl_errno( $ch ) );
}
/* Process $content here */
$decode = json_decode( $content );
var_dump( $decode );
// Close curl handle
curl_close( $ch );
} catch ( RuntimeException $e ) {
trigger_error(
sprintf(
'Curl failed with error #%d: %s',
$e->getCode(),
$e->getMessage()
),
E_USER_ERROR
);
}
| {
"redpajama_set_name": "RedPajamaStackExchange"
} | 457 | [
128000,
48,
25,
13420,
1194,
1745,
539,
13758,
3024,
1715,
578,
2768,
2082,
8640,
2085,
904,
6103,
11,
4869,
433,
3250,
956,
471,
4205,
627,
2746,
358,
25982,
433,
1139,
856,
7074,
433,
4780,
279,
2038,
358,
2846,
3411,
369,
11,
358,
649,
1101,
8454,
433,
449,
2500,
5665,
323,
433,
4375,
14268,
627,
3,
331,
284,
14284,
6265,
1454,
41473,
284,
364,
2485,
1129,
2113,
18672,
263,
24713,
2245,
14489,
15549,
5574,
16,
13469,
30,
25630,
28,
4903,
678,
28,
50982,
45246,
5,
7993,
16160,
1045,
3332,
1045,
2247,
4903,
678,
3332,
4903,
678,
2247,
4903,
2123,
3332,
4903,
2123,
2247,
943,
38402,
1383,
51245,
1956,
3332,
943,
38402,
1383,
51245,
1956,
2247,
60353,
38402,
1383,
51245,
1956,
3332,
60353,
38402,
1383,
51245,
1956,
2247,
943,
67421
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
13420,
1194,
1745,
539,
13758,
3024,
1715,
578,
2768,
2082,
8640,
2085,
904,
6103,
11,
4869,
433,
3250,
956,
471,
4205,
627,
2746,
358,
25982,
433,
1139,
856,
7074,
433,
4780,
279,
2038,
358,
2846,
3411,
369,
11,
358,
649,
1101,
8454,
433,
449,
2500,
5665,
323,
433,
4375,
14268,
627,
3,
331,
284,
14284,
6265,
1454,
41473,
284,
364,
2485,
1129,
2113,
18672,
263,
24713,
2245,
14489,
15549,
5574,
16,
13469,
30,
25630,
28,
4903,
678,
28,
50982,
45246,
5,
7993,
16160,
1045,
3332,
1045,
2247,
4903,
678,
3332,
4903,
678,
2247,
4903,
2123,
3332,
4903,
2123,
2247,
943,
38402,
1383,
51245,
1956,
3332,
943,
38402,
1383,
51245,
1956,
2247,
60353,
38402,
1383,
51245,
1956,
3332,
60353,
38402,
1383,
51245,
1956,
2247,
943,
67421,
-100
]
|
How to prepare your home for sale to get the best price
Samantha Landy
Mandy and Derren Wilson with their sons Fletcher, 10, and Archie, 9, at the Nunawading house they're renovating to sell. Picture: Alex Coppel
When updating your home for sale, don't fall into the trap of just focusing on the kitchen and bathrooms.
This is the advice of TV real estate guru Andrew Winter, who urged would-be vendors to consider the property "as an overall package".
"You need to think about the impression a property gives from the moment someone pulls up — from the entry gate, to the facade, to the front door and gardens," he said.
"There's no point having an amazing kitchen if the rest of your home doesn't look good."
RELATED: Experts reveal how to present your house for sale
How to stage your home for the best sale price
How public inspections will work on The Block this year
TV presenter Andrew Winter advised homeowners carrying out pre-sale renovations to consider the property "as an overall package".
The co-host of Foxtel Lifestyle show Love It or List It Australia also warned against relying on a "generic" percentage of the value of your home to work out how much to spend on pre-sale touch ups.
He instead urged homeowners to "realistically" determine what their property was worth, how much more they were hoping to sell for, and make sure they didn't spend the difference on updates.
"If your home is worth $500,000 but you want $550,000, can you achieve that by spending $25,000?" he said.
Ray White Ringwood director Chris Watson offers similar advice to his vendors, noting generally the benefits of a pre-sale spruce up should work out to be double the cost.
"There's no point spending $20,000 (on updates) to make $25,000 (more come sale time) — it's not worth the effort," he said.
"But if you can spend $20,000 to make $40,000, that's a fair chunk of change."
46 Maidstone Street, Ringwood, sold about $100,000 above reserve after the vendors spent $40,000 upgrading it.
Mr Winter said budding sellers could make several low-cost changes to huge effect, including decluttering and maximising the natural light.
The latter could be achieved by installing new curtains, cleaning dirty windows and fly screens, and removing plants or trees that were blocking light.
For those doing more significant updates, Mr Winter recommended scoping out similar homes that had recently sold in the area to get a sense of the style local buyers were after.
He suggested engaging a professional stylist, partly because "that's what the market is doing and if you're not, you could be left behind". Although this wasn't necessary for full-on renovator's delights.
While neutral tones were often the best way to "appeal to as many buyers as possible", Mr Winter advised leaving some personal items, like family photos, on show to "keep some personality".
Mr Watson said presentation was vital to achieving a strong sale price, and he typically advised his vendors to get their homes professionally staged.
When it came to cosmetic updates, he suggested paying particular attention to "the emotional parts of the home", including outdoor entertaining zones, the kitchen and bathrooms, while also upgrading the paintwork and any "daggy carpets".
"You want people to think, 'we can move in and not do anything'," he said.
Mr Watson said clients of his who spent $40,000 updating their Ringwood home sold it for a whopping $100,000 above reserve last month, at $1.247m, after attracting 11 bidders.
Bianca Chatfield replaced the laminate benchtops with stone in her Kew apartment's kitchen before selling it well above her price guide.
Before The Block 2018 contestant Bianca Chatfield listed her Kew apartment late last year, she got it repainted, replaced the carpet with floorboards, swapped out the kitchen's laminate benchtops for stone, and had it styled.
She said the floorboards made the two-bedroom home "lighter and brighter", while the benchtops "weren't as expensive as I thought they would be and made a big difference when it came to selling".
The former netballer scored a pre-auction sale worth $695,000 — well above the $590,000-$620,000 price guide.
MORE: Buyers swoop on Ossie Ostrich creator's clifftop Mount Eliza home
Compound House, Brighton for sale, oozing James Bond cool
Eclectic Melbourne mansions waiting for buyers in 2021
Horizon development: How Frankston is becoming 'aspirational'
King of kitsch's $6m pastel pink glamour pad for sale in San Remo
[email protected]
WILSONS WORK TO SELL BIG, WITHOUT SPENDING TOO BIG
The Wilsons are preparing to list their three-bedroom Nunawading house later this month, to move to the Mornington Peninsula. Picture: Alex Coppel
Mandy and Derren Wilson always intended to refresh their Nunawading home before listing it this year — they just didn't plan for it to be a "mad rush".
While they were able to spruce up the garden and paint during lockdown, the bulk of their pre-sale overhaul has had to be squeezed into the six weeks before they're due to list later this month.
So to give their tradies the space to bring their three-bedroom house "out of the '80s" and into modern day, they've moved themselves and sons Fletcher, 10, and Archie, 9, into an Airbnb for about a month.
"We had planned to do a lot of this before COVID-19," Ms Wilson said.
"We wanted to invest enough into the home to make it contemporary, but we also didn't want to overcapitalise."
To ensure they spent the right amount, the Wilsons sought advice from their selling agent, Ray White's Chris Watson.
When their revamp is done, prospective buyers will be greeted by a new fence, a tidy front garden and a freshly painted facade with a new French door and deck.
This is in line with real estate expert Andrew Winter's direction to "think about the impression a property gives from the moment someone pulls up".
When the buyers move inside, they'll find the original floorboards have been polished, the walls painted and the kitchen updated to be "more user friendly".
The interior will have also been decluttered, and styled by a professional.
The family is selling to move back to the Mornington Peninsula.
Their 1/23 Kett Street property is set to be auctioned in December, with a $730,000-$780,000 price guide.
Narre Warren North: Elaborate lifestyle property to become one of suburb's priciest
1 day ago · 2 min read
Aspendale Gardens house price record: Mini golf, basketball court, pool at family dream pad
Melbourne summer market heating up, Australia Day auctions ready
Dunoon: 'Scottish' Mount Eliza mansion has own beach box
FONTAINEBLEAU: Elwood beachfront mansion to smash suburb house price record
Chris McCue Home Truths: Auction experience 'an adrenaline rush … I haven't experienced since' | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 4,119 | [
128000,
4438,
311,
10772,
701,
2162,
369,
6412,
311,
636,
279,
1888,
3430,
198,
50,
13005,
23218,
11680,
88,
198,
44,
13634,
323,
13031,
1466,
17882,
449,
872,
26419,
69168,
11,
220,
605,
11,
323,
91706,
11,
220,
24,
11,
520,
279,
64778,
675,
2277,
3838,
814,
2351,
32652,
1113,
311,
4662,
13,
25586,
25,
8683,
356,
67622,
198,
4599,
21686,
701,
2162,
369,
6412,
11,
1541,
956,
4498,
1139,
279,
23709,
315,
1120,
21760,
389,
279,
9979,
323,
40983,
627,
2028,
374,
279,
9650,
315,
6007,
1972,
12675,
60526,
13929,
20704,
11,
889,
28932,
1053,
15502,
29629,
311,
2980,
279,
3424,
330,
300,
459,
8244,
6462,
23811,
22336,
1205,
311,
1781,
922,
279,
21455,
264,
3424,
6835,
505,
279,
4545,
4423,
34145,
709,
2001,
505,
279,
4441
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
311,
10772,
701,
2162,
369,
6412,
311,
636,
279,
1888,
3430,
198,
50,
13005,
23218,
11680,
88,
198,
44,
13634,
323,
13031,
1466,
17882,
449,
872,
26419,
69168,
11,
220,
605,
11,
323,
91706,
11,
220,
24,
11,
520,
279,
64778,
675,
2277,
3838,
814,
2351,
32652,
1113,
311,
4662,
13,
25586,
25,
8683,
356,
67622,
198,
4599,
21686,
701,
2162,
369,
6412,
11,
1541,
956,
4498,
1139,
279,
23709,
315,
1120,
21760,
389,
279,
9979,
323,
40983,
627,
2028,
374,
279,
9650,
315,
6007,
1972,
12675,
60526,
13929,
20704,
11,
889,
28932,
1053,
15502,
29629,
311,
2980,
279,
3424,
330,
300,
459,
8244,
6462,
23811,
22336,
1205,
311,
1781,
922,
279,
21455,
264,
3424,
6835,
505,
279,
4545,
4423,
34145,
709,
2001,
505,
279,
4441,
-100
]
|
Swiss Image Elasticity Boosting Day Cream, enriched with Alpine Glacier Water, Snow Algae and Botanical Extracts boosts your skin's elasticity and protects it from signs of ageing. This easy absorbing cream promotes collagen production & boosts skin's elasticity to give you smooth and younger looking skin.
- Free from Parabens/SLS/SLES,Phthalates and mineral oil.
- Gently massage the cream on cleansed face and neck every morning. | {
"redpajama_set_name": "RedPajamaC4"
} | 4,194 | [
128000,
13521,
1056,
4758,
53010,
488,
34507,
287,
6187,
30800,
11,
69671,
449,
82813,
96486,
10164,
11,
19435,
1708,
67378,
323,
23869,
45983,
23673,
82,
67232,
701,
6930,
596,
95916,
323,
36236,
433,
505,
12195,
315,
80043,
13,
1115,
4228,
70275,
12932,
39990,
71313,
5788,
612,
67232,
6930,
596,
95916,
311,
3041,
499,
11113,
323,
14992,
3411,
6930,
627,
12,
3658,
505,
4366,
370,
729,
11628,
7416,
11628,
14344,
11,
3438,
31392,
988,
323,
25107,
5707,
627,
12,
480,
4501,
6378,
279,
12932,
389,
35294,
291,
3663,
323,
13272,
1475,
6693,
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
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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
]
| [
13521,
1056,
4758,
53010,
488,
34507,
287,
6187,
30800,
11,
69671,
449,
82813,
96486,
10164,
11,
19435,
1708,
67378,
323,
23869,
45983,
23673,
82,
67232,
701,
6930,
596,
95916,
323,
36236,
433,
505,
12195,
315,
80043,
13,
1115,
4228,
70275,
12932,
39990,
71313,
5788,
612,
67232,
6930,
596,
95916,
311,
3041,
499,
11113,
323,
14992,
3411,
6930,
627,
12,
3658,
505,
4366,
370,
729,
11628,
7416,
11628,
14344,
11,
3438,
31392,
988,
323,
25107,
5707,
627,
12,
480,
4501,
6378,
279,
12932,
389,
35294,
291,
3663,
323,
13272,
1475,
6693,
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
]
|
We're super excited to watch James Martin's Christmas With Friends on the Food Network this evening (14 November). Welcoming a host of celeb guests, the show is exactly what we need to get us into the festive spirit.
And the guest we're most looking forward to seeing is baking legend and this month's Prima cover star Mary Berry, particularly because James admits that the pair are real-life friends, too.
In fact, the pair's friendship is so strong (20 years to be exact), that James doesn't mind at all poking fun at the 81-year-old ex-Bake Off judge. In particular her penchant for a tipple.
Well, we're even more excited to watch the show now!
Is THIS who should replace James Martin on Saturday Kitchen? | {
"redpajama_set_name": "RedPajamaC4"
} | 3,522 | [
128000,
1687,
2351,
2307,
12304,
311,
3821,
7957,
11826,
596,
10280,
3161,
23323,
389,
279,
12369,
8304,
420,
11714,
320,
975,
6841,
570,
26056,
5065,
264,
3552,
315,
6630,
65,
15051,
11,
279,
1501,
374,
7041,
1148,
584,
1205,
311,
636,
603,
1139,
279,
59937,
9090,
627,
3112,
279,
8810,
584,
2351,
1455,
3411,
4741,
311,
9298,
374,
28915,
13314,
323,
420,
2305,
596,
2394,
7675,
3504,
6917,
10455,
44685,
11,
8104,
1606,
7957,
38239,
430,
279,
6857,
527,
1972,
26928,
4885,
11,
2288,
627,
644,
2144,
11,
279,
6857,
596,
27607,
374,
779,
3831,
320,
508,
1667,
311,
387,
4839,
705,
430,
7957,
3250,
956,
4059,
520,
682,
92463,
2523,
520,
279,
220,
5932,
4771,
6418,
506,
7826,
731,
4206,
11913,
13,
763,
4040,
1077,
99780,
369
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
2351,
2307,
12304,
311,
3821,
7957,
11826,
596,
10280,
3161,
23323,
389,
279,
12369,
8304,
420,
11714,
320,
975,
6841,
570,
26056,
5065,
264,
3552,
315,
6630,
65,
15051,
11,
279,
1501,
374,
7041,
1148,
584,
1205,
311,
636,
603,
1139,
279,
59937,
9090,
627,
3112,
279,
8810,
584,
2351,
1455,
3411,
4741,
311,
9298,
374,
28915,
13314,
323,
420,
2305,
596,
2394,
7675,
3504,
6917,
10455,
44685,
11,
8104,
1606,
7957,
38239,
430,
279,
6857,
527,
1972,
26928,
4885,
11,
2288,
627,
644,
2144,
11,
279,
6857,
596,
27607,
374,
779,
3831,
320,
508,
1667,
311,
387,
4839,
705,
430,
7957,
3250,
956,
4059,
520,
682,
92463,
2523,
520,
279,
220,
5932,
4771,
6418,
506,
7826,
731,
4206,
11913,
13,
763,
4040,
1077,
99780,
369,
-100
]
|
Ágioi Apóstoloi (engelska: Agioi Apostoloi) är en ort i Grekland. Den ligger i prefekturen Nomós Ioannínon och regionen Epirus, i den nordvästra delen av landet, km nordväst om huvudstaden Aten. Ágioi Apóstoloi ligger meter över havet och antalet invånare är .
Terrängen runt Ágioi Apóstoloi är kuperad söderut, men norrut är den bergig. Den högsta punkten i närheten är meter över havet, km öster om Ágioi Apóstoloi. Runt Ágioi Apóstoloi är det mycket tätbefolkat, med invånare per kvadratkilometer. Närmaste större samhälle är Ioánnina, km sydost om Ágioi Apóstoloi. Trakten runt Ágioi Apóstoloi består till största delen av jordbruksmark.
Medelhavsklimat råder i trakten. Årsmedeltemperaturen i trakten är °C. Den varmaste månaden är juli, då medeltemperaturen är °C, och den kallaste är januari, med °C. Genomsnittlig årsnederbörd är millimeter. Den regnigaste månaden är december, med i genomsnitt mm nederbörd, och den torraste är augusti, med mm nederbörd.
Kommentarer
Källor
Orter i Epirus | {
"redpajama_set_name": "RedPajamaWikipedia"
} | 2,167 | [
128000,
44801,
46245,
72,
5345,
95952,
337,
6870,
320,
833,
2053,
4657,
25,
4701,
822,
72,
47859,
337,
6870,
8,
19106,
665,
64609,
602,
13842,
74,
1974,
13,
256,
9973,
326,
4601,
602,
19257,
1247,
5081,
77,
38000,
29832,
30755,
1036,
2483,
6414,
12218,
5654,
268,
469,
5682,
355,
11,
602,
3453,
48734,
73150,
13645,
1624,
268,
1860,
4363,
295,
11,
220,
13437,
48734,
73150,
267,
8019,
305,
12328,
664,
267,
21825,
362,
2002,
13,
43912,
46245,
72,
5345,
95952,
337,
6870,
326,
4601,
220,
23819,
77150,
31081,
295,
12218,
3276,
109149,
1558,
39831,
548,
19106,
6905,
52502,
26498,
268,
1629,
83,
43912,
46245,
72,
5345,
95952,
337,
6870,
19106,
597,
3550,
329,
51387,
1126,
332,
11,
3026,
6463,
70546,
19106,
3453,
46985,
343,
13,
9973,
43859,
70
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
44801,
46245,
72,
5345,
95952,
337,
6870,
320,
833,
2053,
4657,
25,
4701,
822,
72,
47859,
337,
6870,
8,
19106,
665,
64609,
602,
13842,
74,
1974,
13,
256,
9973,
326,
4601,
602,
19257,
1247,
5081,
77,
38000,
29832,
30755,
1036,
2483,
6414,
12218,
5654,
268,
469,
5682,
355,
11,
602,
3453,
48734,
73150,
13645,
1624,
268,
1860,
4363,
295,
11,
220,
13437,
48734,
73150,
267,
8019,
305,
12328,
664,
267,
21825,
362,
2002,
13,
43912,
46245,
72,
5345,
95952,
337,
6870,
326,
4601,
220,
23819,
77150,
31081,
295,
12218,
3276,
109149,
1558,
39831,
548,
19106,
6905,
52502,
26498,
268,
1629,
83,
43912,
46245,
72,
5345,
95952,
337,
6870,
19106,
597,
3550,
329,
51387,
1126,
332,
11,
3026,
6463,
70546,
19106,
3453,
46985,
343,
13,
9973,
43859,
70,
-100
]
|
Αρχική World News Closing the gap: How new screening interventions could reduce inequalities in bowel...
Closing the gap: How new screening interventions could reduce inequalities in bowel cancer outcomes
When it comes to diagnosing cancers early, screening is our best available tool.
Cancer screening involves testing for early signs of cancer in people without symptoms. It can help spot cancers at an early stage, when treatment is more likely to be successful, or in some cases prevent cancer from developing the first place.
In the UK, there are three national screening programmes: bowel, breast and cervical.
Screening for bowel cancer is offered to everyone between the ages of 60 and 74 in England, Wales and Northern Ireland, or 50 and 74 in Scotland.
It's done through a test that you do at home, called a faecal immunochemical test, or FIT, that looks for tiny traces of blood in your poo. These tests are sent to everyone in the eligible population every two years.
Bowel cancer is the 4th most common cancer and the 2nd most common cause of cancer death in the UK.
The incidence of bowel cancer, and mortality from it, is higher in socioeconomically deprived communities. This is partly due to lower rates of screening uptake, which means that people in these groups don't benefit from potential early diagnosis.
Therefore, if we can find successful interventions that help to increase participation in screening programmes amongst lower income groups, we may be able to reduce the health inequalities that exist in bowel cancer outcomes.
And researchers at the University of Sheffield are trying to do exactly that.
There are many factors that lead to inequalities in bowel cancer, including differences in underlying health conditions and treatment. Although screening is just a small part of the picture, it's vital the programme works for everyone.
Chloe Thomas, lead researcher from University of Sheffield.
Building a model
Their research, funded by us and published today in Preventative Medicine, modelled the impact of screening on bowel cancer inequalities in England and then compared four different intervention strategies for increasing participation.
Modelling studies allow us to simulate a variety of scenarios over long periods of time, even lifetimes, in a computer programme.
They can also take into account factors that might change with a person's age, like BMI, alcohol consumption and physical activity, and consider how those changes might impact the outcome being investigated.
Think of it as the equivalent of running multiple different experiments over the course of a person's lifetime all at once.
Therefore, whilst this isn't data from the real world, it gives us a way of making estimations where real world data could take decades, or would even be impossible, to collect in a traditional experiment setting.
Through their model, they aimed to determine which of the four methods was the most cost-effective alongside reducing screening-based inequalities.
The scenarios the model simulated were 1) annual re-invitation of screening non-participants; 2) a national media advertising campaign; 3) text message reminders for non-participants; 4) health promotion in deprived populations.
The model population was based on real data from the 2014 Health Survey for England, an annual survey designed to provide a snapshot of the nation's health.
Comparing interventions
The first part of their study compared the incidence and mortality from bowel cancer with FIT, the screening method currently used in the UK, vs no screening at all.
As expected, FIT screening was found to be both highly cost-effective and effective at reducing bowel cancer mortality. However, these benefits were not spread equally across the eligible population, with FIT screening alone even exacerbating socioeconomic inequalities due to low participation in more deprived groups.
And to make matters worse, if a wider age group was screened, for example lowering the initial screening age to 50, as is being implemented in England, this only serves to widen the inequality gap.
Therefore, whilst screening is an extremely effective method of reducing bowel cancer mortality overall, without strategies to mitigate this inequality, it doesn't benefit everyone.
However, one of the interventions tested in the model, annual re-invitation of screening non-participants, was found to be highly effective, estimated to prevent over 11,000 bowel cancer deaths over the lifetime of the current English population aged 50-74.
Crucially, more deaths were prevented in the most deprived groups, meaning that inviting people who haven't participated in bowel screening every year rather than every two years can have a big impact on reducing inequalities.
"This is the first time anyone has looked at how screening interventions can impact inequalities," says Thomas.
"We believe we've identified a cost-effective way to increase uptake and reduce mortality across all groups. But this was based on modelling and real-world data is needed to confirm our conclusions.
"The next step would be to pilot an annual re-invitation programme within parts of the NHS."
Anne (left) with her mum celebrating the Platinum Jubilee in 2022
Anne's story
On her 60th birthday, Anne received a home test kit in the post. She wasn't going to do it but thought 'why not?' and sent it back. Working as a teaching assistant at the time, she joked about there being a cardboard box in the classroom containing her poo.
A few days later, she received a letter asking her to go to hospital for more tests. The sample she sent in had shown abnormalities.
An examination by camera found a growth, and she was booked into surgery after a planned holiday.
Anne was told that the tumour was just starting to break through the outer side of the bowel and that she was lucky she hadn't left it any longer. If she had, the cancer likely would have spread.
She had part of her bowel removed and chemotherapy after that. Now, she's recovered and is encouraging others to take up screening.
"I can't imagine how different my life would be if I hadn't decided to send my kit back. Yes, it's a bit odd and embarrassing to collect your poo, but I'm proof that it saves lives. I had no symptoms and didn't feel unwell, yet I was told my cancer was growing and had nearly spread.
"And it's so much easier to get screened now than when I did it. You don't need multiple samples anymore. Just one poo. Don't store your stool – when you receive a home test kit send it back."
Making a real-world change
Making these changes to the screening programme might not be easy.
Annual re-invitation will require a big investment to make and send out the additional FIT kits. It will also require more colonoscopy resource than the current programme for those that need further testing.
However, the model found that annual re-invitation was highly effective and cost-effective, more so than any other trialled intervention, and had a significant impact in reducing inequalities.
What's more, we know from previous experience that changes to a screening programme can have a big impact on participation.
Before June 2019, England used a test called the guaiac Faecal Occult Blood Test (gFOBT) for bowel cancer screening, which required multiple samples taken from two different poos.
The FIT has made bowel cancer screening simpler, as this test only requires one sample from one poo. Since its introduction, bowel screening uptake has steadily increased.
From 2009 to 2019, when the gFOBT test was used, screening uptake hovered between 55% and 60%, it now sits at 71%, as measured in 2020/21.
Now, if the NHS can pilot an annual re-invitation scheme to get real world data, that figure could further increase, with a particular impact on socioeconomically deprived groups, catching more cancers early and ultimately saving lives.
"Screening is an effective way of catching cancer early and saving lives, but not everyone engages equally, and this contributes to health inequalities across the UK," says Michelle Mitchell, our chief executive officer.
"Addressing health disparities is critical to achieving the Government's early diagnosis targets and saving lives.
"We urge Government to invest in a re-invitation pilot as part of its upcoming 10-Year Cancer Plan. We need a cancer plan for all – and bold action, such as this, will benefit generations to come."
Προηγούμενο άρθροA Subset of Patients with NSCLC Respond Poorly to the COVID-19 mRNA Vaccines
Επόμενο άρθροEnhertu Improves Survival for Metastatic "HER2-Low" Breast Cancer
¿Puede el uso de un microondas causar cáncer?
Cancer Research UK reports record levels of investment in its spinouts
FDA Approves First Adenoviral Vector-Based Gene Therapy for High-Risk Bacillus Calmette-Guérin...
Most Cases of Venous Thromboembolic Events, Elevated Aminotransferases, and Interstitial Lung...
How to Spot Suspicious Herb and Supplement Claims During Cancer
Analysis Patterns of Systemic Anticancer Treatment at End-of-Life Indicates No Changes...
From athlete to wig-maker: how cancer changed Maria's destiny
Nanoparticle Trains Immune Cells to Attack Cancer | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 9,607 | [
128000,
100341,
102659,
101857,
4435,
5513,
62213,
279,
13225,
25,
2650,
502,
23061,
39455,
1436,
8108,
93334,
304,
66358,
9522,
37394,
279,
13225,
25,
2650,
502,
23061,
39455,
1436,
8108,
93334,
304,
66358,
9572,
20124,
198,
4599,
433,
4131,
311,
13493,
14759,
51423,
4216,
11,
23061,
374,
1057,
1888,
2561,
5507,
627,
34,
11967,
23061,
18065,
7649,
369,
4216,
12195,
315,
9572,
304,
1274,
2085,
13803,
13,
1102,
649,
1520,
7858,
51423,
520,
459,
4216,
6566,
11,
994,
6514,
374,
810,
4461,
311,
387,
6992,
11,
477,
304,
1063,
5157,
5471,
9572,
505,
11469,
279,
1176,
2035,
627,
644,
279,
6560,
11,
1070,
527,
2380,
5426,
23061,
38737,
25,
66358,
11,
17659,
323,
67827,
627,
8130,
287,
369,
66358,
9572,
374,
9076,
311,
5127,
1990,
279,
17051,
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
]
| [
100341,
102659,
101857,
4435,
5513,
62213,
279,
13225,
25,
2650,
502,
23061,
39455,
1436,
8108,
93334,
304,
66358,
9522,
37394,
279,
13225,
25,
2650,
502,
23061,
39455,
1436,
8108,
93334,
304,
66358,
9572,
20124,
198,
4599,
433,
4131,
311,
13493,
14759,
51423,
4216,
11,
23061,
374,
1057,
1888,
2561,
5507,
627,
34,
11967,
23061,
18065,
7649,
369,
4216,
12195,
315,
9572,
304,
1274,
2085,
13803,
13,
1102,
649,
1520,
7858,
51423,
520,
459,
4216,
6566,
11,
994,
6514,
374,
810,
4461,
311,
387,
6992,
11,
477,
304,
1063,
5157,
5471,
9572,
505,
11469,
279,
1176,
2035,
627,
644,
279,
6560,
11,
1070,
527,
2380,
5426,
23061,
38737,
25,
66358,
11,
17659,
323,
67827,
627,
8130,
287,
369,
66358,
9572,
374,
9076,
311,
5127,
1990,
279,
17051,
315,
-100
]
|
MoviePosters2.com Blog
Movie Posters Store
Tag Archives for " The Babysitter "
25% Of Fans Are Most Excited To See The Sequel To This Netflix Original Movie
(Welcome to Survey Says, a feature where we conduct a movie-related survey for a random group of people and explain why they're completely right, completely wrong, or somewhere in between.)Netflix has been absolutely crushing it in the game of original films, with some like "To All The Boys I've Loved Before," "The Kissing Booth," "The […]
Tags ↓
The Kissing Booth
Samara Weaving to Star as Forgotten American Socialite Elizabeth Patterson Bonaparte in Biopic (Exclusive)
"Ready or Not" star Samara Weaving has been cast in "Liz," a biopic about one of America's forgotten founding mothers Elizabeth Patterson Bonaparte.Described as a U.S.-set "Bridgerton" or "The Great," "Liz" tells the story of the country's first modern celebrity. Elizabeth Patterson Bonaparte gained prominence as the first wife of Napoleon Bonaparte's youngest brother, Jerome, […]
'The Babysitter: Killer Queen': A Sophomoric Splatter Sequel Reminds You Filmmaker McG Never Ever Left The Frat
It's perhaps slightly difficult to review, "The Babysitter: Killer Club," if your trajectory towards the film is like this reviewer's: being told, and reading through reviews, that the original, "The Babysitter," was a surprise Halloween treat from Netflix in 2017, retroactively viewing it and discovering that's not at all the case. Directed by McG, the […]
The Babysitter: Killer Queen
'The Babysitter: Killer Queen' Trailer: Looks Like McG is At It Again
I know everyone out there has been craving a sequel to The Babysitter, the 2017 McG horror-comedy where people shout things like "He shot me in the boob!" and everyone is insanely over-the-top. Well, good news: here it comes. It's called The Babysitter: Killer Queen, and honestly, I don't even know what to say anymore. […]
McG Reportedly Set To Return As Director For Upcoming Sequel To His Netflix Film 'The Babysitter'
Of all the filmmakers that have been absorbed into the Netflix family, few are making the most of it like McG. The man behind the early-'00s "Charlie's Angels" films has found a second life as the director of recent Netflix Original films like the recent "Rim of the World" and "The Babysitter." And the latter […]
Rim of the World
McG Has James Cameron's Blessing & Is Developing A 'True Lies' Series For Disney+
McG is a filmmaker that gained a lot of notoriety in the first part of the 21st century, with his "Charlie's Angels" films and his "Terminator: Salvation" reboot-quel. Though the latter might not be seen as a shining moment in his career. However, in recent years, the director has found himself finding new success in […]
Bella Thorne Starring in Sci-Fi Horror Movie 'Friendship Game'
Bella Thorne will star in science-fiction horror movie "The Friendship Game," directed by Scooter Corkle.Daniel Bekerman of Scythia Films is the producer. CAA and Tannaz Anisi's 13 Films are launching sales at the Cannes Film Festival, which opens May 14. Production will start in August in Vancouver.Corkle is direction from a script by Damien Ober, […]
Amityville: The Awakening
McG Assembles Cast For Netflix Film 'Rim of the World'
Exclusive: Jack Gore (The Kids Are Alright), Miya Cech (The Darkest Minds), Benjamin Flores Jr. (Transformers: The Last Knight), King Bach (The Babysitter), Lynn Collins (Manhunt: Unabomber), Annabeth Gish (The X-Files), and Michael Beach (Aquaman) have been tapped to star in Rim of the World, director McG's third feature for Netflix. Zack Stentz wrote the […]
Manhunt: Unabomber
Transformers: The Last Knight
Eddie Murphy Wants 'Shrek 5,' Says Donkey Deserves a Spinoff Over Puss in Boots: 'Puss Ain't as Funny as the Donkey'
Dave Bautista Won't Ever Play Bane, James Gunn Looking for 'Younger Actors' to Revamp DC Universe
Last of Us Episode 4 Trailer Takes Joel and Ellie on a Road Trip
Jane Fonda Praises Intimacy Coordinators And The Increased Presence Of Women On Film Sets
Movies Like Interstellar to Watch for More Cerebral Sci-Fi
'The Last of Us' Ep. 3 Review: 'Long, Long Time' Is a Masterful Love Story for the Ages
"Really Great DIY Energy From the Beginning": Dp Matthew Pothier on Mutt
Colin Farrell Tried To Talk His Way Out Of Martin McDonagh's In Bruges
SNL's State Farm Sketch: Michael B. Jordan Isn't a Good Neighbor
Michael B. Jordan's Southwest Airlines Sketch Mocks Holiday Fiasco
Resident Alien Season 3 Begins Filming
What Makes the Grumpy Dad-Adopted Daughter Trope So Special
Poker Face Episode 3 Ending Explained: How the Sausage Gets Made
The Sundance 2023 Oscar Contenders: Jonathan Majors, 'Past Lives,' and Lots of Docs
SNL: Michael B. Jordan Derails a Men's Confidence Seminar With One Word
SNL: Michael B. Jordan and Heidi Gardner Reconnect on Weekend Update
Avatar: The Way of Water Domestic Box Office Passes 620 Million
Copyright text 2018 by MoviePosters2.com Blog. | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 733 | [
128000,
20244,
4226,
388,
17,
916,
14496,
198,
20244,
3962,
388,
9307,
198,
5786,
38329,
369,
330,
578,
26441,
1065,
3328,
6360,
914,
4,
5046,
42896,
8886,
7648,
39995,
1639,
2057,
3580,
578,
25848,
301,
2057,
1115,
23469,
17674,
14270,
198,
7,
14262,
311,
24507,
47559,
11,
264,
4668,
1405,
584,
6929,
264,
5818,
14228,
10795,
369,
264,
4288,
1912,
315,
1274,
323,
10552,
3249,
814,
2351,
6724,
1314,
11,
6724,
5076,
11,
477,
15038,
304,
1990,
6266,
81566,
706,
1027,
11112,
14770,
433,
304,
279,
1847,
315,
4113,
12631,
11,
449,
1063,
1093,
330,
1271,
2052,
578,
30857,
358,
3077,
85127,
13538,
1359,
330,
791,
735,
13889,
64370,
1359,
330,
791,
126459,
16309,
78954,
198,
791,
735,
13889,
64370,
198,
24903,
5169,
1226,
2370,
311,
7834,
439
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
20244,
4226,
388,
17,
916,
14496,
198,
20244,
3962,
388,
9307,
198,
5786,
38329,
369,
330,
578,
26441,
1065,
3328,
6360,
914,
4,
5046,
42896,
8886,
7648,
39995,
1639,
2057,
3580,
578,
25848,
301,
2057,
1115,
23469,
17674,
14270,
198,
7,
14262,
311,
24507,
47559,
11,
264,
4668,
1405,
584,
6929,
264,
5818,
14228,
10795,
369,
264,
4288,
1912,
315,
1274,
323,
10552,
3249,
814,
2351,
6724,
1314,
11,
6724,
5076,
11,
477,
15038,
304,
1990,
6266,
81566,
706,
1027,
11112,
14770,
433,
304,
279,
1847,
315,
4113,
12631,
11,
449,
1063,
1093,
330,
1271,
2052,
578,
30857,
358,
3077,
85127,
13538,
1359,
330,
791,
735,
13889,
64370,
1359,
330,
791,
126459,
16309,
78954,
198,
791,
735,
13889,
64370,
198,
24903,
5169,
1226,
2370,
311,
7834,
439,
-100
]
|
We are one of the very few London developers able to deliver everything from niche, boutique developments to truly massive urban regeneration programmes.
The fact that we're able to see a project through from inception to completion is central to Barratt London's success. From land acquisition and planning, through design and construction, to marketing, sales and aftercare; we manage the entire process. By doing as much as possible in-house, we avoid the complications of using multiple contractors and suppliers and enjoy complete control of the project. This helps us deliver on the promises we make to our stakeholders and customers.
When you join us, it's not just about a job, it's about building a career path that will enable you to achieve your ambitions. We recognise that it is the contribution of our talented people that makes Barratt Developments the success it is today. We offer industry leading learning and development, individually tailored to your needs, and exceptional benefits.
Across our two London offices, over 600 specialist staff bring a huge wealth of experience, resources and industry contacts to all of our projects. It's an unparalleled skill set that enables us to tackle and see through some remarkably ambitious developments.
With full-time and part-time opportunities available, Barratt London are well placed to help you maximise your career potential, whilst supporting a balanced lifestyle for working mums.
At Barratt London, we're committed to recruiting great talent to join our dynamic team. From construction, commercial, land and development, sales and marketing, and customer experience we are always looking to enhance our ever growing company.
SHARE SCHEME From time to time the Company may invite employees who meet the eligibility criteria to join the Company's Share Save Scheme.
EMPLOYEE HOUSE PURCHASE DISCOUNT Permanent employees and their family members are eligible for a maximum discount of 5% of the house's selling price.
ONLINE EAP SUPPORT complementing the telephone support, the EAP also has exceptional online support which provides a wealth of information on how to cope with life events, health, personal and work related matters.
We recognise that flexible working can provide many benefits, both for us as an employer and for our employees. It can increase employee engagement, promote work-life balance, support mental health and improve retention, performance and productivity. Our approach to flexible working will support our aims to become more diverse and inclusive and so for us it is more than a policy.
HBF Customer Satisfaction Survey 2018: Barratt Group is the only major national housebuilder to retain a 5 Star rating for the 9th consecutive year.
NHBC Pride in the job awards 2017/18: our site managers won 74 quality awards – more than any other housebuilder for the 13th year running.
2017 Next Generation Gold Award: Barratt Developments awarded Gold making us the top national housebuilder. | {
"redpajama_set_name": "RedPajamaC4"
} | 131 | [
128000,
1687,
527,
832,
315,
279,
1633,
2478,
7295,
13707,
3025,
311,
6493,
4395,
505,
35149,
11,
53185,
26006,
311,
9615,
11191,
16036,
60517,
38737,
627,
791,
2144,
430,
584,
2351,
3025,
311,
1518,
264,
2447,
1555,
505,
54529,
311,
9954,
374,
8792,
311,
32817,
1617,
7295,
596,
2450,
13,
5659,
4363,
24279,
323,
9293,
11,
1555,
2955,
323,
8246,
11,
311,
8661,
11,
6763,
323,
1306,
10727,
26,
584,
10299,
279,
4553,
1920,
13,
3296,
3815,
439,
1790,
439,
3284,
304,
37002,
11,
584,
5766,
279,
36505,
315,
1701,
5361,
33840,
323,
20972,
323,
4774,
4686,
2585,
315,
279,
2447,
13,
1115,
8779,
603,
6493,
389,
279,
21300,
584,
1304,
311,
1057,
39210,
323,
6444,
627,
4599,
499,
5249,
603,
11,
433,
596,
539,
1120,
922,
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
]
| [
1687,
527,
832,
315,
279,
1633,
2478,
7295,
13707,
3025,
311,
6493,
4395,
505,
35149,
11,
53185,
26006,
311,
9615,
11191,
16036,
60517,
38737,
627,
791,
2144,
430,
584,
2351,
3025,
311,
1518,
264,
2447,
1555,
505,
54529,
311,
9954,
374,
8792,
311,
32817,
1617,
7295,
596,
2450,
13,
5659,
4363,
24279,
323,
9293,
11,
1555,
2955,
323,
8246,
11,
311,
8661,
11,
6763,
323,
1306,
10727,
26,
584,
10299,
279,
4553,
1920,
13,
3296,
3815,
439,
1790,
439,
3284,
304,
37002,
11,
584,
5766,
279,
36505,
315,
1701,
5361,
33840,
323,
20972,
323,
4774,
4686,
2585,
315,
279,
2447,
13,
1115,
8779,
603,
6493,
389,
279,
21300,
584,
1304,
311,
1057,
39210,
323,
6444,
627,
4599,
499,
5249,
603,
11,
433,
596,
539,
1120,
922,
264,
-100
]
|
Project Manager required to join a Media organisation based in Central London. The organisation is going through a significant Digital transformation with a variety of projects in the pipeline including redevelopments, enhancements and integrations of websites, CMS, Online payment Applications and CRM system implementations. This will be delivered using the AGILE methodology. The Project Manager will directly report into the CTO and will work with a variety of senior stakeholders across the business.
Please click apply if you are interested in joining an exciting Media organisation going through a significant transformation. If you have the above skillset and looking to take the next step in your career, then please apply now and I look forward to being in touch. | {
"redpajama_set_name": "RedPajamaC4"
} | 9,197 | [
128000,
8006,
10790,
2631,
311,
5249,
264,
7972,
22139,
3196,
304,
10913,
7295,
13,
578,
22139,
374,
2133,
1555,
264,
5199,
14434,
18475,
449,
264,
8205,
315,
7224,
304,
279,
15660,
2737,
312,
16219,
1392,
11,
59629,
323,
8936,
811,
315,
13335,
11,
37341,
11,
8267,
8323,
32625,
323,
41441,
1887,
39437,
13,
1115,
690,
387,
12886,
1701,
279,
15432,
3015,
38152,
13,
578,
5907,
10790,
690,
6089,
1934,
1139,
279,
356,
5319,
323,
690,
990,
449,
264,
8205,
315,
10195,
39210,
4028,
279,
2626,
627,
5618,
4299,
3881,
422,
499,
527,
8173,
304,
18667,
459,
13548,
7972,
22139,
2133,
1555,
264,
5199,
18475,
13,
1442,
499,
617,
279,
3485,
10151,
751,
323,
3411,
311,
1935,
279,
1828,
3094,
304,
701,
7076,
11,
1243,
4587,
3881,
1457,
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
]
| [
8006,
10790,
2631,
311,
5249,
264,
7972,
22139,
3196,
304,
10913,
7295,
13,
578,
22139,
374,
2133,
1555,
264,
5199,
14434,
18475,
449,
264,
8205,
315,
7224,
304,
279,
15660,
2737,
312,
16219,
1392,
11,
59629,
323,
8936,
811,
315,
13335,
11,
37341,
11,
8267,
8323,
32625,
323,
41441,
1887,
39437,
13,
1115,
690,
387,
12886,
1701,
279,
15432,
3015,
38152,
13,
578,
5907,
10790,
690,
6089,
1934,
1139,
279,
356,
5319,
323,
690,
990,
449,
264,
8205,
315,
10195,
39210,
4028,
279,
2626,
627,
5618,
4299,
3881,
422,
499,
527,
8173,
304,
18667,
459,
13548,
7972,
22139,
2133,
1555,
264,
5199,
18475,
13,
1442,
499,
617,
279,
3485,
10151,
751,
323,
3411,
311,
1935,
279,
1828,
3094,
304,
701,
7076,
11,
1243,
4587,
3881,
1457,
323,
-100
]
|
Review: Transformers: War For Cybertron – Earthrise
The Edge's Top Albums of 2020: #5 – Boy Pablo's 'Wachito Rico'
UniVision Heat: Southampton
The Edge's Best Films of 2020
University of Southampton's UniVision Song Contest, Live Tonight!
An Evolved Sound for an Ever Growing Band: A Review of You Me At Six's SUCKAPUNCH
The Disturbing Trend of COVID Films
The Edge's Top Albums of 2020: #6 – IDLES' 'Ultra Mono'
The Edge's Top Albums of 2020: #7- Lady Gaga's 'Chromatica'
Review: Pieces of a Woman – Promising But Mediocre Drama On Childbirth
News That Shook 2020
The Edge's Top Albums of 2020: #8 – Kylie's 'Disco'
Top 5 Live Acts of 2020
"I think we need to wonder how Wales is represented, it's a bit of a closed network": In Conversation with Director of Bitter Sky, Joseph Ollman
The University of Southampton's entertainment magazine.
Nostalgic News
Weekly Roundups
Meet the Committee
You are at:Home»News»Global News»Notes on News: Will Drive-in Gigs Work?
Credit: SOUNDLEVEL.EVENTS
Notes on News: Will Drive-in Gigs Work?
By Georgie Holmes on June 22, 2020 Global News, News, Notes on News
As we all know, the ongoing pandemic has led to the cancellation of a lot of events. The arts industry has been hit financially the hardest, with the closure of cinemas, theatres and venues across the country. Artists and independent venues are struggling, and so there has had to be some innovative changes to the way we watch live music. At first, this started with gig livestreams, and now the concept of drive-in gigs has been introduced.
As a new concept, only a few artists have attempted drive-in gigs. Southampton local Seán McGowan hosted one at Royal Victoria Chapel, which seemed to work flawlessly. With a field full of cars, a gorgeous view of the sunset and fans respecting the social distancing measures, there wasn't much that could go wrong.
However, this safe, socially distanced zone could potentially become threatened with bigger shows, as it's hard to imagine how these will legitimately work. Live Nation Entertainment, who usually bring 40,000 shows and 100+ festivals to life each year, have announced their plans for larger drive-in concerts this year.
These drive-in concerts are due to be staged across 12 different cities in the UK, including London, Edinburgh and Birmingham. Some artists included in this summer's plans are Jack Savoretti, Gary Numan, and Nathan Dawe, so there's a range of music that everyone can enjoy.
Organisers of these drive-in concerts claim that there will be a limit of 300 cars per event, but this poses some questions. Will this restriction drive up ticket prices, since it'll be a more intimate show than usual? Yet, despite the intimacy, can the show be as intimate as those at smaller venues when considering the distance which the crowd must keep from each other and the stage? Will it be worth it?
Another question to ask is about the facilities present. At any other gig, there's the opportunity for a drink and snacks as well as the presence of a toilet. However, how will these shared facilities work? With 300 cars, that leaves the potential for 300-1200 people (providing there are no restrictions on how many people are present in each vehicle) attending each event. The social distancing restrictions in the crowd will surely become somewhat redundant if facilities are shared between thousands of people.
The concept of drive-in gigs is at such an early stage that it's hard to decipher whether it'll fully work out or not. For smaller shows, like McGowan's in Southampton, it proved a perfect way to celebrate live music again and support smaller artists. However, the concept of larger shows performed with 300 vehicles present does raise some questions. It will help out the artists and benefit the live music industry, but is it worth it when considering how far away much of the crowd will be from the stage and the potential for failures in social distancing?
Find out more about the LiveNation drive in gigs here. You can listen to Seán McGowan's most recent single, Heartbreaker, below:
Georgie Holmes
Live Editor 2019/20 & third year English student. Can usually be found procrastinating my degree at a gig, or trying (and failing) to complete my Goodreads challenge
Rumours on Disney and the Halting of Physical Media
View theedgesusu's profile on Facebook
View theedgesusu's profile on Twitter
View theedgesusu's profile on Instagram
View the_edge_susu's profile on Twitch
Read our latest issue here:
Read our mini mag here:
Read our collaborative issue here:
Check Out What We're Listening To:
January 16, 2021 0 Review: Transformers: War For Cybertron – Earthrise
January 15, 2021 0 The Edge's Top Albums of 2020: #5 – Boy Pablo's 'Wachito Rico'
January 15, 2021 0 UniVision Heat: Southampton
Register/Forgot Password | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 8,426 | [
128000,
19997,
25,
81632,
25,
5111,
1789,
34711,
35785,
1389,
9420,
32609,
198,
791,
10564,
596,
7054,
87823,
315,
220,
2366,
15,
25,
674,
20,
1389,
16576,
53863,
596,
364,
54,
613,
6491,
34248,
1270,
92830,
69162,
27162,
25,
62251,
198,
791,
10564,
596,
7252,
46564,
315,
220,
2366,
15,
198,
31272,
315,
62251,
596,
49966,
69162,
19508,
47633,
11,
11406,
55314,
4999,
2127,
10641,
8905,
14936,
369,
459,
18374,
60780,
17366,
25,
362,
10506,
315,
1472,
2206,
2468,
19198,
596,
15857,
3096,
2599,
54856,
198,
791,
28704,
324,
7278,
31753,
315,
20562,
46564,
198,
791,
10564,
596,
7054,
87823,
315,
220,
2366,
15,
25,
674,
21,
1389,
3110,
14344,
6,
364,
82578,
12980,
1270,
791,
10564,
596,
7054,
87823,
315,
220,
2366,
15,
25,
674,
22,
12
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
19997,
25,
81632,
25,
5111,
1789,
34711,
35785,
1389,
9420,
32609,
198,
791,
10564,
596,
7054,
87823,
315,
220,
2366,
15,
25,
674,
20,
1389,
16576,
53863,
596,
364,
54,
613,
6491,
34248,
1270,
92830,
69162,
27162,
25,
62251,
198,
791,
10564,
596,
7252,
46564,
315,
220,
2366,
15,
198,
31272,
315,
62251,
596,
49966,
69162,
19508,
47633,
11,
11406,
55314,
4999,
2127,
10641,
8905,
14936,
369,
459,
18374,
60780,
17366,
25,
362,
10506,
315,
1472,
2206,
2468,
19198,
596,
15857,
3096,
2599,
54856,
198,
791,
28704,
324,
7278,
31753,
315,
20562,
46564,
198,
791,
10564,
596,
7054,
87823,
315,
220,
2366,
15,
25,
674,
21,
1389,
3110,
14344,
6,
364,
82578,
12980,
1270,
791,
10564,
596,
7054,
87823,
315,
220,
2366,
15,
25,
674,
22,
12,
-100
]
|
In this post-hoc analysis of a randomized, double blind, placebo controlled trial, we measured the sensitivity and specificity of Helicobacter pylori IgG-antibody titer changes, hematoxylin and eosin (H&E) stains, immunohistochemical (IHC) stains and culture results in NSAID using patients, following H. pylori eradication therapy or placebo.
347 NSAID using patients who were H. pylori positive on serological testing for H. pylori IgG-antibodies were randomized for H. pylori eradication therapy or placebo. Three months after randomization, gastric mucosal biopsies were taken for H. pylori culture and histological examination. At 3 and 12 months, blood samples were taken for repeated serological testing. The gold standard for H. pylori infection was based on a positive culture or both a positive histological examination and a positive serological test. Sensitivity, specificity and receiver operating curves (ROC) were calculated.
H. pylori eradication therapy was successful in 91% of patients. Culture provided an overall sensitivity of 82%, and 73% after eradication, with a specificity of 100%. Histological examination with either H&E or IHC stains provided sensitivities and specificities between 93% and 100%. Adding IHC to H&E stains did not improve these results. The ROC curve for percent change in H. pylori IgG-antibody titers had good diagnostic power in identifying H. pylori negative patients, with an area under the ROC curve of 0.70 (95 % CI 0.59 to 0.79, P = 0.085) at 3 months and 0.83 (95% CI 0.76 to 0.89, P < 0.0001) at 12 months. A cut-off point of at least 21% decrease in H. pylori IgG-antibody titers at 3 months and 58% at 12 months provided a sensitivity of 64% and 87% and a specificity of 81% and 74% respectively, for successful eradication of H. pylori.
In NSAID using patients, following H. pylori eradication therapy or placebo, histological examination of gastric mucosal tissue biopsies provided good sensitivity and specificity ratios for evaluating success of H. pylori eradication therapy. A percentual H. pylori IgG-antibody titer change has better sensitivity and specificity than an absolute titer change or a predefined H. pylori IgG-antibody titer cut-off point for evaluating success of H. pylori eradication therapy.
Helicobacter pylori (H. pylori) infection has been shown to be related to the development of peptic ulcer disease, chronic gastritis, MALT lymphoma and gastric cancer [1–4]. Accurate diagnosis of H. pylori infection has clinical consequences as H. pylori eradication improves outcome and recurrence of peptic ulcer disease. H. pylori infection can be detected using non-invasive tests such as serological tests, 13C-urea breath test and stool tests, and invasive tests requiring endoscopically obtained gastric mucosal tissue biopsies, such as tissue culture, examination of histological stains and the rapid urease test. Serological tests based on the detection of antibodies to H. pylori have been shown to have high sensitivity and are therefore useful in screening for H. pylori infection [5–7]. However, because serological tests merely detect an immune response, they do not discriminate between current or previous infection. H. pylori infection of the gastric mucosa causes a chronic local inflammatory cell infiltration, which in turn gives rise to a serological response, in which H. pylori specific antibodies are almost always detectable [8, 9]. After successful H. pylori eradication therapy, the level of H. pylori specific antibodies decreases progressively over a period of several months, possibly parallel to the slowly healing inflammation of the gastric mucosa . As a result, evaluating success of H. pylori eradication therapy using repeated serological tests has only been shown to be useful if a period of several months is maintained between tests [11–13].
Culture of H. pylori in biopsy specimens has very high specificity and allows testing for antibiotic susceptibility but has relatively low sensitivity and is labour-intensive . Histological identification of H. pylori in biopsy specimens has long been considered to be the clinical standard for the diagnosis of H. pylori infection. A high density of H. pylori is readily apparent on routine hematoxylin and eosin (H&E) stains but detection of a lower density of bacteria may require additional staining techniques . H. pylori is more easily visualised with immunohistochemical H. pylori antibody stains than with the standard H&E staining. However, the use of immunohistochemical (IHC) stains adds time and expense to the diagnostic evaluation for H. pylori and is therefore not routinely performed.
The interaction between H. pylori infection and the use of non-steroidal anti-inflammatory drugs (NSAIDs) in the development of gastroduodenal ulcers remains unclear. In a meta-analysis of 16 endoscopic studies in NSAID users from various countries, uncomplicated gastric ulcer disease was twice as common in H. pylori positive patients as in H. pylori negative patients . However, the rate of H. pylori infection in patients with NSAID associated gastric ulcers is significantly lower than in those with non-NSAID associated gastric ulcers . Furthermore, while eradication of H. pylori infection in NSAID-naïve patients prior to NSAID therapy reduces the risk of ulcer development, it does not do so in current NSAID users [18–20]. This was also confirmed in a recent randomized, double blind, placebo controlled clinical trial, in which we found that eradication of H. pylori infection did not reduce the incidence of endoscopic gastroduodenal ulcers in H. pylori seropositive patients currently taking NSAIDs for rheumatic diseases .
H. pylori infection has been shown to induce cyclooxygenase (COX)-2 expression in the gastric mucosa, which persists during active H. pylori infection [22–25]. It has been suggested that COX-2 plays an immunosuppressive role in H. pylori gastritis . Conversely, in H. pylori infected mice, NSAID treatment has been shown to significantly decrease the degree of gastric inflammation . It is therefore possible that in patients with H. pylori infection, concurrent NSAID treatment may affect levels of gastric inflammation and may consequently affect the serological response. While several studies have investigated the time course of H. pylori antibody titers after H. pylori eradication therapy, none have been conducted in NSAID users [9, 11–13, 28].
This study presents a post-hoc investigation into H. pylori IgG-antibody titer changes following H. pylori eradication therapy in NSAID users. In patients participating in the before mentioned H. pylori eradication in NSAID users trial, we measured H. pylori IgG-antibody titers and titer changes in order to diagnose successful H. pylori eradication . We further compared H. pylori IgG-antibody titers, H&E stains, IHC stains and H. pylori culture results in follow-up biopsies from H. pylori-positive NSAID-users randomized to eradication treatment or placebo, to determine the sensitivity and specificity of these different methods in NSAID users. Furthermore, we determined whether adding IHC stains to H&E stains improves the histological identification of H. pylori in these patients.
The methods of the primary randomized, double blind, placebo controlled clinical trial have been previously described in more detail21. Between May 2000 and June 2002, patients between the ages of 40 and 80 years with a rheumatic disease requiring NSAID treatment, were recruited and included in the study if tested positive for H. pylori on serological testing. During the study, no change in NSAID-therapy was permitted, but there was no restraint on other medication. Exclusion criteria were previous H. pylori eradication therapy and severe concomitant disease.
After stratification by concurrent use of gastroprotective agents (proton pump inhibitors, H2 receptor antagonists or misoprostol, but not prokinetics, or antacids), patients were randomly assigned to receive either H. pylori eradication therapy with omeprazole 20 mg, amoxycillin 1000 mg, and clarithromycin 500 mg (OAC) twice daily for 7 days or placebo. Patients with an allergy for amoxycillin were randomized in a separate stratum to receive omeprazole 20 mg, metronidazol 500 mg and clarithromycin 250 mg (OMC) or placebo therapy twice daily for one week. Randomization to consecutive patient numbers was done in proportions of 1:1, in blocks of four from a computer-generated list. The study centers were provided with individually sealed packages containing the treatment for each patient. Each centre received entire blocks to be used sequentially. Rheumatologists were not practicing in more than one center. The study medication was given in a double blind, double dummy manner. Active and placebo preparations were identical in appearance. The employees of the VU University Medical Center pharmacy who packaged the medication only knew the assignment. It was disclosed to the treating physician only in case of emergency. All study personnel and participants were blinded to treatment assignment for the duration of the study.
After 3 months patients underwent gastroduodenal endoscopy, during which 4 antrum biopsies and 4 corpus biopsies were taken for culture and histological examination. After 3 and 12 months, blood samples were taken for repeated serological testing. Immunohistochemical staining was only available for a subset of patients recruited at the Medisch Spectrum Twente hospital in Enschede, the Netherlands. The study protocol was approved by the Institutional Ethical Review Board of all participating hospitals and all patients gave written informed consent.
Serological testing for H. pylori IgG-antibodies was performed using a commercially available enzyme-linked immunosorbent assay (ELISA) kit (Pyloriset® new EIA-G, Orion Diagnostica, Espoo, Finland). Results were considered positive if the antibody titers were ≥250 International Units per mL (IU/mL), according to the manufacturer's guidelines. This assay has been assessed, in a population similar to the population in the presented trial, and has proven a sensitivity and specificity in the Netherlands of 98-100% and 79-85%, even in patients on acid suppressive therapy [11, 30, 31].
Biopsy specimens of corpus and antrum taken during endoscopy were inoculated onto Columbia agar (Becton Dickinson, Cockeysville, MD, USA) with 10% lysed horse blood (Bio Trading, Mijdrecht, The Netherlands), and onto Columbia agar with H. pylori selective supplement (Oxoid, Basingstoke, UK). Media were then incubated for 72 hours at 37°C under microaerophilic conditions (5% O2, 10% CO2 and 85% N2). The isolated colonies of H. pylori were identified by Gram stain showing spiral-shaped Gram-negative rods, producing urease rapidly, with positive catalase and oxidase tests.
Biopsy specimens were stained for Hematoxylin and Eosin (H&E) according to the standard procedure. For immunohistochemical (IHC) staining, the slides were heated in an autoclave (Kavoklave, Prestige Medical Ltd, UK) in a citric-acid solution (pH = 6 to 121–126°C during 30 minutes for antigen retrieval. The slides were then incubated in a Shandon Sequenza Immunostaining Center (Thermo Electron Corporation, the Netherlands) with a polyclonal rabbit IgG anti-Helicobacter pylori antibody (DakoCytomation, Denmark, dilution 1:300), followed by biotinylated goat anti-polyvalent antibody (LabVision Corporation, USA), strepavidin peroxidase (LabVision Corporation, USA) and Liquid DAB + substrate chromogen system (DakoCytomation, Denmark), and counterstained with hematoxylin.
All stained biopsy specimens of corpus and antrum taken during endoscopy were examined by a single expert pathologist who was blinded for clinical data, treatment allocation and other test results.
As the gold standard for H. pylori infection in this study, at 3 months a patient was defined as being H. pylori positive on the basis of a positive culture for H. pylori or, in the case of a negative culture, a positive examination of either H&E or IHC stains in combination with H. pylori IgG-antibody titers persistently ≥ 250 IU/mL. At 12 months, a patient was defined as being H. pylori positive on the basis of a positive culture for H. pylori or, in the case of a negative culture, a positive examination of either H&E or IHC stains in biopsy samples at 3 months in combination with H. pylori IgG-antibody titers persistently ≥ 250 IU/mL at 12 months.
Continuous variables with a normal distribution were expressed as mean with standard deviation (SD), and continuous variables with a non-normal distribution as median with interquartile range (IQR). Differences between groups were analysed using Students t-test, Mann–Whitney U test, Pearson's Chi-square test or Fisher's Exact test in case of low expected values. For all analyses P < 0.05, two sided, was considered significant. All analyses were performed with SPSS for Windows, version 19.0 (SPSS, Chicago, IL, USA). Receiver Operating Characteristic (ROC) curves and likelihood ratios were analysed with MedCalc for windows, version 12.1.3.0. Differences in the proportions of patients were analyzed with 95% confidence interval using the Confidence Interval Analysis software for Windows (version 2.2.0).
A total of 347 patients were included in the present study. The treatment groups (172 patients in the eradication group and 175 patients receiving placebo) were similar in terms of demographics, rheumatic disease, NSAIDs and other drug use. Our eligibility criteria resulted in a study group with mainly inflammatory rheumatic diseases (rheumatoid arthritis 61%, spondyloarthropathy 8%, psoriatic arthritis 7%, osteoarthritis 9%, other 15%). The most commonly used NSAIDs were diclofenac (29%), naproxen (18%), and ibuprofen (13%). The mean age was 60 years (SD 10), 61% was female. Twenty-two patients had a known allergy for amoxicillin and received metronidazole instead (10 patients) or placebo (12 patients). Forty-eight percent used a gastroprotective drug (7% H2 receptor antagonists (H2RA), 37% proton pump inhibitors (PPI), 7% misoprostol, 3% used a combination of these).
At baseline, Anti-H. pylori IgG antibodies were present in all 347 patients (median titre 1689 (IQR 700–3732). At three months, data on both culture and histology were available in 305 patients; 152 in the eradication group and 153 in the placebo group. In two cases only culture data were available and in 1 case only histology was available. All three cases met the criteria for H. pylori-positivity and were found in the placebo group. A total of 32 patients (with no significant differences between eradication and placebo groups) refused the 3-month endoscopy, withdrew informed consent, or could not undergo endoscopy because of adverse events. Seven patients used anticoagulant therapy, ruling out biopsy sampling in accordance with the study protocol, and in one patient no biopsy specimens could be obtained because of discomfort requiring early completion of the procedure.
The results of H. pylori detection by each of the different tests are shown in Table 1. Out of the 152 patients who had been treated with H. pylori eradication therapy, 141 (93%) had a negative culture, and of the 153 patients who had been receiving placebo, 54 (35%) had a negative culture (P < 0.001). Out of the 152 patients who had been treated with H. pylori eradication therapy, 133 (88%) had a negative H&E stain, compared to 41 (27%) of the 153 patients who had been receiving placebo (P < 0.001). In the subgroup (with statistically similar baseline characteristics as the whole population, data not shown) of 68 patients in which IHC stains were performed, 29 (85%) of the 34 patients who had been treated with H. pylori eradication therapy had a negative IHC stain, compared to 7 (21%) of the 34 patients in the placebo group (P < 0.001). There were no differences between patients using gastroprotection compared to patients who did not take gastroprotective drugs for the presence of H. pylori by culture or histology (p = 0.454).
H&E: hematoxylin and eosin, IHC: immunohistochemistry. Positive serology was defined as H. pylori IgG-antibody titers ≥ 250 IU/mL.
According to the gold standard criteria, a patient could be either H. pylori positive or H. pylori negative. The sensitivity, specificity, positive predictive values (PPV) and negative predictive values (NPV) of each test were calculated for the whole group and also differentiated for preceding H. pylori eradication therapy or placebo, as is shown in Table 2. For the combined analysis of H&E and IHC stains, results were positive if either test was positive or results were negative if both tests were negative. According to the gold standard criteria for H. pylori infection, H. pylori eradication was successful in 133 (89.9%) of the 148 patients who had been treated with H. pylori eradication therapy, while 120 (78.9%) of the 152 patients who had been receiving placebo remained H. pylori positive. Gold standard criteria could not be calculated in 4 patients in the eradication group en 1 in the placebo group because of missing or negative culture results, or missing serology data in combination with available histology results.
H&E: hematoxylin and eosin, IHC: immunohistochemistry.
At baseline, H. pylori IgG-antibody titers varied from 250 IU/mL to 19029 IU/mL with a median of 1689 IU/mL (interquartile range (IQR) 700 to 3732 IU/mL) with no significant differences in titers between the groups assigned to H. pylori eradication therapy or to placebo (P = 0.39). At endoscopy at 3 months, H. pylori IgG-antibody titers varied from 126 IU/mL to 12800 IU/mL, with a median of 1190 IU/mL (IQR 500 to 2820 IU/mL). Patients who had been treated with H. pylori eradication therapy had lower H. pylori IgG-antibody titers than those treated with placebo; eradication group (n = 101) median 730 IU/mL (IQR 415 to 1461 IU/mL) and placebo group (n = 102) median 2026 IU/mL (IQR 700 to 3571 IU/mL) (median difference −907, 95% CI −1356 to −460, P < 0.001 Figure 1). At serological testing at 12 months, patients who had been treated with H. pylori eradication therapy had lower H. pylori IgG-antibody titers than those treated with placebo; eradication group (n = 151) median 370 IU/mL (IQR 200 to 672 IU/mL) and placebo group (n = 153) median 1340 IU/mL (IQR 490 to 3272 IU/mL) (median difference −778, 95% CI −1128 to −466, P < 0.001 Figure 1).
Median (black diamond) and interquartile range (grey line) of H. pylori IgG-antibody titers in IU/mL for the eradication and placebo groups, at baseline, 3 months and 12 months after eradication therapy.
At 3 months, H. pylori IgG-antibody titers had dropped below the 250 IU/mL threshold for positivity in 17/203 (8.4%) patients; 9/101 (9%) in the eradication group and 8/102 (8%) in the placebo group (P = 0.78). At 12 months, H. pylori IgG-antibody titers had dropped below the 250 IU/mL threshold for positivity in 70/304 (23%) patients; 55/151 (36%) in the eradication group and 15/153 (10%) in the placebo group (P < 0.05), Table 1.
The absolute change in H. pylori IgG-antibody titers from baseline to 3 months (titer at baseline minus titer at 3 months) did differ significantly between the groups; eradication group median change 980 IU/mL (IQR 190 to 2720 IU/mL) and placebo group median change −26 IU/mL (IQR −605 (elevation of titer) to 870 IU/mL) (median difference 1006, 95% CI 654 to 1471, P < 0.001). The change in H. pylori IgG-antibody titers from baseline to 12 months also differed significantly between the groups; eradication group median change 1010 IU/mL (IQR 363 to 2917 IU/mL) and placebo group median change 167 IU/mL (IQR −337 (elevation of titer) to 1625 IU/mL) (median difference 913, 95% CI 547 to 1362, P < 0.001).
Compared to baseline, at 3 months H. pylori IgG-antibody titers were median 55% lower (IQR 24% to 72%) in the eradication group and median 0.9% lower (IQR −32% to 40%) in the placebo group (median difference 46%, 95% CI 34% to 60%, P < 0.001). Compared to baseline, at 12 months H. pylori IgG-antibody titers were median 77 % lower (IQR 48% to 88%) in the eradication group and median 22 % lower (IQR −34% to 56%) in the placebo group (median difference 46%, 95% CI 36 to 58, P < 0.001).
Using the predefined H. pylori IgG-antibody titer cut-off point of ≥250 IU/mL, serological testing for H. pylori IgG-antibodies at endoscopy at 3 months was found to be highly sensitive (99%) but with very poor specificity (15%), especially following H. pylori eradication therapy (10%). Arguably, the absolute or percent change in H. pylori IgG-antibody titers from baseline represent better methods for evaluating success of H. pylori eradication. Figure 2 presents the Receiver Operating Characteristic (ROC) curves for absolute and percent change in H. pylori IgG-antibody titers after 3 and 12 months, associated with a negative result for the gold standard criteria for H. pylori infection. Percent change scores had better diagnostic power in identifying H. pylori negative patients at both 3 and 12 months, with area under the ROC curves (AUCs) of 0.62 (95% CI 0.52 to 0.72, P = 0.343) for absolute change and 0.70 (95% CI 0.59 to 0.79, P = 0.085) for percent change at 3 months and 0.73 (95% CI 0.65 to 0.80, P = 0.0016) for absolute change and 0.83 (95% CI 0.76 to 0.89, P < 0.0001) for percent change at 12 months. The optimal cut-off point at 3 months for percent change in H. pylori IgG-antibody titers was 21 %, corresponding to a sensitivity of 64% (95% CI 31% to 89%) and specificity of 81% (95% CI 71% to 89%), negative Likelihood ratio 0.45 (95% CI 0.2 to 1.1), positive Likelihood ratio 3.3 (95% CI 2.1 to 5.2). The optimal cut-off point at 12 months for percent change in H. pylori IgG-antibody titers was 58%, corresponding to a sensitivity of 87% (95% CI 60% to 98%) and specificity of 74% (95% CI 65% to 81%), negative Likelihood ratio 0.18 (95% CI 0.05 to 0.7), positive Likelihood ratio 3.3 (95% CI 2.6 to 4.1).
Comparison of ROC curves for absolute and percent change of H. pylori -IgG antibody titers at 3 and 12 months after eradication therapy.
Following H. pylori eradication therapy or placebo, histological examination of gastric mucosal tissue biopsies provided good sensitivity and specificity ratios for evaluating success of H. pylori eradication therapy. In the subgroup with both IHC and H&E staining, IHC was slightly superior to H&E. Following eradication therapy both staining methods provided 100% sensitivity and also very high specificity. A combined analysis of H&E and IHC stains, in which results were positive if either test was positive or results were negative if both tests were negative, did not improve sensitivity while the number of false positive test results increased. Culture of H. pylori in gastric biopsy specimens has very high specificity but relatively low sensitivity [5, 32]. In the present study, culture provided 100% specificity and 82% sensitivity. However, after H. pylori eradication therapy sensitivity dropped to 73% due to an increasing percentage of false negative cultures. Culture of H. pylori therefore does not appear to be very useful for evaluating success of H. pylori eradication therapy. In clinical practice, invasive tests for confirmation of eradication should only be used in cases where repeat endoscopy is indicated, for example in patients with gastric ulcer. In all other cases non-invasive test should be employed for follow-up after H. pylori eradication treatment .
The choice of a gold standard affects test results of all other tests. According to the guidelines for clinical trials in H. pylori infection, a reliable gold standard should consist of at least 2 methods based on different principles for detecting H. pylori infection [5, 34]. In the present study, a patient was also considered H. pylori positive if culture alone was positive, in view of its absolute specificity. The gold standard in the present study corresponds to acceptable criteria.
Other accurate and relatively inexpensive non-invasive tests that may also be considered for the evaluation of success of H. pylori eradication therapy are serology, 13C-urea breath tests and stool antigen tests . While the 13C-urea breath test may have better accuracy (>90%), the serology test used in this study was less expensive and readily available in all study centres . At the time of the study, stool antigen tests were not yet widely available in the Netherlands. PPI usage (in this study 48 % of the population) may result in false negative test results in both invasive and non-invasive tests, such as culture, histology and 13C-urea breath testing, and should therefore be stopped two weeks before testing . This does not apply for serological testing. Besides, stopping PPI in a population of chronic NSAID users would be non-ethical in a trial setting.
This study shows that in NSAID users, percent change in H. pylori IgG-antibody titers has better diagnostic power in identifying H. pylori negative patients at both 3 and 12 months than absolute change in H. pylori IgG-antibody titers. Repeated serological testing using a cut-off point of 21% decrease in H. pylori IgG-antibody titers after 3 months and 58% after 12 months has sufficiently high sensitivity and specificity to be useful for evaluating the success of H. pylori eradication therapy. Other groups have found high sensitivity and specificity ratios for percent decrease in H. pylori IgG-antibody titers using cut-off points of 25% at 6 months and 40% at 3 to 6 months [10, 11, 37]. Using a predefined H. pylori IgG-antibody titer cut-off point of 250 IU/mL, repeated serological testing for H. pylori IgG-antibodies was found to have little diagnostic value.
Overall, NSAID use did not seem to influence H. pylori eradication rates or serological testing for H. pylori IgG-antibodies, when compared to other studies with patients who do not take NSAIDs [5, 32]. Although studies on H. pylori IgG serology are not new, there is some data available in which has been shown that NSAID treatment significantly decreases the degree of gastric inflammation [22–25]. However in some studies aspirin and NSAID possibly suppresses the growth of H. pylori and may influence diagnostic testing and increase its susceptibility to the antibiotics [38–40]. It is therefore possible that in patients with H. pylori infection, concurrent NSAID treatment may affect levels of gastric inflammation and may consequently affect the serological response. While several studies have investigated the time course of H. pylori antibody titers after H. pylori eradication therapy, none have been conducted in NSAID users yet. Theoretically, if NSAID treatment decreases the degree of gastric inflammation and subsequently affects the serological response, one would not expect to find many false positive test results. However, such an effect still cannot be ruled out because in the present study, a relatively strong decline in H. pylori IgG-antibodies was noted 3 months after H. pylori eradication (median 55% decline at 3 months and median 77% decline at 12 months), compared to other studies. A previous longitudinal analysis of H. pylori IgG-antibody titers following successful H. pylori eradication demonstrated a mean decline of 26% at 3 months, 43% at 6 months, and 55% at nine months follow-up, after which titers appeared to plateau at approximately 50% compared to baseline .
In the present study in NSAID taking patients, following H. pylori eradication therapy or placebo, histological examination of gastric mucosal tissue biopsies provided good sensitivity and specificity ratios. The H&E and IHC staining methods provided comparable high sensitivity and specificity but combining IHC and H&E did not improve results. A percentual H. pylori IgG-antibody titer change has better sensitivity and specificity than an absolute titer change or a predefined H. pylori IgG-antibody titer cut-off point for evaluating success of H. pylori eradication therapy.
HTJI deLeest contributed equally to this work.
Funded by: Health Care Insurance Board, the Netherlands; Grant Number: OG-98-22.
HEV carried out analyses and drafted the manuscript. HDL participated in the design of the study and coordination, carried out the analyses and drafted the manuscript. MVL conceived of the study, and participated in its design and coordination and helped to draft the manuscript. JVB carried out pathological assessments. KSS participated in the design of the study and helped to draft the manuscript. WFL conceived of the study, and participated in its design and coordination and helped to draft the manuscript. JWB conceived of the study, and participated in its design and coordination and helped to draft the manuscript. EJK conceived of the study, and participated in its design and coordination and helped to draft the manuscript. HMH participated in the design of the study and helped to draft the manuscript. MJ participated in the design of the study and helped to draft the manuscript. BAD conceived of the study, and participated in its design and coordination and helped to draft the manuscript. All authors read and approved the final manuscript. | {
"redpajama_set_name": "RedPajamaC4"
} | 647 | [
128000,
644,
420,
1772,
2902,
511,
6492,
315,
264,
47341,
11,
2033,
18507,
11,
43715,
14400,
9269,
11,
584,
17303,
279,
27541,
323,
76041,
315,
16183,
292,
677,
2540,
35385,
13915,
39551,
38,
12,
519,
581,
1094,
259,
2058,
4442,
11,
17728,
4428,
4223,
3817,
323,
62894,
258,
320,
39,
69248,
8,
63563,
11,
33119,
2319,
26407,
32056,
320,
40,
23263,
8,
63563,
323,
7829,
3135,
304,
31883,
926,
1701,
6978,
11,
2768,
473,
13,
35385,
13915,
56537,
20901,
15419,
477,
43715,
627,
17678,
31883,
926,
1701,
6978,
889,
1051,
473,
13,
35385,
13915,
6928,
389,
1446,
5848,
7649,
369,
473,
13,
35385,
13915,
39551,
38,
12,
519,
581,
10233,
1051,
47341,
369,
473,
13,
35385,
13915,
56537,
20901,
15419,
477,
43715,
13,
14853,
4038,
1306,
4288,
2065
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
1772,
2902,
511,
6492,
315,
264,
47341,
11,
2033,
18507,
11,
43715,
14400,
9269,
11,
584,
17303,
279,
27541,
323,
76041,
315,
16183,
292,
677,
2540,
35385,
13915,
39551,
38,
12,
519,
581,
1094,
259,
2058,
4442,
11,
17728,
4428,
4223,
3817,
323,
62894,
258,
320,
39,
69248,
8,
63563,
11,
33119,
2319,
26407,
32056,
320,
40,
23263,
8,
63563,
323,
7829,
3135,
304,
31883,
926,
1701,
6978,
11,
2768,
473,
13,
35385,
13915,
56537,
20901,
15419,
477,
43715,
627,
17678,
31883,
926,
1701,
6978,
889,
1051,
473,
13,
35385,
13915,
6928,
389,
1446,
5848,
7649,
369,
473,
13,
35385,
13915,
39551,
38,
12,
519,
581,
10233,
1051,
47341,
369,
473,
13,
35385,
13915,
56537,
20901,
15419,
477,
43715,
13,
14853,
4038,
1306,
4288,
2065,
-100
]
|
Techy odds and ends
Nokia E72 firmware version V51
Nokia released a major update for the E72 handset in September 2010. The previous version was V31, so V40 and V50 weren't even released to the public. According to many online resources there are something like 450 bugfixes in V51. There are also some new features that some people would consider to be bugs, and curiously enough, some pieces of software appear to have been downgraded between versions V31 and V51.
V51 is currently available via Nokia Software Updater and as Firmware-over-the-air.
There are various sources of information on the internet listing things that are supposed to have changed. What I'd like to do here is give you an idea of what the new firmware feels like, which is something you can't put on paper.
Visually, very little has changed. To be honest, the only difference I've noticed is a smaller clock at the bottom of the screen.
People who tend to use the keypad to select elements in the phone's menus will be pleased to hear that the '7' and '8' keys can now be used again. That ability was removed in V31 for some reason or other.
The menus do seem a little more responsive generally, although the digits still take ages to display while you're dialling a number.
The voice control application, vlingo, does get in the way when you start the phone up for the first time. Although it starts in the background and you can kill the application by long-pressing the menu key, scrolling to the vlingo icon and pressing the delete key, it starts again next time you start the phone, and will carry on doing so until you tell it not to.
The way to do this is not self-evident at all. Nor is why you should have to do this in the first place because the E72 already has built-in recognition of voice commands without the need for third-party software. Carry on answering questions asked by the application as if you were planning on using it until you get to the page where you're invited to hold down the "voice activation" key, speak a phrase into the microphone and then release the voice activation key. The thing is, you're invited to press the "back" key instead of the voice activation key (on the side of the phone between the volume/zoom keys), so you end up in an endless loop and cannot complete the settings and get rid of vlingo.
Instead of holding the voice activation key, start typing some text instead. You will be informed that you can indeed input text directly and asked if you want to skip the voice configuration. You can then proceed to the next pages in the configuration process and at some point you will be asked if you want vlingo to start when the phone starts. This is where you can say "no" and no longer be bothered with the software.
Even though we are all told that the browser, media player and messaging application have been updated, there is no perceptible change.
Adobe Reader LE is a useful piece of software for reading PDF files. The trouble is, many recent PDF files require Adobe LE 2.5, which came with firmware V31. Firmware V51 downgrades Adobe LE to version 1.5. I have no idea why this is.
Up until now, the keypad autolock would only kick in if you were on the standby screen. Go into the menu or into any application and the keypad would no longer lock. With V51, the keypad will lock automatically regardless of the screen you're on. Some people are calling this a "bug" (probably because it's a change from what they were used to), I think that it makes things more consistent and I welcome the change.
I think some optimisation has taken place in order to reduce power consumption and thus get more life out of the battery. Under normal circumstances, the battery indicator will show "full" for most of the battery's charge cycle. Once it drops a bar, the battery is usually flat within 24 hours. The gauge had dropped a bar yesterday morning, and this evening, about 34 hours later, it is still on 3 bars, and that is with the WLAN switched on almost permanently (I use the E72 as a VoIP/SIP phone). So, instead of being flat as a pancake in 24 hours, it has only dropped by 3 bars in half as long again. That's a definite improvement.
The e-mail client still doesn't use the "destinations" feature. You can only set it to use a given access point to connect to a mailbox. Thankfully, SmartConnect is included in the firmware, so you can get around the problem by using that. It didn't work with V31. BirdStep had to provide a patch to get it working. I don't know if the new version works or not on its own since the patch from BirdStep is still installed on my E72 after the update to V31.
Reading the Nokia Support Discussions forum, you will hear about various problems that people say that they have had. Among the problems I've seen, there are:
I don't see the names of people calling me, only the number.
It's unlikely that that happened since the update. Read here.
The phone has become unstable and never stops crashing.
This is the same as any update on any phone. The usual things to try are to clear the phone's settings (*#7780#) or to attempt a re-install of the firmware.
I can't zoom into pictures using the gallery, only using the file manager.
Can't say I've noticed this. I just tried to do just that and the zoom works fine in the gallery.
Received calls are no longer logged!
Can't say I've noticed this either. They are logged on my handset.
This and many other problems reported can most likely be solved in the same way as the general instability problem.
In short, the update is positive, I think, but I fail to understand why a whole major version has been skipped. The changes made do not justify such a version jump in my opinion.
Labels: E72, firmware, Firmware Over-The-Air, FOTA, Nokia, Nokia Software Updater, NSU, V51, vlingo
G. Stewart
Software developer, Unix sysadmin. Employed by One Iota and SwissMicros. Unless otherwise stated, any views expressed in this blog are my own, personal views and not those of my employer. | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 7,044 | [
128000,
35197,
88,
21448,
323,
10548,
198,
45,
28652,
469,
5332,
30778,
2373,
650,
3971,
198,
45,
28652,
6004,
264,
3682,
2713,
369,
279,
469,
5332,
83263,
304,
6250,
220,
679,
15,
13,
578,
3766,
2373,
574,
650,
2148,
11,
779,
650,
1272,
323,
650,
1135,
15058,
956,
1524,
6004,
311,
279,
586,
13,
10771,
311,
1690,
2930,
5070,
1070,
527,
2555,
1093,
220,
10617,
10077,
5862,
288,
304,
650,
3971,
13,
2684,
527,
1101,
1063,
502,
4519,
430,
1063,
1274,
1053,
2980,
311,
387,
23367,
11,
323,
2917,
13610,
3403,
11,
1063,
9863,
315,
3241,
5101,
311,
617,
1027,
1523,
24228,
1990,
11028,
650,
2148,
323,
650,
3971,
627,
53,
3971,
374,
5131,
2561,
4669,
36806,
4476,
3216,
28563,
323,
439,
81930,
29352,
10826,
38635,
627,
3947
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
35197,
88,
21448,
323,
10548,
198,
45,
28652,
469,
5332,
30778,
2373,
650,
3971,
198,
45,
28652,
6004,
264,
3682,
2713,
369,
279,
469,
5332,
83263,
304,
6250,
220,
679,
15,
13,
578,
3766,
2373,
574,
650,
2148,
11,
779,
650,
1272,
323,
650,
1135,
15058,
956,
1524,
6004,
311,
279,
586,
13,
10771,
311,
1690,
2930,
5070,
1070,
527,
2555,
1093,
220,
10617,
10077,
5862,
288,
304,
650,
3971,
13,
2684,
527,
1101,
1063,
502,
4519,
430,
1063,
1274,
1053,
2980,
311,
387,
23367,
11,
323,
2917,
13610,
3403,
11,
1063,
9863,
315,
3241,
5101,
311,
617,
1027,
1523,
24228,
1990,
11028,
650,
2148,
323,
650,
3971,
627,
53,
3971,
374,
5131,
2561,
4669,
36806,
4476,
3216,
28563,
323,
439,
81930,
29352,
10826,
38635,
627,
3947,
-100
]
|
Keyshawn Johnson on former Nebraska coach Mike Riley: 'I would've fired him, too'
Sean Keeler, Land of 10
Full disclosure: He's biased, and Mike Riley is a longtime family friend. But if Keyshawn Johnson were walking in Bill Moos' wingtips right now, he'd have given Riley — now Nebraska's former football coach — one more year to save his bacon.
"I'd probably have given him another year, but if he'd gone 4-8 again, I'd run his ass out of town. I'd have run him out of town," the former ESPN analyst and father of Cornhuskers freshman wideout Keyshawn Johnson Jr. told Land of 10. (Johnson Jr. left the university before the season but is expected to return for the spring semester.)
"[You go] 6-7, 9-4, 4-8, and then if he did have another 4-8 year, I would say, 'Man, you gotta go, coach. Man, I love you to death. You've been here four years with me, but you keep giving me 4-8, you're getting ready to get me fired.'
"And that's OK. If I was the athletic director, and he was a friend of mine, I would've told him, 'Hey, man, Coach, love ya, but you're 4-8 two years in a row, you gotta go.' That's what I would do, but that's me."
'If you don't put enough Ws in the column, you'll get fired'
Moos didn't wait, letting Riley go last Saturday, a day after the Cornhuskers closed out a 4-8 season with a 56-14 home loss to Iowa — the third straight contest in which the Big Red gave up at least 50 points.
Riley was 19-19 in three seasons in Lincoln, 12-14 in league play. He was the first Nebraska coach to produce two non-winning seasons out of his first three campaigns since Bill Jennings in 1957 through 1959. The Huskers' 8 losses were the most in a season since Jennings' 1957 side went 1-9; that fall was also the last time a Big Red team had lost 5 games at home — at least, until 2017 came along.
Point of reference: Nebraska lost a total of three home games — three — in the entire decade of the 1990s.
"I mean, you've got to win, no matter where you're at," said Johnson, the former NFL wideout who played under Riley more than two decades ago when the latter was an assistant coach at USC.
"No matter what level you are — professional, collegiately, high school — the bottom line is the Ws, man. How many Ws are you putting in the column? If you don't put enough Ws in the column, you'll get fired. Which is only right. Whether people agree or disagree, Mike Riley didn't put enough wins in the win column in a short period of time, right?"
'Had they won 7 games, he's probably still the coach'
And in hindsight, many preseason projections, going back as far as last spring, had pegged the 2017 Huskers to take a step back off 2016's 9-4 mark, with national outlets earmarking the slate this fall as one that very well could have left six or more regular-season defeats on the ledger. New quarterback. New defensive coordinator. New defensive scheme. A lot of things were going to have to go right, and pretty quickly.
But not only did the stars not align — they went supernova. Key injuries, most notably to cornerback Chris Jones and tailback Tre Bryant, began to mount. The Huskers had to cling on for dear life to hold off Arkansas State in the home opener, 43-36, a contest that saw the Red Wolves drive up and down the field in what was, in hindsight, a harbinger of arguably the worst defensive season in the history of Big Red football.
' It just didn't look like it was going in the right direction.'
— Former NFL wide receiver Keyshawn Johnson on the state of Nebraska football
The Cornhuskers gave up at least 50 points to an opponent on four different occasions, a feat of ignominy that no Nebraska team had ever done before. Whatever Bob Diaco was teaching the Blackshirts — unless he was teaching them how not to tackle — never seemed to take.
"Because of the fan base and the fans wanted to win and the wheels fell of a little bit there at the end, OK — how are you going to give a guy time like that?" Johnson mused. "It just didn't look like it was going in the right direction.
"I'm not stupid … I'm very aware of what went on. And what went on wasn't good. So at the end of the day, you don't get any more time. You don't get any more time. Had they won 7 games, he's probably still the coach. Am I right or wrong?"
The man's got a point.
But when you go oh-fer-November and drop all four games in the month by an average margin of 49-26, it's probably a moot point, too.
"Me and my family, we're realistic. We understand," Johnson said. "Although Coach Riley is a friend to our family and is close to my heart, I get it. He didn't win enough games. I would've fired him, too. I would've fired him, too."
The post Keyshawn Johnson on former Nebraska coach Mike Riley: 'I would've fired him, too' appeared first on Land of 10. | {
"redpajama_set_name": "RedPajamaCommonCrawl"
} | 5,379 | [
128000,
1622,
939,
6513,
11605,
389,
4846,
38379,
7395,
11519,
47935,
25,
364,
40,
1053,
3077,
14219,
1461,
11,
2288,
1270,
60916,
6706,
8023,
11,
11680,
315,
220,
605,
198,
9619,
28957,
25,
1283,
596,
48761,
11,
323,
11519,
47935,
374,
264,
36504,
3070,
4333,
13,
2030,
422,
5422,
939,
6513,
11605,
1051,
11689,
304,
8766,
6178,
437,
6,
20611,
46554,
1314,
1457,
11,
568,
4265,
617,
2728,
47935,
2001,
1457,
38379,
596,
4846,
9141,
7395,
2001,
832,
810,
1060,
311,
3665,
813,
41452,
627,
7189,
4265,
4762,
617,
2728,
1461,
2500,
1060,
11,
719,
422,
568,
4265,
8208,
220,
19,
12,
23,
1578,
11,
358,
4265,
1629,
813,
1089,
704,
315,
6424,
13,
358,
4265,
617,
1629,
1461,
704,
315,
6424,
1359,
279,
4846,
27290,
18738,
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
]
| [
1622,
939,
6513,
11605,
389,
4846,
38379,
7395,
11519,
47935,
25,
364,
40,
1053,
3077,
14219,
1461,
11,
2288,
1270,
60916,
6706,
8023,
11,
11680,
315,
220,
605,
198,
9619,
28957,
25,
1283,
596,
48761,
11,
323,
11519,
47935,
374,
264,
36504,
3070,
4333,
13,
2030,
422,
5422,
939,
6513,
11605,
1051,
11689,
304,
8766,
6178,
437,
6,
20611,
46554,
1314,
1457,
11,
568,
4265,
617,
2728,
47935,
2001,
1457,
38379,
596,
4846,
9141,
7395,
2001,
832,
810,
1060,
311,
3665,
813,
41452,
627,
7189,
4265,
4762,
617,
2728,
1461,
2500,
1060,
11,
719,
422,
568,
4265,
8208,
220,
19,
12,
23,
1578,
11,
358,
4265,
1629,
813,
1089,
704,
315,
6424,
13,
358,
4265,
617,
1629,
1461,
704,
315,
6424,
1359,
279,
4846,
27290,
18738,
323,
-100
]
|
Noor Bank CEO Hussain Al Qemzi has ruled out possibilities of any possible mergers in the UAE's Islamic banks. The last merger is between First Gulf Bank and National Bank of Abu Dhabi, expected to complete by end of first quarter 2017. The merged entity is likely to create one of the largest banks in the Middle East and Africa, with assets of $175 billion (AED642bn). Al Qemzi said Islamic banks need innovation to integrate and position themselves to offer value and a better choice for Muslim and non-Muslim customers in order to grow. The CEO said a shortage of Sharia scholars was also impeding growth of the Islamic finance industry with many institutions in the country sharing advisors.
Applications for Islamic car loans in the UAE grew by 64.79% from 2015 to 2016. Despite growth in Islamic car loans, car loans based on traditional finance were more popular among UAE residents in 2016. Emirates NBD's Feature-Packed Auto Loan was the most applied-for car loan in 2016. The second most applied-for auto loan of 2016 was that of HSBC, the third, fourth and fifth most applied-for car loans of 2016 were from Islamic banks. Emirates Islamic's Auto Finance product came in third place, while Noor Bank's Auto Finance and Ajman Bank's Car Finance came in fourth and fifth respectively.
According to Noor Bank's CEO Hussain Al Qemzi, Islamic banks need to understand that they need to provide efficient and transparent services to their clients. Just being Sharia compliant cannot make a product less transparent and more expensive to access. Technology remains an important driver for innovation. Islamic banks that only look at product development and not product delivery or customer acquisition, will risk being left behind. There is a need to continue product development. Variable return products need to be developed and propagated in the market. According to Al Qemzi, it is important to refute traditional sayings that Sharia compliance limits innovation. Sharia principles reject prohibited practices but do not reject innovation. Progressive Islamic education is a key area, the Islamic banking curricula have to be developed so that they combine financial sciences with other economic sciences.
Noor Bank has committed its support to the art and design exhibition at the Global Islamic Economy Summit (GIES 2016). GIES 2016 is scheduled between 11-12 October at the Madinat Jumeirah Hotel in Dubai and is under the patronage of His Highness Sheikh Mohammed bin Rashid Al Maktoum. The summit is anticipated to convene more than 2,000 policymakers to discuss key developments of the Islamic economy sector. Speaking on the bank's participation in GIES 2016, Hussain Al Qemzi, CEO of Noor Bank, said that this event deeply resonated with Noor Bank's core values. Noor Bank is looking forward to showcasing the exhibition which features signature art works of this year's emerging artists alongside established names in the field.
Noor Bank has successfully priced its debut perpetual $500 million Tier 1 capital issuance, the first issuance from UAE in 2016. The final pricing came on the back of global roadshows across Middle East, Asia and Europe with an order book crossing over $1 billion. Citi and Standard Chartered were the joint global coordinators for the issuance, whilst Dubai Islamic Bank, Emirates NBD Capital, First Gulf Bank, Noor Bank and Sharjah Islamic Bank acted as the joint lead managers for the issuance.
Dubai's Noor Bank has picked seven banks to arrange investor meetings ahead of a potential Tier 1 dollar-denominated sukuk issue. Joint global coordinators include: Citi, Standard Chartered, Dubai Islamic Bank, Emirates NBD Capital, First Gulf Bank, Noor Bank and Sharjah Islamic Bank. Dubai's government owns 48% of Noor Bank, which starts to hold meetings with fixed income investors in the Middle East, Asia and Europe.
Noor Bank reported a net operating profit of Dh561 million for the year 2015, up 40 per cent compared to 2014. The bank attributed increase in profitability to a 73 per cent surge in fee and commission income and a 35 per cent rise in net income from financing. Bank's total assets increased 36 per cent to Dh39 billion in 2015 compared to Dh29 billion in 2014. While customer financing grew by 29 per cent during 2015 customer deposits were up 35 per cent to Dh32.1 billion last year.
Noor Bank was named the "Most Socially Responsible Bank"™ at the "2015 Islamic Business Awards"™ ceremony hosted by the reputed CPI Financial. Amjad Naser, Head of Sharia™, Noor Bank, collected the award at the event, which took place at the Emirates Towers Hotel on 10 December. Noor Bank was honoured for its commitment towards enhancing and enriching the lives of the less fortunate. The CPI Financial judging panel nominated the bank among several other industry leading banks in the United Arab Emirates. Following the initial nomination, Noor Bank was voted the unanimous winner by financial professionals within the region.
Turkish Islamic bank Kuveyt Turk has mandated six institutions for a sukuk with a value of up to $400 million with a maturity of 10 years, it said in a statement to the Istanbul stock exchange late on Thursday.
Kuveyt Turk Participation Bank, which is 62 percent owned by Kuwait Finance House, said it had mandated KFH Capital, Dubai Islamic Bank, HSBC, Noor Bank, QInvest and Emirates NBD as joint lead managers. Sources familiar with the matter told Reuters in September that seven banks had been picked to arrange a potential deal.
Noor Bank is all set to launch a Sharia-compliant and Sustainable Equity Index-linked investment, targeted at the bank's high-net worth and priority banking customers, the bank's treasurer Damian White said. Under the new index, the bank will offer its clients a basket of 20 chosen Sharia-compliant European equities screened for sustainability measures. The 100 per cent capital protected investment offers a fixed coupon for the first two years and the uncapped index performance at maturity at the end of three years. The format of the investment is through an Islamic structured deposit.
Noor Bank is set to support an art and design exhibition at the Global Islamic Economy Summit 2015 (GIES) that will run on October 5th and 6th in Dubai. In partnership with Thomson Reuters, Noor Bank will spotlight new Islamic artwork at the event in its role as the official Arts and Design Sponsor of GIES 2015. Additionally, as part of Noor Bank's participation at the landmark summit, Hussain Al Qemzi, CEO of Noor Bank and Chairman of Awqaf & Minors Affairs Foundation will headline a session on Awqaf as a keynote speaker. GIES 2015 is scheduled to take place at the Madinat Jumeirah. | {
"redpajama_set_name": "RedPajamaC4"
} | 6,094 | [
128000,
2822,
269,
8715,
12432,
80081,
467,
1708,
1229,
336,
8510,
706,
21989,
704,
24525,
315,
904,
3284,
18970,
388,
304,
279,
47949,
596,
15558,
14286,
13,
578,
1566,
47112,
374,
1990,
5629,
27945,
8715,
323,
5165,
8715,
315,
31229,
73879,
11,
3685,
311,
4686,
555,
842,
315,
1176,
8502,
220,
679,
22,
13,
578,
27092,
5502,
374,
4461,
311,
1893,
832,
315,
279,
7928,
14286,
304,
279,
12877,
6460,
323,
10384,
11,
449,
12032,
315,
400,
10005,
7239,
320,
32,
1507,
22266,
11328,
570,
1708,
1229,
336,
8510,
1071,
15558,
14286,
1205,
19297,
311,
32172,
323,
2361,
5694,
311,
3085,
907,
323,
264,
2731,
5873,
369,
10451,
323,
2536,
62505,
6444,
304,
2015,
311,
3139,
13,
578,
12432,
1071,
264,
39259,
315,
91095,
31839,
574,
1101,
3242
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
2822,
269,
8715,
12432,
80081,
467,
1708,
1229,
336,
8510,
706,
21989,
704,
24525,
315,
904,
3284,
18970,
388,
304,
279,
47949,
596,
15558,
14286,
13,
578,
1566,
47112,
374,
1990,
5629,
27945,
8715,
323,
5165,
8715,
315,
31229,
73879,
11,
3685,
311,
4686,
555,
842,
315,
1176,
8502,
220,
679,
22,
13,
578,
27092,
5502,
374,
4461,
311,
1893,
832,
315,
279,
7928,
14286,
304,
279,
12877,
6460,
323,
10384,
11,
449,
12032,
315,
400,
10005,
7239,
320,
32,
1507,
22266,
11328,
570,
1708,
1229,
336,
8510,
1071,
15558,
14286,
1205,
19297,
311,
32172,
323,
2361,
5694,
311,
3085,
907,
323,
264,
2731,
5873,
369,
10451,
323,
2536,
62505,
6444,
304,
2015,
311,
3139,
13,
578,
12432,
1071,
264,
39259,
315,
91095,
31839,
574,
1101,
3242,
-100
]
|
Automelodi is Montréal based producer and songwriter Xavier Paradis, whose 2013 full-length Surlendemains Acides remains one of the most well produced and memorable synth-based works of the modern era. On April 13, 2018 Holodeck Records is proud to reissue this evocative collection of songs on LP, cassette and digital download. Delivered in French, Automelodi is the result of Paradis' passion for analog electronics and devotion to brooding pop sensibilities. Surlendemains Acides has been out of print for several years, and now to the delight of hardware enthusiasts and fans alike, this classic is given a second life.
Paradis is a well-established figure in Montréal's dense electronic music culture, and Automelodi has become one of the most innovative projects to come out of the region that has produced pioneers like Marie Davidson and Tim Hecker. Paradis shows the exquisite ability to arrange with a careful ear for texture, forming each song element with rich expression and character. His process of composing with analog synthesizers and drum machines like the Moog MG-1 and the Roland TR-808 is used in combination with field recorded "found sound" allowing Paradis to write with a palate that is aesthetically wide-ranging but chosen with precision. Paradis' persona as a weary romantic is at the heart of Surlendemains Acides and extends well beyond the studio. Paradis' charm and sleek aesthetic translate smoothly to his live show and music videos, with swaggering stage presence and seductive dance moves.
Songs like "Digresse" are laden with dance hooks and experimental percussion sounds, displaying Automelodi's balance of engineering and style. Modulating between the tools in his extensive production repertoire, Paradis often uses sequencing and effects to merge components of rhythm and melody for added enhancement. Luscious ballads like "Metropole Sous La Pluie" demonstrate Paradis' mastery of harmonic voicing and deeply addictive songwriting, making Surlendemains Acides a layered and fulfilling listen across all ten of it's gorgeous tracks.
Automelodi is internationally recognized in underground electronic circles as an artist of the highest caliber with an inspiring but rare discography. Holodeck is honored to work with Automelodi and add Surlendemains Acides to its catalog. | {
"redpajama_set_name": "RedPajamaC4"
} | 8,216 | [
128000,
42172,
301,
31559,
374,
3206,
99277,
3196,
17276,
323,
85757,
62860,
40372,
285,
11,
6832,
220,
679,
18,
2539,
30425,
328,
1103,
408,
336,
1771,
6515,
3422,
8625,
832,
315,
279,
1455,
1664,
9124,
323,
33596,
43998,
6108,
4375,
315,
279,
6617,
11639,
13,
1952,
5936,
220,
1032,
11,
220,
679,
23,
16071,
536,
377,
22293,
374,
12691,
311,
312,
11407,
420,
3721,
511,
1413,
4526,
315,
11936,
389,
17540,
11,
82358,
323,
7528,
4232,
13,
7462,
44156,
304,
8753,
11,
20319,
301,
31559,
374,
279,
1121,
315,
40372,
285,
6,
11939,
369,
24291,
31591,
323,
56357,
311,
2967,
3785,
2477,
6225,
13757,
13,
328,
1103,
408,
336,
1771,
6515,
3422,
706,
1027,
704,
315,
1194,
369,
3892,
1667,
11,
323,
1457,
311,
279,
18454,
315,
12035
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
]
| [
42172,
301,
31559,
374,
3206,
99277,
3196,
17276,
323,
85757,
62860,
40372,
285,
11,
6832,
220,
679,
18,
2539,
30425,
328,
1103,
408,
336,
1771,
6515,
3422,
8625,
832,
315,
279,
1455,
1664,
9124,
323,
33596,
43998,
6108,
4375,
315,
279,
6617,
11639,
13,
1952,
5936,
220,
1032,
11,
220,
679,
23,
16071,
536,
377,
22293,
374,
12691,
311,
312,
11407,
420,
3721,
511,
1413,
4526,
315,
11936,
389,
17540,
11,
82358,
323,
7528,
4232,
13,
7462,
44156,
304,
8753,
11,
20319,
301,
31559,
374,
279,
1121,
315,
40372,
285,
6,
11939,
369,
24291,
31591,
323,
56357,
311,
2967,
3785,
2477,
6225,
13757,
13,
328,
1103,
408,
336,
1771,
6515,
3422,
706,
1027,
704,
315,
1194,
369,
3892,
1667,
11,
323,
1457,
311,
279,
18454,
315,
12035,
-100
]
|
Containing 50 capsules and 52 self-adhesive aluminum lids.
You can bundle the Flow Pack in a kit with 250gr of coffee.
Each box contains two flow pack – so a total of 100 capsules and 104 auto-adhesive aluminum lids. Perfect for a nice presentation on the shelves of your shop.
Capsul'in can be shipped anywhere in the world. | {
"redpajama_set_name": "RedPajamaC4"
} | 8,942 | [
128000,
87741,
220,
1135,
65879,
323,
220,
4103,
659,
26831,
41918,
25674,
100078,
627,
2675,
649,
13190,
279,
23260,
14114,
304,
264,
16530,
449,
220,
5154,
911,
315,
11033,
627,
4959,
3830,
5727,
1403,
6530,
3854,
1389,
779,
264,
2860,
315,
220,
1041,
65879,
323,
220,
6849,
3313,
26831,
41918,
25674,
100078,
13,
24118,
369,
264,
6555,
15864,
389,
279,
36310,
315,
701,
8221,
627,
61841,
360,
52152,
649,
387,
28358,
12660,
304,
279,
1917,
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
]
| [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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
]
| [
87741,
220,
1135,
65879,
323,
220,
4103,
659,
26831,
41918,
25674,
100078,
627,
2675,
649,
13190,
279,
23260,
14114,
304,
264,
16530,
449,
220,
5154,
911,
315,
11033,
627,
4959,
3830,
5727,
1403,
6530,
3854,
1389,
779,
264,
2860,
315,
220,
1041,
65879,
323,
220,
6849,
3313,
26831,
41918,
25674,
100078,
13,
24118,
369,
264,
6555,
15864,
389,
279,
36310,
315,
701,
8221,
627,
61841,
360,
52152,
649,
387,
28358,
12660,
304,
279,
1917,
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
]
|
#include <signaldata/AccLock.hpp>
#include <SignalLoggerManager.hpp>
bool
printACC_LOCKREQ(FILE* output, const Uint32* theData, Uint32 len, Uint16 rbn)
{
const AccLockReq* const sig = (const AccLockReq*)theData;
Uint32 reqtype = sig->requestInfo & 0xFF;
switch (sig->returnCode) {
case RNIL:
fprintf(output, " returnCode=RNIL");
break;
case AccLockReq::Success:
fprintf(output, " returnCode=Success");
break;
case AccLockReq::IsBlocked:
fprintf(output, " returnCode=IsBlocked");
break;
case AccLockReq::WouldBlock:
fprintf(output, " returnCode=WouldBlock");
break;
case AccLockReq::Refused:
fprintf(output, " returnCode=Refused");
break;
case AccLockReq::NoFreeOp:
fprintf(output, " returnCode=NoFreeOp");
break;
default:
fprintf(output, " returnCode=%u?", sig->returnCode);
break;
}
switch (reqtype) {
case AccLockReq::LockShared:
fprintf(output, " req=LockShared\n");
break;
case AccLockReq::LockExclusive:
fprintf(output, " req=LockExclusive\n");
break;
case AccLockReq::Unlock:
fprintf(output, " req=Unlock\n");
break;
case AccLockReq::Abort:
fprintf(output, " req=Abort\n");
break;
default:
fprintf(output, " req=%u\n", reqtype);
break;
}
fprintf(output, " accOpPtr: 0x%x\n", sig->accOpPtr);
if (reqtype == AccLockReq::LockShared ||
reqtype == AccLockReq::LockExclusive) {
fprintf(output, " userPtr: 0x%x userRef: 0x%x\n", sig->userPtr, sig->userRef);
fprintf(output, " table: id=%u", sig->tableId);
fprintf(output, " fragment: id=%u ptr=0x%x\n", sig->fragId, sig->fragPtrI);
fprintf(output, " tuple: addr=0x%x hashValue=%x\n", sig->tupAddr, sig->hashValue);
fprintf(output, " transid: %08x %08x\n", sig->transId1, sig->transId2);
}
return true;
}
| {
"redpajama_set_name": "RedPajamaGithub"
} | 5,487 | [
128000,
271,
1085,
366,
27720,
695,
10576,
641,
12258,
6589,
397,
1085,
366,
27908,
7547,
2087,
6589,
1363,
2707,
198,
1374,
30542,
28761,
30066,
34393,
9,
2612,
11,
738,
28983,
843,
9,
279,
1061,
11,
28983,
843,
2479,
11,
28983,
845,
436,
11328,
340,
517,
220,
738,
11683,
12258,
28333,
9,
738,
8531,
284,
320,
1040,
11683,
12258,
28333,
3849,
1820,
1061,
280,
220,
28983,
843,
4326,
1337,
284,
8531,
405,
2079,
1767,
612,
220,
15,
9448,
280,
220,
3480,
320,
22046,
405,
693,
2123,
8,
341,
220,
1162,
46916,
1750,
512,
262,
9561,
11304,
11,
330,
471,
2123,
28,
51295,
1750,
803,
262,
1464,
280,
220,
1162,
11683,
12258,
28333,
487,
7336,
512,
262,
9561,
11304,
11,
330,
471,
2123,
28,
7336,
803,
262,
1464,
280,
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
]
| [
271,
1085,
366,
27720,
695,
10576,
641,
12258,
6589,
397,
1085,
366,
27908,
7547,
2087,
6589,
1363,
2707,
198,
1374,
30542,
28761,
30066,
34393,
9,
2612,
11,
738,
28983,
843,
9,
279,
1061,
11,
28983,
843,
2479,
11,
28983,
845,
436,
11328,
340,
517,
220,
738,
11683,
12258,
28333,
9,
738,
8531,
284,
320,
1040,
11683,
12258,
28333,
3849,
1820,
1061,
280,
220,
28983,
843,
4326,
1337,
284,
8531,
405,
2079,
1767,
612,
220,
15,
9448,
280,
220,
3480,
320,
22046,
405,
693,
2123,
8,
341,
220,
1162,
46916,
1750,
512,
262,
9561,
11304,
11,
330,
471,
2123,
28,
51295,
1750,
803,
262,
1464,
280,
220,
1162,
11683,
12258,
28333,
487,
7336,
512,
262,
9561,
11304,
11,
330,
471,
2123,
28,
7336,
803,
262,
1464,
280,
220,
-100
]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.