text
stringlengths
310
8.3k
input_ids
listlengths
1.02k
1.02k
length
int64
1.02k
1.02k
source_domain
stringclasses
7 values
writing_style_average
float64
-3.46
3.36
required_expertise_average
float64
-3.74
4.36
facts_and_trivia_average
float64
-3.78
3.96
educational_value_average
float64
-3.85
3.97
=self.keep_negative, is_clipping=self.po2_rounding) self.quantizer.integer.assign(integer_bits) self.quantizer.alpha = 1.0 # Setting alpha to 1.0 allows the integer bits # to serve as the scale self.quantizer.symmetric = self.symmetric self.quantization_delay = tf.constant(self.quantization_delay, dtype=tf.int64) def call(self, inputs, training=False): x = inputs training = training and self.trainable self.will_ema_freeze = self.will_ema_freeze and self.trainable # Update the step count if the optimizer step count is unknown self.step.assign_add(K.switch( tf.math.logical_and(self.is_estimating_step_count, training), tf.constant(1, tf.int64), tf.constant(0, tf.int64))) # Perform the quantization if training: # Calculate the qnoise, a scalar from 0 to 1 that represents the level of # quantization noise to use. At training start, we want no quantization, # so qnoise_factor = 0.0. After quantization_delay steps, we want normal # quantization, so qnoise_factor = 1.0. qnoise_factor = K.switch( tf.greater_equal(self.step, self.quantization_delay), lambda: tf.constant(1.0), lambda: tf.constant(0.0)) self.quantizer.update_qnoise_factor(qnoise_factor) qx = self.quantizer(x) else: # If not training, we always want to use full quantization self.quantizer.update_qnoise_factor(tf.constant(1.0)) qx = self.quantizer(x) # Calculate the axis along where to find the min and max EMAs len_axis = len(x.shape) if len_axis > 1: if self.per_channel: if K.image_data_format() == "channels_last": axis = list(range(len_axis - 1)) else: axis = list(range(1, len_axis)) else: axis = list(range(len_axis)) else: axis = [0] # Determine if freezing the EMA is_ema_training = tf.constant(training, dtype=tf.bool) if self.will_ema_freeze: is_ema_training = tf.cond( tf.greater(self.step, self.ema_freeze_delay), lambda: tf.constant(False), lambda: tf.constant(True)) def update_branch(): """ Update the moving average when is_ema_training is True.""" # Set the qnoise factor to 0 to update the EMA using the unquantized input prev_qnoise_factor = tf.identity(self.quantizer.qnoise_factor) self.quantizer.update_qnoise_factor(tf.constant(0.0)) # Update the EMA act_x = self.quantizer(x) # act_x is the input after the activation # function, but before the quantizer. This is # done by using a qnoise_factor of 0 new_min = tf.squeeze(K.min(act_x, axis=axis, keepdims=True)) K.moving_average_update(self.ema_min, new_min, self.ema_decay) new_max = tf.squeeze(K.max(act_x, axis=axis, keepdims=True)) K.moving_average_update(self.ema_max, new_max, self.ema_decay) # Reset the qnoise factor to the previous value self.quantizer.update_qnoise_factor
[ 29922, 1311, 29889, 17462, 29918, 22198, 29892, 13, 462, 462, 268, 338, 29918, 11303, 3262, 29922, 1311, 29889, 1129, 29906, 29918, 29878, 12449, 29897, 13, 1678, 1583, 29889, 12150, 3950, 29889, 16031, 29889, 16645, 29898, 16031, 29918, 14836, 29897, 13, 1678, 1583, 29889, 12150, 3950, 29889, 2312, 353, 29871, 29896, 29889, 29900, 29871, 396, 21605, 15595, 304, 29871, 29896, 29889, 29900, 6511, 278, 6043, 9978, 13, 462, 18884, 396, 304, 9080, 408, 278, 6287, 13, 1678, 1583, 29889, 12150, 3950, 29889, 11967, 16414, 353, 1583, 29889, 11967, 16414, 13, 1678, 1583, 29889, 12150, 2133, 29918, 18829, 353, 15886, 29889, 23362, 29898, 1311, 29889, 12150, 2133, 29918, 18829, 29892, 13, 462, 462, 3986, 26688, 29922, 13264, 29889, 524, 29953, 29946, 29897, 13, 13, 29871, 822, 1246, 29898, 1311, 29892, 10970, 29892, 6694, 29922, 8824, 1125, 13, 1678, 921, 353, 10970, 13, 1678, 6694, 353, 6694, 322, 1583, 29889, 14968, 519, 13, 1678, 1583, 29889, 14043, 29918, 2603, 29918, 9021, 911, 353, 1583, 29889, 14043, 29918, 2603, 29918, 9021, 911, 322, 1583, 29889, 14968, 519, 13, 13, 1678, 396, 10318, 278, 4331, 2302, 565, 278, 5994, 3950, 4331, 2302, 338, 9815, 13, 1678, 1583, 29889, 10568, 29889, 16645, 29918, 1202, 29898, 29968, 29889, 15123, 29898, 13, 4706, 15886, 29889, 755, 29889, 1188, 936, 29918, 392, 29898, 1311, 29889, 275, 29918, 342, 326, 1218, 29918, 10568, 29918, 2798, 29892, 6694, 511, 13, 4706, 15886, 29889, 23362, 29898, 29896, 29892, 15886, 29889, 524, 29953, 29946, 511, 15886, 29889, 23362, 29898, 29900, 29892, 15886, 29889, 524, 29953, 29946, 4961, 13, 13, 1678, 396, 27313, 278, 4323, 2133, 13, 1678, 565, 6694, 29901, 13, 418, 396, 20535, 403, 278, 3855, 1217, 895, 29892, 263, 17336, 515, 29871, 29900, 304, 29871, 29896, 393, 11524, 278, 3233, 310, 13, 418, 396, 4323, 2133, 11462, 304, 671, 29889, 2180, 6694, 1369, 29892, 591, 864, 694, 4323, 2133, 29892, 13, 418, 396, 577, 3855, 1217, 895, 29918, 19790, 353, 29871, 29900, 29889, 29900, 29889, 2860, 4323, 2133, 29918, 18829, 6576, 29892, 591, 864, 4226, 13, 418, 396, 4323, 2133, 29892, 577, 3855, 1217, 895, 29918, 19790, 353, 29871, 29896, 29889, 29900, 29889, 13, 418, 3855, 1217, 895, 29918, 19790, 353, 476, 29889, 15123, 29898, 13, 3986, 15886, 29889, 7979, 1008, 29918, 11745, 29898, 1311, 29889, 10568, 29892, 1583, 29889, 12150, 2133, 29918, 18829, 511, 13, 3986, 14013, 29901, 15886, 29889, 23362, 29898, 29896, 29889, 29900, 511, 14013, 29901, 15886, 29889, 23362, 29898, 29900, 29889, 29900, 876, 13, 418, 1583, 29889, 12150, 3950, 29889, 5504, 29918, 29939, 1217, 895, 29918, 19790, 29898, 29939, 1217, 895, 29918, 19790, 29897, 13, 418, 3855, 29916, 353, 1583, 29889, 12150, 3950, 29898, 29916, 29897, 13, 13, 1678, 1683, 29901, 29871, 396, 960, 451, 6694, 29892, 591, 2337, 864, 304, 671, 2989, 4323, 2133, 13, 418, 1583, 29889, 12150, 3950, 29889, 5504, 29918, 29939, 1217, 895, 29918, 19790, 29898, 13264, 29889, 23362, 29898, 29896, 29889, 29900, 876, 13, 418, 3855, 29916, 353, 1583, 29889, 12150, 3950, 29898, 29916, 29897, 13, 13, 1678, 396, 20535, 403, 278, 9685, 3412, 988, 304, 1284, 278, 1375, 322, 4236, 382, 1529, 29879, 13, 1678, 7431, 29918, 8990, 353, 7431, 29898, 29916, 29889, 12181, 29897, 13, 1678, 565, 7431, 29918, 8990, 1405, 29871, 29896, 29901, 13, 418, 565, 1583, 29889, 546, 29918, 12719, 29901, 13, 4706, 565, 476, 29889, 3027, 29918, 1272, 29918, 4830, 580, 1275, 376, 305, 12629, 29918, 4230, 1115, 13, 3986, 9685, 353, 1051, 29898, 3881, 29898, 2435, 29918, 8990, 448, 29871, 29896, 876, 13, 4706, 1683, 29901, 13, 3986, 9685, 353, 1051, 29898, 3881, 29898, 29896, 29892, 7431, 29918, 8990, 876, 13, 418, 1683, 29901, 13, 4706, 9685, 353, 1051, 29898, 3881, 29898, 2435, 29918, 8990, 876, 13, 1678, 1683, 29901, 13, 418, 9685, 353, 518, 29900, 29962, 13, 13, 1678, 396, 5953, 837, 457, 565, 3889, 19583, 278, 382, 1529, 13, 1678, 338, 29918, 2603, 29918, 26495, 353, 15886, 29889, 23362, 29898, 26495, 29892, 26688, 29922, 13264, 29889, 11227, 29897, 13, 1678, 565, 1583, 29889, 14043, 29918, 2603, 29918, 9021, 911, 29901, 13, 418, 338, 29918, 2603, 29918, 26495, 353, 15886, 29889, 1116, 29898, 13, 3986, 15886, 29889, 7979, 1008, 29898, 1311, 29889, 10568, 29892, 1583, 29889, 2603, 29918, 9021, 911, 29918, 18829, 511, 13, 3986, 14013, 29901, 15886, 29889, 23362, 29898, 8824, 511, 14013, 29901, 15886, 29889, 23362, 29898, 5574, 876, 13, 13, 1678, 822, 2767, 29918, 17519, 7295, 13, 418, 9995, 10318, 278, 8401, 6588, 746, 338, 29918, 2603, 29918, 26495, 338, 5852, 1213, 15945, 13, 13, 418, 396, 3789, 278, 3855, 1217, 895, 7329, 304, 29871, 29900, 304, 2767, 278, 382, 1529, 773, 278, 443, 12150, 1891, 1881, 13, 418, 12379, 29918, 29939, 1217, 895, 29918, 19790, 353, 15886, 29889, 22350, 29898, 1311, 29889, 12150, 3950, 29889, 29939, 1217, 895, 29918, 19790, 29897, 13, 418, 1583, 29889, 12150, 3950, 29889, 5504, 29918, 29939, 1217, 895, 29918, 19790, 29898, 13264, 29889, 23362, 29898, 29900, 29889, 29900, 876, 13, 13, 418, 396, 10318, 278, 382, 1529, 13, 418, 1044, 29918, 29916, 353, 1583, 29889, 12150, 3950, 29898, 29916, 29897, 29871, 396, 1044, 29918, 29916, 338, 278, 1881, 1156, 278, 26229, 13, 462, 462, 396, 740, 29892, 541, 1434, 278, 4323, 3950, 29889, 910, 338, 13, 462, 462, 396, 2309, 491, 773, 263, 3855, 1217, 895, 29918, 19790, 310, 29871, 29900, 13, 418, 716, 29918, 1195, 353, 15886, 29889, 29879, 802, 29872, 911, 29898, 29968, 29889, 1195, 29898, 627, 29918, 29916, 29892, 9685, 29922, 8990, 29892, 3013, 6229, 29879, 29922, 5574, 876, 13, 418, 476, 29889, 13529, 292, 29918, 12483, 482, 29918, 5504, 29898, 1311, 29889, 2603, 29918, 1195, 29892, 716, 29918, 1195, 29892, 1583, 29889, 2603, 29918, 7099, 388, 29897, 13, 418, 716, 29918, 3317, 353, 15886, 29889, 29879, 802, 29872, 911, 29898, 29968, 29889, 3317, 29898, 627, 29918, 29916, 29892, 9685, 29922, 8990, 29892, 3013, 6229, 29879, 29922, 5574, 876, 13, 418, 476, 29889, 13529, 292, 29918, 12483, 482, 29918, 5504, 29898, 1311, 29889, 2603, 29918, 3317, 29892, 716, 29918, 3317, 29892, 1583, 29889, 2603, 29918, 7099, 388, 29897, 13, 13, 418, 396, 2538, 300, 278, 3855, 1217, 895, 7329, 304, 278, 3517, 995, 13, 418, 1583, 29889, 12150, 3950, 29889, 5504, 29918, 29939, 1217, 895, 29918, 19790 ]
1,024
Github
-1.03173
1.085592
-1.394113
-0.054642
(prev_qnoise_factor) # Update the moving average when is_ema_training is True tf_utils.smart_cond( is_ema_training, true_fn=update_branch, false_fn=lambda: None) # Set the integer bits for the quantizer integer_bits = _get_integer_bits( min_value=self.ema_min, max_value=self.ema_max, bits=self.total_bits, symmetric=self.symmetric, keep_negative=self.keep_negative, is_clipping=self.po2_rounding) self.quantizer.integer.assign(integer_bits) return qx # Override get_weights since we do not want ema_min or ema_max to be public def get_weights(self): return [] # Override set_weights since we do not want ema_min or ema_max to be public def set_weights(self, weights): return def get_config(self): config = { "activation": self.quantizer.__class__.__name__, "total_bits": self.total_bits, "current_step": self.step.numpy(), "symmetric": self.symmetric, "quantization_delay": np.array(self.quantization_delay), "ema_freeze_delay": np.array(self.ema_freeze_delay), "ema_decay": np.array(self.ema_decay), "per_channel": self.per_channel, "po2_rounding": self.po2_rounding, "relu_neg_slope": self.relu_neg_slope } base_config = super(QAdaptiveActivation, self).get_config() return dict(list(base_config.items()) + list(config.items())) def get_quantization_config(self): self.quantizer.integer_bits = np.array(self.quantizer) return str(self.quantizer) def compute_output_shape(self, input_shape): return input_shape def get_prunable_weights(self): return [] # # Constraint class to clip weights and bias between -1 and 1 so that: # 1. quantization approximation is symmetric (b = 0). # 2. max(x) and min(x) are 1 and -1 respectively. # class Clip(Constraint): """Clips weight constraint.""" # This function was modified from Keras minmaxconstraints. # # Constrains the weights to be between min/max values. # min_value: the minimum norm for the incoming weights. # max_value: the maximum norm for the incoming weights. # constraint: previous constraint to be clipped. # quantizer: quantizer to be applied to constraint. def __init__(self, min_value=0.0, max_value=1.0, constraint=None, quantizer=None): """Initializes Clip constraint class.""" self.min_value = min_value self.max_value = max_value self.constraint = constraints.get(constraint) # Don't wrap yourself if isinstance(self.constraint, Clip): self.constraint = None self.quantizer = get_quantizer(quantizer) def __call__(self, w): """Clips values between min and max values.""" if self.constraint: w = self.constraint(w) if self.quantizer: w = self.quantizer(w) w = tf.keras.backend.clip(w, self.min_value, self.max_value) return w def get_config(self): """Returns configuration of constraint class.""" return {"min_value": self.min_value, "max_value": self.max_value} @classmethod def from_config(cls,
[ 29898, 16304, 29918, 29939, 1217, 895, 29918, 19790, 29897, 13, 13, 1678, 396, 10318, 278, 8401, 6588, 746, 338, 29918, 2603, 29918, 26495, 338, 5852, 13, 1678, 15886, 29918, 13239, 29889, 3844, 442, 29918, 1116, 29898, 13, 4706, 338, 29918, 2603, 29918, 26495, 29892, 1565, 29918, 9144, 29922, 5504, 29918, 17519, 29892, 2089, 29918, 9144, 29922, 2892, 29901, 6213, 29897, 13, 13, 1678, 396, 3789, 278, 6043, 9978, 363, 278, 4323, 3950, 13, 1678, 6043, 29918, 14836, 353, 903, 657, 29918, 16031, 29918, 14836, 29898, 13, 4706, 1375, 29918, 1767, 29922, 1311, 29889, 2603, 29918, 1195, 29892, 13, 4706, 4236, 29918, 1767, 29922, 1311, 29889, 2603, 29918, 3317, 29892, 13, 4706, 9978, 29922, 1311, 29889, 7827, 29918, 14836, 29892, 13, 4706, 18348, 29922, 1311, 29889, 11967, 16414, 29892, 13, 4706, 3013, 29918, 22198, 29922, 1311, 29889, 17462, 29918, 22198, 29892, 13, 4706, 338, 29918, 11303, 3262, 29922, 1311, 29889, 1129, 29906, 29918, 29878, 12449, 29897, 13, 1678, 1583, 29889, 12150, 3950, 29889, 16031, 29889, 16645, 29898, 16031, 29918, 14836, 29897, 13, 13, 1678, 736, 3855, 29916, 13, 13, 29871, 396, 6811, 2426, 679, 29918, 705, 5861, 1951, 591, 437, 451, 864, 321, 655, 29918, 1195, 470, 321, 655, 29918, 3317, 304, 367, 970, 13, 29871, 822, 679, 29918, 705, 5861, 29898, 1311, 1125, 13, 1678, 736, 5159, 13, 13, 29871, 396, 6811, 2426, 731, 29918, 705, 5861, 1951, 591, 437, 451, 864, 321, 655, 29918, 1195, 470, 321, 655, 29918, 3317, 304, 367, 970, 13, 29871, 822, 731, 29918, 705, 5861, 29898, 1311, 29892, 18177, 1125, 13, 1678, 736, 13, 13, 29871, 822, 679, 29918, 2917, 29898, 1311, 1125, 13, 1678, 2295, 353, 426, 13, 4706, 376, 11236, 362, 1115, 1583, 29889, 12150, 3950, 17255, 1990, 1649, 17255, 978, 1649, 29892, 13, 4706, 376, 7827, 29918, 14836, 1115, 1583, 29889, 7827, 29918, 14836, 29892, 13, 4706, 376, 3784, 29918, 10568, 1115, 1583, 29889, 10568, 29889, 23749, 3285, 13, 4706, 376, 11967, 16414, 1115, 1583, 29889, 11967, 16414, 29892, 13, 4706, 376, 12150, 2133, 29918, 18829, 1115, 7442, 29889, 2378, 29898, 1311, 29889, 12150, 2133, 29918, 18829, 511, 13, 4706, 376, 2603, 29918, 9021, 911, 29918, 18829, 1115, 7442, 29889, 2378, 29898, 1311, 29889, 2603, 29918, 9021, 911, 29918, 18829, 511, 13, 4706, 376, 2603, 29918, 7099, 388, 1115, 7442, 29889, 2378, 29898, 1311, 29889, 2603, 29918, 7099, 388, 511, 13, 4706, 376, 546, 29918, 12719, 1115, 1583, 29889, 546, 29918, 12719, 29892, 13, 4706, 376, 1129, 29906, 29918, 29878, 12449, 1115, 1583, 29889, 1129, 29906, 29918, 29878, 12449, 29892, 13, 4706, 376, 2674, 29884, 29918, 10052, 29918, 29879, 417, 412, 1115, 1583, 29889, 2674, 29884, 29918, 10052, 29918, 29879, 417, 412, 13, 1678, 500, 13, 1678, 2967, 29918, 2917, 353, 2428, 29898, 29984, 29909, 1388, 415, 573, 21786, 362, 29892, 1583, 467, 657, 29918, 2917, 580, 13, 1678, 736, 9657, 29898, 1761, 29898, 3188, 29918, 2917, 29889, 7076, 3101, 718, 1051, 29898, 2917, 29889, 7076, 22130, 13, 13, 29871, 822, 679, 29918, 12150, 2133, 29918, 2917, 29898, 1311, 1125, 13, 1678, 1583, 29889, 12150, 3950, 29889, 16031, 29918, 14836, 353, 7442, 29889, 2378, 29898, 1311, 29889, 12150, 3950, 29897, 13, 1678, 736, 851, 29898, 1311, 29889, 12150, 3950, 29897, 13, 13, 29871, 822, 10272, 29918, 4905, 29918, 12181, 29898, 1311, 29892, 1881, 29918, 12181, 1125, 13, 1678, 736, 1881, 29918, 12181, 13, 13, 29871, 822, 679, 29918, 558, 348, 519, 29918, 705, 5861, 29898, 1311, 1125, 13, 1678, 736, 5159, 13, 13, 13, 29937, 13, 29937, 1281, 4151, 524, 770, 304, 20102, 18177, 322, 24003, 1546, 448, 29896, 322, 29871, 29896, 577, 393, 29901, 13, 29937, 268, 29896, 29889, 4323, 2133, 16845, 338, 18348, 313, 29890, 353, 29871, 29900, 467, 13, 29937, 268, 29906, 29889, 4236, 29898, 29916, 29897, 322, 1375, 29898, 29916, 29897, 526, 29871, 29896, 322, 448, 29896, 8307, 29889, 13, 29937, 13, 1990, 315, 3466, 29898, 21529, 1125, 13, 29871, 9995, 29907, 492, 567, 7688, 7276, 1213, 15945, 13, 13, 29871, 396, 910, 740, 471, 9120, 515, 12693, 294, 1375, 3317, 13646, 29879, 29889, 13, 29871, 396, 13, 29871, 396, 1281, 4151, 1144, 278, 18177, 304, 367, 1546, 1375, 29914, 3317, 1819, 29889, 13, 29871, 396, 259, 1375, 29918, 1767, 29901, 278, 9212, 6056, 363, 278, 23235, 18177, 29889, 13, 29871, 396, 259, 4236, 29918, 1767, 29901, 278, 7472, 6056, 363, 278, 23235, 18177, 29889, 13, 29871, 396, 259, 7276, 29901, 3517, 7276, 304, 367, 9335, 2986, 29889, 13, 29871, 396, 259, 4323, 3950, 29901, 4323, 3950, 304, 367, 7436, 304, 7276, 29889, 13, 13, 29871, 822, 4770, 2344, 12035, 1311, 29892, 1375, 29918, 1767, 29922, 29900, 29889, 29900, 29892, 4236, 29918, 1767, 29922, 29896, 29889, 29900, 29892, 13, 1669, 7276, 29922, 8516, 29892, 4323, 3950, 29922, 8516, 1125, 13, 1678, 9995, 15514, 7093, 315, 3466, 7276, 770, 1213, 15945, 13, 13, 1678, 1583, 29889, 1195, 29918, 1767, 353, 1375, 29918, 1767, 13, 1678, 1583, 29889, 3317, 29918, 1767, 353, 4236, 29918, 1767, 13, 1678, 1583, 29889, 13646, 353, 11938, 29889, 657, 29898, 13646, 29897, 13, 1678, 396, 3872, 29915, 29873, 12244, 7535, 13, 1678, 565, 338, 8758, 29898, 1311, 29889, 13646, 29892, 315, 3466, 1125, 13, 418, 1583, 29889, 13646, 353, 6213, 13, 1678, 1583, 29889, 12150, 3950, 353, 679, 29918, 12150, 3950, 29898, 12150, 3950, 29897, 13, 13, 29871, 822, 4770, 4804, 12035, 1311, 29892, 281, 1125, 13, 1678, 9995, 29907, 492, 567, 1819, 1546, 1375, 322, 4236, 1819, 1213, 15945, 13, 1678, 565, 1583, 29889, 13646, 29901, 13, 418, 281, 353, 1583, 29889, 13646, 29898, 29893, 29897, 13, 418, 565, 1583, 29889, 12150, 3950, 29901, 13, 4706, 281, 353, 1583, 29889, 12150, 3950, 29898, 29893, 29897, 13, 1678, 281, 353, 15886, 29889, 3946, 294, 29889, 27852, 29889, 24049, 29898, 29893, 29892, 1583, 29889, 1195, 29918, 1767, 29892, 1583, 29889, 3317, 29918, 1767, 29897, 13, 1678, 736, 281, 13, 13, 29871, 822, 679, 29918, 2917, 29898, 1311, 1125, 13, 1678, 9995, 11609, 29879, 5285, 310, 7276, 770, 1213, 15945, 13, 1678, 736, 8853, 1195, 29918, 1767, 1115, 1583, 29889, 1195, 29918, 1767, 29892, 376, 3317, 29918, 1767, 1115, 1583, 29889, 3317, 29918, 1767, 29913, 13, 13, 29871, 732, 1990, 5696, 13, 29871, 822, 515, 29918, 2917, 29898, 25932, 29892 ]
1,024
Github
-0.980106
0.919475
-1.23631
0.076905
config): if isinstance(config.get('constraint', None), Clip): config['constraint'] = None config['constraint'] = constraints.get(config.get('constraint', None)) config['quantizer'] = get_quantizer(config.get('quantizer', None)) return cls(**config) # # Definition of Quantized NN classes. These classes were copied # from the equivalent layers in Keras, and we modified to apply quantization. # Similar implementations can be seen in the references. # class QDense(Dense, PrunableLayer): """Implements a quantized Dense layer.""" # Most of these parameters follow the implementation of Dense in # Keras, with the exception of kernel_range, bias_range, # kernel_quantizer, bias_quantizer, and kernel_initializer. # # kernel_quantizer: quantizer function/class for kernel # bias_quantizer: quantizer function/class for bias # kernel_range/bias_ranger: for quantizer functions whose values # can go over [-1,+1], these values are used to set the clipping # value of kernels and biases, respectively, instead of using the # constraints specified by the user. # # we refer the reader to the documentation of Dense in Keras for the # other parameters. def __init__(self, units, activation=None, use_bias=True, kernel_initializer="he_normal", bias_initializer="zeros", kernel_regularizer=None, bias_regularizer=None, activity_regularizer=None, kernel_constraint=None, bias_constraint=None, kernel_quantizer=None, bias_quantizer=None, kernel_range=None, bias_range=None, **kwargs): if kernel_range is not None: warnings.warn("kernel_range is deprecated in QDense layer.") if bias_range is not None: warnings.warn("bias_range is deprecated in QDense layer.") self.kernel_range = kernel_range self.bias_range = bias_range self.kernel_quantizer = kernel_quantizer self.bias_quantizer = bias_quantizer self.kernel_quantizer_internal = get_quantizer(self.kernel_quantizer) self.bias_quantizer_internal = get_quantizer(self.bias_quantizer) # optimize parameter set to "auto" scaling mode if possible if hasattr(self.kernel_quantizer_internal, "_set_trainable_parameter"): self.kernel_quantizer_internal._set_trainable_parameter() self.quantizers = [ self.kernel_quantizer_internal, self.bias_quantizer_internal ] kernel_constraint, kernel_initializer = ( get_auto_range_constraint_initializer(self.kernel_quantizer_internal, kernel_constraint, kernel_initializer)) if use_bias: bias_constraint, bias_initializer = ( get_auto_range_constraint_initializer(self.bias_quantizer_internal, bias_constraint, bias_initializer)) if activation is not None: activation = get_quantizer(activation) super(QDense, self).__init__( units=units, activation=activation, use_bias=use_bias, kernel_initializer=kernel_initializer, bias_initializer=bias_initializer, kernel_regularizer=kernel_regularizer, bias_regularizer=bias_regularizer, activity_regularizer=activity_regularizer, kernel_constraint=kernel_constraint, bias_constraint=bias_constraint, **kwargs) def call(self, inputs): if self.kernel_quantizer: quantized_kernel = self.kernel_quantizer_internal(self.kernel) else: quantized_
[ 2295, 1125, 13, 1678, 565, 338, 8758, 29898, 2917, 29889, 657, 877, 13646, 742, 6213, 511, 315, 3466, 1125, 13, 418, 2295, 1839, 13646, 2033, 353, 6213, 13, 1678, 2295, 1839, 13646, 2033, 353, 11938, 29889, 657, 29898, 2917, 29889, 657, 877, 13646, 742, 6213, 876, 13, 1678, 2295, 1839, 12150, 3950, 2033, 353, 679, 29918, 12150, 3950, 29898, 2917, 29889, 657, 877, 12150, 3950, 742, 6213, 876, 13, 1678, 736, 1067, 29879, 29898, 1068, 2917, 29897, 13, 13, 29937, 13, 29937, 21940, 310, 22746, 1891, 405, 29940, 4413, 29889, 4525, 4413, 892, 13746, 13, 29937, 515, 278, 7126, 15359, 297, 12693, 294, 29892, 322, 591, 9120, 304, 3394, 4323, 2133, 29889, 13, 29937, 13999, 20240, 508, 367, 3595, 297, 278, 9282, 29889, 13, 29937, 13, 13, 13, 1990, 660, 29928, 1947, 29898, 29928, 1947, 29892, 1588, 348, 519, 14420, 1125, 13, 29871, 9995, 1888, 9711, 263, 4323, 1891, 360, 1947, 7546, 1213, 15945, 13, 13, 29871, 396, 7849, 310, 1438, 4128, 1101, 278, 5314, 310, 360, 1947, 297, 13, 29871, 396, 12693, 294, 29892, 411, 278, 3682, 310, 8466, 29918, 3881, 29892, 24003, 29918, 3881, 29892, 13, 29871, 396, 8466, 29918, 12150, 3950, 29892, 24003, 29918, 12150, 3950, 29892, 322, 8466, 29918, 11228, 3950, 29889, 13, 29871, 396, 13, 29871, 396, 8466, 29918, 12150, 3950, 29901, 4323, 3950, 740, 29914, 1990, 363, 8466, 13, 29871, 396, 24003, 29918, 12150, 3950, 29901, 4323, 3950, 740, 29914, 1990, 363, 24003, 13, 29871, 396, 8466, 29918, 3881, 29914, 29890, 3173, 29918, 29878, 4600, 29901, 363, 4323, 3950, 3168, 5069, 1819, 13, 29871, 396, 259, 508, 748, 975, 21069, 29896, 29892, 29974, 29896, 1402, 1438, 1819, 526, 1304, 304, 731, 278, 9335, 3262, 13, 29871, 396, 259, 995, 310, 413, 824, 1379, 322, 4768, 2129, 29892, 8307, 29892, 2012, 310, 773, 278, 13, 29871, 396, 259, 11938, 6790, 491, 278, 1404, 29889, 13, 29871, 396, 13, 29871, 396, 591, 2737, 278, 9591, 304, 278, 5106, 310, 360, 1947, 297, 12693, 294, 363, 278, 13, 29871, 396, 916, 4128, 29889, 13, 13, 29871, 822, 4770, 2344, 12035, 1311, 29892, 13, 1669, 10340, 29892, 13, 1669, 26229, 29922, 8516, 29892, 13, 1669, 671, 29918, 29890, 3173, 29922, 5574, 29892, 13, 1669, 8466, 29918, 11228, 3950, 543, 354, 29918, 8945, 613, 13, 1669, 24003, 29918, 11228, 3950, 543, 3298, 359, 613, 13, 1669, 8466, 29918, 15227, 3950, 29922, 8516, 29892, 13, 1669, 24003, 29918, 15227, 3950, 29922, 8516, 29892, 13, 1669, 6354, 29918, 15227, 3950, 29922, 8516, 29892, 13, 1669, 8466, 29918, 13646, 29922, 8516, 29892, 13, 1669, 24003, 29918, 13646, 29922, 8516, 29892, 13, 1669, 8466, 29918, 12150, 3950, 29922, 8516, 29892, 13, 1669, 24003, 29918, 12150, 3950, 29922, 8516, 29892, 13, 1669, 8466, 29918, 3881, 29922, 8516, 29892, 13, 1669, 24003, 29918, 3881, 29922, 8516, 29892, 13, 1669, 3579, 19290, 1125, 13, 13, 1678, 565, 8466, 29918, 3881, 338, 451, 6213, 29901, 13, 418, 18116, 29889, 25442, 703, 17460, 29918, 3881, 338, 18164, 297, 660, 29928, 1947, 7546, 23157, 13, 13, 1678, 565, 24003, 29918, 3881, 338, 451, 6213, 29901, 13, 418, 18116, 29889, 25442, 703, 29890, 3173, 29918, 3881, 338, 18164, 297, 660, 29928, 1947, 7546, 23157, 13, 13, 1678, 1583, 29889, 17460, 29918, 3881, 353, 8466, 29918, 3881, 13, 1678, 1583, 29889, 29890, 3173, 29918, 3881, 353, 24003, 29918, 3881, 13, 13, 1678, 1583, 29889, 17460, 29918, 12150, 3950, 353, 8466, 29918, 12150, 3950, 13, 1678, 1583, 29889, 29890, 3173, 29918, 12150, 3950, 353, 24003, 29918, 12150, 3950, 13, 13, 1678, 1583, 29889, 17460, 29918, 12150, 3950, 29918, 7564, 353, 679, 29918, 12150, 3950, 29898, 1311, 29889, 17460, 29918, 12150, 3950, 29897, 13, 1678, 1583, 29889, 29890, 3173, 29918, 12150, 3950, 29918, 7564, 353, 679, 29918, 12150, 3950, 29898, 1311, 29889, 29890, 3173, 29918, 12150, 3950, 29897, 13, 13, 1678, 396, 24656, 3443, 731, 304, 376, 6921, 29908, 21640, 4464, 565, 1950, 13, 1678, 565, 756, 5552, 29898, 1311, 29889, 17460, 29918, 12150, 3950, 29918, 7564, 29892, 11119, 842, 29918, 14968, 519, 29918, 15501, 29908, 1125, 13, 418, 1583, 29889, 17460, 29918, 12150, 3950, 29918, 7564, 3032, 842, 29918, 14968, 519, 29918, 15501, 580, 13, 13, 1678, 1583, 29889, 12150, 19427, 353, 518, 13, 4706, 1583, 29889, 17460, 29918, 12150, 3950, 29918, 7564, 29892, 1583, 29889, 29890, 3173, 29918, 12150, 3950, 29918, 7564, 13, 1678, 4514, 13, 13, 1678, 8466, 29918, 13646, 29892, 8466, 29918, 11228, 3950, 353, 313, 13, 4706, 679, 29918, 6921, 29918, 3881, 29918, 13646, 29918, 11228, 3950, 29898, 1311, 29889, 17460, 29918, 12150, 3950, 29918, 7564, 29892, 13, 462, 462, 795, 8466, 29918, 13646, 29892, 13, 462, 462, 795, 8466, 29918, 11228, 3950, 876, 13, 13, 1678, 565, 671, 29918, 29890, 3173, 29901, 13, 418, 24003, 29918, 13646, 29892, 24003, 29918, 11228, 3950, 353, 313, 13, 3986, 679, 29918, 6921, 29918, 3881, 29918, 13646, 29918, 11228, 3950, 29898, 1311, 29889, 29890, 3173, 29918, 12150, 3950, 29918, 7564, 29892, 13, 462, 462, 18884, 24003, 29918, 13646, 29892, 13, 462, 462, 18884, 24003, 29918, 11228, 3950, 876, 13, 1678, 565, 26229, 338, 451, 6213, 29901, 13, 418, 26229, 353, 679, 29918, 12150, 3950, 29898, 11236, 362, 29897, 13, 13, 1678, 2428, 29898, 29984, 29928, 1947, 29892, 1583, 467, 1649, 2344, 12035, 13, 4706, 10340, 29922, 348, 1169, 29892, 13, 4706, 26229, 29922, 11236, 362, 29892, 13, 4706, 671, 29918, 29890, 3173, 29922, 1509, 29918, 29890, 3173, 29892, 13, 4706, 8466, 29918, 11228, 3950, 29922, 17460, 29918, 11228, 3950, 29892, 13, 4706, 24003, 29918, 11228, 3950, 29922, 29890, 3173, 29918, 11228, 3950, 29892, 13, 4706, 8466, 29918, 15227, 3950, 29922, 17460, 29918, 15227, 3950, 29892, 13, 4706, 24003, 29918, 15227, 3950, 29922, 29890, 3173, 29918, 15227, 3950, 29892, 13, 4706, 6354, 29918, 15227, 3950, 29922, 10072, 29918, 15227, 3950, 29892, 13, 4706, 8466, 29918, 13646, 29922, 17460, 29918, 13646, 29892, 13, 4706, 24003, 29918, 13646, 29922, 29890, 3173, 29918, 13646, 29892, 13, 4706, 3579, 19290, 29897, 13, 13, 29871, 822, 1246, 29898, 1311, 29892, 10970, 1125, 13, 1678, 565, 1583, 29889, 17460, 29918, 12150, 3950, 29901, 13, 418, 4323, 1891, 29918, 17460, 353, 1583, 29889, 17460, 29918, 12150, 3950, 29918, 7564, 29898, 1311, 29889, 17460, 29897, 13, 1678, 1683, 29901, 13, 418, 4323, 1891, 29918 ]
1,024
Github
-1.080637
1.095974
-1.304452
-0.155833
kernel = self.kernel output = tf.keras.backend.dot(inputs, quantized_kernel) if self.use_bias: if self.bias_quantizer: quantized_bias = self.bias_quantizer_internal(self.bias) else: quantized_bias = self.bias output = tf.keras.backend.bias_add(output, quantized_bias, data_format="channels_last") if self.activation is not None: output = self.activation(output) return output def compute_output_shape(self, input_shape): assert input_shape and len(input_shape) >= 2 assert input_shape[-1] output_shape = list(input_shape) output_shape[-1] = self.units return tuple(output_shape) def get_config(self): config = { "units": self.units, "activation": activations.serialize(self.activation), "use_bias": self.use_bias, "kernel_quantizer": constraints.serialize(self.kernel_quantizer_internal), "bias_quantizer": constraints.serialize(self.bias_quantizer_internal), "kernel_initializer": initializers.serialize(self.kernel_initializer), "bias_initializer": initializers.serialize(self.bias_initializer), "kernel_regularizer": regularizers.serialize(self.kernel_regularizer), "bias_regularizer": regularizers.serialize(self.bias_regularizer), "activity_regularizer": regularizers.serialize(self.activity_regularizer), "kernel_constraint": constraints.serialize(self.kernel_constraint), "bias_constraint": constraints.serialize(self.bias_constraint), "kernel_range": self.kernel_range, "bias_range": self.bias_range } base_config = super(QDense, self).get_config() return dict(list(base_config.items()) + list(config.items())) def get_quantization_config(self): return { "kernel_quantizer": str(self.kernel_quantizer_internal), "bias_quantizer": str(self.bias_quantizer_internal), "activation": str(self.activation), "units" : str(self.units) } def get_quantizers(self): return self.quantizers def get_prunable_weights(self): return [self.kernel] def get_constraint(identifier, quantizer): """Gets the initializer. Args: identifier: A constraint, which could be dict, string, or callable function. quantizer: A quantizer class or quantization function Returns: A constraint class """ if identifier: if isinstance(identifier, dict) and identifier['class_name'] == 'Clip': return Clip.from_config(identifier['config']) else: return constraints.get(identifier) else: max_value = max(1, quantizer.max()) if hasattr(quantizer, "max") else 1.0 return Clip(-max_value, max_value, identifier, quantizer) def get_initializer(identifier): """Gets the initializer. Args: identifier: An initializer, which could be dict, string, or callable function. Returns: A initializer class Raises: ValueError: An error occurred when quantizer cannot be interpreted. """ if identifier is None: return None if isinstance(identifier, dict): if identifier['class_name'] == 'QInitializer': return QInitializer.from_config(identifier['config']) else: return initializers.get(identifier) elif
[ 17460, 353, 1583, 29889, 17460, 13, 1678, 1962, 353, 15886, 29889, 3946, 294, 29889, 27852, 29889, 6333, 29898, 2080, 29879, 29892, 4323, 1891, 29918, 17460, 29897, 13, 1678, 565, 1583, 29889, 1509, 29918, 29890, 3173, 29901, 13, 418, 565, 1583, 29889, 29890, 3173, 29918, 12150, 3950, 29901, 13, 4706, 4323, 1891, 29918, 29890, 3173, 353, 1583, 29889, 29890, 3173, 29918, 12150, 3950, 29918, 7564, 29898, 1311, 29889, 29890, 3173, 29897, 13, 418, 1683, 29901, 13, 4706, 4323, 1891, 29918, 29890, 3173, 353, 1583, 29889, 29890, 3173, 13, 418, 1962, 353, 15886, 29889, 3946, 294, 29889, 27852, 29889, 29890, 3173, 29918, 1202, 29898, 4905, 29892, 4323, 1891, 29918, 29890, 3173, 29892, 13, 462, 462, 308, 848, 29918, 4830, 543, 305, 12629, 29918, 4230, 1159, 13, 1678, 565, 1583, 29889, 11236, 362, 338, 451, 6213, 29901, 13, 418, 1962, 353, 1583, 29889, 11236, 362, 29898, 4905, 29897, 13, 1678, 736, 1962, 13, 13, 29871, 822, 10272, 29918, 4905, 29918, 12181, 29898, 1311, 29892, 1881, 29918, 12181, 1125, 13, 1678, 4974, 1881, 29918, 12181, 322, 7431, 29898, 2080, 29918, 12181, 29897, 6736, 29871, 29906, 13, 1678, 4974, 1881, 29918, 12181, 14352, 29896, 29962, 13, 1678, 1962, 29918, 12181, 353, 1051, 29898, 2080, 29918, 12181, 29897, 13, 1678, 1962, 29918, 12181, 14352, 29896, 29962, 353, 1583, 29889, 348, 1169, 13, 1678, 736, 18761, 29898, 4905, 29918, 12181, 29897, 13, 13, 29871, 822, 679, 29918, 2917, 29898, 1311, 1125, 13, 1678, 2295, 353, 426, 13, 4706, 376, 348, 1169, 1115, 1583, 29889, 348, 1169, 29892, 13, 4706, 376, 11236, 362, 1115, 5039, 800, 29889, 643, 6646, 29898, 1311, 29889, 11236, 362, 511, 13, 4706, 376, 1509, 29918, 29890, 3173, 1115, 1583, 29889, 1509, 29918, 29890, 3173, 29892, 13, 4706, 376, 17460, 29918, 12150, 3950, 1115, 13, 9651, 11938, 29889, 643, 6646, 29898, 1311, 29889, 17460, 29918, 12150, 3950, 29918, 7564, 511, 13, 4706, 376, 29890, 3173, 29918, 12150, 3950, 1115, 13, 9651, 11938, 29889, 643, 6646, 29898, 1311, 29889, 29890, 3173, 29918, 12150, 3950, 29918, 7564, 511, 13, 4706, 376, 17460, 29918, 11228, 3950, 1115, 13, 9651, 2847, 19427, 29889, 643, 6646, 29898, 1311, 29889, 17460, 29918, 11228, 3950, 511, 13, 4706, 376, 29890, 3173, 29918, 11228, 3950, 1115, 13, 9651, 2847, 19427, 29889, 643, 6646, 29898, 1311, 29889, 29890, 3173, 29918, 11228, 3950, 511, 13, 4706, 376, 17460, 29918, 15227, 3950, 1115, 13, 9651, 4943, 19427, 29889, 643, 6646, 29898, 1311, 29889, 17460, 29918, 15227, 3950, 511, 13, 4706, 376, 29890, 3173, 29918, 15227, 3950, 1115, 13, 9651, 4943, 19427, 29889, 643, 6646, 29898, 1311, 29889, 29890, 3173, 29918, 15227, 3950, 511, 13, 4706, 376, 10072, 29918, 15227, 3950, 1115, 13, 9651, 4943, 19427, 29889, 643, 6646, 29898, 1311, 29889, 10072, 29918, 15227, 3950, 511, 13, 4706, 376, 17460, 29918, 13646, 1115, 13, 9651, 11938, 29889, 643, 6646, 29898, 1311, 29889, 17460, 29918, 13646, 511, 13, 4706, 376, 29890, 3173, 29918, 13646, 1115, 13, 9651, 11938, 29889, 643, 6646, 29898, 1311, 29889, 29890, 3173, 29918, 13646, 511, 13, 4706, 376, 17460, 29918, 3881, 1115, 1583, 29889, 17460, 29918, 3881, 29892, 13, 4706, 376, 29890, 3173, 29918, 3881, 1115, 1583, 29889, 29890, 3173, 29918, 3881, 13, 1678, 500, 13, 1678, 2967, 29918, 2917, 353, 2428, 29898, 29984, 29928, 1947, 29892, 1583, 467, 657, 29918, 2917, 580, 13, 1678, 736, 9657, 29898, 1761, 29898, 3188, 29918, 2917, 29889, 7076, 3101, 718, 1051, 29898, 2917, 29889, 7076, 22130, 13, 13, 29871, 822, 679, 29918, 12150, 2133, 29918, 2917, 29898, 1311, 1125, 13, 1678, 736, 426, 13, 4706, 376, 17460, 29918, 12150, 3950, 1115, 13, 9651, 851, 29898, 1311, 29889, 17460, 29918, 12150, 3950, 29918, 7564, 511, 13, 4706, 376, 29890, 3173, 29918, 12150, 3950, 1115, 13, 9651, 851, 29898, 1311, 29889, 29890, 3173, 29918, 12150, 3950, 29918, 7564, 511, 13, 4706, 376, 11236, 362, 1115, 13, 9651, 851, 29898, 1311, 29889, 11236, 362, 511, 13, 4706, 376, 348, 1169, 29908, 584, 851, 29898, 1311, 29889, 348, 1169, 29897, 13, 1678, 500, 13, 13, 29871, 822, 679, 29918, 12150, 19427, 29898, 1311, 1125, 13, 1678, 736, 1583, 29889, 12150, 19427, 13, 13, 29871, 822, 679, 29918, 558, 348, 519, 29918, 705, 5861, 29898, 1311, 1125, 13, 1678, 736, 518, 1311, 29889, 17460, 29962, 13, 13, 13, 1753, 679, 29918, 13646, 29898, 25378, 29892, 4323, 3950, 1125, 13, 29871, 9995, 29954, 1691, 278, 2847, 3950, 29889, 13, 13, 29871, 826, 3174, 29901, 13, 1678, 15882, 29901, 319, 7276, 29892, 607, 1033, 367, 9657, 29892, 1347, 29892, 470, 1246, 519, 740, 29889, 13, 1678, 4323, 3950, 29901, 319, 4323, 3950, 770, 470, 4323, 2133, 740, 13, 13, 29871, 16969, 29901, 13, 1678, 319, 7276, 770, 13, 29871, 9995, 13, 29871, 565, 15882, 29901, 13, 1678, 565, 338, 8758, 29898, 25378, 29892, 9657, 29897, 322, 15882, 1839, 1990, 29918, 978, 2033, 1275, 525, 29907, 3466, 2396, 13, 418, 736, 315, 3466, 29889, 3166, 29918, 2917, 29898, 25378, 1839, 2917, 11287, 13, 1678, 1683, 29901, 13, 418, 736, 11938, 29889, 657, 29898, 25378, 29897, 13, 29871, 1683, 29901, 13, 1678, 4236, 29918, 1767, 353, 4236, 29898, 29896, 29892, 4323, 3950, 29889, 3317, 3101, 565, 756, 5552, 29898, 12150, 3950, 29892, 376, 3317, 1159, 1683, 29871, 29896, 29889, 29900, 13, 1678, 736, 315, 3466, 6278, 3317, 29918, 1767, 29892, 4236, 29918, 1767, 29892, 15882, 29892, 4323, 3950, 29897, 13, 13, 1753, 679, 29918, 11228, 3950, 29898, 25378, 1125, 13, 29871, 9995, 29954, 1691, 278, 2847, 3950, 29889, 13, 13, 29871, 826, 3174, 29901, 13, 1678, 15882, 29901, 530, 2847, 3950, 29892, 607, 1033, 367, 9657, 29892, 1347, 29892, 470, 1246, 519, 740, 29889, 13, 13, 29871, 16969, 29901, 13, 1678, 319, 2847, 3950, 770, 13, 13, 29871, 390, 1759, 267, 29901, 13, 1678, 7865, 2392, 29901, 530, 1059, 10761, 746, 4323, 3950, 2609, 367, 21551, 29889, 13, 29871, 9995, 13, 29871, 565, 15882, 338, 6213, 29901, 13, 1678, 736, 6213, 13, 29871, 565, 338, 8758, 29898, 25378, 29892, 9657, 1125, 13, 1678, 565, 15882, 1839, 1990, 29918, 978, 2033, 1275, 525, 29984, 15514, 3950, 2396, 13, 418, 736, 660, 15514, 3950, 29889, 3166, 29918, 2917, 29898, 25378, 1839, 2917, 11287, 13, 1678, 1683, 29901, 13, 418, 736, 2847, 19427, 29889, 657, 29898, 25378, 29897, 13, 29871, 25342 ]
1,024
Github
-1.107808
0.906497
-1.243483
0.117381
Still tap to click not working in Login Screen. My Bugreport was closed. That's not a bug. It's libinput's default settibg. Install xserver-xorg-input-synaptics. See my post in that report for a link with an explanation on how you can enable it. Ok installing xserver-xorg-input-synaptics does the trick, but know mousespeed is way to high and cannot be adjusted with the gui. By the way tap to click in loginscreen worked since Mint 16 without installing anything. This is kind of a regression. Do we get Mint DE upgrader before that? That might be the time to upgrade to 19. Maybe one day you'll fix the mouse lasso on Nemo, like OS's have had since 1995. I did the 19 update over the past week and lost one of my desktops. Definitely back up all of your info and do a Timeshift backup. Forgive my ignorance, but what is "mouse lasso"? No word on the changes vs 19? It'll be a new version of Cinnamon, and maybe a few other bits. The core package base will not change, since that remains stable through the whole 19.x cycle. I might go back to 18.3 also. Scrivener, Red Notebook, and several others do not work under 19 with no indication of a remedy. Not ready for prime time. concur with Terry. 19 is dead to me, all our computers have reverted back to 18.3. Cannot run Viber on 19. Timeshift is wretched. Tested but never converted to 19 and will not until the upstream regressions make some kind of progress. I know just about every issue isn't Mint's fault, but if support for 18.3 runs out before the problems reported since the release are addressed, I'll move to a distro with a different upstream base (I've already confirmed the best known of them will work for me now). Also, I don't believe TimeShift in combination with accepting all updates is a better solution than we had before. That is a Mint issue; however, this can be configured to work the old way, so that's OK, but I think new users may find the UX less satisfying if they get hit, and eventually, they will. Same here. Unfortunately Samsung Printer and Canon scanner are not working anymore. Was unable to fix it. Therefore back to 18.3. Yup, also had loads of problems with network printers, network shares, getting VPNs to work… A never ending number of issues. I know most of these problems come from the Ubuntu base but I was hopeful that the Mint devs would fix these problems. So I uninstalled Mint 19. Just to make it clear: most of the problems I had were with Samba shares and printers in Samba. Sadly 19 is a bad regression in my opinion. Never had so many unresolved issues going from 17 to 18. I beta tested 19 from day 1 of beta release and report several issues regarding printer driver, etc. Sadly none fixed. Also reported issues in deleting network sub-folders that are not empty – reports that they are deleted but when you go back and look (refresh the directory) they are still there. So like many other having to revert to 18.3. Samba shares including printers will work if you stop the firewall. Went back to 18.3 MATE about a week after 19 came out. Just did not feel like MATE. I'm happily staying with 18.3 as long as it's supported. After that I don't really know what I'll do but I doubt it'll be 19x. Too bad many people reverted to 18.3 including me. Thought about going back to 18.3 also when my main astronomy program (Stellarium) stopped working on 19. Devs are saying it's not LM but it works as advertised on 3 flavors of Ubuntu 18.04. Got it to work partially but is still unwilling to update the databases and to control my mount properly. But I decided to stick with 19 when I successfully got another astro program (Hnsky) to do the same work without problems. After distro hopping for about
[ 12074, 18751, 304, 2828, 451, 1985, 297, 19130, 22666, 29889, 1619, 28209, 12276, 471, 5764, 29889, 13, 7058, 29915, 29879, 451, 263, 6494, 29889, 739, 29915, 29879, 4303, 2080, 29915, 29879, 2322, 3604, 747, 29887, 29889, 16052, 921, 2974, 29899, 29916, 990, 29899, 2080, 29899, 19274, 2156, 1199, 29889, 13, 13393, 590, 1400, 297, 393, 3461, 363, 263, 1544, 411, 385, 8252, 373, 920, 366, 508, 9025, 372, 29889, 13, 20434, 15476, 921, 2974, 29899, 29916, 990, 29899, 2080, 29899, 19274, 2156, 1199, 947, 278, 8938, 29892, 541, 1073, 286, 23676, 412, 287, 338, 982, 304, 1880, 322, 2609, 367, 10365, 287, 411, 278, 1410, 29875, 29889, 2648, 278, 982, 18751, 304, 2828, 297, 1480, 1144, 5576, 3796, 1951, 341, 524, 29871, 29896, 29953, 1728, 15476, 3099, 29889, 910, 338, 2924, 310, 263, 17855, 29889, 13, 6132, 591, 679, 341, 524, 5012, 701, 629, 1664, 1434, 393, 29973, 13, 7058, 1795, 367, 278, 931, 304, 14955, 304, 29871, 29896, 29929, 29889, 7198, 697, 2462, 366, 29915, 645, 2329, 278, 9495, 301, 9979, 373, 405, 15810, 29892, 763, 6570, 29915, 29879, 505, 750, 1951, 29871, 29896, 29929, 29929, 29945, 29889, 13, 29902, 1258, 278, 29871, 29896, 29929, 2767, 975, 278, 4940, 4723, 322, 5714, 697, 310, 590, 553, 1193, 3554, 29889, 5282, 18639, 1250, 701, 599, 310, 596, 5235, 322, 437, 263, 10277, 29882, 2027, 16199, 29889, 13, 29943, 990, 573, 590, 16245, 749, 29892, 541, 825, 338, 376, 15769, 301, 9979, 8652, 13, 3782, 1734, 373, 278, 3620, 7186, 29871, 29896, 29929, 29973, 13, 3112, 29915, 645, 367, 263, 716, 1873, 310, 315, 2559, 314, 265, 29892, 322, 5505, 263, 2846, 916, 9978, 29889, 450, 7136, 3577, 2967, 674, 451, 1735, 29892, 1951, 393, 9242, 13714, 1549, 278, 3353, 29871, 29896, 29929, 29889, 29916, 11412, 29889, 13, 29902, 1795, 748, 1250, 304, 29871, 29896, 29947, 29889, 29941, 884, 29889, 317, 20812, 759, 29892, 4367, 2216, 19273, 29892, 322, 3196, 4045, 437, 451, 664, 1090, 29871, 29896, 29929, 411, 694, 4221, 362, 310, 263, 1083, 7584, 29889, 2216, 7960, 363, 6019, 931, 29889, 13, 535, 2764, 411, 27571, 29889, 29871, 29896, 29929, 338, 7123, 304, 592, 29892, 599, 1749, 23226, 505, 29538, 287, 1250, 304, 29871, 29896, 29947, 29889, 29941, 29889, 15808, 1065, 10630, 495, 373, 29871, 29896, 29929, 29889, 10277, 29882, 2027, 338, 281, 10301, 287, 29889, 13, 29911, 2868, 541, 2360, 11543, 304, 29871, 29896, 29929, 322, 674, 451, 2745, 278, 701, 5461, 337, 3663, 1080, 1207, 777, 2924, 310, 6728, 29889, 306, 1073, 925, 1048, 1432, 2228, 3508, 29915, 29873, 341, 524, 29915, 29879, 12570, 29892, 541, 565, 2304, 363, 29871, 29896, 29947, 29889, 29941, 6057, 714, 1434, 278, 4828, 8967, 1951, 278, 6507, 526, 20976, 29892, 306, 29915, 645, 4337, 304, 263, 1320, 307, 411, 263, 1422, 701, 5461, 2967, 313, 29902, 29915, 345, 2307, 16725, 278, 1900, 2998, 310, 963, 674, 664, 363, 592, 1286, 467, 13, 17351, 29892, 306, 1016, 29915, 29873, 4658, 5974, 29657, 297, 10296, 411, 25967, 599, 11217, 338, 263, 2253, 1650, 1135, 591, 750, 1434, 29889, 2193, 338, 263, 341, 524, 2228, 29936, 3138, 29892, 445, 508, 367, 13252, 304, 664, 278, 2030, 982, 29892, 577, 393, 29915, 29879, 9280, 29892, 541, 306, 1348, 716, 4160, 1122, 1284, 278, 501, 29990, 3109, 24064, 565, 896, 679, 7124, 29892, 322, 10201, 29892, 896, 674, 29889, 13, 29903, 420, 1244, 29889, 11511, 317, 28935, 1588, 1639, 322, 1815, 265, 885, 7310, 526, 451, 1985, 15128, 29889, 12547, 9368, 304, 2329, 372, 29889, 7857, 1250, 304, 29871, 29896, 29947, 29889, 29941, 29889, 13, 29979, 786, 29892, 884, 750, 15376, 310, 4828, 411, 3564, 23028, 29879, 29892, 3564, 29358, 29892, 2805, 478, 15695, 29879, 304, 664, 30098, 319, 2360, 17140, 1353, 310, 5626, 29889, 13, 29902, 1073, 1556, 310, 1438, 4828, 2041, 515, 278, 8294, 2967, 541, 306, 471, 4966, 1319, 393, 278, 341, 524, 2906, 29879, 723, 2329, 1438, 4828, 29889, 1105, 306, 443, 25537, 341, 524, 29871, 29896, 29929, 29889, 13, 14084, 304, 1207, 372, 2821, 29901, 1556, 310, 278, 4828, 306, 750, 892, 411, 317, 20027, 29358, 322, 23028, 29879, 297, 317, 20027, 29889, 13, 29903, 328, 368, 29871, 29896, 29929, 338, 263, 4319, 17855, 297, 590, 9426, 29889, 12391, 750, 577, 1784, 443, 9778, 1490, 5626, 2675, 515, 29871, 29896, 29955, 304, 29871, 29896, 29947, 29889, 306, 21762, 9528, 29871, 29896, 29929, 515, 2462, 29871, 29896, 310, 21762, 6507, 322, 3461, 3196, 5626, 11211, 23028, 7156, 29892, 2992, 29889, 21772, 368, 5642, 4343, 29889, 3115, 8967, 5626, 297, 21228, 3564, 1014, 29899, 8771, 414, 393, 526, 451, 4069, 785, 13676, 393, 896, 526, 11132, 541, 746, 366, 748, 1250, 322, 1106, 313, 22379, 278, 3884, 29897, 896, 526, 1603, 727, 29889, 13, 6295, 763, 1784, 916, 2534, 304, 29538, 304, 29871, 29896, 29947, 29889, 29941, 29889, 13, 29903, 20027, 29358, 3704, 23028, 29879, 674, 664, 565, 366, 5040, 278, 25570, 29889, 13, 29956, 296, 1250, 304, 29871, 29896, 29947, 29889, 29941, 341, 3040, 1048, 263, 4723, 1156, 29871, 29896, 29929, 2996, 714, 29889, 3387, 1258, 451, 4459, 763, 341, 3040, 29889, 306, 29915, 29885, 2250, 2354, 7952, 292, 411, 29871, 29896, 29947, 29889, 29941, 408, 1472, 408, 372, 29915, 29879, 6969, 29889, 2860, 393, 306, 1016, 29915, 29873, 2289, 1073, 825, 306, 29915, 645, 437, 541, 306, 7404, 372, 29915, 645, 367, 29871, 29896, 29929, 29916, 29889, 13, 1762, 29877, 4319, 1784, 2305, 29538, 287, 304, 29871, 29896, 29947, 29889, 29941, 3704, 592, 29889, 13, 1349, 1774, 1048, 2675, 1250, 304, 29871, 29896, 29947, 29889, 29941, 884, 746, 590, 1667, 20932, 29891, 1824, 313, 855, 514, 22826, 29897, 11084, 1985, 373, 29871, 29896, 29929, 29889, 897, 4270, 526, 5934, 372, 29915, 29879, 451, 365, 29924, 541, 372, 1736, 408, 18811, 3368, 373, 29871, 29941, 21054, 943, 310, 8294, 29871, 29896, 29947, 29889, 29900, 29946, 29889, 15992, 372, 304, 664, 22039, 541, 338, 1603, 18500, 8873, 304, 2767, 278, 21218, 322, 304, 2761, 590, 5766, 6284, 29889, 1205, 306, 8459, 304, 12070, 411, 29871, 29896, 29929, 746, 306, 8472, 2355, 1790, 8717, 307, 1824, 313, 29950, 29876, 7912, 29897, 304, 437, 278, 1021, 664, 1728, 4828, 29889, 13, 13555, 1320, 307, 5089, 3262, 363, 1048, 29871 ]
1,024
C4
-1.164866
-0.78257
-1.073126
-0.894521
3 months I finally came to mint 19 and everything just worked. Had to add the graphics ppa for my nvidia card but that was it. Everything's been snappy! No long boot times and even prior to configuring the graphics ppa for my nvidia card; it was running buttery smoothe. Mileage may vary but I'm loving me some Mint 19! Can't wait to see what .1 has coming. I'm new to Linux, Dual-booting Windows 10 and LM 19. I found that printing was painfully slow (laserjet 4M Plus on a serial-to-USB adapter) until I installed HPLIP from https://developers.hp.com/hp-linux-imaging-and-printing. What would be really nice(though I know the Linux Mint team does not have enough resources for this), is cloud backup… Back up your home directory to a cloud server, then, next time you install(either on the same machine or another computer), after you connect to the internet and put in your cloud backup credentials, it will automatically download your home directory backup back to your computer. Even better than that would be, in each backup, detect which applications have been installed by the user, and automagically re-install those as well. y que trae esta version algun cambio en particular?? He says, does this version bring any change in particular? Hope it addresses all the problems with 19. So many people, so many issues. 18 was much more functional. Great! 🙂 Knowing when to expect the new release is useful. I will most likely wait for 19.1 to migrate from 18.3 on my work machines. It's obviously a bit early to know what the new features will be, but it would be nice if the automatic update feature in the Update Manager could be configured without manually editing the cron file. And it would be nice as well if the existing update blacklist feature would be used by default with the automatic updates. There is no KDE Version? I was wondering the same thing, if no KDE I will start looking for another distro. Have been running KDE since day 1. No, there won't be any new KDE spins. This was announced long ago. The main reason I started using Linux Mint was because it was Ubuntu with KDE already installed out of the box, that's what sold me on the distro, but I'm not going to keep using it if I have to install it myself with possible glitches involved, I expect the distro I choose to already have what I want so when I install it I'm ready to go, I don't have time to play around trying to make a distro into what I want or need, especially when it was already KDE in the past, and now Mint decides to abandon those people that liked it and used it. After 18.3 support is dropped I'll be changing to another distro, there are plenty to choose from that are willing to keep using KDE for their fans. Good day. Will this update address the issues with trying to run Window applications via Wine? Tried using the linux version of Teamviewer then the Window version via Wine and both would not work. I'm a newbie to Linux Mint, well Linux in general, but I want to switch from Windows but NOT if I can't get applications running. There are many things about Linux I like, but the learning curve on installation and making things work third party is draggin me down on switching. Teamviewer worked fine on Linux Mint 19 Mate for me. You just have to install it, then restart your computer and it will be in your main menu. Teamviewer is a native Linux application; do not try to use the Windows version. To install it in Linux Mint just double-click the installer (teamviewer_13.2.13582_amd64.deb). Everything else will be done for you by the installer. Let me know if you have any problems. I was a newbe about five years ago and remember the slow learning curve. There just wasn't a lot of help for new people because the experts take a lot for granted. Eventually I figured it out by reading these posts but there should have been more links to on-line manuals like Wikipedia for some of the really stupid questions. I have had issues with slow printers also and may have to down grade soon to keep the marriage going another year! I keep telling it is her fault for sticking with Windows 10 but it's little hard with
[ 29941, 7378, 306, 7146, 2996, 304, 20559, 29871, 29896, 29929, 322, 4129, 925, 3796, 29889, 14302, 304, 788, 278, 18533, 282, 3274, 363, 590, 302, 28584, 5881, 541, 393, 471, 372, 29889, 17296, 29915, 29879, 1063, 5807, 14862, 29991, 1939, 1472, 6579, 3064, 322, 1584, 7536, 304, 2295, 3864, 278, 18533, 282, 3274, 363, 590, 302, 28584, 5881, 29936, 372, 471, 2734, 541, 22005, 1560, 3155, 354, 29889, 341, 488, 482, 1122, 13100, 541, 306, 29915, 29885, 12355, 292, 592, 777, 341, 524, 29871, 29896, 29929, 29991, 1815, 29915, 29873, 4480, 304, 1074, 825, 869, 29896, 756, 6421, 29889, 13, 29902, 29915, 29885, 716, 304, 8074, 29892, 360, 950, 29899, 4777, 292, 3852, 29871, 29896, 29900, 322, 365, 29924, 29871, 29896, 29929, 29889, 306, 1476, 393, 14010, 471, 6788, 3730, 5232, 313, 3333, 261, 4026, 29871, 29946, 29924, 15113, 373, 263, 7797, 29899, 517, 29899, 29965, 1744, 13304, 29897, 2745, 306, 5130, 379, 29925, 5265, 29925, 515, 2045, 597, 17426, 29889, 28887, 29889, 510, 29914, 28887, 29899, 9389, 29899, 326, 6751, 29899, 392, 29899, 2158, 292, 29889, 13, 5618, 723, 367, 2289, 7575, 29898, 3592, 306, 1073, 278, 8074, 341, 524, 3815, 947, 451, 505, 3307, 7788, 363, 445, 511, 338, 9570, 16199, 30098, 7437, 701, 596, 3271, 3884, 304, 263, 9570, 1923, 29892, 769, 29892, 2446, 931, 366, 2601, 29898, 29872, 2121, 373, 278, 1021, 4933, 470, 1790, 6601, 511, 1156, 366, 4511, 304, 278, 8986, 322, 1925, 297, 596, 9570, 16199, 16140, 29892, 372, 674, 6336, 5142, 596, 3271, 3884, 16199, 1250, 304, 596, 6601, 29889, 7753, 2253, 1135, 393, 723, 367, 29892, 297, 1269, 16199, 29892, 6459, 607, 8324, 505, 1063, 5130, 491, 278, 1404, 29892, 322, 3345, 351, 1711, 337, 29899, 6252, 1906, 408, 1532, 29889, 13, 29891, 712, 1020, 29872, 7444, 1873, 3093, 348, 26007, 427, 3153, 8773, 13, 3868, 4083, 29892, 947, 445, 1873, 6963, 738, 1735, 297, 3153, 29973, 13, 29950, 2300, 372, 14157, 599, 278, 4828, 411, 29871, 29896, 29929, 29889, 13, 6295, 1784, 2305, 29892, 577, 1784, 5626, 29889, 13, 29896, 29947, 471, 1568, 901, 13303, 29889, 13, 25120, 271, 29991, 29871, 243, 162, 156, 133, 19320, 292, 746, 304, 2149, 278, 716, 6507, 338, 5407, 29889, 306, 674, 1556, 5517, 4480, 363, 29871, 29896, 29929, 29889, 29896, 304, 9725, 403, 515, 29871, 29896, 29947, 29889, 29941, 373, 590, 664, 14884, 29889, 13, 3112, 29915, 29879, 12879, 263, 2586, 4688, 304, 1073, 825, 278, 716, 5680, 674, 367, 29892, 541, 372, 723, 367, 7575, 565, 278, 18428, 2767, 4682, 297, 278, 10318, 15629, 1033, 367, 13252, 1728, 7522, 16278, 278, 18863, 934, 29889, 1126, 372, 723, 367, 7575, 408, 1532, 565, 278, 5923, 2767, 4628, 1761, 4682, 723, 367, 1304, 491, 2322, 411, 278, 18428, 11217, 29889, 13, 8439, 338, 694, 476, 2287, 10079, 29973, 13, 29902, 471, 9873, 278, 1021, 2655, 29892, 565, 694, 476, 2287, 306, 674, 1369, 3063, 363, 1790, 1320, 307, 29889, 13, 25559, 1063, 2734, 476, 2287, 1951, 2462, 29871, 29896, 29889, 13, 3782, 29892, 727, 2113, 29915, 29873, 367, 738, 716, 476, 2287, 805, 1144, 29889, 910, 471, 9326, 1472, 8020, 29889, 13, 1576, 1667, 2769, 306, 4687, 773, 8074, 341, 524, 471, 1363, 372, 471, 8294, 411, 476, 2287, 2307, 5130, 714, 310, 278, 3800, 29892, 393, 29915, 29879, 825, 5239, 592, 373, 278, 1320, 307, 29892, 541, 306, 29915, 29885, 451, 2675, 304, 3013, 773, 372, 565, 306, 505, 304, 2601, 372, 6142, 411, 1950, 3144, 2335, 267, 9701, 29892, 306, 2149, 278, 1320, 307, 306, 6755, 304, 2307, 505, 825, 306, 864, 577, 746, 306, 2601, 372, 306, 29915, 29885, 7960, 304, 748, 29892, 306, 1016, 29915, 29873, 505, 931, 304, 1708, 2820, 1811, 304, 1207, 263, 1320, 307, 964, 825, 306, 864, 470, 817, 29892, 7148, 746, 372, 471, 2307, 476, 2287, 297, 278, 4940, 29892, 322, 1286, 341, 524, 1602, 2247, 304, 11807, 1906, 2305, 393, 23289, 372, 322, 1304, 372, 29889, 2860, 29871, 29896, 29947, 29889, 29941, 2304, 338, 13700, 306, 29915, 645, 367, 6480, 304, 1790, 1320, 307, 29892, 727, 526, 20947, 304, 6755, 515, 393, 526, 17762, 304, 3013, 773, 476, 2287, 363, 1009, 24909, 29889, 7197, 2462, 29889, 13, 12984, 445, 2767, 3211, 278, 5626, 411, 1811, 304, 1065, 18379, 8324, 3025, 399, 457, 29973, 29547, 773, 278, 10542, 1873, 310, 8583, 29894, 15580, 769, 278, 18379, 1873, 3025, 399, 457, 322, 1716, 723, 451, 664, 29889, 13, 29902, 29915, 29885, 263, 716, 10993, 304, 8074, 341, 524, 29892, 1532, 8074, 297, 2498, 29892, 541, 306, 864, 304, 4607, 515, 3852, 541, 6058, 565, 306, 508, 29915, 29873, 679, 8324, 2734, 29889, 1670, 526, 1784, 2712, 1048, 8074, 306, 763, 29892, 541, 278, 6509, 11672, 373, 11161, 322, 3907, 2712, 664, 4654, 6263, 338, 8338, 5359, 592, 1623, 373, 21293, 29889, 13, 19409, 29894, 15580, 3796, 2691, 373, 8074, 341, 524, 29871, 29896, 29929, 29566, 363, 592, 29889, 887, 925, 505, 304, 2601, 372, 29892, 769, 10715, 596, 6601, 322, 372, 674, 367, 297, 596, 1667, 6143, 29889, 13, 19409, 29894, 15580, 338, 263, 7531, 8074, 2280, 29936, 437, 451, 1018, 304, 671, 278, 3852, 1873, 29889, 1763, 2601, 372, 297, 8074, 341, 524, 925, 3765, 29899, 3808, 278, 27786, 313, 14318, 29894, 15580, 29918, 29896, 29941, 29889, 29906, 29889, 29896, 29941, 29945, 29947, 29906, 29918, 22490, 29953, 29946, 29889, 16529, 467, 17296, 1683, 674, 367, 2309, 363, 366, 491, 278, 27786, 29889, 2803, 592, 1073, 565, 366, 505, 738, 4828, 29889, 13, 29902, 471, 263, 716, 915, 1048, 5320, 2440, 8020, 322, 6456, 278, 5232, 6509, 11672, 29889, 1670, 925, 9007, 29915, 29873, 263, 3287, 310, 1371, 363, 716, 2305, 1363, 278, 2902, 1372, 2125, 263, 3287, 363, 16896, 29889, 6864, 1474, 306, 14788, 372, 714, 491, 5183, 1438, 11803, 541, 727, 881, 505, 1063, 901, 2988, 304, 373, 29899, 1220, 12219, 29879, 763, 14109, 363, 777, 310, 278, 2289, 20239, 5155, 29889, 306, 505, 750, 5626, 411, 5232, 23028, 29879, 884, 322, 1122, 505, 304, 1623, 19468, 4720, 304, 3013, 278, 13718, 2675, 1790, 1629, 29991, 306, 3013, 14509, 372, 338, 902, 12570, 363, 12070, 292, 411, 3852, 29871, 29896, 29900, 541, 372, 29915, 29879, 2217, 2898, 411 ]
1,024
C4
-0.860555
-1.141407
-1.275761
-0.814201
this this distribution. Her windows laptop has been sent out for repairs three times already and we paid a lot more for it than Linux. Over all Linux Mint is much better and this is the first time I have had any issues with it. Usually I am the problem not the operating system. Have you managed to get "Teamviewer" running on Linux to successfully connect to Android devices that run "QuickSupport for Teamviewer"? I read that v13.x does not (yet?!) support this and one is supposed to use v12.x. Neither of the two allowing me to do this. I genuinely hate to say that from M$-Windows this in fact works. If you have a solution to this for Teamviewer (Linux) -> Android device, please share it. There definitely is a learning curve. A lot is assumed to be common knowledge and after you get used to it, it's easy enough. Not having to deal with viruses and other nonsense is well worth learning the nuances of Linux Mint. Not having to constantly install updates is well worth the hassles. Could you put emphasis on performance and resources consumption? Linux Mint 19 feels heavier than 18.3. We really need Mint to be lean and fast. Did you try using the XFCE version? Would be nice if there's people willing to join the team and whip us an LXQt or openbox (refer to ArchLabs, a sharper tribute of BunsenLabs) editions. No problems with version 19 at all, at least nothing that I could not fix. I consider myself a very satisfied customer. It helps to understand that there are difficulties in creating an operating system that will work effortlessly with all hardware combinations. Let the user also put his/her shoulder to the wheel and if help is needed, post a question on the Mint Forum. Thank you, hard-working Linux Mint Development Team, for a fine computer operating system. I agree, another satisfied customer, thanks to all the Linux Mint Development Team, for another fine computer operating system. There have been more than the usual number of fixes needed but I can not think of any that are down to Mint, they have all been due to the Ubuntu base change from Xenial to Bionic which has been a real problem including regressions in several areas. Well worth the effort in the end. Actually I am a happy LM 19 user. No issues that I couldn't solve. The 19 version I am running is stable, beauty and flexible ( different Apps and HW used) … So great Job of the programmers and thank to them so much for the continue development of Linux Mint. I have not had any problem in the change to Linux Mint 19. Everything I use works correctly. The printing on my Epson, via wifi is perfect. The system boot is maybe a bit slow, but then it's very fast. In my work I use Win 10 and the opposite happens: it starts very fast but then it is desperate to open any program. It is true that my computer is somewhat more powerful. Does anyone know if a penguin has been used as a pet? Mint 19 Cinnamon and 19 Mate are working really well for us overall. We have many machines running fresh installs of 19 and are not having any issues. For the machines we upgraded from 18.3 to 19, it was smooth overall after we completed the forced upgrade process. We did have a problem with some test VMs that were running in Virtual Box which were upgraded from 18.3 to 19 that would not mount their shared folders. Other than that, its been excellent. Mint 19 works fine, I did a fresh install though. Many thanks to the Mint team, keep up the good work. At whom slow loading, read article, much helps. Thanks to the LM team for your work! Just installed 19 on an acer c710. All works great except the touchpad. Using a mouse for now but sure would like a fix for the touch. Nice job on everything else. It is necessary to add the possibility to the manager of workplaces in 2 lines. The two lines will be much more compact. Mouse settings do not work properly. It has acceleration setting but somehow it never feels right. It is too inaccurate in tiny movements. Try to make small (1px) movements and you will see that it jumps more than that. You can play with acceleration and precison but the issue is always there… I checked lots of
[ 445, 445, 4978, 29889, 2439, 5417, 19022, 756, 1063, 2665, 714, 363, 1634, 7121, 2211, 3064, 2307, 322, 591, 12530, 263, 3287, 901, 363, 372, 1135, 8074, 29889, 6811, 599, 8074, 341, 524, 338, 1568, 2253, 322, 445, 338, 278, 937, 931, 306, 505, 750, 738, 5626, 411, 372, 29889, 26991, 306, 626, 278, 1108, 451, 278, 13598, 1788, 29889, 13, 25559, 366, 8745, 304, 679, 376, 19409, 29894, 15580, 29908, 2734, 373, 8074, 304, 8472, 4511, 304, 5669, 9224, 393, 1065, 376, 2182, 860, 14039, 363, 8583, 29894, 15580, 8652, 306, 1303, 393, 325, 29896, 29941, 29889, 29916, 947, 451, 313, 29891, 300, 29973, 14366, 2304, 445, 322, 697, 338, 7424, 304, 671, 325, 29896, 29906, 29889, 29916, 29889, 2448, 2121, 310, 278, 1023, 14372, 592, 304, 437, 445, 29889, 13, 29902, 29120, 262, 873, 26277, 304, 1827, 393, 515, 341, 4388, 7685, 445, 297, 2114, 1736, 29889, 13, 3644, 366, 505, 263, 1650, 304, 445, 363, 8583, 29894, 15580, 313, 24085, 29897, 1599, 5669, 4742, 29892, 3113, 6232, 372, 29889, 13, 8439, 11630, 338, 263, 6509, 11672, 29889, 319, 3287, 338, 12023, 304, 367, 3619, 7134, 322, 1156, 366, 679, 1304, 304, 372, 29892, 372, 29915, 29879, 4780, 3307, 29889, 2216, 2534, 304, 5376, 411, 10636, 6394, 322, 916, 302, 787, 1947, 338, 1532, 7088, 6509, 278, 4948, 2925, 310, 8074, 341, 524, 29889, 2216, 2534, 304, 21003, 2601, 11217, 338, 1532, 7088, 278, 298, 465, 793, 29889, 13, 23323, 366, 1925, 19310, 275, 373, 4180, 322, 7788, 27430, 29973, 13, 24085, 341, 524, 29871, 29896, 29929, 23880, 14200, 631, 1135, 29871, 29896, 29947, 29889, 29941, 29889, 13, 4806, 2289, 817, 341, 524, 304, 367, 20793, 322, 5172, 29889, 13, 9260, 366, 1018, 773, 278, 1060, 29943, 4741, 1873, 29973, 13, 29956, 483, 367, 7575, 565, 727, 29915, 29879, 2305, 17762, 304, 5988, 278, 3815, 322, 377, 666, 502, 385, 365, 29990, 17303, 470, 1722, 1884, 313, 20275, 304, 2595, 29931, 6897, 29892, 263, 528, 279, 546, 260, 2666, 310, 27105, 4881, 29931, 6897, 29897, 1226, 2187, 29889, 13, 3782, 4828, 411, 1873, 29871, 29896, 29929, 472, 599, 29892, 472, 3203, 3078, 393, 306, 1033, 451, 2329, 29889, 306, 2050, 6142, 263, 1407, 15787, 11962, 29889, 13, 3112, 6911, 304, 2274, 393, 727, 526, 23553, 297, 4969, 385, 13598, 1788, 393, 674, 664, 7225, 23769, 411, 599, 12837, 18240, 29889, 2803, 278, 1404, 884, 1925, 670, 29914, 2276, 23468, 304, 278, 18875, 322, 565, 1371, 338, 4312, 29892, 1400, 263, 1139, 373, 278, 341, 524, 29474, 29889, 13, 25271, 366, 29892, 2898, 29899, 22899, 8074, 341, 524, 14650, 8583, 29892, 363, 263, 2691, 6601, 13598, 1788, 29889, 13, 29902, 8661, 29892, 1790, 15787, 11962, 29892, 3969, 304, 599, 278, 8074, 341, 524, 14650, 8583, 29892, 363, 1790, 2691, 6601, 13598, 1788, 29889, 13, 8439, 505, 1063, 901, 1135, 278, 9670, 1353, 310, 24626, 4312, 541, 306, 508, 451, 1348, 310, 738, 393, 526, 1623, 304, 341, 524, 29892, 896, 505, 599, 1063, 2861, 304, 278, 8294, 2967, 1735, 515, 1060, 264, 616, 304, 350, 26629, 607, 756, 1063, 263, 1855, 1108, 3704, 337, 3663, 1080, 297, 3196, 10161, 29889, 5674, 7088, 278, 7225, 297, 278, 1095, 29889, 13, 2865, 1474, 306, 626, 263, 9796, 365, 29924, 29871, 29896, 29929, 1404, 29889, 1939, 5626, 393, 306, 8496, 29915, 29873, 4505, 29889, 450, 29871, 29896, 29929, 1873, 306, 626, 2734, 338, 13714, 29892, 15409, 322, 25706, 313, 1422, 2401, 29879, 322, 379, 29956, 1304, 29897, 16088, 1105, 2107, 17163, 310, 278, 1824, 13269, 322, 6452, 304, 963, 577, 1568, 363, 278, 6773, 5849, 310, 8074, 341, 524, 29889, 13, 29902, 505, 451, 750, 738, 1108, 297, 278, 1735, 304, 8074, 341, 524, 29871, 29896, 29929, 29889, 17296, 306, 671, 1736, 5149, 29889, 450, 14010, 373, 590, 382, 11869, 29892, 3025, 281, 6832, 338, 4922, 29889, 450, 1788, 6579, 338, 5505, 263, 2586, 5232, 29892, 541, 769, 372, 29915, 29879, 1407, 5172, 29889, 512, 590, 664, 306, 671, 8892, 29871, 29896, 29900, 322, 278, 11564, 5930, 29901, 372, 8665, 1407, 5172, 541, 769, 372, 338, 553, 21194, 304, 1722, 738, 1824, 29889, 739, 338, 1565, 393, 590, 6601, 338, 10579, 901, 13988, 29889, 13, 25125, 5019, 1073, 565, 263, 282, 19636, 262, 756, 1063, 1304, 408, 263, 5697, 29973, 13, 29924, 524, 29871, 29896, 29929, 315, 2559, 314, 265, 322, 29871, 29896, 29929, 29566, 526, 1985, 2289, 1532, 363, 502, 12463, 29889, 1334, 505, 1784, 14884, 2734, 10849, 2601, 29879, 310, 29871, 29896, 29929, 322, 526, 451, 2534, 738, 5626, 29889, 1152, 278, 14884, 591, 20337, 287, 515, 29871, 29896, 29947, 29889, 29941, 304, 29871, 29896, 29929, 29892, 372, 471, 10597, 12463, 1156, 591, 8676, 278, 11826, 14955, 1889, 29889, 1334, 1258, 505, 263, 1108, 411, 777, 1243, 11400, 29879, 393, 892, 2734, 297, 19181, 11773, 607, 892, 20337, 287, 515, 29871, 29896, 29947, 29889, 29941, 304, 29871, 29896, 29929, 393, 723, 451, 5766, 1009, 7258, 16495, 29889, 5901, 1135, 393, 29892, 967, 1063, 15129, 29889, 13, 29924, 524, 29871, 29896, 29929, 1736, 2691, 29892, 306, 1258, 263, 10849, 2601, 2466, 29889, 9267, 3969, 304, 278, 341, 524, 3815, 29892, 3013, 701, 278, 1781, 664, 29889, 13, 4178, 6029, 5232, 8363, 29892, 1303, 4274, 29892, 1568, 6911, 29889, 13, 16894, 304, 278, 365, 29924, 3815, 363, 596, 664, 29991, 13, 14084, 5130, 29871, 29896, 29929, 373, 385, 1274, 261, 274, 29955, 29896, 29900, 29889, 2178, 1736, 2107, 5174, 278, 6023, 8305, 29889, 5293, 263, 9495, 363, 1286, 541, 1854, 723, 763, 263, 2329, 363, 278, 6023, 29889, 13, 29940, 625, 4982, 373, 4129, 1683, 29889, 13, 3112, 338, 5181, 304, 788, 278, 13331, 304, 278, 8455, 310, 664, 29886, 6048, 297, 29871, 29906, 3454, 29889, 13, 1576, 1023, 3454, 674, 367, 1568, 901, 11071, 29889, 13, 14346, 6055, 437, 451, 664, 6284, 29889, 739, 756, 28178, 4444, 541, 10431, 372, 2360, 23880, 1492, 29889, 739, 338, 2086, 297, 562, 2764, 403, 297, 21577, 24147, 29889, 3967, 304, 1207, 2319, 313, 29896, 1756, 29897, 24147, 322, 366, 674, 1074, 393, 372, 432, 17204, 901, 1135, 393, 29889, 887, 508, 1708, 411, 28178, 322, 8303, 2285, 541, 278, 2228, 338, 2337, 727, 30098, 306, 7120, 14568, 310 ]
1,024
C4
-0.621454
-1.185532
-1.055194
-0.591583
fixes on the internet and none worked. Btw, I have logitech G402. I tried other mice and issue still exists. Yes, this problem is with the mouse and the touchpad. Would 19.1 still use the 4.15 kernel? I'm asking because I need the 4.17 for my touchpad to properly function and I'm not a fan of ukuu. i2c_hid i2c-SYNA3602 is partly working (no button only touch) in the 4.15 but it's on and off each 4.15 updates. how many MegaBytes for Upgrade from Tara (19) to Tessa (19.1) ? but iam using usb stick broadband and limit charges brother's. uhm…. are this after upgrading, can solving problems like a normal running WPS-Office ? but, i've problem in Linux Mint XFCE/MATE/Cinnamon (LM 19.0) must be install Libpng12-0, after install or re-install WPS-OFFICE not running. please help me guys, i'm so sorry, i'm passive written english. Can't you connect to a friend's WiFi, with unlimited dataplan? Very happy with 17.3 but look forward to trying out 19.1. Ideally I would like the install package to give the user choices as to which apps to install. Sometimes "less is more" is actually true, although this is a very un-American viewpoint.. Best Regards to the great team! Ya tengo ganas de descargarla. I want now to download it. Everything I read about laptop batteries says they will last much longer if they are charged to 80% instead of 100%. It would be nice if the power manager would allow the user to set 80% charge as a default, with an easy option to charge more fully when desired. I second that. That is an awesome idea! Beware that only Lenovo laptops support battery charge threshold. Other laptops cannot stop charging via software. some bad guys who some in Chaoyang people and gang member inject your upgrade link try to give me fake software like steam and skype. i am not sure you can protect your upgrade is safe. of course i hope it's safe because win10 is totally trash, the linux is my only hope to keep my private. good luck!!! Have you ever explored the possibility of having a secondary fullscreen mode for mint menu? I'm not taking about just resizing the existing menu, but something that would give a good overall view of all software installed and uses the available screen estate better. Someone correct me if I'm wrong, but Cinnamon was started specifically to get away from that kind of thing when Gnome ditched its old menu. If you want that kind of thing, why not use Ubuntu? Well It looks like I'm one of the few who is happy with an OS that I didn't pay for…. 18.3 fell over at least once a day for me so this has been a BIG improvement for me…. Thanks for the great OS!!!!! Thank you, Clem, and all the team. I did find difficulties upgrading via the earlier instructions and went back to 18.3, but when I downloaded the version 2 ISOs for both MATE and Cinnamon and did a fresh install, both versions were fine for me. I use MATE on a Samsung 110 netbook and Cinnamon on a little Mintbox-like Fitlet. Things may be a little bit slower (but I can't really compare now) but I do love the newer colours and feel of things in Mint 19, so I am very happy that I upgraded. Thank you for persevering through all the difficulties. Like kyphi, I appreciate you guys so much for dealing with the unending complexities of adjusting to so many different setups. I think your 19.1 upgrade through Update Manager will help simple folk like me. I couldnt have said it any better Nic. I've had no problems with Mint 19 (fresh install) on my laptop and have been loving the look, feel and just entire experience. Kudos to Clem and the Mint team for once again making a fantastic product!!! Any target date/release, or at least what are the pre-requisite to
[ 24626, 373, 278, 8986, 322, 5642, 3796, 29889, 350, 7516, 29892, 306, 505, 1480, 568, 305, 402, 29946, 29900, 29906, 29889, 306, 1898, 916, 286, 625, 322, 2228, 1603, 4864, 29889, 13, 8241, 29892, 445, 1108, 338, 411, 278, 9495, 322, 278, 6023, 8305, 29889, 13, 29956, 483, 29871, 29896, 29929, 29889, 29896, 1603, 671, 278, 29871, 29946, 29889, 29896, 29945, 8466, 29973, 13, 29902, 29915, 29885, 6721, 1363, 306, 817, 278, 29871, 29946, 29889, 29896, 29955, 363, 590, 6023, 8305, 304, 6284, 740, 322, 306, 29915, 29885, 451, 263, 13524, 310, 318, 2120, 29884, 29889, 13, 29875, 29906, 29883, 29918, 29882, 333, 474, 29906, 29883, 29899, 14816, 3521, 29941, 29953, 29900, 29906, 338, 22669, 1985, 313, 1217, 2826, 871, 6023, 29897, 297, 278, 29871, 29946, 29889, 29896, 29945, 541, 372, 29915, 29879, 373, 322, 1283, 1269, 29871, 29946, 29889, 29896, 29945, 11217, 29889, 13, 3525, 1784, 341, 2442, 11207, 363, 5020, 8228, 515, 323, 2518, 313, 29896, 29929, 29897, 304, 323, 9297, 313, 29896, 29929, 29889, 29896, 29897, 1577, 541, 474, 314, 773, 502, 29890, 12070, 7300, 4980, 322, 4046, 21090, 8099, 29915, 29879, 29889, 318, 7184, 30098, 29889, 13, 598, 445, 1156, 20337, 292, 29892, 508, 17069, 4828, 763, 263, 4226, 2734, 399, 7024, 29899, 27247, 1577, 541, 29892, 474, 29915, 345, 1108, 297, 8074, 341, 524, 1060, 29943, 4741, 29914, 29924, 3040, 29914, 29907, 2559, 314, 265, 313, 26369, 29871, 29896, 29929, 29889, 29900, 29897, 1818, 367, 2601, 8153, 2732, 29896, 29906, 29899, 29900, 29892, 1156, 2601, 470, 337, 29899, 6252, 399, 7024, 29899, 27681, 12107, 451, 2734, 29889, 13, 552, 559, 1371, 592, 18239, 29892, 474, 29915, 29885, 577, 7423, 29892, 474, 29915, 29885, 1209, 573, 3971, 3033, 1674, 29889, 13, 6028, 29915, 29873, 366, 4511, 304, 263, 5121, 29915, 29879, 14570, 18800, 29892, 411, 443, 29044, 1418, 481, 6468, 29973, 13, 29963, 708, 9796, 411, 29871, 29896, 29955, 29889, 29941, 541, 1106, 6375, 304, 1811, 714, 29871, 29896, 29929, 29889, 29896, 29889, 13, 29902, 311, 635, 306, 723, 763, 278, 2601, 3577, 304, 2367, 278, 1404, 19995, 408, 304, 607, 11446, 304, 2601, 29889, 18512, 376, 2222, 338, 901, 29908, 338, 2869, 1565, 29892, 5998, 445, 338, 263, 1407, 443, 29899, 14689, 1776, 3149, 636, 13, 25353, 2169, 3163, 304, 278, 2107, 3815, 29991, 13, 29979, 29874, 260, 22260, 9581, 294, 316, 5153, 1191, 279, 433, 29889, 306, 864, 1286, 304, 5142, 372, 29889, 13, 26526, 1918, 306, 1303, 1048, 19022, 10193, 583, 4083, 896, 674, 1833, 1568, 5520, 565, 896, 526, 20139, 304, 29871, 29947, 29900, 29995, 2012, 310, 29871, 29896, 29900, 29900, 15543, 739, 723, 367, 7575, 565, 278, 3081, 8455, 723, 2758, 278, 1404, 304, 731, 29871, 29947, 29900, 29995, 8323, 408, 263, 2322, 29892, 411, 385, 4780, 2984, 304, 8323, 901, 8072, 746, 7429, 29889, 13, 29902, 1473, 393, 29889, 2193, 338, 385, 29663, 2969, 29991, 13, 29933, 809, 598, 393, 871, 16206, 6962, 425, 415, 3554, 2304, 16988, 8323, 16897, 29889, 5901, 425, 415, 3554, 2609, 5040, 9151, 292, 3025, 7047, 29889, 13, 5372, 4319, 18239, 1058, 777, 297, 678, 6241, 29891, 574, 2305, 322, 20676, 4509, 11658, 596, 14955, 1544, 1018, 304, 2367, 592, 25713, 7047, 763, 21837, 322, 2071, 668, 29889, 474, 626, 451, 1854, 366, 508, 12566, 596, 14955, 338, 9109, 29889, 310, 3236, 474, 4966, 372, 29915, 29879, 9109, 1363, 5401, 29896, 29900, 338, 14909, 534, 1161, 29892, 278, 10542, 338, 590, 871, 4966, 304, 3013, 590, 2024, 29889, 1781, 9885, 21004, 13, 25559, 366, 3926, 3902, 4395, 278, 13331, 310, 2534, 263, 16723, 2989, 10525, 4464, 363, 20559, 6143, 29973, 306, 29915, 29885, 451, 5622, 1048, 925, 620, 5281, 278, 5923, 6143, 29892, 541, 1554, 393, 723, 2367, 263, 1781, 12463, 1776, 310, 599, 7047, 5130, 322, 3913, 278, 3625, 4315, 19989, 2253, 29889, 13, 9526, 650, 1959, 592, 565, 306, 29915, 29885, 2743, 29892, 541, 315, 2559, 314, 265, 471, 4687, 10816, 304, 679, 3448, 515, 393, 2924, 310, 2655, 746, 402, 25155, 270, 2335, 287, 967, 2030, 6143, 29889, 960, 366, 864, 393, 2924, 310, 2655, 29892, 2020, 451, 671, 8294, 29973, 13, 11284, 739, 3430, 763, 306, 29915, 29885, 697, 310, 278, 2846, 1058, 338, 9796, 411, 385, 6570, 393, 306, 3282, 29915, 29873, 5146, 363, 30098, 29889, 13, 29896, 29947, 29889, 29941, 8379, 975, 472, 3203, 2748, 263, 2462, 363, 592, 577, 445, 756, 1063, 263, 350, 6259, 20414, 363, 592, 30098, 29889, 13, 16894, 363, 278, 2107, 6570, 6824, 21004, 13, 25271, 366, 29892, 315, 2409, 29892, 322, 599, 278, 3815, 29889, 306, 1258, 1284, 23553, 20337, 292, 3025, 278, 8859, 11994, 322, 3512, 1250, 304, 29871, 29896, 29947, 29889, 29941, 29892, 541, 746, 306, 16532, 278, 1873, 29871, 29906, 17723, 29879, 363, 1716, 341, 3040, 322, 315, 2559, 314, 265, 322, 1258, 263, 10849, 2601, 29892, 1716, 6910, 892, 2691, 363, 592, 29889, 306, 671, 341, 3040, 373, 263, 317, 28935, 29871, 29896, 29896, 29900, 7787, 2909, 322, 315, 2559, 314, 265, 373, 263, 2217, 341, 524, 1884, 29899, 4561, 383, 277, 1026, 29889, 28706, 1122, 367, 263, 2217, 2586, 20312, 313, 4187, 306, 508, 29915, 29873, 2289, 7252, 1286, 29897, 541, 306, 437, 5360, 278, 20687, 28061, 322, 4459, 310, 2712, 297, 341, 524, 29871, 29896, 29929, 29892, 577, 306, 626, 1407, 9796, 393, 306, 20337, 287, 29889, 3374, 366, 363, 639, 344, 369, 292, 1549, 599, 278, 23553, 29889, 8502, 413, 29891, 2876, 29892, 306, 11188, 366, 18239, 577, 1568, 363, 16743, 411, 278, 443, 2548, 4280, 1907, 310, 10365, 292, 304, 577, 1784, 1422, 731, 14340, 29889, 306, 1348, 596, 29871, 29896, 29929, 29889, 29896, 14955, 1549, 10318, 15629, 674, 1371, 2560, 19589, 763, 592, 29889, 13, 29902, 1033, 593, 505, 1497, 372, 738, 2253, 13656, 29889, 306, 29915, 345, 750, 694, 4828, 411, 341, 524, 29871, 29896, 29929, 313, 29888, 3781, 2601, 29897, 373, 590, 19022, 322, 505, 1063, 12355, 292, 278, 1106, 29892, 4459, 322, 925, 4152, 7271, 29889, 476, 566, 359, 304, 315, 2409, 322, 278, 341, 524, 3815, 363, 2748, 1449, 3907, 263, 13568, 6288, 3234, 21004, 13, 10773, 3646, 2635, 29914, 14096, 29892, 470, 472, 3203, 825, 526, 278, 758, 29899, 276, 7680, 568, 304 ]
1,024
C4
-1.37408
-1.336075
-1.293693
-1.201886
start supporting it? Will you just use/port mutter. What will happen with all the customisation you bringed until now to muffin? Since Mint is geared toward stability, i would expect Wayland support to come as late as possible. I upgraded yesterday from linux mint cinnamon 18.3 to 19 but for some reason the desktop effects don't seem to be working. How could I fix this? Effects are enabled, but it makes no difference what effects I choose from the settings. Nevermind. I was accidentally starting cinnamon in software rendering mode. I use many Mint 18.3 PC's for daily use & only one Mint 19 PC for initial OS testing. I prefer Mint 18.3 & find Mint 19 a disappointment. NO root mode Krusader !!! Firefox & Bleachbit. With fixes, Mint 19 may improve. But for now, I recommend Mint 18.3. You can still switch back to the old icons in Mint 19. System Settings > Themes > Icons > select Mint-X instead of Mint-Y. Great job, as usual! Can't wait! This is good news, I will try to update to Linux mint 19.1. usually use lubuntu but had issues with it on one machine in particular. sort of got talked into trying mint 19.0 and i must say, very sweet os! everything works absolutely perfectly. couldn't ask for anything better. for the people who had problems with 19.0 Linux Mint. Did you try download version 2 of 19.0? I did and my computer seems to run fine. to the end of the ovpn file and used an applet called vpn look-out for a kill switch. Very happy with ver.19 Cinn. 64 Bit. First time fresh install and no problems at all. Merged very well in my small windows based LAN. Printers work OK. Congrats for the excellent work and a BIG THANKS! I have found that it is a bit easier & better, result wise, when you make a fresh and new install rather than trying to "upgrade". I flip flop a couple of good hard drives when doing it. Download and and fill in the new Mint version. When all is set, hook up the second hard drive with your older version, with all your documents, photo's, saved items, etc., and move 'em or just leave them on the drive and add to them as time goes by. When the next version comes out, give it a little time to find and work our the bugs and than do the same sequence thing with the hard drives. Never lose anything, and always have the latest in operating systems at the same time. Of course, if your running a Laptop or some such that will be quite different. I am talking about Desktops. I have tried only the 19 live version so far, didn't try to install yet. Since I use it for work I won't risk to crash the machine (although I have some free space waiting). Keep up your amazing work ! eu tenho uma questão sobre actualização dos Kernels, que me está a confundir. Eu tenho um PC co um CPU AMD: Phenom(tm) II X6 1100T, quando vou instalar o Kernel linux 4.15.0.34.36 ele insiste em instalar também os pacotes: intel-microcode e o iucode-tool, para além do pacote linux-image-generic. A minha motherboard é uma ASRock 970M Pro3 e a placa Grafica uma Nvidia GeForce GT 1030. A minha questão é se eu sou obrigado a instalar os pacotes da intel que o mintUpdate que instalar juntamente com o Kernel e se não vai criar conflitos com a minha arquitétura do PC baseada em AMD ???_!!!_??? … eu tenho o Linux Mint 19 Tara 64bits e o Linux Kernel 4.15.0.34 sem os pacotes intel que desinstalei manualmente, será um BUG no mintUpdate querer foçar a instalação dos pacotes intel !!!_???_!!! Agora tentarei responder a sua pergunta. No Mint 19 a instalação dos micro
[ 1369, 20382, 372, 29973, 2811, 366, 925, 671, 29914, 637, 5478, 357, 29889, 1724, 674, 3799, 411, 599, 278, 2888, 4371, 366, 6963, 287, 2745, 1286, 304, 286, 3096, 262, 29973, 13, 23036, 341, 524, 338, 1737, 1965, 11183, 25806, 29892, 474, 723, 2149, 5307, 1049, 2304, 304, 2041, 408, 5683, 408, 1950, 29889, 13, 29902, 20337, 287, 22600, 515, 10542, 20559, 274, 2559, 314, 265, 29871, 29896, 29947, 29889, 29941, 304, 29871, 29896, 29929, 541, 363, 777, 2769, 278, 14616, 9545, 1016, 29915, 29873, 2833, 304, 367, 1985, 29889, 1128, 1033, 306, 2329, 445, 29973, 26475, 29879, 526, 9615, 29892, 541, 372, 3732, 694, 4328, 825, 9545, 306, 6755, 515, 278, 6055, 29889, 13, 29940, 1310, 24021, 29889, 306, 471, 11423, 635, 6257, 274, 2559, 314, 265, 297, 7047, 15061, 4464, 29889, 13, 29902, 671, 1784, 341, 524, 29871, 29896, 29947, 29889, 29941, 9609, 29915, 29879, 363, 14218, 671, 669, 871, 697, 341, 524, 29871, 29896, 29929, 9609, 363, 2847, 6570, 6724, 29889, 13, 29902, 5821, 341, 524, 29871, 29896, 29947, 29889, 29941, 669, 1284, 341, 524, 29871, 29896, 29929, 263, 23451, 358, 29889, 11698, 3876, 4464, 7365, 375, 1664, 1738, 6824, 13, 18654, 8944, 669, 24718, 496, 2966, 29889, 2973, 24626, 29892, 341, 524, 29871, 29896, 29929, 1122, 11157, 29889, 13, 6246, 363, 1286, 29892, 306, 6907, 341, 524, 29871, 29896, 29947, 29889, 29941, 29889, 13, 3492, 508, 1603, 4607, 1250, 304, 278, 2030, 27673, 297, 341, 524, 29871, 29896, 29929, 29889, 13, 3924, 19215, 1405, 498, 13826, 1405, 306, 3200, 1405, 1831, 341, 524, 29899, 29990, 2012, 310, 341, 524, 29899, 29979, 29889, 13, 25120, 271, 4982, 29892, 408, 9670, 29991, 1815, 29915, 29873, 4480, 29991, 13, 4013, 338, 1781, 9763, 29892, 306, 674, 1018, 304, 2767, 304, 8074, 20559, 29871, 29896, 29929, 29889, 29896, 29889, 13, 375, 1474, 671, 301, 8767, 541, 750, 5626, 411, 372, 373, 697, 4933, 297, 3153, 29889, 2656, 310, 2355, 24867, 964, 1811, 20559, 29871, 29896, 29929, 29889, 29900, 322, 474, 1818, 1827, 29892, 1407, 14225, 2897, 29991, 4129, 1736, 13312, 7970, 29889, 8496, 29915, 29873, 2244, 363, 3099, 2253, 29889, 13, 1454, 278, 2305, 1058, 750, 4828, 411, 29871, 29896, 29929, 29889, 29900, 8074, 341, 524, 29889, 7440, 366, 1018, 5142, 1873, 29871, 29906, 310, 29871, 29896, 29929, 29889, 29900, 29973, 13, 29902, 1258, 322, 590, 6601, 2444, 304, 1065, 2691, 29889, 13, 517, 278, 1095, 310, 278, 15397, 21257, 934, 322, 1304, 385, 623, 1026, 2000, 325, 21257, 1106, 29899, 449, 363, 263, 12088, 4607, 29889, 13, 29963, 708, 9796, 411, 1147, 29889, 29896, 29929, 315, 2559, 29889, 29871, 29953, 29946, 18531, 29889, 3824, 931, 10849, 2601, 322, 694, 4828, 472, 599, 29889, 4702, 3192, 1407, 1532, 297, 590, 2319, 5417, 2729, 365, 2190, 29889, 1588, 1639, 29879, 664, 9280, 29889, 13, 29907, 549, 29878, 1446, 363, 278, 15129, 664, 322, 263, 350, 6259, 3446, 2190, 17557, 29991, 13, 29902, 505, 1476, 393, 372, 338, 263, 2586, 6775, 669, 2253, 29892, 1121, 19396, 29892, 746, 366, 1207, 263, 10849, 322, 716, 2601, 3265, 1135, 1811, 304, 376, 786, 8228, 1642, 306, 285, 3466, 285, 4757, 263, 7303, 310, 1781, 2898, 25100, 746, 2599, 372, 29889, 25553, 322, 322, 5445, 297, 278, 716, 341, 524, 1873, 29889, 1932, 599, 338, 731, 29892, 12422, 701, 278, 1473, 2898, 7899, 411, 596, 9642, 1873, 29892, 411, 599, 596, 10701, 29892, 15373, 29915, 29879, 29892, 7160, 4452, 29892, 2992, 1696, 322, 4337, 525, 331, 470, 925, 5967, 963, 373, 278, 7899, 322, 788, 304, 963, 408, 931, 5771, 491, 29889, 1932, 278, 2446, 1873, 5304, 714, 29892, 2367, 372, 263, 2217, 931, 304, 1284, 322, 664, 1749, 278, 24557, 322, 1135, 437, 278, 1021, 5665, 2655, 411, 278, 2898, 25100, 29889, 12391, 14074, 3099, 29892, 322, 2337, 505, 278, 9281, 297, 13598, 6757, 472, 278, 1021, 931, 29889, 4587, 3236, 29892, 565, 596, 2734, 263, 997, 16002, 470, 777, 1316, 393, 674, 367, 3755, 1422, 29889, 306, 626, 9963, 1048, 2726, 1193, 3554, 29889, 13, 29902, 505, 1898, 871, 278, 29871, 29896, 29929, 5735, 1873, 577, 2215, 29892, 3282, 29915, 29873, 1018, 304, 2601, 3447, 29889, 13, 23036, 306, 671, 372, 363, 664, 306, 2113, 29915, 29873, 12045, 304, 8095, 278, 4933, 313, 26492, 306, 505, 777, 3889, 2913, 10534, 467, 13, 9598, 1022, 701, 596, 21863, 292, 664, 1738, 13, 12932, 3006, 1251, 3672, 21126, 1368, 4166, 3935, 20945, 3248, 476, 824, 1379, 29892, 712, 592, 7919, 263, 1970, 870, 381, 29889, 16430, 3006, 1251, 1922, 9609, 1302, 1922, 10808, 319, 5773, 29901, 1963, 264, 290, 29898, 18276, 29897, 1944, 1060, 29953, 29871, 29896, 29896, 29900, 29900, 29911, 29892, 9836, 28078, 20226, 279, 288, 476, 5851, 10542, 29871, 29946, 29889, 29896, 29945, 29889, 29900, 29889, 29941, 29946, 29889, 29941, 29953, 4552, 1663, 2488, 953, 20226, 279, 10409, 2897, 22906, 4769, 29901, 13856, 29899, 29885, 2357, 401, 321, 288, 474, 29884, 401, 29899, 10154, 29892, 1702, 394, 2249, 437, 22906, 866, 10542, 29899, 3027, 29899, 19206, 29889, 13, 29909, 1375, 2350, 5637, 3377, 904, 3672, 3339, 29934, 1698, 29871, 29929, 29955, 29900, 29924, 1019, 29941, 321, 263, 2174, 1113, 13721, 983, 3672, 405, 28584, 1879, 2831, 346, 21342, 29871, 29896, 29900, 29941, 29900, 29889, 13, 29909, 1375, 2350, 21126, 1368, 904, 409, 11878, 3669, 704, 8966, 912, 263, 20226, 279, 2897, 22906, 4769, 1146, 13856, 712, 288, 20559, 6422, 712, 20226, 279, 25296, 2503, 419, 288, 476, 5851, 321, 409, 8145, 325, 1794, 14783, 279, 18669, 12870, 419, 263, 1375, 2350, 19325, 277, 1893, 2002, 437, 9609, 2967, 1114, 953, 319, 5773, 1577, 8773, 29918, 21004, 29918, 28772, 13, 30098, 11878, 3006, 1251, 288, 8074, 341, 524, 29871, 29896, 29929, 323, 2518, 29871, 29953, 29946, 14836, 321, 288, 8074, 476, 5851, 29871, 29946, 29889, 29896, 29945, 29889, 29900, 29889, 29941, 29946, 3031, 2897, 22906, 4769, 13856, 712, 553, 2611, 744, 29875, 12219, 2689, 29892, 724, 29976, 1922, 350, 23338, 694, 20559, 6422, 439, 11377, 1701, 30019, 279, 263, 832, 2883, 2340, 3248, 22906, 4769, 13856, 1738, 6824, 29918, 28772, 29918, 21004, 13, 14769, 2207, 12033, 598, 29875, 620, 27582, 263, 4171, 639, 29887, 16138, 29889, 1939, 341, 524, 29871, 29896, 29929, 263, 832, 2883, 2340, 3248, 9200 ]
1,024
C4
-1.137695
-0.996055
-1.490947
-0.917921
códigos para Intel e AMD é obrigatória, não importa a CPU que o seu computador tenha. Não tenha medo de fazer a atualização porque não vai criar nenhum problema na sua instalação de Mint. Hello Clem and the rest of the Mint team! I'd like to know if it's possible to make all the x-apps honor app-specific user settings? For instance, I prefer xreader to always open maximised (Fitts law, you know) and though it does open the same document maximised, when I open the different one it goes back to defaults (ie. opens in the center of the screen). I'd appreciate this feature also. Well hope you can re-establish the old so well known and loved 'polish' like in MInt 18.3. As in Mint 19, lots of apps now lost its uniform look. So no reason for me to upgrade any further just yet. Linux Mint should try make an equaly 'polished' Arch Linux based distribution. As I am now using Arch to learn more about Linux, the more I like it. Ubuntu well they seem to slowly mutate into 'Winux'? Tessa is the mame the gril capitam in the anime Full Metal Panic. Oh yeah! I did a fresh install of v19 Cinnamon last month, and found that it boots faster than v17.3 did. I have had no issues so far. OS is smooth and fast, videos play without trouble in both the new media player and VLC (and YouTube), and my mouse performs normally. I don't have a printer, so can't comment on that. I am very pleased with v19, and I'm looking forward to 19.1! Thank you Clem and devs for your hard work. Mint has been an amazing OS since I started with v14, and my household truly appreciates your efforts and work. We are an all-Mint house! The mintUpdate in the instalation Kernel Linux 4.15.0-34.36 insists in installing the package of Intel: intel-microcode and iucode-tools. Is it normal the instalation of intel packages on a PC with AMD architecture? Or is it a bug? It's not a bug. Those packages were pre-installed, so you're simply getting updates. However, having an AMD CPU they're useless for you. It doesn't hurt updating them, but you might as well uninstall both. Will Tessa include cinnamon 4? Looking forward to it when i decide to jump from 18.3 to 19.1. And thanks again for all your works appreciate it alot!. Hi, i posted but may be my post has been "lost" ? I said that i installed Mint 19 two days ago but i have issues with Netbeans, either with version 8.1 or 8.2. Anyone has the same problem and has any clue about why ? thanks. When do we get a mouse wheel scrolling speed settings? I'm new to linux but afaik there's no settings for this and I'm tired of using page up down and arrow keys for scrolling. The default speed is so slow, so so slow. Please do something about it. i'll probably stay with 18.3 KDE until i find a much better replacement for it. i tried 19 on my other laptop and it's not as great as the 18.3 version as of now. will be waiting for Tessa if it's more reliable. I do so, too. Until there's no file-manager as good as Dolphin with all of his functions and the great Onboard-Onscreen-Keyboard isn't working in all cases, I will stay with LM 18.3-KDE. Or change to another distribution. Der Grubloader wird bei Silvia 18.3 nach mehreren istallationen nicht in die efi als Ubuntuordner reininstalliert. Obwohl Partition Efi sda1 bei der installation als Grubloader ausgewehlt wurde. 64 bit system amd GPT Der PC startet nicht mehr. Bessert euren Efi-Fehler zuerst in der Silvia aus. Saemtliche Reparaturversuche scheitern mit sudo apt-install grub-efi-amd64 auch wenn man dev/sda1 dahinter angibt. Keiner findet im Linuxforum eine ordent
[ 29883, 4431, 19336, 1702, 18555, 321, 319, 5773, 904, 704, 8966, 271, 14389, 29892, 8145, 1053, 29874, 263, 10808, 712, 288, 5078, 2912, 3136, 3006, 2350, 29889, 405, 1368, 3006, 2350, 1612, 29877, 316, 16928, 261, 263, 472, 950, 20945, 17485, 8145, 325, 1794, 14783, 279, 302, 264, 16063, 21655, 1055, 4171, 832, 2883, 2340, 316, 341, 524, 29889, 13, 10994, 315, 2409, 322, 278, 1791, 310, 278, 341, 524, 3815, 29991, 306, 29915, 29881, 763, 304, 1073, 565, 372, 29915, 29879, 1950, 304, 1207, 599, 278, 921, 29899, 13371, 10657, 623, 29899, 14940, 1404, 6055, 29973, 1152, 2777, 29892, 306, 5821, 921, 16950, 304, 2337, 1722, 5256, 3368, 313, 29943, 986, 29879, 4307, 29892, 366, 1073, 29897, 322, 2466, 372, 947, 1722, 278, 1021, 1842, 5256, 3368, 29892, 746, 306, 1722, 278, 1422, 697, 372, 5771, 1250, 304, 21274, 313, 347, 29889, 13246, 297, 278, 4818, 310, 278, 4315, 467, 13, 29902, 29915, 29881, 11188, 445, 4682, 884, 29889, 13, 11284, 4966, 366, 508, 337, 29899, 342, 370, 1674, 278, 2030, 577, 1532, 2998, 322, 18012, 525, 3733, 728, 29915, 763, 297, 341, 2928, 29871, 29896, 29947, 29889, 29941, 29889, 13, 2887, 297, 341, 524, 29871, 29896, 29929, 29892, 14568, 310, 11446, 1286, 5714, 967, 9090, 1106, 29889, 13, 6295, 694, 2769, 363, 592, 304, 14955, 738, 4340, 925, 3447, 29889, 13, 24085, 341, 524, 881, 1018, 1207, 385, 5186, 29891, 525, 3733, 3276, 29915, 2595, 8074, 2729, 4978, 29889, 13, 2887, 306, 626, 1286, 773, 2595, 304, 5110, 901, 1048, 8074, 29892, 278, 901, 306, 763, 372, 29889, 13, 29965, 6037, 1532, 896, 2833, 304, 14205, 5478, 403, 964, 525, 17734, 1314, 29915, 29973, 13, 29911, 9297, 338, 278, 286, 420, 278, 867, 309, 11934, 314, 297, 278, 385, 603, 14846, 24992, 6518, 293, 29889, 6439, 21915, 29991, 13, 29902, 1258, 263, 10849, 2601, 310, 325, 29896, 29929, 315, 2559, 314, 265, 1833, 4098, 29892, 322, 1476, 393, 372, 1045, 1862, 8473, 1135, 325, 29896, 29955, 29889, 29941, 1258, 29889, 306, 505, 750, 694, 5626, 577, 2215, 29889, 6570, 338, 10597, 322, 5172, 29892, 19707, 1708, 1728, 7458, 297, 1716, 278, 716, 5745, 4847, 322, 478, 12182, 313, 392, 14711, 511, 322, 590, 9495, 23233, 12891, 29889, 306, 1016, 29915, 29873, 505, 263, 23028, 29892, 577, 508, 29915, 29873, 3440, 373, 393, 29889, 306, 626, 1407, 22301, 411, 325, 29896, 29929, 29892, 322, 306, 29915, 29885, 3063, 6375, 304, 29871, 29896, 29929, 29889, 29896, 29991, 13, 25271, 366, 315, 2409, 322, 2906, 29879, 363, 596, 2898, 664, 29889, 341, 524, 756, 1063, 385, 21863, 292, 6570, 1951, 306, 4687, 411, 325, 29896, 29946, 29892, 322, 590, 22329, 19781, 5108, 1078, 596, 14231, 322, 664, 29889, 1334, 526, 385, 599, 29899, 29924, 524, 3699, 29991, 13, 1576, 20559, 6422, 297, 278, 20226, 362, 476, 5851, 8074, 29871, 29946, 29889, 29896, 29945, 29889, 29900, 29899, 29941, 29946, 29889, 29941, 29953, 1663, 2879, 297, 15476, 278, 3577, 310, 18555, 29901, 13856, 29899, 29885, 2357, 401, 322, 474, 29884, 401, 29899, 8504, 29889, 1317, 372, 4226, 278, 20226, 362, 310, 13856, 9741, 373, 263, 9609, 411, 319, 5773, 11258, 29973, 1394, 338, 372, 263, 6494, 29973, 13, 3112, 29915, 29879, 451, 263, 6494, 29889, 16025, 9741, 892, 758, 29899, 25537, 29892, 577, 366, 29915, 276, 3763, 2805, 11217, 29889, 2398, 29892, 2534, 385, 319, 5773, 10808, 896, 29915, 276, 19315, 363, 366, 29889, 739, 1838, 29915, 29873, 21682, 13271, 963, 29892, 541, 366, 1795, 408, 1532, 27608, 1716, 29889, 13, 12984, 323, 9297, 3160, 274, 2559, 314, 265, 29871, 29946, 29973, 21223, 6375, 304, 372, 746, 474, 11097, 304, 12500, 515, 29871, 29896, 29947, 29889, 29941, 304, 29871, 29896, 29929, 29889, 29896, 29889, 13, 2855, 3969, 1449, 363, 599, 596, 1736, 11188, 372, 394, 327, 21520, 13, 18567, 29892, 474, 8059, 541, 1122, 367, 590, 1400, 756, 1063, 376, 18767, 29908, 1577, 306, 1497, 393, 474, 5130, 341, 524, 29871, 29896, 29929, 1023, 3841, 8020, 541, 474, 505, 5626, 411, 12670, 11700, 29892, 2845, 411, 1873, 29871, 29947, 29889, 29896, 470, 29871, 29947, 29889, 29906, 29889, 26407, 756, 278, 1021, 1108, 322, 756, 738, 23960, 1048, 2020, 1577, 3969, 29889, 13, 10401, 437, 591, 679, 263, 9495, 18875, 23064, 6210, 6055, 29973, 306, 29915, 29885, 716, 304, 10542, 541, 2511, 29874, 638, 727, 29915, 29879, 694, 6055, 363, 445, 322, 306, 29915, 29885, 23407, 310, 773, 1813, 701, 1623, 322, 16578, 6611, 363, 23064, 29889, 450, 2322, 6210, 338, 577, 5232, 29892, 577, 577, 5232, 29889, 3529, 437, 1554, 1048, 372, 29889, 13, 29875, 29915, 645, 3117, 7952, 411, 29871, 29896, 29947, 29889, 29941, 476, 2287, 2745, 474, 1284, 263, 1568, 2253, 16920, 363, 372, 29889, 474, 1898, 29871, 29896, 29929, 373, 590, 916, 19022, 322, 372, 29915, 29879, 451, 408, 2107, 408, 278, 29871, 29896, 29947, 29889, 29941, 1873, 408, 310, 1286, 29889, 674, 367, 10534, 363, 323, 9297, 565, 372, 29915, 29879, 901, 23279, 29889, 13, 29902, 437, 577, 29892, 2086, 29889, 28609, 727, 29915, 29879, 694, 934, 29899, 12847, 408, 1781, 408, 11201, 561, 262, 411, 599, 310, 670, 3168, 322, 278, 2107, 1551, 3377, 29899, 29949, 1983, 5576, 29899, 2558, 3377, 3508, 29915, 29873, 1985, 297, 599, 4251, 29892, 306, 674, 7952, 411, 365, 29924, 29871, 29896, 29947, 29889, 29941, 29899, 29968, 2287, 29889, 1394, 1735, 304, 1790, 4978, 29889, 13, 15383, 1632, 431, 12657, 4296, 2862, 5664, 6071, 29871, 29896, 29947, 29889, 29941, 2644, 5243, 4578, 1752, 497, 15768, 3072, 297, 762, 321, 7241, 1620, 8294, 536, 1089, 15561, 2611, 284, 492, 814, 29889, 13, 6039, 29300, 3455, 654, 382, 7241, 269, 1388, 29896, 2862, 589, 11161, 1620, 1632, 431, 12657, 17691, 705, 29882, 1896, 1931, 29889, 13, 29953, 29946, 2586, 1788, 626, 29881, 402, 7982, 2452, 9609, 1369, 300, 3072, 5243, 29889, 350, 404, 814, 321, 10732, 382, 7241, 29899, 8263, 29882, 1358, 1729, 15714, 297, 589, 5664, 6071, 1770, 29889, 13, 17618, 331, 29873, 4545, 830, 862, 1337, 874, 28754, 21014, 277, 824, 1380, 9196, 10882, 29899, 6252, 867, 431, 29899, 1389, 29875, 29899, 22490, 29953, 29946, 2907, 13588, 767, 2906, 29914, 29879, 1388, 29896, 20694, 1639, 2614, 9268, 29889, 4813, 4983, 28741, 527, 8074, 23343, 2128, 4356, 296 ]
1,024
C4
-1.12411
-1.07522
-1.361835
-0.923613
liche Loesung. Es ist nicht Lustig wegen dem Fehler 10xneu ueber Stick installieren muss und die Partitionen wieder neu erstellen darf, das dies dann ab und zu klappt. Hab im Monat nur 200 GB zur Verfuegung Und ich hab nur Linux installiert und kein Windows 10 nebenbei drauf Bitte bessert das auch fuer die neue Version aus. but do you think it will be possible in any case to have the last version of Gimp? Linux Mint 19 XFCE working great for me. After the initial hangups of day-1 install I used another distro until Linux Mint got fixed. Since the fix, I have been a happy camper and everything is right as rain. Thanks Clem and team! I am reading the above complaints of the new update and backup system. I don't use the backup. I am too used to my old ways and only do fresh installs. Keeping my fingers crossed. Mint 19.0 working fine on my fairly modern desktop. However, with my older lappy, a centrino duo, would not work even with a fresh install. Had to go back to 18.1. I hope you'll fix that darn sound app/applet/whatever. When mint starts there are only 2 option to choose Analog Stereo Input/Analog Mono Input. And these are for playback. After switching betwen digital and analog back i finally have all modes for sound card. the stupid app has never been able to unmute the center/lfe channel since as long as i can remember. I always after installing mint have to go in alsamixer and unmute the channel. I even installed pulseaudio 12.2 with same results. LINUX MINT 19 a mi me funciona muy bien, tuve algunos problemas con el wifi pero ya quedaron solucionados. Espero con mucho agrado esta nueva actualización se que sera para mejorar aun mas. I've upgraded to Mint 19 and like it. Really happy for 19.1! 😀 A request: can you please update mintsources? It always uses Mint-X icons and the old button style tabs, even when upgrading everything and using Mint-Y icons. That's great news. To be honest I dont even know what could improve. Everything works perfectly on Mint 19. Yep, I agree. Also surprised how much smoother it runs on upgraded hardware. The install was slightly glitchy but nothing that coldn't be overcome by trying. I don't know if this has been asked before, but. Will this fox the Civilization 6 bug? Seems to be a problem between Nemo's/Nautilus' gvfs implementation of delete operations and current samba versions. I think this should be fixed asap, as there are a LOT users and companies affected that don't even know that their directory structure is degrading over time. Nothing lost but I think you can imagine what serious confusions happen if users stumble upon outdated – actually formerly deleted – material! In our case this is also a data protection issue. But I don't see any real help for production systems. A quick fix in Nemo is really needed here! This isn't a bug in Nemo (or in GNOME) but in Samba itself. Apparently it's been fixed for 4.8/4.9: https://bugzilla.samba.org/show_bug.cgi?id=13204. Can you create a bug report against Ubuntu Bionic and ask them to cherry pick the fix for 4.7? Must have overlooked this posting. This is exactly my problem as I wrote a few posts below. Just a mini suggestion : I noticed that the archive manager could not open .7z files ( "..an error occured while …" ) , then I tried the same files using another Debian-based distro, the same Archive Manager (File Roller) even with a lower version (3.22) , and everything was ok.. So I opened Synaptic and installed p7zip-full (and p7zip-rar by the way), then it became all-right. So, (since Mint is known best for being the most out-of-the-box distro) could p7zip-full and p7zip-rar be already installed by default? Additionally; (i
[ 4545, 4309, 267, 686, 29889, 3423, 1752, 3072, 365, 504, 335, 19580, 1261, 5169, 29882, 1358, 29871, 29896, 29900, 29916, 484, 29884, 318, 29872, 495, 624, 860, 20226, 492, 4578, 23885, 563, 762, 3455, 654, 264, 7518, 17167, 9284, 4919, 5424, 29888, 29892, 1697, 2977, 7885, 633, 563, 1729, 413, 433, 407, 29873, 29889, 15221, 527, 2598, 271, 5595, 29871, 29906, 29900, 29900, 19289, 3046, 1798, 21154, 28345, 14211, 7975, 2299, 5595, 8074, 20226, 492, 814, 563, 23943, 3852, 29871, 29896, 29900, 20104, 27242, 7482, 1137, 19064, 289, 404, 814, 1697, 2907, 8470, 762, 16828, 10079, 1770, 29889, 13, 4187, 437, 366, 1348, 372, 674, 367, 1950, 297, 738, 1206, 304, 505, 278, 1833, 1873, 310, 402, 6574, 29973, 13, 24085, 341, 524, 29871, 29896, 29929, 1060, 29943, 4741, 1985, 2107, 363, 592, 29889, 13, 13555, 278, 2847, 298, 2375, 567, 310, 2462, 29899, 29896, 2601, 306, 1304, 1790, 1320, 307, 2745, 8074, 341, 524, 2355, 4343, 29889, 4001, 278, 2329, 29892, 306, 505, 1063, 263, 9796, 3949, 546, 322, 4129, 338, 1492, 408, 17251, 29889, 1834, 315, 2409, 322, 3815, 29991, 13, 29902, 626, 5183, 278, 2038, 15313, 9466, 310, 278, 716, 2767, 322, 16199, 1788, 29889, 306, 1016, 29915, 29873, 671, 278, 16199, 29889, 306, 626, 2086, 1304, 304, 590, 2030, 5837, 322, 871, 437, 10849, 2601, 29879, 29889, 19152, 292, 590, 23915, 21692, 29889, 13, 29924, 524, 29871, 29896, 29929, 29889, 29900, 1985, 2691, 373, 590, 12558, 5400, 14616, 29889, 2398, 29892, 411, 590, 9642, 425, 23717, 29892, 263, 1644, 29878, 1789, 868, 29877, 29892, 723, 451, 664, 1584, 411, 263, 10849, 2601, 29889, 14302, 304, 748, 1250, 304, 29871, 29896, 29947, 29889, 29896, 29889, 13, 29902, 4966, 366, 29915, 645, 2329, 393, 270, 2753, 6047, 623, 29914, 932, 1026, 29914, 1332, 5564, 29889, 13, 10401, 20559, 8665, 727, 526, 871, 29871, 29906, 2984, 304, 6755, 11597, 468, 317, 12358, 29877, 10567, 29914, 21067, 468, 2598, 29877, 10567, 29889, 1126, 1438, 526, 363, 1708, 1627, 29889, 13, 13555, 21293, 1010, 15556, 13436, 322, 15690, 1250, 474, 7146, 505, 599, 18893, 363, 6047, 5881, 29889, 13, 1552, 20239, 623, 756, 2360, 1063, 2221, 304, 443, 29885, 1082, 278, 4818, 29914, 29880, 1725, 8242, 1951, 408, 1472, 408, 474, 508, 6456, 29889, 13, 29902, 2337, 1156, 15476, 20559, 505, 304, 748, 297, 1620, 314, 861, 261, 322, 443, 29885, 1082, 278, 8242, 29889, 13, 29902, 1584, 5130, 9505, 344, 18494, 29871, 29896, 29906, 29889, 29906, 411, 1021, 2582, 29889, 13, 23714, 29965, 29990, 341, 10192, 29871, 29896, 29929, 263, 3737, 592, 3653, 16017, 12287, 6079, 29892, 5291, 345, 20071, 29726, 378, 560, 281, 6832, 7046, 9343, 18061, 5022, 899, 28762, 2255, 29889, 13, 14190, 546, 29877, 378, 27176, 9221, 912, 7444, 22288, 3935, 15677, 409, 712, 16933, 1702, 16918, 279, 263, 348, 5516, 29889, 13, 29902, 29915, 345, 20337, 287, 304, 341, 524, 29871, 29896, 29929, 322, 763, 372, 29889, 830, 635, 9796, 363, 29871, 29896, 29929, 29889, 29896, 29991, 29871, 243, 162, 155, 131, 319, 2009, 29901, 508, 366, 3113, 2767, 286, 9466, 2863, 29973, 739, 2337, 3913, 341, 524, 29899, 29990, 27673, 322, 278, 2030, 2826, 3114, 18859, 29892, 1584, 746, 20337, 292, 4129, 322, 773, 341, 524, 29899, 29979, 27673, 29889, 13, 7058, 29915, 29879, 2107, 9763, 29889, 1763, 367, 15993, 306, 4555, 1584, 1073, 825, 1033, 11157, 29889, 17296, 1736, 7970, 373, 341, 524, 29871, 29896, 29929, 29889, 13, 29979, 1022, 29892, 306, 8661, 29889, 3115, 18014, 920, 1568, 1560, 29877, 1228, 372, 6057, 373, 20337, 287, 12837, 29889, 13, 1576, 2601, 471, 10029, 3144, 2335, 29891, 541, 3078, 393, 784, 5200, 29915, 29873, 367, 25688, 491, 1811, 29889, 13, 29902, 1016, 29915, 29873, 1073, 565, 445, 756, 1063, 4433, 1434, 29892, 541, 29889, 2811, 445, 1701, 29916, 278, 12886, 2133, 29871, 29953, 6494, 29973, 13, 2008, 1567, 304, 367, 263, 1108, 1546, 405, 15810, 29915, 29879, 29914, 29940, 1300, 20671, 29915, 330, 29894, 5847, 5314, 310, 5217, 6931, 322, 1857, 269, 20027, 6910, 29889, 306, 1348, 445, 881, 367, 4343, 408, 481, 29892, 408, 727, 526, 263, 365, 2891, 4160, 322, 14582, 15201, 393, 1016, 29915, 29873, 1584, 1073, 393, 1009, 3884, 3829, 338, 316, 5105, 292, 975, 931, 29889, 9531, 5714, 541, 306, 1348, 366, 508, 14034, 825, 10676, 1970, 375, 1080, 3799, 565, 4160, 380, 15563, 2501, 714, 9715, 785, 2869, 21510, 11132, 785, 5518, 29991, 512, 1749, 1206, 445, 338, 884, 263, 848, 13047, 2228, 29889, 13, 6246, 306, 1016, 29915, 29873, 1074, 738, 1855, 1371, 363, 5802, 6757, 29889, 319, 4996, 2329, 297, 405, 15810, 338, 2289, 4312, 1244, 29991, 13, 4013, 3508, 29915, 29873, 263, 6494, 297, 405, 15810, 313, 272, 297, 402, 6632, 2303, 29897, 541, 297, 317, 20027, 3528, 29889, 27466, 2705, 372, 29915, 29879, 1063, 4343, 363, 29871, 29946, 29889, 29947, 29914, 29946, 29889, 29929, 29901, 2045, 597, 6152, 29920, 2911, 29889, 29879, 20027, 29889, 990, 29914, 4294, 29918, 6152, 29889, 20006, 29973, 333, 29922, 29896, 29941, 29906, 29900, 29946, 29889, 1815, 366, 1653, 263, 6494, 3461, 2750, 8294, 350, 26629, 322, 2244, 963, 304, 14954, 719, 5839, 278, 2329, 363, 29871, 29946, 29889, 29955, 29973, 13, 29924, 504, 505, 975, 6914, 287, 445, 16742, 29889, 910, 338, 3721, 590, 1108, 408, 306, 5456, 263, 2846, 11803, 2400, 29889, 13, 14084, 263, 20629, 8998, 584, 306, 10548, 393, 278, 18871, 8455, 1033, 451, 1722, 869, 29955, 29920, 2066, 313, 376, 636, 273, 1059, 2179, 2955, 1550, 16088, 29908, 1723, 1919, 769, 306, 1898, 278, 1021, 2066, 773, 1790, 7089, 713, 29899, 6707, 1320, 307, 29892, 278, 1021, 9000, 15629, 313, 2283, 8731, 1358, 29897, 1584, 411, 263, 5224, 1873, 313, 29941, 29889, 29906, 29906, 29897, 1919, 322, 4129, 471, 3431, 636, 1105, 306, 6496, 10829, 2156, 293, 322, 5130, 282, 29955, 7554, 29899, 8159, 313, 392, 282, 29955, 7554, 29899, 13678, 491, 278, 982, 511, 769, 372, 3897, 599, 29899, 1266, 29889, 13, 6295, 29892, 313, 16076, 341, 524, 338, 2998, 1900, 363, 1641, 278, 1556, 714, 29899, 974, 29899, 1552, 29899, 1884, 1320, 307, 29897, 1033, 282, 29955, 7554, 29899, 8159, 322, 282, 29955, 7554, 29899, 13678, 367, 2307, 5130, 491, 2322, 29973, 13, 2528, 17658, 29936, 313, 29875 ]
1,024
C4
-1.038522
-1.341266
-1.551917
-1.15382
.e.) there's a plugin for Thunar for the archiver to take place in the context menu. Likewise, it mustn't be that difficult to make a "Compress with … " link in Nemo right-click menu.. (at least for File Roller but also for the ones installed later; i.e. Peazip, if possible..).. P.S. I know there're workarounds for this, and also it's not an issue to open the archiver first and to click "new".. but it would be nice to see them out-of-the-box especially for the newcomers.. And I thought it'd look really complete.. I now use engrampa which comes from the MATE DE but you can install it with synaptics and you don't need to install the rest of MATE's stuff. Updated my HP laptop from MATE 18.3 to 19 and this thing flys now. Qcad, music and videos are the main things I play with. Only thing I have noticed is scoll is not setup on the pad but I don't use it so no big deal for me. Have tried LM 19 on HP Thinbook 14″ ; Realtek 8723DE wifi module & Bluetooth modem driver missing; was able to get wifi running but no Bluetooth; Read that driver is build in kernel 4.17 and above; untill then sadly W10 is needed on that laptop; And in LM 19 Ksnapshot replacement "full screen" option results in white screen of death – because of that I'll gratefully(!) keep LM 18.3 on production machine. Thanks LM-team! 2) in LM 19 Ksnapshot replacement "full screen" option results in white screen of death – because of that I'll gratefully(!) keep LM 18.3 on Acer production machine. Will LM 19.1 offer by default android phones conectivity. e.g. using GSConnect/KDE connect? Ubuntu 18.10 plan to do this. Fire-jail does not work in Linux Mint 19. Firejail Firefox brings up a blank page that never loads. Please include Gimp 2.10.x in this release. Thanks. Linux Mint 19 seems to be one of the few Linux distros that actually *work* on my hardware! Debian, Devuan, PCLinux and others don't seem to handle my Asus motherboard or ancient integrated AMD video like Mint 19 does. I know a lot of that is the kernel, but even with the same kernel, Mint just seems to work best. Thanks for breating new life into an old box! I had to tweak the GRUB2 settings and I'm running JWM instead of the installed Xfce, but everything seems to be working smoothly and without the problems I encountered on other distros. Please try to fix that! I am a new Linux user – ex Windows XP. Mint 17 was installed by my uncle. I have problems upgrading Firefox and/or installing Google Chrome. I also have a problem connecting my HP DeskJet printer. Will upgrading to Mint 18.3 help with my problems? But if you like: we (at least me) can describe how to install the latest; the newest 19.0 from the very beginning one by one, with great pleasure, nothing to afraid .. (after downloading the suitable .iso file – https://linuxmint.com/download.php – , how to write it on a usb and how to start the pc via that usb – live session- and then install it with just a few clicks i 10-15 min…) .. If you like to do so; you just decide which desktop you like most (roughly: Cinnamon is the most polished, Xfce is simpler and lighter, Mate is somewhere between.. ) and also (please tell) the specs of your pc. (simply you can search in the menu) .. and copy & paste (backup) your necessary files to somewhere else (to a usb etc.) for preparation.. I forgot to say: my printer -and scanner, all in one- is Hp Deskjet, too and I had no problems , I began using Mint from version 18.0 .. I guess it may also be ok with higher versions – i.e. Mint 19.0 uses the kernel 4.
[ 29889, 29872, 1846, 727, 29915, 29879, 263, 7079, 363, 498, 348, 279, 363, 278, 3190, 2147, 304, 2125, 2058, 297, 278, 3030, 6143, 29889, 8502, 3538, 29892, 372, 1818, 29876, 29915, 29873, 367, 393, 5189, 304, 1207, 263, 376, 1523, 2139, 411, 16088, 376, 1544, 297, 405, 15810, 1492, 29899, 3808, 6143, 636, 313, 271, 3203, 363, 3497, 8731, 1358, 541, 884, 363, 278, 6743, 5130, 2678, 29936, 474, 29889, 29872, 29889, 3938, 834, 666, 29892, 565, 1950, 636, 20149, 13, 29925, 29889, 29903, 29889, 306, 1073, 727, 29915, 276, 664, 279, 3885, 363, 445, 29892, 322, 884, 372, 29915, 29879, 451, 385, 2228, 304, 1722, 278, 3190, 2147, 937, 322, 304, 2828, 376, 1482, 29908, 636, 541, 372, 723, 367, 7575, 304, 1074, 963, 714, 29899, 974, 29899, 1552, 29899, 1884, 7148, 363, 278, 716, 510, 414, 636, 1126, 306, 2714, 372, 29915, 29881, 1106, 2289, 4866, 636, 13, 29902, 1286, 671, 427, 629, 20056, 607, 5304, 515, 278, 341, 3040, 5012, 541, 366, 508, 2601, 372, 411, 5222, 2156, 1199, 322, 366, 1016, 29915, 29873, 817, 304, 2601, 278, 1791, 310, 341, 3040, 29915, 29879, 6433, 29889, 13, 29248, 590, 379, 29925, 19022, 515, 341, 3040, 29871, 29896, 29947, 29889, 29941, 304, 29871, 29896, 29929, 322, 445, 2655, 11340, 29879, 1286, 29889, 660, 29883, 328, 29892, 4696, 322, 19707, 526, 278, 1667, 2712, 306, 1708, 411, 29889, 9333, 2655, 306, 505, 10548, 338, 885, 3028, 338, 451, 6230, 373, 278, 17132, 541, 306, 1016, 29915, 29873, 671, 372, 577, 694, 4802, 5376, 363, 592, 29889, 13, 25559, 1898, 365, 29924, 29871, 29896, 29929, 373, 379, 29925, 498, 262, 2909, 29871, 29896, 29946, 30160, 2056, 8195, 12681, 29871, 29947, 29955, 29906, 29941, 2287, 281, 6832, 3883, 669, 3164, 20930, 4464, 29885, 7156, 4567, 29936, 471, 2221, 304, 679, 281, 6832, 2734, 541, 694, 3164, 20930, 29936, 7523, 393, 7156, 338, 2048, 297, 8466, 29871, 29946, 29889, 29896, 29955, 322, 2038, 29936, 443, 29873, 453, 769, 14610, 368, 399, 29896, 29900, 338, 4312, 373, 393, 19022, 29936, 1126, 297, 365, 29924, 29871, 29896, 29929, 476, 29879, 14551, 16920, 376, 8159, 4315, 29908, 2984, 2582, 297, 4796, 4315, 310, 4892, 785, 1363, 310, 393, 306, 29915, 645, 867, 403, 3730, 11864, 29897, 3013, 365, 29924, 29871, 29896, 29947, 29889, 29941, 373, 5802, 4933, 29889, 1834, 365, 29924, 29899, 14318, 29991, 13, 29906, 29897, 297, 365, 29924, 29871, 29896, 29929, 476, 29879, 14551, 16920, 376, 8159, 4315, 29908, 2984, 2582, 297, 4796, 4315, 310, 4892, 785, 1363, 310, 393, 306, 29915, 645, 867, 403, 3730, 11864, 29897, 3013, 365, 29924, 29871, 29896, 29947, 29889, 29941, 373, 319, 2265, 5802, 4933, 29889, 13, 12984, 365, 29924, 29871, 29896, 29929, 29889, 29896, 5957, 491, 2322, 1442, 1374, 2873, 378, 522, 2068, 29889, 13, 29872, 29889, 29887, 29889, 773, 402, 29903, 17918, 29914, 29968, 2287, 4511, 29973, 8294, 29871, 29896, 29947, 29889, 29896, 29900, 3814, 304, 437, 445, 29889, 13, 18654, 29899, 29926, 737, 947, 451, 664, 297, 8074, 341, 524, 29871, 29896, 29929, 29889, 6438, 29926, 737, 14418, 23522, 701, 263, 9654, 1813, 393, 2360, 15376, 29889, 13, 12148, 3160, 402, 6574, 29871, 29906, 29889, 29896, 29900, 29889, 29916, 297, 445, 6507, 29889, 1834, 29889, 13, 24085, 341, 524, 29871, 29896, 29929, 2444, 304, 367, 697, 310, 278, 2846, 8074, 1320, 1883, 393, 2869, 334, 1287, 29930, 373, 590, 12837, 29991, 7089, 713, 29892, 9481, 12323, 29892, 349, 6154, 262, 1314, 322, 4045, 1016, 29915, 29873, 2833, 304, 4386, 590, 1094, 375, 5637, 3377, 470, 12297, 23387, 319, 5773, 4863, 763, 341, 524, 29871, 29896, 29929, 947, 29889, 306, 1073, 263, 3287, 310, 393, 338, 278, 8466, 29892, 541, 1584, 411, 278, 1021, 8466, 29892, 341, 524, 925, 2444, 304, 664, 1900, 29889, 1834, 363, 2078, 1218, 716, 2834, 964, 385, 2030, 3800, 29991, 13, 29902, 750, 304, 7780, 557, 278, 18016, 7466, 29906, 6055, 322, 306, 29915, 29885, 2734, 435, 26735, 2012, 310, 278, 5130, 1060, 29888, 346, 29892, 541, 4129, 2444, 304, 367, 1985, 10597, 368, 322, 1728, 278, 4828, 306, 18169, 373, 916, 1320, 1883, 29889, 13, 12148, 1018, 304, 2329, 393, 29991, 13, 29902, 626, 263, 716, 8074, 1404, 785, 429, 3852, 28932, 29889, 341, 524, 29871, 29896, 29955, 471, 5130, 491, 590, 22169, 29889, 306, 505, 4828, 20337, 292, 14418, 322, 29914, 272, 15476, 5087, 10228, 29889, 306, 884, 505, 263, 1108, 16791, 590, 379, 29925, 2726, 29895, 29967, 300, 23028, 29889, 2811, 20337, 292, 304, 341, 524, 29871, 29896, 29947, 29889, 29941, 1371, 411, 590, 4828, 29973, 13, 6246, 565, 366, 763, 29901, 591, 313, 271, 3203, 592, 29897, 508, 8453, 920, 304, 2601, 278, 9281, 29936, 278, 716, 342, 29871, 29896, 29929, 29889, 29900, 515, 278, 1407, 6763, 697, 491, 697, 29892, 411, 2107, 15377, 29892, 3078, 304, 13421, 6317, 313, 7045, 28536, 278, 13907, 869, 10718, 934, 785, 2045, 597, 9389, 29885, 524, 29889, 510, 29914, 10382, 29889, 1961, 785, 1919, 920, 304, 2436, 372, 373, 263, 502, 29890, 322, 920, 304, 1369, 278, 22844, 3025, 393, 502, 29890, 785, 5735, 4867, 29899, 322, 769, 2601, 372, 411, 925, 263, 2846, 19367, 474, 29871, 29896, 29900, 29899, 29896, 29945, 1375, 30098, 29897, 6317, 13, 3644, 366, 763, 304, 437, 577, 29936, 366, 925, 11097, 607, 14616, 366, 763, 1556, 313, 10573, 368, 29901, 315, 2559, 314, 265, 338, 278, 1556, 1248, 3276, 29892, 1060, 29888, 346, 338, 13682, 322, 301, 14643, 29892, 29566, 338, 9051, 1546, 636, 1723, 322, 884, 313, 552, 559, 2649, 29897, 278, 1580, 29879, 310, 596, 22844, 29889, 313, 14739, 368, 366, 508, 2740, 297, 278, 6143, 29897, 6317, 322, 3509, 669, 11417, 313, 1627, 786, 29897, 596, 5181, 2066, 304, 9051, 1683, 313, 517, 263, 502, 29890, 2992, 1846, 363, 10223, 362, 636, 13, 29902, 9640, 304, 1827, 29901, 590, 23028, 448, 392, 885, 7310, 29892, 599, 297, 697, 29899, 338, 379, 29886, 2726, 29895, 4026, 29892, 2086, 322, 306, 750, 694, 4828, 1919, 306, 4689, 773, 341, 524, 515, 1873, 29871, 29896, 29947, 29889, 29900, 6317, 306, 4140, 372, 1122, 884, 367, 3431, 411, 6133, 6910, 785, 474, 29889, 29872, 29889, 341, 524, 29871, 29896, 29929, 29889, 29900, 3913, 278, 8466, 29871, 29946, 29889 ]
1,024
C4
-0.857838
-0.806903
-1.06416
-0.843293
15 (more up-to-date-) , ( in Linux , the necessary drivers are included in kernel (unlike Win.).. You Update Manager will give you the option to upgrade Firefox when its available for your distro. its automatic. Theres an open source chrome in Software updates in your Menu . Also tools For HP Printer tools. Thanks I will be grateful if you can help me. I can only find Software Manager and Product Manager on the index. (I am actually quite "stupid" with programs. ) I am using a Dell Latitude D620 and if I remember correctly with an 85gig hard driv. My uncle devided the hard drive for Windows XP and Linux Mint. Should I rather delete Windows XP completely? Several year user (sounds like a drug user confession) on previous machines. Bought Ryzen 5 Lenovo 330S, installed 19.0 and have been fighting a few problems, namely no wifi and black screen on boot. Bought TP Link USB wf dongle after figuring out the grub addition code "noapic" in attempt to dl latest updates and drivers after several failed avenues to install Realtek driver via usb stick. No change with latest kernel or updates. Are these problems (vega graphics, Realtek driver) fixed in 19.1..? These problems are most probably coming from upstream (Ubuntu), not Mint itself. Did you check on Ubuntu forums? The firejail problem should have been corrected during the beta test version. Will this update finally bring mouse wheel reverse scrolling? And mouse speed control? Now if you guys could just get Chrome Remote working again. Been using Mint 19 XFCE since it first came out and have never had any problems. Mint 18.3 Cinnamon gave me fits whenever there was a kernel or Nvidia driver update; no such issues with XFCE. Consider making BTRFS the default file system for /; it works so much better with Timeshift! How is it much different than using RSYNC with a standard file system like EXT4, please? And do you backup on an external drive? I'm considering using a 32GB thumb drive for backup. The Debian edition is LMDE. "Standard" Linux Mint is based on Ubuntu. Linux Mint 19 users will have the ability to upgrade please let me be one of the 19 users. Early adopter of LM 19 Xfce here. A few applications no longer worked, including Biovia Discovery Studio Visualizer. Will probably keep LM on one of my six linux boxes, but keeping LM 18.3 on the others, at least for a while. BTW, the Mint implementation of Xfce is the best of any distro — it is functional and aesthetically pleasing right out of the box. And again Samba is not working! I'll had to go back a distro to use it! It's the same every new distro!!! I just downloaded Mint 19 Version 2. How is this different from the original 19, and how will 19.1 be different from 19v2? It was a fix to an install issue related to UEFI if I understand well. Why does for weeks now "apt download mint-meta-codecs" not work from within LM19 Mate 32b Live-DVD? E: The repository 'cdrom: Linux Mint 19 _Tara_ – Release i386 20180626 bionic Release' does not have a Release file. The packages were downloaded into mint-meta-codecs.tgz. This archive contains all the packages necessary for an offline installation. Doing the very same from within LM18.3 works as expected. We know about this issue. It's because of a change in aptitude but it's up to us to fix it. We've a PR for it in git, although I'm not sure it downloads all required dependencies. @Clem: PR=? Would you please point me to its location, so that I can give it a try? I hop they fix the support of the amd products so i can install it on my amd machine. Can you please work on NVIDIA drivers? Only NVIDIA can work on their drivers, nobody else has the code, it's proprietary. That said, we've been working on input lag, rendering,
[ 29896, 29945, 313, 5514, 701, 29899, 517, 29899, 1256, 15805, 1919, 313, 297, 8074, 1919, 278, 5181, 18563, 526, 5134, 297, 8466, 313, 348, 4561, 8892, 6250, 29889, 13, 3492, 10318, 15629, 674, 2367, 366, 278, 2984, 304, 14955, 14418, 746, 967, 3625, 363, 596, 1320, 307, 29889, 967, 18428, 29889, 13, 1349, 11175, 385, 1722, 2752, 16735, 297, 18540, 11217, 297, 596, 20019, 869, 13, 17351, 8492, 1152, 379, 29925, 1588, 1639, 8492, 29889, 13, 16894, 306, 674, 367, 28656, 565, 366, 508, 1371, 592, 29889, 306, 508, 871, 1284, 18540, 15629, 322, 10969, 15629, 373, 278, 2380, 29889, 313, 29902, 626, 2869, 3755, 376, 303, 786, 333, 29908, 411, 11104, 29889, 1723, 306, 626, 773, 263, 360, 514, 7053, 4279, 360, 29953, 29906, 29900, 322, 565, 306, 6456, 5149, 411, 385, 29871, 29947, 29945, 29887, 335, 2898, 12592, 29889, 1619, 22169, 2906, 2618, 278, 2898, 7899, 363, 3852, 28932, 322, 8074, 341, 524, 29889, 10575, 306, 3265, 5217, 3852, 28932, 6446, 29973, 13, 29903, 1310, 284, 1629, 1404, 313, 29879, 3885, 763, 263, 15721, 1404, 1970, 1211, 29897, 373, 3517, 14884, 29889, 13, 29933, 1774, 15586, 2256, 29871, 29945, 16206, 6962, 29871, 29941, 29941, 29900, 29903, 29892, 5130, 29871, 29896, 29929, 29889, 29900, 322, 505, 1063, 17770, 263, 2846, 4828, 29892, 18451, 694, 281, 6832, 322, 4628, 4315, 373, 6579, 29889, 13, 29933, 1774, 323, 29925, 6645, 12951, 281, 29888, 270, 549, 280, 1156, 2537, 3864, 714, 278, 867, 431, 6124, 775, 376, 1217, 481, 293, 29908, 297, 4218, 304, 270, 29880, 9281, 11217, 322, 18563, 1156, 3196, 5229, 263, 854, 1041, 304, 2601, 8195, 12681, 7156, 3025, 502, 29890, 12070, 29889, 13, 3782, 1735, 411, 9281, 8466, 470, 11217, 29889, 13, 17506, 1438, 4828, 313, 345, 3249, 18533, 29892, 8195, 12681, 7156, 29897, 4343, 297, 29871, 29896, 29929, 29889, 29896, 636, 29973, 13, 1349, 968, 4828, 526, 1556, 3117, 6421, 515, 701, 5461, 313, 29965, 6037, 511, 451, 341, 524, 3528, 29889, 13, 9260, 366, 1423, 373, 8294, 363, 6762, 29973, 13, 1576, 3974, 29926, 737, 1108, 881, 505, 1063, 24114, 2645, 278, 21762, 1243, 1873, 29889, 13, 12984, 445, 2767, 7146, 6963, 9495, 18875, 11837, 23064, 29973, 1126, 9495, 6210, 2761, 29973, 13, 10454, 565, 366, 18239, 1033, 925, 679, 10228, 5240, 866, 1985, 1449, 29889, 13, 3629, 264, 773, 341, 524, 29871, 29896, 29929, 1060, 29943, 4741, 1951, 372, 937, 2996, 714, 322, 505, 2360, 750, 738, 4828, 29889, 341, 524, 29871, 29896, 29947, 29889, 29941, 315, 2559, 314, 265, 4846, 592, 23994, 10940, 727, 471, 263, 8466, 470, 405, 28584, 7156, 2767, 29936, 694, 1316, 5626, 411, 1060, 29943, 4741, 29889, 13, 13696, 1241, 3907, 350, 5659, 9998, 278, 2322, 934, 1788, 363, 847, 29936, 372, 1736, 577, 1568, 2253, 411, 10277, 29882, 2027, 29991, 13, 5328, 338, 372, 1568, 1422, 1135, 773, 390, 14816, 15868, 411, 263, 3918, 934, 1788, 763, 8528, 29911, 29946, 29892, 3113, 29973, 13, 2855, 437, 366, 16199, 373, 385, 7029, 7899, 29973, 13, 29902, 29915, 29885, 13858, 773, 263, 29871, 29941, 29906, 7210, 28968, 7899, 363, 16199, 29889, 13, 1576, 7089, 713, 12203, 338, 365, 29924, 2287, 29889, 13, 29908, 15449, 29908, 8074, 341, 524, 338, 2729, 373, 8294, 29889, 13, 24085, 341, 524, 29871, 29896, 29929, 4160, 674, 505, 278, 11509, 304, 14955, 3113, 1235, 592, 367, 697, 310, 278, 29871, 29896, 29929, 4160, 29889, 13, 29923, 279, 368, 594, 19959, 310, 365, 29924, 29871, 29896, 29929, 1060, 29888, 346, 1244, 29889, 319, 2846, 8324, 694, 5520, 3796, 29892, 3704, 3457, 586, 423, 8565, 22205, 7448, 9249, 3950, 29889, 2811, 3117, 3013, 365, 29924, 373, 697, 310, 590, 4832, 10542, 16273, 29892, 541, 12515, 365, 29924, 29871, 29896, 29947, 29889, 29941, 373, 278, 4045, 29892, 472, 3203, 363, 263, 1550, 29889, 24750, 29892, 278, 341, 524, 5314, 310, 1060, 29888, 346, 338, 278, 1900, 310, 738, 1320, 307, 813, 372, 338, 13303, 322, 263, 342, 9188, 1711, 5644, 5832, 1492, 714, 310, 278, 3800, 29889, 13, 2855, 1449, 317, 20027, 338, 451, 1985, 29991, 306, 29915, 645, 750, 304, 748, 1250, 263, 1320, 307, 304, 671, 372, 29991, 739, 29915, 29879, 278, 1021, 1432, 716, 1320, 307, 21004, 13, 29902, 925, 16532, 341, 524, 29871, 29896, 29929, 10079, 29871, 29906, 29889, 1128, 338, 445, 1422, 515, 278, 2441, 29871, 29896, 29929, 29892, 322, 920, 674, 29871, 29896, 29929, 29889, 29896, 367, 1422, 515, 29871, 29896, 29929, 29894, 29906, 29973, 13, 3112, 471, 263, 2329, 304, 385, 2601, 2228, 4475, 304, 14775, 3738, 565, 306, 2274, 1532, 29889, 13, 11008, 947, 363, 11405, 1286, 376, 2156, 5142, 20559, 29899, 7299, 29899, 401, 2395, 29908, 451, 664, 515, 2629, 365, 29924, 29896, 29929, 29566, 29871, 29941, 29906, 29890, 10782, 29899, 29928, 10699, 29973, 13, 29923, 29901, 450, 9810, 525, 2252, 456, 29901, 8074, 341, 524, 29871, 29896, 29929, 903, 29911, 2518, 29918, 785, 23708, 474, 29941, 29947, 29953, 29871, 29906, 29900, 29896, 29947, 29900, 29953, 29906, 29953, 289, 26629, 23708, 29915, 947, 451, 505, 263, 23708, 934, 29889, 13, 1576, 9741, 892, 16532, 964, 20559, 29899, 7299, 29899, 401, 2395, 29889, 29873, 18828, 29889, 910, 18871, 3743, 599, 278, 9741, 5181, 363, 385, 1283, 1220, 11161, 29889, 13, 6132, 292, 278, 1407, 1021, 515, 2629, 365, 29924, 29896, 29947, 29889, 29941, 1736, 408, 3806, 29889, 13, 4806, 1073, 1048, 445, 2228, 29889, 739, 29915, 29879, 1363, 310, 263, 1735, 297, 10882, 4279, 541, 372, 29915, 29879, 701, 304, 502, 304, 2329, 372, 29889, 1334, 29915, 345, 263, 12089, 363, 372, 297, 6315, 29892, 5998, 306, 29915, 29885, 451, 1854, 372, 5142, 29879, 599, 3734, 9962, 29889, 13, 29992, 29907, 2409, 29901, 12089, 29922, 29973, 10878, 366, 3113, 1298, 592, 304, 967, 4423, 29892, 577, 393, 306, 508, 2367, 372, 263, 1018, 29973, 13, 29902, 8171, 896, 2329, 278, 2304, 310, 278, 626, 29881, 9316, 577, 474, 508, 2601, 372, 373, 590, 626, 29881, 4933, 29889, 13, 6028, 366, 3113, 664, 373, 405, 13044, 10764, 18563, 29973, 13, 11730, 405, 13044, 10764, 508, 664, 373, 1009, 18563, 29892, 23196, 1683, 756, 278, 775, 29892, 372, 29915, 29879, 24440, 653, 29889, 2193, 1497, 29892, 591, 29915, 345, 1063, 1985, 373, 1881, 11755, 29892, 15061, 29892 ]
1,024
C4
-1.444723
-0.726116
-0.624176
-0.673167
Take your pictures quickly. The longer you hesitate, the greater the opportunity your subject will move away, break their pose, or become tired as well as prevent smiling. Begin taking shots as quickly as it is possible to, and don't concern yourself with getting the camera perfect just before the first shot. The faster you shoot and also the more photos you are taking, the better your odds are to getting a high quality one. Be selective about the elements that you simply include in your photo. Go on and remove anything from the picture that doesn't belong there or definitely makes the frame seem unbalanced. Use panning shots that maintain your subject in focus but blur the backdrop should you can't remove all unwanted distractions from the shot. One of the things that you can do if you are taking photos is usually to lean on something to obtain better balance. The greater number of balance that you may have, the less movement the camera can certainly make, which could enhance the sharpness of the shots. Maintain your balance when you desire optimal photographs. Natural light will always provide you with the best quality photos. Cloudy days are in fact better for shooting than sunny ones, because the clouds act as an all natural diffuser, spreading the light out and eliminating shadows and harsh contrasts. Opt for your photo shoot outside by using an overcast day. Once you take photographs, write a few notes about them. When you look back in your pictures, you may find it difficult remembering that you took them. Invest in a small notebook to write down down all your info on the photos. Number your photographs, and write this number down in the notebook next to the description of this photograph. Learn about composition rules. Practice and try these rules to make unique pictures. For example, organizing a photo around diagonal lines gives an impact of depth. You can even play with colors and gradual nuances to present an effect of movement into a picture. Usually do not keep to the rules blindly, but learn when you should use them. Check out a thrift store to buy a film camera if you would like to try out the older film-based photography. You can utilize ISO 200 rated grayscale film to obtain some very dramatic looking photographs. Right after the film is developed, try getting prints on various paper types, like fiber papers. Pay attention to your background. Your primary focus should be on your own object, but you need to use the backdrop to support it. Avoid any unnecessary distractions and clean your background to report the interest on your object. Play with lines and perspective with your background to compliment the form of the object. Tend not to let your knowledge shape your pictures. You must base your picture around your idea and inventive feel and utilize knowledge as well as your equipment assist you in making this concept go to life. You are able to test out techniques when you learn them, but you is going to take your greatest pictures once you let your opinions take charge. Ensure you frame all of your current shots. Nothing like a photo frame, but some thing natural that focuses the attention. Take notice, and you may likely create a "natural frame" for the main topic of your picture with neighboring elements. It is an ideal approach to use if you want to practice getting a photo's composition right. Keep an eye out for virtually any kinds of patterns, whether natural or artificial, when shooting your subject material. Patterns give your photo increased visual interest, specifically if they repeat. In addition, patterns can be used as backdrops and different perspectives for framing your subject. A wonderful tip that could make your photographs more interesting would be to start utilizing patterns. Patterns is definitely an excellent design motif if you utilize them correctly. You can get patterns on just about everything. You will discover them on plenty of clothes, in architecture, and even in nature. Every picture you are taking wants a center of attention. Determine your centerpiece before you snap the photo. When trying to look for the centerpiece, try to take into account what is going to draw the viewer in. Keep the focal point simple, if you are using too many focal points it is going to only confuse the scene. There is no need to help make your center of attention be the core of the image, but it does should stand out. Get views of several angles of the subject or scene that you are currently shooting. Many amateurs will not likely spend some time to move about the niche for the greatest angle, should you, you'll find there are many different photos being taken of a single subject. Have fun with the shadow of your object. Whenever a shadow is project
[ 11190, 596, 14956, 9098, 29889, 450, 5520, 366, 19066, 10388, 29892, 278, 7621, 278, 15130, 596, 4967, 674, 4337, 3448, 29892, 2867, 1009, 18593, 29892, 470, 4953, 23407, 408, 1532, 408, 5557, 1560, 6504, 29889, 14893, 5622, 528, 1862, 408, 9098, 408, 372, 338, 1950, 304, 29892, 322, 1016, 29915, 29873, 5932, 7535, 411, 2805, 278, 10656, 4922, 925, 1434, 278, 937, 10322, 29889, 450, 8473, 366, 15049, 322, 884, 278, 901, 20612, 366, 526, 5622, 29892, 278, 2253, 596, 7736, 29879, 526, 304, 2805, 263, 1880, 11029, 697, 29889, 13, 3629, 1831, 573, 1048, 278, 3161, 393, 366, 3763, 3160, 297, 596, 15373, 29889, 2921, 373, 322, 3349, 3099, 515, 278, 7623, 393, 1838, 29915, 29873, 6852, 727, 470, 11630, 3732, 278, 3515, 2833, 443, 5521, 8362, 29889, 4803, 282, 9450, 528, 1862, 393, 7344, 596, 4967, 297, 8569, 541, 1999, 332, 278, 1250, 8865, 881, 366, 508, 29915, 29873, 3349, 599, 18500, 9714, 1320, 336, 1953, 515, 278, 10322, 29889, 13, 6716, 310, 278, 2712, 393, 366, 508, 437, 565, 366, 526, 5622, 20612, 338, 5491, 304, 20793, 373, 1554, 304, 4017, 2253, 17346, 29889, 450, 7621, 1353, 310, 17346, 393, 366, 1122, 505, 29892, 278, 3109, 10298, 278, 10656, 508, 8959, 1207, 29892, 607, 1033, 26371, 749, 278, 15301, 2264, 310, 278, 528, 1862, 29889, 341, 2365, 475, 596, 17346, 746, 366, 13521, 14413, 17739, 29879, 29889, 13, 29940, 18771, 3578, 674, 2337, 3867, 366, 411, 278, 1900, 11029, 20612, 29889, 14293, 29891, 3841, 526, 297, 2114, 2253, 363, 27904, 1135, 6575, 1460, 6743, 29892, 1363, 278, 27091, 1044, 408, 385, 599, 5613, 2923, 1792, 29892, 9677, 292, 278, 3578, 714, 322, 10397, 1218, 528, 23626, 322, 4023, 845, 12814, 29879, 29889, 20693, 363, 596, 15373, 15049, 5377, 491, 773, 385, 975, 4384, 2462, 29889, 13, 26222, 366, 2125, 17739, 29879, 29892, 2436, 263, 2846, 11486, 1048, 963, 29889, 1932, 366, 1106, 1250, 297, 596, 14956, 29892, 366, 1122, 1284, 372, 5189, 6456, 292, 393, 366, 3614, 963, 29889, 512, 10147, 297, 263, 2319, 451, 19273, 304, 2436, 1623, 1623, 599, 596, 5235, 373, 278, 20612, 29889, 9681, 596, 17739, 29879, 29892, 322, 2436, 445, 1353, 1623, 297, 278, 451, 19273, 2446, 304, 278, 6139, 310, 445, 17739, 29889, 13, 29931, 799, 29876, 1048, 15259, 6865, 29889, 29124, 625, 322, 1018, 1438, 6865, 304, 1207, 5412, 14956, 29889, 1152, 1342, 29892, 2894, 5281, 263, 15373, 2820, 19640, 3454, 4076, 385, 10879, 310, 10809, 29889, 887, 508, 1584, 1708, 411, 11955, 322, 4656, 950, 4948, 2925, 304, 2198, 385, 2779, 310, 10298, 964, 263, 7623, 29889, 26991, 437, 451, 3013, 304, 278, 6865, 16842, 368, 29892, 541, 5110, 746, 366, 881, 671, 963, 29889, 13, 5596, 714, 263, 1468, 2027, 3787, 304, 15649, 263, 2706, 10656, 565, 366, 723, 763, 304, 1018, 714, 278, 9642, 2706, 29899, 6707, 6731, 5275, 29889, 887, 508, 3667, 675, 17723, 29871, 29906, 29900, 29900, 364, 630, 16749, 7052, 2706, 304, 4017, 777, 1407, 8541, 2454, 3063, 17739, 29879, 29889, 10428, 1156, 278, 2706, 338, 8906, 29892, 1018, 2805, 14677, 373, 5164, 5650, 4072, 29892, 763, 5713, 495, 15055, 29889, 13, 15467, 8570, 304, 596, 3239, 29889, 3575, 7601, 8569, 881, 367, 373, 596, 1914, 1203, 29892, 541, 366, 817, 304, 671, 278, 1250, 8865, 304, 2304, 372, 29889, 319, 5405, 738, 19039, 1320, 336, 1953, 322, 5941, 596, 3239, 304, 3461, 278, 4066, 373, 596, 1203, 29889, 7412, 411, 3454, 322, 18520, 411, 596, 3239, 304, 13162, 2073, 278, 883, 310, 278, 1203, 29889, 13, 29911, 355, 451, 304, 1235, 596, 7134, 8267, 596, 14956, 29889, 887, 1818, 2967, 596, 7623, 2820, 596, 2969, 322, 11817, 573, 4459, 322, 3667, 675, 7134, 408, 1532, 408, 596, 21083, 6985, 366, 297, 3907, 445, 6964, 748, 304, 2834, 29889, 887, 526, 2221, 304, 1243, 714, 13698, 746, 366, 5110, 963, 29892, 541, 366, 338, 2675, 304, 2125, 596, 14176, 14956, 2748, 366, 1235, 596, 26971, 2125, 8323, 29889, 13, 29923, 1983, 545, 366, 3515, 599, 310, 596, 1857, 528, 1862, 29889, 9531, 763, 263, 15373, 3515, 29892, 541, 777, 2655, 5613, 393, 8569, 267, 278, 8570, 29889, 11190, 8369, 29892, 322, 366, 1122, 5517, 1653, 263, 376, 25047, 3515, 29908, 363, 278, 1667, 11261, 310, 596, 7623, 411, 12307, 292, 3161, 29889, 739, 338, 385, 10839, 2948, 304, 671, 565, 366, 864, 304, 6944, 2805, 263, 15373, 29915, 29879, 15259, 1492, 29889, 13, 9598, 1022, 385, 10977, 714, 363, 4610, 1474, 738, 17690, 310, 15038, 29892, 3692, 5613, 470, 23116, 29892, 746, 27904, 596, 4967, 5518, 29889, 25860, 29879, 2367, 596, 15373, 11664, 7604, 4066, 29892, 10816, 565, 896, 12312, 29889, 512, 6124, 29892, 15038, 508, 367, 1304, 408, 1250, 26419, 567, 322, 1422, 3736, 1103, 3145, 363, 1424, 11500, 596, 4967, 29889, 13, 29909, 20695, 6872, 393, 1033, 1207, 596, 17739, 29879, 901, 8031, 723, 367, 304, 1369, 3667, 5281, 15038, 29889, 25860, 29879, 338, 11630, 385, 15129, 2874, 3184, 361, 565, 366, 3667, 675, 963, 5149, 29889, 887, 508, 679, 15038, 373, 925, 1048, 4129, 29889, 887, 674, 6523, 963, 373, 20947, 310, 22095, 29892, 297, 11258, 29892, 322, 1584, 297, 5469, 29889, 13, 26526, 7623, 366, 526, 5622, 10753, 263, 4818, 310, 8570, 29889, 5953, 837, 457, 596, 4818, 12343, 346, 1434, 366, 15101, 278, 15373, 29889, 1932, 1811, 304, 1106, 363, 278, 4818, 12343, 346, 29892, 1018, 304, 2125, 964, 3633, 825, 338, 2675, 304, 4216, 278, 6316, 556, 297, 29889, 19152, 278, 12789, 284, 1298, 2560, 29892, 565, 366, 526, 773, 2086, 1784, 12789, 284, 3291, 372, 338, 2675, 304, 871, 1970, 1509, 278, 9088, 29889, 1670, 338, 694, 817, 304, 1371, 1207, 596, 4818, 310, 8570, 367, 278, 7136, 310, 278, 1967, 29892, 541, 372, 947, 881, 2317, 714, 29889, 13, 2577, 8386, 310, 3196, 23619, 310, 278, 4967, 470, 9088, 393, 366, 526, 5279, 27904, 29889, 9267, 626, 14075, 674, 451, 5517, 18864, 777, 931, 304, 4337, 1048, 278, 302, 4070, 363, 278, 14176, 10696, 29892, 881, 366, 29892, 366, 29915, 645, 1284, 727, 526, 1784, 1422, 20612, 1641, 4586, 310, 263, 2323, 4967, 29889, 13, 25559, 2090, 411, 278, 15504, 310, 596, 1203, 29889, 1932, 1310, 263, 15504, 338, 2060 ]
1,024
C4
0.282649
-1.0285
-1.082092
0.524671
ERROR: type should be string, got "https://journals.ashs.org/search?access=user&pageSize=10&q=health+care&sort=relevance\nYou are looking at 1 - 10 of 313 items for :\nhealth care x\nRefine by Access: User-accessible Content x\nAssessing Consumer Knowledge and Use of Landscape Plant Health Care and Integrated Pest Management Practices through a Computer-based Interactive Survey\nJames C. Sellmer, Kathleen M. Kelley, Susan Barton, and David J. Suchanic\nAttendees at the 2001 Philadelphia Flower Show participated in an interactive-quiz-formatted survey on touch-screen computers to determine their knowledge and use of plant health care (PHC) and integrated pest management (IPM) practices. Participants answered 15 questions in three categories: 1) PHC practices (criteria for proper plant selection, correct planting practices, and reasons for mulching and pruning); 2) IPM practices (insect identification, plant and pest monitoring, and maintenance of records on pests found and treatments applied to their landscape plants); and 3) demographic and sociographic questions to aid in characterizing the survey population. Over half of the participants (58%) were interested in gardening and a majority (77%) were interested in protecting the environment. Most participants (66%) were between 36 and 60 years of age with a mean age of 47 years, 76% lived in and owned a single-family home, and greater than half (56%) had never purchased professional landscape services. Most recognized PHC criteria for proper site selection, although not all environmental site characteristics were recognized as being equally important. Nearly half (49%) identified the correct planting practice among the choices offered; while an equal number of participants chose among the several improper practices listed. Although reasons for mulching were properly identified by the respondents, excess mulching around trees was considered a proper planting practice by over 39% of the participants. When questioned about IPM practices, a majority reported that they identify pests prior to treating them (71%) and that they scouted their landscapes (82%). However, only 21% kept records of the pests that they had found and the treatments that they applied for those pests. Participants' responses were further examined using cluster analysis in order to characterize the participants and identify meaningful consumer knowledge segments for targeting future extension programming. Three distinct segments were identified: 1) horticulturally savvy (69% of the participants), 2) part-time gardener (25% of the participants), and 3) horticulturally challenged (6%). At least 47% of the horticulturally savvy and part-time gardeners correctly answered plant health care questions (44% of the total survey participants). These two segments included more individuals who were interested in gardening and protecting the environment and are potential targets for future PHC and IPM extension education programs. In contrast the horticulturally challenged recorded no interest in or opinion on gardening or protecting the environment. It is apparent that a majority of consumers are learning and employing PHC and IPM concepts. Proper site selection, planting practices, and mulching along with record keep- ing and pest identification proficiency remain key educational areas to be developed. Although not all gardeners are well versed in all subject matter, a basic knowledge of PHC and IPM is being demonstrated.\nVisiting Outdoor Green Environments Positively Impacts Self-rated Health among Older People in Long-term Care\nErja Rappe, Sirkka-Liisa Kivelä, and Hannu Rita\nThe restorative effects of nature in enhancing human well-being are well documented. However, the effects of exposure to a green environment on health in institutional settings have not been adequately studied. Our study describes the relationship between the reported frequency of visits to an outdoor green environment and self-rated health, including hindrances experienced during outdoor visits among older people living in a nursing home. Forty-five women assessed their health and answered a questionnaire containing the Nottingham Health Profile (NHP) during an interview. A strong positive association was established between the reported frequency of visiting outdoors and self-rated health even when taking into account health-related distresses measured using the NHP (B = 0.235, P < 0.01). The main hind"
[ 2045, 597, 29926, 2905, 1338, 29889, 1161, 29879, 29889, 990, 29914, 4478, 29973, 5943, 29922, 1792, 29987, 3488, 3505, 29922, 29896, 29900, 29987, 29939, 29922, 354, 4298, 29974, 18020, 29987, 6605, 29922, 276, 2608, 749, 13, 3492, 526, 3063, 472, 29871, 29896, 448, 29871, 29896, 29900, 310, 29871, 29941, 29896, 29941, 4452, 363, 584, 13, 354, 4298, 2562, 921, 13, 5620, 457, 491, 11028, 29901, 4911, 29899, 5943, 1821, 10576, 921, 13, 7900, 404, 292, 2138, 4680, 19320, 5485, 322, 4803, 310, 3172, 29879, 5738, 18058, 15202, 10057, 322, 17100, 630, 349, 342, 15057, 29124, 1575, 1549, 263, 20972, 29899, 6707, 4124, 4925, 23218, 13, 29470, 315, 29889, 317, 514, 1050, 29892, 19663, 280, 264, 341, 29889, 476, 1808, 29891, 29892, 25914, 12245, 265, 29892, 322, 4699, 435, 29889, 10506, 273, 293, 13, 4165, 3324, 267, 472, 278, 29871, 29906, 29900, 29900, 29896, 18292, 383, 13609, 7704, 25223, 297, 385, 28923, 29899, 339, 466, 29899, 689, 19667, 18994, 373, 6023, 29899, 10525, 23226, 304, 8161, 1009, 7134, 322, 671, 310, 8024, 9045, 2562, 313, 29925, 19127, 29897, 322, 23387, 282, 342, 10643, 313, 5690, 29924, 29897, 23274, 29889, 3455, 12654, 1934, 7699, 29871, 29896, 29945, 5155, 297, 2211, 13997, 29901, 29871, 29896, 29897, 349, 19127, 23274, 313, 29883, 21977, 363, 1571, 8024, 9262, 29892, 1959, 8024, 292, 23274, 29892, 322, 9590, 363, 15065, 305, 292, 322, 544, 27964, 416, 29871, 29906, 29897, 5641, 29924, 23274, 313, 262, 8803, 29769, 29892, 8024, 322, 282, 342, 29652, 29892, 322, 25413, 310, 6475, 373, 282, 9197, 1476, 322, 7539, 1860, 7436, 304, 1009, 24400, 18577, 416, 322, 29871, 29941, 29897, 1261, 12122, 322, 5374, 12122, 5155, 304, 16226, 297, 2931, 5281, 278, 18994, 4665, 29889, 6811, 4203, 310, 278, 27138, 313, 29945, 29947, 10997, 892, 8852, 297, 16423, 292, 322, 263, 13638, 313, 29955, 29955, 10997, 892, 8852, 297, 12566, 292, 278, 5177, 29889, 7849, 27138, 313, 29953, 29953, 10997, 892, 1546, 29871, 29941, 29953, 322, 29871, 29953, 29900, 2440, 310, 5046, 411, 263, 2099, 5046, 310, 29871, 29946, 29955, 2440, 29892, 29871, 29955, 29953, 29995, 10600, 297, 322, 15205, 263, 2323, 29899, 11922, 3271, 29892, 322, 7621, 1135, 4203, 313, 29945, 29953, 10997, 750, 2360, 20848, 10257, 24400, 5786, 29889, 7849, 14831, 349, 19127, 16614, 363, 1571, 3268, 9262, 29892, 5998, 451, 599, 29380, 3268, 21862, 892, 14831, 408, 1641, 18018, 4100, 29889, 26206, 368, 4203, 313, 29946, 29929, 10997, 15659, 278, 1959, 8024, 292, 6944, 4249, 278, 19995, 12520, 29936, 1550, 385, 5186, 1353, 310, 27138, 12784, 4249, 278, 3196, 4857, 546, 23274, 9904, 29889, 8512, 9590, 363, 15065, 305, 292, 892, 6284, 15659, 491, 278, 10049, 1237, 29892, 19163, 15065, 305, 292, 2820, 10697, 471, 5545, 263, 1571, 8024, 292, 6944, 491, 975, 29871, 29941, 29929, 29995, 310, 278, 27138, 29889, 1932, 1139, 287, 1048, 5641, 29924, 23274, 29892, 263, 13638, 8967, 393, 896, 12439, 282, 9197, 7536, 304, 2578, 1218, 963, 313, 29955, 29896, 10997, 322, 393, 896, 885, 449, 287, 1009, 2982, 1557, 11603, 313, 29947, 29906, 28003, 2398, 29892, 871, 29871, 29906, 29896, 29995, 8126, 6475, 310, 278, 282, 9197, 393, 896, 750, 1476, 322, 278, 7539, 1860, 393, 896, 7436, 363, 1906, 282, 9197, 29889, 3455, 12654, 1934, 29915, 20890, 892, 4340, 4392, 1312, 773, 9867, 7418, 297, 1797, 304, 2931, 675, 278, 27138, 322, 12439, 6593, 1319, 21691, 7134, 24611, 363, 3646, 292, 5434, 6081, 8720, 29889, 12753, 8359, 24611, 892, 15659, 29901, 29871, 29896, 29897, 298, 441, 3953, 332, 635, 4048, 13308, 313, 29953, 29929, 29995, 310, 278, 27138, 511, 29871, 29906, 29897, 760, 29899, 2230, 17161, 759, 313, 29906, 29945, 29995, 310, 278, 27138, 511, 322, 29871, 29941, 29897, 298, 441, 3953, 332, 635, 18066, 287, 313, 29953, 28003, 2180, 3203, 29871, 29946, 29955, 29995, 310, 278, 298, 441, 3953, 332, 635, 4048, 13308, 322, 760, 29899, 2230, 16423, 414, 5149, 7699, 8024, 9045, 2562, 5155, 313, 29946, 29946, 29995, 310, 278, 3001, 18994, 27138, 467, 4525, 1023, 24611, 5134, 901, 15724, 1058, 892, 8852, 297, 16423, 292, 322, 12566, 292, 278, 5177, 322, 526, 7037, 22525, 363, 5434, 349, 19127, 322, 5641, 29924, 6081, 9793, 11104, 29889, 512, 12814, 278, 298, 441, 3953, 332, 635, 18066, 287, 10478, 694, 4066, 297, 470, 9426, 373, 16423, 292, 470, 12566, 292, 278, 5177, 29889, 739, 338, 20295, 393, 263, 13638, 310, 11233, 414, 526, 6509, 322, 5703, 292, 349, 19127, 322, 5641, 29924, 22001, 29889, 1019, 546, 3268, 9262, 29892, 8024, 292, 23274, 29892, 322, 15065, 305, 292, 3412, 411, 2407, 3013, 29899, 2348, 322, 282, 342, 29769, 2600, 293, 13396, 3933, 1820, 28976, 10161, 304, 367, 8906, 29889, 8512, 451, 599, 16423, 414, 526, 1532, 1224, 287, 297, 599, 4967, 4383, 29892, 263, 6996, 7134, 310, 349, 19127, 322, 5641, 29924, 338, 1641, 28585, 29889, 13, 6116, 11407, 4451, 17433, 7646, 1174, 3024, 1860, 10321, 277, 3598, 14305, 627, 29879, 21782, 29899, 29878, 630, 15202, 4249, 8198, 261, 11647, 297, 6242, 29899, 8489, 10057, 13, 2110, 1764, 390, 29065, 29892, 6290, 29895, 1335, 29899, 23410, 8069, 476, 13255, 29986, 29892, 322, 13889, 29884, 390, 2028, 13, 1576, 1791, 272, 1230, 9545, 310, 5469, 297, 427, 5403, 3277, 5199, 1532, 29899, 915, 292, 526, 1532, 23531, 29889, 2398, 29892, 278, 9545, 310, 14060, 545, 304, 263, 7933, 5177, 373, 9045, 297, 12666, 284, 6055, 505, 451, 1063, 19967, 339, 2486, 12399, 29889, 8680, 6559, 16612, 278, 9443, 1546, 278, 8967, 10868, 310, 1998, 1169, 304, 385, 714, 17433, 7933, 5177, 322, 1583, 29899, 29878, 630, 9045, 29892, 3704, 298, 513, 661, 778, 18860, 2645, 714, 17433, 1998, 1169, 4249, 9642, 2305, 8471, 297, 263, 302, 1295, 292, 3271, 29889, 7236, 29891, 29899, 20818, 5866, 1223, 11517, 1009, 9045, 322, 7699, 263, 1139, 15421, 6943, 278, 2216, 1259, 3391, 15202, 20802, 313, 29940, 3954, 29897, 2645, 385, 15593, 29889, 319, 4549, 6374, 15477, 471, 7841, 1546, 278, 8967, 10868, 310, 6493, 292, 714, 1867, 943, 322, 1583, 29899, 29878, 630, 9045, 1584, 746, 5622, 964, 3633, 9045, 29899, 12817, 1320, 1253, 267, 17005, 773, 278, 405, 3954, 313, 29933, 353, 29871, 29900, 29889, 29906, 29941, 29945, 29892, 349, 529, 29871, 29900, 29889, 29900, 29896, 467, 450, 1667, 298, 513 ]
1,024
CommonCrawl
-0.174497
0.174547
0.522842
1.862911
rances related to outdoor visits were lack of assistance and uncomfortable weather conditions. The results suggest that it might be possible to promote the well-being of older individuals living in nursing homes by providing them with opportunities to visit outdoor green environments. By increasing the accessibility and attractiveness of the outdoor environment, the frequency of outdoor visits could increase, resulting in better perceived health. Implementation of environmental interventions that facilitate year-round outdoor visits are recommended. The Impact of Horticultural Responsibility on Health Indicators and Quality of Life in Assisted Living Claudia C. Collins and Angela M. O'Callaghan -term care facilities will increase dramatically. This residential shift requires an examination of the quality of life for the older adults who will reside in those facilities. Mastery and self-rated health (SRH) have been found to be two of the most The Effects of Greenhouse Activities on Psychological Stress, Depression, and Anxiety among University Students Who Served in the U.S. Armed Forces Rosalie J. Kelley, Tina M. Waliczek, and F. Alice Le Duc public health implications; for example, greater health care utilization and mortality would be especially problematic for this relatively young, working age population ( Falvo et al., 2012 ). Upon return from deployment, veterans often suffer with mental In HortScience Volume 52 (2017): Issue 12 (Dec 2017) Characterizing the Phytotoxic Effects of Hydrogen Peroxide Root Dips on Hybrid Phalaenopsis Orchid Plants Renata Goossen and Kimberly A. Williams under replicated or controlled conditions. H 2 O 2 is a well-known oxidizing agent often used as a remedy by consumers to treat algae and root decay from presumed root disease on interior plants, as well as to encourage root growth and health In HortTechnology Volume 31 (2021): Issue 6 (Dec 2021) Factors Affecting School Grounds and Athletic Field Quality after Pesticide Bans: The Case of Connecticut Candace Bartholomew, Benjamin L. Campbell, and Victoria Wallace care pesticides were banned from kindergarten to eighth grade public/private schools and day care centers. The only exception is in the case of an imminent threat to human health, whereby pesticides could be applied with the authorization of the The Effect of Urban Tree Canopy Cover and Vegetation Levels on Incidence of Stress-related Illnesses in Humans in Metropolitan Statistical Areas of Texas Ghazal Tarar, Coleman L. Etheredge, Amy McFarland, Amy Snelgrove, Tina M. Waliczek, and Jayne M. Zajicek Prevention (CDC). Behavior Risk Factor Surveillance System is a state-based system of health surveys generating information about health risk behaviors, clinical preventive practices, and health care access and use primarily related to chronic diseases and Dietary Supplements: The New Herbalism Lyle E. Craker and Zoë Gardner The passage of the Dietary Supplement Health and Education Act in 1994 made the use of supplements more acceptable in the U.S., increasing demand for botanicals to use in health care and maintenance. These botanicals, primarily medicinal and aromatic plants, currently represent about 25% of the dietary supplement market in the U.S. Although much of the market for botanicals traditionally has been met through collection of plants in the wild, enhanced cultivation of several species will be essential to bring standardized, quality plant materials into the marketplace. Effect of Cultivation Methods on Seed Yield Traits, Oil Yield, and Fatty Acid Compositions of Cultivated Paeonia ostii Tong Zhang, Zheng Zhang, Qi Qiao, Wei Liu, and Xiaogai Hou omega-3 fatty acids. As an alternative source of omega-3 fatty acids, P. ostii has different uses in many fields, such as the health care, food, cosmetics, and pharmaceutical industries ( Han et al., 2016 ). Although seed oil of P. ostii has Vegetarianism and Human Health
[ 661, 778, 4475, 304, 714, 17433, 1998, 1169, 892, 10225, 310, 18872, 322, 443, 510, 3921, 519, 14826, 5855, 29889, 450, 2582, 4368, 393, 372, 1795, 367, 1950, 304, 27391, 278, 1532, 29899, 915, 292, 310, 9642, 15724, 8471, 297, 302, 1295, 292, 17774, 491, 13138, 963, 411, 28602, 1907, 304, 6493, 714, 17433, 7933, 23136, 29889, 2648, 10231, 278, 2130, 4127, 322, 13978, 20193, 310, 278, 714, 17433, 5177, 29892, 278, 10868, 310, 714, 17433, 1998, 1169, 1033, 7910, 29892, 9819, 297, 2253, 17189, 2347, 9045, 29889, 1954, 14607, 310, 29380, 1006, 794, 1080, 393, 16089, 10388, 1629, 29899, 14486, 714, 17433, 1998, 1169, 526, 13622, 29889, 13, 1576, 14305, 627, 310, 379, 441, 3953, 3631, 2538, 29886, 787, 4127, 373, 15202, 1894, 293, 4097, 322, 751, 2877, 310, 4634, 297, 4007, 12652, 26176, 13, 20216, 566, 423, 315, 29889, 26410, 322, 3218, 3100, 341, 29889, 438, 29915, 5594, 351, 5403, 13, 29899, 8489, 2562, 23330, 674, 7910, 8541, 19574, 29889, 910, 20201, 616, 9500, 6858, 385, 4392, 3381, 310, 278, 11029, 310, 2834, 363, 278, 9642, 16157, 29879, 1058, 674, 620, 680, 297, 1906, 23330, 29889, 9082, 29891, 322, 1583, 29899, 29878, 630, 9045, 313, 14098, 29950, 29897, 505, 1063, 1476, 304, 367, 1023, 310, 278, 1556, 13, 1576, 26475, 29879, 310, 7646, 8697, 21775, 1907, 373, 16777, 5996, 3767, 404, 29892, 897, 2590, 29892, 322, 530, 29916, 21549, 4249, 3014, 5088, 1237, 11644, 1816, 1490, 297, 278, 501, 29889, 29903, 29889, 826, 2168, 25571, 13, 29934, 359, 284, 347, 435, 29889, 476, 1808, 29891, 29892, 323, 1099, 341, 29889, 5260, 293, 11907, 29892, 322, 383, 29889, 16308, 951, 29630, 13, 3597, 9045, 2411, 5795, 29936, 363, 1342, 29892, 7621, 9045, 2562, 3667, 2133, 322, 5758, 2877, 723, 367, 7148, 1108, 2454, 363, 445, 13774, 4123, 29892, 1985, 5046, 4665, 313, 12941, 1365, 634, 394, 1696, 29871, 29906, 29900, 29896, 29906, 13742, 19956, 736, 515, 18209, 29892, 25808, 550, 4049, 8812, 411, 19119, 13, 797, 379, 441, 29903, 15277, 16934, 29871, 29945, 29906, 313, 29906, 29900, 29896, 29955, 1125, 26246, 29871, 29896, 29906, 313, 6185, 29871, 29906, 29900, 29896, 29955, 29897, 13, 20755, 5281, 278, 1963, 3637, 327, 2251, 293, 26475, 29879, 310, 379, 11279, 1885, 28608, 29916, 680, 28272, 360, 4512, 373, 9665, 19515, 1963, 2883, 264, 15368, 1394, 305, 333, 1858, 1934, 13, 29934, 264, 532, 2921, 28054, 322, 12931, 495, 368, 319, 29889, 11648, 13, 5062, 1634, 9169, 470, 20704, 5855, 29889, 379, 29871, 29906, 438, 29871, 29906, 338, 263, 1532, 29899, 5203, 19100, 333, 5281, 10823, 4049, 1304, 408, 263, 1083, 7584, 491, 11233, 414, 304, 7539, 3093, 3660, 322, 3876, 20228, 515, 2225, 21571, 3876, 17135, 373, 13290, 18577, 29892, 408, 1532, 408, 304, 13731, 6617, 3876, 14321, 322, 9045, 13, 797, 379, 441, 7141, 3049, 3002, 16934, 29871, 29941, 29896, 313, 29906, 29900, 29906, 29896, 1125, 26246, 29871, 29953, 313, 6185, 29871, 29906, 29900, 29906, 29896, 29897, 13, 20738, 943, 319, 7161, 292, 4523, 1632, 3885, 322, 17183, 293, 8989, 751, 2877, 1156, 349, 15931, 680, 350, 550, 29901, 450, 11733, 310, 27230, 13, 29907, 392, 815, 2261, 386, 324, 608, 29893, 29892, 20212, 365, 29889, 22163, 29892, 322, 14212, 5260, 1265, 13, 18020, 282, 15931, 2247, 892, 289, 11310, 515, 2924, 15064, 8109, 304, 321, 18919, 19468, 970, 29914, 9053, 12462, 322, 2462, 2562, 1644, 414, 29889, 450, 871, 3682, 338, 297, 278, 1206, 310, 385, 527, 1195, 296, 28469, 304, 5199, 9045, 29892, 988, 1609, 282, 15931, 2247, 1033, 367, 7436, 411, 278, 28733, 310, 278, 13, 1576, 26475, 310, 22589, 15472, 1815, 2270, 26428, 322, 17236, 300, 362, 21597, 29879, 373, 9266, 5084, 310, 3767, 404, 29899, 12817, 8408, 2264, 267, 297, 13863, 550, 297, 28788, 13070, 936, 4683, 294, 310, 10319, 13, 29954, 29882, 834, 284, 11740, 279, 29892, 16816, 1171, 365, 29889, 382, 721, 12864, 29892, 28533, 4052, 29943, 279, 1049, 29892, 28533, 317, 9139, 17170, 345, 29892, 323, 1099, 341, 29889, 5260, 293, 11907, 29892, 322, 19556, 484, 341, 29889, 796, 1175, 625, 29895, 13, 6572, 7316, 313, 6530, 29907, 467, 1522, 16300, 390, 3873, 383, 7168, 6298, 345, 453, 749, 2184, 338, 263, 2106, 29899, 6707, 1788, 310, 9045, 26946, 952, 14655, 2472, 1048, 9045, 12045, 4010, 18930, 29892, 24899, 936, 5557, 573, 23274, 29892, 322, 9045, 2562, 2130, 322, 671, 19434, 4475, 304, 17168, 293, 10267, 2129, 322, 13, 29928, 2035, 653, 9179, 944, 29879, 29901, 450, 1570, 2439, 5521, 1608, 13, 29931, 1508, 382, 29889, 14279, 3946, 322, 17421, 30083, 15971, 1089, 13, 1576, 13382, 310, 278, 24315, 653, 9179, 944, 15202, 322, 13151, 3185, 297, 29871, 29896, 29929, 29929, 29946, 1754, 278, 671, 310, 1462, 944, 29879, 901, 22691, 297, 278, 501, 29889, 29903, 1696, 10231, 9667, 363, 24662, 936, 29879, 304, 671, 297, 9045, 2562, 322, 25413, 29889, 4525, 24662, 936, 29879, 29892, 19434, 13589, 979, 322, 263, 456, 2454, 18577, 29892, 5279, 2755, 1048, 29871, 29906, 29945, 29995, 310, 278, 652, 300, 653, 1462, 944, 9999, 297, 278, 501, 29889, 29903, 29889, 8512, 1568, 310, 278, 9999, 363, 24662, 936, 29879, 11399, 635, 756, 1063, 1539, 1549, 4333, 310, 18577, 297, 278, 8775, 29892, 427, 29308, 18834, 362, 310, 3196, 6606, 674, 367, 18853, 304, 6963, 3918, 1891, 29892, 11029, 8024, 17279, 964, 278, 9999, 6689, 29889, 13, 13971, 310, 7965, 440, 362, 8108, 29879, 373, 922, 287, 612, 969, 3201, 1169, 29892, 438, 309, 612, 969, 29892, 322, 383, 271, 1017, 7255, 333, 24497, 2187, 310, 7965, 440, 630, 2621, 29872, 6405, 14750, 2236, 13, 29911, 549, 796, 11895, 29892, 27134, 996, 796, 11895, 29892, 660, 29875, 660, 29653, 29892, 25277, 2718, 29884, 29892, 322, 1060, 423, 468, 1794, 18832, 13, 4787, 29899, 29941, 9950, 1017, 1274, 4841, 29889, 1094, 385, 8671, 2752, 310, 2703, 2442, 29899, 29941, 9950, 1017, 1274, 4841, 29892, 349, 29889, 14750, 2236, 756, 1422, 3913, 297, 1784, 4235, 29892, 1316, 408, 278, 9045, 2562, 29892, 9687, 29892, 6776, 2527, 1199, 29892, 322, 1374, 22824, 346, 329, 936, 6397, 2722, 313, 7169, 634, 394, 1696, 29871, 29906, 29900, 29896, 29953, 13742, 8512, 16717, 17182, 310, 349, 29889, 14750, 2236, 756, 13, 29963, 387, 300, 13956, 1608, 322, 12968, 15202 ]
1,024
CommonCrawl
-0.308992
0.126529
0.307656
1.200115
struct GPUCreateCommandBufferConfig; struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params; struct GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params; struct GpuHostMsg_AcceleratedSurfaceRelease_Params; namespace gfx { struct GpuMemoryBufferHandle; } namespace IPC { struct ChannelHandle; } namespace content { class BrowserChildProcessHostImpl; class GpuMainThread; class RenderWidgetHostViewFrameSubscriber; class ShaderDiskCache; typedef base::Thread* (*GpuMainThreadFactoryFunction)(const std::string& id); class GpuProcessHost : public BrowserChildProcessHostDelegate, public IPC::Sender, public base::NonThreadSafe { public: enum GpuProcessKind { GPU_PROCESS_KIND_UNSANDBOXED, GPU_PROCESS_KIND_SANDBOXED, GPU_PROCESS_KIND_COUNT }; typedef base::Callback<void(const IPC::ChannelHandle&, const gpu::GPUInfo&)> EstablishChannelCallback; typedef base::Callback<void(bool)> CreateCommandBufferCallback; typedef base::Callback<void(const gfx::Size)> CreateImageCallback; typedef base::Callback<void(const gfx::GpuMemoryBufferHandle& handle)> CreateGpuMemoryBufferCallback; static bool gpu_enabled() { return gpu_enabled_; } // Creates a new GpuProcessHost or gets an existing one, resulting in the // launching of a GPU process if required. Returns null on failure. It // is not safe to store the pointer once control has returned to the message // loop as it can be destroyed. Instead store the associated GPU host ID. // This could return NULL if GPU access is not allowed (blacklisted). CONTENT_EXPORT static GpuProcessHost* Get(GpuProcessKind kind, CauseForGpuLaunch cause); // Retrieves a list of process handles for all gpu processes. static void GetProcessHandles( const GpuDataManager::GetGpuProcessHandlesCallback& callback); // Helper function to send the given message to the GPU process on the IO // thread. Calls Get and if a host is returned, sends it. Can be called from // any thread. Deletes the message if it cannot be sent. CONTENT_EXPORT static void SendOnIO(GpuProcessKind kind, CauseForGpuLaunch cause, IPC::Message* message); CONTENT_EXPORT static void RegisterGpuMainThreadFactory( GpuMainThreadFactoryFunction create); // Get the GPU process host for the GPU process with the given ID. Returns // null if the process no longer exists. static GpuProcessHost* FromID(int host_id); int host_id() const { return host_id_; } // IPC::Sender implementation. virtual bool Send(IPC::Message* msg) OVERRIDE; // Adds a message filter to the GpuProcessHost's channel. void AddFilter(IPC::MessageFilter* filter); // Tells the GPU process to create a new channel for communication with a // client. Once the GPU process responds asynchronously with the IPC handle // and GPUInfo, we call the callback. void EstablishGpuChannel(int client_id, bool share_context, bool allow_future_sync_points, const EstablishChannelCallback& callback); // Tells the GPU process to create a new command buffer that draws into the // given surface. void CreateViewCommandBuffer( const gfx::GLSurfaceHandle& compositing_surface, int surface_id, int client_id, const GPUCreateCommandBufferConfig& init_params, int route_id, const CreateCommandBufferCallback& callback); // Tells the GPU process to create a new image using the given window. void CreateImage( gfx::PluginWindowHandle window, int
[ 2281, 22796, 4391, 6255, 7701, 3991, 29936, 13, 4984, 402, 3746, 8514, 16190, 29918, 7504, 7367, 630, 18498, 2161, 29933, 3096, 414, 10840, 17280, 29918, 9629, 29936, 13, 4984, 402, 3746, 8514, 16190, 29918, 7504, 7367, 630, 18498, 2161, 6747, 4035, 7701, 29918, 9629, 29936, 13, 4984, 402, 3746, 8514, 16190, 29918, 7504, 7367, 630, 18498, 2161, 19729, 29918, 9629, 29936, 13, 13, 22377, 330, 11093, 426, 13, 4984, 402, 3746, 16015, 7701, 13554, 29936, 13, 29913, 13, 13, 22377, 5641, 29907, 426, 13, 4984, 17368, 13554, 29936, 13, 29913, 13, 13, 22377, 2793, 426, 13, 1990, 27088, 5938, 7032, 8514, 6647, 29936, 13, 1990, 402, 3746, 6330, 4899, 29936, 13, 1990, 26000, 8801, 8514, 1043, 4308, 4035, 7588, 495, 29936, 13, 1990, 1383, 1664, 29928, 3873, 10408, 29936, 13, 13, 1017, 9795, 1389, 2967, 1057, 4899, 29930, 3070, 29954, 3746, 6330, 4899, 5126, 6678, 5033, 3075, 3659, 1057, 1807, 29987, 1178, 416, 13, 13, 1990, 402, 3746, 7032, 8514, 584, 970, 27088, 5938, 7032, 8514, 11494, 29892, 13, 462, 539, 970, 5641, 29907, 1057, 29615, 29892, 13, 462, 539, 970, 2967, 1057, 12283, 4899, 17618, 1725, 426, 13, 970, 29901, 13, 29871, 14115, 402, 3746, 7032, 11885, 426, 13, 1678, 22796, 29918, 8618, 23524, 29918, 29968, 22255, 29918, 29965, 3059, 2190, 4051, 29949, 29990, 3352, 29892, 13, 1678, 22796, 29918, 8618, 23524, 29918, 29968, 22255, 29918, 29903, 2190, 4051, 29949, 29990, 3352, 29892, 13, 1678, 22796, 29918, 8618, 23524, 29918, 29968, 22255, 29918, 18736, 13, 29871, 3980, 13, 13, 29871, 21787, 2967, 1057, 10717, 29966, 5405, 29898, 3075, 5641, 29907, 1057, 13599, 13554, 29987, 29892, 1040, 330, 3746, 1057, 29954, 7056, 3401, 29987, 15410, 13, 418, 2661, 370, 1674, 13599, 10717, 29936, 13, 13, 29871, 21787, 2967, 1057, 10717, 29966, 5405, 29898, 11227, 15410, 6204, 6255, 7701, 10717, 29936, 13, 13, 29871, 21787, 2967, 1057, 10717, 29966, 5405, 29898, 3075, 330, 11093, 1057, 3505, 15410, 6204, 2940, 10717, 29936, 13, 13, 29871, 21787, 2967, 1057, 10717, 29966, 5405, 29898, 3075, 330, 11093, 1057, 29954, 3746, 16015, 7701, 13554, 29987, 4386, 15410, 13, 418, 6204, 29954, 3746, 16015, 7701, 10717, 29936, 13, 13, 29871, 2294, 6120, 330, 3746, 29918, 17590, 580, 426, 736, 330, 3746, 29918, 17590, 16141, 500, 13, 13, 29871, 849, 6760, 1078, 263, 716, 402, 3746, 7032, 8514, 470, 4947, 385, 5923, 697, 29892, 9819, 297, 278, 13, 29871, 849, 6826, 292, 310, 263, 22796, 1889, 565, 3734, 29889, 29871, 16969, 1870, 373, 10672, 29889, 739, 13, 29871, 849, 338, 451, 9109, 304, 3787, 278, 4879, 2748, 2761, 756, 4133, 304, 278, 2643, 13, 29871, 849, 2425, 408, 372, 508, 367, 14416, 29889, 8669, 3787, 278, 6942, 22796, 3495, 3553, 29889, 13, 29871, 849, 910, 1033, 736, 4265, 565, 22796, 2130, 338, 451, 6068, 313, 8517, 1761, 287, 467, 13, 29871, 8707, 29911, 3919, 29918, 5746, 15082, 2294, 402, 3746, 7032, 8514, 29930, 3617, 29898, 29954, 3746, 7032, 11885, 2924, 29892, 13, 462, 462, 9651, 315, 1071, 2831, 29954, 3746, 17641, 4556, 416, 13, 13, 29871, 849, 19338, 1960, 263, 1051, 310, 1889, 17766, 363, 599, 330, 3746, 10174, 29889, 13, 29871, 2294, 1780, 3617, 7032, 3481, 793, 29898, 13, 418, 1040, 402, 3746, 1469, 3260, 1057, 2577, 29954, 3746, 7032, 3481, 793, 10717, 29987, 6939, 416, 13, 13, 29871, 849, 6162, 546, 740, 304, 3638, 278, 2183, 2643, 304, 278, 22796, 1889, 373, 278, 10663, 13, 29871, 849, 3244, 29889, 29871, 315, 4293, 3617, 322, 565, 263, 3495, 338, 4133, 29892, 16003, 372, 29889, 29871, 1815, 367, 2000, 515, 13, 29871, 849, 738, 3244, 29889, 29871, 897, 1026, 267, 278, 2643, 565, 372, 2609, 367, 2665, 29889, 13, 29871, 8707, 29911, 3919, 29918, 5746, 15082, 2294, 1780, 15076, 2951, 5971, 29898, 29954, 3746, 7032, 11885, 2924, 29892, 13, 462, 462, 418, 315, 1071, 2831, 29954, 3746, 17641, 4556, 29892, 13, 462, 462, 418, 5641, 29907, 1057, 3728, 29930, 2643, 416, 13, 13, 29871, 8707, 29911, 3919, 29918, 5746, 15082, 2294, 1780, 12577, 29954, 3746, 6330, 4899, 5126, 29898, 13, 418, 402, 3746, 6330, 4899, 5126, 6678, 1653, 416, 13, 13, 29871, 849, 3617, 278, 22796, 1889, 3495, 363, 278, 22796, 1889, 411, 278, 2183, 3553, 29889, 16969, 13, 29871, 849, 1870, 565, 278, 1889, 694, 5520, 4864, 29889, 13, 29871, 2294, 402, 3746, 7032, 8514, 29930, 3645, 1367, 29898, 524, 3495, 29918, 333, 416, 13, 29871, 938, 3495, 29918, 333, 580, 1040, 426, 736, 3495, 29918, 333, 16141, 500, 13, 13, 29871, 849, 5641, 29907, 1057, 29615, 5314, 29889, 13, 29871, 6901, 6120, 15076, 29898, 5690, 29907, 1057, 3728, 29930, 10191, 29897, 438, 5348, 29934, 22027, 29936, 13, 13, 29871, 849, 3462, 29879, 263, 2643, 4175, 304, 278, 402, 3746, 7032, 8514, 29915, 29879, 8242, 29889, 13, 29871, 1780, 3462, 5072, 29898, 5690, 29907, 1057, 3728, 5072, 29930, 4175, 416, 13, 13, 29871, 849, 323, 10071, 278, 22796, 1889, 304, 1653, 263, 716, 8242, 363, 12084, 411, 263, 13, 29871, 849, 3132, 29889, 9038, 278, 22796, 1889, 10049, 29879, 408, 9524, 5794, 411, 278, 5641, 29907, 4386, 13, 29871, 849, 322, 22796, 3401, 29892, 591, 1246, 278, 6939, 29889, 13, 29871, 1780, 2661, 370, 1674, 29954, 3746, 13599, 29898, 524, 3132, 29918, 333, 29892, 13, 462, 965, 6120, 6232, 29918, 4703, 29892, 13, 462, 965, 6120, 2758, 29918, 29888, 9130, 29918, 16593, 29918, 9748, 29892, 13, 462, 965, 1040, 2661, 370, 1674, 13599, 10717, 29987, 6939, 416, 13, 13, 29871, 849, 323, 10071, 278, 22796, 1889, 304, 1653, 263, 716, 1899, 6835, 393, 4216, 29879, 964, 278, 13, 29871, 849, 2183, 7101, 29889, 13, 29871, 1780, 6204, 1043, 6255, 7701, 29898, 13, 418, 1040, 330, 11093, 1057, 7239, 18498, 2161, 13554, 29987, 5541, 11407, 29918, 7610, 2161, 29892, 13, 418, 938, 7101, 29918, 333, 29892, 13, 418, 938, 3132, 29918, 333, 29892, 13, 418, 1040, 22796, 4391, 6255, 7701, 3991, 29987, 2069, 29918, 7529, 29892, 13, 418, 938, 5782, 29918, 333, 29892, 13, 418, 1040, 6204, 6255, 7701, 10717, 29987, 6939, 416, 13, 13, 29871, 849, 323, 10071, 278, 22796, 1889, 304, 1653, 263, 716, 1967, 773, 278, 2183, 3474, 29889, 13, 29871, 1780, 6204, 2940, 29898, 13, 418, 330, 11093, 1057, 16288, 5907, 13554, 3474, 29892, 13, 418, 938 ]
1,024
Github
-1.01271
1.293237
-0.229415
-0.146978
client_id, int image_id, const CreateImageCallback& callback); // Tells the GPU process to delete image. void DeleteImage(int client_id, int image_id, int sync_point); void CreateGpuMemoryBuffer(const gfx::GpuMemoryBufferHandle& handle, const gfx::Size& size, unsigned internalformat, unsigned usage, const CreateGpuMemoryBufferCallback& callback); void DestroyGpuMemoryBuffer(const gfx::GpuMemoryBufferHandle& handle, int sync_point); // What kind of GPU process, e.g. sandboxed or unsandboxed. GpuProcessKind kind(); void ForceShutdown(); void BeginFrameSubscription( int surface_id, base::WeakPtr<RenderWidgetHostViewFrameSubscriber> subscriber); void EndFrameSubscription(int surface_id); void LoadedShader(const std::string& key, const std::string& data); private: static bool ValidateHost(GpuProcessHost* host); GpuProcessHost(int host_id, GpuProcessKind kind); virtual ~GpuProcessHost(); bool Init(); // Post an IPC message to the UI shim's message handler on the UI thread. void RouteOnUIThread(const IPC::Message& message); // BrowserChildProcessHostDelegate implementation. virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; virtual void OnProcessLaunched() OVERRIDE; virtual void OnProcessCrashed(int exit_code) OVERRIDE; // Message handlers. void OnInitialized(bool result, const gpu::GPUInfo& gpu_info); void OnChannelEstablished(const IPC::ChannelHandle& channel_handle); void OnCommandBufferCreated(bool succeeded); void OnDestroyCommandBuffer(int32 surface_id); void OnImageCreated(const gfx::Size size); void OnGpuMemoryBufferCreated(const gfx::GpuMemoryBufferHandle& handle); void OnDidCreateOffscreenContext(const GURL& url); void OnDidLoseContext(bool offscreen, gpu::error::ContextLostReason reason, const GURL& url); void OnDidDestroyOffscreenContext(const GURL& url); void OnGpuMemoryUmaStatsReceived(const GPUMemoryUmaStats& stats); #if defined(OS_MACOSX) void OnAcceleratedSurfaceBuffersSwapped( const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params); #endif void CreateChannelCache(int32 client_id); void OnDestroyChannel(int32 client_id); void OnCacheShader(int32 client_id, const std::string& key, const std::string& shader); bool LaunchGpuProcess(const std::string& channel_id); void SendOutstandingReplies(); void BlockLiveOffscreenContexts(); std::string GetShaderPrefixKey(); // The serial number of the GpuProcessHost / GpuProcessHostUIShim pair. int host_id_; // These are the channel requests that we have already sent to // the GPU process, but haven't heard back about yet. std::queue<EstablishChannelCallback> channel_requests_; // The pending create command buffer requests we need to reply to. std::queue<CreateCommandBufferCallback> create_command_buffer_requests_; // The pending create image requests we need to reply to. std::queue<CreateImageCallback> create_image_requests_; // The pending create gpu memory buffer requests we need to reply to. std::queue<CreateGpuMemoryBufferCallback> create_gpu_memory_buffer_requests_; // Qeueud messages to send when the process launches. std::queue<IPC::Message*> queued_messages_;
[ 3132, 29918, 333, 29892, 13, 418, 938, 1967, 29918, 333, 29892, 13, 418, 1040, 6204, 2940, 10717, 29987, 6939, 416, 13, 13, 1678, 849, 323, 10071, 278, 22796, 1889, 304, 5217, 1967, 29889, 13, 29871, 1780, 21267, 2940, 29898, 524, 3132, 29918, 333, 29892, 938, 1967, 29918, 333, 29892, 938, 16523, 29918, 3149, 416, 13, 13, 29871, 1780, 6204, 29954, 3746, 16015, 7701, 29898, 3075, 330, 11093, 1057, 29954, 3746, 16015, 7701, 13554, 29987, 4386, 29892, 13, 462, 632, 1040, 330, 11093, 1057, 3505, 29987, 2159, 29892, 13, 462, 632, 12780, 7463, 4830, 29892, 13, 462, 632, 12780, 8744, 29892, 13, 462, 632, 1040, 6204, 29954, 3746, 16015, 7701, 10717, 29987, 6939, 416, 13, 29871, 1780, 15435, 4727, 29954, 3746, 16015, 7701, 29898, 3075, 330, 11093, 1057, 29954, 3746, 16015, 7701, 13554, 29987, 4386, 29892, 13, 462, 795, 938, 16523, 29918, 3149, 416, 13, 13, 29871, 849, 1724, 2924, 310, 22796, 1889, 29892, 321, 29889, 29887, 29889, 11982, 1884, 287, 470, 9644, 26738, 287, 29889, 13, 29871, 402, 3746, 7032, 11885, 2924, 890, 13, 13, 29871, 1780, 11004, 2713, 329, 3204, 890, 13, 13, 29871, 1780, 14893, 4308, 4035, 22371, 29898, 13, 418, 938, 7101, 29918, 333, 29892, 13, 418, 2967, 1057, 4806, 557, 12058, 29966, 10716, 8801, 8514, 1043, 4308, 4035, 7588, 495, 29958, 21696, 495, 416, 13, 29871, 1780, 2796, 4308, 4035, 22371, 29898, 524, 7101, 29918, 333, 416, 13, 29871, 1780, 4309, 11932, 2713, 1664, 29898, 3075, 3659, 1057, 1807, 29987, 1820, 29892, 1040, 3659, 1057, 1807, 29987, 848, 416, 13, 13, 2024, 29901, 13, 29871, 2294, 6120, 15758, 403, 8514, 29898, 29954, 3746, 7032, 8514, 29930, 3495, 416, 13, 13, 29871, 402, 3746, 7032, 8514, 29898, 524, 3495, 29918, 333, 29892, 402, 3746, 7032, 11885, 2924, 416, 13, 29871, 6901, 3695, 29954, 3746, 7032, 8514, 890, 13, 13, 29871, 6120, 10886, 890, 13, 13, 29871, 849, 4918, 385, 5641, 29907, 2643, 304, 278, 3740, 528, 326, 29915, 29879, 2643, 7834, 373, 278, 3740, 3244, 29889, 13, 29871, 1780, 12034, 2951, 3120, 4899, 29898, 3075, 5641, 29907, 1057, 3728, 29987, 2643, 416, 13, 13, 29871, 849, 27088, 5938, 7032, 8514, 11494, 5314, 29889, 13, 29871, 6901, 6120, 1551, 3728, 29816, 29898, 3075, 5641, 29907, 1057, 3728, 29987, 2643, 29897, 438, 5348, 29934, 22027, 29936, 13, 29871, 6901, 1780, 1551, 13599, 20971, 2954, 29898, 524, 29941, 29906, 23533, 29918, 5935, 29897, 438, 5348, 29934, 22027, 29936, 13, 29871, 6901, 1780, 1551, 7032, 17641, 287, 580, 438, 5348, 29934, 22027, 29936, 13, 29871, 6901, 1780, 1551, 7032, 20647, 25936, 29898, 524, 6876, 29918, 401, 29897, 438, 5348, 29934, 22027, 29936, 13, 13, 29871, 849, 7777, 25795, 29889, 13, 29871, 1780, 1551, 15514, 1891, 29898, 11227, 1121, 29892, 1040, 330, 3746, 1057, 29954, 7056, 3401, 29987, 330, 3746, 29918, 3888, 416, 13, 29871, 1780, 1551, 13599, 12787, 370, 3726, 29898, 3075, 5641, 29907, 1057, 13599, 13554, 29987, 8242, 29918, 8411, 416, 13, 29871, 1780, 1551, 6255, 7701, 20399, 29898, 11227, 14792, 416, 13, 29871, 1780, 1551, 14994, 4727, 6255, 7701, 29898, 524, 29941, 29906, 7101, 29918, 333, 416, 13, 29871, 1780, 1551, 2940, 20399, 29898, 3075, 330, 11093, 1057, 3505, 2159, 416, 13, 29871, 1780, 1551, 29954, 3746, 16015, 7701, 20399, 29898, 3075, 330, 11093, 1057, 29954, 3746, 16015, 7701, 13554, 29987, 4386, 416, 13, 29871, 1780, 1551, 9260, 4391, 6880, 10525, 2677, 29898, 3075, 402, 4219, 29987, 3142, 416, 13, 29871, 1780, 1551, 9260, 29931, 852, 2677, 29898, 11227, 1283, 10525, 29892, 13, 462, 4706, 330, 3746, 1057, 2704, 1057, 2677, 29931, 520, 1123, 1658, 2769, 29892, 13, 462, 4706, 1040, 402, 4219, 29987, 3142, 416, 13, 29871, 1780, 1551, 9260, 14994, 4727, 6880, 10525, 2677, 29898, 3075, 402, 4219, 29987, 3142, 416, 13, 29871, 1780, 1551, 29954, 3746, 16015, 29965, 655, 25060, 29816, 29898, 3075, 28258, 5005, 331, 706, 29965, 655, 25060, 29987, 22663, 416, 13, 29937, 361, 3342, 29898, 3267, 29918, 1529, 3217, 29903, 29990, 29897, 13, 29871, 1780, 1551, 7504, 7367, 630, 18498, 2161, 29933, 3096, 414, 10840, 17280, 29898, 13, 418, 1040, 402, 3746, 8514, 16190, 29918, 7504, 7367, 630, 18498, 2161, 29933, 3096, 414, 10840, 17280, 29918, 9629, 29987, 8636, 416, 13, 29937, 15224, 13, 13, 29871, 1780, 6204, 13599, 10408, 29898, 524, 29941, 29906, 3132, 29918, 333, 416, 13, 29871, 1780, 1551, 14994, 4727, 13599, 29898, 524, 29941, 29906, 3132, 29918, 333, 416, 13, 29871, 1780, 1551, 10408, 2713, 1664, 29898, 524, 29941, 29906, 3132, 29918, 333, 29892, 1040, 3659, 1057, 1807, 29987, 1820, 29892, 13, 462, 268, 1040, 3659, 1057, 1807, 29987, 528, 1664, 416, 13, 13, 29871, 6120, 997, 3322, 29954, 3746, 7032, 29898, 3075, 3659, 1057, 1807, 29987, 8242, 29918, 333, 416, 13, 13, 29871, 1780, 15076, 3744, 11235, 5612, 3687, 890, 13, 13, 29871, 1780, 15658, 23859, 6880, 10525, 2677, 29879, 890, 13, 13, 29871, 3659, 1057, 1807, 3617, 2713, 1664, 23095, 2558, 890, 13, 13, 29871, 849, 450, 7797, 1353, 310, 278, 402, 3746, 7032, 8514, 847, 402, 3746, 7032, 8514, 3120, 2713, 326, 5101, 29889, 13, 29871, 938, 3495, 29918, 333, 16141, 13, 13, 29871, 849, 4525, 526, 278, 8242, 7274, 393, 591, 505, 2307, 2665, 304, 13, 29871, 849, 278, 22796, 1889, 29892, 541, 7359, 29915, 29873, 6091, 1250, 1048, 3447, 29889, 13, 29871, 3659, 1057, 9990, 29966, 12787, 370, 1674, 13599, 10717, 29958, 8242, 29918, 24830, 16141, 13, 13, 29871, 849, 450, 28235, 1653, 1899, 6835, 7274, 591, 817, 304, 8908, 304, 29889, 13, 29871, 3659, 1057, 9990, 29966, 4391, 6255, 7701, 10717, 29958, 1653, 29918, 6519, 29918, 9040, 29918, 24830, 16141, 13, 13, 29871, 849, 450, 28235, 1653, 1967, 7274, 591, 817, 304, 8908, 304, 29889, 13, 29871, 3659, 1057, 9990, 29966, 4391, 2940, 10717, 29958, 1653, 29918, 3027, 29918, 24830, 16141, 13, 13, 29871, 849, 450, 28235, 1653, 330, 3746, 3370, 6835, 7274, 591, 817, 304, 8908, 304, 29889, 13, 29871, 3659, 1057, 9990, 29966, 4391, 29954, 3746, 16015, 7701, 10717, 29958, 1653, 29918, 29887, 3746, 29918, 14834, 29918, 9040, 29918, 24830, 16141, 13, 13, 29871, 849, 660, 29872, 434, 566, 7191, 304, 3638, 746, 278, 1889, 6826, 267, 29889, 13, 29871, 3659, 1057, 9990, 29966, 5690, 29907, 1057, 3728, 29930, 29958, 712, 6742, 29918, 19158, 16141 ]
1,024
Github
-1.314304
0.755954
-0.553092
-0.605496
Frisbie History, Family Crest & Coats of Arms The vast movement of people that followed the Norman Conquest of England of 1066 brought the Frisbie family name to the British Isles. They lived in Leicestershire, in a town called Frisby which is now lost to the map. A number of towns called Frisby exist in England, all deriving their names from the Old Norman word frisir, which indicated someone from the area of Frisia or Friesland. Early Origins of the Frisbie family The surname Frisbie was first found in Leicestershire where the family were Lords of the manor of Frisby at the time of the taking of the Domesday Book, [1] a survey by William the Conqueror in 1086, after his conquest of England in 1066 A.D. Conjecturally they are descended from Fulk, a Norman noble who held this land from Hugh de Grandmesnil. The village is now deserted and lies on Frisby Hall farmland. Also in Leicestershire Frisby on the Wreake were estates held by Earl Hugh and may have had some connection to the family. Important Dates for the Frisbie family This web page shows only a small excerpt of our Frisbie research. Another 71 words (5 lines of text) covering the years 1965 and 1929 are included under the topic Early Frisbie History in all our PDF Extended History products and printed products wherever possible. Frisbie Spelling Variations A multitude of spelling variations characterize Norman surnames. Many variations occurred because Old and Middle English lacked any definite spelling rules. The introduction of Norman French to England also had a pronounced effect, as did the court languages of Latin and French. Therefore, one person was often referred to by several different spellings in a single lifetime. The various spellings include Frisbie, Frisby, Frisbee, Frisebie, Frisebye, Friseby and many more. Early Notables of the Frisbie family (pre 1700) More information is included under the topic Early Frisbie Notables in all our PDF Extended History products and printed products wherever possible. Migration of the Frisbie family to Ireland Some of the Frisbie family moved to Ireland, but this topic is not covered in this excerpt. More information about their life in Ireland is included in all our PDF Extended History products and printed products wherever possible. Frisbie migration to the United States Many English families left England, to avoid the chaos of their homeland and migrated to the many British colonies abroad. Although the conditions on the ships were extremely cramped, and some travelers arrived diseased, starving, and destitute, once in the colonies, many of the families prospered and made valuable contributions to the cultures of what would become the United States and Canada. Research into the origins of individual families in North America has revealed records of the immigration of a number of people bearing the name Frisbie or a variant listed above: Frisbie Settlers in United States in the 17th Century Richard Frisbie who settled Virginia in 1619 Richard Frisbie, who landed in Virginia in 1619 [2] L. Frisbie, who settled in Charles Town [Charleston], South Carolina in 1823 J K Frisbie, who arrived in San Francisco, California in 1851 [2] Dora Frisbie, aged 23, who landed in America, in 1894 Eugine Frisbie, aged 32, who landed in America, in 1894 Capt. Frisbie, aged 58, who immigrated to the United States, in 1896 Charles Frisbie, aged 11, who landed in America, in 1905 Florence Frisbie, aged 38, who immigrated to America, in 1905 Edward L Frisbie, who immigrated to the United States, in 1907 Ed L. Frisbie, who settled in America, in 1908 George A. Frisbie, aged 25, who landed in America, in 1909 ... (More are available in all our PDF Extended History products and printed products wherever possible.) Contemporary Notables of the
[ 383, 3780, 10993, 5298, 29892, 14662, 315, 5060, 669, 3189, 1446, 310, 826, 1516, 13, 1576, 13426, 10298, 310, 2305, 393, 5643, 278, 21296, 1281, 1119, 310, 5408, 310, 29871, 29896, 29900, 29953, 29953, 6296, 278, 383, 3780, 10993, 3942, 1024, 304, 278, 4908, 1317, 793, 29889, 2688, 10600, 297, 951, 293, 28910, 14812, 29892, 297, 263, 4726, 2000, 383, 3780, 1609, 607, 338, 1286, 5714, 304, 278, 2910, 29889, 319, 1353, 310, 20248, 2000, 383, 3780, 1609, 1863, 297, 5408, 29892, 599, 589, 4357, 1009, 2983, 515, 278, 8198, 21296, 1734, 1424, 275, 381, 29892, 607, 18694, 4856, 515, 278, 4038, 310, 383, 3780, 423, 470, 383, 2722, 1049, 29889, 13, 29923, 279, 368, 29766, 1144, 310, 278, 383, 3780, 10993, 3942, 13, 1576, 23403, 383, 3780, 10993, 471, 937, 1476, 297, 951, 293, 28910, 14812, 988, 278, 3942, 892, 365, 4339, 310, 278, 767, 272, 310, 383, 3780, 1609, 472, 278, 931, 310, 278, 5622, 310, 278, 7809, 267, 3250, 6726, 29892, 518, 29896, 29962, 263, 18994, 491, 4667, 278, 1281, 7808, 272, 297, 29871, 29896, 29900, 29947, 29953, 29892, 1156, 670, 378, 1119, 310, 5408, 297, 29871, 29896, 29900, 29953, 29953, 319, 29889, 29928, 29889, 1281, 622, 332, 635, 896, 526, 5153, 2760, 515, 23004, 29895, 29892, 263, 21296, 15996, 1058, 4934, 445, 2982, 515, 15888, 316, 6265, 4467, 8834, 29889, 450, 5720, 338, 1286, 18197, 287, 322, 12185, 373, 383, 3780, 1609, 6573, 2215, 828, 392, 29889, 3115, 297, 951, 293, 28910, 14812, 383, 3780, 1609, 373, 278, 399, 276, 1296, 892, 707, 1078, 4934, 491, 17169, 15888, 322, 1122, 505, 750, 777, 3957, 304, 278, 3942, 29889, 13, 17518, 424, 360, 1078, 363, 278, 383, 3780, 10993, 3942, 13, 4013, 1856, 1813, 3697, 871, 263, 2319, 429, 2265, 415, 310, 1749, 383, 3780, 10993, 5925, 29889, 7280, 29871, 29955, 29896, 3838, 313, 29945, 3454, 310, 1426, 29897, 21653, 278, 2440, 29871, 29896, 29929, 29953, 29945, 322, 29871, 29896, 29929, 29906, 29929, 526, 5134, 1090, 278, 11261, 11095, 383, 3780, 10993, 5298, 297, 599, 1749, 11328, 7338, 2760, 5298, 9316, 322, 13350, 9316, 29693, 1950, 29889, 13, 29943, 3780, 10993, 1706, 7807, 9586, 800, 13, 29909, 1773, 4279, 310, 805, 7807, 21833, 2931, 675, 21296, 269, 595, 1280, 29889, 9267, 21833, 10761, 1363, 8198, 322, 14253, 4223, 10225, 287, 738, 24860, 805, 7807, 6865, 29889, 450, 18707, 310, 21296, 5176, 304, 5408, 884, 750, 263, 11504, 20979, 2779, 29892, 408, 1258, 278, 8973, 10276, 310, 13548, 322, 5176, 29889, 7857, 29892, 697, 2022, 471, 4049, 12992, 304, 491, 3196, 1422, 24779, 886, 297, 263, 2323, 25423, 29889, 450, 5164, 24779, 886, 3160, 383, 3780, 10993, 29892, 383, 3780, 1609, 29892, 383, 3780, 915, 29872, 29892, 383, 3780, 774, 347, 29892, 383, 3780, 774, 4099, 29892, 383, 3780, 774, 29891, 322, 1784, 901, 29889, 13, 29923, 279, 368, 2216, 1849, 310, 278, 383, 3780, 10993, 3942, 313, 1457, 29871, 29896, 29955, 29900, 29900, 29897, 13, 20761, 2472, 338, 5134, 1090, 278, 11261, 11095, 383, 3780, 10993, 2216, 1849, 297, 599, 1749, 11328, 7338, 2760, 5298, 9316, 322, 13350, 9316, 29693, 1950, 29889, 13, 29924, 16783, 310, 278, 383, 3780, 10993, 3942, 304, 12126, 13, 9526, 310, 278, 383, 3780, 10993, 3942, 6153, 304, 12126, 29892, 541, 445, 11261, 338, 451, 10664, 297, 445, 429, 2265, 415, 29889, 5853, 2472, 1048, 1009, 2834, 297, 12126, 338, 5134, 297, 599, 1749, 11328, 7338, 2760, 5298, 9316, 322, 13350, 9316, 29693, 1950, 29889, 13, 29943, 3780, 10993, 20332, 304, 278, 3303, 3900, 13, 14804, 4223, 13175, 2175, 5408, 29892, 304, 4772, 278, 10329, 359, 310, 1009, 3632, 14045, 322, 9725, 630, 304, 278, 1784, 4908, 8104, 583, 28177, 29889, 8512, 278, 5855, 373, 278, 13968, 892, 14154, 2181, 1160, 287, 29892, 322, 777, 9850, 414, 11977, 10267, 1463, 29892, 5810, 1747, 29892, 322, 2731, 12356, 29892, 2748, 297, 278, 8104, 583, 29892, 1784, 310, 278, 13175, 25831, 287, 322, 1754, 21114, 20706, 304, 278, 4185, 1973, 310, 825, 723, 4953, 278, 3303, 3900, 322, 7400, 29889, 10550, 964, 278, 1677, 1144, 310, 5375, 13175, 297, 4644, 6813, 756, 17845, 6475, 310, 278, 5198, 16783, 310, 263, 1353, 310, 2305, 24638, 278, 1024, 383, 3780, 10993, 470, 263, 17305, 9904, 2038, 29901, 13, 29943, 3780, 10993, 317, 1803, 9306, 297, 3303, 3900, 297, 278, 29871, 29896, 29955, 386, 24027, 13, 25627, 538, 383, 3780, 10993, 1058, 17141, 11653, 297, 29871, 29896, 29953, 29896, 29929, 13, 25627, 538, 383, 3780, 10993, 29892, 1058, 2982, 287, 297, 11653, 297, 29871, 29896, 29953, 29896, 29929, 518, 29906, 29962, 13, 29931, 29889, 383, 3780, 10993, 29892, 1058, 17141, 297, 5322, 8421, 518, 5914, 29880, 21496, 1402, 4275, 13397, 297, 29871, 29896, 29947, 29906, 29941, 13, 29967, 476, 383, 3780, 10993, 29892, 1058, 11977, 297, 3087, 8970, 29892, 8046, 297, 29871, 29896, 29947, 29945, 29896, 518, 29906, 29962, 13, 29928, 2207, 383, 3780, 10993, 29892, 26552, 29871, 29906, 29941, 29892, 1058, 2982, 287, 297, 6813, 29892, 297, 29871, 29896, 29947, 29929, 29946, 13, 29923, 688, 457, 383, 3780, 10993, 29892, 26552, 29871, 29941, 29906, 29892, 1058, 2982, 287, 297, 6813, 29892, 297, 29871, 29896, 29947, 29929, 29946, 13, 21133, 29889, 383, 3780, 10993, 29892, 26552, 29871, 29945, 29947, 29892, 1058, 5198, 4481, 630, 304, 278, 3303, 3900, 29892, 297, 29871, 29896, 29947, 29929, 29953, 13, 5914, 793, 383, 3780, 10993, 29892, 26552, 29871, 29896, 29896, 29892, 1058, 2982, 287, 297, 6813, 29892, 297, 29871, 29896, 29929, 29900, 29945, 13, 29943, 5095, 663, 383, 3780, 10993, 29892, 26552, 29871, 29941, 29947, 29892, 1058, 5198, 4481, 630, 304, 6813, 29892, 297, 29871, 29896, 29929, 29900, 29945, 13, 3853, 1328, 365, 383, 3780, 10993, 29892, 1058, 5198, 4481, 630, 304, 278, 3303, 3900, 29892, 297, 29871, 29896, 29929, 29900, 29955, 13, 3853, 365, 29889, 383, 3780, 10993, 29892, 1058, 17141, 297, 6813, 29892, 297, 29871, 29896, 29929, 29900, 29947, 13, 7999, 3890, 319, 29889, 383, 3780, 10993, 29892, 26552, 29871, 29906, 29945, 29892, 1058, 2982, 287, 297, 6813, 29892, 297, 29871, 29896, 29929, 29900, 29929, 13, 856, 313, 20761, 526, 3625, 297, 599, 1749, 11328, 7338, 2760, 5298, 9316, 322, 13350, 9316, 29693, 1950, 1846, 13, 1323, 9059, 653, 2216, 1849, 310, 278 ]
1,024
CommonCrawl
-0.307718
-0.536802
0.797205
0.032634
How Seaton Elementary Became One of America's Healthiest Schools Bonnie Gallion Kids spend the majority of their days at school, giving schools a significant opportunity to support their health by encouraging healthy eating, physical activity and emotional well-being. The Alliance for a Healthier Generation's Healthy Schools Program works to create a culture of health at school where all students can thrive. The program has worked with more than 35,000 schools in every state plus the District of Columbia and Puerto Rico and is partly funded in some cities, including Washington, D.C., by Kaiser Permanente. Students at Seaton Elementary prepare a meal using vegetables from the school garden. The other day, I overheard one of my students asking her parents if they could have greens for dinner, like the ones she had sampled in our school garden. Moments like that tell me we that we're succeeding in our efforts to make kids healthier. At Seaton Elementary School, a healthy school day doesn't end when the last bell rings. Our goal is that students will carry the lessons we teach them back to their families and communities. That's how we became one of America's Healthiest Schools. Seaton Elementary is located in the Shaw neighborhood of Washington, D.C., and has more than 300 students. Many of our children come from low-income families and are eligible for free and reduced-price school meals. Our student body is primarily black and Hispanic, and 40 percent are English language learners. While some schools like ours are at increased risk for poor health outcomes, Seaton Elementary is proving that any school can become a healthy place with determination and the right support. We started our journey to better health by enlisting the support of our principal. Without her backing, we knew we wouldn't be able to make the changes necessary to get our students moving more and eating better. We also needed a guide. We joined the Alliance for a Healthier Generation's Healthy Schools Program and began using the organization's Framework of Best Practices to evaluate what was working well for our school and what wasn't — and to create an action plan for meeting our wellness goals. Healthy Schools Program Manager Nadja Agnew was with us every step of the way, connecting us with resources and encouraging us to go for gold, the Alliance's highest level of recognition. Seaton Elementary is proving that any school can become a healthy place with determination and the right support. Daily physical education keeps students moving. One of our first steps was to make sure that our school meals and snacks met national nutrition standards. Next, we worked with our principal to restructure the school day so all students received daily physical education, at least 150 minutes per week. Getting our parents and community members involved was essential in taking our wellness efforts to the next level — and in creating a culture of health that extends beyond school walls. We revised our school wellness policy to specify that the food we serve to staff and families during morning meetings, holiday parties and our teacher appreciation lunch meets the same standards as school meals. We began hosting taste tests and healthy cooking lessons so that our community could learn what our kids now know: that eating healthy can be fun and delicious. We also invited parents to join our garden club for its potato harvest, where we sampled grilled potatoes with fresh dill. To get kids and families moving, we have DJs at our multicultural nights. The PTA recently hosted a school dance, and our PTA fundraisers now include foods that meet national nutrition standards. To recognize holidays and student achievement, classes celebrate with extended recess time instead of pizza. When the Alliance for a Healthier Generation announced its Healthiest Schools in America for 2016, we were thrilled to learn that Seaton Elementary had received a gold award. This recognition has opened the door to new opportunities for our school. A generous grant from Kaiser Permanente through its Thriving Schools program allowed us to purchase stability balls for students in second through fifth grades, as well as for staff members. The gift also funded three water bottle filling stations that encourage students and staff to make healthier beverage choices. Sitting on stability balls while doing projects helps kids develop balance and core strength. Our local YMCA partnered with us to provide an active before-care program for students who arrive at school early. And thanks to a grant from Action
[ 1128, 922, 14114, 10619, 653, 350, 687, 420, 3118, 310, 6813, 29915, 29879, 15202, 12239, 4523, 29879, 13, 29933, 265, 2786, 8130, 291, 13, 29968, 4841, 18864, 278, 13638, 310, 1009, 3841, 472, 3762, 29892, 6820, 12462, 263, 7282, 15130, 304, 2304, 1009, 9045, 491, 18443, 292, 9045, 29891, 321, 1218, 29892, 9128, 6354, 322, 23023, 1848, 1532, 29899, 915, 292, 29889, 450, 29855, 363, 263, 15202, 631, 28203, 29915, 29879, 15202, 29891, 4523, 29879, 7835, 1736, 304, 1653, 263, 9257, 310, 9045, 472, 3762, 988, 599, 8041, 508, 266, 4401, 29889, 450, 1824, 756, 3796, 411, 901, 1135, 29871, 29941, 29945, 29892, 29900, 29900, 29900, 12462, 297, 1432, 2106, 2298, 278, 7457, 310, 15411, 322, 21810, 26421, 322, 338, 22669, 5220, 287, 297, 777, 14368, 29892, 3704, 7660, 29892, 360, 29889, 29907, 1696, 491, 17123, 349, 3504, 2016, 29889, 13, 855, 566, 1237, 472, 922, 14114, 10619, 653, 19012, 263, 592, 284, 773, 18655, 1849, 515, 278, 3762, 16423, 29889, 13, 1576, 916, 2462, 29892, 306, 975, 354, 538, 697, 310, 590, 8041, 6721, 902, 11825, 565, 896, 1033, 505, 1395, 575, 363, 17803, 29892, 763, 278, 6743, 1183, 750, 4559, 29881, 297, 1749, 3762, 16423, 29889, 341, 290, 1237, 763, 393, 2649, 592, 591, 393, 591, 29915, 276, 9269, 292, 297, 1749, 14231, 304, 1207, 413, 4841, 9045, 631, 29889, 2180, 922, 14114, 10619, 653, 4523, 29892, 263, 9045, 29891, 3762, 2462, 1838, 29915, 29873, 1095, 746, 278, 1833, 22623, 28774, 29889, 8680, 7306, 338, 393, 8041, 674, 8677, 278, 3109, 787, 591, 6860, 963, 1250, 304, 1009, 13175, 322, 23507, 29889, 2193, 29915, 29879, 920, 591, 3897, 697, 310, 6813, 29915, 29879, 15202, 12239, 4523, 29879, 29889, 13, 2008, 14114, 10619, 653, 338, 5982, 297, 278, 28548, 18403, 310, 7660, 29892, 360, 29889, 29907, 1696, 322, 756, 901, 1135, 29871, 29941, 29900, 29900, 8041, 29889, 9267, 310, 1749, 4344, 2041, 515, 4482, 29899, 262, 2763, 13175, 322, 526, 560, 335, 1821, 363, 3889, 322, 12212, 29899, 9175, 3762, 592, 1338, 29889, 8680, 8368, 3573, 338, 19434, 4628, 322, 3600, 8357, 293, 29892, 322, 29871, 29946, 29900, 10151, 526, 4223, 4086, 5110, 414, 29889, 5806, 777, 12462, 763, 1749, 29879, 526, 472, 11664, 12045, 363, 6460, 9045, 714, 26807, 29892, 922, 14114, 10619, 653, 338, 1326, 292, 393, 738, 3762, 508, 4953, 263, 9045, 29891, 2058, 411, 3683, 3381, 322, 278, 1492, 2304, 29889, 13, 4806, 4687, 1749, 16342, 304, 2253, 9045, 491, 427, 1761, 292, 278, 2304, 310, 1749, 5882, 29889, 13932, 902, 27436, 29892, 591, 6363, 591, 7656, 29915, 29873, 367, 2221, 304, 1207, 278, 3620, 5181, 304, 679, 1749, 8041, 8401, 901, 322, 321, 1218, 2253, 29889, 13, 4806, 884, 4312, 263, 10754, 29889, 1334, 8772, 278, 29855, 363, 263, 15202, 631, 28203, 29915, 29879, 15202, 29891, 4523, 29879, 7835, 322, 4689, 773, 278, 13013, 29915, 29879, 16657, 310, 6407, 29124, 1575, 304, 14707, 825, 471, 1985, 1532, 363, 1749, 3762, 322, 825, 9007, 29915, 29873, 813, 322, 304, 1653, 385, 3158, 3814, 363, 11781, 1749, 1532, 2264, 14433, 29889, 15202, 29891, 4523, 29879, 7835, 15629, 18496, 1764, 4059, 1482, 471, 411, 502, 1432, 4331, 310, 278, 982, 29892, 16791, 502, 411, 7788, 322, 18443, 292, 502, 304, 748, 363, 7684, 29892, 278, 29855, 29915, 29879, 9939, 3233, 310, 19679, 29889, 13, 2008, 14114, 10619, 653, 338, 1326, 292, 393, 738, 3762, 508, 4953, 263, 9045, 29891, 2058, 411, 3683, 3381, 322, 278, 1492, 2304, 29889, 13, 29928, 8683, 9128, 9793, 14874, 8041, 8401, 29889, 13, 6716, 310, 1749, 937, 6576, 471, 304, 1207, 1854, 393, 1749, 3762, 592, 1338, 322, 5807, 26514, 1539, 4797, 18254, 29878, 654, 20801, 29889, 8084, 29892, 591, 3796, 411, 1749, 5882, 304, 1791, 1247, 545, 278, 3762, 2462, 577, 599, 8041, 4520, 14218, 9128, 9793, 29892, 472, 3203, 29871, 29896, 29945, 29900, 6233, 639, 4723, 29889, 13, 2577, 1259, 1749, 11825, 322, 7881, 5144, 9701, 471, 18853, 297, 5622, 1749, 1532, 2264, 14231, 304, 278, 2446, 3233, 813, 322, 297, 4969, 263, 9257, 310, 9045, 393, 4988, 8724, 3762, 14603, 29889, 1334, 337, 11292, 1749, 3762, 1532, 2264, 8898, 304, 6084, 393, 278, 9687, 591, 9080, 304, 13925, 322, 13175, 2645, 7250, 5870, 886, 29892, 8753, 22394, 13973, 322, 1749, 15703, 5108, 362, 301, 3322, 28103, 278, 1021, 20801, 408, 3762, 592, 1338, 29889, 1334, 4689, 23376, 21779, 6987, 322, 9045, 29891, 7984, 292, 3109, 787, 577, 393, 1749, 7881, 1033, 5110, 825, 1749, 413, 4841, 1286, 1073, 29901, 393, 321, 1218, 9045, 29891, 508, 367, 2090, 322, 628, 14803, 29889, 1334, 884, 23610, 11825, 304, 5988, 1749, 16423, 4402, 363, 967, 3104, 1219, 4023, 10147, 29892, 988, 591, 4559, 29881, 867, 24455, 3104, 20452, 411, 10849, 270, 453, 29889, 13, 1762, 679, 413, 4841, 322, 13175, 8401, 29892, 591, 505, 23366, 29879, 472, 1749, 1773, 3953, 3631, 4646, 29879, 29889, 450, 349, 6040, 10325, 17791, 263, 3762, 17948, 29892, 322, 1749, 349, 6040, 5220, 23469, 414, 1286, 3160, 9687, 29879, 393, 5870, 4797, 18254, 29878, 654, 20801, 29889, 1763, 18720, 8753, 333, 1036, 322, 8368, 27012, 882, 29892, 4413, 10894, 403, 411, 10410, 337, 985, 931, 2012, 310, 282, 24990, 29889, 13, 10401, 278, 29855, 363, 263, 15202, 631, 28203, 9326, 967, 15202, 12239, 4523, 29879, 297, 6813, 363, 29871, 29906, 29900, 29896, 29953, 29892, 591, 892, 1468, 24455, 304, 5110, 393, 922, 14114, 10619, 653, 750, 4520, 263, 7684, 9862, 29889, 910, 19679, 756, 6496, 278, 3050, 304, 716, 28602, 1907, 363, 1749, 3762, 29889, 319, 1176, 681, 16690, 515, 17123, 349, 3504, 2016, 1549, 967, 498, 1150, 292, 4523, 29879, 1824, 6068, 502, 304, 20590, 25806, 26563, 363, 8041, 297, 1473, 1549, 18615, 867, 3076, 29892, 408, 1532, 408, 363, 13925, 5144, 29889, 450, 19797, 884, 5220, 287, 2211, 4094, 18046, 280, 27523, 16355, 393, 13731, 6617, 8041, 322, 13925, 304, 1207, 9045, 631, 367, 19698, 19995, 29889, 13, 29903, 5367, 373, 25806, 26563, 1550, 2599, 9279, 6911, 413, 4841, 2693, 17346, 322, 7136, 9324, 29889, 13, 29949, 332, 1887, 612, 29924, 5454, 18096, 287, 411, 502, 304, 3867, 385, 6136, 1434, 29899, 18020, 1824, 363, 8041, 1058, 18331, 472, 3762, 4688, 29889, 1126, 3969, 304, 263, 16690, 515, 9123 ]
1,024
CommonCrawl
1.438079
-0.332887
0.980114
2.778682
Pirates of the Vistula Vistula: Into the Unknown Date: June 8, 2018Author: Wayne's Books 3 Comments 21 September 2000. The Vistula River, Poland. Maks sent Wojciech and a new crewmember – ex-quarterback Eric Benson – in the freshly-repaired inflatable boat to the wreck of the Rzeka Ksiezna under the cover of night. Benson had a bad leg from an injury sustained before the debacle at Kalisz, but was still an experienced diver, and Wojciech was something of a jack-of-all-trades. Maks was suspicious of the wreck, given that Adam's first tug had been ambushed by pirates a few months prior. The pair rode the current quietly downriver. Near the wreck however, they heard boat motors approaching from downriver. They watched through their night vision. It had been a cool, cloudy day, and it was a dark night. Even with night vision, Wojciech and Benson could just make out three boats motoring upriver. It was strange, as the boats were very close together, hulls in contact or nearly so. It was a risky venture to travel at night, given the river hazards, and so this encounter warranted caution. The pair retreated to the Krolowa upriver and reported their contact. The boats turned out to be refugees, not pirates. Their three fishing boats were lashed together; the middle boat was unpowered, and all were in rough shape from bullet holes, impacts, and poor maintenance. Another one of those random encounters I mentioned last post: "Boat-1: A 15-meter motorized barge passes, heading south. It is crowded with refugees, dirty and ragged people with fear in their eyes and few possessions. If hailed, they will claim to be Czolno Lud, or "River People" from the "Floating City" at Warsaw, but say that a pirate attack has scattered much of the fleet and driven them to seek refuge to the south. They have heard that conditions are peaceful in Sandomierz, and they are hoping to find sanctuary there. They will ply the characters with questions concerning conditions up the river and in Sandomierz." They were led by a man named Bogdan. They exchanged information, and Bogdan told them to name-drop him if the party visits the Floating City. Maks gifted the refugees with 100l of alcohol for their boat motors, and told them to name-drop him at Sandomierz as well. In the morning, the Krolowa pulled up alongside the wreck of the Rzeka Ksiezna. It was burned and looted, but Adam said there may be salvageable parts below the waterline. Benson made repeated dives, reporting back to Adam what he saw, and received further instructions. From the process, Adam said that the rudder, both screws, and her drive shafts could be salvaged as spare parts for the Krolowa. Maks asked how long it would take to remove them. Adam replied "2d6+4 hours". [OK, a little metagame humor there…] The salvage process ended up consuming 7 hours, but it felt worth it as the rudder, screws, and drive shafts were critical parts for the Krolowa. Continuing downriver, it was a strange sight. The Vistula had changed course from its pre-war channel at Puławy. "Puławy was once an important town of 15,000 inhabitants on the Wisla River 145 kilometers from Warsaw, a major crossroads on the Lublin-Radom main road. The war destroyed many industrial facilities along the river, including the flood control levees and dams which had tamed the once shallow and unpredictable river. Extensive flooding of the land between the Wisla and the Wieprz rivers over the last several years finally resulted in a change in the river's course. The Wisla has moved westward from Puławy by about 10 kilometers." Pirates of the Vistula, page 30 Where the Lublin-Radom road crossed the new channel of the Vistula, the Polish government at Lublin had built a wooden bridge. When the Krolowa approached, it was clear the bridge had been damaged by an attack, and work
[ 16937, 1078, 310, 278, 478, 391, 2497, 13, 29963, 391, 2497, 29901, 512, 517, 278, 853, 5203, 13, 2539, 29901, 5306, 29871, 29947, 29892, 29871, 29906, 29900, 29896, 29947, 13720, 29901, 25843, 29915, 29879, 13730, 29871, 29941, 461, 29879, 13, 29906, 29896, 3839, 29871, 29906, 29900, 29900, 29900, 29889, 450, 478, 391, 2497, 6163, 29892, 18898, 29889, 13, 29924, 10327, 2665, 17404, 5295, 305, 322, 263, 716, 17616, 14242, 785, 429, 29899, 339, 4254, 1627, 14713, 350, 25151, 785, 297, 278, 10849, 368, 29899, 276, 3274, 2859, 4414, 17219, 13006, 304, 278, 281, 18217, 310, 278, 390, 911, 1335, 476, 29879, 347, 16207, 1090, 278, 4612, 310, 4646, 29889, 13, 29933, 25151, 750, 263, 4319, 2814, 515, 385, 24092, 15075, 7114, 1434, 278, 2553, 6436, 472, 476, 5711, 29920, 29892, 541, 471, 1603, 385, 18860, 17089, 29892, 322, 17404, 5295, 305, 471, 1554, 310, 263, 28015, 29899, 974, 29899, 497, 29899, 509, 3076, 29889, 341, 10327, 471, 8872, 14803, 310, 278, 281, 18217, 29892, 2183, 393, 11783, 29915, 29879, 937, 260, 688, 750, 1063, 3181, 15392, 491, 21625, 1078, 263, 2846, 7378, 7536, 29889, 13, 1576, 5101, 20514, 278, 1857, 25970, 1623, 3511, 29889, 26206, 278, 281, 18217, 3138, 29892, 896, 6091, 13006, 3184, 943, 28702, 515, 1623, 3511, 29889, 2688, 20654, 1549, 1009, 4646, 18551, 29889, 739, 750, 1063, 263, 12528, 29892, 9570, 29891, 2462, 29892, 322, 372, 471, 263, 6501, 4646, 29889, 13, 29923, 854, 411, 4646, 18551, 29892, 17404, 5295, 305, 322, 350, 25151, 1033, 925, 1207, 714, 2211, 25462, 3184, 8253, 701, 3511, 29889, 739, 471, 8515, 29892, 408, 278, 25462, 892, 1407, 3802, 4208, 29892, 298, 913, 29879, 297, 6958, 470, 8886, 577, 29889, 739, 471, 263, 5161, 3459, 9712, 545, 304, 9850, 472, 4646, 29892, 2183, 278, 8580, 447, 29920, 3163, 29892, 322, 577, 445, 11735, 1370, 29878, 9714, 5777, 918, 29889, 450, 5101, 22162, 630, 304, 278, 476, 307, 677, 29874, 701, 3511, 322, 8967, 1009, 6958, 29889, 13, 1576, 25462, 6077, 714, 304, 367, 25447, 267, 29892, 451, 21625, 1078, 29889, 11275, 2211, 9427, 292, 25462, 892, 301, 25936, 4208, 29936, 278, 7256, 13006, 471, 443, 13519, 287, 29892, 322, 599, 892, 297, 12164, 8267, 515, 24334, 26532, 29892, 10879, 29879, 29892, 322, 6460, 25413, 29889, 13, 2744, 1228, 697, 310, 1906, 4036, 2094, 1309, 2153, 306, 5276, 1833, 1400, 29901, 13, 29908, 8431, 271, 29899, 29896, 29901, 319, 29871, 29896, 29945, 29899, 29391, 10992, 1891, 2594, 479, 14517, 29892, 28435, 7062, 29889, 739, 338, 11660, 7176, 411, 25447, 267, 29892, 26616, 322, 1153, 1505, 287, 2305, 411, 8866, 297, 1009, 5076, 322, 2846, 3119, 10964, 29889, 960, 447, 2356, 29892, 896, 674, 5995, 304, 367, 15185, 324, 1217, 8591, 29892, 470, 376, 29934, 2147, 11647, 29908, 515, 278, 376, 29943, 417, 1218, 4412, 29908, 472, 9149, 1450, 29892, 541, 1827, 393, 263, 21625, 403, 5337, 756, 29574, 1568, 310, 278, 22338, 322, 18225, 963, 304, 16508, 25447, 304, 278, 7062, 29889, 2688, 505, 6091, 393, 5855, 526, 10776, 1319, 297, 317, 2685, 15952, 29892, 322, 896, 526, 17231, 304, 1284, 9753, 22999, 653, 727, 29889, 2688, 674, 282, 368, 278, 4890, 411, 5155, 19813, 5855, 701, 278, 8580, 322, 297, 317, 2685, 15952, 1213, 13, 15597, 892, 5331, 491, 263, 767, 4257, 15872, 18386, 29889, 2688, 429, 15033, 2472, 29892, 322, 15872, 18386, 5429, 963, 304, 1024, 29899, 8865, 1075, 565, 278, 6263, 1998, 1169, 278, 26043, 1218, 4412, 29889, 341, 10327, 19797, 287, 278, 25447, 267, 411, 29871, 29896, 29900, 29900, 29880, 310, 27231, 5391, 363, 1009, 13006, 3184, 943, 29892, 322, 5429, 963, 304, 1024, 29899, 8865, 1075, 472, 317, 2685, 15952, 408, 1532, 29889, 13, 797, 278, 7250, 29892, 278, 476, 307, 677, 29874, 20043, 701, 19963, 278, 281, 18217, 310, 278, 390, 911, 1335, 476, 29879, 347, 16207, 29889, 739, 471, 12138, 287, 322, 658, 5715, 29892, 541, 11783, 1497, 727, 1122, 367, 24754, 482, 519, 5633, 2400, 278, 4094, 1220, 29889, 350, 25151, 1754, 10324, 1933, 267, 29892, 23415, 1250, 304, 11783, 825, 540, 4446, 29892, 322, 4520, 4340, 11994, 29889, 3645, 278, 1889, 29892, 11783, 1497, 393, 278, 29051, 672, 29892, 1716, 885, 3973, 29879, 29892, 322, 902, 7899, 528, 2051, 29879, 1033, 367, 24754, 4063, 408, 29337, 5633, 363, 278, 476, 307, 677, 29874, 29889, 341, 10327, 4433, 920, 1472, 372, 723, 2125, 304, 3349, 963, 29889, 11783, 10352, 376, 29906, 29881, 29953, 29974, 29946, 6199, 1642, 518, 8949, 29892, 263, 2217, 1539, 351, 420, 27448, 727, 30098, 29962, 13, 1576, 24754, 482, 1889, 9698, 701, 1136, 9929, 29871, 29955, 6199, 29892, 541, 372, 7091, 7088, 372, 408, 278, 29051, 672, 29892, 885, 3973, 29879, 29892, 322, 7899, 528, 2051, 29879, 892, 12187, 5633, 363, 278, 476, 307, 677, 29874, 29889, 13, 1323, 8675, 292, 1623, 3511, 29892, 372, 471, 263, 8515, 11126, 29889, 450, 478, 391, 2497, 750, 3939, 3236, 515, 967, 758, 29899, 4495, 8242, 472, 12129, 8479, 29891, 29889, 13, 29908, 29925, 29884, 8479, 29891, 471, 2748, 385, 4100, 4726, 310, 29871, 29896, 29945, 29892, 29900, 29900, 29900, 19681, 373, 278, 15756, 433, 6163, 29871, 29896, 29946, 29945, 20052, 2699, 515, 9149, 1450, 29892, 263, 4655, 4891, 307, 7925, 373, 278, 19278, 1915, 29899, 9908, 290, 1667, 6520, 29889, 450, 1370, 14416, 1784, 18408, 23330, 3412, 278, 8580, 29892, 3704, 278, 5685, 397, 2761, 454, 345, 267, 322, 270, 2232, 607, 750, 260, 2795, 278, 2748, 4091, 340, 322, 443, 27711, 519, 8580, 29889, 7338, 6270, 5685, 3689, 310, 278, 2982, 1546, 278, 15756, 433, 322, 278, 18656, 558, 29920, 27515, 975, 278, 1833, 3196, 2440, 7146, 20601, 297, 263, 1735, 297, 278, 8580, 29915, 29879, 3236, 29889, 450, 15756, 433, 756, 6153, 5833, 1328, 515, 12129, 8479, 29891, 491, 1048, 29871, 29896, 29900, 20052, 2699, 1213, 13, 29925, 381, 1078, 310, 278, 478, 391, 2497, 29892, 1813, 29871, 29941, 29900, 13, 11921, 278, 19278, 1915, 29899, 9908, 290, 6520, 21692, 278, 716, 8242, 310, 278, 478, 391, 2497, 29892, 278, 19919, 5874, 472, 19278, 1915, 750, 4240, 263, 27278, 12945, 29889, 1932, 278, 476, 307, 677, 29874, 26733, 29892, 372, 471, 2821, 278, 12945, 750, 1063, 5625, 4063, 491, 385, 5337, 29892, 322, 664 ]
1,024
CommonCrawl
0.580846
-0.006494
1.410488
0.178095
from __future__ import print_function from __future__ import absolute_import import os import unittest from pxr.UsdQt._Qt import QtCore, QtWidgets, QtGui from pxr import Gf, Sdf, UsdQt def setUpModule(): global app app = QtWidgets.QApplication([]) class TestMetaclass(unittest.TestCase): def testObject(self): class MyEditor(QtWidgets.QWidget): __metaclass__ = UsdQt.valueWidgets._ValueEditMetaclass valueType = float def __init__(self): super(MyEditor, self).__init__() self.__value = 5 def GetValue(self): return self.__value def SetValue(self, value): self.__value = value x = MyEditor() self.assertEqual(x.value, 5) self.assertEqual(x.metaObject().userProperty().name(), 'value') def testNoValueType(self): '''verify that the metaclass doesn't fail if value type isn't set''' class MyEditor(QtWidgets.QWidget): __metaclass__ = UsdQt.valueWidgets._ValueEditMetaclass def __init__(self): super(MyEditor, self).__init__() x = MyEditor() self.assertEqual(x.metaObject().userProperty().name(), None) def testValueTypeIsNone(self): class MyEditor(QtWidgets.QWidget): __metaclass__ = UsdQt.valueWidgets._ValueEditMetaclass valueType = None def __init__(self): super(MyEditor, self).__init__() x = MyEditor() self.assertEqual(x.metaObject().userProperty().name(), None) class _Base: ''' Namespace to prevent test from being executed ''' class TestValueEdit(unittest.TestCase): AttributeErrorValues = [] def setUp(self): self.longMessage = True def testUserProperty(self): '''verify the Qt user property has been setup. using the user property gets a lot of nice behavior for free when interacting with Qt ItemModels so its important that all our widgets have this setup correctly. ''' widget = self.Widget() self.assertEqual(widget.metaObject().userProperty().name(), 'value') def testSuccess(self): '''verifying that the widget can set and get a value without loss of equality''' widget = self.Widget() for value in self.SuccessValues: widget.value = value self.assertEqual(widget.value, value) def testSuccessCasted(self): '''verify that the widget can set values, but there may be some transformation ie. it may go in as a string and out as an int, so its not strictly equal to the orignal value ''' widget = self.Widget() for value in self.SuccessCastedValues: widget.value = value self.assertEqual(widget.value, self.SuccessCastedValues[value]) def testValueErrors(self): '''verify that some values are unsettable [raise ValueError]''' widget = self.Widget() for value in self.ValueErrorValues: with self.assertRaises(ValueError): widget.value = value def testTypeErrors(self): '''verify that some values are unsettable [raise TypeError]''' widget = self.Widget() for value in self.TypeErrorValues: with self.assertRaises(TypeError): widget.value = value def testAttributeErrors(self): '''verify that some values are unsettable [raise TypeError]''' widget = self.Widget() for value in self.AttributeErrorValues: with self.assertRaises(AttributeError): widget.value = value def testKeySequence(self): '''verify a series of keystrokes when the widget has focus'''
[ 515, 4770, 29888, 9130, 1649, 1053, 1596, 29918, 2220, 13, 3166, 4770, 29888, 9130, 1649, 1053, 8380, 29918, 5215, 13, 13, 5215, 2897, 13, 5215, 443, 27958, 13, 13, 3166, 282, 29916, 29878, 29889, 29965, 4928, 17303, 3032, 17303, 1053, 14705, 9203, 29892, 14705, 8801, 29879, 29892, 14705, 28707, 13, 3166, 282, 29916, 29878, 1053, 402, 29888, 29892, 317, 2176, 29892, 501, 4928, 17303, 13, 13, 13, 1753, 731, 3373, 7355, 7295, 13, 1678, 5534, 623, 13, 1678, 623, 353, 14705, 8801, 29879, 29889, 29984, 4873, 4197, 2314, 13, 13, 13, 1990, 4321, 10095, 562, 605, 29898, 348, 27958, 29889, 3057, 8259, 1125, 13, 13, 1678, 822, 1243, 2061, 29898, 1311, 1125, 13, 4706, 770, 1619, 15280, 29898, 17303, 8801, 29879, 29889, 29984, 8801, 1125, 13, 9651, 4770, 2527, 562, 605, 1649, 353, 501, 4928, 17303, 29889, 1767, 8801, 29879, 3032, 1917, 6103, 10095, 562, 605, 13, 9651, 995, 1542, 353, 5785, 13, 13, 9651, 822, 4770, 2344, 12035, 1311, 1125, 13, 18884, 2428, 29898, 3421, 15280, 29892, 1583, 467, 1649, 2344, 1649, 580, 13, 18884, 1583, 17255, 1767, 353, 29871, 29945, 13, 13, 9651, 822, 3617, 1917, 29898, 1311, 1125, 13, 18884, 736, 1583, 17255, 1767, 13, 13, 9651, 822, 3789, 1917, 29898, 1311, 29892, 995, 1125, 13, 18884, 1583, 17255, 1767, 353, 995, 13, 18884, 921, 353, 1619, 15280, 580, 13, 18884, 1583, 29889, 9294, 9843, 29898, 29916, 29889, 1767, 29892, 29871, 29945, 29897, 13, 18884, 1583, 29889, 9294, 9843, 29898, 29916, 29889, 7299, 2061, 2141, 1792, 4854, 2141, 978, 3285, 525, 1767, 1495, 13, 13, 1678, 822, 1243, 3782, 1917, 1542, 29898, 1311, 1125, 13, 4706, 14550, 27902, 393, 278, 1539, 562, 605, 1838, 29915, 29873, 4418, 565, 995, 1134, 3508, 29915, 29873, 731, 12008, 13, 4706, 770, 1619, 15280, 29898, 17303, 8801, 29879, 29889, 29984, 8801, 1125, 13, 9651, 4770, 2527, 562, 605, 1649, 353, 501, 4928, 17303, 29889, 1767, 8801, 29879, 3032, 1917, 6103, 10095, 562, 605, 13, 13, 9651, 822, 4770, 2344, 12035, 1311, 1125, 13, 18884, 2428, 29898, 3421, 15280, 29892, 1583, 467, 1649, 2344, 1649, 580, 13, 18884, 921, 353, 1619, 15280, 580, 13, 18884, 1583, 29889, 9294, 9843, 29898, 29916, 29889, 7299, 2061, 2141, 1792, 4854, 2141, 978, 3285, 6213, 29897, 13, 13, 1678, 822, 1243, 1917, 1542, 3624, 8516, 29898, 1311, 1125, 13, 4706, 770, 1619, 15280, 29898, 17303, 8801, 29879, 29889, 29984, 8801, 1125, 13, 9651, 4770, 2527, 562, 605, 1649, 353, 501, 4928, 17303, 29889, 1767, 8801, 29879, 3032, 1917, 6103, 10095, 562, 605, 13, 9651, 995, 1542, 353, 6213, 13, 13, 9651, 822, 4770, 2344, 12035, 1311, 1125, 13, 18884, 2428, 29898, 3421, 15280, 29892, 1583, 467, 1649, 2344, 1649, 580, 13, 18884, 921, 353, 1619, 15280, 580, 13, 18884, 1583, 29889, 9294, 9843, 29898, 29916, 29889, 7299, 2061, 2141, 1792, 4854, 2141, 978, 3285, 6213, 29897, 13, 13, 13, 1990, 903, 5160, 29901, 13, 1678, 14550, 13, 1678, 14706, 3535, 304, 5557, 1243, 515, 1641, 8283, 13, 1678, 14550, 13, 1678, 770, 4321, 1917, 6103, 29898, 348, 27958, 29889, 3057, 8259, 1125, 13, 4706, 23833, 2392, 9065, 353, 5159, 13, 13, 4706, 822, 731, 3373, 29898, 1311, 1125, 13, 9651, 1583, 29889, 5426, 3728, 353, 5852, 13, 13, 4706, 822, 1243, 2659, 4854, 29898, 1311, 1125, 13, 9651, 14550, 27902, 278, 14705, 1404, 2875, 756, 1063, 6230, 29889, 13, 9651, 773, 278, 1404, 2875, 4947, 263, 3287, 310, 7575, 6030, 363, 3889, 13, 9651, 746, 16254, 292, 411, 14705, 10976, 23785, 577, 967, 4100, 393, 13, 9651, 599, 1749, 11109, 29879, 505, 445, 6230, 5149, 29889, 13, 9651, 14550, 13, 9651, 11109, 353, 1583, 29889, 8801, 580, 13, 9651, 1583, 29889, 9294, 9843, 29898, 8030, 29889, 7299, 2061, 2141, 1792, 4854, 2141, 978, 3285, 525, 1767, 1495, 13, 13, 4706, 822, 1243, 14191, 29898, 1311, 1125, 13, 9651, 14550, 369, 9215, 393, 278, 11109, 508, 731, 322, 679, 263, 995, 1728, 6410, 310, 17193, 12008, 13, 9651, 11109, 353, 1583, 29889, 8801, 580, 13, 9651, 363, 995, 297, 1583, 29889, 14191, 9065, 29901, 13, 18884, 11109, 29889, 1767, 353, 995, 13, 18884, 1583, 29889, 9294, 9843, 29898, 8030, 29889, 1767, 29892, 995, 29897, 13, 13, 4706, 822, 1243, 14191, 15738, 287, 29898, 1311, 1125, 13, 9651, 14550, 27902, 393, 278, 11109, 508, 731, 1819, 29892, 541, 727, 1122, 367, 777, 13852, 13, 13, 9651, 19282, 29889, 372, 1122, 748, 297, 408, 263, 1347, 322, 714, 408, 385, 938, 29892, 577, 967, 451, 18719, 5186, 13, 9651, 304, 278, 470, 647, 284, 995, 13, 9651, 14550, 13, 9651, 11109, 353, 1583, 29889, 8801, 580, 13, 9651, 363, 995, 297, 1583, 29889, 14191, 15738, 287, 9065, 29901, 13, 18884, 11109, 29889, 1767, 353, 995, 13, 18884, 1583, 29889, 9294, 9843, 29898, 8030, 29889, 1767, 29892, 1583, 29889, 14191, 15738, 287, 9065, 29961, 1767, 2314, 13, 13, 4706, 822, 1243, 1917, 22463, 29898, 1311, 1125, 13, 9651, 14550, 27902, 393, 777, 1819, 526, 443, 842, 2371, 518, 22692, 7865, 2392, 29962, 12008, 13, 9651, 11109, 353, 1583, 29889, 8801, 580, 13, 9651, 363, 995, 297, 1583, 29889, 1917, 2392, 9065, 29901, 13, 18884, 411, 1583, 29889, 9294, 29934, 1759, 267, 29898, 1917, 2392, 1125, 13, 462, 1678, 11109, 29889, 1767, 353, 995, 13, 13, 4706, 822, 1243, 1542, 22463, 29898, 1311, 1125, 13, 9651, 14550, 27902, 393, 777, 1819, 526, 443, 842, 2371, 518, 22692, 20948, 29962, 12008, 13, 9651, 11109, 353, 1583, 29889, 8801, 580, 13, 9651, 363, 995, 297, 1583, 29889, 1542, 2392, 9065, 29901, 13, 18884, 411, 1583, 29889, 9294, 29934, 1759, 267, 29898, 1542, 2392, 1125, 13, 462, 1678, 11109, 29889, 1767, 353, 995, 13, 13, 4706, 822, 1243, 6708, 22463, 29898, 1311, 1125, 13, 9651, 14550, 27902, 393, 777, 1819, 526, 443, 842, 2371, 518, 22692, 20948, 29962, 12008, 13, 9651, 11109, 353, 1583, 29889, 8801, 580, 13, 9651, 363, 995, 297, 1583, 29889, 6708, 2392, 9065, 29901, 13, 18884, 411, 1583, 29889, 9294, 29934, 1759, 267, 29898, 6708, 2392, 1125, 13, 462, 1678, 11109, 29889, 1767, 353, 995, 13, 13, 4706, 822, 1243, 2558, 20529, 29898, 1311, 1125, 13, 9651, 14550, 27902, 263, 3652, 310, 1589, 858, 307, 10794, 746, 278, 11109, 756, 8569, 12008, 13, 9651 ]
1,024
Github
-1.219207
0.384788
-1.058781
0.458898
if 'PXR_USDQT_ALLOW_TEST_KEYS' in os.environ and \ os.environ['PXR_USDQT_ALLOW_TEST_KEYS'] != '0': from pixar.UsdQt._Qt import QtTest for sequence in self.KeySequences: widget = self.Widget() widget.show() widget.window().activateWindow() widget.setFocus(QtCore.Qt.MouseFocusReason) for keyClick in sequence: focusWidget = widget.window().focusWidget() QtTest.QTest.keyClick(focusWidget, keyClick) self.assertEqual(widget.value, self.KeySequences[sequence]) class TestStringEdit(_Base.TestValueEdit): Widget = UsdQt.valueWidgets.StringEdit SuccessValues = ['abcd', '', '-490', 'a', 'the quick brown fox'] KeySequences = {('a', 'b', 'c', 'd', QtCore.Qt.Key_Return): 'abcd', ('a', 'b', 'c', 'd',): 'abcd'} SuccessCastedValues = {None: ''} ValueErrorValues = [] TypeErrorValues = [['a', 'b', 'c'], -490, 10.0] class TestPathEdit(_Base.TestValueEdit): Widget = UsdQt.valueWidgets.PathEdit SuccessValues = [Sdf.Path('/World'), Sdf.Path(), Sdf.Path('Relative'), Sdf.Path('/World.property')] KeySequences = {} SuccessCastedValues = {'/World': Sdf.Path('/World'), '': Sdf.Path(), '/World/Child': Sdf.Path('/World/Child'), None: Sdf.Path.emptyPath} # TODO: Consider implementing fixup to cleanup /World/Child/ ValueErrorValues = ['//World', '////', '/World..property', '/World/Child/'] TypeErrorValues = [] class TestIntEdit(_Base.TestValueEdit): Widget = UsdQt.valueWidgets.IntEdit SuccessValues = [1, -10000, 10000, 123456789, long(10000)] KeySequences = {('1', '0', '0', QtCore.Qt.Key_Return): 100, ('1', '.', '0', '0',): 100, ('1', 'e', 'e', '-', '2',): 12 } SuccessCastedValues = {"1": 1, None: 0} ValueErrorValues = ["-1.0", 'one', 1.0, [1]] TypeErrorValues = [] class TestFloatEdit(_Base.TestValueEdit): Widget = UsdQt.valueWidgets.FloatEdit SuccessValues = [1, 1.0, 1e100, -10000, 10000, 123456789, 1.0, long(10000)] KeySequences = {('1', '.', '0', '0', QtCore.Qt.Key_Return): 1.0, ('1', 'e', 'e', '-', '2',): 1e-2} SuccessCastedValues = {"1.0": 1, '1e100': 1e100, "-100": -100, "+100": 100, None: 0.0} ValueErrorValues = ['one', [1.0], '1e', '-', '+'] TypeErrorValues = [] class TestVec2dEdit(_Base.TestValueEdit): Widget = UsdQt.valueWidgets.Vec2dEdit SuccessValues = [Gf.Vec2f(1.0, 2.0), Gf.Vec2d( 1.0, 2.0), Gf.Vec2h(1.0, 2.0), (1.0, 2
[ 565, 525, 29925, 29990, 29934, 29918, 3308, 29928, 29984, 29911, 29918, 1964, 27998, 29918, 18267, 29918, 10818, 29903, 29915, 297, 2897, 29889, 21813, 322, 320, 13, 462, 1678, 2897, 29889, 21813, 1839, 29925, 29990, 29934, 29918, 3308, 29928, 29984, 29911, 29918, 1964, 27998, 29918, 18267, 29918, 10818, 29903, 2033, 2804, 525, 29900, 2396, 13, 18884, 515, 9277, 279, 29889, 29965, 4928, 17303, 3032, 17303, 1053, 14705, 3057, 13, 18884, 363, 5665, 297, 1583, 29889, 2558, 16941, 2063, 29901, 13, 462, 1678, 11109, 353, 1583, 29889, 8801, 580, 13, 462, 1678, 11109, 29889, 4294, 580, 13, 462, 1678, 11109, 29889, 7165, 2141, 11236, 403, 5907, 580, 13, 462, 1678, 11109, 29889, 842, 20560, 29898, 17303, 9203, 29889, 17303, 29889, 14346, 20560, 1123, 1658, 29897, 13, 462, 1678, 363, 1820, 4164, 297, 5665, 29901, 13, 462, 4706, 8569, 8801, 353, 11109, 29889, 7165, 2141, 18037, 8801, 580, 13, 462, 1678, 14705, 3057, 29889, 29984, 3057, 29889, 1989, 4164, 29898, 18037, 8801, 29892, 1820, 4164, 29897, 13, 462, 1678, 1583, 29889, 9294, 9843, 29898, 8030, 29889, 1767, 29892, 1583, 29889, 2558, 16941, 2063, 29961, 16506, 2314, 13, 13, 13, 1990, 4321, 1231, 6103, 7373, 5160, 29889, 3057, 1917, 6103, 1125, 13, 1678, 27080, 353, 501, 4928, 17303, 29889, 1767, 8801, 29879, 29889, 1231, 6103, 13, 1678, 21397, 9065, 353, 6024, 370, 2252, 742, 15516, 17411, 29946, 29929, 29900, 742, 525, 29874, 742, 525, 1552, 4996, 17354, 1701, 29916, 2033, 13, 1678, 7670, 16941, 2063, 353, 426, 877, 29874, 742, 525, 29890, 742, 525, 29883, 742, 525, 29881, 742, 14705, 9203, 29889, 17303, 29889, 2558, 29918, 11609, 1125, 525, 370, 2252, 742, 13, 462, 1678, 6702, 29874, 742, 525, 29890, 742, 525, 29883, 742, 525, 29881, 742, 1125, 525, 370, 2252, 10827, 13, 1678, 21397, 15738, 287, 9065, 353, 426, 8516, 29901, 6629, 29913, 13, 1678, 7865, 2392, 9065, 353, 5159, 13, 1678, 20948, 9065, 353, 518, 1839, 29874, 742, 525, 29890, 742, 525, 29883, 7464, 448, 29946, 29929, 29900, 29892, 29871, 29896, 29900, 29889, 29900, 29962, 13, 13, 13, 1990, 4321, 2605, 6103, 7373, 5160, 29889, 3057, 1917, 6103, 1125, 13, 1678, 27080, 353, 501, 4928, 17303, 29889, 1767, 8801, 29879, 29889, 2605, 6103, 13, 1678, 21397, 9065, 353, 518, 29903, 2176, 29889, 2605, 11219, 14058, 5477, 317, 2176, 29889, 2605, 3285, 13, 462, 268, 317, 2176, 29889, 2605, 877, 18278, 5477, 317, 2176, 29889, 2605, 11219, 14058, 29889, 6799, 1495, 29962, 13, 1678, 7670, 16941, 2063, 353, 6571, 13, 1678, 21397, 15738, 287, 9065, 353, 11117, 29914, 14058, 2396, 317, 2176, 29889, 2605, 11219, 14058, 5477, 525, 2396, 317, 2176, 29889, 2605, 3285, 13, 462, 965, 8207, 14058, 29914, 5938, 2396, 317, 2176, 29889, 2605, 11219, 14058, 29914, 5938, 5477, 13, 462, 965, 6213, 29901, 317, 2176, 29889, 2605, 29889, 6310, 2605, 29913, 13, 1678, 396, 14402, 29901, 10056, 16049, 2329, 786, 304, 5941, 786, 847, 14058, 29914, 5938, 29914, 13, 1678, 7865, 2392, 9065, 353, 6024, 458, 14058, 742, 525, 6165, 742, 8207, 14058, 636, 6799, 742, 8207, 14058, 29914, 5938, 29914, 2033, 13, 1678, 20948, 9065, 353, 5159, 13, 13, 13, 1990, 4321, 2928, 6103, 7373, 5160, 29889, 3057, 1917, 6103, 1125, 13, 1678, 27080, 353, 501, 4928, 17303, 29889, 1767, 8801, 29879, 29889, 2928, 6103, 13, 1678, 21397, 9065, 353, 518, 29896, 29892, 448, 29896, 29900, 29900, 29900, 29900, 29892, 29871, 29896, 29900, 29900, 29900, 29900, 29892, 29871, 29896, 29906, 29941, 29946, 29945, 29953, 29955, 29947, 29929, 29892, 1472, 29898, 29896, 29900, 29900, 29900, 29900, 4638, 13, 1678, 7670, 16941, 2063, 353, 426, 877, 29896, 742, 525, 29900, 742, 525, 29900, 742, 14705, 9203, 29889, 17303, 29889, 2558, 29918, 11609, 1125, 29871, 29896, 29900, 29900, 29892, 13, 462, 1678, 6702, 29896, 742, 15300, 742, 525, 29900, 742, 525, 29900, 742, 1125, 29871, 29896, 29900, 29900, 29892, 13, 462, 1678, 6702, 29896, 742, 525, 29872, 742, 525, 29872, 742, 17411, 742, 525, 29906, 742, 1125, 29871, 29896, 29906, 13, 462, 1678, 500, 13, 1678, 21397, 15738, 287, 9065, 353, 8853, 29896, 1115, 29871, 29896, 29892, 6213, 29901, 29871, 29900, 29913, 13, 1678, 7865, 2392, 9065, 353, 6796, 29899, 29896, 29889, 29900, 613, 525, 650, 742, 29871, 29896, 29889, 29900, 29892, 518, 29896, 5262, 13, 1678, 20948, 9065, 353, 5159, 13, 13, 13, 1990, 4321, 11031, 6103, 7373, 5160, 29889, 3057, 1917, 6103, 1125, 13, 1678, 27080, 353, 501, 4928, 17303, 29889, 1767, 8801, 29879, 29889, 11031, 6103, 13, 1678, 21397, 9065, 353, 518, 29896, 29892, 29871, 29896, 29889, 29900, 29892, 29871, 29896, 29872, 29896, 29900, 29900, 29892, 448, 29896, 29900, 29900, 29900, 29900, 29892, 29871, 29896, 29900, 29900, 29900, 29900, 29892, 29871, 29896, 29906, 29941, 29946, 29945, 29953, 29955, 29947, 29929, 29892, 29871, 29896, 29889, 29900, 29892, 1472, 29898, 29896, 29900, 29900, 29900, 29900, 4638, 13, 1678, 7670, 16941, 2063, 353, 426, 877, 29896, 742, 15300, 742, 525, 29900, 742, 525, 29900, 742, 14705, 9203, 29889, 17303, 29889, 2558, 29918, 11609, 1125, 29871, 29896, 29889, 29900, 29892, 13, 462, 1678, 6702, 29896, 742, 525, 29872, 742, 525, 29872, 742, 17411, 742, 525, 29906, 742, 1125, 29871, 29896, 29872, 29899, 29906, 29913, 13, 1678, 21397, 15738, 287, 9065, 353, 8853, 29896, 29889, 29900, 1115, 29871, 29896, 29892, 525, 29896, 29872, 29896, 29900, 29900, 2396, 29871, 29896, 29872, 29896, 29900, 29900, 29892, 11663, 29896, 29900, 29900, 1115, 448, 29896, 29900, 29900, 29892, 15691, 29896, 29900, 29900, 1115, 29871, 29896, 29900, 29900, 29892, 13, 462, 965, 6213, 29901, 29871, 29900, 29889, 29900, 29913, 13, 1678, 7865, 2392, 9065, 353, 6024, 650, 742, 518, 29896, 29889, 29900, 1402, 525, 29896, 29872, 742, 17411, 742, 525, 29974, 2033, 13, 1678, 20948, 9065, 353, 5159, 13, 13, 13, 1990, 4321, 25987, 29906, 29881, 6103, 7373, 5160, 29889, 3057, 1917, 6103, 1125, 13, 1678, 27080, 353, 501, 4928, 17303, 29889, 1767, 8801, 29879, 29889, 25987, 29906, 29881, 6103, 13, 1678, 21397, 9065, 353, 518, 29954, 29888, 29889, 25987, 29906, 29888, 29898, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 511, 402, 29888, 29889, 25987, 29906, 29881, 29898, 13, 308, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 511, 402, 29888, 29889, 25987, 29906, 29882, 29898, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 511, 313, 29896, 29889, 29900, 29892, 29871, 29906 ]
1,024
Github
-1.254529
0.265392
-0.994225
-0.148243
.0), [1.0, 2.0]] SuccessCastedValues = {('1.0', '2.0'): (1.0, 2.0), ('1e10', 1.0): (1e10, 1.0), None: Gf.Vec2d(0.0)} KeySequences = {('1', '.', '0', QtCore.Qt.Key_Tab, '2', '.', '0'): (1.0, 2.0), } ValueErrorValues = [(1.0, None), (None, 1.0), ("1.0", "one"), (1.0, 2.0, 3.0), (1.0,), Gf.Vec3f(1.0, 2.0, 3.0), "(1.0, 2.0)"] TypeErrorValues = [] class TestMatrix2dEdit(_Base.TestValueEdit): Widget = UsdQt.valueWidgets.Matrix2dEdit SuccessValues = [Gf.Matrix2f(1.0, 2.0, 3.0, 4.0), Gf.Matrix2d(1.0, 2.0, 3.0, 4.0)] SuccessCastedValues = {(('1.0', '2.0'), ('3.0', '4.0')): Gf.Matrix2f(1.0, 2.0, 3.0, 4.0), None: Gf.Matrix2d(0.0)} KeySequences = {('1', '.', '0', QtCore.Qt.Key_Tab, '2', '.', '0', QtCore.Qt.Key_Tab, '3', '.', '0', QtCore.Qt.Key_Tab, '4', '.', '0'): Gf.Matrix2f(1.0, 2.0, 3.0, 4.0), } ValueErrorValues = [((1.0, None), (None, 1.0)), Gf.Matrix3f(), "(1.0, 2.0)"] TypeErrorValues = [] class TestBoolEdit(_Base.TestValueEdit): Widget = UsdQt.valueWidgets.BoolEdit SuccessValues = [True, False, 1, 0] SuccessCastedValues = {None: False, "0": True, "1": True, "one": True, (0,): True, (1,): True} KeySequences = {(): False, (QtCore.Qt.Key_Down,): True, (QtCore.Qt.Key_Down, QtCore.Qt.Key_Up): False} ValueErrorValues = [] TypeErrorValues = [] class TestTextComboBoxEdit(_Base.TestValueEdit): Widget = lambda self: UsdQt.valueWidgets.TextComboEdit( ['value1', 'value2', 'value3']) SuccessValues = ['value1', 'value2', 'value3', 'invalidValue'] SuccessCastedValues = {None: ''} KeySequences = {(): 'value1', (QtCore.Qt.Key_Down,): 'value2', (QtCore.Qt.Key_Down, QtCore.Qt.Key_Up): 'value1', (QtCore.Qt.Key_Down, QtCore.Qt.Key_Down): 'value3'} ValueErrorValues = [] TypeErrorValues = [1.0, 1, ['mylist'], ('bla',)] class TestColor4dEdit(_Base.TestValueEdit): Widget = UsdQt.valueWidgets.Color4dEdit SuccessValues = [Gf.Vec4d(.1, .2, .3, .4), (.5, .6, .7, .8)] SuccessCastedValues = {None: Gf.Vec4d()} KeySequences = {} ValueErrorValues = ['red', 'blue', ['red']] TypeErrorValues = [1.0, 1] class TestAssetEdit(_Base.TestValueEdit): Widget = UsdQt.valueWidgets.AssetEdit SuccessValues = [Sdf
[ 29889, 29900, 511, 518, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 5262, 13, 1678, 21397, 15738, 287, 9065, 353, 426, 877, 29896, 29889, 29900, 742, 525, 29906, 29889, 29900, 29374, 313, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 511, 13, 462, 965, 6702, 29896, 29872, 29896, 29900, 742, 29871, 29896, 29889, 29900, 1125, 313, 29896, 29872, 29896, 29900, 29892, 29871, 29896, 29889, 29900, 511, 13, 462, 965, 6213, 29901, 402, 29888, 29889, 25987, 29906, 29881, 29898, 29900, 29889, 29900, 2915, 13, 1678, 7670, 16941, 2063, 353, 426, 877, 29896, 742, 15300, 742, 525, 29900, 742, 14705, 9203, 29889, 17303, 29889, 2558, 29918, 8863, 29892, 13, 462, 268, 525, 29906, 742, 15300, 742, 525, 29900, 29374, 313, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 511, 500, 13, 1678, 7865, 2392, 9065, 353, 17288, 29896, 29889, 29900, 29892, 6213, 511, 313, 8516, 29892, 29871, 29896, 29889, 29900, 511, 4852, 29896, 29889, 29900, 613, 376, 650, 4968, 13, 462, 4706, 313, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 29892, 29871, 29941, 29889, 29900, 511, 313, 29896, 29889, 29900, 29892, 511, 402, 29888, 29889, 25987, 29941, 29888, 29898, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 29892, 29871, 29941, 29889, 29900, 511, 18227, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 29897, 3108, 13, 1678, 20948, 9065, 353, 5159, 13, 13, 13, 1990, 4321, 14609, 29906, 29881, 6103, 7373, 5160, 29889, 3057, 1917, 6103, 1125, 13, 1678, 27080, 353, 501, 4928, 17303, 29889, 1767, 8801, 29879, 29889, 14609, 29906, 29881, 6103, 13, 1678, 21397, 9065, 353, 518, 29954, 29888, 29889, 14609, 29906, 29888, 29898, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 29892, 29871, 29941, 29889, 29900, 29892, 29871, 29946, 29889, 29900, 511, 13, 462, 268, 402, 29888, 29889, 14609, 29906, 29881, 29898, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 29892, 29871, 29941, 29889, 29900, 29892, 29871, 29946, 29889, 29900, 4638, 13, 1678, 21397, 15738, 287, 9065, 353, 426, 29898, 877, 29896, 29889, 29900, 742, 525, 29906, 29889, 29900, 5477, 6702, 29941, 29889, 29900, 742, 525, 29946, 29889, 29900, 8785, 29901, 402, 29888, 29889, 14609, 29906, 29888, 29898, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 29892, 29871, 29941, 29889, 29900, 29892, 29871, 29946, 29889, 29900, 511, 13, 462, 965, 6213, 29901, 402, 29888, 29889, 14609, 29906, 29881, 29898, 29900, 29889, 29900, 2915, 13, 1678, 7670, 16941, 2063, 353, 426, 877, 29896, 742, 15300, 742, 525, 29900, 742, 14705, 9203, 29889, 17303, 29889, 2558, 29918, 8863, 29892, 525, 29906, 742, 15300, 742, 525, 29900, 742, 14705, 9203, 29889, 17303, 29889, 2558, 29918, 8863, 29892, 13, 462, 268, 525, 29941, 742, 15300, 742, 525, 29900, 742, 14705, 9203, 29889, 17303, 29889, 2558, 29918, 8863, 29892, 525, 29946, 742, 15300, 742, 525, 29900, 29374, 402, 29888, 29889, 14609, 29906, 29888, 29898, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 29892, 29871, 29941, 29889, 29900, 29892, 29871, 29946, 29889, 29900, 511, 500, 13, 1678, 7865, 2392, 9065, 353, 518, 3552, 29896, 29889, 29900, 29892, 6213, 511, 313, 8516, 29892, 29871, 29896, 29889, 29900, 8243, 402, 29888, 29889, 14609, 29941, 29888, 3285, 18227, 29896, 29889, 29900, 29892, 29871, 29906, 29889, 29900, 29897, 3108, 13, 1678, 20948, 9065, 353, 5159, 13, 13, 13, 1990, 4321, 24693, 6103, 7373, 5160, 29889, 3057, 1917, 6103, 1125, 13, 1678, 27080, 353, 501, 4928, 17303, 29889, 1767, 8801, 29879, 29889, 24693, 6103, 13, 1678, 21397, 9065, 353, 518, 5574, 29892, 7700, 29892, 29871, 29896, 29892, 29871, 29900, 29962, 13, 1678, 21397, 15738, 287, 9065, 353, 426, 8516, 29901, 7700, 29892, 376, 29900, 1115, 5852, 29892, 13, 462, 965, 376, 29896, 1115, 5852, 29892, 376, 650, 1115, 5852, 29892, 313, 29900, 29892, 1125, 5852, 29892, 313, 29896, 29892, 1125, 5852, 29913, 13, 1678, 7670, 16941, 2063, 353, 426, 7295, 7700, 29892, 13, 462, 1678, 313, 17303, 9203, 29889, 17303, 29889, 2558, 29918, 6767, 29892, 1125, 5852, 29892, 13, 462, 1678, 313, 17303, 9203, 29889, 17303, 29889, 2558, 29918, 6767, 29892, 14705, 9203, 29889, 17303, 29889, 2558, 29918, 3373, 1125, 7700, 29913, 13, 1678, 7865, 2392, 9065, 353, 5159, 13, 1678, 20948, 9065, 353, 5159, 13, 13, 13, 1990, 4321, 1626, 26628, 6103, 7373, 5160, 29889, 3057, 1917, 6103, 1125, 13, 1678, 27080, 353, 14013, 1583, 29901, 501, 4928, 17303, 29889, 1767, 8801, 29879, 29889, 1626, 1523, 833, 6103, 29898, 13, 4706, 6024, 1767, 29896, 742, 525, 1767, 29906, 742, 525, 1767, 29941, 11287, 13, 1678, 21397, 9065, 353, 6024, 1767, 29896, 742, 525, 1767, 29906, 742, 525, 1767, 29941, 742, 525, 20965, 1917, 2033, 13, 1678, 21397, 15738, 287, 9065, 353, 426, 8516, 29901, 6629, 29913, 13, 1678, 7670, 16941, 2063, 353, 426, 7295, 525, 1767, 29896, 742, 13, 462, 1678, 313, 17303, 9203, 29889, 17303, 29889, 2558, 29918, 6767, 29892, 1125, 525, 1767, 29906, 742, 13, 462, 1678, 313, 17303, 9203, 29889, 17303, 29889, 2558, 29918, 6767, 29892, 14705, 9203, 29889, 17303, 29889, 2558, 29918, 3373, 1125, 525, 1767, 29896, 742, 13, 462, 1678, 313, 17303, 9203, 29889, 17303, 29889, 2558, 29918, 6767, 29892, 14705, 9203, 29889, 17303, 29889, 2558, 29918, 6767, 1125, 525, 1767, 29941, 10827, 13, 1678, 7865, 2392, 9065, 353, 5159, 13, 1678, 20948, 9065, 353, 518, 29896, 29889, 29900, 29892, 29871, 29896, 29892, 6024, 1357, 1761, 7464, 6702, 17530, 742, 4638, 13, 13, 13, 1990, 4321, 3306, 29946, 29881, 6103, 7373, 5160, 29889, 3057, 1917, 6103, 1125, 13, 1678, 27080, 353, 501, 4928, 17303, 29889, 1767, 8801, 29879, 29889, 3306, 29946, 29881, 6103, 13, 1678, 21397, 9065, 353, 518, 29954, 29888, 29889, 25987, 29946, 29881, 11891, 29896, 29892, 869, 29906, 29892, 869, 29941, 29892, 869, 29946, 511, 14544, 29945, 29892, 869, 29953, 29892, 869, 29955, 29892, 869, 29947, 4638, 13, 1678, 21397, 15738, 287, 9065, 353, 426, 8516, 29901, 402, 29888, 29889, 25987, 29946, 29881, 28296, 13, 1678, 7670, 16941, 2063, 353, 6571, 13, 1678, 7865, 2392, 9065, 353, 6024, 1127, 742, 525, 9539, 742, 6024, 1127, 2033, 29962, 13, 1678, 20948, 9065, 353, 518, 29896, 29889, 29900, 29892, 29871, 29896, 29962, 13, 13, 13, 1990, 4321, 26405, 6103, 7373, 5160, 29889, 3057, 1917, 6103, 1125, 13, 1678, 27080, 353, 501, 4928, 17303, 29889, 1767, 8801, 29879, 29889, 26405, 6103, 13, 1678, 21397, 9065, 353, 518, 29903, 2176 ]
1,024
Github
-1.773488
-0.229064
-1.541158
-0.848353
Nita Strauss live in She Rocks! The Seventh Annual She Rocks Awards rocked the House of Blues Anaheim on January 25, 2019 on the weekend of The NAMM Show. Hosted by the Women's International Music Network (the WiMN), the gala celebration featured a star-studded array of honorees, including Terri Nunn of Berlin, Lisa Loeb and Nita Strauss, as well many other women from all corners of the music and audio industry. Highlights included guitarist Nita Strauss performing Queen's "The Show Must Go On," and Lisa Loeb performing her #1 song "Stay," which was featured on the Reality Bites soundtrack, with the Command Sisters. Terri Nunn, celebrating Berlin's 40th Anniversary this year, performed her '80s breakthrough smash hit "Metro," accompanied by Berlin keyboardist, Dave Schulz and the She Rocks House Band. What does it mean to you to receive this award from She Rocks? It's really such an honor to be here and be not only standing among these incredible women, but actually to be getting an award for it is very surreal. How did your recent tour with Angel Vivaldi go and what were some of the highlights? It was incredible! Just being out there, playing my own music, and getting to play songs that really meant something to me – I've been touring for a very long time, and to get to play songs that I really put my own heart and emotions into – it was really meaningful. The name of your album is Controlled Chaos. What do you mean by that title? Controlled Chaos is kind of a statement about how there are two ways you can handle all of the chaos that goes on in your life, in your mind, and in everything around you. You can chose to be overcome by it or you could choose to control it and make something great out of it. And that's what I tried to do with my album. I will finish out doing some more touring in support of Controlled Chaos and then I'll go back out on the road with Alice Cooper starting in June. What does the She Rocks awards mean to you and how did you become involved? They asked me to become involved and invited me years ago – and I liked the idea because I love bringing people together in an industry where – especially bringing women together in an industry that is dominated by men. Although I don't like separating myself out as a woman in an industry, I do think it strengthens the community and it strengthens the people in the community to support each other. And it helps to put focus on self-confidence – and it's also a great message for younger people. Your latest album is called Lullaby Girl and there's some covers on it. Did any of the artists you covered hear or comment on it? They did! I actually sent the Fleetwood Mac song to Mick Fleetwood and he loved it. I know that Rainbow Connection – that Paul Williams loves our version of it. Also the guy who wrote Be My Baby – he listed to it and he thought it was really cool. And tell me about the new album. The new album is something I'm working on right now and I can't really talk about it a lot till it's out. But I am working on it. I will make 25 cents and I will be very happy! How did you become involved with She Rocks and what does the She Rocks Awards mean to you? It's huge for me because it's an honor from women – and women in music are what inspired me to do this at all. They changed my life. So to be part of this and to be noticed is just a huge deal for me. Your last album Animal came out in 2013. How close are you to recording new music? It's coming out in May. It's a new album called Transcend Dance with the original Berlin. John and David and I. Is there any story behind the title Transcend Dance? And will you be doing any touring and playing these new songs? And you were once up for the part of Princess Leah in Star Wars? Yeah, you could see the audition up on YouTube. Do you ever regret not getting the part? No, not at all! Because this wouldn't have happened. Music was what I really, really wanted to do. I wanted it so much it scared me. So other things were happening and I was like "Okay, I'll
[ 405, 2028, 7357, 1558, 5735, 297, 2296, 1528, 4684, 29991, 13, 1576, 922, 794, 29882, 8081, 950, 2296, 1528, 4684, 9220, 7679, 287, 278, 5619, 310, 23434, 20367, 6391, 373, 5490, 29871, 29906, 29945, 29892, 29871, 29906, 29900, 29896, 29929, 373, 278, 4723, 355, 310, 450, 405, 5194, 29924, 7704, 29889, 16956, 287, 491, 278, 10152, 29915, 29879, 4623, 6125, 8527, 313, 1552, 14570, 29924, 29940, 511, 278, 330, 2883, 10894, 362, 15000, 263, 5810, 29899, 18082, 7176, 1409, 310, 4207, 487, 267, 29892, 3704, 5061, 374, 405, 5963, 310, 5115, 29892, 29420, 4309, 774, 322, 405, 2028, 7357, 1558, 29892, 408, 1532, 1784, 916, 5866, 515, 599, 26995, 310, 278, 4696, 322, 10348, 13661, 29889, 13, 16382, 4366, 29879, 5134, 11210, 391, 405, 2028, 7357, 1558, 15859, 10470, 29915, 29879, 376, 1576, 7704, 19928, 2921, 1551, 1699, 322, 29420, 4309, 774, 15859, 902, 396, 29896, 4823, 376, 855, 388, 1699, 607, 471, 15000, 373, 278, 830, 2877, 350, 3246, 6047, 11294, 29892, 411, 278, 10516, 28088, 29879, 29889, 13, 29911, 261, 374, 405, 5963, 29892, 10894, 1218, 5115, 29915, 29879, 29871, 29946, 29900, 386, 530, 1240, 27547, 445, 1629, 29892, 8560, 902, 525, 29947, 29900, 29879, 2867, 20678, 1560, 1161, 7124, 376, 10095, 307, 1699, 21302, 491, 5115, 12247, 391, 29892, 17841, 12988, 29920, 322, 278, 2296, 1528, 4684, 5619, 5158, 29889, 13, 5618, 947, 372, 2099, 304, 366, 304, 7150, 445, 9862, 515, 2296, 1528, 4684, 29973, 13, 3112, 29915, 29879, 2289, 1316, 385, 10657, 304, 367, 1244, 322, 367, 451, 871, 13407, 4249, 1438, 29811, 1821, 5866, 29892, 541, 2869, 304, 367, 2805, 385, 9862, 363, 372, 338, 1407, 1190, 6370, 29889, 13, 5328, 1258, 596, 7786, 6282, 411, 17323, 478, 2561, 6051, 748, 322, 825, 892, 777, 310, 278, 12141, 29879, 29973, 13, 3112, 471, 29811, 1821, 29991, 3387, 1641, 714, 727, 29892, 8743, 590, 1914, 4696, 29892, 322, 2805, 304, 1708, 12516, 393, 2289, 6839, 1554, 304, 592, 785, 306, 29915, 345, 1063, 6282, 292, 363, 263, 1407, 1472, 931, 29892, 322, 304, 679, 304, 1708, 12516, 393, 306, 2289, 1925, 590, 1914, 5192, 322, 23023, 1080, 964, 785, 372, 471, 2289, 6593, 1319, 29889, 13, 1576, 1024, 310, 596, 3769, 338, 11264, 839, 16579, 359, 29889, 1724, 437, 366, 2099, 491, 393, 3611, 29973, 13, 4809, 839, 16579, 359, 338, 2924, 310, 263, 3229, 1048, 920, 727, 526, 1023, 5837, 366, 508, 4386, 599, 310, 278, 10329, 359, 393, 5771, 373, 297, 596, 2834, 29892, 297, 596, 3458, 29892, 322, 297, 4129, 2820, 366, 29889, 887, 508, 12784, 304, 367, 25688, 491, 372, 470, 366, 1033, 6755, 304, 2761, 372, 322, 1207, 1554, 2107, 714, 310, 372, 29889, 1126, 393, 29915, 29879, 825, 306, 1898, 304, 437, 411, 590, 3769, 29889, 13, 29902, 674, 8341, 714, 2599, 777, 901, 6282, 292, 297, 2304, 310, 11264, 839, 16579, 359, 322, 769, 306, 29915, 645, 748, 1250, 714, 373, 278, 6520, 411, 16308, 21851, 6257, 297, 5306, 29889, 13, 5618, 947, 278, 2296, 1528, 4684, 24441, 2099, 304, 366, 322, 920, 1258, 366, 4953, 9701, 29973, 13, 15597, 4433, 592, 304, 4953, 9701, 322, 23610, 592, 2440, 8020, 785, 322, 306, 23289, 278, 2969, 1363, 306, 5360, 20794, 2305, 4208, 297, 385, 13661, 988, 785, 7148, 20794, 5866, 4208, 297, 385, 13661, 393, 338, 8022, 630, 491, 1757, 29889, 8512, 306, 1016, 29915, 29873, 763, 2903, 1218, 6142, 714, 408, 263, 6114, 297, 385, 13661, 29892, 306, 437, 1348, 372, 9324, 575, 278, 7881, 322, 372, 9324, 575, 278, 2305, 297, 278, 7881, 304, 2304, 1269, 916, 29889, 1126, 372, 6911, 304, 1925, 8569, 373, 1583, 29899, 5527, 5084, 785, 322, 372, 29915, 29879, 884, 263, 2107, 2643, 363, 20023, 2305, 29889, 13, 10858, 9281, 3769, 338, 2000, 365, 913, 10798, 18620, 322, 727, 29915, 29879, 777, 18469, 373, 372, 29889, 7440, 738, 310, 278, 17906, 366, 10664, 8293, 470, 3440, 373, 372, 29973, 13, 15597, 1258, 29991, 306, 2869, 2665, 278, 13859, 300, 6115, 4326, 4823, 304, 341, 860, 13859, 300, 6115, 322, 540, 18012, 372, 29889, 306, 1073, 393, 21431, 17729, 15160, 785, 393, 3739, 11648, 12355, 267, 1749, 1873, 310, 372, 29889, 3115, 278, 1410, 29891, 1058, 5456, 1522, 1619, 26835, 785, 540, 9904, 304, 372, 322, 540, 2714, 372, 471, 2289, 12528, 29889, 13, 2855, 2649, 592, 1048, 278, 716, 3769, 29889, 13, 1576, 716, 3769, 338, 1554, 306, 29915, 29885, 1985, 373, 1492, 1286, 322, 306, 508, 29915, 29873, 2289, 5193, 1048, 372, 263, 3287, 3428, 372, 29915, 29879, 714, 29889, 1205, 306, 626, 1985, 373, 372, 29889, 13, 29902, 674, 1207, 29871, 29906, 29945, 274, 1237, 322, 306, 674, 367, 1407, 9796, 29991, 13, 5328, 1258, 366, 4953, 9701, 411, 2296, 1528, 4684, 322, 825, 947, 278, 2296, 1528, 4684, 9220, 2099, 304, 366, 29973, 13, 3112, 29915, 29879, 12176, 363, 592, 1363, 372, 29915, 29879, 385, 10657, 515, 5866, 785, 322, 5866, 297, 4696, 526, 825, 20603, 592, 304, 437, 445, 472, 599, 29889, 2688, 3939, 590, 2834, 29889, 1105, 304, 367, 760, 310, 445, 322, 304, 367, 10548, 338, 925, 263, 12176, 5376, 363, 592, 29889, 13, 10858, 1833, 3769, 22809, 2996, 714, 297, 29871, 29906, 29900, 29896, 29941, 29889, 1128, 3802, 526, 366, 304, 16867, 716, 4696, 29973, 13, 3112, 29915, 29879, 6421, 714, 297, 2610, 29889, 739, 29915, 29879, 263, 716, 3769, 2000, 4103, 29883, 355, 22440, 411, 278, 2441, 5115, 29889, 2259, 322, 4699, 322, 306, 29889, 13, 3624, 727, 738, 5828, 5742, 278, 3611, 4103, 29883, 355, 22440, 29973, 13, 2855, 674, 366, 367, 2599, 738, 6282, 292, 322, 8743, 1438, 716, 12516, 29973, 13, 2855, 366, 892, 2748, 701, 363, 278, 760, 310, 22063, 951, 801, 297, 7828, 9149, 29973, 13, 29979, 29872, 801, 29892, 366, 1033, 1074, 278, 12990, 654, 701, 373, 14711, 29889, 13, 6132, 366, 3926, 28883, 451, 2805, 278, 760, 29973, 13, 3782, 29892, 451, 472, 599, 29991, 7311, 445, 7656, 29915, 29873, 505, 9559, 29889, 6125, 471, 825, 306, 2289, 29892, 2289, 5131, 304, 437, 29889, 306, 5131, 372, 577, 1568, 372, 885, 1965, 592, 29889, 1105, 916, 2712, 892, 10464, 322, 306, 471, 763, 376, 20434, 388, 29892, 306, 29915, 645 ]
1,024
C4
0.859345
-1.219274
-0.341379
-0.426358
On Thursday the market dropped on rising volume. On Friday it rose on lower volume. I can't tell you the number of times I've read that this pattern is bearish. The classic line of thinking suggests that you want the market to rise on higher volume and drop on lower volume. Therefore many technicians have a habit of looking at any 2-day period such as Thursday & Friday and automatically determining good or bad based on what day the volume rose and what day it dropped. If it had fallen on lower volume and risen on higher volume you'd undoubtedly be able to find someone writing about how that was a bullish volume pattern. Let's take a look at some 2-day volume patterns to assess the validity of such analysis. 1) Up day on up volume followed by down day on down volume. 2) Up day on down volume followed by down day on up volume. 3) Down day on down volume followed by up day on up volume. 4) Down day on up volume followed by up day on down volume. Before viewing the results, to give you some context, the average day over the test period gained about 0.03%, or $30. Now let's look at the 1st scenario first. So you have a strong move higher followed by a light volume pullback. Based on the overly-simple classic analysis this would seem to be a very positive pattern. In fact over the following three days there has had a negative implication, and looking out 1 week there is still a strong underperformance vs. a typical 5-day period. Keeping the same price pattern and flipping the volume pattern we get scenario #2 above. This would often be looked at as a negative volume pattern. Let's look and compare it to #1. The price pattern still underperforms over the 1st 2 days, but it's made up for by the end of the week. All of the expectations are net positive and the results are much stronger than scenario #1. This may come as quite a surprise to most people. So now let's move on to scenario #3. Here we have a down day followed by and up day with a "classically bullish" volume pattern. Not seen above is that while net expectations do turn positive again starting on day 6, they still are the worst of the 4 scenarios even looking 2 weeks out. Traditional analysis would again fail here. In fact this was the most bullish 2-day pattern of the bunch. Of further note I actually ran the tests out as far as 2 weeks. The end results were all the same as above so I didn't feel the need to show that much data. While I didn't take much stock in this kind of simple volume analysis before the study, I was quite surprised to find the results were so strongly in opposition to what is commonly believed. 1) Don't be sucked in to believing that up volume on up days and down volume on down days is necessarily a bullish pattern. Also down volume on up days and up volume on down days aren't necessarily bearish. There's a lot of misinformation out there and the real answer may be much more complex. 2) This doesn't mean volume isn't a useful tool. I've found it especially useful at extremes. Traders who would like to sample some ways in which volume can be used to create an edge can check out the past volume studies by clicking here or using the volume label on the right hand side of the blog. Teh traditional view is that a high volume drop indicates a large number of sellers. An alternative view is that a large volume drop represents a large number of buy limit orders sitting on the books (as compared to a low-volume drop, which can only happen when there aren't many limit orders). This view suggests that volume increases as prices move away from their fundamental value and decreases as prices move towards value. The reality is that there are always just as many buy orders filled as sell orders filled (at least by volume). Large voume is driven by liquidity demands (orders placed for reasons unrelated to price) or by disagreements over what the fundamental value is. Low volume means that everyone agrees that the price is right. High volume has an ambiguous meaning, as it depends on where the volume is coming from. Why not use the S&P500 volume? Why use the NYSE volume? Not that I think you'll get a different outcome, but wouldn't it make more sense given that the NYSE is a larger number of stocks? ha ha - most people operate by repeating what others say. They say it with a
[ 1551, 498, 1295, 3250, 278, 9999, 13700, 373, 20493, 7977, 29889, 1551, 28728, 372, 11492, 373, 5224, 7977, 29889, 306, 508, 29915, 29873, 2649, 366, 278, 1353, 310, 3064, 306, 29915, 345, 1303, 393, 445, 4766, 338, 11460, 728, 29889, 450, 22037, 1196, 310, 7291, 14661, 393, 366, 864, 278, 9999, 304, 14451, 373, 6133, 7977, 322, 5768, 373, 5224, 7977, 29889, 7857, 1784, 5722, 14722, 505, 263, 4760, 310, 3063, 472, 738, 29871, 29906, 29899, 3250, 3785, 1316, 408, 498, 1295, 3250, 669, 28728, 322, 6336, 3683, 2827, 1781, 470, 4319, 2729, 373, 825, 2462, 278, 7977, 11492, 322, 825, 2462, 372, 13700, 29889, 960, 372, 750, 19225, 373, 5224, 7977, 322, 5161, 264, 373, 6133, 7977, 366, 29915, 29881, 563, 283, 3116, 23244, 367, 2221, 304, 1284, 4856, 5007, 1048, 920, 393, 471, 263, 289, 913, 728, 7977, 4766, 29889, 2803, 29915, 29879, 2125, 263, 1106, 472, 777, 29871, 29906, 29899, 3250, 7977, 15038, 304, 24809, 278, 2854, 537, 310, 1316, 7418, 29889, 13, 29896, 29897, 5020, 2462, 373, 701, 7977, 5643, 491, 1623, 2462, 373, 1623, 7977, 29889, 13, 29906, 29897, 5020, 2462, 373, 1623, 7977, 5643, 491, 1623, 2462, 373, 701, 7977, 29889, 13, 29941, 29897, 9943, 2462, 373, 1623, 7977, 5643, 491, 701, 2462, 373, 701, 7977, 29889, 13, 29946, 29897, 9943, 2462, 373, 701, 7977, 5643, 491, 701, 2462, 373, 1623, 7977, 29889, 13, 18743, 1776, 292, 278, 2582, 29892, 304, 2367, 366, 777, 3030, 29892, 278, 6588, 2462, 975, 278, 1243, 3785, 17515, 1048, 29871, 29900, 29889, 29900, 29941, 13667, 470, 395, 29941, 29900, 29889, 2567, 1235, 29915, 29879, 1106, 472, 278, 29871, 29896, 303, 10483, 937, 29889, 13, 6295, 366, 505, 263, 4549, 4337, 6133, 5643, 491, 263, 3578, 7977, 8206, 1627, 29889, 16564, 373, 278, 975, 368, 29899, 12857, 22037, 7418, 445, 723, 2833, 304, 367, 263, 1407, 6374, 4766, 29889, 512, 2114, 975, 278, 1494, 2211, 3841, 727, 756, 750, 263, 8178, 2411, 1414, 29892, 322, 3063, 714, 29871, 29896, 4723, 727, 338, 1603, 263, 4549, 1090, 546, 13390, 7186, 29889, 263, 15662, 29871, 29945, 29899, 3250, 3785, 29889, 13, 9598, 26819, 278, 1021, 8666, 4766, 322, 285, 492, 3262, 278, 7977, 4766, 591, 679, 10483, 396, 29906, 2038, 29889, 910, 723, 4049, 367, 5148, 472, 408, 263, 8178, 7977, 4766, 29889, 2803, 29915, 29879, 1106, 322, 7252, 372, 304, 396, 29896, 29889, 13, 1576, 8666, 4766, 1603, 1090, 546, 9514, 975, 278, 29871, 29896, 303, 29871, 29906, 3841, 29892, 541, 372, 29915, 29879, 1754, 701, 363, 491, 278, 1095, 310, 278, 4723, 29889, 2178, 310, 278, 2149, 800, 526, 7787, 6374, 322, 278, 2582, 526, 1568, 23505, 1135, 10483, 396, 29896, 29889, 910, 1122, 2041, 408, 3755, 263, 16671, 304, 1556, 2305, 29889, 13, 6295, 1286, 1235, 29915, 29879, 4337, 373, 304, 10483, 396, 29941, 29889, 2266, 591, 505, 263, 1623, 2462, 5643, 491, 322, 701, 2462, 411, 263, 376, 1990, 1711, 289, 913, 728, 29908, 7977, 4766, 29889, 13, 3664, 3595, 2038, 338, 393, 1550, 7787, 2149, 800, 437, 2507, 6374, 1449, 6257, 373, 2462, 29871, 29953, 29892, 896, 1603, 526, 278, 17322, 310, 278, 29871, 29946, 21846, 1584, 3063, 29871, 29906, 11405, 714, 29889, 13, 2308, 328, 3245, 7418, 723, 1449, 4418, 1244, 29889, 512, 2114, 445, 471, 278, 1556, 289, 913, 728, 29871, 29906, 29899, 3250, 4766, 310, 278, 14928, 29889, 13, 2776, 4340, 4443, 306, 2869, 6350, 278, 6987, 714, 408, 2215, 408, 29871, 29906, 11405, 29889, 450, 1095, 2582, 892, 599, 278, 1021, 408, 2038, 577, 306, 3282, 29915, 29873, 4459, 278, 817, 304, 1510, 393, 1568, 848, 29889, 13, 8809, 488, 306, 3282, 29915, 29873, 2125, 1568, 10961, 297, 445, 2924, 310, 2560, 7977, 7418, 1434, 278, 6559, 29892, 306, 471, 3755, 18014, 304, 1284, 278, 2582, 892, 577, 13818, 297, 19626, 304, 825, 338, 15574, 13112, 29889, 13, 29896, 29897, 3872, 29915, 29873, 367, 480, 384, 287, 297, 304, 1339, 15387, 393, 701, 7977, 373, 701, 3841, 322, 1623, 7977, 373, 1623, 3841, 338, 12695, 263, 289, 913, 728, 4766, 29889, 3115, 1623, 7977, 373, 701, 3841, 322, 701, 7977, 373, 1623, 3841, 9455, 29915, 29873, 12695, 11460, 728, 29889, 1670, 29915, 29879, 263, 3287, 310, 3984, 19678, 714, 727, 322, 278, 1855, 1234, 1122, 367, 1568, 901, 4280, 29889, 13, 29906, 29897, 910, 1838, 29915, 29873, 2099, 7977, 3508, 29915, 29873, 263, 5407, 5780, 29889, 306, 29915, 345, 1476, 372, 7148, 5407, 472, 9413, 267, 29889, 18375, 414, 1058, 723, 763, 304, 4559, 777, 5837, 297, 607, 7977, 508, 367, 1304, 304, 1653, 385, 7636, 508, 1423, 714, 278, 4940, 7977, 11898, 491, 14855, 1244, 470, 773, 278, 7977, 3858, 373, 278, 1492, 1361, 2625, 310, 278, 12618, 29889, 13, 7141, 29882, 13807, 1776, 338, 393, 263, 1880, 7977, 5768, 14088, 263, 2919, 1353, 310, 19417, 414, 29889, 530, 8671, 1776, 338, 393, 263, 2919, 7977, 5768, 11524, 263, 2919, 1353, 310, 15649, 4046, 11299, 16246, 373, 278, 8277, 313, 294, 9401, 304, 263, 4482, 29899, 24623, 5768, 29892, 607, 508, 871, 3799, 746, 727, 9455, 29915, 29873, 1784, 4046, 11299, 467, 910, 1776, 14661, 393, 7977, 16415, 408, 26094, 4337, 3448, 515, 1009, 15281, 995, 322, 9263, 2129, 408, 26094, 4337, 7113, 995, 29889, 13, 1576, 16832, 338, 393, 727, 526, 2337, 925, 408, 1784, 15649, 11299, 10423, 408, 19417, 11299, 10423, 313, 271, 3203, 491, 7977, 467, 8218, 479, 28078, 1004, 338, 18225, 491, 23904, 537, 1261, 4167, 313, 20488, 7180, 363, 9590, 443, 12817, 304, 8666, 29897, 470, 491, 22941, 276, 4110, 975, 825, 278, 15281, 995, 338, 29889, 17511, 7977, 2794, 393, 14332, 8571, 267, 393, 278, 8666, 338, 1492, 29889, 5057, 7977, 756, 385, 22363, 681, 6593, 29892, 408, 372, 7111, 373, 988, 278, 7977, 338, 6421, 515, 29889, 13, 11008, 451, 671, 278, 317, 29987, 29925, 29945, 29900, 29900, 7977, 29973, 3750, 671, 278, 23526, 1660, 7977, 29973, 2216, 393, 306, 1348, 366, 29915, 645, 679, 263, 1422, 21957, 29892, 541, 7656, 29915, 29873, 372, 1207, 901, 4060, 2183, 393, 278, 23526, 1660, 338, 263, 7200, 1353, 310, 10961, 29879, 29973, 13, 2350, 447, 448, 1556, 2305, 21994, 491, 28769, 825, 4045, 1827, 29889, 2688, 1827, 372, 411, 263 ]
1,024
C4
-0.162949
0.142102
-0.029022
0.157857
Banned Books Week: All Quiet on the Western Front, by Erich Maria Remarque Categories:Blog, Reviews by Marcel Krueger Berlin book burnings 1933, by Bundesarchiv, Bild 102-14597 / Georg Pahl / CC-BY-SA 3.0 No to decadence and moral corruption! Yes to decency and morality in family and state! I consign to the flames the writings of Heinrich Mann, Bertolt Brecht, Erich Remarque, Erich Kästner! – Joseph Goebbels​, 10 May 1933, Berlin In 1930, the Neues Schauspielhaus (New Theatre) on Nollendorfplatz in Berlin drew the attention of Nazi brownshirts for showing the premiere of an American movie. The thugs disrupted the German by releasing hundreds of white mice in the cinema, throwing stink bombs and beating up fleeing punters. The film that caused so much trouble at the cinema, Im Westen nichts Neues (All Quiet on the Western Front), was based on the 1929 novel of the same name by prolific German writer Erich Maria Remarque (1898 – 1970). Remarque was conscripted into the Kaiser's army and served on the Western Front in Belgium, where in 1917 he was wounded and spent the rest of the war in an army hospital. After his release from hospital, he worked a number of different jobs and moved to Berlin in 1925, living initially in a number of small flats across the city. His choice of accommodation however soon changed, after the 1929 publication of All Quiet on the Western Front. The book retells the experience of German soldiers in the trenches of World War I in a way that – judging by the 2.5 million copies sold in 22 languages in its first 18 months in print – not only spoke to German veterans but to all soldiers who had fought in World War I. The story is told from the point of view of Paul Bäumer, a German soldier who—urged on by his school teacher—joins the German army, and is subsequently sent to fight on the Western front of World War I. Here he witnesses all the madness and horror of industrialised warfare, the aloofness of the commanding officers and the camaraderie that is shared by soldiers on all sides destined to become canon fodder. In 1918, Paul is killed on day about which the official army report from the frontline simply states: "All quiet on the Western Front." But it is not the harrowingly realistic depiction of war in the trenches that makes this book so outstanding and have kept it in print until today, but the fact that Remarque saw through all the propaganda and nationalist slogans of his time that were (again) pitting Germans against the French. He made the shared experience of the soldiers on both sides of the front a key part of the pacifist message of his book, as exemplified by this passage where Paul contemplates the man he has just killed: But now, for the first time, I see you are a man like me. I thought of your hand-grenades, of your bayonet, of your rifle; now I see your wife and your face and our fellowship. Forgive me, comrade. We always see it too late. Why do they never tell us that you are poor devils like us, that your mothers are just as anxious as ours, and that we have the same fear of death, and the same dying and the same agony–Forgive me, comrade; how could you be my enemy? By Bundesarchiv, Bild 183-R29825 / CC-BY-SA 3.0, CC BY-SA 3.0 de, commons.wikimedia.org/w/index.php?curid=5436406%5B/caption%5D The book immediately established Remarque as one of the most popular writers of his day, helped along by his film star looks and penchant for affairs and high-profile relationships with actresses like Hedy Lamarr, Marlene Dietrich and Greta Garbo. In 1931, after publishing a sequel to his bestseller called The Road Back, Remarque bought a villa in Switzerland and left Berlin for good. Like the writings of so many of his contemporaries, his books were burned by the
[ 350, 11310, 13730, 15511, 29901, 2178, 751, 2035, 373, 278, 10504, 13960, 29892, 491, 1425, 436, 6217, 5240, 279, 802, 13, 29907, 14404, 29901, 29933, 1188, 29892, 830, 7406, 13, 1609, 16633, 28499, 387, 261, 13, 17104, 1915, 3143, 12138, 886, 29871, 29896, 29929, 29941, 29941, 29892, 491, 8457, 24121, 29892, 11679, 29871, 29896, 29900, 29906, 29899, 29896, 29946, 29945, 29929, 29955, 847, 6158, 349, 4494, 847, 19178, 29899, 22716, 29899, 8132, 29871, 29941, 29889, 29900, 13, 3782, 304, 1602, 328, 663, 322, 14731, 1034, 18953, 29991, 3869, 304, 1602, 3819, 322, 3036, 2877, 297, 3942, 322, 2106, 29991, 306, 1136, 647, 304, 278, 1652, 1280, 278, 2044, 886, 310, 12612, 7908, 29892, 16662, 14339, 5826, 2570, 29892, 1425, 436, 5240, 279, 802, 29892, 1425, 436, 476, 16522, 1089, 29991, 13, 29994, 6936, 2921, 27885, 1379, 30166, 29892, 29871, 29896, 29900, 2610, 29871, 29896, 29929, 29941, 29941, 29892, 5115, 13, 797, 29871, 29896, 29929, 29941, 29900, 29892, 278, 2448, 1041, 15147, 6384, 6208, 313, 4373, 15521, 29897, 373, 405, 3028, 21466, 16739, 297, 5115, 15010, 278, 8570, 310, 11409, 29875, 17354, 845, 381, 1372, 363, 6445, 278, 5730, 406, 310, 385, 3082, 14064, 29889, 450, 266, 16926, 766, 14214, 278, 5332, 491, 337, 280, 5832, 21006, 310, 4796, 286, 625, 297, 278, 24615, 29892, 17452, 380, 682, 13585, 29879, 322, 367, 1218, 701, 9115, 22430, 6035, 2153, 29889, 13, 1576, 2706, 393, 8581, 577, 1568, 7458, 472, 278, 24615, 29892, 1954, 26582, 3072, 29879, 2448, 1041, 313, 3596, 751, 2035, 373, 278, 10504, 13960, 511, 471, 2729, 373, 278, 29871, 29896, 29929, 29906, 29929, 9554, 310, 278, 1021, 1024, 491, 410, 29880, 928, 5332, 9227, 1425, 436, 6217, 5240, 279, 802, 313, 29896, 29947, 29929, 29947, 785, 29871, 29896, 29929, 29955, 29900, 467, 5240, 279, 802, 471, 1136, 924, 287, 964, 278, 17123, 29915, 29879, 9987, 322, 6766, 373, 278, 10504, 13960, 297, 9923, 1974, 29892, 988, 297, 29871, 29896, 29929, 29896, 29955, 540, 471, 19747, 322, 10398, 278, 1791, 310, 278, 1370, 297, 385, 9987, 13457, 29889, 2860, 670, 6507, 515, 13457, 29892, 540, 3796, 263, 1353, 310, 1422, 17643, 322, 6153, 304, 5115, 297, 29871, 29896, 29929, 29906, 29945, 29892, 8471, 12919, 297, 263, 1353, 310, 2319, 1652, 1446, 4822, 278, 4272, 29889, 3600, 7348, 310, 24803, 362, 3138, 4720, 3939, 29892, 1156, 278, 29871, 29896, 29929, 29906, 29929, 17745, 310, 2178, 751, 2035, 373, 278, 10504, 13960, 29889, 450, 3143, 3240, 10071, 278, 7271, 310, 5332, 13936, 297, 278, 20639, 6609, 310, 2787, 3362, 306, 297, 263, 982, 393, 785, 6577, 3460, 491, 278, 29871, 29906, 29889, 29945, 7284, 14591, 5239, 297, 29871, 29906, 29906, 10276, 297, 967, 937, 29871, 29896, 29947, 7378, 297, 1596, 785, 451, 871, 12707, 304, 5332, 25808, 550, 541, 304, 599, 13936, 1058, 750, 20722, 297, 2787, 3362, 306, 29889, 450, 5828, 338, 5429, 515, 278, 1298, 310, 1776, 310, 3739, 350, 29986, 4680, 29892, 263, 5332, 20767, 1058, 30003, 2007, 287, 373, 491, 670, 3762, 15703, 30003, 2212, 1144, 278, 5332, 9987, 29892, 322, 338, 17602, 2665, 304, 8589, 373, 278, 10504, 4565, 310, 2787, 3362, 306, 29889, 2266, 540, 16277, 267, 599, 278, 10395, 2264, 322, 23026, 310, 18408, 3368, 1370, 24658, 29892, 278, 394, 29877, 974, 2264, 310, 278, 1899, 292, 13049, 322, 278, 3949, 279, 1664, 347, 393, 338, 7258, 491, 13936, 373, 599, 11192, 2731, 1312, 304, 4953, 15355, 285, 397, 672, 29889, 512, 29871, 29896, 29929, 29896, 29947, 29892, 3739, 338, 9445, 373, 2462, 1048, 607, 278, 6221, 9987, 3461, 515, 278, 4565, 1220, 3763, 5922, 29901, 376, 3596, 11813, 373, 278, 10504, 13960, 1213, 13, 6246, 372, 338, 451, 278, 298, 2936, 11687, 1855, 4695, 1401, 2463, 310, 1370, 297, 278, 20639, 6609, 393, 3732, 445, 3143, 577, 714, 11235, 322, 505, 8126, 372, 297, 1596, 2745, 9826, 29892, 541, 278, 2114, 393, 5240, 279, 802, 4446, 1549, 599, 278, 13089, 5863, 322, 4797, 391, 269, 1188, 550, 310, 670, 931, 393, 892, 313, 351, 475, 29897, 282, 5367, 7287, 550, 2750, 278, 5176, 29889, 940, 1754, 278, 7258, 7271, 310, 278, 13936, 373, 1716, 11192, 310, 278, 4565, 263, 1820, 760, 310, 278, 22906, 361, 391, 2643, 310, 670, 3143, 29892, 408, 29455, 2164, 491, 445, 13382, 988, 3739, 640, 331, 9884, 278, 767, 540, 756, 925, 9445, 29901, 13, 6246, 1286, 29892, 363, 278, 937, 931, 29892, 306, 1074, 366, 526, 263, 767, 763, 592, 29889, 306, 2714, 310, 596, 1361, 29899, 20378, 3076, 29892, 310, 596, 23041, 265, 300, 29892, 310, 596, 17018, 280, 29936, 1286, 306, 1074, 596, 6532, 322, 596, 3700, 322, 1749, 10404, 3527, 29889, 383, 990, 573, 592, 29892, 419, 15464, 29889, 1334, 2337, 1074, 372, 2086, 5683, 29889, 3750, 437, 896, 2360, 2649, 502, 393, 366, 526, 6460, 2906, 2719, 763, 502, 29892, 393, 596, 25550, 414, 526, 925, 408, 24937, 408, 1749, 29879, 29892, 322, 393, 591, 505, 278, 1021, 8866, 310, 4892, 29892, 322, 278, 1021, 27116, 322, 278, 1021, 946, 2592, 29994, 29943, 990, 573, 592, 29892, 419, 15464, 29936, 920, 1033, 366, 367, 590, 11103, 29973, 13, 2059, 8457, 24121, 29892, 11679, 29871, 29896, 29947, 29941, 29899, 29934, 29906, 29929, 29947, 29906, 29945, 847, 19178, 29899, 22716, 29899, 8132, 29871, 29941, 29889, 29900, 29892, 19178, 6770, 29899, 8132, 29871, 29941, 29889, 29900, 316, 29892, 844, 787, 29889, 2851, 3393, 29889, 990, 29914, 29893, 29914, 2248, 29889, 1961, 29973, 2764, 333, 29922, 29945, 29946, 29941, 29953, 29946, 29900, 29953, 29995, 29945, 29933, 29914, 6671, 29995, 29945, 29928, 13, 1576, 3143, 7389, 7841, 5240, 279, 802, 408, 697, 310, 278, 1556, 5972, 23550, 310, 670, 2462, 29892, 9213, 3412, 491, 670, 2706, 5810, 3430, 322, 6584, 13775, 363, 19469, 322, 1880, 29899, 10185, 21702, 411, 20993, 267, 763, 379, 7584, 12718, 2749, 29892, 1085, 29880, 1600, 24315, 4018, 322, 4122, 941, 7455, 833, 29889, 512, 29871, 29896, 29929, 29941, 29896, 29892, 1156, 27256, 263, 8617, 295, 304, 670, 1900, 29879, 4539, 2000, 450, 9321, 7437, 29892, 5240, 279, 802, 18093, 263, 21031, 297, 28806, 322, 2175, 5115, 363, 1781, 29889, 8502, 278, 2044, 886, 310, 577, 1784, 310, 670, 12010, 4314, 29892, 670, 8277, 892, 12138, 287, 491, 278 ]
1,024
CommonCrawl
1.878243
0.680683
1.568291
1.04833
2017 2 18 · Energy Saving Factory Wt Mine Minerals Hp 200 T Seal Cone Crusher Price For Sale . lead sf flotation machine hot sale in south Africa and Australia. Mining And Stone 3d Dwg Mobile Jaw Crusher In Zambia Buy 3d . Sbm Energy saving Crusher Cone Widely In Mining Machinery Buy . Sbm Energy saving Crusher Cone Widely In Mining Machinery ,plete Details . Crusher Cone,Energy saving Cone Crusher Minerals Hp 200 T Seal,Electric Hydraulic . Hot Sale Cone Crusher Minerals Hp 200 T Seal For Sale With. purchase a cone crusher 350 t hr crusher plant,300 ton crusher machine for sale 1000 t hr coal crusher energy saving cone crusher minerals hp . cone crusher for sale in australia hp 200. images energy saving cone crusher minerals. images energy saving cone crusher minerals hp 200 t seal, us $ 42,857 142,857 / set, new, cone crusher, cone crusher, innovative development of energy saving. 2017 1 19 · Energy Saving Factory Wt Mine Minerals Hp 200 T Seal Cone Crusher Price For Sale. Cyclone Wholesale, Machinery Suppliers High Quality Hydraulic cyclone separator price Gold Washer Mineral xciii hydraulic cyclone. cone crusher minerals hp 200 seal zenith. cone crusher minerals hp 200 t seal, America Crusher harga jaw crusher kapasitas 1000 ton per jam impact crusher wear parts Iron ore crusher jaw crusher jaw . Sbm Energy saving Cone Crusher Minerals Hp 200 T Seal Widely In Mining . SBM HPC cone crusher is is perfect for secondary, tertiary and quaternary . HPC Cone Crusher main work process is broken, clearance, adjustment, lubrication. Cone Crusher Minerals Hp 200 T Seal coaters.in. Omnicone Crusher Parts Machine Omnicone® is a mark of Minerals Industries, Inc. or its affiliates. Sbm Energy saving Cone Crusher Minerals Hp 200 T Seal Widely In SBM energy saving cone crusher minerals hp 200 t seal widely used in quarry machinery : HPC Cone Crusher is a high performance machine which our Chat Online. Small Cone Crusher. cone crusher minerals hp 200 t seal christoartfair.nl. can a stone cone crusher be used for crushing basalt,energy saving cone crusher minerals hp 200 t seal mineral processing movable cone crusher form China Alice Factory stone cone crusher Country/Region: Get a Price. sbm hp cone crusher foodconsultantsin. Sbm Energy saving Cone Crusher Minerals Hp 200 T Seal Widely In SCM energy saving cone crusher minerals hp 200 t seal widely used in , SCM HP 300 CONE CRUSHER FULL Chat Online sbm hp 300 cone crusher full . energy saving mineral Alkaline Mineral Balls. alkaline water beads clay ball mineral balls for water purifier. US $0.5 0.66 Kilogram. 5 Kilograms Min. Order. Sbm Energy saving Cone Crusher Minerals Hp 200 T Seal Widely In . energy saving cone crusher minerals hp 200 t seal widely used in quarry machinery : HPC Cone Crusher is a high performance machine which our. Get Price Jumbo Power Saver France Energy Saver Usa Electricity Saving . C
[ 29871, 29906, 29900, 29896, 29955, 29871, 29906, 29871, 29896, 29947, 30244, 30064, 30244, 29923, 1089, 1927, 317, 5555, 27561, 399, 29873, 26833, 3080, 261, 1338, 379, 29886, 29871, 29906, 29900, 29900, 323, 922, 284, 315, 650, 6781, 1878, 261, 20743, 1152, 317, 744, 869, 3275, 18668, 1652, 327, 362, 4933, 7375, 14686, 297, 7062, 10557, 322, 8314, 29889, 341, 2827, 1126, 15681, 29871, 29941, 29881, 360, 29893, 29887, 21600, 435, 1450, 6781, 1878, 261, 512, 796, 1117, 423, 5373, 29891, 29871, 29941, 29881, 869, 13, 29903, 5838, 24836, 14238, 6781, 1878, 261, 315, 650, 399, 333, 873, 512, 341, 2827, 17197, 262, 708, 5373, 29891, 869, 317, 5838, 24836, 14238, 6781, 1878, 261, 315, 650, 399, 333, 873, 512, 341, 2827, 17197, 262, 708, 1919, 552, 371, 25577, 869, 6781, 1878, 261, 315, 650, 29892, 29923, 1089, 1927, 14238, 315, 650, 6781, 1878, 261, 3080, 261, 1338, 379, 29886, 29871, 29906, 29900, 29900, 323, 922, 284, 29892, 29923, 781, 2200, 379, 2941, 336, 352, 293, 869, 13, 28917, 317, 744, 315, 650, 6781, 1878, 261, 3080, 261, 1338, 379, 29886, 29871, 29906, 29900, 29900, 323, 922, 284, 1152, 317, 744, 2973, 29889, 20590, 263, 27843, 2181, 1878, 261, 29871, 29941, 29945, 29900, 260, 22157, 2181, 1878, 261, 8024, 29892, 29941, 29900, 29900, 15243, 2181, 1878, 261, 4933, 363, 14686, 29871, 29896, 29900, 29900, 29900, 260, 22157, 17148, 2181, 1878, 261, 5864, 14238, 27843, 2181, 1878, 261, 1375, 261, 1338, 298, 29886, 869, 27843, 2181, 1878, 261, 363, 14686, 297, 19827, 423, 298, 29886, 29871, 29906, 29900, 29900, 29889, 13, 8346, 5864, 14238, 27843, 2181, 1878, 261, 1375, 261, 1338, 29889, 4558, 5864, 14238, 27843, 2181, 1878, 261, 1375, 261, 1338, 298, 29886, 29871, 29906, 29900, 29900, 260, 409, 284, 29892, 502, 395, 29871, 29946, 29906, 29892, 29947, 29945, 29955, 29871, 29896, 29946, 29906, 29892, 29947, 29945, 29955, 847, 731, 29892, 716, 29892, 27843, 2181, 1878, 261, 29892, 27843, 2181, 1878, 261, 29892, 24233, 1230, 5849, 310, 5864, 14238, 29889, 13, 29906, 29900, 29896, 29955, 29871, 29896, 29871, 29896, 29929, 30244, 30064, 30244, 29923, 1089, 1927, 317, 5555, 27561, 399, 29873, 26833, 3080, 261, 1338, 379, 29886, 29871, 29906, 29900, 29900, 323, 922, 284, 315, 650, 6781, 1878, 261, 20743, 1152, 317, 744, 29889, 8045, 16513, 806, 6544, 744, 29892, 17197, 262, 708, 9179, 27801, 5057, 751, 2877, 379, 2941, 336, 352, 293, 5094, 16513, 28128, 8666, 6650, 399, 1161, 261, 3080, 13537, 921, 455, 2236, 27246, 336, 352, 293, 5094, 16513, 29889, 13, 535, 29872, 2181, 1878, 261, 1375, 261, 1338, 298, 29886, 29871, 29906, 29900, 29900, 409, 284, 503, 264, 389, 29889, 27843, 2181, 1878, 261, 1375, 261, 1338, 298, 29886, 29871, 29906, 29900, 29900, 260, 409, 284, 29892, 6813, 6781, 1878, 261, 298, 21899, 432, 1450, 2181, 1878, 261, 10494, 294, 16628, 29871, 29896, 29900, 29900, 29900, 15243, 639, 14322, 10879, 2181, 1878, 261, 19531, 5633, 20492, 28074, 2181, 1878, 261, 432, 1450, 2181, 1878, 261, 432, 1450, 869, 13, 29903, 5838, 24836, 14238, 315, 650, 6781, 1878, 261, 3080, 261, 1338, 379, 29886, 29871, 29906, 29900, 29900, 323, 922, 284, 399, 333, 873, 512, 341, 2827, 869, 317, 29933, 29924, 379, 9026, 27843, 2181, 1878, 261, 338, 338, 4922, 363, 16723, 29892, 260, 814, 29875, 653, 322, 439, 25744, 653, 869, 379, 9026, 315, 650, 6781, 1878, 261, 1667, 664, 1889, 338, 9391, 29892, 2821, 749, 29892, 10365, 358, 29892, 14757, 2200, 362, 29889, 13, 29907, 650, 6781, 1878, 261, 3080, 261, 1338, 379, 29886, 29871, 29906, 29900, 29900, 323, 922, 284, 1302, 10412, 29889, 262, 29889, 13352, 7823, 650, 6781, 1878, 261, 3455, 29879, 6189, 13352, 7823, 650, 30342, 338, 263, 2791, 310, 3080, 261, 1338, 12157, 2722, 29892, 9266, 29889, 470, 967, 23736, 1078, 29889, 13, 29903, 5838, 24836, 14238, 315, 650, 6781, 1878, 261, 3080, 261, 1338, 379, 29886, 29871, 29906, 29900, 29900, 323, 922, 284, 399, 333, 873, 512, 317, 29933, 29924, 5864, 14238, 27843, 2181, 1878, 261, 1375, 261, 1338, 298, 29886, 29871, 29906, 29900, 29900, 260, 409, 284, 17644, 1304, 297, 20089, 719, 7672, 262, 708, 584, 379, 9026, 315, 650, 6781, 1878, 261, 338, 263, 1880, 4180, 4933, 607, 1749, 678, 271, 13542, 29889, 18285, 315, 650, 6781, 1878, 261, 29889, 13, 535, 29872, 2181, 1878, 261, 1375, 261, 1338, 298, 29886, 29871, 29906, 29900, 29900, 260, 409, 284, 25542, 29877, 442, 29888, 1466, 29889, 12938, 29889, 508, 263, 12565, 27843, 2181, 1878, 261, 367, 1304, 363, 2181, 21616, 2362, 1997, 29892, 27548, 14238, 27843, 2181, 1878, 261, 1375, 261, 1338, 298, 29886, 29871, 29906, 29900, 29900, 260, 409, 284, 1375, 13537, 9068, 2351, 519, 27843, 2181, 1878, 261, 883, 7551, 16308, 27561, 12565, 27843, 2181, 1878, 261, 15456, 29914, 18457, 29901, 3617, 263, 20743, 29889, 13, 29879, 5838, 298, 29886, 27843, 2181, 1878, 261, 9687, 3200, 499, 1934, 262, 29889, 317, 5838, 24836, 14238, 315, 650, 6781, 1878, 261, 3080, 261, 1338, 379, 29886, 29871, 29906, 29900, 29900, 323, 922, 284, 399, 333, 873, 512, 12314, 29924, 5864, 14238, 27843, 2181, 1878, 261, 1375, 261, 1338, 298, 29886, 29871, 29906, 29900, 29900, 260, 409, 284, 17644, 1304, 297, 1919, 12314, 29924, 379, 29925, 29871, 29941, 29900, 29900, 8707, 29923, 15600, 3308, 4448, 383, 3299, 678, 271, 13542, 269, 5838, 298, 29886, 29871, 29941, 29900, 29900, 27843, 2181, 1878, 261, 2989, 869, 13, 27548, 14238, 1375, 13537, 838, 11311, 457, 3080, 13537, 350, 4293, 29889, 394, 11311, 457, 4094, 367, 7925, 1067, 388, 8287, 1375, 13537, 26563, 363, 4094, 3708, 3709, 29889, 3148, 395, 29900, 29889, 29945, 29871, 29900, 29889, 29953, 29953, 12400, 13342, 29889, 29871, 29945, 12400, 468, 25402, 3080, 29889, 8170, 29889, 13, 29903, 5838, 24836, 14238, 315, 650, 6781, 1878, 261, 3080, 261, 1338, 379, 29886, 29871, 29906, 29900, 29900, 323, 922, 284, 399, 333, 873, 512, 869, 5864, 14238, 27843, 2181, 1878, 261, 1375, 261, 1338, 298, 29886, 29871, 29906, 29900, 29900, 260, 409, 284, 17644, 1304, 297, 20089, 719, 7672, 262, 708, 584, 379, 9026, 315, 650, 6781, 1878, 261, 338, 263, 1880, 4180, 4933, 607, 1749, 29889, 3617, 20743, 435, 398, 833, 9206, 5701, 369, 3444, 24836, 5701, 369, 501, 4977, 26953, 537, 317, 5555, 869, 13, 29907 ]
1,024
C4
-2.110403
-1.333479
-2.100643
-1.896303
All Hurricane Gifts & Collectibles Movies & TV DVDs Blu-ray VHS Music CDs Vinyl Artists Song Titles Books Magazines Electronics Hurricane Take What You Want Get email alerts for Hurricane TOP 100 Bestseller 10+ ratings SUPER SAVINGS: $1.75 + $1 additional shipping Available: Usually ships in 1-3 business days sku: WZLP 137 on most orders of $75+ Overstock / Closeout (Warehouse Remainder) "WZ" coded vinyl LPs are in new and never-played condition, but are warehouse remainders. Most are sealed, however many have manufacturer's delete notch, drill hole, prior sale stickers and/or minor shelf wear. If you are not 100% satisfied with your purchase, our 30-Day Return Policy would apply. Queensrÿche: Operation: Mindcrime (180Gv) for $23.50 Hardline: Double Eclipse for $9.90 Legend: The Best Of Bob Marley And The Wailers (30th Anniversary) (2-LPS Tri-Color Vinyl) for $29.50 Def Leppard: Hysteria (2LPs - 180GV) for $28.70 30-LP Grab Bag: Mixed Genres for $49.98 91% recommend us! Join our 135,695 fans Hurricane Hurricane ~ from the album Take What You Want (Music Video) Hurricane - Take Me In Your Arms (Music Video) Vinyl LP Details ORIGINAL PRESSING Originally Released: 1985 Label: Enigma Records Tracks on Disc 1: 1.Take Me In Your Arms [4:05] 2.The Girls Are Out Tonight [3:28] 3.Take What You Want [3:32] 1.Hurricane [3:25] 2.It's Only Heaven [6:39] 3.Hot and Heavy [3:35] Hard Rock. Kelly Hansen, Jay Schellen, Robert Sarzo Hurricane is a 1980s heavy metal band originally featuring current Foreigner lead vocalist Kelly Hansen (vocals/rhythm guitar), Robert Sarzo (guitar), Tony Cavazo (bass), and Jay Schellen (drums). Cavazo and Sarzo are the younger brothers of Quiet Riot's Carlos Cavazo and Rudy Sarzo. Hurricane released four albums: Take What You Want (1985), Over the Edge (1988), Slave to the Thrill (1990), and Liquifury (2001). Over the Edge was their most successful album featuring their only top 40 hit (at 33), "I'm on to You" in 1988 (written by Jeff Jones). Abstract Reality (12") TOP 100 Bestseller Greatest Hits TOP 100 Bestseller Old 8x10 TOP 100 Bestseller Reign of Terror TOP 100 Bestseller Standard [UK Pressing] Annihilation Absolute TOP 100 Bestseller 20 Golden Hits Together as One 50¢ Super Savings E-X-E Stricken By Might Street Fighting Years $2 Super Savings Music Categories: Product Groupings: Vinyl LP Overstock & Closeouts Clearance Vinyl Over 80% Off Vinyl Sales Rank: 25 Shipping Weight: 0.50/lbs (approx) International Shipping: 2 items Mind Over Metal Live At The Apollo Progressions Of Power Ballistic Kisses Paddington Bear's Gold Record (Lemonade Color Vinyl) Don't Get Mad...Get Even Merry Christmas Baby / War TOP 10 Bestseller 99¢ on Sale Heart of Glass / The Tide Is High TOP 100 Bestseller When A Man Loves A Woman / Out In Left Field TOP 100 Best
[ 2178, 379, 1038, 26655, 402, 17741, 669, 24930, 13876, 14104, 583, 669, 5648, 15191, 29879, 3164, 29884, 29899, 764, 478, 14851, 6125, 7307, 29879, 12540, 2904, 3012, 2879, 9362, 11810, 793, 13730, 3561, 834, 1475, 28251, 1199, 13, 29950, 1038, 26655, 11190, 1724, 887, 399, 424, 13, 2577, 4876, 6655, 29879, 363, 379, 1038, 26655, 13, 29911, 4590, 29871, 29896, 29900, 29900, 6407, 29879, 4539, 13, 29896, 29900, 29974, 26838, 13, 29903, 4897, 1001, 317, 7520, 4214, 29903, 29901, 395, 29896, 29889, 29955, 29945, 718, 395, 29896, 5684, 528, 17347, 13, 27635, 29901, 26991, 13968, 297, 29871, 29896, 29899, 29941, 5381, 3841, 13, 18181, 29901, 399, 29999, 13208, 29871, 29896, 29941, 29955, 13, 265, 1556, 11299, 310, 395, 29955, 29945, 29974, 13, 3563, 17712, 847, 23186, 449, 13, 29898, 29956, 598, 8697, 5240, 475, 672, 29897, 13, 29908, 29956, 29999, 29908, 274, 6797, 13848, 2904, 23671, 29879, 526, 297, 716, 322, 2360, 29899, 1456, 287, 4195, 29892, 541, 526, 281, 598, 8697, 3933, 8623, 29889, 7849, 526, 409, 7943, 29892, 3138, 1784, 505, 12012, 9945, 29915, 29879, 5217, 451, 305, 29892, 4192, 453, 16188, 29892, 7536, 14686, 12070, 414, 322, 29914, 272, 9461, 528, 761, 19531, 29889, 960, 366, 526, 451, 29871, 29896, 29900, 29900, 29995, 15787, 411, 596, 20590, 29892, 1749, 29871, 29941, 29900, 29899, 12742, 7106, 25219, 723, 3394, 29889, 13, 8654, 575, 29878, 30370, 1173, 29901, 20462, 29901, 20152, 7283, 603, 313, 29896, 29947, 29900, 29954, 29894, 29897, 363, 395, 29906, 29941, 29889, 29945, 29900, 13, 29950, 538, 1220, 29901, 11599, 15103, 363, 395, 29929, 29889, 29929, 29900, 13, 22988, 355, 29901, 450, 6407, 4587, 7991, 1085, 2330, 1126, 450, 399, 737, 414, 313, 29941, 29900, 386, 530, 1240, 27547, 29897, 313, 29906, 29899, 29931, 7024, 8602, 29899, 3306, 12540, 2904, 29897, 363, 395, 29906, 29929, 29889, 29945, 29900, 13, 3206, 951, 407, 538, 29901, 379, 858, 8749, 313, 29906, 13208, 29879, 448, 29871, 29896, 29947, 29900, 22928, 29897, 363, 395, 29906, 29947, 29889, 29955, 29900, 13, 29941, 29900, 29899, 13208, 22351, 18341, 29901, 341, 11925, 5739, 690, 363, 395, 29946, 29929, 29889, 29929, 29947, 13, 29929, 29896, 29995, 6907, 502, 29991, 13, 17242, 1749, 29871, 29896, 29941, 29945, 29892, 29953, 29929, 29945, 24909, 13, 29950, 1038, 26655, 379, 1038, 26655, 3695, 515, 278, 3769, 11190, 1724, 887, 399, 424, 313, 21238, 13987, 29897, 13, 29950, 1038, 26655, 448, 11190, 2191, 512, 3575, 826, 1516, 313, 21238, 13987, 29897, 13, 29963, 262, 2904, 23671, 25577, 13, 1955, 6259, 1177, 1964, 349, 26785, 4214, 13, 23182, 635, 830, 4611, 29901, 29871, 29896, 29929, 29947, 29945, 13, 4775, 29901, 1174, 2934, 7983, 13, 5323, 4684, 373, 8565, 29871, 29896, 29901, 13, 29896, 29889, 26772, 2191, 512, 3575, 826, 1516, 518, 29946, 29901, 29900, 29945, 29962, 13, 29906, 29889, 1576, 23992, 4683, 4451, 17812, 523, 518, 29941, 29901, 29906, 29947, 29962, 13, 29941, 29889, 26772, 1724, 887, 399, 424, 518, 29941, 29901, 29941, 29906, 29962, 13, 29896, 29889, 29950, 1038, 26655, 518, 29941, 29901, 29906, 29945, 29962, 13, 29906, 29889, 3112, 29915, 29879, 9333, 22977, 518, 29953, 29901, 29941, 29929, 29962, 13, 29941, 29889, 28917, 322, 940, 5301, 518, 29941, 29901, 29941, 29945, 29962, 13, 29950, 538, 8027, 29889, 21872, 6971, 264, 29892, 19556, 1102, 4919, 29892, 4755, 7745, 2502, 379, 1038, 26655, 338, 263, 29871, 29896, 29929, 29947, 29900, 29879, 9416, 11915, 3719, 10437, 23425, 1857, 19358, 261, 3275, 20982, 391, 21872, 6971, 264, 313, 29894, 542, 1338, 29914, 19046, 29265, 11210, 511, 4755, 7745, 2502, 313, 2543, 3673, 511, 15293, 20354, 834, 29877, 313, 29890, 465, 511, 322, 19556, 1102, 4919, 313, 29881, 5848, 29879, 467, 20354, 834, 29877, 322, 7745, 2502, 526, 278, 20023, 21383, 310, 751, 2035, 21710, 327, 29915, 29879, 10815, 20354, 834, 29877, 322, 10670, 29891, 7745, 2502, 29889, 379, 1038, 26655, 5492, 3023, 20618, 29901, 11190, 1724, 887, 399, 424, 313, 29896, 29929, 29947, 29945, 511, 6811, 278, 21086, 313, 29896, 29929, 29947, 29947, 511, 317, 18398, 304, 278, 498, 29878, 453, 313, 29896, 29929, 29929, 29900, 511, 322, 2718, 339, 361, 2857, 313, 29906, 29900, 29900, 29896, 467, 6811, 278, 21086, 471, 1009, 1556, 9150, 3769, 23425, 1009, 871, 2246, 29871, 29946, 29900, 7124, 313, 271, 29871, 29941, 29941, 511, 376, 29902, 29915, 29885, 373, 304, 887, 29908, 297, 29871, 29896, 29929, 29947, 29947, 313, 17625, 491, 12208, 10920, 467, 13, 9118, 830, 2877, 313, 29896, 29906, 1159, 323, 4590, 29871, 29896, 29900, 29900, 6407, 29879, 4539, 13, 25120, 271, 342, 379, 1169, 323, 4590, 29871, 29896, 29900, 29900, 6407, 29879, 4539, 13, 21648, 29871, 29947, 29916, 29896, 29900, 323, 4590, 29871, 29896, 29900, 29900, 6407, 29879, 4539, 13, 1123, 647, 310, 323, 2704, 323, 4590, 29871, 29896, 29900, 29900, 6407, 29879, 4539, 13, 15449, 518, 19960, 5254, 292, 29962, 13, 2744, 13428, 8634, 1976, 14977, 323, 4590, 29871, 29896, 29900, 29900, 6407, 29879, 4539, 13, 29906, 29900, 16108, 379, 1169, 13, 29911, 12966, 408, 3118, 13, 29945, 29900, 30650, 5670, 9583, 886, 13, 29923, 29899, 29990, 29899, 29923, 13, 5015, 21475, 2648, 341, 523, 13, 855, 4521, 26650, 292, 23857, 13, 29938, 29906, 5670, 9583, 886, 13, 21238, 315, 14404, 29901, 13, 7566, 6431, 886, 29901, 13, 29963, 262, 2904, 23671, 6811, 17712, 669, 23186, 17718, 13, 18759, 749, 12540, 2904, 13, 3563, 29871, 29947, 29900, 29995, 5947, 12540, 2904, 13, 29903, 2122, 22125, 29901, 29871, 29906, 29945, 13, 2713, 17347, 1334, 523, 29901, 29871, 29900, 29889, 29945, 29900, 29914, 29880, 5824, 313, 14850, 29897, 13, 17579, 1288, 1383, 17347, 29901, 29871, 29906, 4452, 13, 29924, 513, 6811, 24992, 13, 23859, 2180, 450, 28017, 417, 13, 14470, 1080, 4587, 9206, 13, 29933, 497, 4695, 476, 29284, 13, 29925, 4676, 880, 23606, 29915, 29879, 6650, 14164, 313, 29931, 9857, 1943, 9159, 12540, 2904, 29897, 13, 10310, 29915, 29873, 3617, 4104, 856, 2577, 7753, 13, 15836, 719, 17661, 26835, 847, 3362, 323, 4590, 29871, 29896, 29900, 6407, 29879, 4539, 13, 29929, 29929, 30650, 373, 317, 744, 13, 3868, 442, 310, 402, 605, 847, 450, 323, 680, 1317, 5057, 323, 4590, 29871, 29896, 29900, 29900, 6407, 29879, 4539, 13, 10401, 319, 2315, 23974, 267, 319, 22712, 847, 4451, 512, 19941, 8989, 323, 4590, 29871, 29896, 29900, 29900, 6407 ]
1,024
CommonCrawl
-1.528952
-1.987563
-1.261415
-2.23529
2010 Massachusetts Senate Campaign Congress and congressional politics Massachusetts Politics Blame Obama for the bluest state's blues http://www.jeffjacoby.com/6841/blame-obama-for-the-bluest-states-blues NOTE: This column is available through the New York Times Syndicate. For permission to reprint it, please contact [email protected] or call 800-535-4425. EDWARD M. KENNEDY has been gone less than five months, but in political terms he is already ancient history. For 47 years he represented Massachusetts in the US Senate; in his home state, no one wielded greater influence or cast a longer shadow. As recently as a few weeks ago, it was taken for granted that the race for the seat he occupied for so long would be shaped unmistakably by his legacy. But that's not the way this campaign has worked out. As Tuesday's special election approaches, Massachusetts voters are not being driven by their esteem for Kennedy's memory or by affection for his family. Indeed, far from advancing what Kennedy called the cause of his life -- universal health care -- hundreds of thousands of Bay State voters are fired up in supporting a candidate who promises to derail it. For the first time in two generations, the outcome of a US Senate campaign in Massachusetts is not a foregone conclusion. Whatever happens on Tuesday, this much is clear: Democrat Martha Coakley will not win in a cakewalk, and Republican Scott Brown will not be a sacrificial lamb. Heading into the final weekend, two of the country's most respected political handicappers -- Stu Rothenberg and Charlie Cook -- pronounced the Bay State Senate contest a "toss-up." A new Suffolk University poll showed Brown surging into the lead, with 50 percent of likely voters supporting him vs. 46 percent for Coakley. How can this be happening? This is the bluest state of them all -- a state without a single Republican in Congress or in statewide office, a state Barack Obama won in a landslide. How can the Senate race be too close to call? Part of the answer, of course, is that Brown has proved an engaging, upbeat, and indefatigable candidate, while Coakley's campaign has been plagued with gaffes and missteps. Her claim in last week's televised debate that the terrorists in Afghanistan are "not there anymore" suggested a dangerous naiveté on national security, while her huffy response when asked why she has been such a passive campaigner -- "As opposed to standing outside Fenway Park? In the cold? Shaking hands?" -- came across as sneering and elitist. Political skill and local issues are certainly important. But ultimately the Massachusetts Senate campaign is not about Brown's personal appeal or Coakley's shortcomings on the stump. It is about something bigger. This race is a referendum on Barack Obama and the Democratic ascendancy in Washington. When Obama was inaugurated a year ago this week, he was hailed by his supporters as a political messiah who would transform American politics, ushering in a new era of hope and goodwill. Never had a new administration been greeted with such rapturous enthusiasm. "Obama's standing above the country, above the world," Newsweek editor Evan Thomas marveled. "He's sort of God." What Obama and the Democrats delivered, however, was not uplifting and transparent bipartisanship. It was trillion-dollar increases in government spending and debt. It was party-line votes on 2,000-page bills. It was "cash-for-cloture" backroom deals. It was tone-deaf boasts about millions of jobs "created or saved," even as unemployment soared into double digits and millions of American jobs disappeared. Above all, it was the attempt to force through a radical health-care overhaul that would drive up the cost of medical insurance, slash Medicare by half a trillion dollars, sharply curtail individual autonomy, and subject one-seventh of the US economy to government micromanagement. The more insistently Democrats in Congress and the White House have pushed ObamaCare, the more unpopular it has become -- and the more the president's approval ratings
[ 29871, 29906, 29900, 29896, 29900, 16167, 18148, 7259, 8729, 13, 29907, 549, 1253, 322, 378, 11476, 284, 22661, 13, 29924, 465, 15404, 6934, 1199, 13, 10358, 420, 4250, 3304, 363, 278, 1999, 16139, 2106, 29915, 29879, 1999, 1041, 13, 1124, 597, 1636, 29889, 1324, 600, 29926, 562, 18711, 29889, 510, 29914, 29953, 29947, 29946, 29896, 29914, 2204, 420, 29899, 711, 3304, 29899, 1454, 29899, 1552, 29899, 2204, 16139, 29899, 28631, 29899, 2204, 1041, 13, 12256, 29923, 29901, 910, 1897, 338, 3625, 1549, 278, 1570, 3088, 10277, 8713, 299, 9593, 29889, 1152, 10751, 304, 2062, 524, 372, 29892, 3113, 6958, 518, 5269, 6364, 29962, 470, 1246, 29871, 29947, 29900, 29900, 29899, 29945, 29941, 29945, 29899, 29946, 29946, 29906, 29945, 29889, 13, 3352, 29956, 17011, 341, 29889, 476, 1430, 29940, 3352, 29979, 756, 1063, 7695, 3109, 1135, 5320, 7378, 29892, 541, 297, 8604, 4958, 540, 338, 2307, 12297, 4955, 29889, 1152, 29871, 29946, 29955, 2440, 540, 9875, 16167, 297, 278, 3148, 18148, 29936, 297, 670, 3271, 2106, 29892, 694, 697, 281, 969, 287, 7621, 9949, 470, 4320, 263, 5520, 15504, 29889, 1094, 10325, 408, 263, 2846, 11405, 8020, 29892, 372, 471, 4586, 363, 16896, 393, 278, 8175, 363, 278, 12949, 540, 16404, 363, 577, 1472, 723, 367, 528, 10501, 443, 29885, 391, 557, 2197, 491, 670, 25000, 29889, 13, 6246, 393, 29915, 29879, 451, 278, 982, 445, 11531, 756, 3796, 714, 29889, 1094, 323, 1041, 3250, 29915, 29879, 4266, 8271, 13501, 29892, 16167, 9014, 414, 526, 451, 1641, 18225, 491, 1009, 4404, 331, 363, 23166, 29915, 29879, 3370, 470, 491, 22832, 363, 670, 3942, 29889, 14598, 29892, 2215, 515, 3061, 19985, 825, 23166, 2000, 278, 4556, 310, 670, 2834, 1192, 15968, 9045, 2562, 1192, 21006, 310, 17202, 310, 6211, 4306, 9014, 414, 526, 17285, 701, 297, 20382, 263, 14020, 1058, 27584, 304, 589, 737, 372, 29889, 13, 2831, 278, 937, 931, 297, 1023, 1176, 800, 29892, 278, 21957, 310, 263, 3148, 18148, 11531, 297, 16167, 338, 451, 263, 363, 387, 650, 15997, 29889, 806, 5564, 5930, 373, 323, 1041, 3250, 29892, 445, 1568, 338, 2821, 29901, 4432, 16909, 1085, 15457, 3189, 557, 2330, 674, 451, 5401, 297, 263, 274, 1296, 20919, 29892, 322, 21178, 8075, 9817, 674, 451, 367, 263, 26285, 616, 301, 1117, 29889, 940, 9382, 964, 278, 2186, 4723, 355, 29892, 1023, 310, 278, 4234, 29915, 29879, 1556, 3390, 287, 8604, 1361, 293, 932, 414, 1192, 20061, 21790, 21845, 322, 20283, 17278, 1192, 11504, 20979, 278, 6211, 4306, 18148, 17793, 263, 376, 29873, 2209, 29899, 786, 1213, 319, 716, 2166, 600, 28387, 3014, 21180, 10018, 9817, 1190, 3460, 964, 278, 3275, 29892, 411, 29871, 29945, 29900, 10151, 310, 5517, 9014, 414, 20382, 1075, 7186, 29889, 29871, 29946, 29953, 10151, 363, 3189, 557, 2330, 29889, 13, 5328, 508, 445, 367, 10464, 29973, 910, 338, 278, 1999, 16139, 2106, 310, 963, 599, 1192, 263, 2106, 1728, 263, 2323, 21178, 297, 11559, 470, 297, 2106, 8157, 8034, 29892, 263, 2106, 2261, 547, 4250, 3304, 2113, 297, 263, 12625, 7459, 29889, 1128, 508, 278, 18148, 8175, 367, 2086, 3802, 304, 1246, 29973, 13, 7439, 310, 278, 1234, 29892, 310, 3236, 29892, 338, 393, 9817, 756, 11827, 385, 3033, 6751, 29892, 701, 915, 271, 29892, 322, 297, 1753, 271, 335, 519, 14020, 29892, 1550, 3189, 557, 2330, 29915, 29879, 11531, 756, 1063, 715, 351, 6742, 411, 330, 3470, 267, 322, 3984, 24530, 29889, 2439, 5995, 297, 1833, 4723, 29915, 29879, 4382, 11292, 27836, 393, 278, 15115, 2879, 297, 27135, 9777, 526, 376, 1333, 727, 15128, 29908, 7829, 263, 18215, 1055, 440, 300, 29948, 373, 4797, 6993, 29892, 1550, 902, 298, 3096, 29891, 2933, 746, 4433, 2020, 1183, 756, 1063, 1316, 263, 1209, 573, 11531, 261, 1192, 376, 2887, 15869, 304, 13407, 5377, 20685, 1582, 4815, 29973, 512, 278, 11220, 29973, 1383, 5086, 6567, 3026, 1192, 2996, 4822, 408, 269, 484, 3241, 322, 560, 277, 391, 29889, 13, 7713, 277, 936, 19911, 322, 1887, 5626, 526, 8959, 4100, 29889, 1205, 18973, 278, 16167, 18148, 11531, 338, 451, 1048, 9817, 29915, 29879, 7333, 25530, 470, 3189, 557, 2330, 29915, 29879, 3273, 510, 886, 373, 278, 380, 3427, 29889, 739, 338, 1048, 1554, 16600, 29889, 910, 8175, 338, 263, 2737, 29670, 373, 2261, 547, 4250, 3304, 322, 278, 19083, 12066, 355, 6906, 297, 7660, 29889, 13, 10401, 4250, 3304, 471, 21865, 630, 263, 1629, 8020, 445, 4723, 29892, 540, 471, 447, 2356, 491, 670, 1462, 272, 2153, 408, 263, 8604, 4473, 21071, 1058, 723, 4327, 3082, 22661, 29892, 502, 2276, 292, 297, 263, 716, 3152, 310, 4966, 322, 1781, 14043, 29889, 12391, 750, 263, 716, 17517, 1063, 1395, 300, 287, 411, 1316, 1153, 415, 332, 681, 23644, 3173, 29885, 29889, 376, 6039, 3304, 29915, 29879, 13407, 2038, 278, 4234, 29892, 2038, 278, 3186, 1699, 10130, 18448, 6920, 382, 3703, 5569, 1766, 345, 839, 29889, 376, 3868, 29915, 29879, 2656, 310, 4177, 1213, 13, 5618, 4250, 3304, 322, 278, 14189, 1446, 20115, 29892, 3138, 29892, 471, 451, 318, 572, 24377, 322, 17772, 289, 27494, 275, 550, 4034, 29889, 13, 3112, 471, 534, 453, 291, 29899, 29881, 26810, 16415, 297, 5874, 805, 2548, 322, 2553, 29873, 29889, 739, 471, 6263, 29899, 1220, 18952, 373, 29871, 29906, 29892, 29900, 29900, 29900, 29899, 3488, 289, 6090, 29889, 739, 471, 376, 29883, 1161, 29899, 1454, 29899, 695, 327, 545, 29908, 1250, 8345, 316, 1338, 29889, 739, 471, 16225, 29899, 311, 2142, 1045, 19416, 1048, 14746, 310, 17643, 376, 11600, 470, 7160, 1699, 1584, 408, 443, 3451, 22812, 577, 1965, 964, 3765, 13340, 322, 14746, 310, 3082, 17643, 24273, 29889, 13, 29909, 29205, 599, 29892, 372, 471, 278, 4218, 304, 4889, 1549, 263, 24818, 9045, 29899, 18020, 975, 2350, 352, 393, 723, 7899, 701, 278, 3438, 310, 16083, 1663, 18541, 29892, 24765, 22247, 598, 491, 4203, 263, 534, 453, 291, 17208, 29892, 15301, 368, 3151, 18237, 5375, 1120, 21926, 29892, 322, 4967, 697, 29899, 344, 794, 29882, 310, 278, 3148, 26504, 304, 5874, 20710, 456, 273, 5049, 29889, 13, 1576, 901, 1663, 391, 2705, 14189, 1446, 297, 11559, 322, 278, 8037, 5619, 505, 18760, 4250, 3304, 29907, 598, 29892, 278, 901, 443, 7323, 1070, 372, 756, 4953, 1192, 322, 278, 901, 278, 6673, 29915, 29879, 2134, 791, 26838 ]
1,024
CommonCrawl
0.972103
0.182333
0.062432
-0.001518
Q: Serial Port - reading data/updating canvas element I've been having issues for a few weeks now reading in data from a serial port and updating a canvas element based on the message being received. The canvas element to be updated is a small image, that is supposed to rotate to a certain angle based on the third section of the message being received. I'm not sure what's going wrong, it seems that a full message isn't always being received. I'm going to give as much detail about the port and data. Structure - 8 data bits, 1 start bit, 1 stop bit, no parity. Message frequency is 15 Hz (the number of lines written every second). The default baud rate is 9,600. There are five sections: 1. Section1 - two decimal places. 2. Section2 - two decimal places. 3. Angle - multiplied by 10 – i.e. 256.0 degrees is shown as 2560. 4. Section4 multiplied by -100 – i.e. 6.66 degrees is -666. 5. Section5 multiplied by 100 – i.e. 55.5 degrees is 555. A message starts with a colon symbol (:) and ends with < CR>< LF> . A field that contains asterisks, '***', indicates that no value is defined for that field. An example to illustrate: Column 1 15 22 29 36 43 1.00 *** 0 0 0 : 1.00 20.20 2460 0 0 : 2.40 20.45 2460 10000 -10000 : 3.00 20.45 2355 1000 554 I have the latest message received being shown at the top of the window to ensure the user that data is being received, but I noticed the message is only show bits and pieces of what it should be, and thus messing up the rotation of the canvas element. So for instance, the message might be : 20 500 at first, and then get a complete message. Here's a screenshot of the data being sent: Here's relative code in my MainWindow.cs: private Port port = new Port(); private double rovHeading; Point rotate_Origin = new Point(0.5, 0.5); public string LastCOMMessage { get { return (string)this.GetValue(LastCoMMessageProperty); } set { this.SetValue(LastCoMMessageProperty, value); } } private void Connect_Port(object sender, RoutedEventArgs e) { if (port.Status == Port.PortStatus.Disconnected) { try { port.Connect("COM1", 9600, false, 250); //When set to false, test data is used on Connect. Last parameter is how often the UI is updated. Closer to 0, the faster it updates. //Sets button State and Creates function call on data recieved Connect_btn.Content = "Disconnect"; port.OnMessageReceived += new Port.MessageReceivedHandler(port_OnMessageReceived); } catch (Exception) { System.Windows.MessageBox.Show("Port is not available."); } } else { try // just in case serial port is not open, could also be achieved using if(serial.IsOpen) { port.Disconnect(); Connect_btn.Content = "Connect"; } catch { } } } /// <summary> /// Reads in the data streaming from the port, taking out the third value which is the ROV's heading and assigning it to rovHeading. /// It then calls orientRovImage. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void port_OnMessageReceived(object sender, Port.MessageEventArgs e) { LastCOMMessage = e.Message; if
[ 660, 29901, 18896, 3371, 448, 5183, 848, 29914, 786, 26747, 10508, 1543, 306, 29915, 345, 1063, 2534, 5626, 363, 263, 2846, 11405, 1286, 5183, 297, 848, 515, 263, 7797, 2011, 322, 13271, 263, 10508, 1543, 2729, 373, 278, 2643, 1641, 4520, 29889, 450, 10508, 1543, 304, 367, 4784, 338, 263, 2319, 1967, 29892, 393, 338, 7424, 304, 16734, 304, 263, 3058, 10696, 2729, 373, 278, 4654, 4004, 310, 278, 2643, 1641, 4520, 29889, 306, 29915, 29885, 451, 1854, 825, 29915, 29879, 2675, 2743, 29892, 372, 2444, 393, 263, 2989, 2643, 3508, 29915, 29873, 2337, 1641, 4520, 29889, 306, 29915, 29885, 2675, 304, 2367, 408, 1568, 9493, 1048, 278, 2011, 322, 848, 29889, 13, 5015, 12425, 448, 29871, 29947, 848, 9978, 29892, 29871, 29896, 1369, 2586, 29892, 29871, 29896, 5040, 2586, 29892, 694, 610, 537, 29889, 7777, 10868, 338, 29871, 29896, 29945, 379, 29920, 313, 1552, 1353, 310, 3454, 3971, 1432, 1473, 467, 450, 2322, 9922, 566, 6554, 338, 29871, 29929, 29892, 29953, 29900, 29900, 29889, 29871, 13, 8439, 526, 5320, 13926, 29901, 29871, 13, 29896, 29889, 9779, 29896, 448, 1023, 13677, 7600, 29889, 29871, 13, 29906, 29889, 9779, 29906, 448, 1023, 13677, 7600, 29889, 29871, 13, 29941, 29889, 3218, 280, 448, 6674, 2957, 491, 29871, 29896, 29900, 785, 474, 29889, 29872, 29889, 29871, 29906, 29945, 29953, 29889, 29900, 14496, 338, 4318, 408, 29871, 29906, 29945, 29953, 29900, 29889, 29871, 13, 29946, 29889, 9779, 29946, 6674, 2957, 491, 448, 29896, 29900, 29900, 785, 474, 29889, 29872, 29889, 29871, 29953, 29889, 29953, 29953, 14496, 338, 448, 29953, 29953, 29953, 29889, 29871, 13, 29945, 29889, 9779, 29945, 6674, 2957, 491, 29871, 29896, 29900, 29900, 785, 474, 29889, 29872, 29889, 29871, 29945, 29945, 29889, 29945, 14496, 338, 29871, 29945, 29945, 29945, 29889, 29871, 13, 29909, 2643, 8665, 411, 263, 8104, 5829, 13940, 29897, 322, 10614, 411, 529, 15600, 5299, 365, 29943, 29958, 869, 319, 1746, 393, 3743, 263, 2475, 275, 2039, 29892, 525, 17435, 742, 14088, 393, 694, 995, 338, 3342, 363, 393, 1746, 29889, 29871, 13, 2744, 1342, 304, 28475, 29901, 13, 4409, 29871, 13, 29896, 29871, 29896, 29945, 29871, 29906, 29906, 29871, 29906, 29929, 29871, 29941, 29953, 29871, 29946, 29941, 29871, 13, 29896, 29889, 29900, 29900, 18610, 29871, 29900, 29871, 29900, 29871, 29900, 29871, 13, 29901, 29871, 29896, 29889, 29900, 29900, 29871, 29906, 29900, 29889, 29906, 29900, 29871, 29906, 29946, 29953, 29900, 29871, 29900, 29871, 29900, 13, 29901, 29871, 29906, 29889, 29946, 29900, 29871, 29906, 29900, 29889, 29946, 29945, 29871, 29906, 29946, 29953, 29900, 29871, 29896, 29900, 29900, 29900, 29900, 448, 29896, 29900, 29900, 29900, 29900, 29871, 13, 29901, 29871, 29941, 29889, 29900, 29900, 29871, 29906, 29900, 29889, 29946, 29945, 29871, 29906, 29941, 29945, 29945, 29871, 29896, 29900, 29900, 29900, 29871, 29945, 29945, 29946, 13, 13, 29902, 505, 278, 9281, 2643, 4520, 1641, 4318, 472, 278, 2246, 310, 278, 3474, 304, 9801, 278, 1404, 393, 848, 338, 1641, 4520, 29892, 541, 306, 10548, 278, 2643, 338, 871, 1510, 9978, 322, 12785, 310, 825, 372, 881, 367, 29892, 322, 4550, 4473, 292, 701, 278, 13733, 310, 278, 10508, 1543, 29889, 1105, 363, 2777, 29892, 278, 2643, 1795, 367, 584, 29871, 29906, 29900, 29871, 29945, 29900, 29900, 472, 937, 29892, 322, 769, 679, 263, 4866, 2643, 29889, 29871, 13, 10605, 29915, 29879, 263, 17286, 310, 278, 848, 1641, 2665, 29901, 13, 13, 10605, 29915, 29879, 6198, 775, 297, 590, 4241, 5907, 29889, 2395, 29901, 13, 1678, 2024, 3371, 2011, 353, 716, 3371, 890, 13, 1678, 2024, 3765, 696, 29894, 5494, 292, 29936, 13, 1678, 8984, 16734, 29918, 23182, 353, 716, 8984, 29898, 29900, 29889, 29945, 29892, 29871, 29900, 29889, 29945, 416, 13, 1678, 970, 1347, 9208, 19795, 3728, 13, 1678, 426, 13, 4706, 679, 426, 736, 313, 1807, 29897, 1366, 29889, 2577, 1917, 29898, 8897, 7967, 29924, 3728, 4854, 416, 500, 13, 4706, 731, 426, 445, 29889, 2697, 1917, 29898, 8897, 7967, 29924, 3728, 4854, 29892, 995, 416, 500, 13, 13, 1678, 500, 13, 1678, 2024, 1780, 14971, 29918, 2290, 29898, 3318, 10004, 29892, 20829, 287, 16806, 321, 29897, 13, 1678, 426, 13, 4706, 565, 313, 637, 29889, 5709, 1275, 3371, 29889, 2290, 5709, 29889, 4205, 18045, 29897, 13, 4706, 426, 13, 9651, 1018, 13, 9651, 426, 13, 18884, 2011, 29889, 17918, 703, 19795, 29896, 613, 29871, 29929, 29953, 29900, 29900, 29892, 2089, 29892, 29871, 29906, 29945, 29900, 416, 849, 10401, 731, 304, 2089, 29892, 1243, 848, 338, 1304, 373, 14971, 29889, 9208, 3443, 338, 920, 4049, 278, 3740, 338, 4784, 29889, 2233, 22969, 304, 29871, 29900, 29892, 278, 8473, 372, 11217, 29889, 13, 13, 18884, 849, 29903, 1691, 2826, 4306, 322, 6760, 1078, 740, 1246, 373, 848, 1162, 6402, 13, 18884, 14971, 29918, 7290, 29889, 3916, 353, 376, 4205, 6915, 1769, 13, 13, 18884, 2011, 29889, 2951, 3728, 29816, 4619, 716, 3371, 29889, 3728, 29816, 4598, 29898, 637, 29918, 2951, 3728, 29816, 416, 13, 9651, 500, 13, 13, 9651, 4380, 313, 2451, 29897, 13, 9651, 426, 13, 18884, 2184, 29889, 7685, 29889, 3728, 3313, 29889, 8964, 703, 2290, 338, 451, 3625, 18327, 13, 9651, 500, 13, 4706, 500, 13, 13, 4706, 1683, 13, 4706, 426, 13, 9651, 1018, 849, 925, 297, 1206, 7797, 2011, 338, 451, 1722, 29892, 1033, 884, 367, 14363, 773, 565, 29898, 15550, 29889, 3624, 6585, 29897, 13, 9651, 426, 13, 18884, 2011, 29889, 4205, 6915, 890, 13, 18884, 14971, 29918, 7290, 29889, 3916, 353, 376, 17918, 1769, 13, 9651, 500, 13, 13, 9651, 4380, 13, 9651, 426, 13, 9651, 500, 13, 4706, 500, 13, 1678, 500, 13, 13, 1678, 4363, 529, 7727, 29958, 13, 1678, 4363, 7523, 29879, 297, 278, 848, 24820, 515, 278, 2011, 29892, 5622, 714, 278, 4654, 995, 607, 338, 278, 16641, 29963, 29915, 29879, 28435, 322, 23188, 372, 304, 696, 29894, 5494, 292, 29889, 13, 1678, 4363, 739, 769, 5717, 7769, 29934, 586, 2940, 29889, 13, 1678, 4363, 1533, 7727, 29958, 13, 1678, 4363, 529, 3207, 1024, 543, 15452, 5319, 3207, 29958, 13, 1678, 4363, 529, 3207, 1024, 543, 29872, 5319, 3207, 29958, 13, 1678, 2024, 1780, 2011, 29918, 2951, 3728, 29816, 29898, 3318, 10004, 29892, 3371, 29889, 3728, 16806, 321, 29897, 13, 1678, 426, 13, 4706, 9208, 19795, 3728, 353, 321, 29889, 3728, 29936, 13, 13, 4706, 565 ]
1,024
StackExchange
-1.289851
-0.307441
-0.588508
0.149635
(rovImage != null && e.Message.EndsWith("\r\n")) //messages end in <CR><LF>. Was having issues where only half a message would be received and updated the heading to wrong number. { string[] messageComponents = LastCOMMessage.Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries); if (messageComponents.Length >= 3) { double.TryParse(messageComponents[3], out rovHeading); if (rovHeading > 0) { rovHeading /= 10; orientRovImage(); } } } } /// <summary> /// Rotates the ROV icon based on the heading being streamed in. /// </summary> private void orientRovImage() { RotateTransform rotateRov = new RotateTransform(rovHeading + angle_Offset); rovImage.RenderTransformOrigin = rotate_Origin; rovImage.RenderTransform = rotateRov; } Here's my Port.cs: class Port { private SerialPort serial = null; private DispatcherTimer testTimer; private string[] testData = new string[] { ": 3.00 20.45 2355 1000 554\r\n", ": 5.00 78.09 1725 3200 121\r\n", ": 9.20 10.12 1492 8820 197\r\n" }; //test data to be sent when liveData is set to false. private int testDataIndex = -1; private DateTime dateOflastMessageHandled; public enum PortStatus { Connected, Disconnected } public PortStatus Status { get; private set; } public bool LiveData { get; private set; } public int MillisecondsDelayBetweenMessages { get; private set; } public class MessageEventArgs : EventArgs { public string Message { get; private set; } public MessageEventArgs(string message) { Message = message; } } public delegate void MessageReceivedHandler(object sender, MessageEventArgs e); public event MessageReceivedHandler OnMessageReceived; private void MessageReceived(string message) { if (OnMessageReceived == null) { return; } OnMessageReceived(this, new MessageEventArgs(message)); } public Port() { Status = PortStatus.Disconnected; } public void Connect(string portName, int baudRate, bool liveData, int millisecondsDelayBetweenMessages) { LiveData = liveData; MillisecondsDelayBetweenMessages = millisecondsDelayBetweenMessages; Disconnect(); if (liveData) { serial = new SerialPort(); serial.PortName = portName; serial.BaudRate = baudRate; serial.Handshake = Handshake.None; serial.Parity = Parity.None; serial.DataBits = 8; serial.StopBits = StopBits.One; serial.ReadTimeout = 200; serial.WriteTimeout = 50; serial.Open(); serial.DataReceived += new SerialDataReceivedEventHandler(Receive); } else { testTimer = new DispatcherTimer(); testTimer.Interval = new TimeSpan(0, 0, 0, 0, 3); testTimer.Tick += new EventHandler(testTimer_Tick); testTimer.Start(); } Status = PortStatus.Connected; } private void testTimer_Tick(object sender, EventArgs e) { if (dateOflastMessageHandled == null || DateTime.Now.Subtract(dateOflastMessageHandled).TotalMilliseconds >= MillisecondsDelayBetweenMessages) { dateOflastMessageHandled = DateTime.Now;
[ 313, 10139, 2940, 2804, 1870, 2607, 321, 29889, 3728, 29889, 5044, 29879, 3047, 14182, 29878, 29905, 29876, 5783, 849, 19158, 1095, 297, 529, 11341, 5299, 29931, 29943, 15513, 12547, 2534, 5626, 988, 871, 4203, 263, 2643, 723, 367, 4520, 322, 4784, 278, 28435, 304, 2743, 1353, 29889, 13, 4706, 426, 13, 9651, 1347, 2636, 2643, 25503, 353, 9208, 19795, 3728, 29889, 18772, 703, 11393, 1762, 5914, 2588, 3285, 1714, 18772, 5856, 29889, 15941, 8915, 5292, 2722, 416, 13, 13, 9651, 565, 313, 4906, 25503, 29889, 6513, 6736, 29871, 29941, 29897, 13, 9651, 426, 13, 18884, 3765, 29889, 15870, 12914, 29898, 4906, 25503, 29961, 29941, 1402, 714, 696, 29894, 5494, 292, 416, 13, 13, 18884, 565, 313, 10139, 5494, 292, 1405, 29871, 29900, 29897, 13, 18884, 426, 13, 462, 1678, 696, 29894, 5494, 292, 847, 29922, 29871, 29896, 29900, 29936, 13, 13, 462, 1678, 7769, 29934, 586, 2940, 890, 13, 18884, 500, 13, 9651, 500, 13, 4706, 500, 13, 1678, 500, 13, 13, 1678, 4363, 529, 7727, 29958, 13, 1678, 4363, 9664, 1078, 278, 16641, 29963, 9849, 2729, 373, 278, 28435, 1641, 4840, 287, 297, 29889, 13, 1678, 4363, 1533, 7727, 29958, 13, 1678, 2024, 1780, 7769, 29934, 586, 2940, 580, 13, 1678, 426, 13, 4706, 9664, 403, 13372, 16734, 29934, 586, 353, 716, 9664, 403, 13372, 29898, 10139, 5494, 292, 718, 10696, 29918, 10302, 416, 13, 4706, 696, 29894, 2940, 29889, 10716, 13372, 23182, 353, 16734, 29918, 23182, 29936, 13, 4706, 696, 29894, 2940, 29889, 10716, 13372, 353, 16734, 29934, 586, 29936, 13, 1678, 500, 13, 13, 10605, 29915, 29879, 590, 3371, 29889, 2395, 29901, 13, 1990, 3371, 13, 29912, 13, 1678, 2024, 18896, 2290, 7797, 353, 1870, 29936, 13, 1678, 2024, 3295, 5041, 261, 14745, 1243, 14745, 29936, 13, 1678, 2024, 1347, 2636, 1243, 1469, 353, 716, 1347, 2636, 426, 29242, 29871, 29941, 29889, 29900, 29900, 29871, 29906, 29900, 29889, 29946, 29945, 29871, 29906, 29941, 29945, 29945, 1678, 29896, 29900, 29900, 29900, 29871, 29945, 29945, 29946, 29905, 29878, 29905, 29876, 613, 29242, 29871, 29945, 29889, 29900, 29900, 29871, 29955, 29947, 29889, 29900, 29929, 29871, 29896, 29955, 29906, 29945, 29871, 29941, 29906, 29900, 29900, 29871, 29896, 29906, 29896, 29905, 29878, 29905, 29876, 613, 29242, 29871, 29929, 29889, 29906, 29900, 29871, 29896, 29900, 29889, 29896, 29906, 29871, 29896, 29946, 29929, 29906, 29871, 29947, 29947, 29906, 29900, 29871, 29896, 29929, 29955, 29905, 29878, 29905, 29876, 29908, 3980, 849, 1688, 848, 304, 367, 2665, 746, 5735, 1469, 338, 731, 304, 2089, 29889, 13, 1678, 2024, 938, 1243, 1469, 3220, 353, 448, 29896, 29936, 13, 1678, 2024, 12315, 2635, 29949, 1579, 579, 3728, 3481, 839, 29936, 13, 13, 1678, 970, 14115, 3371, 5709, 13, 1678, 426, 13, 4706, 1281, 484, 2954, 29892, 13, 4706, 3295, 18045, 13, 1678, 500, 13, 1678, 970, 3371, 5709, 16034, 426, 679, 29936, 2024, 731, 29936, 500, 13, 1678, 970, 6120, 10782, 1469, 426, 679, 29936, 2024, 731, 29936, 500, 13, 1678, 970, 938, 8649, 21462, 24996, 29933, 300, 1452, 25510, 426, 679, 29936, 2024, 731, 29936, 500, 13, 13, 1678, 970, 770, 7777, 16806, 584, 21374, 13, 1678, 426, 13, 4706, 970, 1347, 7777, 426, 679, 29936, 2024, 731, 29936, 500, 13, 13, 4706, 970, 7777, 16806, 29898, 1807, 2643, 29897, 13, 4706, 426, 13, 9651, 7777, 353, 2643, 29936, 13, 4706, 500, 13, 1678, 500, 13, 1678, 970, 13341, 1780, 7777, 29816, 4598, 29898, 3318, 10004, 29892, 7777, 16806, 321, 416, 13, 1678, 970, 1741, 7777, 29816, 4598, 1551, 3728, 29816, 29936, 13, 13, 13, 1678, 2024, 1780, 7777, 29816, 29898, 1807, 2643, 29897, 13, 1678, 426, 13, 4706, 565, 313, 2951, 3728, 29816, 1275, 1870, 29897, 13, 4706, 426, 13, 9651, 736, 29936, 13, 4706, 500, 13, 13, 4706, 1551, 3728, 29816, 29898, 1366, 29892, 716, 7777, 16806, 29898, 4906, 2483, 13, 1678, 500, 13, 13, 13, 1678, 970, 3371, 580, 13, 1678, 426, 13, 4706, 16034, 353, 3371, 5709, 29889, 4205, 18045, 29936, 13, 1678, 500, 13, 13, 1678, 970, 1780, 14971, 29898, 1807, 2011, 1170, 29892, 938, 9922, 566, 19907, 29892, 6120, 5735, 1469, 29892, 938, 3533, 21462, 24996, 29933, 300, 1452, 25510, 29897, 13, 1678, 426, 13, 4706, 10782, 1469, 353, 5735, 1469, 29936, 13, 4706, 8649, 21462, 24996, 29933, 300, 1452, 25510, 353, 3533, 21462, 24996, 29933, 300, 1452, 25510, 29936, 13, 13, 4706, 3295, 6915, 890, 13, 13, 4706, 565, 313, 9258, 1469, 29897, 13, 4706, 426, 13, 9651, 7797, 353, 716, 18896, 2290, 890, 13, 13, 9651, 7797, 29889, 2290, 1170, 353, 2011, 1170, 29936, 13, 9651, 7797, 29889, 29933, 15052, 19907, 353, 9922, 566, 19907, 29936, 13, 9651, 7797, 29889, 3481, 845, 1296, 353, 5166, 845, 1296, 29889, 8516, 29936, 13, 9651, 7797, 29889, 2177, 537, 353, 1459, 537, 29889, 8516, 29936, 13, 9651, 7797, 29889, 1469, 29933, 1169, 353, 29871, 29947, 29936, 13, 9651, 7797, 29889, 16329, 29933, 1169, 353, 22303, 29933, 1169, 29889, 6716, 29936, 13, 9651, 7797, 29889, 6359, 10851, 353, 29871, 29906, 29900, 29900, 29936, 13, 9651, 7797, 29889, 6113, 10851, 353, 29871, 29945, 29900, 29936, 13, 13, 9651, 7797, 29889, 6585, 890, 13, 13, 9651, 7797, 29889, 1469, 29816, 4619, 716, 18896, 1469, 29816, 2624, 4598, 29898, 24131, 416, 13, 4706, 500, 13, 13, 4706, 1683, 13, 4706, 426, 13, 9651, 1243, 14745, 353, 716, 3295, 5041, 261, 14745, 890, 13, 9651, 1243, 14745, 29889, 12506, 353, 716, 5974, 15495, 29898, 29900, 29892, 29871, 29900, 29892, 29871, 29900, 29892, 29871, 29900, 29892, 29871, 29941, 416, 13, 9651, 1243, 14745, 29889, 29911, 860, 4619, 716, 6864, 4598, 29898, 1688, 14745, 29918, 29911, 860, 416, 13, 9651, 1243, 14745, 29889, 4763, 890, 13, 4706, 500, 13, 13, 4706, 16034, 353, 3371, 5709, 29889, 20971, 2954, 29936, 13, 1678, 500, 13, 13, 13, 1678, 2024, 1780, 1243, 14745, 29918, 29911, 860, 29898, 3318, 10004, 29892, 21374, 321, 29897, 13, 1678, 426, 13, 4706, 565, 313, 1256, 29949, 1579, 579, 3728, 3481, 839, 1275, 1870, 3830, 12315, 29889, 10454, 29889, 4035, 29873, 1461, 29898, 1256, 29949, 1579, 579, 3728, 3481, 839, 467, 11536, 19169, 21462, 6736, 8649, 21462, 24996, 29933, 300, 1452, 25510, 29897, 13, 4706, 426, 13, 9651, 2635, 29949, 1579, 579, 3728, 3481, 839, 353, 12315, 29889, 10454, 29936, 13 ]
1,024
StackExchange
-1.390382
-0.43087
-1.358249
-0.633324
I have been a Republican for most of my life, and have generally though not always made it to vote on election day. But this Tuesday I stayed home until it was time to go to work. As a conservative (fiscally and socially) I could not vote Democrat, but neither could I vote Republican. A foreign policy that seeks to dominate the world or spend money on wars to promote the corporate sponsors of a political party are not my idea of a conservative administration. I wonder how many conservatives, like me, simply failed to make it to the polls this past Tuesday. My no-show was not a retreat from politics, but a thought-out expression that even if I will not vote for the left wing, neither will I vote for a right wing interested in continuing to police the world while neglecting the ordinary things governments ought to do like balance a budget, live within its means, and provide stability, rather than glitz and crusades, for their populace. Conservatives, you will now need to work to show me that you have changed enough to win my vote back. Send the neocons packing or I will continue staying home. Besides it saves on oil use – not voting for so called pro-war conservatives may help to reduce our need for imported oil by saving me a trip to the polling station. ~ Dan McDonald, Cleveland, Okla. I was impressed with Raimondo's prescient comment a day before the election: Democrats are just another wing of the War Party. We should not expect too much if they win. Anybody else notice how just before the election, every TV talking head joined in the chorus: "It's about Iraq, Iraq, Iraq. A majority of the people do not like the war in Iraq"? On the morning after the election I turned on CNN and was informed, with big colorful graphics, that exit polls showed the public was concerned with – in descending order of importance – (1) corruption, (2) war on terror, (3) economy, (4) Iraq. Bob Shrum, perennial Democratic strategist and election loser (Kerry's campaign manager), on CNN the day following the Democratic election victory, said that the first order of the day is to send a minimum wage bill to President Bush. Nothing about Iraq. Naturally, the minimum wage bill will be vetoed, and the two parties can throw a few mud cakes at each other before getting down to the business of the day: divvying up the profits of politics, including war profits. Congress need not send any bill to Bush for signature to end the war. Spending bills can only originate in the House. Democrats control the House. Without appropriations the war cannot continue. End of story. In the next two years we will be hearing a lot of bull to the contrary. Don't believe it for a second. Going to war was not my choice, but the voters of America voted for war. Now voters have voted to end the war. The Democrats have it in their power to end the war and will have two years to complete the job. They must begin at once. Can Jim Baker Save the American Establishment? Assume that young Bush accepts the Baker proposals, whatever they may be. What mechanism is there to force the Iraqis to go along with them? The puppet regime may accept them but how do you apply them to those engaged in the current civil war? It would be nice to drag Iran and Syria into the Iraqi maelstrom, but would they consent? The Iranians have proven time and again that they are much wiser than us in these matters, and isn't it more to their benefit to watch us twist slowly in the wind? Is it realistic, even at this point, to think young Bush would ask Iran and Syria to to get him off the hook, please? There is another interested group in this discussion, people who don't care a fig (or date) about Baker or the salvation of the American Establishment: the citizens of Iraq. "A new WPO poll of the Iraqi public finds that seven in ten Iraqis want U.S.-led forces to commit to withdraw within a year. An overwhelming majority believes that the U.S. military presence in Iraq is provoking more conflict than it is preventing and there is growing confidence in the Iraqi army. If the United States made a commitment to withdraw, a majority believes that this would strengthen the Iraqi government. Support for attacks on U.S.-led forces has grown to a majority position — now six
[ 306, 505, 1063, 263, 21178, 363, 1556, 310, 590, 2834, 29892, 322, 505, 6892, 2466, 451, 2337, 1754, 372, 304, 11719, 373, 8271, 2462, 29889, 1205, 445, 323, 1041, 3250, 306, 27661, 3271, 2745, 372, 471, 931, 304, 748, 304, 664, 29889, 1094, 263, 8976, 1230, 313, 29888, 10669, 635, 322, 5374, 635, 29897, 306, 1033, 451, 11719, 4432, 16909, 29892, 541, 9561, 1033, 306, 11719, 21178, 29889, 319, 9117, 8898, 393, 1074, 2039, 304, 8022, 403, 278, 3186, 470, 18864, 6909, 373, 29129, 304, 27391, 278, 17266, 403, 21955, 943, 310, 263, 8604, 6263, 526, 451, 590, 2969, 310, 263, 8976, 1230, 17517, 29889, 306, 4997, 920, 1784, 8976, 5056, 29892, 763, 592, 29892, 3763, 5229, 304, 1207, 372, 304, 278, 1248, 3137, 445, 4940, 323, 1041, 3250, 29889, 1619, 694, 29899, 4294, 471, 451, 263, 22162, 271, 515, 22661, 29892, 541, 263, 2714, 29899, 449, 4603, 393, 1584, 565, 306, 674, 451, 11719, 363, 278, 2175, 21612, 29892, 9561, 674, 306, 11719, 363, 263, 1492, 21612, 8852, 297, 3133, 292, 304, 10974, 278, 3186, 1550, 22851, 292, 278, 15311, 2712, 4095, 1860, 12722, 304, 437, 763, 17346, 263, 23562, 29892, 5735, 2629, 967, 2794, 29892, 322, 3867, 25806, 29892, 3265, 1135, 3144, 2784, 322, 2181, 375, 3076, 29892, 363, 1009, 14938, 815, 29889, 15312, 5056, 29892, 366, 674, 1286, 817, 304, 664, 304, 1510, 592, 393, 366, 505, 3939, 3307, 304, 5401, 590, 11719, 1250, 29889, 15076, 278, 452, 29877, 3200, 4870, 292, 470, 306, 674, 6773, 7952, 292, 3271, 29889, 19065, 372, 27401, 373, 17182, 671, 785, 451, 28931, 363, 577, 2000, 410, 29899, 4495, 8976, 5056, 1122, 1371, 304, 10032, 1749, 817, 363, 19673, 17182, 491, 14238, 592, 263, 17487, 304, 278, 1248, 1847, 5073, 29889, 13, 30022, 3951, 4052, 28080, 29892, 27249, 29892, 3674, 433, 29889, 13, 29902, 471, 527, 13120, 411, 6981, 326, 18592, 29915, 29879, 2225, 15566, 3440, 263, 2462, 1434, 278, 8271, 29901, 14189, 1446, 526, 925, 1790, 21612, 310, 278, 3362, 9173, 29889, 1334, 881, 451, 2149, 2086, 1568, 565, 896, 5401, 29889, 13, 10773, 2587, 1683, 8369, 920, 925, 1434, 278, 8271, 29892, 1432, 5648, 9963, 2343, 8772, 297, 278, 521, 16566, 29901, 376, 3112, 29915, 29879, 1048, 21375, 29939, 29892, 21375, 29939, 29892, 21375, 29939, 29889, 319, 13638, 310, 278, 2305, 437, 451, 763, 278, 1370, 297, 21375, 29939, 8652, 13, 2951, 278, 7250, 1156, 278, 8271, 306, 6077, 373, 29696, 322, 471, 23388, 29892, 411, 4802, 2927, 1319, 18533, 29892, 393, 6876, 1248, 3137, 10018, 278, 970, 471, 15041, 411, 785, 297, 5153, 2548, 1797, 310, 13500, 785, 313, 29896, 29897, 1034, 18953, 29892, 313, 29906, 29897, 1370, 373, 15115, 29892, 313, 29941, 29897, 26504, 29892, 313, 29946, 29897, 21375, 29939, 29889, 13, 29362, 317, 1092, 398, 29892, 639, 2108, 616, 19083, 16650, 391, 322, 8271, 1232, 261, 313, 29968, 261, 719, 29915, 29879, 11531, 8455, 511, 373, 29696, 278, 2462, 1494, 278, 19083, 8271, 15354, 29892, 1497, 393, 278, 937, 1797, 310, 278, 2462, 338, 304, 3638, 263, 9212, 281, 482, 11118, 304, 7178, 24715, 29889, 9531, 1048, 21375, 29939, 29889, 8746, 635, 29892, 278, 9212, 281, 482, 11118, 674, 367, 325, 10896, 287, 29892, 322, 278, 1023, 13973, 508, 3183, 263, 2846, 17439, 274, 6926, 472, 1269, 916, 1434, 2805, 1623, 304, 278, 5381, 310, 278, 2462, 29901, 1933, 29894, 5414, 701, 278, 2600, 1169, 310, 22661, 29892, 3704, 1370, 2600, 1169, 29889, 13, 29907, 549, 1253, 817, 451, 3638, 738, 11118, 304, 24715, 363, 12608, 304, 1095, 278, 1370, 29889, 1706, 2548, 289, 6090, 508, 871, 3978, 403, 297, 278, 5619, 29889, 14189, 1446, 2761, 278, 5619, 29889, 13932, 7128, 800, 278, 1370, 2609, 6773, 29889, 2796, 310, 5828, 29889, 512, 278, 2446, 1023, 2440, 591, 674, 367, 22514, 263, 3287, 310, 289, 913, 304, 278, 21138, 29889, 3872, 29915, 29873, 4658, 372, 363, 263, 1473, 29889, 13, 8120, 292, 304, 1370, 471, 451, 590, 7348, 29892, 541, 278, 9014, 414, 310, 6813, 24854, 363, 1370, 29889, 2567, 9014, 414, 505, 24854, 304, 1095, 278, 1370, 29889, 450, 14189, 1446, 505, 372, 297, 1009, 3081, 304, 1095, 278, 1370, 322, 674, 505, 1023, 2440, 304, 4866, 278, 4982, 29889, 2688, 1818, 3380, 472, 2748, 29889, 13, 6028, 8507, 22652, 16913, 278, 3082, 2661, 370, 1674, 358, 29973, 13, 7900, 2017, 393, 4123, 24715, 21486, 278, 22652, 9551, 1338, 29892, 6514, 896, 1122, 367, 29889, 1724, 13336, 338, 727, 304, 4889, 278, 21375, 29939, 275, 304, 748, 3412, 411, 963, 29973, 13, 1576, 2653, 7988, 22384, 1122, 3544, 963, 541, 920, 437, 366, 3394, 963, 304, 1906, 17785, 297, 278, 1857, 7631, 1370, 29973, 13, 3112, 723, 367, 7575, 304, 8338, 14883, 322, 8713, 2849, 964, 278, 21375, 26461, 611, 295, 303, 456, 29892, 541, 723, 896, 20218, 29973, 450, 14883, 5834, 505, 16413, 931, 322, 1449, 393, 896, 526, 1568, 281, 7608, 1135, 502, 297, 1438, 13750, 29892, 322, 3508, 29915, 29873, 372, 901, 304, 1009, 14169, 304, 6505, 502, 3252, 391, 14205, 297, 278, 8805, 29973, 13, 3624, 372, 1855, 4695, 29892, 1584, 472, 445, 1298, 29892, 304, 1348, 4123, 24715, 723, 2244, 14883, 322, 8713, 2849, 304, 304, 679, 1075, 1283, 278, 12422, 29892, 3113, 29973, 13, 8439, 338, 1790, 8852, 2318, 297, 445, 10679, 29892, 2305, 1058, 1016, 29915, 29873, 2562, 263, 2537, 313, 272, 2635, 29897, 1048, 22652, 470, 278, 24754, 362, 310, 278, 3082, 2661, 370, 1674, 358, 29901, 278, 18363, 310, 21375, 29939, 29889, 13, 29908, 29909, 716, 399, 13152, 21180, 310, 278, 21375, 26461, 970, 14061, 393, 9881, 297, 3006, 21375, 29939, 275, 864, 501, 29889, 29903, 9229, 839, 8249, 304, 9063, 304, 28679, 2629, 263, 1629, 29889, 530, 975, 1332, 295, 4056, 13638, 1339, 17180, 393, 278, 501, 29889, 29903, 29889, 9121, 10122, 297, 21375, 29939, 338, 1326, 17223, 901, 14529, 1135, 372, 338, 5557, 292, 322, 727, 338, 15678, 16420, 297, 278, 21375, 26461, 9987, 29889, 960, 278, 3303, 3900, 1754, 263, 9063, 358, 304, 28679, 29892, 263, 13638, 1339, 17180, 393, 445, 723, 9324, 264, 278, 21375, 26461, 5874, 29889, 18601, 363, 16661, 373, 501, 29889, 29903, 9229, 839, 8249, 756, 21633, 304, 263, 13638, 2602, 813, 1286, 4832 ]
1,024
C4
0.224571
0.027897
-0.077663
-0.351888
in ten. Support appears to be related to a widespread perception, held by all ethnic groups, that the U.S. government plans to have permanent military bases in Iraq." Also asked about Iraqis' feelings toward al-Qaeda, Iran, Syria, and Hezbollah. Al-Qaeda is looked on unfavorably by large majorities in all Iraq's ethnic groups, while the other regional actors are viewed more variably. Poll for the U.S. Department of Defense (Sept. 2006): John Simpson for the BBC reports a U.S. Department of Defense poll which found that about 75 percent of Iraq's 5 million Sunni Muslims now support the armed insurgency against the coalition. The only viable solution to the Iraqi nightmare is for the U.S. to get out now. I've been telling all my antiwar friends that their faith in the Democrats is misplaced for months now. Same war(s), different marketing. I just don't think my message is penetrating, and I think the big reason for that is that to admit that there is merely a left and a right wing of an all-encompassing war party is too terrible a thing to contemplate. I used to think similarly as recently as 2002, but since then the scales have ever so slowly fallen from my eyes and what I behold is a terrible thing indeed: corporatism with a thin democratic veneer. Anyway, keep up the good work. Hopefully after this round of (s)elections people will finally wake up to the need to a broad-based, grass-roots anti-imperialist movement. I don't know who if anyone reviews or edits these pieces you post, or who reads these e-mails. But I want to point out the ridiculously sloppy approach to reporting and analysis in Mr. Frank's piece, "Wake Me When It's Over." To describe Peace Action by calling us "the self-proclaimed largest grassroots peace organization in the U.S." is just the beginning. Is it so hard for Mr. Frank to go to a few Web sites or check a few numbers to verify our very easily verifiable claim? Apparently so. Easier to just make a snide comment about it, I suppose. His description of the activity on our voter guides is completely inaccurate, and his description of our goals and motivations in this is laughable. "Cocktail party networking"? Has Mr. Frank ever worked for a grassroots peace organization in D.C.? If he had, he would know just how ridiculous that sounds. We scratch and fight for everything we get here, and no one works at a place like this to schmooze at fancy cocktail parties and further their career. Naturally, he cannot even cite a name of anyone who gave him his information about Peace Action's plans or strategy. Once again, I guess it must have been just too darn difficult to call our national office to get an accurate quote he could attribute to an actual person in leadership. Generally I very much appreciate Antiwar.com, but you should be a little more careful about stuff like this. People who can't do basic reporting or cite their sources shouldn't be given the space to smear the names of those people and groups working to end the war, bring social justice, etc. they who sold out Russia in all those memorable years of Cold War. But bitterness? No. No bitterness. After all, what Russia could do to prevent bombing of Serbia, Russia did: promising to block its authorization within the framework of the UN. After that, Russia could do nothing, short of going to war against the West. Since Russia once did that, and got Communist takeover and the Serbs' Cold War betrayal as a consequence, it's only logical that this time around Moscow decided not to plunge into a concrete wall headfirst. If the Serbs don't like it – tough. My only hopes are that from now on, Russia protects its own interests first, the interests of her friends second, and the Serbs' interests never. I would dearly like to hear an explanation how the Serbs – having been partitioned, humiliated, deceived, robbed, and jailed by Yugoslavia's Communist overlords trained in Moscow – "sold out" Russia during the Cold War. Serbs do not have "historic grievances" against Russia; if anything, they may have a surplus
[ 297, 3006, 29889, 18601, 5692, 304, 367, 4475, 304, 263, 281, 2247, 29886, 949, 639, 1441, 29892, 4934, 491, 599, 11314, 7823, 6471, 29892, 393, 278, 501, 29889, 29903, 29889, 5874, 13900, 304, 505, 17667, 9121, 22561, 297, 21375, 29939, 1213, 13, 17351, 4433, 1048, 21375, 29939, 275, 29915, 21737, 11183, 394, 29899, 29984, 29874, 8710, 29892, 14883, 29892, 8713, 2849, 29892, 322, 940, 29920, 2095, 8083, 29889, 838, 29899, 29984, 29874, 8710, 338, 5148, 373, 29395, 17118, 2197, 491, 2919, 4655, 1907, 297, 599, 21375, 29939, 29915, 29879, 11314, 7823, 6471, 29892, 1550, 278, 916, 14014, 29701, 526, 24774, 901, 1197, 2197, 29889, 13, 29925, 3028, 363, 278, 501, 29889, 29903, 29889, 10317, 310, 5282, 1947, 313, 2008, 415, 29889, 29871, 29906, 29900, 29900, 29953, 1125, 2259, 3439, 11869, 363, 278, 14129, 13676, 263, 501, 29889, 29903, 29889, 10317, 310, 5282, 1947, 21180, 607, 1476, 393, 1048, 29871, 29955, 29945, 10151, 310, 21375, 29939, 29915, 29879, 29871, 29945, 7284, 8991, 1240, 23772, 29879, 1286, 2304, 278, 23926, 1663, 332, 14703, 2750, 278, 17148, 654, 29889, 13, 1576, 871, 3516, 519, 1650, 304, 278, 21375, 26461, 4646, 29885, 598, 338, 363, 278, 501, 29889, 29903, 29889, 304, 679, 714, 1286, 29889, 13, 29902, 29915, 345, 1063, 14509, 599, 590, 9418, 4495, 7875, 393, 1009, 10847, 297, 278, 14189, 1446, 338, 3984, 13974, 1133, 363, 7378, 1286, 29889, 19491, 1370, 29898, 29879, 511, 1422, 9999, 292, 29889, 306, 925, 1016, 29915, 29873, 1348, 590, 2643, 338, 6584, 18184, 1218, 29892, 322, 306, 1348, 278, 4802, 2769, 363, 393, 338, 393, 304, 20000, 393, 727, 338, 13586, 263, 2175, 322, 263, 1492, 21612, 310, 385, 599, 29899, 264, 2388, 465, 292, 1370, 6263, 338, 2086, 16403, 263, 2655, 304, 640, 331, 2341, 29889, 306, 1304, 304, 1348, 22829, 408, 10325, 408, 29871, 29906, 29900, 29900, 29906, 29892, 541, 1951, 769, 278, 23431, 505, 3926, 577, 14205, 19225, 515, 590, 5076, 322, 825, 306, 2306, 1025, 338, 263, 16403, 2655, 6200, 29901, 17266, 271, 1608, 411, 263, 16835, 1261, 8415, 2454, 325, 1600, 261, 29889, 18110, 29892, 3013, 701, 278, 1781, 664, 29889, 7963, 3730, 1156, 445, 4513, 310, 313, 29879, 29897, 29872, 5942, 2305, 674, 7146, 281, 1296, 701, 304, 278, 817, 304, 263, 7300, 29899, 6707, 29892, 17455, 29899, 307, 1862, 9418, 29899, 26039, 616, 391, 10298, 29889, 13, 29902, 1016, 29915, 29873, 1073, 1058, 565, 5019, 21804, 470, 1226, 1169, 1438, 12785, 366, 1400, 29892, 470, 1058, 13623, 1438, 321, 29899, 2549, 29879, 29889, 13, 6246, 306, 864, 304, 1298, 714, 278, 8177, 12906, 5794, 14216, 23717, 2948, 304, 23415, 322, 7418, 297, 3237, 29889, 4976, 29915, 29879, 8424, 29892, 376, 29956, 1296, 2191, 1932, 739, 29915, 29879, 6811, 1213, 1763, 8453, 24819, 9123, 491, 5432, 502, 376, 1552, 1583, 29899, 15439, 13190, 10150, 17455, 307, 1862, 10776, 13013, 297, 278, 501, 29889, 29903, 1213, 338, 925, 278, 6763, 29889, 1317, 372, 577, 2898, 363, 3237, 29889, 4976, 304, 748, 304, 263, 2846, 2563, 11840, 470, 1423, 263, 2846, 3694, 304, 11539, 1749, 1407, 5948, 1147, 28677, 5995, 29973, 27466, 2705, 577, 29889, 382, 294, 631, 304, 925, 1207, 263, 5807, 680, 3440, 1048, 372, 29892, 306, 7755, 29889, 13, 29950, 275, 6139, 310, 278, 6354, 373, 1749, 9014, 261, 1410, 2247, 338, 6446, 297, 562, 2764, 403, 29892, 322, 670, 6139, 310, 1749, 14433, 322, 17385, 800, 297, 445, 338, 10569, 519, 29889, 376, 29907, 1698, 18237, 6263, 28127, 8652, 11699, 3237, 29889, 4976, 3926, 3796, 363, 263, 17455, 307, 1862, 10776, 13013, 297, 360, 29889, 29907, 29889, 29973, 960, 540, 750, 29892, 540, 723, 1073, 925, 920, 8177, 12906, 681, 393, 10083, 29889, 1334, 22728, 322, 8589, 363, 4129, 591, 679, 1244, 29892, 322, 694, 697, 1736, 472, 263, 2058, 763, 445, 304, 1364, 29885, 3634, 911, 472, 19231, 1302, 384, 18237, 13973, 322, 4340, 1009, 6413, 29889, 8746, 635, 29892, 540, 2609, 1584, 274, 568, 263, 1024, 310, 5019, 1058, 4846, 1075, 670, 2472, 1048, 24819, 9123, 29915, 29879, 13900, 470, 13705, 29889, 9038, 1449, 29892, 306, 4140, 372, 1818, 505, 1063, 925, 2086, 270, 2753, 5189, 304, 1246, 1749, 4797, 8034, 304, 679, 385, 16232, 14978, 540, 1033, 5352, 304, 385, 3935, 2022, 297, 26001, 29889, 13, 5631, 635, 306, 1407, 1568, 11188, 18473, 4495, 29889, 510, 29892, 541, 366, 881, 367, 263, 2217, 901, 16010, 1048, 6433, 763, 445, 29889, 11647, 1058, 508, 29915, 29873, 437, 6996, 23415, 470, 274, 568, 1009, 8974, 9273, 29915, 29873, 367, 2183, 278, 2913, 304, 1560, 799, 278, 2983, 310, 1906, 2305, 322, 6471, 1985, 304, 1095, 278, 1370, 29892, 6963, 5264, 15426, 29892, 2992, 29889, 13, 19562, 1058, 5239, 714, 12710, 297, 599, 1906, 26959, 519, 2440, 310, 26731, 3362, 29889, 1205, 2586, 725, 404, 29973, 1939, 29889, 1939, 2586, 725, 404, 29889, 13, 13555, 599, 29892, 825, 12710, 1033, 437, 304, 5557, 13585, 292, 310, 1816, 15959, 29892, 12710, 1258, 29901, 2504, 5921, 304, 2908, 967, 28733, 2629, 278, 6890, 310, 278, 8291, 29889, 2860, 393, 29892, 12710, 1033, 437, 3078, 29892, 3273, 310, 2675, 304, 1370, 2750, 278, 3122, 29889, 13, 23036, 12710, 2748, 1258, 393, 29892, 322, 2355, 20473, 391, 2125, 957, 322, 278, 1816, 5824, 29915, 26731, 3362, 1010, 764, 284, 408, 263, 17004, 29892, 372, 29915, 29879, 871, 16667, 393, 445, 931, 2820, 25820, 8459, 451, 304, 715, 19440, 964, 263, 18387, 10090, 2343, 4102, 29889, 13, 3644, 278, 1816, 5824, 1016, 29915, 29873, 763, 372, 785, 260, 820, 29889, 1619, 871, 26926, 526, 393, 515, 1286, 373, 29892, 12710, 12566, 29879, 967, 1914, 20017, 937, 29892, 278, 20017, 310, 902, 7875, 1473, 29892, 322, 278, 1816, 5824, 29915, 20017, 2360, 29889, 13, 29902, 723, 9425, 368, 763, 304, 8293, 385, 8252, 920, 278, 1816, 5824, 785, 2534, 1063, 8877, 287, 29892, 3165, 2638, 630, 29892, 23332, 2347, 29892, 696, 1327, 287, 29892, 322, 12337, 2356, 491, 612, 688, 17464, 423, 29915, 29879, 20473, 391, 975, 29880, 4339, 16370, 297, 25820, 785, 376, 29879, 1025, 714, 29908, 12710, 2645, 278, 26731, 3362, 29889, 1816, 5824, 437, 451, 505, 376, 16211, 293, 867, 10384, 2925, 29908, 2750, 12710, 29936, 565, 3099, 29892, 896, 1122, 505, 263, 1190, 11242 ]
1,024
C4
-0.275707
-0.09669
-0.420393
-0.678069
La lingua catalana è una lingua romanza occidentale parlata principalmente in Spagna (Catalogna, Isole Baleari, Comunità Valenzana, Murcia e Striscia d'Aragona), Francia (Rossiglione), Andorra e Italia (Alghero); a questi vanno aggiunti circa 350.000 parlanti residenti nelle zone in cui il catalano non è considerato idioma autoctono (per la maggior parte concentrati in Europa e America Latina). Al 2022, è parlata da 9,2 milioni di parlanti totali. Nella Comunità Valenzana è parlata una varietà del catalano che prende il nome di valenzano (valencià), con numerose subvarianti (castellonenc, apitxat, ecc.), nelle Isole Baleari è diffusa un'altra variante comunemente nota come maiorchino (mallorquí), cui si ricollegano le due subvarianti del minorchino (menorquí) e dellibizenco (eivissenc), mentre nella città sarda di Alghero si è conservata un'antica variante orientale (alguerès) che ha subito marcate influenze sia da parte del sardo sia dell'italiano. Le varietà del catalano presentano pertanto molte differenze dialettali dovute allo sviluppo autonomo che hanno avuto nel corso degli ultimi secoli, tuttavia esse non si riflettono nella lingua scritta. Il catalano ha influenzato parecchi dialetti e lingue regionali italiane, specialmente in alcune regioni in passato governate dalla corona aragonese e, a sua volta, è stato influenzato dall'italiano, sia in età rinascimentale che in epoche successive. Il catalano è molto diverso dal resto delle lingue ibero-romanze per via della sua grammatica e delle sue parole di origine gallo-romanze, quindi è strettamente collegato con l'occitano, il francese e le lingue del nord Italia, sebbene abbia ricevuto un'importante influenza delle lingue ibero-romanze. Storia In età medievale il catalano antico (a volte impropriamente indicato come limosino, confondendolo con un dialetto dell'occitano) era la lingua ufficiale della cancelleria d'Aragona e lingua di cultura della corte, prima da sola, poi, con l'avvento della dinastia castigliana dei Trastámara, insieme allo spagnolo. Con l'arrivo dei Borgia alla Sede Romana (Callisto III e il nipote Alessandro VI), anche lì il catalano diventò lingua di uso cortigiano. Anche i primi iberici che arrivarono in Sardegna erano di madrelingua catalana; dagli inizi del Quattrocento fino a tutta la prima metà del XVII secolo, insieme al latino, il catalano si impose in tutta l'isola come lingua dell'amministrazione e del diritto, e ad Alghero, colonia genovese fondata dai Doria, una volta svuotata dai suoi abitanti e ripopolata da famiglie catalane, si iniziò a parlare fin dalla seconda metà del XIV secolo. Ebbe grande influenza sul sardo (che continuò ad essere la principale lingua d'uso in Sardegna), soprattutto sulla variante campidanese, afferente all'area meridionale dell'isola. Il catalano, in epoca medievale, conobbe un grande splendore letterario, testimoniato fin dal Duecento dal celebre trattato filosofico-religioso di Ramon Llull. Con l'avvento della dinastia asburgica al trono di Spagna, nella prima metà del Cinquecento, iniziò per il catalano un periodo di decadenza che si protrasse per circa tre secoli. In tale periodo acquisì maggior prestigio lo spagnolo. Con i decreti di Nueva Planta (1707-1716) Filippo V introdusse lo spagnolo come unica lingua dell'amministrazione, dell'insegnamento e dei tribunali nei paesi di lingua catalana, relegando così quest'ultima al solo
[ 997, 16850, 3357, 17246, 1648, 2077, 1185, 16850, 3357, 9728, 1362, 17543, 744, 24590, 532, 21995, 297, 1706, 15713, 313, 29907, 3968, 1056, 29892, 306, 2170, 350, 744, 1306, 29892, 23914, 3943, 2630, 4666, 1648, 29892, 7487, 1512, 321, 3767, 275, 1512, 270, 29915, 29909, 1431, 2681, 511, 13913, 313, 29934, 2209, 335, 29880, 1421, 511, 1126, 272, 336, 321, 12201, 313, 2499, 12443, 1489, 416, 263, 22982, 325, 7665, 25586, 1657, 29875, 15923, 29871, 29941, 29945, 29900, 29889, 29900, 29900, 29900, 24590, 3656, 20201, 29875, 12447, 10640, 297, 7385, 980, 17246, 1562, 1661, 2077, 2050, 1219, 1178, 29875, 4125, 4469, 312, 3231, 313, 546, 425, 22159, 3810, 14953, 2219, 297, 9646, 321, 6813, 7053, 1099, 467, 13, 13, 2499, 29871, 29906, 29900, 29906, 29906, 29892, 2077, 24590, 532, 1146, 29871, 29929, 29892, 29906, 2316, 3688, 652, 24590, 3656, 2025, 2606, 29889, 13, 13, 29940, 3547, 23914, 3943, 2630, 4666, 1648, 2077, 24590, 532, 1185, 1197, 12582, 628, 17246, 1562, 923, 544, 3324, 980, 9235, 652, 659, 4666, 1562, 313, 791, 13640, 30001, 511, 378, 4825, 852, 1014, 5927, 3656, 313, 4384, 514, 265, 3977, 29892, 3095, 277, 29916, 271, 29892, 16882, 9774, 12447, 306, 2170, 350, 744, 1306, 2077, 2923, 11326, 443, 29915, 24079, 722, 12361, 8759, 9936, 451, 29874, 2041, 17136, 305, 1789, 313, 29885, 497, 272, 339, 29983, 511, 7385, 1354, 364, 5283, 1397, 1562, 454, 2861, 1014, 5927, 3656, 628, 9461, 305, 1789, 313, 1527, 272, 339, 29983, 29897, 321, 628, 1982, 19642, 1111, 313, 29872, 440, 790, 3977, 511, 11552, 4952, 12209, 269, 23144, 652, 11545, 29882, 1489, 1354, 2077, 8976, 532, 443, 29915, 424, 983, 722, 12361, 7769, 744, 313, 284, 26880, 2093, 29897, 923, 447, 1014, 2049, 25335, 403, 13787, 911, 14718, 1146, 3810, 628, 269, 6491, 14718, 3572, 29915, 2410, 3328, 29889, 13, 13, 3226, 1197, 12582, 628, 17246, 1562, 2198, 1562, 13499, 5361, 6062, 371, 1163, 13233, 270, 4379, 698, 2606, 27698, 1082, 25169, 21927, 29884, 9759, 28273, 29877, 923, 15239, 1029, 3066, 2032, 25438, 7973, 8494, 10233, 409, 25776, 29892, 260, 23208, 831, 344, 1661, 1354, 17018, 13650, 3231, 4952, 16850, 3357, 24048, 941, 29889, 1720, 17246, 1562, 447, 13787, 29920, 1219, 9541, 29883, 4161, 270, 4379, 698, 29875, 321, 16850, 434, 14014, 29875, 4698, 16677, 29892, 4266, 2689, 297, 26591, 1072, 3688, 297, 1209, 1219, 4095, 403, 7286, 1034, 2681, 263, 1431, 265, 968, 321, 29892, 263, 4171, 13458, 29892, 2077, 7550, 13787, 29920, 1219, 8912, 29915, 2410, 3328, 29892, 14718, 297, 634, 30001, 29053, 6151, 2073, 744, 923, 297, 21502, 1173, 2551, 573, 29889, 1720, 17246, 1562, 2077, 16247, 17089, 578, 2959, 25814, 4884, 16850, 434, 474, 19765, 29899, 456, 22668, 639, 3025, 2005, 4171, 14961, 2922, 983, 321, 4884, 12991, 610, 1772, 652, 1677, 457, 6898, 417, 29899, 456, 22668, 29892, 19671, 2077, 12243, 698, 2503, 18400, 1219, 378, 301, 29915, 15693, 277, 1562, 29892, 980, 18730, 321, 454, 16850, 434, 628, 6218, 12201, 29892, 409, 1327, 1600, 633, 15959, 19408, 29894, 3066, 443, 29915, 5215, 1647, 13787, 1362, 4884, 16850, 434, 474, 19765, 29899, 456, 22668, 29889, 13, 13, 855, 4108, 29871, 13, 29871, 13, 797, 634, 30001, 1612, 10384, 744, 980, 17246, 1562, 3677, 1417, 313, 29874, 27288, 4857, 29886, 374, 2503, 4221, 1219, 2041, 2485, 359, 1789, 29892, 1970, 898, 355, 3543, 378, 443, 9766, 1026, 517, 3572, 29915, 15693, 277, 1562, 29897, 3152, 425, 16850, 3357, 16421, 2005, 508, 3729, 8749, 270, 29915, 29909, 1431, 2681, 321, 16850, 3357, 652, 22124, 2005, 28776, 29892, 7233, 1146, 899, 29874, 29892, 11899, 29892, 378, 301, 29915, 485, 794, 29877, 2005, 28960, 423, 4320, 11224, 1648, 3771, 1605, 579, 6542, 2518, 29892, 23163, 25169, 805, 4211, 3543, 29889, 1281, 301, 29915, 279, 1150, 29877, 3771, 20918, 423, 4082, 317, 2742, 6033, 1648, 313, 5594, 5137, 4786, 321, 980, 302, 666, 866, 22790, 14907, 5473, 511, 5978, 301, 30097, 980, 17246, 1562, 28356, 30059, 16850, 3357, 652, 17448, 13979, 335, 3328, 29889, 13, 13, 2744, 1173, 474, 25877, 474, 495, 1654, 923, 6974, 14408, 297, 7745, 12163, 1056, 15584, 652, 20443, 1847, 3357, 17246, 1648, 29936, 12136, 492, 25676, 628, 751, 19114, 1760, 29877, 14270, 263, 7149, 941, 425, 7233, 1539, 30001, 628, 17031, 15200, 29892, 23163, 394, 3405, 1789, 29892, 980, 17246, 1562, 1354, 2411, 852, 297, 7149, 941, 301, 29915, 275, 2963, 2041, 16850, 3357, 3572, 29915, 314, 1195, 12496, 4246, 321, 628, 4516, 20435, 29892, 321, 594, 11545, 29882, 1489, 29892, 784, 6405, 2531, 586, 968, 6299, 532, 14720, 360, 4108, 29892, 1185, 13458, 3731, 29884, 327, 532, 14720, 13673, 26548, 321, 18290, 13242, 532, 1146, 5216, 335, 3197, 17246, 1662, 29892, 1354, 25676, 30059, 263, 610, 8663, 1436, 7286, 18740, 1539, 30001, 628, 17071, 15200, 29889, 382, 9967, 6815, 13787, 1362, 5394, 269, 6491, 313, 1173, 3133, 30059, 594, 10026, 425, 15963, 16850, 3357, 270, 29915, 10648, 297, 7745, 12163, 1056, 511, 12103, 29878, 1131, 17317, 12615, 722, 12361, 4242, 29219, 968, 29892, 2511, 571, 2016, 599, 29915, 6203, 2778, 333, 7565, 3572, 29915, 275, 2963, 29889, 13, 13, 14126, 17246, 1562, 29892, 297, 9358, 6400, 1612, 10384, 744, 29892, 378, 711, 915, 443, 6815, 22612, 487, 5497, 2628, 29892, 28523, 5271, 1219, 1436, 2959, 16809, 1760, 29877, 2959, 7793, 1030, 534, 1131, 1219, 22188, 1417, 29899, 2674, 335, 27864, 652, 8292, 265, 365, 29880, 913, 29889, 1281, 301, 29915, 485, 794, 29877, 2005, 28960, 423, 408, 3074, 983, 394, 534, 3231, 652, 1706, 15713, 29892, 4952, 7233, 1539, 30001, 628, 11972, 339, 687, 9239, 29892, 25676, 30059, 639, 980, 17246, 1562, 443, 17848, 652, 1602, 4858, 1362, 923, 1354, 410, 509, 5793, 639, 15923, 2578, 409, 25776, 29889, 512, 17694, 17848, 1274, 7680, 30097, 22159, 544, 5286, 601, 658, 805, 4211, 3543, 29889, 1281, 474, 9263, 2034, 652, 18151, 1858, 6949, 313, 29896, 29955, 29900, 29955, 29899, 29896, 29955, 29896, 29953, 29897, 2514, 8377, 29877, 478, 938, 5964, 375, 344, 658, 805, 4211, 3543, 2041, 443, 983, 16850, 3357, 3572, 29915, 314, 1195, 12496, 4246, 29892, 3572, 29915, 262, 344, 5138, 4487, 321, 3771, 9434, 348, 2606, 12106, 3300, 10100, 652, 16850, 3357, 17246, 1648, 29892, 337, 1397, 1743, 16425, 21126, 29915, 499, 2946, 394, 6651 ]
1,024
Wikipedia
0.368236
0.511971
-0.28366
-0.223503
uso vernacolare. Nei primi anni del 1800 vi furono vari tentativi di recuperare e promuovere l'uso del catalano, di cui il più importante fu la Renaixença, movimento letterario che diede avvio alla rinascita della letteratura catalana. Nei primi del '900 Pompeu Fabra portò a termine l'unificazione della grafia (normalizzazione) in modo da rappresentare le diverse varianti con un'ortografia unica. Questo diede un forte impulso alla produzione libraria, teatrale, di giornali e quindi al riconoscimento del catalano come lingua. Durante la dittatura franchista il suo uso tornò ad essere proibito al di fuori di àmbiti strettamente privati e si propagandò la visione del catalano come dialetto (cioè variante) dello spagnolo. Dal 1979, esso è riconosciuto come lingua all'interno della comunità autonoma della Catalogna e ne viene promosso l'uso ufficiale e l'insegnamento presso le scuole. Il catalano è lingua ufficiale, insieme allo spagnolo, anche nella Comunità Valenzana, e nelle isole Baleari. Nell'Aragona orientale, pur non essendo equiparato allo spagnolo, ha ottenuto un limitato riconoscimento nelle sue zone di diffusione (conosciute come Striscia d'Aragona). Approssimativamente si può dire che la normalizzazione ha portato ad una scrittura basata sulle varianti occidentali parlate nella Comunità Valenzana, nella Striscia d'Aragona (in catalano Franja de Ponent o Franja d'Aragó, in aragonese Francha de Lebán, in spagnolo Franja de Aragón) in Aragona, nelle comarche di Tarragona e Lleida in Catalogna, nel Principato di Andorra e pronunciata secondo le varianti centrali-orientali (comarche di Barcellona, Gerona in Catalogna, Baleari in Spagna, Rossiglione in Francia, Alghero in Italia). Diffusione attuale Attualmente, il catalano è lingua ufficiale: nel principato di Andorra, dove è l'unica lingua ufficiale; in Spagna: Catalogna, lingua ufficiale assieme allo spagnolo e all'occitano; Comunità Valenzana, lingua ufficiale, nella sua variante valenzana, assieme allo spagnolo; Isole Baleari, lingua ufficiale, nella sua variante maiorchina, insieme allo spagnolo. Il catalano nella Comunità Valenzana Nella Comunità Valenzana il catalano segue una norma differente da quella della Catalogna e ad esso è attribuito il nome storico, tradizionale e ufficiale di lingua valenzana (llengua valenciana) dallo statuto e dalle leggi regionali, che lo definiscono «lingua propria» del territorio. Intorno all'adesione del valenzano al sistema linguistico catalano esiste una disputa di carattere politico fin dai tempi della Guerra civile spagnola. Il catalano nelle Isole Baleari Il catalano ad Andorra Il catalano è l'unica lingua ufficiale ad Andorra in base alla Costituzione del 1939. Inoltre, è questo il solo stato del mondo in cui il catalano è l'unica lingua ufficiale. Molto parlati dagli immigrati presenti e dagli stessi andorrani sono anche lo spagnolo e il francese. Il catalano in Sardegna Il catalano è parlato in Sardegna, come lingua autoctona, solo all'interno del comune di Alghero e ha molte similitudini con la lingua sviluppatasi in Catalogna fra la metà del XIV e la fine del XVII secolo. In tale periodo Alghero fece parte prima della Corona d'Aragona, poi subì la dominazione spagnola, cessata la quale il catalano ha continuato a sopravvivere in città senza sostanziali evoluzioni, a differenza di quello usato attualmente in Catalogna, ed è pertanto una varietà linguistica con numerose forme ed espressioni considerabili come antiche. Il catalano è o
[ 17448, 24604, 562, 13517, 29889, 13, 13, 8139, 29875, 25877, 6957, 628, 29871, 29896, 29947, 29900, 29900, 3516, 17380, 1197, 12033, 1926, 29875, 652, 22869, 598, 321, 2504, 29884, 957, 29872, 301, 29915, 10648, 628, 17246, 1562, 29892, 652, 7385, 980, 5187, 13483, 4084, 425, 21794, 27332, 4277, 29892, 2351, 6174, 5497, 2628, 923, 652, 2742, 1029, 29894, 601, 4082, 29053, 6151, 2028, 2005, 5497, 7969, 17246, 1648, 29889, 2448, 29875, 25877, 628, 525, 29929, 29900, 29900, 14351, 412, 29884, 10629, 336, 2011, 30059, 263, 20202, 301, 29915, 348, 928, 3343, 2005, 22956, 423, 313, 8945, 21146, 29897, 297, 13963, 1146, 24449, 598, 454, 16984, 1197, 3656, 378, 443, 29915, 441, 5028, 443, 983, 29889, 751, 4778, 652, 2742, 443, 19624, 2411, 352, 578, 4082, 1391, 4246, 619, 1182, 4568, 29892, 28308, 9549, 29892, 652, 4005, 1398, 2606, 321, 19671, 394, 26365, 14174, 6174, 628, 17246, 1562, 2041, 16850, 3357, 29889, 13912, 425, 270, 986, 7969, 23272, 2079, 980, 5324, 17448, 10146, 30059, 594, 10026, 410, 747, 2049, 394, 652, 4084, 4170, 652, 818, 29885, 2966, 29875, 12243, 698, 2503, 5999, 2219, 321, 1354, 13089, 392, 30059, 425, 1998, 1421, 628, 17246, 1562, 2041, 9766, 1026, 517, 313, 3934, 30000, 722, 12361, 29897, 14681, 805, 4211, 3543, 29889, 13, 13, 29928, 284, 29871, 29896, 29929, 29955, 29929, 29892, 3686, 29877, 2077, 26365, 23039, 3066, 2041, 16850, 3357, 599, 29915, 27160, 2005, 8759, 3943, 1120, 265, 4125, 2005, 5725, 1056, 321, 452, 10755, 2504, 359, 578, 301, 29915, 10648, 16421, 321, 301, 29915, 262, 344, 5138, 4487, 20885, 454, 885, 29884, 1772, 29889, 1720, 17246, 1562, 2077, 16850, 3357, 16421, 29892, 23163, 25169, 805, 4211, 3543, 29892, 5978, 4952, 23914, 3943, 2630, 4666, 1648, 29892, 321, 12447, 338, 1772, 350, 744, 1306, 29889, 26450, 29915, 29909, 1431, 2681, 7769, 744, 29892, 3708, 1661, 3686, 2765, 7462, 279, 1219, 25169, 805, 4211, 3543, 29892, 447, 26559, 3066, 443, 4046, 1219, 26365, 14174, 6174, 12447, 12991, 10640, 652, 25876, 1421, 313, 535, 23039, 1082, 2041, 3767, 275, 1512, 270, 29915, 29909, 1431, 2681, 467, 13, 13, 2052, 2124, 326, 1926, 2503, 1354, 17356, 2970, 923, 425, 4226, 21146, 447, 2011, 1219, 594, 1185, 885, 12123, 2002, 2362, 532, 28734, 1197, 3656, 17543, 2606, 610, 9632, 4952, 23914, 3943, 2630, 4666, 1648, 29892, 4952, 3767, 275, 1512, 270, 29915, 29909, 1431, 2681, 313, 262, 17246, 1562, 1352, 1764, 316, 26317, 296, 288, 1352, 1764, 270, 29915, 29909, 1431, 29980, 29892, 297, 263, 1431, 265, 968, 1352, 5815, 316, 9388, 1715, 29892, 297, 805, 4211, 3543, 1352, 1764, 316, 24350, 888, 29897, 297, 24350, 2681, 29892, 12447, 419, 279, 1173, 652, 11740, 1431, 2681, 321, 365, 280, 1458, 297, 5725, 1056, 29892, 2032, 14771, 29886, 1219, 652, 1126, 272, 336, 321, 29871, 11504, 11173, 532, 15015, 454, 1197, 3656, 6555, 29875, 29899, 12236, 2606, 313, 510, 279, 1173, 652, 2261, 3729, 2681, 29892, 5681, 2681, 297, 5725, 1056, 29892, 350, 744, 1306, 297, 1706, 15713, 29892, 13693, 335, 29880, 1421, 297, 13913, 29892, 11545, 29882, 1489, 297, 12201, 467, 13, 13, 26023, 375, 1421, 1098, 18634, 29871, 13, 13, 4165, 14162, 29892, 980, 17246, 1562, 2077, 16850, 3357, 16421, 29901, 13, 2032, 3420, 1219, 652, 1126, 272, 336, 29892, 10897, 2077, 301, 29915, 348, 983, 16850, 3357, 16421, 29936, 13, 297, 1706, 15713, 29901, 13, 5725, 1056, 29892, 16850, 3357, 16421, 408, 17339, 25169, 805, 4211, 3543, 321, 599, 29915, 15693, 277, 1562, 29936, 13, 23914, 3943, 2630, 4666, 1648, 29892, 16850, 3357, 16421, 29892, 4952, 4171, 722, 12361, 659, 4666, 1648, 29892, 408, 17339, 25169, 805, 4211, 3543, 29936, 13, 306, 2170, 350, 744, 1306, 29892, 16850, 3357, 16421, 29892, 4952, 4171, 722, 12361, 17136, 305, 1099, 29892, 23163, 25169, 805, 4211, 3543, 29889, 13, 13, 14126, 17246, 1562, 4952, 23914, 3943, 2630, 4666, 1648, 13, 13, 29940, 3547, 23914, 3943, 2630, 4666, 1648, 980, 17246, 1562, 2377, 434, 1185, 6056, 29874, 1422, 29872, 1146, 16189, 2005, 5725, 1056, 321, 594, 3686, 29877, 2077, 1098, 7741, 2049, 980, 9235, 2840, 1417, 29892, 3534, 466, 7565, 321, 16421, 652, 16850, 3357, 659, 4666, 1648, 313, 645, 996, 3357, 659, 13640, 1648, 29897, 2959, 417, 1002, 3066, 321, 19078, 454, 11832, 14014, 29875, 29892, 923, 658, 7403, 275, 21441, 859, 1847, 3357, 3107, 2849, 30007, 628, 19808, 29889, 3159, 16378, 599, 29915, 3076, 1421, 628, 659, 4666, 1562, 394, 10502, 21110, 391, 1417, 17246, 1562, 831, 2488, 1185, 8937, 29874, 652, 20044, 29872, 24117, 1436, 14720, 1350, 1631, 2005, 13838, 29338, 805, 4211, 2963, 29889, 13, 13, 14126, 17246, 1562, 12447, 306, 2170, 350, 744, 1306, 13, 13, 14126, 17246, 1562, 594, 1126, 272, 336, 29871, 13, 14126, 17246, 1562, 2077, 301, 29915, 348, 983, 16850, 3357, 16421, 594, 1126, 272, 336, 297, 2967, 4082, 9839, 1981, 4246, 628, 29871, 29896, 29929, 29941, 29929, 29889, 512, 20184, 29892, 2077, 11352, 980, 6651, 7550, 628, 18629, 297, 7385, 980, 17246, 1562, 2077, 301, 29915, 348, 983, 16850, 3357, 16421, 29889, 10750, 517, 24590, 2219, 12136, 492, 5198, 4481, 2219, 2198, 29875, 321, 12136, 492, 380, 404, 29875, 322, 272, 661, 29875, 5748, 5978, 658, 805, 4211, 3543, 321, 980, 18730, 29889, 13, 13, 14126, 17246, 1562, 297, 7745, 12163, 1056, 29871, 13, 13, 14126, 17246, 1562, 2077, 24590, 1219, 297, 7745, 12163, 1056, 29892, 2041, 16850, 3357, 4469, 312, 2681, 29892, 6651, 599, 29915, 27160, 628, 14915, 652, 11545, 29882, 1489, 321, 447, 6062, 371, 1027, 309, 11267, 2172, 378, 425, 16850, 3357, 21927, 14889, 271, 6840, 297, 5725, 1056, 5227, 425, 1539, 30001, 628, 17071, 321, 425, 2691, 628, 17031, 15200, 29889, 512, 17694, 17848, 11545, 29882, 1489, 1238, 346, 3810, 7233, 2005, 2994, 2681, 270, 29915, 29909, 1431, 2681, 29892, 11899, 1014, 30097, 425, 8022, 3343, 805, 4211, 2963, 29892, 274, 404, 532, 425, 13226, 980, 17246, 1562, 447, 3133, 1219, 263, 12103, 5705, 1403, 9359, 297, 12209, 17876, 17601, 4096, 24341, 15220, 3365, 3688, 29892, 263, 1163, 5723, 652, 18316, 502, 1219, 1098, 14162, 297, 5725, 1056, 29892, 1226, 2077, 13499, 5361, 1185, 1197, 12582, 21110, 24504, 378, 4825, 852, 13618, 1226, 831, 2590, 29875, 2050, 370, 2638, 2041, 3677, 4070, 29889, 13, 14126, 17246, 1562, 2077, 288 ]
1,024
Wikipedia
0.317291
0.288752
-0.409634
-0.086264
ggi parlato ad Alghero da un numero non ben precisato di persone (20% della popolazione urbana secondo il Comune) e ha sofferto e soffre sia della concorrenza dell'italiano, sia, in misura minore, di quella del sardo, lingua mai scomparsa da Alghero. I giovani, in particolare, parlano il catalano/algherese e lo comprendono tuttavia sempre meno, nonostante le iniziative che la Regione Sardegna e il Comune di Alghero stanno conducendo a tutela di tale espressione linguistica. Il catalano in Francia Il catalano è parlato in Francia solo nella regione del Rossiglione dove, secondo gli ultimi dati socio linguistici di cui dispone la Generalitat de Catalunya (2004), il francese è però la lingua maggioritaria e il catalano espressione linguistica minoritaria. Il catalano infatti, pur essendo compreso dal 65,3% della popolazione, viene parlato solo dal 37,1% di essa (e scritto dal 10,6%). Le percentuali diminuiscono ulteriormente se si considera che viene parlato come prima lingua dal 3,5% dei residenti (mentre il 92% ha il francese come prima lingua, l'1% entrambe le lingue e il 3,5% altri idiomi non identificati). Fonetica Introduzione generale Le principali caratteristiche fonetiche o ortografiche sono: la pronuncia di a ed e atone come vocale neutra (ma nell'ortografia vengono scritte a oppure e, secondo la pronuncia delle varianti occidentali) la pronuncia di o atona come (ma viene comunque scritta "o", secondo la pronuncia delle varianti occidentali) la presenza di [z] (s sonora) intervocalica, assente in spagnolo: casa perdita della n finale dei nomi e aggettivi singolari, con aggiunta dell'accento sulla vocale finale: capità (=capitan[o]), llatí (=latin[o]), violí (=violin[o]) (ma al plurale la "n" compare: capitans, llatins, etc.). la r finale non viene pronunciata (ma viene comunque scritta, secondo l'uso occidentale): clar (=chiaro) , flor (=fiore) , primer (=primo) ; anar (=andare) , fer (=fare) , sortir (=uscire) . il suono (come "sc" nell'italiano fascia) viene rappresentato con le grafie «ix» e «x»: caixa (=cassa) , xarxa (=rete) vengono usati numerosi digrammi «tg, tj, tx, ig»: llenguatge (=linguaggio) , viatjar (=viaggiare) , despatx (=ufficio) , puig (=collina) il digramma «ll» pronunciato (come «gli» nell'italiano meglio): lluna (=luna) , ballar (=danzare, ballare) , perill (=pericolo) il digramma «ny» pronunciato (come «gn» nell'italiano gnomo): any (=anno) , muntanya (=montagna) , puny (=pugno) il digramma «l·l» che in alcuni casi rappresenta (doppia L): col·legi (=collegio) . La pronunzia della "l" catalana è fortemente velarizzata, come la l scura inglese . plurali femminili in -es: les bones amigues (le buone amiche) plurali maschili in -s: els bons amics (i buoni amici) passato remoto composto: (jo) vaig cantar (=(io) cantai); mentre il passato remoto semplice continua invece a València: (jo) cantí l'uso di tre forme (base, debole, rinforzata) per ogni pronome personale oggetto: parlar-me (=parlarmi); parla'm (=parlami) / m'has parlat (=mi hai parlato); em parles (=mi parli) veient-
[ 11832, 24590, 1219, 594, 11545, 29882, 1489, 1146, 443, 17910, 1661, 3856, 12132, 1219, 652, 29116, 313, 29906, 29900, 29995, 2005, 25272, 3343, 23499, 1648, 15015, 980, 422, 1540, 29897, 321, 447, 577, 29888, 571, 517, 321, 577, 600, 276, 14718, 2005, 378, 2616, 1267, 1362, 3572, 29915, 2410, 3328, 29892, 14718, 29892, 297, 3984, 2002, 1375, 487, 29892, 652, 16189, 628, 269, 6491, 29892, 16850, 3357, 5530, 269, 510, 862, 4977, 1146, 11545, 29882, 1489, 29889, 306, 23241, 3270, 29892, 297, 27037, 29892, 24590, 1562, 980, 17246, 1562, 29914, 9564, 2276, 968, 321, 658, 26939, 3231, 260, 23208, 14472, 1757, 29877, 29892, 1661, 520, 1647, 454, 25676, 1230, 923, 425, 2169, 1421, 7745, 12163, 1056, 321, 980, 422, 1540, 652, 11545, 29882, 1489, 380, 7665, 13417, 29883, 2765, 263, 7149, 3100, 652, 17694, 831, 2590, 29872, 21110, 24504, 29889, 13, 13, 14126, 17246, 1562, 297, 13913, 29871, 13, 13, 14126, 17246, 1562, 2077, 24590, 1219, 297, 13913, 6651, 4952, 1072, 1421, 628, 13693, 335, 29880, 1421, 10897, 29892, 15015, 5857, 8494, 10233, 1418, 29875, 577, 3934, 21110, 391, 1654, 652, 7385, 12272, 650, 425, 4593, 7366, 316, 28215, 313, 29906, 29900, 29900, 29946, 511, 980, 18730, 2077, 12110, 425, 16850, 3357, 22159, 3673, 423, 321, 980, 17246, 1562, 831, 2590, 29872, 21110, 24504, 9461, 3673, 423, 29889, 1720, 17246, 1562, 29707, 29892, 3708, 3686, 2765, 419, 4569, 29877, 2959, 29871, 29953, 29945, 29892, 29941, 29995, 2005, 25272, 3343, 29892, 10755, 24590, 1219, 6651, 2959, 29871, 29941, 29955, 29892, 29896, 29995, 652, 3686, 29874, 313, 29872, 24048, 517, 2959, 29871, 29896, 29900, 29892, 29953, 28003, 951, 10151, 950, 29875, 22964, 4664, 21441, 9238, 8733, 2689, 409, 1354, 2050, 29874, 923, 10755, 24590, 1219, 2041, 7233, 16850, 3357, 2959, 29871, 29941, 29892, 29945, 29995, 3771, 20201, 29875, 313, 358, 276, 980, 29871, 29929, 29906, 29995, 447, 980, 18730, 2041, 7233, 16850, 3357, 29892, 301, 29915, 29896, 29995, 875, 2572, 915, 454, 16850, 434, 321, 980, 29871, 29941, 29892, 29945, 29995, 7987, 1178, 14910, 29875, 1661, 25907, 2219, 467, 13, 13, 29943, 265, 300, 983, 13, 13, 2928, 3518, 4246, 21221, 29871, 13, 3226, 3420, 2606, 20044, 29000, 10866, 300, 4070, 288, 20289, 2345, 4070, 5748, 29901, 13, 425, 11504, 28027, 652, 263, 1226, 321, 472, 650, 2041, 7931, 744, 11553, 336, 29871, 313, 655, 10099, 29915, 441, 5028, 325, 23677, 24048, 371, 263, 4575, 545, 321, 29892, 15015, 425, 11504, 28027, 4884, 1197, 3656, 17543, 2606, 29897, 13, 425, 11504, 28027, 652, 288, 472, 2681, 2041, 29871, 313, 655, 10755, 8759, 802, 24048, 941, 376, 29877, 613, 15015, 425, 11504, 28027, 4884, 1197, 3656, 17543, 2606, 29897, 13, 425, 2225, 5723, 652, 518, 29920, 29962, 313, 29879, 1487, 2207, 29897, 1006, 29894, 18642, 983, 29892, 1223, 2016, 297, 805, 4211, 3543, 29901, 10245, 29871, 13, 11113, 2028, 2005, 302, 10996, 3771, 2245, 29875, 321, 946, 657, 29873, 8107, 1809, 324, 1306, 29892, 378, 25586, 16138, 3572, 29915, 562, 1760, 29877, 12615, 7931, 744, 10996, 29901, 2117, 3943, 11070, 5030, 8929, 29961, 29877, 11724, 301, 5066, 29983, 11070, 5066, 262, 29961, 29877, 11724, 5537, 29983, 11070, 1403, 22878, 29961, 29877, 2314, 313, 655, 394, 715, 27730, 425, 376, 29876, 29908, 7252, 29901, 11934, 550, 29892, 301, 5066, 1144, 29892, 2992, 6250, 13, 425, 364, 10996, 1661, 10755, 11504, 11173, 532, 313, 655, 10755, 8759, 802, 24048, 941, 29892, 15015, 301, 29915, 10648, 17543, 744, 1125, 7542, 11070, 4161, 8854, 29897, 1919, 23729, 11070, 7241, 487, 29897, 1919, 7130, 11070, 558, 4200, 29897, 2056, 385, 279, 11070, 392, 598, 29897, 1919, 6013, 11070, 24658, 29897, 1919, 2656, 381, 11070, 375, 455, 276, 29897, 869, 13, 980, 480, 3231, 29871, 313, 2763, 376, 1557, 29908, 10099, 29915, 2410, 3328, 25995, 1512, 29897, 10755, 24449, 1219, 378, 454, 22956, 347, 859, 861, 30007, 321, 859, 29916, 30007, 29901, 5777, 19892, 11070, 29883, 24573, 29897, 1919, 921, 279, 17367, 11070, 276, 371, 29897, 29871, 13, 325, 23677, 502, 2219, 4825, 8156, 4697, 2572, 2460, 859, 29873, 29887, 29892, 260, 29926, 29892, 25568, 29892, 8919, 30007, 29901, 11148, 19636, 26775, 11070, 1847, 29884, 10044, 29897, 1919, 3516, 271, 4758, 11070, 1403, 351, 13723, 276, 29897, 1919, 553, 5031, 29916, 11070, 29884, 2416, 601, 29897, 1919, 2653, 335, 11070, 22017, 1099, 29897, 29871, 13, 980, 4697, 2572, 655, 859, 645, 30007, 11504, 11173, 1219, 29871, 313, 2763, 859, 29887, 492, 30007, 10099, 29915, 2410, 3328, 4508, 5991, 1125, 11148, 4347, 11070, 29880, 4347, 29897, 1919, 8287, 279, 11070, 29881, 4096, 598, 29892, 6411, 8663, 29897, 1919, 639, 453, 11070, 546, 293, 3543, 29897, 29871, 13, 980, 4697, 2572, 655, 859, 1460, 30007, 11504, 11173, 1219, 29871, 313, 2763, 859, 5138, 30007, 10099, 29915, 2410, 3328, 330, 29876, 10730, 1125, 738, 11070, 7665, 29897, 1919, 286, 1657, 20912, 11070, 14132, 15713, 29897, 1919, 6035, 29891, 11070, 29886, 15961, 29897, 29871, 13, 980, 4697, 2572, 655, 859, 29880, 30064, 29880, 30007, 923, 297, 19344, 22682, 20823, 6381, 29871, 313, 1867, 407, 423, 365, 1125, 784, 30064, 1397, 29875, 11070, 1054, 1397, 601, 29897, 869, 997, 11504, 348, 19822, 2005, 376, 29880, 29908, 17246, 1648, 2077, 5162, 9936, 5343, 279, 24558, 29892, 2041, 425, 301, 885, 2002, 27377, 869, 13, 715, 332, 2606, 4445, 1195, 2638, 297, 448, 267, 29901, 966, 289, 2873, 626, 335, 1041, 313, 280, 1321, 650, 626, 4070, 29897, 13, 715, 332, 2606, 5516, 305, 2638, 297, 448, 29879, 29901, 4728, 289, 787, 626, 1199, 29871, 313, 29875, 1321, 5271, 626, 1654, 29897, 13, 1209, 1219, 1083, 3747, 752, 5548, 29901, 29871, 313, 2212, 29897, 2947, 335, 5107, 279, 29871, 313, 7607, 601, 29897, 5107, 1794, 416, 11552, 980, 1209, 1219, 1083, 3747, 3031, 29886, 5897, 3133, 29874, 24248, 263, 2630, 12890, 29901, 313, 2212, 29897, 5107, 29983, 13, 301, 29915, 10648, 652, 2578, 13618, 313, 3188, 29892, 316, 833, 280, 29892, 29053, 1454, 29920, 532, 29897, 639, 18579, 11504, 608, 2022, 744, 3671, 657, 517, 29901, 13, 610, 4675, 29899, 1004, 11070, 862, 4675, 2460, 416, 610, 433, 29915, 29885, 11070, 862, 29880, 4479, 29897, 847, 286, 29915, 5349, 610, 5066, 11070, 2460, 447, 29875, 24590, 1219, 416, 953, 610, 793, 11070, 2460, 610, 492, 29897, 13, 2453, 993, 29899 ]
1,024
Wikipedia
-0.523979
-0.288114
-1.306245
-0.898513
lo (=vedendolo); l'he vist (=l'ho visto); el veig (=lo vedo) pronome personale neutro ho: veient-lo (=vedendolo, lui) ma veient-ho (=vedendolo, ciò); No ho sé (=non lo so) Altre caratteristiche sono la mancanza di molti vocaboli arabi (presenti in spagnolo) e la sopravvivenza invece di molte parole collegate col francese, con l'occitano (notevoli in questo caso i verbi in -c alla prima persona del presente: crec "credo", dec "devo", dic "dico", puc "posso", vinc "vengo", entenc "intendo"...) e, in minor misura, con l'italiano (dati gli stretti rapporti esistenti, in età basso-medievale, con gli stati italiani dell'epoca). La lingua più vicina al catalano è l'occitano. Seguono l'italiano e il francese antico (lingua d'oïl). Alcune varianti (più dialetti in catalano antico), quali il balearico o il dialetto locale di Cadaqués, usano gli articoli es/so/sa derivati dal latino "ipsu(m)"/"ipsa(m)", proprio come avviene per il sardo: es cotxe (=il veicolo / l'auto), amb so cotxe (=col veicolo / l'auto), sa muntanya (=la montagna). Il resto usa "lo" o "el". Pronuncia puntuale del catalano base La tabella indicante la pronuncia puntuale e completa del catalano si basa sulla varietà più prestigiosa, quella di Valencia, che non ha riduzioni di vocali non accentate. A questo si aggiunge che esistono più varietà di catalano, con differenze abbastanza marginali perlopiù in pronuncia e vocabolario (catalano valenciano, balearico, barcellonese/di Catalogna, andorrano, rossellonese/francese e algherese. Il catalano si parla infatti pure nel Principato di Andorra, a Rossiglione in Francia, Alghero in Sardegna e nella Franja, cioè una striscia di territorio di Aragona che confina con la Catalogna). Gran parte delle zone geografiche in cui si parla catalano sono perlopiù zone costiere o vicine alla costa del Mar Mediterraneo o isole. Ogni macro-varietà di catalano ha poi le sue sotto-varietà. Nella tabella sono indicate alcune caratteristiche del catalagno di Catalogna, cioè parlato a Barcellona, Gerona e zone simili. La sua caratteristica può evidente è la riduzione vocalica nelle vocali non aventi l'accento tonico e ortografico. Varietà del catalano Il catalano si suddivide in due grandi gruppi dialettali: orientale e occidentale; tale suddivisione si basa principalmente sulla riduzione o meno delle vocali atone [a], [e] i [e] a vocal neutra [a] e nella chiusura o meno delle vocali atone [o] e [d] in [u]. Numero di parlanti il catalano nel mondo (2004) Territori dove è lingua ufficiale Territori dove il catalano non è lingua ufficiale Totale Conoscenza del catalano (cens. 2003-2004) (% popolazione sopra i 15 anni). Esempi Grammatica catalana Frasi esempio Catalano: Català Ciao: Ei , Ep Arrivederci: adéu (sing.); adéu-siau (pl.); a reveure Per favore: si us plau Grazie: gràcies ; mercès Mi scusi: perdó , Em sap greu Questo: aquest (masc.); aquesta (fem.) Quanto?: quant ; Quanto costa?: quant (és/val/costa)? Sì: sí No: no Non
[ 417, 11070, 1490, 355, 3543, 416, 301, 29915, 354, 325, 391, 11070, 29880, 29915, 1251, 29025, 416, 560, 2453, 335, 11070, 417, 11016, 29877, 29897, 13, 11504, 608, 2022, 744, 11553, 307, 5089, 29901, 13, 2453, 993, 29899, 417, 11070, 1490, 355, 3543, 29892, 3911, 29897, 611, 2453, 993, 29899, 1251, 11070, 1490, 355, 3543, 29892, 4583, 30059, 416, 1939, 5089, 7019, 11070, 5464, 658, 577, 29897, 13, 13, 29909, 18591, 20044, 29000, 5748, 425, 767, 3068, 1362, 652, 28248, 7931, 370, 5079, 25352, 29875, 313, 6338, 29875, 297, 805, 4211, 3543, 29897, 321, 425, 12103, 5705, 29894, 5428, 1362, 24248, 652, 6062, 371, 610, 1772, 784, 6045, 784, 18730, 29892, 378, 301, 29915, 15693, 277, 1562, 313, 6812, 1555, 29875, 297, 11352, 11986, 474, 1147, 5365, 297, 448, 29883, 4082, 7233, 21411, 628, 20753, 29901, 907, 29883, 376, 1037, 1867, 613, 1602, 376, 311, 1365, 613, 12124, 376, 29881, 1417, 613, 282, 1682, 376, 1066, 578, 613, 325, 3742, 376, 854, 1484, 613, 875, 3977, 376, 28481, 29908, 11410, 321, 29892, 297, 9461, 3984, 2002, 29892, 378, 301, 29915, 2410, 3328, 313, 29881, 2219, 5857, 12243, 698, 29875, 13659, 29875, 831, 391, 7268, 29892, 297, 634, 30001, 289, 9979, 29899, 2168, 10384, 744, 29892, 378, 5857, 23436, 4698, 11727, 3572, 29915, 1022, 6400, 467, 997, 16850, 3357, 5187, 9467, 1099, 394, 17246, 1562, 2077, 301, 29915, 15693, 277, 1562, 29889, 6667, 29884, 3231, 301, 29915, 2410, 3328, 321, 980, 18730, 3677, 1417, 313, 1847, 3357, 270, 29915, 29877, 30085, 29880, 467, 13, 13, 2499, 29883, 1540, 1197, 3656, 313, 1631, 30071, 270, 4379, 698, 29875, 297, 17246, 1562, 3677, 1417, 511, 18661, 980, 289, 744, 279, 1417, 288, 980, 9766, 1026, 517, 15068, 652, 315, 1114, 339, 743, 29892, 502, 1562, 5857, 1616, 293, 5079, 831, 29914, 578, 29914, 4977, 7750, 2219, 2959, 3405, 1789, 376, 4512, 29884, 29898, 29885, 5513, 12975, 4512, 29874, 29898, 29885, 19123, 22278, 2041, 1029, 29894, 3530, 639, 980, 269, 6491, 29901, 831, 20118, 17115, 11070, 309, 2453, 293, 3543, 847, 301, 29915, 6921, 511, 3181, 577, 20118, 17115, 11070, 1054, 2453, 293, 3543, 847, 301, 29915, 6921, 511, 872, 286, 1657, 20912, 11070, 433, 7629, 15713, 467, 1720, 25814, 502, 29874, 376, 417, 29908, 288, 376, 295, 1642, 13, 13, 29925, 1617, 28027, 282, 4159, 744, 628, 17246, 1562, 2967, 29871, 13, 5661, 260, 1107, 433, 4221, 1647, 425, 11504, 28027, 282, 4159, 744, 321, 1614, 941, 628, 17246, 1562, 1354, 2362, 29874, 12615, 1197, 12582, 5187, 544, 5286, 2363, 29874, 29892, 16189, 652, 2630, 5760, 29892, 923, 1661, 447, 8177, 3365, 3688, 652, 7931, 2606, 1661, 1035, 296, 403, 29889, 319, 11352, 1354, 25586, 19440, 923, 831, 391, 3231, 5187, 1197, 12582, 652, 17246, 1562, 29892, 378, 1163, 13233, 22195, 579, 8520, 15276, 979, 29875, 639, 417, 1631, 30071, 297, 11504, 28027, 321, 7931, 19388, 2628, 313, 16431, 1562, 659, 13640, 1562, 29892, 289, 744, 279, 1417, 29892, 2594, 3729, 265, 968, 29914, 6051, 5725, 1056, 29892, 322, 272, 12776, 29892, 696, 893, 514, 265, 968, 29914, 16799, 778, 29872, 321, 3093, 2276, 968, 29889, 1720, 17246, 1562, 1354, 610, 433, 29707, 8296, 2032, 14771, 29886, 1219, 652, 1126, 272, 336, 29892, 263, 13693, 335, 29880, 1421, 297, 13913, 29892, 11545, 29882, 1489, 297, 7745, 12163, 1056, 321, 4952, 1352, 1764, 29892, 274, 601, 30000, 1185, 851, 275, 1512, 652, 19808, 652, 24350, 2681, 923, 1970, 1099, 378, 425, 5725, 1056, 467, 6274, 3810, 4884, 10640, 1737, 2345, 4070, 297, 7385, 1354, 610, 433, 17246, 1562, 5748, 639, 417, 1631, 30071, 10640, 3438, 10883, 288, 9467, 457, 4082, 26303, 628, 1085, 25620, 10800, 29877, 288, 338, 1772, 29889, 20807, 1240, 11758, 29899, 5927, 12582, 652, 17246, 1562, 447, 11899, 454, 12991, 17217, 29899, 5927, 12582, 29889, 24390, 260, 1107, 433, 5748, 12266, 26591, 20044, 29000, 628, 17246, 351, 1217, 652, 5725, 1056, 29892, 274, 601, 30000, 24590, 1219, 263, 2261, 3729, 2681, 29892, 5681, 2681, 321, 10640, 1027, 2638, 29889, 997, 4171, 20044, 24504, 17356, 13602, 29872, 2077, 425, 8177, 14285, 20982, 983, 12447, 7931, 2606, 1661, 263, 794, 29875, 301, 29915, 562, 1760, 29877, 15243, 1417, 321, 20289, 2345, 1417, 29889, 13, 13, 10444, 12582, 628, 17246, 1562, 29871, 13, 14126, 17246, 1562, 1354, 480, 1289, 440, 680, 297, 2861, 4595, 29875, 4500, 19788, 270, 4379, 698, 2606, 29901, 7769, 744, 321, 17543, 744, 29936, 17694, 480, 1289, 440, 275, 1421, 1354, 2362, 29874, 21995, 12615, 8177, 14285, 288, 1757, 29877, 4884, 7931, 2606, 472, 650, 518, 29874, 1402, 518, 29872, 29962, 474, 518, 29872, 29962, 263, 20982, 11553, 336, 518, 29874, 29962, 321, 4952, 521, 2482, 2002, 288, 1757, 29877, 4884, 7931, 2606, 472, 650, 518, 29877, 29962, 321, 518, 29881, 29962, 297, 518, 29884, 1822, 13, 13, 8009, 1489, 652, 24590, 3656, 980, 17246, 1562, 2032, 18629, 313, 29906, 29900, 29900, 29946, 29897, 13, 13, 29911, 261, 768, 4170, 10897, 2077, 16850, 3357, 16421, 13, 13, 29911, 261, 768, 4170, 10897, 980, 17246, 1562, 1661, 2077, 16850, 3357, 16421, 13, 13, 29911, 327, 744, 13, 13, 1168, 14174, 5723, 628, 17246, 1562, 313, 29883, 575, 29889, 29871, 29906, 29900, 29900, 29941, 29899, 29906, 29900, 29900, 29946, 29897, 29871, 13, 13, 29414, 25272, 3343, 12103, 336, 474, 29871, 29896, 29945, 6957, 467, 13, 13, 29923, 12846, 1631, 13, 13, 29954, 2572, 2922, 983, 17246, 1648, 13, 13, 29943, 3417, 29875, 29775, 29871, 13, 11732, 1562, 29901, 11732, 30001, 29871, 13, 315, 29653, 29901, 382, 29875, 1919, 14055, 29871, 13, 826, 1150, 2447, 455, 29901, 594, 29948, 29884, 29871, 313, 2976, 29889, 416, 594, 29948, 29884, 29899, 29879, 423, 29884, 29871, 313, 572, 29889, 416, 263, 10320, 545, 29871, 13, 2431, 5025, 487, 29901, 1354, 502, 2174, 29884, 29871, 13, 4989, 3914, 29901, 867, 30001, 2478, 2056, 16856, 2093, 29871, 13, 5493, 885, 375, 29875, 29901, 11113, 29980, 1919, 2812, 21672, 1395, 29884, 29871, 13, 751, 4778, 29901, 14038, 29871, 313, 29885, 6151, 29889, 416, 14038, 29874, 29871, 313, 29888, 331, 1846, 13, 751, 5361, 25825, 4323, 2056, 751, 5361, 26303, 25825, 4323, 313, 743, 29914, 791, 29914, 29883, 16233, 6877, 29871, 13, 317, 30097, 29901, 16296, 29871, 13, 1939, 29901, 694, 29871, 13, 10050 ]
1,024
Wikipedia
-0.696173
-0.286816
-1.333144
-0.791334
Weight loss surgery gives chef Graham Elliot new perspective on food Written By John Easton Chef Graham Elliot before and after weight loss surgery More than one third of Graham Elliot—the nationally known chef and judge on the Fox Network's popular competitive-cooking show, "MasterChef"—has gone missing. People become chefs because they appreciate food. Elliot's appreciation, and his waistline, kept pace with his culinary reputation. He joked that "no one trusts a skinny chef." By 2013, however, his trustworthiness had grown a little too apparent. No one would accuse him of skinniness. He weighed almost 400 pounds. The weight brought health problems. He had inherited a family history of heart attacks and strokes. The excess weight piled on new issues. "I was suffering from hypertension, sleep apnea, gout, constant aches and pains," Elliot said. "I was physically unable to do things a father, husband and parent should be able to do. I was headed for disaster if I didn't make tough decisions, take drastic measures." Most frustrating for him was his inability to run and play sports with his three young sons (ages 7, 3, and 18 months). After years of testing various standard and imaginative diets, working with a dozen personal trainers and joining multiple gyms, he knew he had to make a change. Making the commitment Elliot, 37, had considered weight loss surgery, but was hesitant to take the next step. He asked a friend, fellow Chicago chef Grant Achatz, who spoke highly of his care at the University of Chicago Medicine. "So that was where I focused," Elliot said. We had exhausted all options — Graham Elliott's wife, Allie Elliott. At his initial appointment he met Vivek Prachand, MD, an expert in minimally invasive abdominal surgery. "We immediately connected," Elliot said. "He totally understood my unique situation as a chef who happens to be on a food-related TV show. I was worried about not being able to do either, so Dr. Prachand being a foodie was definitely a bonus." Graham Elliot's weight loss surgery After an extensive multidisciplinary evaluation, followed by a series of discussions and counseling, Elliot underwent bariatric surgery on July 16, 2013. The changes have been remarkable. Before surgery, Elliot could barely run. It was difficult for him to get in or out of a car, tie his shoes or play with his kids. He would have had trouble walking a mile, had he tried. Four months after his operation, he was able to finish a five-kilometer race, the Ditka Dash. He covered the 3.1-mile course in less than 35 minutes, averaging a respectable 11 minutes per mile, all while wearing a fake Mike Ditka mustache. "Running that first 5K was awesome," Elliot said. "Allie was right there beside me, my nurse and cheerleader." A month later, Elliot no longer required a machine to keep his airway open while he slept. And six months after his surgery, his weight had dropped from 396 to less than 250 pounds, his blood pressure was nearly normal and his cholesterol levels had radically improved. Learn more about medically supervised weight loss options "I thought it would take two or three years to do this," he told a reporter from People Magazine. He expected to lose just 60 or 70 pounds the first year. Losing up to 100 pounds would be more typical, according to Prachand, associate professor of surgery, director of minimally invasive surgery, and surgery quality chief at the University of Chicago Medicine. But Elliot was not typical. He did his research, Prachand said. He knew all of his options. He has his family to support and motivate him and he has been "absolutely committed to making the necessary lifestyle modifications that allow his procedure to work most effectively." There are several surgical options for obese patients; the University of Chicago team has significant experience with all of them. "I've done more than 1,000 minimally invasive weight loss operations and each case is different," Prachand said. Our team does a phenomenal job of educating patients. But our patients
[ 1334, 523, 6410, 25300, 708, 4076, 14547, 22196, 26656, 327, 716, 18520, 373, 9687, 13, 29956, 20833, 2648, 2259, 6932, 265, 13, 26856, 29888, 22196, 26656, 327, 1434, 322, 1156, 7688, 6410, 25300, 708, 13, 20761, 1135, 697, 4654, 310, 22196, 26656, 327, 30003, 1552, 5233, 635, 2998, 14547, 322, 16833, 373, 278, 14802, 8527, 29915, 29879, 5972, 5100, 3321, 29899, 15108, 292, 1510, 29892, 376, 19203, 26856, 29888, 29908, 30003, 5349, 7695, 4567, 29889, 13, 15666, 1991, 4953, 923, 5847, 1363, 896, 11188, 9687, 29889, 26656, 327, 29915, 29879, 5108, 362, 29892, 322, 670, 11324, 391, 1220, 29892, 8126, 27725, 411, 670, 13949, 3821, 19821, 29889, 940, 432, 12504, 393, 376, 1217, 697, 9311, 29879, 263, 19309, 1460, 14547, 1213, 2648, 29871, 29906, 29900, 29896, 29941, 29892, 3138, 29892, 670, 9311, 12554, 3335, 750, 21633, 263, 2217, 2086, 20295, 29889, 1939, 697, 723, 1035, 1509, 1075, 310, 2071, 2559, 3335, 29889, 940, 591, 25398, 4359, 29871, 29946, 29900, 29900, 24261, 29889, 13, 1576, 7688, 6296, 9045, 4828, 29889, 940, 750, 23878, 263, 3942, 4955, 310, 5192, 16661, 322, 23351, 10794, 29889, 450, 19163, 7688, 282, 2356, 373, 716, 5626, 29889, 13, 29908, 29902, 471, 23164, 515, 7498, 10700, 2673, 29892, 8709, 3095, 14011, 29892, 330, 449, 29892, 4868, 3657, 267, 322, 282, 2708, 1699, 26656, 327, 1497, 29889, 376, 29902, 471, 4824, 1711, 9368, 304, 437, 2712, 263, 4783, 29892, 10216, 322, 3847, 881, 367, 2221, 304, 437, 29889, 306, 471, 2343, 287, 363, 766, 1901, 565, 306, 3282, 29915, 29873, 1207, 260, 820, 1602, 12112, 29892, 2125, 4192, 6288, 15366, 1213, 13, 29924, 520, 1424, 4627, 1218, 363, 1075, 471, 670, 297, 3097, 304, 1065, 322, 1708, 14717, 411, 670, 2211, 4123, 18025, 313, 1179, 29871, 29955, 29892, 29871, 29941, 29892, 322, 29871, 29896, 29947, 7378, 467, 2860, 2440, 310, 6724, 5164, 3918, 322, 6382, 262, 1230, 652, 1691, 29892, 1985, 411, 263, 24231, 7333, 7945, 414, 322, 22960, 2999, 330, 962, 29879, 29892, 540, 6363, 540, 750, 304, 1207, 263, 1735, 29889, 13, 29924, 5086, 278, 9063, 358, 13, 6489, 492, 327, 29892, 29871, 29941, 29955, 29892, 750, 5545, 7688, 6410, 25300, 708, 29892, 541, 471, 19066, 277, 424, 304, 2125, 278, 2446, 4331, 29889, 940, 4433, 263, 5121, 29892, 10404, 10059, 14547, 18102, 15542, 4101, 29892, 1058, 12707, 10712, 310, 670, 2562, 472, 278, 3014, 310, 10059, 27529, 29889, 376, 6295, 393, 471, 988, 306, 21309, 1699, 26656, 327, 1497, 29889, 13, 4806, 750, 18782, 16656, 599, 3987, 813, 22196, 26656, 1501, 29915, 29879, 6532, 29892, 2178, 347, 26656, 1501, 29889, 13, 4178, 670, 2847, 28573, 540, 1539, 478, 573, 29895, 9002, 305, 392, 29892, 20672, 29892, 385, 17924, 297, 6260, 635, 29688, 573, 633, 3129, 979, 25300, 708, 29889, 376, 4806, 7389, 6631, 1699, 26656, 327, 1497, 29889, 376, 3868, 14909, 11098, 590, 5412, 6434, 408, 263, 14547, 1058, 5930, 304, 367, 373, 263, 9687, 29899, 12817, 5648, 1510, 29889, 306, 471, 6365, 1255, 1048, 451, 1641, 2221, 304, 437, 2845, 29892, 577, 4942, 29889, 9002, 305, 392, 1641, 263, 9687, 347, 471, 11630, 263, 28920, 1213, 13, 29954, 22084, 26656, 327, 29915, 29879, 7688, 6410, 25300, 708, 13, 13555, 385, 20607, 1773, 333, 275, 13326, 3821, 17983, 29892, 5643, 491, 263, 3652, 310, 5353, 1080, 322, 2613, 2838, 292, 29892, 26656, 327, 1090, 29893, 296, 289, 29294, 2200, 25300, 708, 373, 5468, 29871, 29896, 29953, 29892, 29871, 29906, 29900, 29896, 29941, 29889, 13, 1576, 3620, 505, 1063, 22567, 29889, 10949, 25300, 708, 29892, 26656, 327, 1033, 16079, 368, 1065, 29889, 739, 471, 5189, 363, 1075, 304, 679, 297, 470, 714, 310, 263, 1559, 29892, 22134, 670, 17394, 267, 470, 1708, 411, 670, 413, 4841, 29889, 940, 723, 505, 750, 7458, 22049, 263, 17967, 29892, 750, 540, 1898, 29889, 12458, 7378, 1156, 670, 5858, 29892, 540, 471, 2221, 304, 8341, 263, 5320, 29899, 16757, 8328, 8175, 29892, 278, 18978, 1335, 360, 1161, 29889, 940, 10664, 278, 29871, 29941, 29889, 29896, 29899, 26763, 3236, 297, 3109, 1135, 29871, 29941, 29945, 6233, 29892, 4759, 6751, 263, 3390, 519, 29871, 29896, 29896, 6233, 639, 17967, 29892, 599, 1550, 591, 4362, 263, 25713, 12828, 18978, 1335, 1818, 1829, 29889, 13, 29908, 27795, 393, 937, 29871, 29945, 29968, 471, 29663, 1699, 26656, 327, 1497, 29889, 376, 3596, 347, 471, 1492, 727, 17620, 592, 29892, 590, 5595, 344, 322, 22794, 280, 1664, 1213, 13, 29909, 4098, 2678, 29892, 26656, 327, 694, 5520, 3734, 263, 4933, 304, 3013, 670, 4799, 1582, 1722, 1550, 540, 12844, 415, 29889, 1126, 4832, 7378, 1156, 670, 25300, 708, 29892, 670, 7688, 750, 13700, 515, 29871, 29941, 29929, 29953, 304, 3109, 1135, 29871, 29906, 29945, 29900, 24261, 29892, 670, 10416, 12959, 471, 8886, 4226, 322, 670, 521, 324, 4156, 324, 11174, 750, 2971, 1711, 16710, 29889, 13, 29931, 799, 29876, 901, 1048, 1612, 1711, 2428, 11292, 7688, 6410, 3987, 13, 29908, 29902, 2714, 372, 723, 2125, 1023, 470, 2211, 2440, 304, 437, 445, 1699, 540, 5429, 263, 1634, 9555, 515, 11647, 17880, 29889, 940, 3806, 304, 14074, 925, 29871, 29953, 29900, 470, 29871, 29955, 29900, 24261, 278, 937, 1629, 29889, 4602, 292, 701, 304, 29871, 29896, 29900, 29900, 24261, 723, 367, 901, 15662, 29892, 5034, 304, 9002, 305, 392, 29892, 25836, 12251, 310, 25300, 708, 29892, 8881, 310, 6260, 635, 29688, 573, 25300, 708, 29892, 322, 25300, 708, 11029, 9087, 472, 278, 3014, 310, 10059, 27529, 29889, 1205, 26656, 327, 471, 451, 15662, 29889, 13, 3868, 1258, 670, 5925, 29892, 9002, 305, 392, 1497, 29889, 940, 6363, 599, 310, 670, 3987, 29889, 940, 756, 670, 3942, 304, 2304, 322, 17385, 403, 1075, 322, 540, 756, 1063, 376, 370, 2929, 11579, 19355, 304, 3907, 278, 5181, 301, 7004, 1508, 26278, 393, 2758, 670, 8792, 304, 664, 1556, 17583, 1213, 13, 8439, 526, 3196, 25300, 936, 3987, 363, 704, 968, 22069, 29936, 278, 3014, 310, 10059, 3815, 756, 7282, 7271, 411, 599, 310, 963, 29889, 376, 29902, 29915, 345, 2309, 901, 1135, 29871, 29896, 29892, 29900, 29900, 29900, 6260, 635, 29688, 573, 7688, 6410, 6931, 322, 1269, 1206, 338, 1422, 1699, 9002, 305, 392, 1497, 29889, 13, 29949, 332, 3815, 947, 263, 27791, 284, 4982, 310, 6320, 1218, 22069, 29889, 1205, 1749, 22069 ]
1,024
CommonCrawl
0.997915
-0.117455
0.601744
1.012914
also have to educate us as to what they want to accomplish and what they anticipate. It's truly a collaborative process. When Elliot first came to the clinic, he saw himself as a candidate for a duodenal switch (DS), a procedure that combines a gastric sleeve with a realignment of the digestive tract that helps patients limit their food intake and decreases calorie absorption. "The duodenal switch is generally the best option for patients with a body-mass index of 50 or more plus metabolic problems associated with severe obesity," Prachand said. "Graham technically fit those criteria, but as with all of our patients, we had to carefully consider his circumstances, particularly as they related to his career." Duodenal switch patients lose some of their capacity to process and absorb dietary fats. Even small servings of fatty foods can trigger cramps, bloating, and other intestinal distress. "Obviously this could interfere with his role as a chef and as a judge of dishes created by contestants on Master Chef," Prachand said. Multiple small tastings is central to Elliot's work. So Prachand suggested a less extensive operation, called the gastric sleeve, which is one component of the DS. A gastric sleeve makes the stomach about 80 percent smaller, the size and shape of a small banana, but it doesn't interfere with nutrient uptake or digestion. "It was a reasonable way to start," Prachand said "If it wasn't sufficient by itself; we could follow it with the rest of the DS at a later time." "Fortunately, Elliot turned out to be an optimal patient," Prachand said. Surgery went smoothly. Elliot recovered quickly and has since been a role model for healthy eating and exercise. Once a patient commits to surgery and is encouraged by their initial progress, they find it much easier to engage in long-overdue lifestyle changes, Prachand said. Elliot began exercising at least every other day, including longer and longer runs. Learn more about the different types of bariatric surgery "The key is for movement and exercise to become an inherent and enjoyable part of what we do in our everyday lives, not a set-aside item that is 'nice to do'," Prachand said. Changing eating behavior Elliot has changed the way he eats at home and on the job. No more late-night burgers and Cheez-Its. Now it's salmon or chicken, with salad or vegetables. "I miss ice cream," he admits, but his desserts are more likely to include fruit with cottage cheese, or apple slices dipped in peanut butter. "I now look at food as fuel and focus on my protein intake," he said. "I'm in love with 'pure' flavors, things that are natural and delicious, minimally fussed with, that showcase the season. I combine that with portion control." His dressing room on the "MasterChef" set is stocked with almonds and dried fruit. People Magazine published a portrait of Elliot's refrigerator, filled with fat-free yogurts, granola, fruits and vegetables, as well as almond and pumpkin butters and a jar of mayonnaise. A messy ketchup bottle gave the scene some credibility. He has eliminated almost all bread, pasta, soda and beer, but he still has a sweet tooth. He keeps bananas in the fridge, to remind him, in difficult moments, just how small his stomach has become. His BMI is down to the 27-29 range, overweight but not obese, and still falling. "When you start out above 50," Prachand said, "29 is fantastic." "We want patients to lose fat and preserve muscle, bone and other lean body mass," Prachand explained. "Health isn't just about weight or BMI. It's also about what your body is capable of at the new weight." Elliot can now do push-ups and even a few pull-ups. He has increased his cardiovascular endurance and intensity. "I try not to give weight loss patients precise goals like a certain weight or a specific BMI," Prachand said. "If
[ 884, 505, 304, 6320, 403, 502, 408, 304, 825, 896, 864, 304, 12709, 322, 825, 896, 23483, 403, 29889, 739, 29915, 29879, 19781, 263, 11465, 1230, 1889, 29889, 13, 10401, 26656, 327, 937, 2996, 304, 278, 24899, 293, 29892, 540, 4446, 3654, 408, 263, 14020, 363, 263, 868, 13183, 284, 4607, 313, 8452, 511, 263, 8792, 393, 4145, 1475, 263, 330, 7614, 293, 12844, 29872, 345, 411, 263, 1855, 10194, 310, 278, 4697, 342, 573, 22330, 393, 6911, 22069, 4046, 1009, 9687, 938, 1296, 322, 9263, 2129, 1208, 7661, 17977, 683, 29889, 13, 29908, 1576, 868, 13183, 284, 4607, 338, 6892, 278, 1900, 2984, 363, 22069, 411, 263, 3573, 29899, 25379, 2380, 310, 29871, 29945, 29900, 470, 901, 2298, 1539, 19388, 293, 4828, 6942, 411, 22261, 704, 267, 537, 1699, 9002, 305, 392, 1497, 29889, 376, 29954, 22084, 5722, 1711, 6216, 1906, 16614, 29892, 541, 408, 411, 599, 310, 1749, 22069, 29892, 591, 750, 304, 16112, 2050, 670, 14209, 29892, 10734, 408, 896, 4475, 304, 670, 6413, 1213, 13, 29928, 29884, 13183, 284, 4607, 22069, 14074, 777, 310, 1009, 13284, 304, 1889, 322, 6425, 11831, 652, 300, 653, 285, 1446, 29889, 7753, 2319, 3348, 886, 310, 9950, 1017, 9687, 29879, 508, 7135, 2181, 15092, 29892, 6668, 1218, 29892, 322, 916, 938, 342, 979, 1320, 1253, 29889, 13, 29908, 6039, 16604, 445, 1033, 1006, 29888, 406, 411, 670, 6297, 408, 263, 14547, 322, 408, 263, 16833, 310, 270, 17006, 2825, 491, 17793, 1934, 373, 9082, 6561, 29888, 1699, 9002, 305, 392, 1497, 29889, 26905, 2319, 260, 579, 886, 338, 6555, 304, 26656, 327, 29915, 29879, 664, 29889, 13, 6295, 9002, 305, 392, 7829, 263, 3109, 20607, 5858, 29892, 2000, 278, 330, 7614, 293, 12844, 29872, 345, 29892, 607, 338, 697, 4163, 310, 278, 360, 29903, 29889, 319, 330, 7614, 293, 12844, 29872, 345, 3732, 278, 380, 290, 496, 1048, 29871, 29947, 29900, 10151, 7968, 29892, 278, 2159, 322, 8267, 310, 263, 2319, 9892, 1648, 29892, 541, 372, 1838, 29915, 29873, 1006, 29888, 406, 411, 18254, 374, 296, 318, 415, 1296, 470, 4697, 602, 29889, 13, 29908, 3112, 471, 263, 15590, 982, 304, 1369, 1699, 9002, 305, 392, 1497, 376, 3644, 372, 9007, 29915, 29873, 8002, 491, 3528, 29936, 591, 1033, 1101, 372, 411, 278, 1791, 310, 278, 360, 29903, 472, 263, 2678, 931, 1213, 13, 29908, 29943, 441, 348, 2486, 29892, 26656, 327, 6077, 714, 304, 367, 385, 14413, 16500, 1699, 9002, 305, 392, 1497, 29889, 317, 2007, 708, 3512, 10597, 368, 29889, 26656, 327, 24776, 9098, 322, 756, 1951, 1063, 263, 6297, 1904, 363, 9045, 29891, 321, 1218, 322, 15058, 29889, 13, 26222, 263, 16500, 25741, 304, 25300, 708, 322, 338, 18443, 287, 491, 1009, 2847, 6728, 29892, 896, 1284, 372, 1568, 6775, 304, 3033, 482, 297, 1472, 29899, 957, 29123, 301, 7004, 1508, 3620, 29892, 9002, 305, 392, 1497, 29889, 26656, 327, 4689, 24472, 3476, 292, 472, 3203, 1432, 916, 2462, 29892, 3704, 5520, 322, 5520, 6057, 29889, 13, 29931, 799, 29876, 901, 1048, 278, 1422, 4072, 310, 289, 29294, 2200, 25300, 708, 13, 29908, 1576, 1820, 338, 363, 10298, 322, 15058, 304, 4953, 385, 7846, 296, 322, 13389, 519, 760, 310, 825, 591, 437, 297, 1749, 1432, 3250, 12080, 29892, 451, 263, 731, 29899, 294, 680, 2944, 393, 338, 525, 16533, 304, 437, 742, 29908, 9002, 305, 392, 1497, 29889, 13, 1451, 9776, 321, 1218, 6030, 13, 6489, 492, 327, 756, 3939, 278, 982, 540, 321, 1446, 472, 3271, 322, 373, 278, 4982, 29889, 1939, 901, 5683, 29899, 11147, 26072, 414, 322, 6561, 6096, 29899, 29902, 1372, 29889, 2567, 372, 29915, 29879, 4497, 3712, 470, 521, 21475, 29892, 411, 4497, 328, 470, 18655, 1849, 29889, 376, 29902, 3052, 14890, 907, 314, 1699, 540, 7336, 1169, 29892, 541, 670, 6808, 814, 29879, 526, 901, 5517, 304, 3160, 15774, 411, 274, 1501, 482, 923, 968, 29892, 470, 26163, 269, 29399, 652, 2986, 297, 1236, 273, 329, 541, 357, 29889, 13, 29908, 29902, 1286, 1106, 472, 9687, 408, 26413, 322, 8569, 373, 590, 26823, 938, 1296, 1699, 540, 1497, 29889, 376, 29902, 29915, 29885, 297, 5360, 411, 525, 29886, 545, 29915, 21054, 943, 29892, 2712, 393, 526, 5613, 322, 628, 14803, 29892, 6260, 635, 285, 1558, 287, 411, 29892, 393, 1510, 4878, 278, 4259, 29889, 306, 14405, 393, 411, 11910, 2761, 1213, 13, 29950, 275, 10714, 292, 5716, 373, 278, 376, 19203, 26856, 29888, 29908, 731, 338, 10961, 287, 411, 394, 8315, 29879, 322, 270, 1255, 15774, 29889, 11647, 17880, 6369, 263, 21760, 310, 26656, 327, 29915, 29879, 337, 1341, 4087, 1061, 29892, 10423, 411, 9950, 29899, 9021, 343, 468, 332, 1372, 29892, 3803, 2963, 29892, 285, 21211, 322, 18655, 1849, 29892, 408, 1532, 408, 394, 8315, 322, 282, 3427, 9089, 541, 2153, 322, 263, 14631, 310, 1122, 11586, 895, 29889, 319, 4473, 29891, 413, 3486, 786, 18046, 280, 4846, 278, 9088, 777, 6625, 4127, 29889, 13, 3868, 756, 10397, 630, 4359, 599, 18423, 29892, 4940, 29874, 29892, 269, 8887, 322, 367, 261, 29892, 541, 540, 1603, 756, 263, 14225, 304, 720, 29889, 940, 14874, 9892, 16397, 297, 278, 1424, 5525, 29892, 304, 1083, 513, 1075, 29892, 297, 5189, 19462, 29892, 925, 920, 2319, 670, 380, 290, 496, 756, 4953, 29889, 13, 29950, 275, 350, 10403, 338, 1623, 304, 278, 29871, 29906, 29955, 29899, 29906, 29929, 3464, 29892, 975, 7915, 541, 451, 704, 968, 29892, 322, 1603, 20327, 29889, 376, 10401, 366, 1369, 714, 2038, 29871, 29945, 29900, 1699, 9002, 305, 392, 1497, 29892, 376, 29906, 29929, 338, 13568, 6288, 1213, 13, 29908, 4806, 864, 22069, 304, 14074, 9950, 322, 19905, 2301, 2841, 29892, 289, 650, 322, 916, 20793, 3573, 4158, 1699, 9002, 305, 392, 10824, 29889, 376, 3868, 4298, 3508, 29915, 29873, 925, 1048, 7688, 470, 350, 10403, 29889, 739, 29915, 29879, 884, 1048, 825, 596, 3573, 338, 15390, 310, 472, 278, 716, 7688, 1213, 26656, 327, 508, 1286, 437, 5503, 29899, 14340, 322, 1584, 263, 2846, 8206, 29899, 14340, 29889, 940, 756, 11664, 670, 5881, 29875, 586, 6151, 1070, 1095, 18541, 322, 26171, 29889, 13, 29908, 29902, 1018, 451, 304, 2367, 7688, 6410, 22069, 18378, 14433, 763, 263, 3058, 7688, 470, 263, 2702, 350, 10403, 1699, 9002, 305, 392, 1497, 29889, 376, 3644 ]
1,024
CommonCrawl
0.987047
-0.142762
0.018722
1.301306
The real life of a developer isn't about development -- it's about maintenance. A typical IT shop spends 75 percent of its time extending, modifying, enhancing or fixing existing applications that, typically, the current staff didn't initially build. What, in the end, defeats this process is application complexity. When maintenance is handled badly, we end up with those applications that everyone is afraid of: When any change is made, you're given surprising (and unfortunate) results. With these applications, we stop doing maintenance well and, instead, go into a defensive programming mode: We put in code we know is stupid from a structural point of view but is guaranteed to work correctly. We call these changes to existing code "patches" and each one of these "non-structural" solutions makes the application more complex. Eventually, the application becomes too complex to be maintained and has to be abandoned and rebuilt from scratch. Let's call this the Create/Repair/Abandon/rePlace cycle: The CRAP cycle. I'm working on one of these replace projects right now and doing the best job I can to build an application that will survive maintenance. However, I can't get over the feeling that I'm just restarting a process that will lead to this application having to be abandoned and be rebuilt by the developers who come after me. The question of how to break the CRAP cycle is a critical part of the evolution of software design strategies. We used to talk about building "table-driven" applications that derive their logic from entries in a table. I took this to an extreme in one application and discovered that I hadn't eliminated the complexity problem: I had just moved it into some tables that, because they were so complex to maintain, were eliminated in a later rewrite. Then we started creating "configurable" applications. The poster child for configurable applications is probably SAP, which can take two or three years to implement and configure for a specific company. This is also not a solution. The SOLID principles for writing code are intended to break the CRAP cycle by ensuring two things: First, new functionality is handled with new code (no patches to existing code) and, second, changes to existing code, when necessary, are isolated from the rest of the application. Unfortunately, applying SOLID principles to large applications results in an overwhelming number of objects the developers new to a project never really grasp. It moves the complexity around (from the objects to the architecture), but doesn't eliminate it. Refactoring tries to solve the problem a different way by encouraging developers to make structural changes rather than apply patches when performing maintenance. Coupled with test-driven development, refactoring aims to maintain the quality of the code (or even to improve it) as changes are made … provided, of course, that you can get someone to allow the time and money for you to do refactoring. Often, you can't: "So," your manager asks, "when you finish this 'refactoring' will the application run faster? Have fewer errors? No? It will just do exactly what it's doing right now? Perhaps you could move on to something that actually is helpful to the company?" The final solution is, of course, "planning": architecting solutions that will withstand the test of time. In this scenario, maintenance activities are to be handled like development with an equal amount of time spent on design and analysis as in the original application. As with refactoring, there's an issue around whether anyone is willing to pay for this. More important, though, the plans usually fail: We don't seem to do a good job of predicting what changes will be required in the future and, typically, our solutions don't adapt well to the changes that are required. We spend the money on planning and don't see any return. Which, of course, led to Agile development: give up on long-term planning (because we're not good at it) to concentrate on what we can do -- managing the short term. Which is where DDD comes in. DDD doesn't abandon refactoring, SOLID programming or any of the other tools that are part of a developer's toolkit. It merely says that we should stop building large applications (or, in DDD-talk, "big balls of mud"). The fundamental assumption of DDD is that human beings are incapable of building enterprise applications, but are capable of understanding small, well-bounded problems (a "domain"). These domains can be described using words that are well understood by the team of developers and business people working on the application. DDD also acknowledges that these words don't mean the same thing
[ 450, 1855, 2834, 310, 263, 13897, 3508, 29915, 29873, 1048, 5849, 1192, 372, 29915, 29879, 1048, 25413, 29889, 319, 15662, 13315, 18296, 805, 1975, 29871, 29955, 29945, 10151, 310, 967, 931, 23771, 29892, 23815, 29892, 427, 5403, 3277, 470, 27826, 5923, 8324, 393, 29892, 12234, 29892, 278, 1857, 13925, 3282, 29915, 29873, 12919, 2048, 29889, 1724, 29892, 297, 278, 1095, 29892, 8686, 1446, 445, 1889, 338, 2280, 13644, 29889, 13, 10401, 25413, 338, 16459, 28042, 29892, 591, 1095, 701, 411, 1906, 8324, 393, 14332, 338, 13421, 310, 29901, 1932, 738, 1735, 338, 1754, 29892, 366, 29915, 276, 2183, 26800, 313, 392, 443, 6477, 403, 29897, 2582, 29889, 2973, 1438, 8324, 29892, 591, 5040, 2599, 25413, 1532, 322, 29892, 2012, 29892, 748, 964, 263, 822, 6270, 8720, 4464, 29901, 1334, 1925, 297, 775, 591, 1073, 338, 20239, 515, 263, 2281, 3631, 1298, 310, 1776, 541, 338, 22688, 304, 664, 5149, 29889, 1334, 1246, 1438, 3620, 304, 5923, 775, 376, 5041, 267, 29908, 322, 1269, 697, 310, 1438, 376, 5464, 29899, 4984, 3631, 29908, 6851, 3732, 278, 2280, 901, 4280, 29889, 6864, 1474, 29892, 278, 2280, 7415, 2086, 4280, 304, 367, 19949, 322, 756, 304, 367, 23181, 322, 337, 16145, 515, 22728, 29889, 2803, 29915, 29879, 1246, 445, 278, 6204, 29914, 5612, 1466, 29914, 4920, 9214, 29914, 276, 22150, 11412, 29901, 450, 15600, 3301, 11412, 29889, 13, 29902, 29915, 29885, 1985, 373, 697, 310, 1438, 5191, 9279, 1492, 1286, 322, 2599, 278, 1900, 4982, 306, 508, 304, 2048, 385, 2280, 393, 674, 10503, 573, 25413, 29889, 2398, 29892, 306, 508, 29915, 29873, 679, 975, 278, 11223, 393, 306, 29915, 29885, 925, 10715, 292, 263, 1889, 393, 674, 3275, 304, 445, 2280, 2534, 304, 367, 23181, 322, 367, 337, 16145, 491, 278, 18777, 1058, 2041, 1156, 592, 29889, 13, 1576, 1139, 310, 920, 304, 2867, 278, 15600, 3301, 11412, 338, 263, 12187, 760, 310, 278, 14675, 310, 7047, 2874, 16650, 583, 29889, 1334, 1304, 304, 5193, 1048, 5214, 376, 2371, 29899, 24477, 854, 29908, 8324, 393, 21340, 1009, 5900, 515, 9976, 297, 263, 1591, 29889, 306, 3614, 445, 304, 385, 18677, 297, 697, 2280, 322, 10943, 393, 306, 27222, 29915, 29873, 10397, 630, 278, 13644, 1108, 29901, 306, 750, 925, 6153, 372, 964, 777, 6131, 393, 29892, 1363, 896, 892, 577, 4280, 304, 7344, 29892, 892, 10397, 630, 297, 263, 2678, 10683, 29889, 13, 11760, 591, 4687, 4969, 376, 2917, 21115, 29908, 8324, 29889, 450, 10368, 2278, 363, 17127, 519, 8324, 338, 3117, 317, 3301, 29892, 607, 508, 2125, 1023, 470, 2211, 2440, 304, 2334, 322, 10822, 363, 263, 2702, 5001, 29889, 910, 338, 884, 451, 263, 1650, 29889, 13, 1576, 317, 5607, 1367, 18671, 363, 5007, 775, 526, 9146, 304, 2867, 278, 15600, 3301, 11412, 491, 5662, 3864, 1023, 2712, 29901, 3824, 29892, 716, 9863, 338, 16459, 411, 716, 775, 313, 1217, 13261, 267, 304, 5923, 775, 29897, 322, 29892, 1473, 29892, 3620, 304, 5923, 775, 29892, 746, 5181, 29892, 526, 23968, 515, 278, 1791, 310, 278, 2280, 29889, 11511, 29892, 15399, 317, 5607, 1367, 18671, 304, 2919, 8324, 2582, 297, 385, 975, 1332, 295, 4056, 1353, 310, 3618, 278, 18777, 716, 304, 263, 2060, 2360, 2289, 25274, 29889, 739, 16229, 278, 13644, 2820, 313, 3166, 278, 3618, 304, 278, 11258, 511, 541, 1838, 29915, 29873, 27399, 372, 29889, 13, 5620, 7168, 292, 14335, 304, 4505, 278, 1108, 263, 1422, 982, 491, 18443, 292, 18777, 304, 1207, 2281, 3631, 3620, 3265, 1135, 3394, 13261, 267, 746, 15859, 25413, 29889, 19565, 552, 29881, 411, 1243, 29899, 24477, 854, 5849, 29892, 28559, 292, 263, 9893, 304, 7344, 278, 11029, 310, 278, 775, 313, 272, 1584, 304, 11157, 372, 29897, 408, 3620, 526, 1754, 16088, 4944, 29892, 310, 3236, 29892, 393, 366, 508, 679, 4856, 304, 2758, 278, 931, 322, 6909, 363, 366, 304, 437, 28559, 292, 29889, 438, 15535, 29892, 366, 508, 29915, 29873, 29901, 376, 6295, 1699, 596, 8455, 19514, 29892, 376, 8256, 366, 8341, 445, 525, 999, 7168, 292, 29915, 674, 278, 2280, 1065, 8473, 29973, 6975, 28145, 4436, 29973, 1939, 29973, 739, 674, 925, 437, 3721, 825, 372, 29915, 29879, 2599, 1492, 1286, 29973, 11637, 366, 1033, 4337, 373, 304, 1554, 393, 2869, 338, 8444, 304, 278, 5001, 3026, 13, 1576, 2186, 1650, 338, 29892, 310, 3236, 29892, 376, 572, 9450, 1115, 6956, 292, 6851, 393, 674, 411, 1689, 278, 1243, 310, 931, 29889, 512, 445, 10483, 29892, 25413, 14188, 526, 304, 367, 16459, 763, 5849, 411, 385, 5186, 5253, 310, 931, 10398, 373, 2874, 322, 7418, 408, 297, 278, 2441, 2280, 29889, 1094, 411, 28559, 292, 29892, 727, 29915, 29879, 385, 2228, 2820, 3692, 5019, 338, 17762, 304, 5146, 363, 445, 29889, 5853, 4100, 29892, 2466, 29892, 278, 13900, 5491, 4418, 29901, 1334, 1016, 29915, 29873, 2833, 304, 437, 263, 1781, 4982, 310, 8500, 292, 825, 3620, 674, 367, 3734, 297, 278, 5434, 322, 29892, 12234, 29892, 1749, 6851, 1016, 29915, 29873, 7744, 1532, 304, 278, 3620, 393, 526, 3734, 29889, 1334, 18864, 278, 6909, 373, 18987, 322, 1016, 29915, 29873, 1074, 738, 736, 29889, 13, 8809, 436, 29892, 310, 3236, 29892, 5331, 304, 4059, 488, 5849, 29901, 2367, 701, 373, 1472, 29899, 8489, 18987, 313, 18103, 591, 29915, 276, 451, 1781, 472, 372, 29897, 304, 10484, 10492, 373, 825, 591, 508, 437, 1192, 767, 6751, 278, 3273, 1840, 29889, 13, 8809, 436, 338, 988, 360, 7858, 5304, 297, 29889, 360, 7858, 1838, 29915, 29873, 11807, 28559, 292, 29892, 317, 5607, 1367, 8720, 470, 738, 310, 278, 916, 8492, 393, 526, 760, 310, 263, 13897, 29915, 29879, 5780, 7354, 29889, 739, 13586, 4083, 393, 591, 881, 5040, 5214, 2919, 8324, 313, 272, 29892, 297, 360, 7858, 29899, 29873, 2235, 29892, 376, 3752, 26563, 310, 17439, 2564, 450, 15281, 11833, 310, 360, 7858, 338, 393, 5199, 367, 886, 526, 297, 5030, 519, 310, 5214, 3896, 7734, 8324, 29892, 541, 526, 15390, 310, 8004, 2319, 29892, 1532, 29899, 29306, 4828, 313, 29874, 376, 7247, 2564, 13, 1349, 968, 21904, 508, 367, 5439, 773, 3838, 393, 526, 1532, 11098, 491, 278, 3815, 310, 18777, 322, 5381, 2305, 1985, 373, 278, 2280, 29889, 360, 7858, 884, 24084, 2710, 393, 1438, 3838, 1016, 29915, 29873, 2099, 278, 1021, 2655 ]
1,024
C4
1.109315
1.210179
0.382074
1.781959
Time for blogging again. Today, I shall discuss about how can we save information or graphics which are being displayed on canvas UI control to image file (I am using .PNG image file extension). This discussion is specific to Windows Store 8.1 platform application development, so, when I mean UI control (s), I mean the UI control (s) offer by Windows Store 8.1 platform. 1) Knowledge about Windows Store platform. 2) Knowledge about Asynchronous Programming. 3) Knowledge about XAML UI controls. This topic is not new, there are several threads out their that address this topic, however, working coding solution is hardly available, so, I decided to put all those discussions into action. Before I start the coding tutorial, I would like to clarify the main problem in hand. Our problem here is to convert canvas information or graphics into an image and then save that image to an image supported format e.g. png, jpg etc. For this tutorial, I am using .PNG format. It is really important to understand the problem before jumping into proposing any solution. During the research of the solution to this problem, I have come across several threads that says to use WriteableBitmapEx library to address this problem by using Image UI control instead of using Canvas UI control. The reason is that Windows 8 does not support any class or library that can convert any XAML UI control to bitmap for saving the bitmap ultimately as image file. So, the alternates are to use image UI control instead and then automatically associate the WriteableBitmapEx library with the image UI control for manipulating the bitmap. But, phew.... with the release of windows 8.1 SDK, a class called RenderTargetBitmap is also provided that can convert any XAML UI control to bitmap, which allows the developers to be more creative with their application ideas. You can download the complete source code for this tutorial or you can follow step by step discussion below. The sample code is developed in Microsoft Visual Studio 2013 Ultimate with Windows 8.1 platform. 1) Create a windows store blank application and name it "RenderCanvasToImage". 2) Replace the existing "MainPage.xaml" with following xaml snippet. The only important thing to take care of in this XAML snippet is to fix the size of your canvas UI control, otherwise our output image content will not be arranged properly for saving to image file. Rest is just simple i.e. we have add a predefine testing image inside the canvas UI control and create bottom and top page app bars. The upper bar will allow change the color of our stroke ink and lower app bar will provide option to save the canvas into image on a desktop. 3) Go to "MainPage.xaml.cs" file and first add some setting variable for handling on screen strokes by user i.e. // Call an application-defined function to render the ink strokes. // Render a red line on the canvas as the pointer moves. // drawing a new line. // Get information about the pointer location. // Accept input only from a pen or mouse with the left button pressed. 7) Execute the project and you will able to see your canvas and can add strokes on it in "black" and "green" colors. #region Save to PNG method. /// Save to PNG method. /// Canvas to BMP method. // Sezing to output image dimension. // Convert canvas to bmp. We have added following methods i.e. ShowMessage() method is for displaying any message on screen e.g. exceptions etc, CreateFile(..) method creates the target PNG format image file on desktop. SaveCanvas() is high level method that calls two very importan methods i.e. CanvasToBMP() & SaveToPNG(...) method. We have first converted our canvas UI control to bitmap by using RenderTargetBitmap class, for that, we first need to so some settings for our canvas i.e. The above lines of code in CanvasToBMP() first measure the size of the canvas that we want to render into PNG format, I have set the size to our canvas size, then we update our UI layout according to the measure size, after that, we arrange the render bounding of our canvas according to canvas origin point and canvas size, so, that all the children of the canvas are arrange properly before being converted to bitmap. Finally, we convert the canvas UI control to bitmap and by using the settings of SaveToPNG(...) method we have save our canvas UI control information or graphics into PNG image format. 9) Call "SaveCanvas()" method from within "save_to_local_Click" method. 11) Now, open the saved PNG file from
[ 5974, 363, 12618, 3460, 1449, 29889, 20628, 29892, 306, 4091, 5353, 1048, 920, 508, 591, 4078, 2472, 470, 18533, 607, 526, 1641, 8833, 373, 10508, 3740, 2761, 304, 1967, 934, 313, 29902, 626, 773, 869, 29925, 9312, 1967, 934, 6081, 467, 910, 10679, 338, 2702, 304, 3852, 14491, 29871, 29947, 29889, 29896, 7481, 2280, 5849, 29892, 577, 29892, 746, 306, 2099, 3740, 2761, 313, 29879, 511, 306, 2099, 278, 3740, 2761, 313, 29879, 29897, 5957, 491, 3852, 14491, 29871, 29947, 29889, 29896, 7481, 29889, 13, 29896, 29897, 19320, 5485, 1048, 3852, 14491, 7481, 29889, 13, 29906, 29897, 19320, 5485, 1048, 1094, 15374, 7835, 4056, 29889, 13, 29941, 29897, 19320, 5485, 1048, 1060, 23956, 3740, 11761, 29889, 13, 4013, 11261, 338, 451, 716, 29892, 727, 526, 3196, 9717, 714, 1009, 393, 3211, 445, 11261, 29892, 3138, 29892, 1985, 14137, 1650, 338, 15155, 3625, 29892, 577, 29892, 306, 8459, 304, 1925, 599, 1906, 5353, 1080, 964, 3158, 29889, 10949, 306, 1369, 278, 14137, 9673, 29892, 306, 723, 763, 304, 15544, 278, 1667, 1108, 297, 1361, 29889, 8680, 1108, 1244, 338, 304, 3588, 10508, 2472, 470, 18533, 964, 385, 1967, 322, 769, 4078, 393, 1967, 304, 385, 1967, 6969, 3402, 321, 29889, 29887, 29889, 282, 865, 29892, 432, 4061, 2992, 29889, 1152, 445, 9673, 29892, 306, 626, 773, 869, 29925, 9312, 3402, 29889, 739, 338, 2289, 4100, 304, 2274, 278, 1108, 1434, 12500, 292, 964, 9551, 292, 738, 1650, 29889, 7133, 278, 5925, 310, 278, 1650, 304, 445, 1108, 29892, 306, 505, 2041, 4822, 3196, 9717, 393, 4083, 304, 671, 14350, 519, 15184, 1252, 3489, 304, 3211, 445, 1108, 491, 773, 7084, 3740, 2761, 2012, 310, 773, 1815, 4428, 3740, 2761, 29889, 450, 2769, 338, 393, 3852, 29871, 29947, 947, 451, 2304, 738, 770, 470, 3489, 393, 508, 3588, 738, 1060, 23956, 3740, 2761, 304, 21170, 363, 14238, 278, 21170, 18973, 408, 1967, 934, 29889, 1105, 29892, 278, 5136, 1078, 526, 304, 671, 1967, 3740, 2761, 2012, 322, 769, 6336, 25836, 278, 14350, 519, 15184, 1252, 3489, 411, 278, 1967, 3740, 2761, 363, 11525, 18099, 278, 21170, 29889, 1205, 29892, 282, 13636, 3045, 411, 278, 6507, 310, 5417, 29871, 29947, 29889, 29896, 12967, 29892, 263, 770, 2000, 26000, 8667, 15184, 338, 884, 4944, 393, 508, 3588, 738, 1060, 23956, 3740, 2761, 304, 21170, 29892, 607, 6511, 278, 18777, 304, 367, 901, 907, 1230, 411, 1009, 2280, 7014, 29889, 13, 3492, 508, 5142, 278, 4866, 2752, 775, 363, 445, 9673, 470, 366, 508, 1101, 4331, 491, 4331, 10679, 2400, 29889, 450, 4559, 775, 338, 8906, 297, 7783, 9249, 7448, 29871, 29906, 29900, 29896, 29941, 18514, 6490, 411, 3852, 29871, 29947, 29889, 29896, 7481, 29889, 13, 29896, 29897, 6204, 263, 5417, 3787, 9654, 2280, 322, 1024, 372, 376, 10716, 21960, 1762, 2940, 1642, 13, 29906, 29897, 22108, 278, 5923, 376, 6330, 5074, 29889, 29510, 29908, 411, 1494, 921, 8807, 11534, 29889, 13, 1576, 871, 4100, 2655, 304, 2125, 2562, 310, 297, 445, 1060, 23956, 11534, 338, 304, 2329, 278, 2159, 310, 596, 10508, 3740, 2761, 29892, 6467, 1749, 1962, 1967, 2793, 674, 451, 367, 21050, 6284, 363, 14238, 304, 1967, 934, 29889, 11654, 338, 925, 2560, 474, 29889, 29872, 29889, 591, 505, 788, 263, 758, 7922, 6724, 1967, 2768, 278, 10508, 3740, 2761, 322, 1653, 5970, 322, 2246, 1813, 623, 22306, 29889, 450, 7568, 2594, 674, 2758, 1735, 278, 2927, 310, 1749, 19782, 297, 29895, 322, 5224, 623, 2594, 674, 3867, 2984, 304, 4078, 278, 10508, 964, 1967, 373, 263, 14616, 29889, 13, 29941, 29897, 2921, 304, 376, 6330, 5074, 29889, 29510, 29889, 2395, 29908, 934, 322, 937, 788, 777, 4444, 2286, 363, 11415, 373, 4315, 23351, 10794, 491, 1404, 474, 29889, 29872, 29889, 13, 458, 8251, 385, 2280, 29899, 12119, 740, 304, 4050, 278, 297, 29895, 23351, 10794, 29889, 13, 458, 26000, 263, 2654, 1196, 373, 278, 10508, 408, 278, 4879, 16229, 29889, 13, 458, 11580, 263, 716, 1196, 29889, 13, 458, 3617, 2472, 1048, 278, 4879, 4423, 29889, 13, 458, 29848, 1881, 871, 515, 263, 6584, 470, 9495, 411, 278, 2175, 2826, 15385, 29889, 13, 29955, 29897, 11080, 1082, 278, 2060, 322, 366, 674, 2221, 304, 1074, 596, 10508, 322, 508, 788, 23351, 10794, 373, 372, 297, 376, 8517, 29908, 322, 376, 12692, 29908, 11955, 29889, 13, 29937, 12803, 16913, 304, 349, 9312, 1158, 29889, 13, 6658, 16913, 304, 349, 9312, 1158, 29889, 13, 6658, 1815, 4428, 304, 350, 3580, 1158, 29889, 13, 458, 922, 19583, 304, 1962, 1967, 9927, 29889, 13, 458, 14806, 10508, 304, 289, 1526, 29889, 13, 4806, 505, 2715, 1494, 3519, 474, 29889, 29872, 29889, 13, 8964, 3728, 580, 1158, 338, 363, 16384, 738, 2643, 373, 4315, 321, 29889, 29887, 29889, 15283, 2992, 29892, 6204, 2283, 29898, 636, 29897, 1158, 10017, 278, 3646, 349, 9312, 3402, 1967, 934, 373, 14616, 29889, 16913, 21960, 580, 338, 1880, 3233, 1158, 393, 5717, 1023, 1407, 1053, 273, 3519, 474, 29889, 29872, 29889, 1815, 4428, 1762, 29933, 3580, 580, 669, 16913, 1762, 29925, 9312, 29077, 1158, 29889, 1334, 505, 937, 11543, 1749, 10508, 3740, 2761, 304, 21170, 491, 773, 26000, 8667, 15184, 770, 29892, 363, 393, 29892, 591, 937, 817, 304, 577, 777, 6055, 363, 1749, 10508, 474, 29889, 29872, 29889, 13, 1576, 2038, 3454, 310, 775, 297, 1815, 4428, 1762, 29933, 3580, 580, 937, 5645, 278, 2159, 310, 278, 10508, 393, 591, 864, 304, 4050, 964, 349, 9312, 3402, 29892, 306, 505, 731, 278, 2159, 304, 1749, 10508, 2159, 29892, 769, 591, 2767, 1749, 3740, 5912, 5034, 304, 278, 5645, 2159, 29892, 1156, 393, 29892, 591, 564, 3881, 278, 4050, 3216, 292, 310, 1749, 10508, 5034, 304, 10508, 3978, 1298, 322, 10508, 2159, 29892, 577, 29892, 393, 599, 278, 4344, 310, 278, 10508, 526, 564, 3881, 6284, 1434, 1641, 11543, 304, 21170, 29889, 9788, 29892, 591, 3588, 278, 10508, 3740, 2761, 304, 21170, 322, 491, 773, 278, 6055, 310, 16913, 1762, 29925, 9312, 29077, 1158, 591, 505, 4078, 1749, 10508, 3740, 2761, 2472, 470, 18533, 964, 349, 9312, 1967, 3402, 29889, 13, 29929, 29897, 8251, 376, 11371, 21960, 25318, 1158, 515, 2629, 376, 7620, 29918, 517, 29918, 2997, 29918, 4164, 29908, 1158, 29889, 13, 29896, 29896, 29897, 2567, 29892, 1722, 278, 7160, 349, 9312, 934, 515 ]
1,024
C4
-1.081995
0.017515
-0.999604
0.390594
WASHINGTON -- Private equity firms are routinely ripping off their clients, harming pension funds, universities and charitable foundations, according to a top government regulator with the Securities and Exchange Commission. "When we have examined how fees and expenses are handled by advisers to private equity funds, we have identified what we believe are violations of law or material weaknesses in controls over 50 percent of the time," Andrew J. Bowden, director of the Office of Compliance Inspections and Examinations, said Tuesday, according to a transcript. "This is a remarkable statistic." In his bold speech before a New York private equity conference, Bowden laid out a host of improper schemes that the Securities and Exchange Commission has found to be rampant in the sector. Private equity firms have dodged nearly all of the new rules included in President Barack Obama's 2010 Dodd-Frank financial reform law, but managers of larger firms now have to register with the SEC as formal investment advisers and are subject to periodic reviews. In December, the House passed a bill that would repeal the section of Dodd-Frank requiring private equity managers to register with the SEC. Although the bill received just 36 Democratic votes, seven of its 13 co-sponsors were Democrats, including Wall Street-friendly Reps. Jim Himes (D-Conn.) and David Scott (D-Ga.). The bill is unlikely to be voted on in the Senate. After examining over 150 private equity advisers, Bowden said that the SEC found that private equity managers frequently charge improper hidden fees to investors and misrepresent major consulting expenses. "We have seen that these temptations and conflicts are real and significant," Bowden said. Private equity firms raise money from investors -- pension funds, hedge funds and other sources of capital -- and use it to takeover private companies. Most private equity critics focus on problems with the way private equity firms manage these businesses. One common strategy involves raiding the company's assets while loading it up with debt, eventually forcing the company into bankruptcy. While creditors get burned and workers are laid off, the private equity manager rakes in cash. But Bowden's speech focused on the other side of the business -- how private equity managers relate to the investors who give them money in the first place. Bowden devoted special attention to consulting arrangements where private equity managers give investors the impression that the private equity firm itself is footing the bill. In fact, Bowden said, managers are often charging the fees to the companies they manage. Instead of coming out of the manager's fee, it comes out of the company's profit -- which ultimately belongs to investors. Bowden also took issue with "monitoring fees" -- money that private equity managers charge to serve on the board of directors and function as advisers to the companies they control. But private equity firms often orchestrate payments to ensure that investors are charged these fees for several years after the private equity firm has ceased performing these functions. "This sort of arrangement has the potential to generate eight-figure, or in rare cases, even higher fees," Bowden said. "There is usually no disclosure of this practice at the point when these monitoring agreements are signed." Bowden also said that private equity managers often charge undisclosed administrative fees, or simply violate their investment agreements by charging fees beyond what the arrangement allows. Companies also overstate their investment prowess in marketing materials by relying on bogus valuation metrics. Often, according to Bowden, firms will tell investors they use one method for calculating the value of their investments, while using a different methodology to justify rosier figures. Bowden is no bomb-thrower. He came to the SEC in 2011 after 17 years with Legg Mason, where he had ascended to executive director of its capital management unit. Now known as ClearBridge, the fund has almost $100 billion in assets under management. When critics have taken issue with the ethics of some private equity management decisions, the industry typically invokes the traditional business lobby line that whatever is good for its bottom line is good for America. The Private Equity Growth Capital Council -- an industry PR and lobbying shop -- has focused much of its messaging around the idea that many
[ 399, 24943, 4214, 29911, 1164, 1192, 12230, 1592, 537, 13734, 1516, 526, 6745, 262, 873, 10107, 3262, 1283, 1009, 13154, 29892, 10311, 292, 282, 2673, 29199, 29892, 4946, 1907, 322, 1373, 8270, 1476, 800, 29892, 5034, 304, 263, 2246, 5874, 1072, 9183, 411, 278, 5356, 332, 1907, 322, 24004, 11444, 29889, 13, 29908, 10401, 591, 505, 4392, 1312, 920, 1238, 267, 322, 1518, 11259, 526, 16459, 491, 25228, 414, 304, 2024, 1592, 537, 29199, 29892, 591, 505, 15659, 825, 591, 4658, 526, 5537, 800, 310, 4307, 470, 5518, 8062, 2264, 267, 297, 11761, 975, 29871, 29945, 29900, 10151, 310, 278, 931, 1699, 11571, 435, 29889, 13432, 1145, 29892, 8881, 310, 278, 11367, 310, 3831, 13036, 512, 5965, 1953, 322, 1222, 9103, 800, 29892, 1497, 323, 1041, 3250, 29892, 5034, 304, 263, 1301, 924, 29889, 376, 4013, 338, 263, 22567, 1002, 4695, 1213, 13, 797, 670, 14288, 12032, 1434, 263, 1570, 3088, 2024, 1592, 537, 21362, 29892, 13432, 1145, 12341, 714, 263, 3495, 310, 4857, 546, 27715, 393, 278, 5356, 332, 1907, 322, 24004, 11444, 756, 1476, 304, 367, 364, 1160, 424, 297, 278, 17535, 29889, 12230, 1592, 537, 13734, 1516, 505, 21130, 3192, 8886, 599, 310, 278, 716, 6865, 5134, 297, 7178, 2261, 547, 4250, 3304, 29915, 29879, 29871, 29906, 29900, 29896, 29900, 360, 22861, 29899, 7675, 29895, 18161, 11736, 4307, 29892, 541, 767, 18150, 310, 7200, 13734, 1516, 1286, 505, 304, 6036, 411, 278, 3725, 29907, 408, 11595, 13258, 358, 25228, 414, 322, 526, 4967, 304, 29591, 21804, 29889, 13, 797, 5846, 29892, 278, 5619, 4502, 263, 11118, 393, 723, 5565, 284, 278, 4004, 310, 360, 22861, 29899, 7675, 29895, 26795, 2024, 1592, 537, 767, 18150, 304, 6036, 411, 278, 3725, 29907, 29889, 8512, 278, 11118, 4520, 925, 29871, 29941, 29953, 19083, 18952, 29892, 9881, 310, 967, 29871, 29896, 29941, 1302, 29899, 1028, 787, 943, 892, 14189, 1446, 29892, 3704, 14406, 7103, 29899, 18326, 368, 830, 567, 29889, 8507, 379, 1355, 313, 29928, 29899, 1168, 29876, 1846, 322, 4699, 8075, 313, 29928, 29899, 29954, 29874, 6250, 450, 11118, 338, 25057, 304, 367, 24854, 373, 297, 278, 18148, 29889, 13, 13555, 4392, 2827, 975, 29871, 29896, 29945, 29900, 2024, 1592, 537, 25228, 414, 29892, 13432, 1145, 1497, 393, 278, 3725, 29907, 1476, 393, 2024, 1592, 537, 767, 18150, 13672, 8323, 4857, 546, 7934, 1238, 267, 304, 13258, 943, 322, 3984, 276, 6338, 4655, 8799, 292, 1518, 11259, 29889, 13, 29908, 4806, 505, 3595, 393, 1438, 25782, 800, 322, 28792, 526, 1855, 322, 7282, 1699, 13432, 1145, 1497, 29889, 13, 25207, 1592, 537, 13734, 1516, 12020, 6909, 515, 13258, 943, 1192, 282, 2673, 29199, 29892, 298, 12864, 29199, 322, 916, 8974, 310, 7483, 1192, 322, 671, 372, 304, 2125, 957, 2024, 14582, 29889, 7849, 2024, 1592, 537, 28431, 8569, 373, 4828, 411, 278, 982, 2024, 1592, 537, 13734, 1516, 10933, 1438, 5381, 267, 29889, 3118, 3619, 13705, 20789, 1153, 4821, 278, 5001, 29915, 29879, 21608, 1550, 8363, 372, 701, 411, 2553, 29873, 29892, 10201, 28172, 278, 5001, 964, 9124, 6685, 1270, 29889, 5806, 16200, 943, 679, 12138, 287, 322, 17162, 526, 12341, 1283, 29892, 278, 2024, 1592, 537, 8455, 1153, 10794, 297, 274, 1161, 29889, 13, 6246, 13432, 1145, 29915, 29879, 12032, 21309, 373, 278, 916, 2625, 310, 278, 5381, 1192, 920, 2024, 1592, 537, 767, 18150, 29279, 304, 278, 13258, 943, 1058, 2367, 963, 6909, 297, 278, 937, 2058, 29889, 13432, 1145, 24600, 4266, 8570, 304, 8799, 292, 15196, 4110, 988, 2024, 1592, 537, 767, 18150, 2367, 13258, 943, 278, 17188, 393, 278, 2024, 1592, 537, 9226, 3528, 338, 3661, 292, 278, 11118, 29889, 512, 2114, 29892, 13432, 1145, 1497, 29892, 767, 18150, 526, 4049, 9151, 292, 278, 1238, 267, 304, 278, 14582, 896, 10933, 29889, 8669, 310, 6421, 714, 310, 278, 8455, 29915, 29879, 27684, 29892, 372, 5304, 714, 310, 278, 5001, 29915, 29879, 21665, 1192, 607, 18973, 14393, 304, 13258, 943, 29889, 13, 29933, 340, 1145, 884, 3614, 2228, 411, 376, 3712, 2105, 292, 1238, 267, 29908, 1192, 6909, 393, 2024, 1592, 537, 767, 18150, 8323, 304, 9080, 373, 278, 7613, 310, 1513, 943, 322, 740, 408, 25228, 414, 304, 278, 14582, 896, 2761, 29889, 1205, 2024, 1592, 537, 13734, 1516, 4049, 22624, 342, 10492, 5146, 1860, 304, 9801, 393, 13258, 943, 526, 20139, 1438, 1238, 267, 363, 3196, 2440, 1156, 278, 2024, 1592, 537, 9226, 756, 24886, 15859, 1438, 3168, 29889, 13, 29908, 4013, 2656, 310, 24628, 756, 278, 7037, 304, 5706, 9475, 29899, 4532, 29892, 470, 297, 10812, 4251, 29892, 1584, 6133, 1238, 267, 1699, 13432, 1145, 1497, 29889, 376, 8439, 338, 5491, 694, 766, 25071, 310, 445, 6944, 472, 278, 1298, 746, 1438, 29652, 8571, 4110, 526, 8794, 1213, 13, 29933, 340, 1145, 884, 1497, 393, 2024, 1592, 537, 767, 18150, 4049, 8323, 563, 275, 15603, 19185, 1238, 267, 29892, 470, 3763, 5537, 403, 1009, 13258, 358, 8571, 4110, 491, 9151, 292, 1238, 267, 8724, 825, 278, 24628, 6511, 29889, 3831, 273, 583, 884, 975, 3859, 1009, 13258, 358, 410, 29893, 404, 297, 9999, 292, 17279, 491, 337, 5890, 373, 26652, 375, 17134, 362, 21556, 29889, 438, 15535, 29892, 5034, 304, 13432, 1145, 29892, 13734, 1516, 674, 2649, 13258, 943, 896, 671, 697, 1158, 363, 25202, 278, 995, 310, 1009, 13258, 1860, 29892, 1550, 773, 263, 1422, 1158, 3002, 304, 26922, 14652, 631, 13994, 29889, 13, 29933, 340, 1145, 338, 694, 13585, 29899, 386, 307, 556, 29889, 940, 2996, 304, 278, 3725, 29907, 297, 29871, 29906, 29900, 29896, 29896, 1156, 29871, 29896, 29955, 2440, 411, 5682, 29887, 28095, 29892, 988, 540, 750, 12066, 2760, 304, 22760, 8881, 310, 967, 7483, 10643, 5190, 29889, 2567, 2998, 408, 17732, 29933, 8605, 29892, 278, 5220, 756, 4359, 395, 29896, 29900, 29900, 24464, 297, 21608, 1090, 10643, 29889, 13, 10401, 28431, 505, 4586, 2228, 411, 278, 11314, 1199, 310, 777, 2024, 1592, 537, 10643, 1602, 12112, 29892, 278, 13661, 12234, 2437, 23195, 278, 13807, 5381, 658, 1327, 29891, 1196, 393, 6514, 338, 1781, 363, 967, 5970, 1196, 338, 1781, 363, 6813, 29889, 450, 12230, 11243, 537, 402, 798, 386, 25343, 8831, 1192, 385, 13661, 12089, 322, 658, 1327, 5414, 18296, 1192, 756, 21309, 1568, 310, 967, 4473, 6751, 2820, 278, 2969, 393, 1784 ]
1,024
C4
0.53058
0.745572
1.231165
0.861128
top | hiking | britain | cader idris Swiss Day Hikes Swiss Multi-Day Hikes Jura Ridgeway Swiss Hike Map South Downs Way British Hike - Cader Idris Hike time: 4.5 to 5 hours Approx dist: Minffordd from 100m up to 900m, and back again up:940m, down:940m Easy-medium climb, tricky and loose descent in places Sometimes, one can get too hung up on a name. Is it "Cader Idris" or "Cadair Idris"? Is it the seat of a giant, the stronghold of a warrior king, or a mountain lair of a dragon? Is there a connection to Arthur's Seat in Edinburgh? The more you read, the less you know. It's a shame because everyone wants it to be a powerful, Welsh name steeped in legend. So let's forget the name and concentrate on the mountain. Starting the climb through low woodland, the highlight of this loop is a dramatic glacial cwm or corrie, scooped out of the rock with a tranquil lake of Llyn Cau hidden inside. Following the ridge around this cwm, the views are spectacularly panoramic, all the way to the sea from the very prominent summits. "Summits" in plural because this particular variant covers three peaks: firstly Craig Cwm Amarch on the west side of the cwm, then up to the main summit of Penygadair, and finally the optional third peak of Mynydd Moel. The pics Looking down to the lake of Cwm Cau The sheer cliffs of Craig Cwm Amarch Northwestwards, towards the sea Mynydd Moel From the descent, towards Tal-y-llyn (left) and Cwm Cau (right) Getting there and back The walk starts and ends at the car park at Minffordd. Just off the main A487 road near the Gwesty Minffordd is a dedicated car park with pay-and-display machines. There's also a tea shop (tŷ te) about 100m along the path from the car park, although watch out for its closing times. There appears to be a bus stop right next to the car park too, which appears to be on the bus route between Dolgellau and Tywyn past Tal-y-llyn. Note however that the train station called "Minffordd" is in completely the wrong Minffordd, you want to be south of Dolgellau, not east of Porthmadog! This kmz file (4 kb) contains waypoints from this hike and shows the path as a red line around the loop. Simply open it in Google Earth (File -> Open) and you'll see the route in full. Press the "Play Tour" button below the listed waypoints and you can fly a tour along the hike in 3d. If you haven't got Google Earth installed, you can see the same file in a program like GpsPrune instead. Minffordd - little bridge - Craig Cwm Amarch - Penygadair - Mynydd Moel - little bridge - Minffordd 3D plot of the hike, going clockwise around the ridge above the lake This route makes a clockwise loop around the spectacular bowl of Cwm Cau, taking in the scenery from all its angles. It does make an optional detour to Mynydd Moel, so if you want to make it a bit shorter (but not much) then you can cut off that corner and take a shortcut. From the car park at Minffordd, the signposts lead you from the noticeboard on level paths past the tea house. Just afterwards, a right turn through a gate takes you to the beginning of the stepped climb through the forest. The stream on the right is going to accompany the hiker for some time. After about 1km you come to a path junction leading to a stone bridge — after all the three summits have been explored, the return route will come down across this bridge and back down to the tea house. For the upward route we keep left. Shortly, our path bends further leftwards and westwards, still climbing steadily. It takes quite a while for the cwm and lake to come into
[ 2246, 891, 298, 638, 292, 891, 6791, 475, 891, 274, 1664, 1178, 3780, 13, 10840, 790, 8373, 379, 29379, 13, 10840, 790, 14974, 29899, 12742, 379, 29379, 13, 29967, 2002, 390, 5525, 1582, 13, 10840, 790, 6324, 446, 7315, 13, 29903, 2438, 9943, 29879, 5307, 13, 29933, 768, 728, 6324, 446, 448, 315, 1664, 5163, 3780, 13, 29950, 9345, 931, 29901, 13, 29946, 29889, 29945, 304, 29871, 29945, 6199, 13, 2052, 307, 29916, 1320, 29901, 13, 8140, 600, 536, 29881, 13, 3166, 29871, 29896, 29900, 29900, 29885, 701, 304, 29871, 29929, 29900, 29900, 29885, 29892, 322, 1250, 1449, 13, 786, 29901, 29929, 29946, 29900, 29885, 29892, 1623, 29901, 29929, 29946, 29900, 29885, 13, 29923, 8995, 29899, 27891, 10784, 29890, 29892, 28722, 322, 23819, 26815, 297, 7600, 13, 29903, 14618, 29892, 697, 508, 679, 2086, 18757, 701, 373, 263, 1024, 29889, 1317, 372, 376, 29907, 1664, 5163, 3780, 29908, 470, 376, 29907, 1114, 381, 5163, 3780, 8652, 1317, 372, 278, 12949, 310, 263, 28396, 29892, 278, 4549, 8948, 310, 263, 1370, 13479, 6989, 29892, 470, 263, 14378, 425, 381, 310, 263, 8338, 265, 29973, 1317, 727, 263, 3957, 304, 11498, 29915, 29879, 922, 271, 297, 25200, 29973, 450, 901, 366, 1303, 29892, 278, 3109, 366, 1073, 29889, 739, 29915, 29879, 263, 28503, 1363, 14332, 10753, 372, 304, 367, 263, 13988, 29892, 10458, 845, 1024, 1886, 1022, 287, 297, 15983, 29889, 13, 6295, 1235, 29915, 29879, 9566, 278, 1024, 322, 10484, 10492, 373, 278, 14378, 29889, 23748, 278, 10784, 29890, 1549, 4482, 8112, 1049, 29892, 278, 12141, 310, 445, 2425, 338, 263, 8541, 2454, 14751, 1455, 274, 29893, 29885, 470, 1034, 2546, 29892, 885, 26793, 287, 714, 310, 278, 7679, 411, 263, 22024, 339, 309, 19437, 310, 365, 13493, 315, 585, 7934, 2768, 29889, 12206, 278, 364, 5525, 2820, 445, 274, 29893, 29885, 29892, 278, 8386, 526, 6683, 562, 1070, 368, 7243, 272, 314, 293, 29892, 599, 278, 982, 304, 278, 7205, 515, 278, 1407, 19555, 22792, 1169, 29889, 13, 29908, 11139, 29885, 1169, 29908, 297, 715, 3631, 1363, 445, 3153, 17305, 18469, 2211, 1236, 10327, 29901, 937, 368, 28050, 315, 29893, 29885, 1913, 1279, 373, 278, 5833, 2625, 310, 278, 274, 29893, 29885, 29892, 769, 701, 304, 278, 1667, 2533, 2415, 310, 7363, 4790, 1114, 381, 29892, 322, 7146, 278, 13136, 4654, 19224, 310, 341, 948, 29891, 1289, 4546, 295, 29889, 13, 1576, 282, 1199, 13, 14959, 292, 1623, 304, 278, 19437, 310, 315, 29893, 29885, 315, 585, 13, 1576, 1183, 261, 1067, 28324, 310, 28050, 315, 29893, 29885, 1913, 1279, 13, 29940, 2072, 5933, 2935, 29892, 7113, 278, 7205, 13, 29924, 948, 29891, 1289, 4546, 295, 13, 4591, 278, 26815, 29892, 7113, 10288, 29899, 29891, 29899, 29880, 13493, 313, 1563, 29897, 322, 315, 29893, 29885, 315, 585, 313, 1266, 29897, 13, 2577, 1259, 727, 322, 1250, 13, 1576, 6686, 8665, 322, 10614, 472, 278, 1559, 14089, 472, 3080, 600, 536, 29881, 29889, 3387, 1283, 278, 1667, 319, 29946, 29947, 29955, 6520, 2978, 278, 402, 5933, 29891, 3080, 600, 536, 29881, 338, 263, 16955, 1559, 14089, 411, 5146, 29899, 392, 29899, 4990, 14884, 29889, 1670, 29915, 29879, 884, 263, 23429, 18296, 313, 29873, 200, 186, 734, 29897, 1048, 29871, 29896, 29900, 29900, 29885, 3412, 278, 2224, 515, 278, 1559, 14089, 29892, 5998, 6505, 714, 363, 967, 14382, 3064, 29889, 13, 8439, 5692, 304, 367, 263, 3593, 5040, 1492, 2446, 304, 278, 1559, 14089, 2086, 29892, 607, 5692, 304, 367, 373, 278, 3593, 5782, 1546, 11201, 29887, 3547, 29884, 322, 323, 5693, 948, 4940, 10288, 29899, 29891, 29899, 29880, 13493, 29889, 3940, 3138, 393, 278, 7945, 5073, 2000, 376, 8140, 600, 536, 29881, 29908, 338, 297, 6446, 278, 2743, 3080, 600, 536, 29881, 29892, 366, 864, 304, 367, 7062, 310, 11201, 29887, 3547, 29884, 29892, 451, 9755, 310, 349, 2072, 19581, 468, 29991, 13, 4013, 2383, 29920, 934, 313, 29946, 413, 29890, 29897, 3743, 982, 9748, 515, 445, 7251, 446, 322, 3697, 278, 2224, 408, 263, 2654, 1196, 2820, 278, 2425, 29889, 3439, 17632, 1722, 372, 297, 5087, 11563, 313, 2283, 1599, 4673, 29897, 322, 366, 29915, 645, 1074, 278, 5782, 297, 2989, 29889, 5254, 278, 376, 13454, 6371, 29908, 2826, 2400, 278, 9904, 982, 9748, 322, 366, 508, 11340, 263, 6282, 3412, 278, 7251, 446, 297, 29871, 29941, 29881, 29889, 13, 3644, 366, 7359, 29915, 29873, 2355, 5087, 11563, 5130, 29892, 366, 508, 1074, 278, 1021, 934, 297, 263, 1824, 763, 402, 567, 4040, 1540, 2012, 29889, 13, 8140, 600, 536, 29881, 448, 2217, 12945, 448, 28050, 315, 29893, 29885, 1913, 1279, 448, 7363, 4790, 1114, 381, 448, 341, 948, 29891, 1289, 4546, 295, 448, 2217, 12945, 448, 3080, 600, 536, 29881, 13, 29941, 29928, 6492, 310, 278, 7251, 446, 29892, 2675, 12006, 3538, 2820, 13, 1552, 364, 5525, 2038, 278, 19437, 13, 4013, 5782, 3732, 263, 12006, 3538, 2425, 2820, 278, 6683, 562, 1070, 12580, 29880, 310, 315, 29893, 29885, 315, 585, 29892, 5622, 297, 278, 5763, 708, 515, 599, 967, 23619, 29889, 739, 947, 1207, 385, 13136, 1439, 473, 304, 341, 948, 29891, 1289, 4546, 295, 29892, 577, 565, 366, 864, 304, 1207, 372, 263, 2586, 20511, 313, 4187, 451, 1568, 29897, 769, 366, 508, 5700, 1283, 393, 11155, 322, 2125, 263, 21697, 29889, 13, 4591, 278, 1559, 14089, 472, 3080, 600, 536, 29881, 29892, 278, 1804, 14080, 3275, 366, 515, 278, 8369, 3377, 373, 3233, 10898, 4940, 278, 23429, 3699, 29889, 3387, 12335, 29892, 263, 1492, 2507, 1549, 263, 12417, 4893, 366, 304, 278, 6763, 310, 278, 28996, 10784, 29890, 1549, 278, 13569, 29889, 450, 4840, 373, 278, 1492, 338, 2675, 304, 10259, 1384, 278, 298, 5603, 363, 777, 931, 29889, 2860, 1048, 29871, 29896, 8848, 366, 2041, 304, 263, 2224, 432, 651, 8236, 304, 263, 12565, 12945, 813, 1156, 599, 278, 2211, 22792, 1169, 505, 1063, 3902, 4395, 29892, 278, 736, 5782, 674, 2041, 1623, 4822, 445, 12945, 322, 1250, 1623, 304, 278, 23429, 3699, 29889, 1152, 278, 701, 1328, 5782, 591, 3013, 2175, 29889, 13, 21322, 368, 29892, 1749, 2224, 289, 1975, 4340, 2175, 2935, 322, 5833, 2935, 29892, 1603, 10784, 10549, 28325, 2354, 29889, 739, 4893, 3755, 263, 1550, 363, 278, 274, 29893, 29885, 322, 19437, 304, 2041, 964 ]
1,024
CommonCrawl
0.53058
-0.666986
0.342623
0.357707
view though, as our route climbs leftwards. (Note at this point that there are paths going directly to the lake, so if you just want to walk around the little lake and explore inside the cwm, you can. However the onward path to the west climbs very steeply up the cliff, so if you're heading towards Penygadair then you probably want to climb up around the cwm, not go into it.) The summit of Penygadair is visible on the north side of the scoop, but still looks a long way away. Eventually the path climbs up and around to the first (and lowest) of our summits, Craig Cwm Amarch. From here you get precipitous views down to the blue lake, and it makes a good first sandwich stop. From here the path drops over 50 metres (requiring some care over the uneven surface) before beginning the ascent smoothly once again towards Penygadair. On the way up, you can look rightwards back across to Craig Cwm Amarch and admire the sheer cliffs. Just below the summit of Penygadair, the Minffordd Path approaches the Pony Path coming from the left, and here the route becomes rather unclear. Some faint trails cut across early to the Pony Path, and some straggle round to the right behind the rocks. But either way, you'll soon join the clearer path and the stone pillar at the summit becomes the obvious target. From here, you can see all the way to the see, with the train bridge to Barmouth clearly visible. The views are in all directions though, and it's interesting how little of the visible scenery is manmade (like motorways, buildings, walls, power lines etc). As far as the eye can see, it's almost completely hills, rocks, forests and lakes. And the occasional sheep. The onward path leads straight across the grassy summit, gently descending towards the third, bare peak of Mynydd Moel. (Does Mynydd Moel mean 'bare mountain'?) Shortly you get to decide whether to fork rightwards on the shorter route, or keep straight on and make one more summit. It's an easy upwards stretch to Mynydd Moel though, only interrupted briefly by a ladder over a wire fence, and well rewarded with views in all directions, as well as some interesting rocks to clamber over. From here it's all downhill, the most straightforward option is to return to the wire fence and just follow it down the fall line of the hill. The other option is to leave the summit to the southeast, and follow the faint path as it curves down rightwards to meet the other paths. It's a straightforward path but difficult to follow in places, then perhaps some dead-reckoning over the grass might be necessary. This is where the tricky bit of the descent begins. The path becomes steep, and becomes covered in loose stones. Quite some care is required on the heavily-eroded terrain in order to keep one's balance, so those who don't like steep or slippy descents won't enjoy this section. But soon the tricky bit ends, the path becomes grassy again, and the views open up to see Cwm Cau from the other side, and the lake of Tal-y-llyn. Now it's just a steady, straightforward descent to the stone bridge and the path junction passed earlier, then down the steps through the forest, past the tŷ te and back to the car park. The waypoints The following are approximate coordinates for waypoints along this route. There are sufficient signposts along the way to prevent getting lost, apart from on the summit of Mynydd Moel. Latitude Longitude Altitude(m) Minffordd N 52°41'12.7 W003°52'39.2 100 junction N 52°41'29.4 W003°53'02.0 300 Craig Cwm N 52°41'31.3 W003°54'35.8 760 Penygadair N 52°41'59.2 W003°54'31.3 890 Mynydd Moel N 52°42'20.7 W003°53'05.8 85
[ 1776, 2466, 29892, 408, 1749, 5782, 10784, 5824, 2175, 2935, 29889, 313, 9842, 472, 445, 1298, 393, 727, 526, 10898, 2675, 4153, 304, 278, 19437, 29892, 577, 565, 366, 925, 864, 304, 6686, 2820, 278, 2217, 19437, 322, 26987, 2768, 278, 274, 29893, 29885, 29892, 366, 508, 29889, 2398, 278, 373, 1328, 2224, 304, 278, 5833, 10784, 5824, 1407, 1886, 1022, 368, 701, 278, 1067, 2593, 29892, 577, 565, 366, 29915, 276, 28435, 7113, 7363, 4790, 1114, 381, 769, 366, 3117, 864, 304, 10784, 29890, 701, 2820, 278, 274, 29893, 29885, 29892, 451, 748, 964, 372, 1846, 450, 2533, 2415, 310, 7363, 4790, 1114, 381, 338, 7962, 373, 278, 6641, 2625, 310, 278, 885, 26793, 29892, 541, 1603, 3430, 263, 1472, 982, 3448, 29889, 13, 2624, 1474, 278, 2224, 10784, 5824, 701, 322, 2820, 304, 278, 937, 313, 392, 19604, 29897, 310, 1749, 22792, 1169, 29892, 28050, 315, 29893, 29885, 1913, 1279, 29889, 3645, 1244, 366, 679, 25720, 277, 681, 8386, 1623, 304, 278, 7254, 19437, 29892, 322, 372, 3732, 263, 1781, 937, 11982, 16416, 5040, 29889, 3645, 1244, 278, 2224, 4441, 567, 975, 29871, 29945, 29900, 17963, 313, 276, 339, 8491, 777, 2562, 975, 278, 1597, 854, 7101, 29897, 1434, 6763, 278, 408, 1760, 10597, 368, 2748, 1449, 7113, 7363, 4790, 1114, 381, 29889, 1551, 278, 982, 701, 29892, 366, 508, 1106, 1492, 2935, 1250, 4822, 304, 28050, 315, 29893, 29885, 1913, 1279, 322, 7336, 533, 278, 1183, 261, 1067, 28324, 29889, 13, 14084, 2400, 278, 2533, 2415, 310, 7363, 4790, 1114, 381, 29892, 278, 3080, 600, 536, 29881, 10802, 13501, 278, 349, 2592, 10802, 6421, 515, 278, 2175, 29892, 322, 1244, 278, 5782, 7415, 3265, 20871, 29889, 3834, 24732, 1020, 2719, 5700, 4822, 4688, 304, 278, 349, 2592, 10802, 29892, 322, 777, 380, 1431, 6234, 4513, 304, 278, 1492, 5742, 278, 23150, 29889, 1205, 2845, 982, 29892, 366, 29915, 645, 4720, 5988, 278, 26135, 2224, 322, 278, 12565, 22549, 279, 472, 278, 2533, 2415, 7415, 278, 6924, 3646, 29889, 13, 4591, 1244, 29892, 366, 508, 1074, 599, 278, 982, 304, 278, 1074, 29892, 411, 278, 7945, 12945, 304, 2261, 21026, 9436, 7962, 29889, 450, 8386, 526, 297, 599, 18112, 2466, 29892, 322, 372, 29915, 29879, 8031, 920, 2217, 310, 278, 7962, 5763, 708, 338, 767, 26350, 313, 4561, 10992, 1994, 29892, 13814, 29892, 14603, 29892, 3081, 3454, 2992, 467, 1094, 2215, 408, 278, 10977, 508, 1074, 29892, 372, 29915, 29879, 4359, 6446, 22696, 29892, 23150, 29892, 363, 9197, 322, 425, 10794, 29889, 1126, 278, 14882, 1848, 29735, 29889, 13, 1576, 373, 1328, 2224, 11981, 7812, 4822, 278, 17455, 29891, 2533, 2415, 29892, 330, 2705, 5153, 2548, 7113, 278, 4654, 29892, 16079, 19224, 310, 341, 948, 29891, 1289, 4546, 295, 29889, 313, 25125, 341, 948, 29891, 1289, 4546, 295, 2099, 525, 18354, 14378, 29915, 7897, 13899, 368, 366, 679, 304, 11097, 3692, 304, 27350, 1492, 2935, 373, 278, 20511, 5782, 29892, 470, 3013, 7812, 373, 322, 1207, 697, 901, 2533, 2415, 29889, 739, 29915, 29879, 385, 4780, 701, 2935, 16116, 304, 341, 948, 29891, 1289, 4546, 295, 2466, 29892, 871, 27803, 23359, 491, 263, 11979, 672, 975, 263, 8014, 285, 663, 29892, 322, 1532, 20751, 287, 411, 8386, 297, 599, 18112, 29892, 408, 1532, 408, 777, 8031, 23150, 304, 1067, 314, 495, 975, 29889, 13, 4591, 1244, 372, 29915, 29879, 599, 1623, 29131, 29892, 278, 1556, 20837, 2984, 338, 304, 736, 304, 278, 8014, 285, 663, 322, 925, 1101, 372, 1623, 278, 6416, 1196, 310, 278, 17306, 29889, 450, 916, 2984, 338, 304, 5967, 278, 2533, 2415, 304, 278, 13267, 15879, 29892, 322, 1101, 278, 24732, 2224, 408, 372, 19684, 1623, 1492, 2935, 304, 5870, 278, 916, 10898, 29889, 739, 29915, 29879, 263, 20837, 2224, 541, 5189, 304, 1101, 297, 7600, 29892, 769, 6060, 777, 7123, 29899, 18217, 28259, 975, 278, 17455, 1795, 367, 5181, 29889, 13, 4013, 338, 988, 278, 28722, 2586, 310, 278, 26815, 16410, 29889, 450, 2224, 7415, 1886, 1022, 29892, 322, 7415, 10664, 297, 23819, 25702, 29889, 751, 568, 777, 2562, 338, 3734, 373, 278, 20365, 29899, 261, 6797, 28439, 297, 1797, 304, 3013, 697, 29915, 29879, 17346, 29892, 577, 1906, 1058, 1016, 29915, 29873, 763, 1886, 1022, 470, 20662, 23717, 5153, 1237, 2113, 29915, 29873, 13389, 445, 4004, 29889, 1205, 4720, 278, 28722, 2586, 10614, 29892, 278, 2224, 7415, 17455, 29891, 1449, 29892, 322, 278, 8386, 1722, 701, 304, 1074, 315, 29893, 29885, 315, 585, 515, 278, 916, 2625, 29892, 322, 278, 19437, 310, 10288, 29899, 29891, 29899, 29880, 13493, 29889, 13, 10454, 372, 29915, 29879, 925, 263, 27357, 29892, 20837, 26815, 304, 278, 12565, 12945, 322, 278, 2224, 432, 651, 4502, 8859, 29892, 769, 1623, 278, 6576, 1549, 278, 13569, 29892, 4940, 278, 260, 200, 186, 734, 322, 1250, 304, 278, 1559, 14089, 29889, 13, 1576, 982, 9748, 13, 1576, 1494, 526, 26368, 10350, 363, 982, 9748, 3412, 445, 5782, 29889, 1670, 526, 8002, 1804, 14080, 3412, 278, 982, 304, 5557, 2805, 5714, 29892, 12435, 515, 373, 278, 2533, 2415, 310, 341, 948, 29891, 1289, 4546, 295, 29889, 13, 13992, 4279, 539, 6242, 4279, 1678, 10790, 4279, 29898, 29885, 29897, 13, 8140, 600, 536, 29881, 3986, 405, 29871, 29945, 29906, 30073, 29946, 29896, 29915, 29896, 29906, 29889, 29955, 1678, 399, 29900, 29900, 29941, 30073, 29945, 29906, 29915, 29941, 29929, 29889, 29906, 418, 29896, 29900, 29900, 13, 29926, 651, 965, 405, 29871, 29945, 29906, 30073, 29946, 29896, 29915, 29906, 29929, 29889, 29946, 1678, 399, 29900, 29900, 29941, 30073, 29945, 29941, 29915, 29900, 29906, 29889, 29900, 418, 29941, 29900, 29900, 13, 29907, 336, 335, 315, 29893, 29885, 3986, 405, 29871, 29945, 29906, 30073, 29946, 29896, 29915, 29941, 29896, 29889, 29941, 1678, 399, 29900, 29900, 29941, 30073, 29945, 29946, 29915, 29941, 29945, 29889, 29947, 418, 29955, 29953, 29900, 13, 29925, 264, 4790, 1114, 381, 308, 405, 29871, 29945, 29906, 30073, 29946, 29896, 29915, 29945, 29929, 29889, 29906, 1678, 399, 29900, 29900, 29941, 30073, 29945, 29946, 29915, 29941, 29896, 29889, 29941, 418, 29947, 29929, 29900, 13, 29924, 948, 29891, 1289, 4546, 295, 4706, 405, 29871, 29945, 29906, 30073, 29946, 29906, 29915, 29906, 29900, 29889, 29955, 1678, 399, 29900, 29900, 29941, 30073, 29945, 29941, 29915, 29900, 29945, 29889, 29947, 418, 29947, 29945 ]
1,024
CommonCrawl
0.796852
-0.554808
-0.070715
0.251458
Q: Prefix for autogenerated alias on hibernate5 I'm facing an issue with the aliases generated by Hibernate based on an Entity. @Entity @Table(name="Base de Clientes") public class BaseDeClientes{ @Column(name="1011 Piso") private String _1011Piso; @Column(name="1011 Status") private String _1011Status; @Column(name="1011 Hasta") private Date _1011Hasta; @Column(name="1011 Observ") private String _1011Observ; @Column(name="Actuación") private long _actuacion; @Column(name="Año2") private long _anio2; @Column(name="MontoPN") private long montoPN; ... A LOT more... } And Hibernate generates a query like this one: select this_.[Cod] as Cod1_0_0_, this_.[1011 Hasta] as column2_0_0_, this_.[1011 Observ] as column3_0_0_, this_.[1011 Piso] as column4_0_0_, this_.[1011 Status] as column5_0_0_, this_.[3r Piso] as column6_0_0_, this_.[4o Piso] as column7_0_0_, this_.[Actuación] as Actuació8_0_0_ from [Base de Clientes] this_ where this_.[Cod]=? The problem is this (column Actuació8_0_0_ not found): net.ucanaccess.jdbc.UcanaccessSQLException: UCAExc:::4.0.0 Columna no encontrada: Actuació8_0_0_ at net.ucanaccess.jdbc.UcanaccessResultSet.getLong(UcanaccessResultSet.java:471) at org.hibernate.type.descriptor.sql.BigIntTypeDescriptor$2.doExtract(BigIntTypeDescriptor.java:63) at org.hibernate.type.descriptor.sql.BasicExtractor.extract(BasicExtractor.java:47) at org.hibernate.type.AbstractStandardBasicType.nullSafeGet(AbstractStandardBasicType.java:238) at org.hibernate.type.AbstractStandardBasicType.nullSafeGet(AbstractStandardBasicType.java:234) at org.hibernate.type.AbstractStandardBasicType.nullSafeGet(AbstractStandardBasicType.java:224) at org.hibernate.type.AbstractStandardBasicType.hydrate(AbstractStandardBasicType.java:300) at org.hibernate.persister.entity.AbstractEntityPersister.hydrate(AbstractEntityPersister.java:2738) at org.hibernate.loader.Loader.loadFromResultSet(Loader.java:1729) at org.hibernate.loader.Loader.instanceNotYetLoaded(Loader.java:1655) at org.hibernate.loader.Loader.getRow(Loader.java:1544) at org.hibernate.loader.Loader.getRowFromResultSet(Loader.java:727) at org.hibernate.loader.Loader.processResultSet(Loader.java:972) at org.hibernate.loader.Loader.doQuery(Loader.java:930) at org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:336) at org.hibernate.loader.Loader.doList(Loader.java:2617) at org.hibernate.loader.Loader.doList(Loader.java:2600) at org.hibernate.loader.Loader.listIgnoreQueryCache(Loader.java:2429) at org.hibernate.loader.Loader.list(Loader.java:2424) at org.hibernate.loader.criteria.CriteriaLoader.list(CriteriaLoader.java:109) at
[ 660, 29901, 349, 9569, 363, 1120, 468, 759, 630, 13995, 373, 26168, 29945, 306, 29915, 29885, 14870, 385, 2228, 411, 278, 14430, 2129, 5759, 491, 27772, 2729, 373, 385, 14945, 29889, 13, 29992, 6691, 13, 29992, 3562, 29898, 978, 543, 5160, 316, 12477, 267, 1159, 13, 3597, 770, 7399, 2772, 4032, 267, 29912, 13, 1678, 732, 4409, 29898, 978, 543, 29896, 29900, 29896, 29896, 349, 10718, 1159, 13, 1678, 2024, 1714, 903, 29896, 29900, 29896, 29896, 29925, 10718, 29936, 13, 13, 1678, 732, 4409, 29898, 978, 543, 29896, 29900, 29896, 29896, 16034, 1159, 13, 1678, 2024, 1714, 903, 29896, 29900, 29896, 29896, 5709, 29936, 13, 13, 1678, 732, 4409, 29898, 978, 543, 29896, 29900, 29896, 29896, 379, 5427, 1159, 13, 1678, 2024, 4712, 903, 29896, 29900, 29896, 29896, 29950, 5427, 29936, 13, 13, 1678, 732, 4409, 29898, 978, 543, 29896, 29900, 29896, 29896, 21651, 1159, 13, 1678, 2024, 1714, 903, 29896, 29900, 29896, 29896, 6039, 2140, 29936, 13, 13, 1678, 732, 4409, 29898, 978, 543, 2865, 29884, 2709, 1159, 13, 1678, 2024, 1472, 903, 627, 29884, 16337, 29936, 13, 13, 1678, 732, 4409, 29898, 978, 543, 29909, 8266, 29906, 1159, 13, 1678, 2024, 1472, 903, 273, 601, 29906, 29936, 13, 13, 1678, 732, 4409, 29898, 978, 543, 7185, 517, 15695, 1159, 13, 1678, 2024, 1472, 1601, 517, 15695, 29936, 13, 13, 1678, 2023, 319, 365, 2891, 901, 856, 13, 29913, 13, 13, 2855, 27772, 16785, 263, 2346, 763, 445, 697, 29901, 13, 2622, 13, 1678, 445, 5396, 29961, 29907, 397, 29962, 408, 315, 397, 29896, 29918, 29900, 29918, 29900, 3383, 13, 1678, 445, 5396, 29961, 29896, 29900, 29896, 29896, 379, 5427, 29962, 408, 1897, 29906, 29918, 29900, 29918, 29900, 3383, 13, 1678, 445, 5396, 29961, 29896, 29900, 29896, 29896, 21651, 29962, 408, 1897, 29941, 29918, 29900, 29918, 29900, 3383, 13, 1678, 445, 5396, 29961, 29896, 29900, 29896, 29896, 349, 10718, 29962, 408, 1897, 29946, 29918, 29900, 29918, 29900, 3383, 13, 1678, 445, 5396, 29961, 29896, 29900, 29896, 29896, 16034, 29962, 408, 1897, 29945, 29918, 29900, 29918, 29900, 3383, 13, 1678, 445, 5396, 29961, 29941, 29878, 349, 10718, 29962, 408, 1897, 29953, 29918, 29900, 29918, 29900, 3383, 13, 1678, 445, 5396, 29961, 29946, 29877, 349, 10718, 29962, 408, 1897, 29955, 29918, 29900, 29918, 29900, 3383, 13, 1678, 445, 5396, 29961, 2865, 29884, 2709, 29962, 408, 3185, 3357, 2617, 29947, 29918, 29900, 29918, 29900, 29918, 13, 3166, 13, 1678, 518, 5160, 316, 12477, 267, 29962, 445, 29918, 29871, 13, 3062, 13, 1678, 445, 5396, 29961, 29907, 397, 13192, 29973, 13, 13, 1576, 1108, 338, 445, 313, 4914, 3185, 3357, 2617, 29947, 29918, 29900, 29918, 29900, 29918, 451, 1476, 1125, 13, 1212, 29889, 1682, 273, 5943, 29889, 15686, 29889, 29965, 3068, 5943, 4176, 2451, 29901, 501, 5454, 1252, 29883, 1057, 29901, 29946, 29889, 29900, 29889, 29900, 1530, 398, 1056, 694, 14567, 1114, 29901, 3185, 3357, 2617, 29947, 29918, 29900, 29918, 29900, 29918, 13, 1678, 472, 7787, 29889, 1682, 273, 5943, 29889, 15686, 29889, 29965, 3068, 5943, 3591, 2697, 29889, 657, 8208, 29898, 29965, 3068, 5943, 3591, 2697, 29889, 1645, 29901, 29946, 29955, 29896, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 1853, 29889, 2783, 11709, 29889, 2850, 29889, 6970, 2928, 1542, 19124, 29938, 29906, 29889, 1867, 5647, 1461, 29898, 6970, 2928, 1542, 19124, 29889, 1645, 29901, 29953, 29941, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 1853, 29889, 2783, 11709, 29889, 2850, 29889, 16616, 5647, 28891, 29889, 21111, 29898, 16616, 5647, 28891, 29889, 1645, 29901, 29946, 29955, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 1853, 29889, 9118, 15449, 16616, 1542, 29889, 4304, 17618, 1725, 2577, 29898, 9118, 15449, 16616, 1542, 29889, 1645, 29901, 29906, 29941, 29947, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 1853, 29889, 9118, 15449, 16616, 1542, 29889, 4304, 17618, 1725, 2577, 29898, 9118, 15449, 16616, 1542, 29889, 1645, 29901, 29906, 29941, 29946, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 1853, 29889, 9118, 15449, 16616, 1542, 29889, 4304, 17618, 1725, 2577, 29898, 9118, 15449, 16616, 1542, 29889, 1645, 29901, 29906, 29906, 29946, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 1853, 29889, 9118, 15449, 16616, 1542, 29889, 29882, 2941, 10492, 29898, 9118, 15449, 16616, 1542, 29889, 1645, 29901, 29941, 29900, 29900, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 6774, 1531, 29889, 10041, 29889, 9118, 6691, 15136, 1531, 29889, 29882, 2941, 10492, 29898, 9118, 6691, 15136, 1531, 29889, 1645, 29901, 29906, 29955, 29941, 29947, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 12657, 29889, 10036, 29889, 1359, 4591, 3591, 2697, 29898, 10036, 29889, 1645, 29901, 29896, 29955, 29906, 29929, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 12657, 29889, 10036, 29889, 8758, 3664, 29979, 300, 29147, 29898, 10036, 29889, 1645, 29901, 29896, 29953, 29945, 29945, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 12657, 29889, 10036, 29889, 657, 4301, 29898, 10036, 29889, 1645, 29901, 29896, 29945, 29946, 29946, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 12657, 29889, 10036, 29889, 657, 4301, 4591, 3591, 2697, 29898, 10036, 29889, 1645, 29901, 29955, 29906, 29955, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 12657, 29889, 10036, 29889, 5014, 3591, 2697, 29898, 10036, 29889, 1645, 29901, 29929, 29955, 29906, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 12657, 29889, 10036, 29889, 1867, 3010, 29898, 10036, 29889, 1645, 29901, 29929, 29941, 29900, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 12657, 29889, 10036, 29889, 1867, 3010, 2855, 6644, 6646, 12283, 29931, 24683, 19466, 29898, 10036, 29889, 1645, 29901, 29941, 29941, 29953, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 12657, 29889, 10036, 29889, 1867, 1293, 29898, 10036, 29889, 1645, 29901, 29906, 29953, 29896, 29955, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 12657, 29889, 10036, 29889, 1867, 1293, 29898, 10036, 29889, 1645, 29901, 29906, 29953, 29900, 29900, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 12657, 29889, 10036, 29889, 1761, 23805, 3010, 10408, 29898, 10036, 29889, 1645, 29901, 29906, 29946, 29906, 29929, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 12657, 29889, 10036, 29889, 1761, 29898, 10036, 29889, 1645, 29901, 29906, 29946, 29906, 29946, 29897, 13, 1678, 472, 1638, 29889, 12575, 29889, 12657, 29889, 29883, 21977, 29889, 29907, 21977, 10036, 29889, 1761, 29898, 29907, 21977, 10036, 29889, 1645, 29901, 29896, 29900, 29929, 29897, 13, 1678, 472 ]
1,024
StackExchange
-1.672956
0.800079
-1.059677
-0.946381
//************************************************************************************* // ArcGIS Network Analyst extension - OD Cost Matrix Demonstration // // This simple code shows how to : // 1) Open a workspace and open a Network DataSet // 2) Create a NAContext and its NASolver // 3) Load Origins/Destinations from Feature Classes and create Network Locations // 4) Set the Solver parameters // 5) Solve an OD Cost Matrix problem // 6) Read the ODLines output to display the total number of routes found // and the route details //************************************************************************************ using System; using System.Text; using System.Windows.Forms; using ESRI.ArcGIS.Carto; using ESRI.ArcGIS.esriSystem; using ESRI.ArcGIS.Geodatabase; using ESRI.ArcGIS.Geometry; using ESRI.ArcGIS.NetworkAnalyst; namespace OD_Cost_Matrix_CSharp { public partial class frmODCostMatrixSolver : Form { private INAContext m_NAContext; public frmODCostMatrixSolver() { InitializeComponent(); Initialize(); } /// <summary> /// Initialize the solver by calling the ArcGIS Network Analyst extension functions. /// </summary> private void Initialize() { IFeatureWorkspace featureWorkspace = null; INetworkDataset networkDataset = null; try { // Open the Network Dataset IWorkspace workspace = OpenWorkspace(System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), @"ArcGIS\data\SanFrancisco\SanFrancisco.gdb")); networkDataset = OpenNetworkDataset(workspace, "Transportation", "Streets_ND"); featureWorkspace = workspace as IFeatureWorkspace; } catch (Exception ex) { System.Windows.Forms.MessageBox.Show("Unable to open dataset. Error Message: " + ex.Message); this.Close(); return; } // Create NAContext and NASolver m_NAContext = CreateSolverContext(networkDataset); // Get available cost attributes from the network dataset INetworkAttribute networkAttribute; for (int i = 0; i < networkDataset.AttributeCount - 1; i++) { networkAttribute = networkDataset.get_Attribute(i); if (networkAttribute.UsageType == esriNetworkAttributeUsageType.esriNAUTCost) { comboCostAttribute.Items.Add(networkAttribute.Name); } } comboCostAttribute.SelectedIndex = 0; textTargetFacility.Text = ""; textCutoff.Text = ""; // Load locations from feature class IFeatureClass inputFClass = featureWorkspace.OpenFeatureClass("Stores"); LoadNANetworkLocations("Origins", inputFClass, 100); inputFClass = featureWorkspace.OpenFeatureClass("Hospitals"); LoadNANetworkLocations("Destinations", inputFClass, 5100); // Create layer for network dataset and add to ArcMap INetworkLayer networkLayer = new NetworkLayerClass(); networkLayer.NetworkDataset = networkDataset; var layer = networkLayer as ILayer; layer.Name = "Network Dataset"; axMapControl.AddLayer(layer, 0); // Create a network analysis layer and add to ArcMap INALayer naLayer = m_NAContext.Solver.CreateLayer(m
[ 29871, 13, 458, 7775, 7775, 7775, 7775, 7775, 2328, 29930, 13, 458, 539, 22711, 29954, 3235, 8527, 11597, 858, 6081, 448, 438, 29928, 9839, 22513, 4432, 265, 710, 362, 13, 458, 13, 458, 259, 910, 2560, 775, 3697, 920, 304, 584, 13, 458, 268, 29896, 29897, 4673, 263, 664, 3493, 322, 1722, 263, 8527, 3630, 2697, 13, 458, 268, 29906, 29897, 6204, 263, 8598, 2677, 322, 967, 16938, 324, 369, 13, 458, 268, 29941, 29897, 16012, 29766, 1144, 29914, 14994, 262, 800, 515, 5169, 1535, 4134, 267, 322, 1653, 8527, 5976, 800, 13, 458, 268, 29946, 29897, 3789, 278, 4956, 369, 4128, 13, 458, 268, 29945, 29897, 4956, 345, 385, 438, 29928, 9839, 22513, 1108, 13, 458, 268, 29953, 29897, 7523, 278, 438, 19558, 1475, 1962, 304, 2479, 278, 3001, 1353, 310, 12049, 1476, 29871, 13, 458, 539, 322, 278, 5782, 4902, 13, 458, 7775, 7775, 7775, 7775, 7775, 2328, 13, 13, 4746, 2184, 29936, 13, 4746, 2184, 29889, 1626, 29936, 13, 4746, 2184, 29889, 7685, 29889, 12605, 29936, 13, 4746, 17956, 3960, 29889, 1433, 29883, 29954, 3235, 29889, 29907, 22171, 29936, 13, 4746, 17956, 3960, 29889, 1433, 29883, 29954, 3235, 29889, 267, 374, 3924, 29936, 13, 4746, 17956, 3960, 29889, 1433, 29883, 29954, 3235, 29889, 7999, 397, 3223, 29936, 13, 4746, 17956, 3960, 29889, 1433, 29883, 29954, 3235, 29889, 7999, 7843, 29936, 13, 4746, 17956, 3960, 29889, 1433, 29883, 29954, 3235, 29889, 13724, 21067, 858, 29936, 13, 13, 22377, 438, 29928, 29918, 25733, 29918, 14609, 29918, 29907, 2713, 6834, 13, 29912, 13, 12, 3597, 7687, 770, 1424, 29885, 29949, 12696, 520, 14609, 13296, 369, 584, 3812, 13, 12, 29912, 13, 12, 12, 9053, 2672, 29909, 2677, 286, 29918, 3521, 2677, 29936, 13, 13, 12, 12, 3597, 1424, 29885, 29949, 12696, 520, 14609, 13296, 369, 580, 13, 12, 12, 29912, 13, 12, 12, 12, 6644, 6646, 5308, 890, 13, 12, 12, 12, 6644, 6646, 890, 13, 12, 12, 29913, 13, 13, 4706, 4363, 529, 7727, 29958, 13, 12, 12, 6658, 25455, 278, 899, 369, 491, 5432, 278, 22711, 29954, 3235, 8527, 11597, 858, 6081, 3168, 29889, 13, 12, 12, 6658, 1533, 7727, 29958, 13, 12, 12, 9053, 1780, 25455, 580, 13, 12, 12, 29912, 13, 12, 12, 12, 6545, 29872, 1535, 5531, 3493, 4682, 5531, 3493, 353, 1870, 29936, 13, 12, 12, 12, 1177, 2647, 16390, 24541, 3564, 16390, 24541, 353, 1870, 29936, 13, 12, 12, 12, 2202, 13, 12, 12, 12, 29912, 13, 12, 12, 12, 12, 458, 4673, 278, 8527, 13373, 24541, 13, 12, 12, 12, 12, 29902, 5531, 3493, 664, 3493, 353, 4673, 5531, 3493, 29898, 3924, 29889, 5971, 29889, 2605, 29889, 1523, 26062, 29898, 18649, 29889, 2577, 12924, 2605, 29898, 18649, 29889, 24780, 12924, 29889, 3421, 20128, 511, 12490, 1433, 29883, 29954, 3235, 29905, 1272, 29905, 22509, 7675, 3476, 1111, 29905, 22509, 7675, 3476, 1111, 29889, 29887, 2585, 8983, 13, 18884, 3564, 16390, 24541, 353, 4673, 13724, 16390, 24541, 29898, 1287, 3493, 29892, 376, 27395, 362, 613, 376, 855, 276, 1691, 29918, 2797, 1496, 13, 12, 12, 12, 12, 14394, 5531, 3493, 353, 664, 3493, 408, 306, 19132, 5531, 3493, 29936, 13, 12, 12, 12, 29913, 13, 12, 12, 12, 12510, 313, 2451, 429, 29897, 13, 12, 12, 12, 29912, 13, 12, 12, 12, 12, 3924, 29889, 7685, 29889, 12605, 29889, 3728, 3313, 29889, 8964, 703, 2525, 519, 304, 1722, 8783, 29889, 4829, 7777, 29901, 376, 718, 429, 29889, 3728, 416, 13, 12, 12, 12, 12, 1366, 29889, 11123, 890, 13, 12, 12, 12, 12, 2457, 29936, 13, 12, 12, 12, 29913, 13, 13, 12, 12, 12, 458, 6204, 8598, 2677, 322, 16938, 324, 369, 13, 12, 12, 12, 29885, 29918, 3521, 2677, 353, 6204, 13296, 369, 2677, 29898, 11618, 16390, 24541, 416, 13, 13, 12, 12, 12, 458, 3617, 3625, 3438, 8393, 515, 278, 3564, 8783, 13, 12, 12, 12, 1177, 2647, 6708, 3564, 6708, 29936, 13, 12, 12, 12, 1454, 313, 524, 474, 353, 29871, 29900, 29936, 474, 529, 3564, 16390, 24541, 29889, 6708, 3981, 448, 29871, 29896, 29936, 474, 4862, 13, 12, 12, 12, 29912, 13, 12, 12, 12, 12, 11618, 6708, 353, 3564, 16390, 24541, 29889, 657, 29918, 6708, 29898, 29875, 416, 13, 12, 12, 12, 12, 361, 313, 11618, 6708, 29889, 27573, 1542, 1275, 831, 374, 13724, 6708, 27573, 1542, 29889, 267, 374, 3521, 2692, 25733, 29897, 13, 12, 12, 12, 12, 29912, 13, 12, 12, 12, 12, 12, 510, 833, 25733, 6708, 29889, 6913, 29889, 2528, 29898, 11618, 6708, 29889, 1170, 416, 13, 12, 12, 12, 12, 29913, 13, 12, 12, 12, 29913, 13, 12, 12, 12, 510, 833, 25733, 6708, 29889, 8592, 3220, 353, 29871, 29900, 29936, 13, 13, 12, 12, 12, 726, 8667, 29943, 562, 1793, 29889, 1626, 353, 12942, 13, 12, 12, 12, 726, 29907, 329, 2696, 29889, 1626, 353, 12942, 13, 13, 12, 12, 12, 458, 16012, 14354, 515, 4682, 770, 13, 12, 12, 12, 6545, 29872, 1535, 2385, 1881, 29943, 2385, 353, 4682, 5531, 3493, 29889, 6585, 19132, 2385, 703, 855, 2361, 1496, 13, 12, 12, 12, 5896, 29940, 2190, 2647, 3524, 800, 703, 2816, 335, 1144, 613, 1881, 29943, 2385, 29892, 29871, 29896, 29900, 29900, 416, 13, 12, 12, 12, 2080, 29943, 2385, 353, 4682, 5531, 3493, 29889, 6585, 19132, 2385, 703, 29950, 4705, 277, 1338, 1496, 13, 12, 12, 12, 5896, 29940, 2190, 2647, 3524, 800, 703, 14994, 262, 800, 613, 1881, 29943, 2385, 29892, 29871, 29945, 29896, 29900, 29900, 416, 13, 13, 12, 12, 12, 458, 6204, 7546, 363, 3564, 8783, 322, 788, 304, 22711, 3388, 13, 12, 12, 12, 1177, 2647, 14420, 3564, 14420, 353, 716, 8527, 14420, 2385, 890, 13, 12, 12, 12, 11618, 14420, 29889, 13724, 16390, 24541, 353, 3564, 16390, 24541, 29936, 13, 12, 12, 12, 1707, 7546, 353, 3564, 14420, 408, 306, 14420, 29936, 13, 12, 12, 12, 13148, 29889, 1170, 353, 376, 13724, 13373, 24541, 1769, 13, 12, 12, 12, 1165, 3388, 4809, 29889, 2528, 14420, 29898, 13148, 29892, 29871, 29900, 416, 13, 13, 12, 12, 12, 458, 6204, 263, 3564, 7418, 7546, 322, 788, 304, 22711, 3388, 13, 12, 12, 12, 1177, 1964, 2747, 1055, 14420, 353, 286, 29918, 3521, 2677, 29889, 13296, 369, 29889, 4391, 14420, 29898, 29885 ]
1,024
Github
-1.276265
0.179738
-1.11975
0.284345
_NAContext); layer = naLayer as ILayer; layer.Name = m_NAContext.Solver.DisplayName; axMapControl.AddLayer(layer, 0); } /// <summary> /// Call the OD cost matrix solver and display the results /// </summary> /// <param name="sender">Sender of the event</param> /// <param name="e">Event</param> private void cmdSolve_Click(object sender, EventArgs e) { IGPMessages gpMessages = new GPMessagesClass(); try { lstOutput.Items.Clear(); cmdSolve.Text = "Solving..."; SetSolverSettings(); // Solve if (!m_NAContext.Solver.Solve(m_NAContext, gpMessages, null)) lstOutput.Items.Add("Partial Result"); DisplayOutput(); // Zoom to the extent of the route IGeoDataset gDataset = m_NAContext.NAClasses.get_ItemByName("ODLines") as IGeoDataset; IEnvelope envelope = gDataset.Extent; if (!envelope.IsEmpty) { envelope.Expand(1.1, 1.1, true); axMapControl.Extent = envelope; } axMapControl.Refresh(); } catch (Exception ex) { lstOutput.Items.Add("Failure: " + ex.Message); } lstOutput.Items.Add(GetGPMessagesAsString(gpMessages)); cmdSolve.Text = "Find OD Cost Matrix"; } /// <summary> /// Gather the error/warning/informative messages from GPMessages /// <summary> /// <param name="gpMessages">GPMessages container</param> /// <returns>string of all GPMessages</returns> public string GetGPMessagesAsString(IGPMessages gpMessages) { // Gather Error/Warning/Informative Messages var messages = new StringBuilder(); if (gpMessages != null) { for (int i = 0; i < gpMessages.Count; i++) { IGPMessage gpMessage = gpMessages.GetMessage(i); string message = gpMessage.Description; switch (gpMessages.GetMessage(i).Type) { case esriGPMessageType.esriGPMessageTypeError: messages.AppendLine("Error " + gpMessage.ErrorCode + ": " + message); break; case esriGPMessageType.esriGPMessageTypeWarning: messages.AppendLine("Warning: " + message); break; default: messages.AppendLine("Information: " + message); break; } } } return messages.ToString(); } /// <summary> /// Display analysis results in the list box /// </summary> public void DisplayOutput() { ITable naTable = m_NAContext.NAClasses.get_ItemByName("ODLines") as ITable; if (naTable == null) lstOutput.Items.Add("Impossible to get the ODLines table"); lstOutput.Items.Add("Number of destinations found: " + naTable.RowCount(null).ToString()); lstOutput.Items.Add(""); if (naTable.RowCount(null) > 0) { lstOutput.Items.Add("OriginID, DestinationID, DestinationRank, Total_" + comboCostAttribute.Text); double total
[ 29918, 3521, 2677, 416, 13, 12, 12, 12, 13148, 353, 1055, 14420, 408, 306, 14420, 29936, 13, 12, 12, 12, 13148, 29889, 1170, 353, 286, 29918, 3521, 2677, 29889, 13296, 369, 29889, 9323, 1170, 29936, 13, 12, 12, 12, 1165, 3388, 4809, 29889, 2528, 14420, 29898, 13148, 29892, 29871, 29900, 416, 13, 12, 12, 29913, 13, 13, 12, 12, 6658, 529, 7727, 29958, 13, 12, 12, 6658, 8251, 278, 438, 29928, 3438, 4636, 899, 369, 322, 2479, 278, 2582, 13, 12, 12, 6658, 1533, 7727, 29958, 13, 12, 12, 6658, 529, 3207, 1024, 543, 15452, 1013, 29615, 310, 278, 1741, 829, 3207, 29958, 13, 12, 12, 6658, 529, 3207, 1024, 543, 29872, 1013, 2624, 829, 3207, 29958, 13, 12, 12, 9053, 1780, 9920, 13296, 345, 29918, 4164, 29898, 3318, 10004, 29892, 21374, 321, 29897, 13, 12, 12, 29912, 13, 9651, 306, 29954, 13427, 404, 1179, 330, 29886, 25510, 353, 716, 402, 13427, 404, 1179, 2385, 890, 13, 9651, 1018, 13, 12, 12, 12, 29912, 13, 12, 12, 12, 12, 20155, 6466, 29889, 6913, 29889, 18759, 890, 13, 12, 12, 12, 12, 9006, 13296, 345, 29889, 1626, 353, 376, 13296, 1747, 856, 1769, 13, 13, 12, 12, 12, 12, 2697, 13296, 369, 9585, 890, 13, 13, 12, 12, 12, 12, 458, 4956, 345, 13, 12, 12, 12, 12, 361, 5384, 29885, 29918, 3521, 2677, 29889, 13296, 369, 29889, 13296, 345, 29898, 29885, 29918, 3521, 2677, 29892, 330, 29886, 25510, 29892, 1870, 876, 13, 12, 12, 12, 12, 12, 20155, 6466, 29889, 6913, 29889, 2528, 703, 7439, 616, 7867, 1496, 13, 13, 12, 12, 12, 12, 9323, 6466, 890, 13, 13, 12, 12, 12, 12, 458, 17421, 290, 304, 278, 15834, 310, 278, 5782, 13, 12, 12, 12, 12, 6259, 29872, 29877, 16390, 24541, 330, 16390, 24541, 353, 286, 29918, 3521, 2677, 29889, 3521, 27403, 29889, 657, 29918, 2001, 2059, 1170, 703, 13668, 20261, 1159, 408, 306, 7999, 29877, 16390, 24541, 29936, 13, 12, 12, 12, 12, 29902, 2369, 21367, 427, 21367, 353, 330, 16390, 24541, 29889, 5647, 296, 29936, 13, 12, 12, 12, 12, 361, 5384, 264, 21367, 29889, 3624, 8915, 29897, 13, 12, 12, 12, 12, 29912, 13, 12, 12, 12, 12, 12, 264, 21367, 29889, 29777, 29898, 29896, 29889, 29896, 29892, 29871, 29896, 29889, 29896, 29892, 1565, 416, 13, 12, 12, 12, 12, 12, 1165, 3388, 4809, 29889, 5647, 296, 353, 427, 21367, 29936, 13, 12, 12, 12, 12, 29913, 13, 13, 12, 12, 12, 12, 1165, 3388, 4809, 29889, 27132, 890, 13, 12, 12, 12, 29913, 13, 12, 12, 12, 12510, 313, 2451, 429, 29897, 13, 12, 12, 12, 29912, 13, 18884, 24471, 6466, 29889, 6913, 29889, 2528, 703, 24155, 29901, 376, 718, 429, 29889, 3728, 416, 13, 9651, 500, 13, 13, 9651, 24471, 6466, 29889, 6913, 29889, 2528, 29898, 2577, 29954, 13427, 404, 1179, 2887, 1231, 29898, 29887, 29886, 25510, 2483, 13, 9651, 9920, 13296, 345, 29889, 1626, 353, 376, 12542, 438, 29928, 9839, 22513, 1769, 13, 12, 12, 29913, 13, 13, 4706, 4363, 529, 7727, 29958, 13, 4706, 4363, 402, 1624, 278, 1059, 29914, 27392, 29914, 262, 689, 1230, 7191, 515, 402, 13427, 404, 1179, 13, 4706, 4363, 529, 7727, 29958, 13, 4706, 4363, 529, 3207, 1024, 543, 29887, 29886, 25510, 1013, 29954, 13427, 404, 1179, 5639, 829, 3207, 29958, 13, 4706, 4363, 529, 18280, 29958, 1807, 310, 599, 402, 13427, 404, 1179, 829, 18280, 29958, 13, 4706, 970, 1347, 3617, 29954, 13427, 404, 1179, 2887, 1231, 29898, 6259, 13427, 404, 1179, 330, 29886, 25510, 29897, 13, 4706, 426, 13, 9651, 849, 402, 1624, 4829, 29914, 22709, 29914, 797, 689, 1230, 11946, 1179, 13, 9651, 722, 7191, 353, 716, 25844, 890, 13, 9651, 565, 313, 29887, 29886, 25510, 2804, 1870, 29897, 13, 9651, 426, 13, 18884, 363, 313, 524, 474, 353, 29871, 29900, 29936, 474, 529, 330, 29886, 25510, 29889, 3981, 29936, 474, 4862, 13, 18884, 426, 13, 462, 1678, 306, 19903, 3728, 330, 29886, 3728, 353, 330, 29886, 25510, 29889, 2577, 3728, 29898, 29875, 416, 13, 462, 1678, 1347, 2643, 353, 330, 29886, 3728, 29889, 9868, 29936, 13, 462, 1678, 4607, 313, 29887, 29886, 25510, 29889, 2577, 3728, 29898, 29875, 467, 1542, 29897, 13, 462, 1678, 426, 13, 462, 4706, 1206, 831, 374, 19903, 3728, 1542, 29889, 267, 374, 19903, 3728, 1542, 2392, 29901, 13, 462, 9651, 7191, 29889, 18277, 3542, 703, 2392, 376, 718, 330, 29886, 3728, 29889, 2392, 3399, 718, 29242, 376, 718, 2643, 416, 13, 462, 9651, 2867, 29936, 13, 462, 4706, 1206, 831, 374, 19903, 3728, 1542, 29889, 267, 374, 19903, 3728, 1542, 22709, 29901, 13, 462, 9651, 7191, 29889, 18277, 3542, 703, 22709, 29901, 376, 718, 2643, 416, 13, 462, 9651, 2867, 29936, 13, 462, 4706, 2322, 29901, 13, 462, 9651, 7191, 29889, 18277, 3542, 703, 20350, 29901, 376, 718, 2643, 416, 13, 462, 9651, 2867, 29936, 13, 462, 1678, 500, 13, 18884, 500, 13, 9651, 500, 13, 9651, 736, 7191, 29889, 8246, 890, 13, 4706, 500, 13, 13, 12, 12, 6658, 529, 7727, 29958, 13, 12, 12, 6658, 17440, 7418, 2582, 297, 278, 1051, 3800, 13, 12, 12, 6658, 1533, 7727, 29958, 13, 12, 12, 3597, 1780, 17440, 6466, 580, 13, 12, 12, 29912, 13, 12, 12, 12, 12210, 1055, 3562, 353, 286, 29918, 3521, 2677, 29889, 3521, 27403, 29889, 657, 29918, 2001, 2059, 1170, 703, 13668, 20261, 1159, 408, 306, 3562, 29936, 13, 12, 12, 12, 361, 313, 1056, 3562, 1275, 1870, 29897, 13, 12, 12, 12, 12, 20155, 6466, 29889, 6913, 29889, 2528, 703, 1888, 27338, 304, 679, 278, 438, 19558, 1475, 1591, 1496, 13, 13, 12, 12, 12, 20155, 6466, 29889, 6913, 29889, 2528, 703, 4557, 310, 15422, 800, 1476, 29901, 376, 718, 1055, 3562, 29889, 4301, 3981, 29898, 4304, 467, 8246, 3310, 13, 12, 12, 12, 20155, 6466, 29889, 6913, 29889, 2528, 703, 1496, 13, 13, 12, 12, 12, 361, 313, 1056, 3562, 29889, 4301, 3981, 29898, 4304, 29897, 1405, 29871, 29900, 29897, 13, 12, 12, 12, 29912, 13, 12, 12, 12, 12, 20155, 6466, 29889, 6913, 29889, 2528, 703, 23182, 1367, 29892, 15435, 3381, 1367, 29892, 15435, 3381, 29934, 804, 29892, 14990, 27508, 718, 419, 833, 25733, 6708, 29889, 1626, 416, 13, 12, 12, 12, 12, 8896, 3001 ]
1,024
Github
-1.268114
-0.195322
-1.232723
-0.25892
_impedance; long OriginID; long DestinationID; long DestinationRank; ICursor naCursor = naTable.Search(null, false); IRow naRow = naCursor.NextRow(); while (naRow != null) { OriginID = long.Parse(naRow.get_Value(naTable.FindField("OriginID")).ToString()); DestinationID = long.Parse(naRow.get_Value(naTable.FindField("DestinationID")).ToString()); DestinationRank = long.Parse(naRow.get_Value(naTable.FindField("DestinationRank")).ToString()); total_impedance = double.Parse(naRow.get_Value(naTable.FindField("Total_" + comboCostAttribute.Text)).ToString()); lstOutput.Items.Add(OriginID.ToString() + ", " + DestinationID.ToString() + ", " + DestinationRank.ToString() + ", " + total_impedance.ToString("#0.00")); naRow = naCursor.NextRow(); } } lstOutput.Refresh(); } #region Network analyst functions /// <summary> /// Create NASolver and NAContext /// </summary> /// <param name="networkDataset">Input network dataset</param> /// <returns>NAContext</returns> public INAContext CreateSolverContext(INetworkDataset networkDataset) { //Get the data element IDENetworkDataset deNDS = GetDENetworkDataset(networkDataset); INASolver naSolver = new NAODCostMatrixSolver(); INAContextEdit contextEdit = naSolver.CreateContext(deNDS, naSolver.Name) as INAContextEdit; //Bind a context using the network dataset contextEdit.Bind(networkDataset, new GPMessagesClass()); return contextEdit as INAContext; } /// <summary> /// Set solver settings /// </summary> /// <param name="strNAClassName">NAClass name</param> /// <param name="inputFC">Input feature class</param> /// <param name="maxSnapTolerance">Max snap tolerance</param> public void LoadNANetworkLocations(string strNAClassName, IFeatureClass inputFC, double maxSnapTolerance) { INamedSet classes = m_NAContext.NAClasses; INAClass naClass = classes.get_ItemByName(strNAClassName) as INAClass; // Delete existing locations from the specified NAClass naClass.DeleteAllRows(); // Create a NAClassLoader and set the snap tolerance (meters unit) INAClassLoader classLoader = new NAClassLoader(); classLoader.Locator = m_NAContext.Locator; if (maxSnapTolerance > 0) ((INALocator3)classLoader.Locator).MaxSnapTolerance = maxSnapTolerance; classLoader.NAClass = naClass; // Create field map to automatically map fields from input class to NAClass INAClassFieldMap fieldMap = new NAClassFieldMapClass(); fieldMap.CreateMapping(naClass.ClassDefinition, inputFC.Fields); classLoader.FieldMap = fieldMap; // Avoid loading network locations onto non-traversable portions of elements INALocator3 locator = m_NAContext.Locator as INALocator3; locator.ExcludeRestrictedElements = true; locator.CacheRestrictedElements(m_NAContext); // Load network locations int rowsIn = 0;
[ 29918, 6574, 287, 749, 29936, 13, 12, 12, 12, 12, 5426, 22118, 1367, 29936, 13, 12, 12, 12, 12, 5426, 15435, 3381, 1367, 29936, 13, 12, 12, 12, 12, 5426, 15435, 3381, 29934, 804, 29936, 13, 13, 12, 12, 12, 12, 2965, 5966, 1055, 19890, 353, 1055, 3562, 29889, 7974, 29898, 4304, 29892, 2089, 416, 13, 12, 12, 12, 12, 29902, 4301, 1055, 4301, 353, 1055, 19890, 29889, 9190, 4301, 890, 13, 12, 12, 12, 12, 8000, 313, 1056, 4301, 2804, 1870, 29897, 13, 12, 12, 12, 12, 29912, 13, 12, 12, 12, 12, 12, 23182, 1367, 353, 1472, 29889, 12914, 29898, 1056, 4301, 29889, 657, 29918, 1917, 29898, 1056, 3562, 29889, 12542, 3073, 703, 23182, 1367, 1159, 467, 8246, 3310, 13, 12, 12, 12, 12, 12, 14994, 3381, 1367, 353, 1472, 29889, 12914, 29898, 1056, 4301, 29889, 657, 29918, 1917, 29898, 1056, 3562, 29889, 12542, 3073, 703, 14994, 3381, 1367, 1159, 467, 8246, 3310, 13, 12, 12, 12, 12, 12, 14994, 3381, 29934, 804, 353, 1472, 29889, 12914, 29898, 1056, 4301, 29889, 657, 29918, 1917, 29898, 1056, 3562, 29889, 12542, 3073, 703, 14994, 3381, 29934, 804, 1159, 467, 8246, 3310, 13, 12, 12, 12, 12, 12, 7827, 29918, 6574, 287, 749, 353, 3765, 29889, 12914, 29898, 1056, 4301, 29889, 657, 29918, 1917, 29898, 1056, 3562, 29889, 12542, 3073, 703, 11536, 27508, 718, 419, 833, 25733, 6708, 29889, 1626, 8106, 8246, 3310, 13, 12, 12, 12, 12, 12, 20155, 6466, 29889, 6913, 29889, 2528, 29898, 23182, 1367, 29889, 8246, 580, 718, 9162, 376, 718, 15435, 3381, 1367, 29889, 8246, 580, 718, 9162, 376, 718, 13, 12, 12, 12, 12, 12, 12, 14994, 3381, 29934, 804, 29889, 8246, 580, 718, 9162, 376, 718, 3001, 29918, 6574, 287, 749, 29889, 8246, 14822, 29900, 29889, 29900, 29900, 8983, 13, 13, 12, 12, 12, 12, 12, 1056, 4301, 353, 1055, 19890, 29889, 9190, 4301, 890, 13, 12, 12, 12, 12, 29913, 13, 12, 12, 12, 29913, 13, 13, 12, 12, 12, 20155, 6466, 29889, 27132, 890, 13, 12, 12, 29913, 13, 13, 12, 12, 29937, 12803, 8527, 3483, 858, 3168, 13, 13, 12, 12, 6658, 529, 7727, 29958, 13, 12, 12, 6658, 6204, 16938, 324, 369, 322, 8598, 2677, 13, 12, 12, 6658, 1533, 7727, 29958, 13, 12, 12, 6658, 529, 3207, 1024, 543, 11618, 16390, 24541, 1013, 4290, 3564, 8783, 829, 3207, 29958, 13, 12, 12, 6658, 529, 18280, 29958, 3521, 2677, 829, 18280, 29958, 13, 12, 12, 3597, 2672, 29909, 2677, 6204, 13296, 369, 2677, 29898, 1177, 2647, 16390, 24541, 3564, 16390, 24541, 29897, 13, 12, 12, 29912, 13, 12, 12, 12, 458, 2577, 278, 848, 1543, 13, 12, 12, 12, 1367, 1430, 2647, 16390, 24541, 316, 2797, 29903, 353, 3617, 29928, 1430, 2647, 16390, 24541, 29898, 11618, 16390, 24541, 416, 13, 12, 12, 12, 1177, 3289, 324, 369, 1055, 13296, 369, 353, 716, 8598, 29949, 12696, 520, 14609, 13296, 369, 890, 13, 12, 12, 12, 1177, 29909, 2677, 6103, 3030, 6103, 353, 1055, 13296, 369, 29889, 4391, 2677, 29898, 311, 2797, 29903, 29892, 1055, 13296, 369, 29889, 1170, 29897, 408, 2672, 29909, 2677, 6103, 29936, 13, 12, 12, 12, 458, 15708, 263, 3030, 773, 278, 3564, 8783, 29871, 13, 12, 12, 12, 4703, 6103, 29889, 15708, 29898, 11618, 16390, 24541, 29892, 716, 402, 13427, 404, 1179, 2385, 3310, 13, 13, 12, 12, 12, 2457, 3030, 6103, 408, 2672, 29909, 2677, 29936, 13, 12, 12, 29913, 13, 13, 12, 12, 6658, 529, 7727, 29958, 13, 12, 12, 6658, 3789, 899, 369, 6055, 13, 12, 12, 6658, 1533, 7727, 29958, 13, 12, 12, 6658, 529, 3207, 1024, 543, 710, 3521, 23607, 1013, 3521, 2385, 1024, 829, 3207, 29958, 13, 12, 12, 6658, 529, 3207, 1024, 543, 2080, 8610, 1013, 4290, 4682, 770, 829, 3207, 29958, 13, 4706, 4363, 529, 3207, 1024, 543, 3317, 29903, 8971, 29911, 324, 261, 749, 1013, 7976, 15101, 20341, 749, 829, 3207, 29958, 13, 4706, 970, 1780, 16012, 29940, 2190, 2647, 3524, 800, 29898, 1807, 851, 3521, 23607, 29892, 306, 19132, 2385, 1881, 8610, 29892, 3765, 4236, 29903, 8971, 29911, 324, 261, 749, 29897, 13, 4706, 426, 13, 12, 12, 12, 1177, 2795, 2697, 4413, 353, 286, 29918, 3521, 2677, 29889, 3521, 27403, 29936, 13, 12, 12, 12, 1177, 29909, 2385, 1055, 2385, 353, 4413, 29889, 657, 29918, 2001, 2059, 1170, 29898, 710, 3521, 23607, 29897, 408, 2672, 29909, 2385, 29936, 13, 13, 12, 12, 12, 458, 21267, 5923, 14354, 515, 278, 6790, 8598, 2385, 13, 12, 12, 12, 1056, 2385, 29889, 12498, 3596, 10661, 890, 13, 13, 12, 12, 12, 458, 6204, 263, 8598, 20746, 322, 731, 278, 15101, 20341, 749, 313, 2527, 414, 5190, 29897, 13, 9651, 2672, 29909, 20746, 770, 10036, 353, 716, 8598, 20746, 890, 13, 9651, 770, 10036, 29889, 3524, 1061, 353, 286, 29918, 3521, 2677, 29889, 3524, 1061, 29936, 13, 9651, 565, 313, 3317, 29903, 8971, 29911, 324, 261, 749, 1405, 29871, 29900, 29897, 5135, 1177, 1964, 542, 1061, 29941, 29897, 1990, 10036, 29889, 3524, 1061, 467, 7976, 29903, 8971, 29911, 324, 261, 749, 353, 4236, 29903, 8971, 29911, 324, 261, 749, 29936, 13, 9651, 770, 10036, 29889, 3521, 2385, 353, 1055, 2385, 29936, 13, 13, 12, 12, 12, 458, 6204, 1746, 2910, 304, 6336, 2910, 4235, 515, 1881, 770, 304, 8598, 2385, 13, 12, 12, 12, 1177, 29909, 2385, 3073, 3388, 1746, 3388, 353, 716, 8598, 2385, 3073, 3388, 2385, 890, 13, 12, 12, 12, 2671, 3388, 29889, 4391, 15845, 29898, 1056, 2385, 29889, 2385, 14683, 29892, 1881, 8610, 29889, 14256, 416, 13, 9651, 770, 10036, 29889, 3073, 3388, 353, 1746, 3388, 29936, 13, 13, 12, 12, 12, 458, 319, 5405, 8363, 3564, 14354, 11480, 1661, 29899, 3018, 874, 519, 2011, 1080, 310, 3161, 13, 12, 12, 12, 1177, 1964, 542, 1061, 29941, 1180, 1061, 353, 286, 29918, 3521, 2677, 29889, 3524, 1061, 408, 2672, 1964, 542, 1061, 29941, 29936, 13, 12, 12, 12, 2029, 1061, 29889, 1252, 2325, 15078, 4146, 287, 18868, 353, 1565, 29936, 13, 12, 12, 12, 2029, 1061, 29889, 10408, 15078, 4146, 287, 18868, 29898, 29885, 29918, 3521, 2677, 416, 13, 13, 12, 12, 12, 458, 16012, 3564, 14354, 13, 12, 12, 12, 524, 4206, 797, 353, 29871, 29900, 29936, 13, 12 ]
1,024
Github
-1.482762
0.171951
-1.275761
-0.443118
int rowsLocated = 0; classLoader.Load((ICursor)inputFC.Search(null, true), null, ref rowsIn, ref rowsLocated); // Message all of the network analysis agents that the analysis context has changed. ((INAContextEdit)m_NAContext).ContextChanged(); } /// <summary> /// Set solver settings /// </summary> public void SetSolverSettings() { // Set OD solver specific settings INASolver solver = m_NAContext.Solver; INAODCostMatrixSolver odSolver = solver as INAODCostMatrixSolver; if (textCutoff.Text.Length > 0 && IsNumeric(textCutoff.Text.Trim())) odSolver.DefaultCutoff = textCutoff.Text; else odSolver.DefaultCutoff = null; if (textTargetFacility.Text.Length > 0 && IsNumeric(textTargetFacility.Text.Trim())) odSolver.DefaultTargetDestinationCount = textTargetFacility.Text; else odSolver.DefaultTargetDestinationCount = null; odSolver.OutputLines = esriNAOutputLineType.esriNAOutputLineStraight; // Set generic solver settings // Set the impedance attribute INASolverSettings solverSettings = solver as INASolverSettings; solverSettings.ImpedanceAttributeName = comboCostAttribute.Text; // Set the OneWay restriction if necessary IStringArray restrictions = solverSettings.RestrictionAttributeNames; restrictions.RemoveAll(); if (checkUseRestriction.Checked) restrictions.Add("oneway"); solverSettings.RestrictionAttributeNames = restrictions; // Restrict UTurns solverSettings.RestrictUTurns = esriNetworkForwardStarBacktrack.esriNFSBNoBacktrack; solverSettings.IgnoreInvalidLocations = true; // Set the hierarchy attribute solverSettings.UseHierarchy = checkUseHierarchy.Checked; if (solverSettings.UseHierarchy) solverSettings.HierarchyAttributeName = "HierarchyMultiNet"; // Do not forget to update the context after you set your impedance solver.UpdateContext(m_NAContext, GetDENetworkDataset(m_NAContext.NetworkDataset), new GPMessagesClass()); } /// <summary> /// Geodatabase function: open work space /// </summary> /// <param name="strGDBName">Input file name</param> /// <returns>Workspace</returns> public IWorkspace OpenWorkspace(string strGDBName) { // As Workspace Factories are Singleton objects, they must be instantiated with the Activator var workspaceFactory = System.Activator.CreateInstance(System.Type.GetTypeFromProgID("esriDataSourcesGDB.FileGDBWorkspaceFactory")) as ESRI.ArcGIS.Geodatabase.IWorkspaceFactory; return workspaceFactory.OpenFromFile(strGDBName, 0); } /// <summary> /// Geodatabase function: open network dataset /// </summary> /// <param name="workspace">Input workspace</param> /// <param name="strNDSName">Input network dataset name</param> /// <returns>NetworkDataset</returns> public INetworkDataset OpenNetworkDataset(IWorkspace workspace, string featureDatasetName, string strNDSName) { // Obtain the dataset container from the workspace var featureWorkspace = workspace as IFeatureWorkspace;
[ 12, 12, 524, 4206, 3524, 630, 353, 29871, 29900, 29936, 13, 9651, 770, 10036, 29889, 5896, 3552, 2965, 5966, 29897, 2080, 8610, 29889, 7974, 29898, 4304, 29892, 1565, 511, 1870, 29892, 2143, 4206, 797, 29892, 2143, 4206, 3524, 630, 416, 13, 13, 12, 12, 12, 458, 7777, 599, 310, 278, 3564, 7418, 19518, 393, 278, 7418, 3030, 756, 3939, 29889, 13, 9651, 5135, 1177, 29909, 2677, 6103, 29897, 29885, 29918, 3521, 2677, 467, 2677, 7590, 890, 13, 4706, 500, 13, 13, 12, 12, 6658, 529, 7727, 29958, 13, 12, 12, 6658, 3789, 899, 369, 6055, 13, 12, 12, 6658, 1533, 7727, 29958, 13, 12, 12, 3597, 1780, 3789, 13296, 369, 9585, 580, 13, 12, 12, 29912, 13, 12, 12, 12, 458, 3789, 438, 29928, 899, 369, 2702, 6055, 13, 12, 12, 12, 1177, 3289, 324, 369, 899, 369, 353, 286, 29918, 3521, 2677, 29889, 13296, 369, 29936, 13, 13, 12, 12, 12, 1177, 29909, 29949, 12696, 520, 14609, 13296, 369, 2413, 13296, 369, 353, 899, 369, 408, 2672, 29909, 29949, 12696, 520, 14609, 13296, 369, 29936, 13, 12, 12, 12, 361, 313, 726, 29907, 329, 2696, 29889, 1626, 29889, 6513, 1405, 29871, 29900, 2607, 1317, 29940, 25099, 29898, 726, 29907, 329, 2696, 29889, 1626, 29889, 2308, 326, 22130, 13, 12, 12, 12, 12, 397, 13296, 369, 29889, 4592, 29907, 329, 2696, 353, 1426, 29907, 329, 2696, 29889, 1626, 29936, 13, 12, 12, 12, 2870, 13, 12, 12, 12, 12, 397, 13296, 369, 29889, 4592, 29907, 329, 2696, 353, 1870, 29936, 13, 13, 12, 12, 12, 361, 313, 726, 8667, 29943, 562, 1793, 29889, 1626, 29889, 6513, 1405, 29871, 29900, 2607, 1317, 29940, 25099, 29898, 726, 8667, 29943, 562, 1793, 29889, 1626, 29889, 2308, 326, 22130, 13, 12, 12, 12, 12, 397, 13296, 369, 29889, 4592, 8667, 14994, 3381, 3981, 353, 1426, 8667, 29943, 562, 1793, 29889, 1626, 29936, 13, 12, 12, 12, 2870, 13, 12, 12, 12, 12, 397, 13296, 369, 29889, 4592, 8667, 14994, 3381, 3981, 353, 1870, 29936, 13, 13, 12, 12, 12, 397, 13296, 369, 29889, 6466, 20261, 353, 831, 374, 3521, 6466, 3542, 1542, 29889, 267, 374, 3521, 6466, 3542, 855, 336, 523, 29936, 13, 13, 12, 12, 12, 458, 3789, 10035, 899, 369, 6055, 13, 12, 12, 12, 458, 3789, 278, 25275, 749, 5352, 13, 12, 12, 12, 1177, 3289, 324, 369, 9585, 899, 369, 9585, 353, 899, 369, 408, 2672, 3289, 324, 369, 9585, 29936, 13, 12, 12, 12, 2929, 369, 9585, 29889, 24192, 287, 749, 6708, 1170, 353, 419, 833, 25733, 6708, 29889, 1626, 29936, 13, 13, 12, 12, 12, 458, 3789, 278, 3118, 29956, 388, 24345, 565, 5181, 13, 12, 12, 12, 29902, 1231, 2588, 25091, 353, 899, 369, 9585, 29889, 15078, 19902, 6708, 8659, 29936, 13, 12, 12, 12, 5060, 4146, 1080, 29889, 15941, 3596, 890, 13, 12, 12, 12, 361, 313, 3198, 11403, 15078, 19902, 29889, 17817, 29897, 13, 12, 12, 12, 12, 5060, 4146, 1080, 29889, 2528, 703, 650, 1582, 1496, 13, 12, 12, 12, 2929, 369, 9585, 29889, 15078, 19902, 6708, 8659, 353, 25091, 29936, 13, 13, 12, 12, 12, 458, 11654, 4146, 501, 27407, 29879, 13, 12, 12, 12, 2929, 369, 9585, 29889, 15078, 4146, 2692, 595, 29879, 353, 831, 374, 13724, 2831, 1328, 16213, 5841, 11294, 29889, 267, 374, 22498, 1977, 29877, 5841, 11294, 29936, 13, 12, 12, 12, 2929, 369, 9585, 29889, 23805, 13919, 3524, 800, 353, 1565, 29936, 13, 13, 12, 12, 12, 458, 3789, 278, 21277, 5352, 13, 12, 12, 12, 2929, 369, 9585, 29889, 11403, 29950, 631, 12040, 353, 1423, 11403, 29950, 631, 12040, 29889, 17817, 29936, 13, 12, 12, 12, 361, 313, 2929, 369, 9585, 29889, 11403, 29950, 631, 12040, 29897, 13, 18884, 899, 369, 9585, 29889, 29950, 631, 12040, 6708, 1170, 353, 376, 29950, 631, 12040, 15329, 6779, 1769, 13, 13, 12, 12, 12, 458, 1938, 451, 9566, 304, 2767, 278, 3030, 1156, 366, 731, 596, 25275, 749, 13, 12, 12, 12, 2929, 369, 29889, 6422, 2677, 29898, 29885, 29918, 3521, 2677, 29892, 3617, 29928, 1430, 2647, 16390, 24541, 29898, 29885, 29918, 3521, 2677, 29889, 13724, 16390, 24541, 511, 716, 402, 13427, 404, 1179, 2385, 3310, 13, 12, 12, 29913, 13, 13, 12, 12, 6658, 529, 7727, 29958, 13, 12, 12, 6658, 1879, 397, 3223, 740, 29901, 1722, 664, 2913, 13, 12, 12, 6658, 1533, 7727, 29958, 13, 12, 12, 6658, 529, 3207, 1024, 543, 710, 29954, 4051, 1170, 1013, 4290, 934, 1024, 829, 3207, 29958, 13, 12, 12, 6658, 529, 18280, 29958, 5531, 3493, 829, 18280, 29958, 13, 12, 12, 3597, 306, 5531, 3493, 4673, 5531, 3493, 29898, 1807, 851, 29954, 4051, 1170, 29897, 13, 12, 12, 29912, 13, 12, 12, 12, 458, 1094, 5244, 3493, 26748, 3842, 526, 6106, 11285, 3618, 29892, 896, 1818, 367, 13213, 630, 411, 278, 21775, 1061, 13, 12, 12, 12, 1707, 664, 3493, 5126, 353, 2184, 29889, 21786, 1061, 29889, 4391, 4998, 29898, 3924, 29889, 1542, 29889, 2577, 1542, 4591, 1184, 29887, 1367, 703, 267, 374, 1469, 29903, 2863, 29954, 4051, 29889, 2283, 29954, 4051, 5531, 3493, 5126, 5783, 408, 17956, 3960, 29889, 1433, 29883, 29954, 3235, 29889, 7999, 397, 3223, 29889, 29902, 5531, 3493, 5126, 29936, 13, 12, 12, 12, 2457, 664, 3493, 5126, 29889, 6585, 4591, 2283, 29898, 710, 29954, 4051, 1170, 29892, 29871, 29900, 416, 13, 12, 12, 29913, 13, 13, 12, 12, 6658, 529, 7727, 29958, 13, 12, 12, 6658, 1879, 397, 3223, 740, 29901, 1722, 3564, 8783, 13, 12, 12, 6658, 1533, 7727, 29958, 13, 12, 12, 6658, 529, 3207, 1024, 543, 1287, 3493, 1013, 4290, 664, 3493, 829, 3207, 29958, 13, 12, 12, 6658, 529, 3207, 1024, 543, 710, 2797, 29903, 1170, 1013, 4290, 3564, 8783, 1024, 829, 3207, 29958, 13, 4706, 4363, 529, 18280, 29958, 13724, 16390, 24541, 829, 18280, 29958, 13, 4706, 970, 2672, 2647, 16390, 24541, 4673, 13724, 16390, 24541, 29898, 29902, 5531, 3493, 664, 3493, 29892, 1347, 4682, 16390, 24541, 1170, 29892, 1347, 851, 2797, 29903, 1170, 29897, 13, 12, 12, 29912, 13, 12, 12, 12, 458, 4250, 2408, 278, 8783, 5639, 515, 278, 664, 3493, 13, 12, 12, 12, 1707, 4682, 5531, 3493, 353, 664, 3493, 408, 306, 19132, 5531, 3493, 29936, 13, 12, 12, 12 ]
1,024
Github
-1.371363
0.121337
-1.376181
-0.376395
Is the Open University Natural Sciences degree worth doing? Exactly what I've been saying to potential forensics students in the past. The only way to become a forensic scientist is to get a degree in a proper science subject first. It is a great shame that young women feel so put off by pure science that they would throw away a career dream because it involved doing a pure science degree. This article highlights the importance of encouraging young women into science, however offering watered down 'pop' courses for the CSI generation is not the right way to do it. Can I just say.. I have just finished my 1st year on a BSc Forensic Science course. To hear it being refered to as not a "proper science subject" is rather laughable! Units that I have completed include: Introductory Chemistry, Introductory Biology, Quantitative methods in science (Maths and Physics), Law, Lab skills and, yes, Crime scene Investigation. It has been an extremely hard year, and I can assure you it is NOT a "watered down" course. Next year is all about furthering out knowledge of science, and how it relates to law. (The definition of Forensic Science: The application of a field of science to the facts related to criminal and civil litigation). Chemist "boy" says "The only way to become a forensic scientist is to get a degree in a proper science subject first" The Forensic Science Service DOES employ students who have completed a Forensics degree, so it seems you have your facts wrong. If you re-read ALL of the article then this comfirms this. It is a great shame that many men STILL feel so patronising towards women in science. Oh, and by the way, I have NEVER watched an episode of CSI. I am hoping to be a forensic scientist and have chosen to take the pure science route and do a biology degree as I loved biology at A level and feel it will be the best option in the long run. Kazzz is correct in stating that the forensic science service does employ people with a forensic science degree however, from the information I have gotten from the FSS they do lean towards those with a Biology or Chemistry degree believing that SOME forensic courses do not cover enough of the scientific priniciples in depth. I personally did think of doing a forensic science course and had I not wanted to do Biology I may have done. How is it a proper science subject? You seem to spend half your time studying unscientific subjects - it's a hybrid subject and as far as I can tell many courses do not contain sufficient scientific content to give graduates enough experience in the skills of being a scientist. Re-read my post and you will see that as wasn't referring to you at all. Thinly vieled personal accusations of chauvanism are none-the-less insulting for the fact that they are poorly disguised as generic comments. If you knew anything about me and what I do for the promotion of science, you would realise that your accusations are quite, quite wide of the mark. Shame, it's a good programme. But i've never met an archaeology student that has watched time team, despite there being a marked increase in applications after the first screening of that programme. I do admire the superior intellect of my learned friend (err hum). However, it seems tragic that his genius comes at the price of his interpersonal skills. I would be delighted to refer him for psychosocial rehabilitation with my friend who is currently studying the "watered down" course of Forensic Psychobiology. Once he has learnt some social skills AND completed the course I am at present studying, then I shall consider engaging in a debate on this matter in a mature, non biased, non political manner. Until then I should be obliged if he would refrain from having a condescending and patronising attitude towards a person he has neither met nor knows in any depth. I'm taking the middle ground and agreeing with Olivia22. Some accreditation is needed, consistency is what lacks. Whichever way you put it, some graduates are gonna be gutted when they find they cant find work. Quite, I can see that the debate has been moved onto a slanging match but I'll try and put it back on track. My main concern as a professionally qualified chemist is that there will be people with forensic science degrees working as forensic chemists in the FSS in the near
[ 1317, 278, 4673, 3014, 18385, 17253, 7426, 7088, 2599, 29973, 13, 1252, 23617, 825, 306, 29915, 345, 1063, 5934, 304, 7037, 363, 575, 1199, 8041, 297, 278, 4940, 29889, 450, 871, 982, 304, 4953, 263, 363, 575, 293, 9638, 391, 338, 304, 679, 263, 7426, 297, 263, 1571, 10466, 4967, 937, 29889, 739, 338, 263, 2107, 28503, 393, 4123, 5866, 4459, 577, 1925, 1283, 491, 8296, 10466, 393, 896, 723, 3183, 3448, 263, 6413, 12561, 1363, 372, 9701, 2599, 263, 8296, 10466, 7426, 29889, 910, 4274, 12141, 29879, 278, 13500, 310, 18443, 292, 4123, 5866, 964, 10466, 29892, 3138, 27032, 4094, 287, 1623, 525, 7323, 29915, 21888, 363, 278, 315, 5425, 12623, 338, 451, 278, 1492, 982, 304, 437, 372, 29889, 13, 6028, 306, 925, 1827, 636, 306, 505, 925, 7743, 590, 29871, 29896, 303, 1629, 373, 263, 350, 4421, 1152, 575, 293, 9327, 3236, 29889, 1763, 8293, 372, 1641, 2737, 287, 304, 408, 451, 263, 376, 771, 546, 10466, 4967, 29908, 338, 3265, 10569, 519, 29991, 13, 2525, 1169, 393, 306, 505, 8676, 3160, 29901, 3159, 307, 2199, 706, 12677, 6020, 29892, 3159, 307, 2199, 706, 3457, 3002, 29892, 22746, 23378, 3519, 297, 10466, 313, 11309, 29879, 322, 29837, 511, 7927, 29892, 12016, 25078, 322, 29892, 4874, 29892, 29682, 9088, 28246, 362, 29889, 739, 756, 1063, 385, 14154, 2898, 1629, 29892, 322, 306, 508, 1223, 545, 366, 372, 338, 6058, 263, 376, 13405, 287, 1623, 29908, 3236, 29889, 8084, 1629, 338, 599, 1048, 4340, 292, 714, 7134, 310, 10466, 29892, 322, 920, 372, 1104, 1078, 304, 4307, 29889, 13, 29898, 1576, 5023, 310, 1152, 575, 293, 9327, 29901, 450, 2280, 310, 263, 1746, 310, 10466, 304, 278, 17099, 4475, 304, 22161, 322, 7631, 11872, 335, 362, 467, 13, 1451, 331, 391, 376, 19415, 29908, 4083, 376, 1576, 871, 982, 304, 4953, 263, 363, 575, 293, 9638, 391, 338, 304, 679, 263, 7426, 297, 263, 1571, 10466, 4967, 937, 29908, 13, 1576, 1152, 575, 293, 9327, 6692, 11662, 2890, 5703, 8041, 1058, 505, 8676, 263, 1152, 575, 1199, 7426, 29892, 577, 372, 2444, 366, 505, 596, 17099, 2743, 29889, 960, 366, 337, 29899, 949, 15149, 310, 278, 4274, 769, 445, 419, 28034, 1516, 445, 29889, 13, 3112, 338, 263, 2107, 28503, 393, 1784, 1757, 6850, 24071, 4459, 577, 18259, 5921, 7113, 5866, 297, 10466, 29889, 13, 9048, 29892, 322, 491, 278, 982, 29892, 306, 505, 14693, 5348, 20654, 385, 12720, 310, 315, 5425, 29889, 13, 29902, 626, 17231, 304, 367, 263, 363, 575, 293, 9638, 391, 322, 505, 10434, 304, 2125, 278, 8296, 10466, 5782, 322, 437, 263, 4768, 3002, 7426, 408, 306, 18012, 4768, 3002, 472, 319, 3233, 322, 4459, 372, 674, 367, 278, 1900, 2984, 297, 278, 1472, 1065, 29889, 13, 29968, 834, 5617, 338, 1959, 297, 23659, 393, 278, 363, 575, 293, 10466, 2669, 947, 5703, 2305, 411, 263, 363, 575, 293, 10466, 7426, 3138, 29892, 515, 278, 2472, 306, 505, 2355, 841, 515, 278, 383, 1799, 896, 437, 20793, 7113, 1906, 411, 263, 3457, 3002, 470, 12677, 6020, 7426, 1339, 15387, 393, 7791, 2303, 363, 575, 293, 21888, 437, 451, 4612, 3307, 310, 278, 16021, 12456, 1654, 2701, 297, 10809, 29889, 13, 29902, 22345, 1258, 1348, 310, 2599, 263, 363, 575, 293, 10466, 3236, 322, 750, 306, 451, 5131, 304, 437, 3457, 3002, 306, 1122, 505, 2309, 29889, 13, 5328, 338, 372, 263, 1571, 10466, 4967, 29973, 887, 2833, 304, 18864, 4203, 596, 931, 23382, 9644, 15566, 928, 17800, 448, 372, 29915, 29879, 263, 7498, 19515, 4967, 322, 408, 2215, 408, 306, 508, 2649, 1784, 21888, 437, 451, 1712, 8002, 16021, 2793, 304, 2367, 10591, 1078, 3307, 7271, 297, 278, 25078, 310, 1641, 263, 9638, 391, 29889, 13, 1123, 29899, 949, 590, 1400, 322, 366, 674, 1074, 393, 408, 9007, 29915, 29873, 16811, 304, 366, 472, 599, 29889, 13, 1349, 262, 368, 6316, 839, 7333, 26142, 800, 310, 521, 585, 3703, 1608, 526, 5642, 29899, 1552, 29899, 2222, 1663, 499, 292, 363, 278, 2114, 393, 896, 526, 6460, 368, 766, 2543, 3368, 408, 10035, 6589, 29889, 960, 366, 6363, 3099, 1048, 592, 322, 825, 306, 437, 363, 278, 22360, 310, 10466, 29892, 366, 723, 1855, 895, 393, 596, 26142, 800, 526, 3755, 29892, 3755, 9377, 310, 278, 2791, 29889, 13, 2713, 420, 29892, 372, 29915, 29879, 263, 1781, 19607, 29889, 1205, 474, 29915, 345, 2360, 1539, 385, 3190, 3660, 3002, 8368, 393, 756, 20654, 931, 3815, 29892, 15020, 727, 1641, 263, 10902, 7910, 297, 8324, 1156, 278, 937, 4315, 292, 310, 393, 19607, 29889, 13, 29902, 437, 7336, 533, 278, 11558, 18715, 310, 590, 10972, 5121, 313, 3127, 3165, 467, 2398, 29892, 372, 2444, 25305, 293, 393, 670, 26858, 5304, 472, 278, 8666, 310, 670, 1006, 10532, 284, 25078, 29889, 306, 723, 367, 15319, 287, 304, 2737, 1075, 363, 11643, 9064, 1455, 337, 29882, 4427, 7018, 411, 590, 5121, 1058, 338, 5279, 23382, 278, 376, 13405, 287, 1623, 29908, 3236, 310, 1152, 575, 293, 16777, 15647, 3002, 29889, 13, 26222, 540, 756, 24298, 593, 777, 5264, 25078, 5300, 8676, 278, 3236, 306, 626, 472, 2198, 23382, 29892, 769, 306, 4091, 2050, 3033, 6751, 297, 263, 27836, 373, 445, 4383, 297, 263, 286, 1535, 29892, 1661, 4768, 1463, 29892, 1661, 8604, 8214, 29889, 28609, 769, 306, 881, 367, 24474, 565, 540, 723, 2143, 6038, 515, 2534, 263, 2148, 9977, 2548, 322, 18259, 5921, 26309, 7113, 263, 2022, 540, 756, 9561, 1539, 3643, 9906, 297, 738, 10809, 29889, 13, 29902, 29915, 29885, 5622, 278, 7256, 5962, 322, 8661, 292, 411, 19802, 423, 29906, 29906, 29889, 3834, 1035, 1127, 7018, 338, 4312, 29892, 5718, 3819, 338, 825, 425, 4684, 29889, 806, 4070, 369, 982, 366, 1925, 372, 29892, 777, 10591, 1078, 526, 330, 11586, 367, 330, 4774, 287, 746, 896, 1284, 896, 5107, 1284, 664, 29889, 13, 2182, 568, 29892, 306, 508, 1074, 393, 278, 27836, 756, 1063, 6153, 11480, 263, 2243, 9776, 1993, 541, 306, 29915, 645, 1018, 322, 1925, 372, 1250, 373, 5702, 29889, 13, 3421, 1667, 5932, 408, 263, 6351, 635, 18698, 8950, 391, 338, 393, 727, 674, 367, 2305, 411, 363, 575, 293, 10466, 14496, 1985, 408, 363, 575, 293, 8950, 2879, 297, 278, 383, 1799, 297, 278, 2978 ]
1,024
C4
-0.240386
-0.029206
-0.441015
0.967378
future (if not now). The RSC does not accredit most forensic science degrees as a qualification recognised for professional membeship of the society (which is the learned society for chemistry). How can one practice as a chemist without the qualifcations to professionally recognised as one in any other field? It doesn't take a brain surgeon to realise the it would be rather easy for a defence lawyer to question a forensic 'chemist's' professional judgement if they did not possess a sufficient chemical education to obtain membership of the RSC. Until the introduction of these degrees the only way to practice forensic chemistry was to obtain a chemistry degree first, insuring that one had reached a sufficient standard in chemical education to be professionally recognised and incorporated into the RSC. Now that is not the case and I fear it may lead to the degrading of the standing of professional chemists and my views are shared by other members of the society. It is the duty of the society to ensure the professional integrity of the chemical sciences by royal charter. I agree that accreditation is the answer, but not just be the forensic science community, but also by the wider science community to ensure that those practicing as forensic chemists/biologists/physicists are confident in their right to use that title. Im a female forensic science student myself and found that article a bit patronising. The reason I enrolled for FS is because I was studying for a degree which I hated, and wanted to do something a bit more varied and interesting, with hands on practical work. I dont feel as though I am taking a "poorer" quality degree like the article implies. I am studying at an institution that has great staff and excellent facitilies. So a degree in forensic science might not lead to a career in forensic science, but, you could say the same about other degrees too. No degree guarantees employment once you have completed it, its all about the individual. I'm doing a chemistry degree, in the hope that I will get into Forensics after uni (having never watched an episode of CSI either - I've wanted to be a Forensic scientist since I was about 16). I asked several uni's about Forensics courses, as well as going to a Forensic science taster course thingie at Nottingham uni when I was in year 12, and got told by everyone to do straight science, or a straight science with a 'with' in the title (I'm doing Chemistry with Analytical Chemistry). I know that stuff like Quantum Mechanics won't be all that relevant to Forensics, however knowing how competitive the Forensics field is I'm glad I have a wider based degree that opens many more doors than a Forensic one would, if I can't get a job in Forensics. I'm all for studying a subject because you enjoy it (and are therefore likely to be good at it) but would you study architecture if you didn't want to be an architect? A couple of my friends do Chemistry with Analytical and Forensic Science at my uni, which allows them to do 20 credits each year doing a Law module or psychology (and the rest chemistry modules) - both did a law module and both said it wasn't really relevant or specific to skills they might need as a forensic scientist and both have got lower marks then they usually get because they've found it hard to write essays and do the exams as its a completely different style to anything we do in chemistry, and they get marked on law course standards so it doesn't help them at all really. I'm planning on going into forensic science - and I was advised by a few university professors to complete a straight science degree first and then a specialised post-grad degree. I find chemistry much more interesting that biology - so I'm going into a Mchem (MSci) degree next year, and hopefully will see where that takes me - still leaving my options open to other career paths. I'm not so sure how well respected the forensic science undergrad degree is, but looking at career books, to become a forensic scientist they also advice a straight science degree first - although I am sure the forensic science degree is also a challenging and interesting one. I have just finished my first year at Lincoln university, one of the few uni's in the country to be in the process of accreditation from the FSS (who employ forensic scientists). We do not have any psychology in the
[ 5434, 313, 361, 451, 1286, 467, 450, 390, 7187, 947, 451, 1035, 1127, 277, 1556, 363, 575, 293, 10466, 14496, 408, 263, 4021, 2450, 5936, 3368, 363, 10257, 3813, 267, 4034, 310, 278, 12459, 313, 4716, 338, 278, 10972, 12459, 363, 8950, 6020, 467, 1128, 508, 697, 6944, 408, 263, 8950, 391, 1728, 278, 4021, 361, 29883, 800, 304, 6351, 635, 5936, 3368, 408, 697, 297, 738, 916, 1746, 29973, 739, 1838, 29915, 29873, 2125, 263, 17294, 1190, 25339, 304, 1855, 895, 278, 372, 723, 367, 3265, 4780, 363, 263, 28399, 25008, 304, 1139, 263, 363, 575, 293, 525, 14969, 391, 29915, 29879, 29915, 10257, 6577, 29887, 882, 565, 896, 1258, 451, 22592, 263, 8002, 22233, 9793, 304, 4017, 28512, 310, 278, 390, 7187, 29889, 13, 29965, 20233, 278, 18707, 310, 1438, 14496, 278, 871, 982, 304, 6944, 363, 575, 293, 8950, 6020, 471, 304, 4017, 263, 8950, 6020, 7426, 937, 29892, 1663, 3864, 393, 697, 750, 7450, 263, 8002, 3918, 297, 22233, 9793, 304, 367, 6351, 635, 5936, 3368, 322, 11039, 630, 964, 278, 390, 7187, 29889, 2567, 393, 338, 451, 278, 1206, 322, 306, 8866, 372, 1122, 3275, 304, 278, 316, 5105, 292, 310, 278, 13407, 310, 10257, 8950, 2879, 322, 590, 8386, 526, 7258, 491, 916, 5144, 310, 278, 12459, 29889, 739, 338, 278, 13360, 310, 278, 12459, 304, 9801, 278, 10257, 28410, 310, 278, 22233, 21195, 491, 15150, 1373, 357, 29889, 306, 8661, 393, 1035, 1127, 7018, 338, 278, 1234, 29892, 541, 451, 925, 367, 278, 363, 575, 293, 10466, 7881, 29892, 541, 884, 491, 278, 25734, 10466, 7881, 304, 9801, 393, 1906, 4120, 18499, 408, 363, 575, 293, 8950, 2879, 29914, 5365, 1189, 2879, 29914, 14017, 293, 2879, 526, 24332, 297, 1009, 1492, 304, 671, 393, 3611, 29889, 13, 1888, 263, 12944, 363, 575, 293, 10466, 8368, 6142, 322, 1476, 393, 4274, 263, 2586, 18259, 5921, 29889, 450, 2769, 306, 427, 24476, 363, 383, 29903, 338, 1363, 306, 471, 23382, 363, 263, 7426, 607, 306, 298, 630, 29892, 322, 5131, 304, 437, 1554, 263, 2586, 901, 23821, 322, 8031, 29892, 411, 6567, 373, 15031, 664, 29889, 13, 29902, 4555, 4459, 408, 2466, 306, 626, 5622, 263, 376, 1129, 9386, 29908, 11029, 7426, 763, 278, 4274, 10469, 29889, 306, 626, 23382, 472, 385, 12666, 393, 756, 2107, 13925, 322, 15129, 4024, 277, 309, 583, 29889, 13, 6295, 263, 7426, 297, 363, 575, 293, 10466, 1795, 451, 3275, 304, 263, 6413, 297, 363, 575, 293, 10466, 29892, 541, 29892, 366, 1033, 1827, 278, 1021, 1048, 916, 14496, 2086, 29889, 1939, 7426, 10509, 267, 5703, 358, 2748, 366, 505, 8676, 372, 29892, 967, 599, 1048, 278, 5375, 29889, 13, 29902, 29915, 29885, 2599, 263, 8950, 6020, 7426, 29892, 297, 278, 4966, 393, 306, 674, 679, 964, 1152, 575, 1199, 1156, 443, 29875, 313, 29882, 5555, 2360, 20654, 385, 12720, 310, 315, 5425, 2845, 448, 306, 29915, 345, 5131, 304, 367, 263, 1152, 575, 293, 9638, 391, 1951, 306, 471, 1048, 29871, 29896, 29953, 467, 306, 4433, 3196, 443, 29875, 29915, 29879, 1048, 1152, 575, 1199, 21888, 29892, 408, 1532, 408, 2675, 304, 263, 1152, 575, 293, 10466, 260, 1901, 3236, 2655, 347, 472, 2216, 1259, 3391, 443, 29875, 746, 306, 471, 297, 1629, 29871, 29896, 29906, 29892, 322, 2355, 5429, 491, 14332, 304, 437, 7812, 10466, 29892, 470, 263, 7812, 10466, 411, 263, 525, 2541, 29915, 297, 278, 3611, 313, 29902, 29915, 29885, 2599, 12677, 6020, 411, 11597, 3637, 936, 12677, 6020, 467, 306, 1073, 393, 6433, 763, 22746, 398, 27439, 1199, 2113, 29915, 29873, 367, 599, 393, 8018, 304, 1152, 575, 1199, 29892, 3138, 13797, 920, 5100, 3321, 278, 1152, 575, 1199, 1746, 338, 306, 29915, 29885, 10932, 306, 505, 263, 25734, 2729, 7426, 393, 13246, 1784, 901, 24189, 1135, 263, 1152, 575, 293, 697, 723, 29892, 565, 306, 508, 29915, 29873, 679, 263, 4982, 297, 1152, 575, 1199, 29889, 306, 29915, 29885, 599, 363, 23382, 263, 4967, 1363, 366, 13389, 372, 313, 392, 526, 5480, 5517, 304, 367, 1781, 472, 372, 29897, 541, 723, 366, 6559, 11258, 565, 366, 3282, 29915, 29873, 864, 304, 367, 385, 6956, 29973, 319, 7303, 310, 590, 7875, 437, 12677, 6020, 411, 11597, 3637, 936, 322, 1152, 575, 293, 9327, 472, 590, 443, 29875, 29892, 607, 6511, 963, 304, 437, 29871, 29906, 29900, 6625, 1169, 1269, 1629, 2599, 263, 7927, 3883, 470, 11643, 3002, 313, 392, 278, 1791, 8950, 6020, 10585, 29897, 448, 1716, 1258, 263, 4307, 3883, 322, 1716, 1497, 372, 9007, 29915, 29873, 2289, 8018, 470, 2702, 304, 25078, 896, 1795, 817, 408, 263, 363, 575, 293, 9638, 391, 322, 1716, 505, 2355, 5224, 17997, 769, 896, 5491, 679, 1363, 896, 29915, 345, 1476, 372, 2898, 304, 2436, 3686, 1036, 322, 437, 278, 429, 2232, 408, 967, 263, 6446, 1422, 3114, 304, 3099, 591, 437, 297, 8950, 6020, 29892, 322, 896, 679, 10902, 373, 4307, 3236, 20801, 577, 372, 1838, 29915, 29873, 1371, 963, 472, 599, 2289, 29889, 13, 29902, 29915, 29885, 18987, 373, 2675, 964, 363, 575, 293, 10466, 448, 322, 306, 471, 594, 11292, 491, 263, 2846, 16372, 25718, 943, 304, 4866, 263, 7812, 10466, 7426, 937, 322, 769, 263, 4266, 3368, 1400, 29899, 5105, 7426, 29889, 306, 1284, 8950, 6020, 1568, 901, 8031, 393, 4768, 3002, 448, 577, 306, 29915, 29885, 2675, 964, 263, 341, 14969, 313, 4345, 455, 29897, 7426, 2446, 1629, 29892, 322, 27581, 674, 1074, 988, 393, 4893, 592, 448, 1603, 10124, 590, 3987, 1722, 304, 916, 6413, 10898, 29889, 13, 29902, 29915, 29885, 451, 577, 1854, 920, 1532, 3390, 287, 278, 363, 575, 293, 10466, 1090, 5105, 7426, 338, 29892, 541, 3063, 472, 6413, 8277, 29892, 304, 4953, 263, 363, 575, 293, 9638, 391, 896, 884, 9848, 263, 7812, 10466, 7426, 937, 448, 5998, 306, 626, 1854, 278, 363, 575, 293, 10466, 7426, 338, 884, 263, 18066, 292, 322, 8031, 697, 29889, 13, 29902, 505, 925, 7743, 590, 937, 1629, 472, 17274, 16372, 29892, 697, 310, 278, 2846, 443, 29875, 29915, 29879, 297, 278, 4234, 304, 367, 297, 278, 1889, 310, 1035, 1127, 7018, 515, 278, 383, 1799, 313, 15970, 5703, 363, 575, 293, 9638, 2879, 467, 1334, 437, 451, 505, 738, 11643, 3002, 297, 278 ]
1,024
C4
-0.443486
0.296538
-0.417031
0.727051
course at all. We completed a unit called evidence and regulatory framework taught by a lecturer from Nottingham law school. This, however, was relevant as it is an area of law more specific to Forensics. I agree with Em.... No degree guarantees employment in that specific field. Universities pride themselves on the percentage of graduates getting employment after completing their courses. I'm sure they wouldn't just dream up these so called "watered down courses" if there were no jobs at the end of it. Universities want more people to apply to them, they can then select a very high standard of student and ask for higher grades, if less people wish to do pure science they have to attract people in other ways - the article makes that clear. Then you fail to understand how a modern UK university runs. Unfortunately the university leaders are merely interested in getting more money and prestige, attracting more students helps them achieve that, they don't have to find them relevant jobs that's for sure. Having just completed a BSc in Forensic Science on an RSC accredited course, it certainly isnt an 'easier' course than any other science. As for the FSS not employing forensic science graduates, it is true they take on more biology and chemistry graduates, but only because up until now it was all they could choose from. Forensic courses have only been running for approximately 10 years, and in the future more and more graduates will find work in the forensic sector. There is an article in Science&Justice Vol.45 page 57 which lists some of the student employment opportunities after graduating in forensics from the University of Glamorgan. It includes many police, chemistry, biology, analytical, toxicology, medicine, teaching and research based employment positions attained by students. My advice to all students considering doing forensic science is, if you enjoy a challenge and have an interest in a wider range of science rather than straight chemistry or biology, then you will find forensics worthwhile and it will give you a wide range of post graduate employment. Would you care to elaborate on the contents of the correspondance in that journal for us (maybe reproduce it here if it is not too much trouble) as it is not widely available for us to read. The University of Glamorgan website is not very forthcoming about the details of its course either. In fact it isn't very forthcoming about it's faculty of 'applied science' at all. If you have any more information about the course I would be grateful. The modules on the Forensic Science course includes physical chem. organic chem. analytical chem. spectroscopy, advanced analytical chem. toxicology, fire & explosives, mathematic statistics, cell biology, molecular biology, molecular aspects of biology. The forensic aspects of the course are criminalistics, for. imaging, for. psychology, for. evidence, for. case studies, for. geology, for. microscopy and scanning elecron microscopy. The chemistry and biology modules are straight module units, which are the same as straight chemistry and biology students sit. The article in Science&Justice by Dr. Rhobert Lewis explains the universities views on funding and the value of forensic science courses, emphasising the non-forensic aspects of the course at Glamorgan and that it has high success rate of post graduate positions attained. There is then a list of just some of the positions students have taken up, the list is only from 2000-2003, many more posts have been filled since. Toxicology. Forensic Alliance. - MSc Forensic Archaeology and Crime Scene Investigation, Bradford. - PhD Restorative Dentistry (Periodontology). Bristol Dental School. - Analytical Chemist. Tripos Receptor Research Ltd. Cornwall. - Medicine (fast track). Oxford. - Office for Standards in Education (OFSTED). There is a lot of people that go into postgraduate study, that's quite interesting. Although I must say I'm extremely happy with the course I am doing, but its nice to know thats us on these watered down courses will have employment or further education options. i dont know if there is more or less postgrad study at glam than at other uni's, i would guess its about average. If there are more at Glamorgan, then it must reflect on the teaching and quality of the forensic course.
[ 3236, 472, 599, 29889, 1334, 8676, 263, 5190, 2000, 10757, 322, 24378, 7606, 6890, 16187, 491, 263, 13081, 9945, 515, 2216, 1259, 3391, 4307, 3762, 29889, 910, 29892, 3138, 29892, 471, 8018, 408, 372, 338, 385, 4038, 310, 4307, 901, 2702, 304, 1152, 575, 1199, 29889, 13, 29902, 8661, 411, 2812, 3045, 1939, 7426, 10509, 267, 5703, 358, 297, 393, 2702, 1746, 29889, 13, 11574, 1907, 24967, 6053, 373, 278, 19649, 310, 10591, 1078, 2805, 5703, 358, 1156, 1614, 1259, 1009, 21888, 29889, 306, 29915, 29885, 1854, 896, 7656, 29915, 29873, 925, 12561, 701, 1438, 577, 2000, 376, 13405, 287, 1623, 21888, 29908, 565, 727, 892, 694, 17643, 472, 278, 1095, 310, 372, 29889, 13, 11574, 1907, 864, 901, 2305, 304, 3394, 304, 963, 29892, 896, 508, 769, 1831, 263, 1407, 1880, 3918, 310, 8368, 322, 2244, 363, 6133, 867, 3076, 29892, 565, 3109, 2305, 6398, 304, 437, 8296, 10466, 896, 505, 304, 13978, 2305, 297, 916, 5837, 448, 278, 4274, 3732, 393, 2821, 29889, 13, 11760, 366, 4418, 304, 2274, 920, 263, 5400, 10261, 16372, 6057, 29889, 11511, 278, 16372, 20251, 526, 13586, 8852, 297, 2805, 901, 6909, 322, 18619, 2231, 29892, 13978, 292, 901, 8041, 6911, 963, 6176, 393, 29892, 896, 1016, 29915, 29873, 505, 304, 1284, 963, 8018, 17643, 393, 29915, 29879, 363, 1854, 29889, 13, 29950, 5555, 925, 8676, 263, 350, 4421, 297, 1152, 575, 293, 9327, 373, 385, 390, 7187, 1035, 1127, 1573, 3236, 29892, 372, 8959, 338, 593, 385, 525, 29872, 294, 631, 29915, 3236, 1135, 738, 916, 10466, 29889, 13, 2887, 363, 278, 383, 1799, 451, 5703, 292, 363, 575, 293, 10466, 10591, 1078, 29892, 372, 338, 1565, 896, 2125, 373, 901, 4768, 3002, 322, 8950, 6020, 10591, 1078, 29892, 541, 871, 1363, 701, 2745, 1286, 372, 471, 599, 896, 1033, 6755, 515, 29889, 13, 2831, 575, 293, 21888, 505, 871, 1063, 2734, 363, 14235, 29871, 29896, 29900, 2440, 29892, 322, 297, 278, 5434, 901, 322, 901, 10591, 1078, 674, 1284, 664, 297, 278, 363, 575, 293, 17535, 29889, 13, 8439, 338, 385, 4274, 297, 9327, 29987, 14084, 625, 3684, 29889, 29946, 29945, 1813, 29871, 29945, 29955, 607, 8857, 777, 310, 278, 8368, 5703, 358, 28602, 1907, 1156, 10591, 1218, 297, 363, 575, 1199, 515, 278, 3014, 310, 402, 5288, 6388, 29889, 739, 7805, 1784, 10974, 29892, 8950, 6020, 29892, 4768, 3002, 29892, 16114, 936, 29892, 304, 27375, 3002, 29892, 26602, 29892, 18819, 322, 5925, 2729, 5703, 358, 11909, 1098, 7114, 491, 8041, 29889, 13, 3421, 9848, 304, 599, 8041, 13858, 2599, 363, 575, 293, 10466, 338, 29892, 565, 366, 13389, 263, 18766, 322, 505, 385, 4066, 297, 263, 25734, 3464, 310, 10466, 3265, 1135, 7812, 8950, 6020, 470, 4768, 3002, 29892, 769, 366, 674, 1284, 363, 575, 1199, 7088, 8000, 322, 372, 674, 2367, 366, 263, 9377, 3464, 310, 1400, 10591, 403, 5703, 358, 29889, 13, 29956, 483, 366, 2562, 304, 19430, 373, 278, 8118, 310, 278, 3928, 749, 297, 393, 8955, 363, 502, 313, 26026, 18532, 372, 1244, 565, 372, 338, 451, 2086, 1568, 7458, 29897, 408, 372, 338, 451, 17644, 3625, 363, 502, 304, 1303, 29889, 13, 1576, 3014, 310, 402, 5288, 6388, 4700, 338, 451, 1407, 11483, 11506, 1048, 278, 4902, 310, 967, 3236, 2845, 29889, 512, 2114, 372, 3508, 29915, 29873, 1407, 11483, 11506, 1048, 372, 29915, 29879, 4024, 18857, 310, 525, 932, 2957, 10466, 29915, 472, 599, 29889, 960, 366, 505, 738, 901, 2472, 1048, 278, 3236, 306, 723, 367, 28656, 29889, 13, 1576, 10585, 373, 278, 1152, 575, 293, 9327, 3236, 7805, 9128, 8950, 29889, 2894, 293, 8950, 29889, 16114, 936, 8950, 29889, 6683, 307, 1557, 2270, 29892, 12862, 16114, 936, 8950, 29889, 304, 27375, 3002, 29892, 3974, 669, 20389, 3145, 29892, 5844, 19217, 13964, 29892, 3038, 4768, 3002, 29892, 13206, 16637, 4768, 3002, 29892, 13206, 16637, 21420, 310, 4768, 3002, 29889, 13, 1576, 363, 575, 293, 21420, 310, 278, 3236, 526, 22161, 6765, 29892, 363, 29889, 6382, 292, 29892, 363, 29889, 11643, 3002, 29892, 363, 29889, 10757, 29892, 363, 29889, 1206, 11898, 29892, 363, 29889, 1737, 3002, 29892, 363, 29889, 9200, 1557, 2270, 322, 885, 9450, 4552, 29883, 1617, 9200, 1557, 2270, 29889, 13, 1576, 8950, 6020, 322, 4768, 3002, 10585, 526, 7812, 3883, 10340, 29892, 607, 526, 278, 1021, 408, 7812, 8950, 6020, 322, 4768, 3002, 8041, 7845, 29889, 13, 1576, 4274, 297, 9327, 29987, 14084, 625, 491, 4942, 29889, 390, 1251, 2151, 15037, 18568, 278, 4946, 1907, 8386, 373, 5220, 292, 322, 278, 995, 310, 363, 575, 293, 10466, 21888, 29892, 19310, 5921, 278, 1661, 29899, 1454, 575, 293, 21420, 310, 278, 3236, 472, 402, 5288, 6388, 322, 393, 372, 756, 1880, 2551, 6554, 310, 1400, 10591, 403, 11909, 1098, 7114, 29889, 13, 8439, 338, 769, 263, 1051, 310, 925, 777, 310, 278, 11909, 8041, 505, 4586, 701, 29892, 278, 1051, 338, 871, 515, 29871, 29906, 29900, 29900, 29900, 29899, 29906, 29900, 29900, 29941, 29892, 1784, 901, 11803, 505, 1063, 10423, 1951, 29889, 13, 1762, 27375, 3002, 29889, 1152, 575, 293, 29855, 29889, 448, 341, 4421, 1152, 575, 293, 2595, 3660, 3002, 322, 29682, 2522, 1600, 28246, 362, 29892, 15862, 4006, 29889, 448, 1963, 29928, 11654, 272, 1230, 360, 296, 6020, 313, 29853, 609, 3002, 467, 1771, 19639, 360, 13703, 4523, 29889, 448, 11597, 3637, 936, 12677, 391, 29889, 8602, 1066, 830, 14268, 10550, 19806, 29889, 11655, 11358, 29889, 448, 27529, 313, 11255, 5702, 467, 11045, 29889, 448, 11367, 363, 6679, 3163, 297, 13151, 313, 9800, 1254, 3352, 467, 13, 8439, 338, 263, 3287, 310, 2305, 393, 748, 964, 1400, 5105, 27240, 6559, 29892, 393, 29915, 29879, 3755, 8031, 29889, 13, 2499, 3592, 306, 1818, 1827, 306, 29915, 29885, 14154, 9796, 411, 278, 3236, 306, 626, 2599, 29892, 541, 967, 7575, 304, 1073, 20952, 502, 373, 1438, 4094, 287, 1623, 21888, 674, 505, 5703, 358, 470, 4340, 9793, 3987, 29889, 13, 29875, 4555, 1073, 565, 727, 338, 901, 470, 3109, 1400, 5105, 6559, 472, 3144, 314, 1135, 472, 916, 443, 29875, 29915, 29879, 29892, 474, 723, 4140, 967, 1048, 6588, 29889, 960, 727, 526, 901, 472, 402, 5288, 6388, 29892, 769, 372, 1818, 9432, 373, 278, 18819, 322, 11029, 310, 278, 363, 575, 293, 3236, 29889, 13 ]
1,024
C4
-0.454694
0.135613
0.544361
1.134342
The Car headlights of the vehicles are designed in such style as if they would be eyes of the vehicles due to the features of visibility of light focus. The car headlights give a distinctive look to the vehicles as if eyes of different people have attractive looks on basis of shape and color. There are a number of automotive brands which offers exclusive customizable features of car headlights for your cars. Are you interested to upgrade your car headlights? It is very significant to estimate your budgetary capacity before buying the headlights. If you want to install a bulb, you just choose to buy only bulb without an arm and leg. You may search some good bulbs which emit 6000K+ bright beam of light in the marketplace. It is up to the consumer's choice how and what kind of new car headlights you are going to purchase. You have to go to marketplace to get information about the latest styles and features of the car lights in order to evaluate what are valuable lights for your cars. The market research for your vehicle's accessories is very important to enhance the looks of your vehicle impressively. You may search the vehicle's products via online shopping websites like Amazon and Ebay and it would be more feasible to take advantages of exclusive online shopping niches where the automotive products of every type and quality of different brands are available for the internet users. Autovizion is the well-known manufacturer of automotive LED headlights which have exclusive features and the vehicle owners may upgrade their vehicles so conveniently by using these LED headlights of cars. You may install these LED lights or bulbs so easily and the range of light focus is very incredible in such affordable rates. The LED bulbs are manufactured by Autovizion with the heat dissipation technology and it would be suitable for you to upgrade your headlights cars in the winter. The manufacturers of automotive products offer diverse kinds of LED bulbs, very perfect and unique ones. The LED bulbs are easy to install in any model of cars as these lights are manufactured in such unique manner that can be easily plug in when you are going to replace LED Bulbs for your cars. Halogen car bulbs are used in the latest models of cars and other vehicles with unique style and features including WhiteLite, LongLite and SafetyLite. LongLite halogen bulbs are designed to focus light to distance of about 120 feet while WhiteLite halogen bulbs are designed to give high quality light with cooling effects. SafetyLite halogen bulbs are designed to produce effective light with coating of multiple colors which helps the drivers to minimize glare to upcoming traffic on the roads visibly. HID headlights of cars are very similar to halogen bulbs and the best alternatives which can be upgraded in your vehicles effortlessly. In this way, you may upgrade your vehicle's headlights in the cheap rates in order to enhance looks of your cars strikingly. For the avid DIY, house painting is one of the best ways to show their talents and skills in home maintenance. From choosing the best wall color to brush and roller techniques, there are so many house painting tips but possibly the best tip of all in painting your own room or your house is to take it slow. Don't rush; hurrying will only place you at risk for committing costly errors. Don't worry about making a mistake since paint is easily covered up. Have ALL your painting equipment and materials ready. This beats going out and buying more stuff which will eventually waste your time. Even when you are just painting a single wall or a small room, be ready for a complete list of materials like paint, paint brushes, rollers, masking tape, newspapers, cover for furniture and for the floor, paint thinner, paint buckets, paint trays, face masks, gloves, aprons and rags. If there are special equipment that you need to use like an air brush or small delicate brushes then be ready to have these too. Be sure to clean and dust the walls beforehand so that paint may adhere better. You don't necessary need to wash the wall with soap and water, a simple dusting with a rag will do. Dust and cobwebs may cause the paint to lump and look unattractive; you may vacuum or use a broom to clean these up before you do anything. Assess the wall you are about to paint, take care of blotches, holes and patches first before applying paint. Prime and texture these so that paint will look flawless on your walls
[ 450, 1704, 2343, 4366, 29879, 310, 278, 24413, 526, 8688, 297, 1316, 3114, 408, 565, 896, 723, 367, 5076, 310, 278, 24413, 2861, 304, 278, 5680, 310, 26401, 310, 3578, 8569, 29889, 450, 1559, 2343, 4366, 29879, 2367, 263, 8359, 573, 1106, 304, 278, 24413, 408, 565, 5076, 310, 1422, 2305, 505, 13978, 573, 3430, 373, 8405, 310, 8267, 322, 2927, 29889, 1670, 526, 263, 1353, 310, 3345, 327, 573, 1506, 4167, 607, 16688, 29192, 2888, 13902, 5680, 310, 1559, 2343, 4366, 29879, 363, 596, 18647, 29889, 13, 17506, 366, 8852, 304, 14955, 596, 1559, 2343, 4366, 29879, 29973, 739, 338, 1407, 7282, 304, 12678, 596, 23562, 653, 13284, 1434, 1321, 5414, 278, 2343, 4366, 29879, 29889, 960, 366, 864, 304, 2601, 263, 8227, 29890, 29892, 366, 925, 6755, 304, 15649, 871, 8227, 29890, 1728, 385, 5075, 322, 2814, 29889, 887, 1122, 2740, 777, 1781, 8227, 5824, 607, 20076, 29871, 29953, 29900, 29900, 29900, 29968, 29974, 11785, 22913, 310, 3578, 297, 278, 9999, 6689, 29889, 13, 3112, 338, 701, 304, 278, 21691, 29915, 29879, 7348, 920, 322, 825, 2924, 310, 716, 1559, 2343, 4366, 29879, 366, 526, 2675, 304, 20590, 29889, 887, 505, 304, 748, 304, 9999, 6689, 304, 679, 2472, 1048, 278, 9281, 11949, 322, 5680, 310, 278, 1559, 26068, 297, 1797, 304, 14707, 825, 526, 21114, 26068, 363, 596, 18647, 29889, 450, 9999, 5925, 363, 596, 19716, 29915, 29879, 2130, 3842, 338, 1407, 4100, 304, 26371, 749, 278, 3430, 310, 596, 19716, 21210, 3598, 29889, 13, 3492, 1122, 2740, 278, 19716, 29915, 29879, 9316, 3025, 7395, 17394, 3262, 28007, 763, 16631, 322, 26302, 388, 322, 372, 723, 367, 901, 28326, 1821, 304, 2125, 25486, 310, 29192, 7395, 17394, 3262, 25090, 267, 988, 278, 3345, 327, 573, 9316, 310, 1432, 1134, 322, 11029, 310, 1422, 1506, 4167, 526, 3625, 363, 278, 8986, 4160, 29889, 13, 6147, 586, 466, 291, 338, 278, 1532, 29899, 5203, 12012, 9945, 310, 3345, 327, 573, 25023, 2343, 4366, 29879, 607, 505, 29192, 5680, 322, 278, 19716, 1914, 414, 1122, 14955, 1009, 24413, 577, 19192, 368, 491, 773, 1438, 25023, 2343, 4366, 29879, 310, 18647, 29889, 887, 1122, 2601, 1438, 25023, 26068, 470, 8227, 5824, 577, 5948, 322, 278, 3464, 310, 3578, 8569, 338, 1407, 29811, 1821, 297, 1316, 21750, 519, 19257, 29889, 450, 25023, 8227, 5824, 526, 12012, 2955, 491, 5202, 586, 466, 291, 411, 278, 12871, 16317, 666, 362, 15483, 322, 372, 723, 367, 13907, 363, 366, 304, 14955, 596, 2343, 4366, 29879, 18647, 297, 278, 13851, 29889, 13, 1576, 12012, 332, 414, 310, 3345, 327, 573, 9316, 5957, 16984, 17690, 310, 25023, 8227, 5824, 29892, 1407, 4922, 322, 5412, 6743, 29889, 450, 25023, 8227, 5824, 526, 4780, 304, 2601, 297, 738, 1904, 310, 18647, 408, 1438, 26068, 526, 12012, 2955, 297, 1316, 5412, 8214, 393, 508, 367, 5948, 18665, 297, 746, 366, 526, 2675, 304, 5191, 25023, 8313, 5824, 363, 596, 18647, 29889, 13, 29950, 284, 6352, 1559, 8227, 5824, 526, 1304, 297, 278, 9281, 4733, 310, 18647, 322, 916, 24413, 411, 5412, 3114, 322, 5680, 3704, 8037, 29931, 568, 29892, 6242, 29931, 568, 322, 14795, 3305, 29931, 568, 29889, 6242, 29931, 568, 8870, 6352, 8227, 5824, 526, 8688, 304, 8569, 3578, 304, 5418, 310, 1048, 29871, 29896, 29906, 29900, 6900, 1550, 8037, 29931, 568, 8870, 6352, 8227, 5824, 526, 8688, 304, 2367, 1880, 11029, 3578, 411, 12528, 292, 9545, 29889, 14795, 3305, 29931, 568, 8870, 6352, 8227, 5824, 526, 8688, 304, 7738, 11828, 3578, 411, 1302, 1218, 310, 2999, 11955, 607, 6911, 278, 18563, 304, 6260, 675, 330, 8663, 304, 701, 11506, 12469, 373, 278, 25320, 1998, 14981, 29889, 379, 1367, 2343, 4366, 29879, 310, 18647, 526, 1407, 2788, 304, 8870, 6352, 8227, 5824, 322, 278, 1900, 27809, 607, 508, 367, 20337, 287, 297, 596, 24413, 7225, 23769, 29889, 512, 445, 982, 29892, 366, 1122, 14955, 596, 19716, 29915, 29879, 2343, 4366, 29879, 297, 278, 28773, 19257, 297, 1797, 304, 26371, 749, 3430, 310, 596, 18647, 19492, 11687, 29889, 13, 2831, 278, 1029, 333, 22471, 29979, 29892, 3699, 20413, 338, 697, 310, 278, 1900, 5837, 304, 1510, 1009, 5969, 1237, 322, 25078, 297, 3271, 25413, 29889, 3645, 23906, 278, 1900, 10090, 2927, 304, 1506, 1878, 322, 9679, 261, 13698, 29892, 727, 526, 577, 1784, 3699, 20413, 25562, 541, 10075, 278, 1900, 6872, 310, 599, 297, 20413, 596, 1914, 5716, 470, 596, 3699, 338, 304, 2125, 372, 5232, 29889, 3872, 29915, 29873, 364, 1878, 29936, 12166, 719, 292, 674, 871, 2058, 366, 472, 12045, 363, 844, 5367, 3438, 368, 4436, 29889, 3872, 29915, 29873, 15982, 1048, 3907, 263, 10171, 1951, 10675, 338, 5948, 10664, 701, 29889, 13, 25559, 15149, 596, 20413, 21083, 322, 17279, 7960, 29889, 910, 367, 1446, 2675, 714, 322, 1321, 5414, 901, 6433, 607, 674, 10201, 19863, 596, 931, 29889, 7753, 746, 366, 526, 925, 20413, 263, 2323, 10090, 470, 263, 2319, 5716, 29892, 367, 7960, 363, 263, 4866, 1051, 310, 17279, 763, 10675, 29892, 10675, 1506, 1878, 267, 29892, 9679, 414, 29892, 11105, 292, 260, 4085, 29892, 14578, 21321, 29892, 4612, 363, 15252, 17252, 322, 363, 278, 11904, 29892, 10675, 266, 3993, 29892, 10675, 1321, 9737, 29892, 10675, 260, 764, 29879, 29892, 3700, 11105, 29879, 29892, 15482, 1960, 29892, 21783, 787, 322, 1153, 3174, 29889, 960, 727, 526, 4266, 21083, 393, 366, 817, 304, 671, 763, 385, 4799, 1506, 1878, 470, 2319, 628, 9593, 1506, 1878, 267, 769, 367, 7960, 304, 505, 1438, 2086, 29889, 13, 3629, 1854, 304, 5941, 322, 19786, 278, 14603, 1434, 3179, 577, 393, 10675, 1122, 594, 4150, 2253, 29889, 887, 1016, 29915, 29873, 5181, 817, 304, 471, 29882, 278, 10090, 411, 29559, 322, 4094, 29892, 263, 2560, 19786, 292, 411, 263, 17052, 674, 437, 29889, 360, 504, 322, 274, 711, 2676, 29879, 1122, 4556, 278, 10675, 304, 301, 3427, 322, 1106, 443, 1131, 1461, 573, 29936, 366, 1122, 11757, 29884, 398, 470, 671, 263, 2545, 290, 304, 5941, 1438, 701, 1434, 366, 437, 3099, 29889, 13, 7900, 404, 278, 10090, 366, 526, 1048, 304, 10675, 29892, 2125, 2562, 310, 1999, 327, 6609, 29892, 26532, 322, 13261, 267, 937, 1434, 15399, 10675, 29889, 15512, 322, 18459, 1438, 577, 393, 10675, 674, 1106, 285, 10653, 2222, 373, 596, 14603 ]
1,024
C4
-0.392541
-1.050562
-0.996018
-0.434105
. For holes and imperfections, fill these out first; let these dry before you paint. Start with the trim and the edge of the walls first before proceeding with the actual body of the wall. Place tape and newspapers on areas that you don't want to be painted. Use a brush to start with the edges and then use the roller to apply a perfect finish. In choosing paint color, buy a paint color samples or paint tiles to help you decide. You can buy these from any paint store or download it from the web. In using paint colors, choose first the primary color you wish to use and then pick the shade you will place on the different accent points of your room. For example, you pick the color brown for your bedroom; a fool-proof plan is to pick from the color palette which shade will suit best your window edges, door edges, cabinets or your windows and doors. Using a color palette will unify the color scheme of your room or home and will also be easier to pick the color that you wish to use. There are so many painting equipment and tools that may interest you like paint sprayers and compressors but make sure that you know how to operate each before you use on your walls. Most of these guarantee easy application of paint with the use of different techniques; make sure you work on a small piece of wood or wall first and practice on your strokes before you tackle larger walls and areas. Do not skimp on paint just to save on your renovation expenses. The usual ways that DIY or homeowners do to save on painting costs is diluting paint or using a cheap, low quality brand. Paint will enhance the value of your home should you decide to sell or rent it out. Following these techniques will only ruin your renovation projects. Invest in high quality paint that will make your walls beautiful and colorful for years to come. High quality paint will never peel, will reduce moisture, will repel molds, will smell less and have more advantages than regular paint. You may compare the price of regular paint and quality paint brands and see if the price difference is worth the convenience and overall value of your home. If you are painting the outdoors, make sure to plan ahead and check the weather for best painting results. If the day is overcast or there is even a slight possibility of rain, cancel your paint project. Choose days when the sun is at its peak so that you can paint with ease; you will never need to hurry as well since the weather will remain sunny all day. As obvious as it is, drinking and driving is never a good combination; not today, not tomorrow, not in the future. We all know the dangers of drinking and driving very well and what is the possible result following it. There's no denying it, we see it happening everywhere in the world. Whoever you may be, there's no exemption on the dangers you face whenever you drive under the influence of alcohol. But the sick truth is that even though we are fully aware of these risks, even if we see tragic events happen in regards to driving under the influence, still more and more incidents happens day after day after day. So in relation to this, we must take action firsthand in spreading the needed information about the dangers of drinking and driving. These incidents can and should always be avoided. Unless, you're sober and you got hit by someone who has been drunk driving, then that's a different story. But if you're behind the wheel, it's basically your better judgment versus your stubbornness. If you think that you're still capable of driving and you are able to see the road clearly, then go ahead; but if not, then it's much better you have a quick nap before you do that. During parties and such celebrations, if you are to drive your way home, better avoid drinking. But if it seems unavoidable, you should always be responsible in doing so. The best steps for us to make in order to prevent these incidents are to spread awareness especially to the youth one of the best ways to do this is when they learning to drive through professional driving schools calgary. With this present time being populated by a generation which greatly indulges in the consumption of alcohol even at their early ages, universities and colleges should always have a program in order to make this awareness a constant reminder regarding the dangers of drinking and driving. Aside from schools, community awareness should also be done. For those who are not participating in school. This would also include parents, guardians, etc. We should not also forget that us being adults, we have to set a good example
[ 29889, 1152, 26532, 322, 10112, 1725, 1953, 29892, 5445, 1438, 714, 937, 29936, 1235, 1438, 15589, 1434, 366, 10675, 29889, 13, 4763, 411, 278, 17151, 322, 278, 7636, 310, 278, 14603, 937, 1434, 8469, 292, 411, 278, 3935, 3573, 310, 278, 10090, 29889, 15484, 260, 4085, 322, 14578, 21321, 373, 10161, 393, 366, 1016, 29915, 29873, 864, 304, 367, 23139, 29889, 4803, 263, 1506, 1878, 304, 1369, 411, 278, 12770, 322, 769, 671, 278, 9679, 261, 304, 3394, 263, 4922, 8341, 29889, 13, 797, 23906, 10675, 2927, 29892, 15649, 263, 10675, 2927, 11916, 470, 10675, 260, 5475, 304, 1371, 366, 11097, 29889, 887, 508, 15649, 1438, 515, 738, 10675, 3787, 470, 5142, 372, 515, 278, 1856, 29889, 512, 773, 10675, 11955, 29892, 6755, 937, 278, 7601, 2927, 366, 6398, 304, 671, 322, 769, 5839, 278, 528, 1943, 366, 674, 2058, 373, 278, 1422, 1035, 296, 3291, 310, 596, 5716, 29889, 1152, 1342, 29892, 366, 5839, 278, 2927, 17354, 363, 596, 6592, 8345, 29936, 263, 17928, 29899, 8017, 3814, 338, 304, 5839, 515, 278, 2927, 282, 26456, 607, 528, 1943, 674, 14726, 1900, 596, 3474, 12770, 29892, 3050, 12770, 29892, 28830, 1691, 470, 596, 5417, 322, 24189, 29889, 5293, 263, 2927, 282, 26456, 674, 443, 1598, 278, 2927, 11380, 310, 596, 5716, 470, 3271, 322, 674, 884, 367, 6775, 304, 5839, 278, 2927, 393, 366, 6398, 304, 671, 29889, 13, 8439, 526, 577, 1784, 20413, 21083, 322, 8492, 393, 1122, 4066, 366, 763, 10675, 805, 764, 414, 322, 27122, 943, 541, 1207, 1854, 393, 366, 1073, 920, 304, 21994, 1269, 1434, 366, 671, 373, 596, 14603, 29889, 7849, 310, 1438, 18818, 4780, 2280, 310, 10675, 411, 278, 671, 310, 1422, 13698, 29936, 1207, 1854, 366, 664, 373, 263, 2319, 8424, 310, 8112, 470, 10090, 937, 322, 6944, 373, 596, 23351, 10794, 1434, 366, 22002, 280, 7200, 14603, 322, 10161, 29889, 13, 6132, 451, 2071, 6574, 373, 10675, 925, 304, 4078, 373, 596, 25615, 362, 1518, 11259, 29889, 450, 9670, 5837, 393, 22471, 29979, 470, 3271, 776, 414, 437, 304, 4078, 373, 20413, 21544, 338, 21749, 17068, 10675, 470, 773, 263, 28773, 29892, 4482, 11029, 14982, 29889, 349, 2365, 674, 26371, 749, 278, 995, 310, 596, 3271, 881, 366, 11097, 304, 19417, 470, 23990, 372, 714, 29889, 12206, 1438, 13698, 674, 871, 5796, 262, 596, 25615, 362, 9279, 29889, 13, 797, 10147, 297, 1880, 11029, 10675, 393, 674, 1207, 596, 14603, 9560, 322, 2927, 1319, 363, 2440, 304, 2041, 29889, 5057, 11029, 10675, 674, 2360, 1236, 295, 29892, 674, 10032, 2730, 391, 545, 29892, 674, 1634, 295, 286, 3361, 29892, 674, 1560, 514, 3109, 322, 505, 901, 25486, 1135, 4943, 10675, 29889, 887, 1122, 7252, 278, 8666, 310, 4943, 10675, 322, 11029, 10675, 1506, 4167, 322, 1074, 565, 278, 8666, 4328, 338, 7088, 278, 29703, 322, 12463, 995, 310, 596, 3271, 29889, 13, 3644, 366, 526, 20413, 278, 714, 1867, 943, 29892, 1207, 1854, 304, 3814, 14432, 322, 1423, 278, 14826, 363, 1900, 20413, 2582, 29889, 960, 278, 2462, 338, 975, 4384, 470, 727, 338, 1584, 263, 7248, 13331, 310, 17251, 29892, 12611, 596, 10675, 2060, 29889, 14542, 852, 3841, 746, 278, 6575, 338, 472, 967, 19224, 577, 393, 366, 508, 10675, 411, 16326, 29936, 366, 674, 2360, 817, 304, 12166, 719, 408, 1532, 1951, 278, 14826, 674, 3933, 6575, 1460, 599, 2462, 29889, 13, 2887, 6924, 408, 372, 338, 29892, 13748, 292, 322, 19500, 338, 2360, 263, 1781, 10296, 29936, 451, 9826, 29892, 451, 6454, 22396, 29892, 451, 297, 278, 5434, 29889, 1334, 599, 1073, 278, 270, 13873, 310, 13748, 292, 322, 19500, 1407, 1532, 322, 825, 338, 278, 1950, 1121, 1494, 372, 29889, 1670, 29915, 29879, 694, 972, 5414, 372, 29892, 591, 1074, 372, 10464, 16978, 297, 278, 3186, 29889, 11644, 1310, 366, 1122, 367, 29892, 727, 29915, 29879, 694, 11875, 683, 373, 278, 270, 13873, 366, 3700, 10940, 366, 7899, 1090, 278, 9949, 310, 27231, 5391, 29889, 1205, 278, 17319, 8760, 338, 393, 1584, 2466, 591, 526, 8072, 9543, 310, 1438, 5161, 2039, 29892, 1584, 565, 591, 1074, 25305, 293, 4959, 3799, 297, 21778, 304, 19500, 1090, 278, 9949, 29892, 1603, 901, 322, 901, 5528, 16719, 5930, 2462, 1156, 2462, 1156, 2462, 29889, 13, 6295, 297, 8220, 304, 445, 29892, 591, 1818, 2125, 3158, 937, 3179, 297, 9677, 292, 278, 4312, 2472, 1048, 278, 270, 13873, 310, 13748, 292, 322, 19500, 29889, 4525, 5528, 16719, 508, 322, 881, 2337, 367, 28305, 29889, 25870, 29892, 366, 29915, 276, 577, 495, 322, 366, 2355, 7124, 491, 4856, 1058, 756, 1063, 4192, 2960, 19500, 29892, 769, 393, 29915, 29879, 263, 1422, 5828, 29889, 1205, 565, 366, 29915, 276, 5742, 278, 18875, 29892, 372, 29915, 29879, 8830, 596, 2253, 24284, 23797, 596, 19281, 4939, 2264, 29889, 960, 366, 1348, 393, 366, 29915, 276, 1603, 15390, 310, 19500, 322, 366, 526, 2221, 304, 1074, 278, 6520, 9436, 29892, 769, 748, 14432, 29936, 541, 565, 451, 29892, 769, 372, 29915, 29879, 1568, 2253, 366, 505, 263, 4996, 9709, 1434, 366, 437, 393, 29889, 7133, 13973, 322, 1316, 10894, 800, 29892, 565, 366, 526, 304, 7899, 596, 982, 3271, 29892, 2253, 4772, 13748, 292, 29889, 1205, 565, 372, 2444, 443, 485, 3398, 519, 29892, 366, 881, 2337, 367, 14040, 297, 2599, 577, 29889, 13, 1576, 1900, 6576, 363, 502, 304, 1207, 297, 1797, 304, 5557, 1438, 5528, 16719, 526, 304, 9677, 3773, 8326, 404, 7148, 304, 278, 12397, 697, 310, 278, 1900, 5837, 304, 437, 445, 338, 746, 896, 6509, 304, 7899, 1549, 10257, 19500, 12462, 1208, 29887, 653, 29889, 2973, 445, 2198, 931, 1641, 24146, 491, 263, 12623, 607, 11180, 29156, 2710, 297, 278, 27430, 310, 27231, 5391, 1584, 472, 1009, 4688, 24646, 29892, 4946, 1907, 322, 18400, 267, 881, 2337, 505, 263, 1824, 297, 1797, 304, 1207, 445, 3773, 8326, 404, 263, 4868, 1083, 4995, 11211, 278, 270, 13873, 310, 13748, 292, 322, 19500, 29889, 1094, 680, 515, 12462, 29892, 7881, 3773, 8326, 404, 881, 884, 367, 2309, 29889, 1152, 1906, 1058, 526, 451, 5221, 1218, 297, 3762, 29889, 910, 723, 884, 3160, 11825, 29892, 8372, 5834, 29892, 2992, 29889, 1334, 881, 451, 884, 9566, 393, 502, 1641, 16157, 29879, 29892, 591, 505, 304, 731, 263, 1781, 1342 ]
1,024
C4
-0.0294
-1.132323
-1.211205
0.465222
Why Luiz Carlos Trabuco Cappi Was Chosen As Bradesco's CEO Author:acollapse Date:October 17th, 2017 Luiz Carlos Trabuco Cappi, 66, holds one of the most coveted positions in the Brazil's financial industry. He is the CEO of a bank, Bradesco, which ranks number two regarding the value of assets; before 2009, Bradesco topped the list of Brazil's private banks. According to the people close to the executive, Luiz Carlos Trabuco Cappi is a soft-spoken individual with exceptional humor and a broad smile. Controlling one of the largest banks in Brazil, many people would mistake him for an economist, an accountant, or even an engineer. However, the executive graduated in Philosophy, Sciences, and Letters from the University of São Paulo. Luiz Carlos Trabuco Cappi is also an alumnus of the Fundação School of Sociology and Politics where he pursued Socio-Psychology. Luiz Carlos Trabuco Cappi, whose first official job was at Bradesco in 1969, took over the leadership of Bradesco in 2009 replacing Márcio Cypriano. The latter had served as the CEO of Bradesco for ten years, and during his tenure, Bradesco bought ten banks such as BBVA, Boavista, BMC, etc. He also made it his personal mission to see to it that Bradesco opened new branches across the country. Of course with the new branches, Bradesco's volume of credit advanced to borrowers would increase. Replacing a man of Márcio Cypriano's stature and matching up to his level of performance (or exceeding) is no mean feat, but Luiz Carlos Trabuco Cappi was up to the task. He had amassed a wealth of experience since he first knocked on Bradesco's door and was given his first job as a clerk. Luiz Carlos Trabuco wasted no time as he embraced his roles with passion. As a results-oriented individual, he quickly got the attention of his superiors who promoted him successively through the various ranks in the institution. Before he became the CEO, Luiz Carlos Trabuco was the head of Bradesco Seguros—an insurance company owned by Bradesco. He had assumed the leadership of Bradesco Seguros in 2003. With a career spanning 40 decades, Luiz Carlos Trabuco Cappi was the most qualified candidate to replace Márcio Cypriano. As a newly elected CEO, Luiz Carlos Trabuco Cappi vowed to continue Márcio Cypriano's legacy. In an interview conducted at the time with Trabuco as a guest, he stated that he was concerned with improving all Bradesco's branches regarding service delivery to clients. In reference to recent developments in the industry (Bradesco being dethroned by Itaú Unibanco as the leading private bank in Brazil), Luiz Carlos Trabuco Cappi affirmed that his administration was unconcerned with market leadership. Luiz Carlos Trabuco Cappi strived to improve Bradesco in different ingenious ways. For example, he established Unibrad Corporate University. The role of the university would be to oversee the personal development and growth of Bradesco's employees and executives in tandem with the growth of the bank. This year, Unibrad was elected by the GlobalCCU Awards as the "Best Corporate University in the World." He also stressed the importance of poaching leaders from the firm's competitors, as opposed to promoting people within, as they would inject fresh ideas into Bradesco's management. In 2015, Luiz Carlos Trabuco Cappi made the most significant announcement regarding Bradesco's growth. With the approval of Lázaro Brandão, Bradesco would take over the management of the Brazilian HSBC in a deal that would cost Bradesco $5.2 billion. The inorganic growth strategy would tremendously boost the company's control of the financial market. In fact, it would put it ahead of Itaú Unibanco regarding branch network, number of account holders, and total investment funds. Luiz Carlos Trabuco Cappi suggested that the purchase would put Bradesco six years ahead of itself. For more information about Luiz Carlos Trabuco C
[ 3750, 3182, 466, 10815, 3201, 2423, 1111, 315, 932, 29875, 12547, 678, 7749, 1094, 1771, 3076, 1111, 29915, 29879, 14645, 29949, 13, 13720, 29901, 562, 324, 13938, 4712, 29901, 25375, 4950, 29871, 29896, 29955, 386, 29892, 29871, 29906, 29900, 29896, 29955, 13, 24126, 466, 10815, 3201, 2423, 1111, 315, 932, 29875, 29892, 29871, 29953, 29953, 29892, 8640, 697, 310, 278, 1556, 18838, 300, 287, 11909, 297, 278, 16078, 29915, 29879, 18161, 13661, 29889, 940, 338, 278, 14645, 29949, 310, 263, 9124, 29892, 1771, 3076, 1111, 29892, 607, 27871, 1353, 1023, 11211, 278, 995, 310, 21608, 29936, 1434, 29871, 29906, 29900, 29900, 29929, 29892, 1771, 3076, 1111, 304, 2986, 278, 1051, 310, 16078, 29915, 29879, 2024, 24388, 29889, 7579, 304, 278, 2305, 3802, 304, 278, 22760, 29892, 3182, 466, 10815, 3201, 2423, 1111, 315, 932, 29875, 338, 263, 4964, 29899, 1028, 4476, 5375, 411, 3682, 284, 27448, 322, 263, 7300, 17819, 29889, 2866, 22155, 697, 310, 278, 10150, 24388, 297, 16078, 29892, 1784, 2305, 723, 10171, 1075, 363, 385, 7766, 391, 29892, 385, 3633, 424, 29892, 470, 1584, 385, 22055, 29889, 13, 17245, 29892, 278, 22760, 23588, 297, 16407, 29891, 29892, 17253, 29892, 322, 2803, 2153, 515, 278, 3014, 310, 12281, 16038, 29889, 3182, 466, 10815, 3201, 2423, 1111, 315, 932, 29875, 338, 884, 385, 394, 1227, 375, 310, 278, 13249, 8298, 4523, 310, 5329, 3002, 322, 6934, 1199, 988, 540, 12359, 6742, 1105, 3934, 29899, 29925, 29879, 3376, 3002, 29889, 13, 24126, 466, 10815, 3201, 2423, 1111, 315, 932, 29875, 29892, 5069, 937, 6221, 4982, 471, 472, 1771, 3076, 1111, 297, 29871, 29896, 29929, 29953, 29929, 29892, 3614, 975, 278, 26001, 310, 1771, 3076, 1111, 297, 29871, 29906, 29900, 29900, 29929, 15270, 341, 3054, 3934, 315, 1478, 374, 1562, 29889, 450, 7480, 750, 6766, 408, 278, 14645, 29949, 310, 1771, 3076, 1111, 363, 3006, 2440, 29892, 322, 2645, 670, 3006, 545, 29892, 1771, 3076, 1111, 18093, 3006, 24388, 1316, 408, 29449, 20449, 29892, 1952, 485, 2079, 29892, 350, 12513, 29892, 2992, 29889, 940, 884, 1754, 372, 670, 7333, 10655, 304, 1074, 304, 372, 393, 1771, 3076, 1111, 6496, 716, 14202, 4822, 278, 4234, 29889, 4587, 3236, 411, 278, 716, 14202, 29892, 1771, 3076, 1111, 29915, 29879, 7977, 310, 16200, 12862, 304, 27942, 414, 723, 7910, 29889, 13, 5612, 433, 3277, 263, 767, 310, 341, 3054, 3934, 315, 1478, 374, 1562, 29915, 29879, 1002, 545, 322, 9686, 701, 304, 670, 3233, 310, 4180, 313, 272, 13461, 292, 29897, 338, 694, 2099, 1238, 271, 29892, 541, 3182, 466, 10815, 3201, 2423, 1111, 315, 932, 29875, 471, 701, 304, 278, 3414, 29889, 940, 750, 626, 465, 287, 263, 17173, 310, 7271, 1951, 540, 937, 18232, 287, 373, 1771, 3076, 1111, 29915, 29879, 3050, 322, 471, 2183, 670, 937, 4982, 408, 263, 1067, 5968, 29889, 3182, 466, 10815, 3201, 2423, 1111, 471, 9446, 694, 931, 408, 540, 7232, 945, 287, 670, 16178, 411, 15935, 29889, 1094, 263, 2582, 29899, 12236, 287, 5375, 29892, 540, 9098, 2355, 278, 8570, 310, 670, 2428, 18930, 1058, 21201, 1075, 2551, 3598, 1549, 278, 5164, 27871, 297, 278, 12666, 29889, 10949, 540, 3897, 278, 14645, 29949, 29892, 3182, 466, 10815, 3201, 2423, 1111, 471, 278, 2343, 310, 1771, 3076, 1111, 6667, 29884, 1883, 30003, 273, 1663, 18541, 5001, 15205, 491, 1771, 3076, 1111, 29889, 940, 750, 12023, 278, 26001, 310, 1771, 3076, 1111, 6667, 29884, 1883, 297, 29871, 29906, 29900, 29900, 29941, 29889, 2973, 263, 6413, 805, 9450, 29871, 29946, 29900, 1602, 3076, 29892, 3182, 466, 10815, 3201, 2423, 1111, 315, 932, 29875, 471, 278, 1556, 18698, 14020, 304, 5191, 341, 3054, 3934, 315, 1478, 374, 1562, 29889, 13, 2887, 263, 15141, 11467, 14645, 29949, 29892, 3182, 466, 10815, 3201, 2423, 1111, 315, 932, 29875, 325, 20937, 304, 6773, 341, 3054, 3934, 315, 1478, 374, 1562, 29915, 29879, 25000, 29889, 512, 385, 15593, 18043, 472, 278, 931, 411, 3201, 2423, 1111, 408, 263, 17838, 29892, 540, 8703, 393, 540, 471, 15041, 411, 4857, 1747, 599, 1771, 3076, 1111, 29915, 29879, 14202, 11211, 2669, 28289, 304, 13154, 29889, 512, 3407, 304, 7786, 2693, 1860, 297, 278, 13661, 313, 12432, 3076, 1111, 1641, 270, 621, 1617, 287, 491, 739, 29874, 30030, 853, 747, 273, 1111, 408, 278, 8236, 2024, 9124, 297, 16078, 511, 3182, 466, 10815, 3201, 2423, 1111, 315, 932, 29875, 2756, 381, 2168, 393, 670, 17517, 471, 443, 535, 29883, 824, 287, 411, 9999, 26001, 29889, 13, 24126, 466, 10815, 3201, 2423, 1111, 315, 932, 29875, 380, 1150, 287, 304, 11157, 1771, 3076, 1111, 297, 1422, 24386, 2738, 5837, 29889, 1152, 1342, 29892, 540, 7841, 853, 747, 3665, 12767, 403, 3014, 29889, 450, 6297, 310, 278, 16372, 723, 367, 304, 975, 4149, 278, 7333, 5849, 322, 14321, 310, 1771, 3076, 1111, 29915, 29879, 22873, 322, 6704, 3145, 297, 10345, 2310, 411, 278, 14321, 310, 278, 9124, 29889, 910, 1629, 29892, 853, 747, 3665, 471, 11467, 491, 278, 12002, 4174, 29965, 9220, 408, 278, 376, 25353, 12767, 403, 3014, 297, 278, 2787, 1213, 940, 884, 851, 11517, 278, 13500, 310, 772, 9733, 20251, 515, 278, 9226, 29915, 29879, 5100, 17259, 29892, 408, 15869, 304, 2504, 11427, 2305, 2629, 29892, 408, 896, 723, 11658, 10849, 7014, 964, 1771, 3076, 1111, 29915, 29879, 10643, 29889, 13, 797, 29871, 29906, 29900, 29896, 29945, 29892, 3182, 466, 10815, 3201, 2423, 1111, 315, 932, 29875, 1754, 278, 1556, 7282, 7475, 13561, 11211, 1771, 3076, 1111, 29915, 29879, 14321, 29889, 2973, 278, 2134, 791, 310, 365, 5058, 8854, 18007, 1368, 29892, 1771, 3076, 1111, 723, 2125, 975, 278, 10643, 310, 278, 16078, 713, 379, 1744, 29907, 297, 263, 5376, 393, 723, 3438, 1771, 3076, 1111, 395, 29945, 29889, 29906, 24464, 29889, 450, 297, 6388, 293, 14321, 13705, 723, 14586, 355, 5794, 14505, 278, 5001, 29915, 29879, 2761, 310, 278, 18161, 9999, 29889, 512, 2114, 29892, 372, 723, 1925, 372, 14432, 310, 739, 29874, 30030, 853, 747, 273, 1111, 11211, 5443, 3564, 29892, 1353, 310, 3633, 4808, 414, 29892, 322, 3001, 13258, 358, 29199, 29889, 3182, 466, 10815, 3201, 2423, 1111, 315, 932, 29875, 7829, 393, 278, 20590, 723, 1925, 1771, 3076, 1111, 4832, 2440, 14432, 310, 3528, 29889, 13, 2831, 901, 2472, 1048, 3182, 466, 10815, 3201, 2423, 1111, 315 ]
1,024
CommonCrawl
0.777833
0.027897
1.080535
0.241339
When we talk about the "Service or Services" in this policy, we are referring to RumbleTalk Ltd online chat platform. Our Services are currently available for use via a web browser on both desktop or mobile device. Our sites are currently available for use via a web browser on both desktop or mobile device. Content and information submitted by users to the Services is referred to in this policy as "Customer Data." As further explained below, Customer Data is controlled by the organization, person or other third party that created the chat (the "Customer"). Where RumbleTalk collects or processes Customer Data, it does so on behalf of the Customer. If you join a Chat and create a user account, you are a "user". If you are using the Services by invitation of a Customer, whether that Customer is website owner, self-employed, company owner, your employer, another organization, or an individual, that Customer determines its own policies regarding storage, access, modification, deletion, sharing, and retention of Customer Data which may apply to your use of the Services. Please check with the Customer about the policies and settings it has in place. Chat setup information. When a Customer creates a Chat or chats using the Services, we may collect an email address, a Chat name, Chat photo, domain details, user name, user description, IP for the individual setting up the Chat, and password. We may also collect administrative team contact info, such as a mailing address. Billing and other information. For Customers that purchase a paid version of the Services, our third-party payment processors may collect and store billing address and credit card information on our behalf or we may do this ourselves. Services usage information. This is information about how you are accessing and using the Services, which may include administrative and support communications with us and information about the Chats, people, features, content, and links you interact with. Log data. When you use the Services our servers automatically record information, including information that your browser sends whenever you visit a website or your mobile browser/app sends when you are using it. This log data may include your Internet Protocol address, the address of the web page you visited before using the Services, your browser type and settings, the date and time of your use of the Services, information about your browser configuration and plug-ins, language preferences, and cookie data. Third party data. RumbleTalk may also receive information from affiliates that we use to make our own information better or more useful. This might be aggregate level information, such as which IP addresses go with which zip codes, or it might be more specific information, such as about how well an online marketing or email campaign performed. RumbleTalk may access and use Customer Data as reasonably necessary and in accordance with Customer's instructions to (a) provide, maintain and improve the Services; (b) to prevent or address service, security, technical issues or at a Customer's request in connection with customer support matters; (c) as required by law and (d) as set forth in our agreement with the Customer or as expressly permitted in writing by the Customer. Sending emails and RumbleTalk messages. We may send you Service and administrative emails and messages. We may also contact you to inform you about changes in our Services, our Service offerings, and important Service related notices, such as security and fraud notices. These emails and messages are considered part of the Services and you may not opt-out of them. In addition, we sometimes send emails about new product features or other news about RumbleTalk. You can opt out of these at any time. Customer provides us with instructions on what to do with Customer Data. A Customer has many choices and control over Customer Data. For example, Customer may provision or deprovision access to the Services, manage permissions, retention and export settings, transfer or assign Chats, or consolidate Chats with other chats. Since these choices and instructions may result in the access, use, disclosure, modification or deletion of certain or all Customer Data is possible from the customer admin panel. If you have any questions about your information, our use of this information, or your rights when it comes to any of the foregoing, contact us at support@RumbleTalk.com. In addition, the browser you use may provide you with the ability to control cookies or other types of local data storage. Your mobile device may provide you with choices around how and whether location or other data is collected and shared. RumbleTalk does not control these choices, or default settings, which are offered by makers of your browser or mobile device operating system. With third party integrations. RumbleTalk may, acting on our Customer's behalf, share
[ 1932, 591, 5193, 1048, 278, 376, 3170, 470, 15538, 29908, 297, 445, 8898, 29892, 591, 526, 16811, 304, 390, 15563, 29911, 2235, 19806, 7395, 13563, 7481, 29889, 13, 29949, 332, 15538, 526, 5279, 3625, 363, 671, 3025, 263, 1856, 4714, 373, 1716, 14616, 470, 10426, 4742, 29889, 13, 29949, 332, 11840, 526, 5279, 3625, 363, 671, 3025, 263, 1856, 4714, 373, 1716, 14616, 470, 10426, 4742, 29889, 13, 3916, 322, 2472, 18397, 491, 4160, 304, 278, 15538, 338, 12992, 304, 297, 445, 8898, 408, 376, 15122, 3630, 1213, 1094, 4340, 10824, 2400, 29892, 21886, 3630, 338, 20704, 491, 278, 13013, 29892, 2022, 470, 916, 4654, 6263, 393, 2825, 278, 13563, 313, 1552, 376, 15122, 2564, 6804, 390, 15563, 29911, 2235, 6314, 29879, 470, 10174, 21886, 3630, 29892, 372, 947, 577, 373, 2306, 3131, 310, 278, 21886, 29889, 13, 3644, 366, 5988, 263, 678, 271, 322, 1653, 263, 1404, 3633, 29892, 366, 526, 263, 376, 1792, 1642, 960, 366, 526, 773, 278, 15538, 491, 2437, 7018, 310, 263, 21886, 29892, 3692, 393, 21886, 338, 4700, 12271, 29892, 1583, 29899, 3451, 2376, 287, 29892, 5001, 12271, 29892, 596, 5703, 261, 29892, 1790, 13013, 29892, 470, 385, 5375, 29892, 393, 21886, 3683, 1475, 967, 1914, 24833, 11211, 8635, 29892, 2130, 29892, 21733, 29892, 7374, 291, 29892, 19383, 29892, 322, 3240, 2509, 310, 21886, 3630, 607, 1122, 3394, 304, 596, 671, 310, 278, 15538, 29889, 3529, 1423, 411, 278, 21886, 1048, 278, 24833, 322, 6055, 372, 756, 297, 2058, 29889, 13, 1451, 271, 6230, 2472, 29889, 1932, 263, 21886, 10017, 263, 678, 271, 470, 521, 1446, 773, 278, 15538, 29892, 591, 1122, 6314, 385, 4876, 3211, 29892, 263, 678, 271, 1024, 29892, 678, 271, 15373, 29892, 5354, 4902, 29892, 1404, 1024, 29892, 1404, 6139, 29892, 5641, 363, 278, 5375, 4444, 701, 278, 678, 271, 29892, 322, 4800, 29889, 1334, 1122, 884, 6314, 19185, 3815, 6958, 5235, 29892, 1316, 408, 263, 611, 6504, 3211, 29889, 13, 29933, 8873, 322, 916, 2472, 29889, 1152, 8701, 414, 393, 20590, 263, 12530, 1873, 310, 278, 15538, 29892, 1749, 4654, 29899, 22633, 19179, 1889, 943, 1122, 6314, 322, 3787, 289, 8873, 3211, 322, 16200, 5881, 2472, 373, 1749, 2306, 3131, 470, 591, 1122, 437, 445, 20278, 29889, 13, 13779, 8744, 2472, 29889, 910, 338, 2472, 1048, 920, 366, 526, 17378, 322, 773, 278, 15538, 29892, 607, 1122, 3160, 19185, 322, 2304, 7212, 800, 411, 502, 322, 2472, 1048, 278, 678, 1446, 29892, 2305, 29892, 5680, 29892, 2793, 29892, 322, 2988, 366, 16254, 411, 29889, 13, 3403, 848, 29889, 1932, 366, 671, 278, 15538, 1749, 12424, 6336, 2407, 2472, 29892, 3704, 2472, 393, 596, 4714, 16003, 10940, 366, 6493, 263, 4700, 470, 596, 10426, 4714, 29914, 932, 16003, 746, 366, 526, 773, 372, 29889, 910, 1480, 848, 1122, 3160, 596, 4685, 1019, 5770, 3211, 29892, 278, 3211, 310, 278, 1856, 1813, 366, 16669, 1434, 773, 278, 15538, 29892, 596, 4714, 1134, 322, 6055, 29892, 278, 2635, 322, 931, 310, 596, 671, 310, 278, 15538, 29892, 2472, 1048, 596, 4714, 5285, 322, 18665, 29899, 1144, 29892, 4086, 5821, 2063, 29892, 322, 15327, 848, 29889, 13, 1349, 1823, 6263, 848, 29889, 390, 15563, 29911, 2235, 1122, 884, 7150, 2472, 515, 23736, 1078, 393, 591, 671, 304, 1207, 1749, 1914, 2472, 2253, 470, 901, 5407, 29889, 910, 1795, 367, 20431, 3233, 2472, 29892, 1316, 408, 607, 5641, 14157, 748, 411, 607, 14319, 11561, 29892, 470, 372, 1795, 367, 901, 2702, 2472, 29892, 1316, 408, 1048, 920, 1532, 385, 7395, 9999, 292, 470, 4876, 11531, 8560, 29889, 13, 29934, 15563, 29911, 2235, 1122, 2130, 322, 671, 21886, 3630, 408, 2769, 2197, 5181, 322, 297, 15017, 749, 411, 21886, 29915, 29879, 11994, 304, 313, 29874, 29897, 3867, 29892, 7344, 322, 11157, 278, 15538, 29936, 313, 29890, 29897, 304, 5557, 470, 3211, 2669, 29892, 6993, 29892, 16905, 5626, 470, 472, 263, 21886, 29915, 29879, 2009, 297, 3957, 411, 11962, 2304, 13750, 29936, 313, 29883, 29897, 408, 3734, 491, 4307, 322, 313, 29881, 29897, 408, 731, 11483, 297, 1749, 17327, 411, 278, 21886, 470, 408, 4653, 368, 21905, 297, 5007, 491, 278, 21886, 29889, 13, 29903, 2548, 24609, 322, 390, 15563, 29911, 2235, 7191, 29889, 1334, 1122, 3638, 366, 6692, 322, 19185, 24609, 322, 7191, 29889, 1334, 1122, 884, 6958, 366, 304, 1871, 366, 1048, 3620, 297, 1749, 15538, 29892, 1749, 6692, 5957, 886, 29892, 322, 4100, 6692, 4475, 451, 1575, 29892, 1316, 408, 6993, 322, 5227, 566, 451, 1575, 29889, 4525, 24609, 322, 7191, 526, 5545, 760, 310, 278, 15538, 322, 366, 1122, 451, 3523, 29899, 449, 310, 963, 29889, 512, 6124, 29892, 591, 6041, 3638, 24609, 1048, 716, 3234, 5680, 470, 916, 9763, 1048, 390, 15563, 29911, 2235, 29889, 887, 508, 3523, 714, 310, 1438, 472, 738, 931, 29889, 13, 15122, 8128, 502, 411, 11994, 373, 825, 304, 437, 411, 21886, 3630, 29889, 319, 21886, 756, 1784, 19995, 322, 2761, 975, 21886, 3630, 29889, 1152, 1342, 29892, 21886, 1122, 25161, 470, 316, 771, 4924, 2130, 304, 278, 15538, 29892, 10933, 11239, 29892, 3240, 2509, 322, 5609, 6055, 29892, 6782, 470, 3566, 678, 1446, 29892, 470, 1136, 17211, 403, 678, 1446, 411, 916, 521, 1446, 29889, 4001, 1438, 19995, 322, 11994, 1122, 1121, 297, 278, 2130, 29892, 671, 29892, 766, 25071, 29892, 21733, 470, 7374, 291, 310, 3058, 470, 599, 21886, 3630, 338, 1950, 515, 278, 11962, 4113, 9451, 29889, 13, 3644, 366, 505, 738, 5155, 1048, 596, 2472, 29892, 1749, 671, 310, 445, 2472, 29892, 470, 596, 10462, 746, 372, 5304, 304, 738, 310, 278, 363, 2412, 292, 29892, 6958, 502, 472, 2304, 29992, 29934, 15563, 29911, 2235, 29889, 510, 29889, 13, 797, 6124, 29892, 278, 4714, 366, 671, 1122, 3867, 366, 411, 278, 11509, 304, 2761, 21046, 470, 916, 4072, 310, 1887, 848, 8635, 29889, 3575, 10426, 4742, 1122, 3867, 366, 411, 19995, 2820, 920, 322, 3692, 4423, 470, 916, 848, 338, 16531, 322, 7258, 29889, 390, 15563, 29911, 2235, 947, 451, 2761, 1438, 19995, 29892, 470, 2322, 6055, 29892, 607, 526, 12520, 491, 2136, 414, 310, 596, 4714, 470, 10426, 4742, 13598, 1788, 29889, 13, 3047, 4654, 6263, 3990, 800, 29889, 390, 15563, 29911, 2235, 1122, 29892, 16684, 373, 1749, 21886, 29915, 29879, 2306, 3131, 29892, 6232 ]
1,024
C4
-0.792628
-0.537451
-0.942221
-0.424777
Coping with War-Related Stress: Information for Military Families and Communities Nobody is unaffected by war. In military families, however, there is the added fear for the safety of loved ones who may be or already have been deployed, as well as the potential challenges of coping as a single parent. You or someone you know may already be experiencing some of the following signs of the emotional impact of this stress, or these symptoms may arise over the coming weeks and months: Difficulty completing tasks. Trouble concentrating. Fear and anxiety about the future. Apathy and emotional numbing. Irritability and anger. Sadness and depression. Feeling powerless. Extreme hunger / lack of appetite. Difficulty making decisions. Crying for "no apparent reason." Headaches or stomach problems. Excessive drinking or drug use. Feeling withdrawn. Some people will try to get back into the routine of life as soon as possible to regain a sense of control, but others will have difficulty focusing for some time. Both reactions are common responses to crisis. The intensity of your feelings will decrease as time passes and you focus attention on day-to-day activities. Because everybody experiences stress differently, don't compare your "progress" with others around you or judge other people's reactions and emotions. While many people survive major life stressors without developing significant psychological problems, others may need assistance. Here are some tips for coping during these difficult times: Talk About It: By talking with others, particularly other military spouses, you will relieve stress and realize that other people share your feelings. Support groups exist at most military installations. If there's one available to you, join; if not, consider starting one. If you feel overwhelmed, ask for help. It's not a sign of weakness. Talk with a trusted relative, friend, family services staffer, minister or rabbi. Military chaplains can be helpful, as most receive training in pastoral counseling and crisis. Don't let yourself become isolated. Take Care of Your Physical Health: Get plenty of rest and exercise, avoid excessive drinking and drugs, and eat properly. Avoid foods that are high in fats and calories. Limit your exposure to the news media: Especially avoid around-the-clock television news coverage and the Internet. The images, rumors and speculation can be very damaging to your sense of well-being. Engage in activities that you find relaxing and soothing: Plant flowers, attend a concert, visit an art gallery, or take a long bath. Be kind to yourself. Do something positive: Get involved in activities that encourage togetherness and reassurance. Contact community volunteer organizations to see how you can help. Give blood, prepare "care packages" for service men and women or write letters to people in the military. Support a friend or neighbor who is having a difficult time. Seek Treatment: If you have strong feelings that won't go away or you are troubled for more than four to six weeks, you may want to seek professional help. People who have had previous mental health problems and who have survived past trauma may also want to check in with a mental health care professional. Nearly every military installation has a family service center, family support center or Army community service center where you can access information, referral, counseling, and crisis intervention services. In addition, all military families, including National Guard members and Reservists who are activated for more than 30 days, are eligible for medical and mental health care either at a military medical treatment facility or at a civilian facility through TRICARE, the administrator of health services for the armed services. TRICARE provides information about mental health benefits programs for the military on their Web site, www.tricare.mil. Or contact them at 888-363-2273. Also, Military OneSource provides 24-hour access to information and help. Contact them at 800-342-9647 or www.militaryonesource.mil. Resources for Additional Information and Support Contact your local Mental Health America affiliate. Find your local affiliate here. Tricare, the administrator of health and mental health services for the armed services, provides information about mental health benefits programs for the military at their web site, www.tricare.mil. The Army Family Assistance Hotline is 1-800-833-6
[ 10061, 292, 411, 3362, 29899, 9662, 630, 3767, 404, 29901, 10343, 363, 20080, 6280, 583, 322, 20473, 1907, 13, 29940, 711, 1486, 338, 1185, 7161, 287, 491, 1370, 29889, 512, 9121, 13175, 29892, 3138, 29892, 727, 338, 278, 2715, 8866, 363, 278, 15332, 310, 18012, 6743, 1058, 1122, 367, 470, 2307, 505, 1063, 21168, 29892, 408, 1532, 408, 278, 7037, 18066, 267, 310, 5614, 292, 408, 263, 2323, 3847, 29889, 13, 3492, 470, 4856, 366, 1073, 1122, 2307, 367, 10623, 3277, 777, 310, 278, 1494, 18906, 310, 278, 23023, 1848, 10879, 310, 445, 22884, 29892, 470, 1438, 25828, 4835, 1122, 29030, 975, 278, 6421, 11405, 322, 7378, 29901, 13, 26023, 3953, 29891, 1614, 1259, 9595, 29889, 13, 2308, 2074, 14953, 1218, 29889, 13, 29943, 799, 322, 14919, 21549, 1048, 278, 5434, 29889, 13, 29909, 2084, 29891, 322, 23023, 1848, 954, 10549, 29889, 13, 29902, 29878, 768, 3097, 322, 27343, 29889, 13, 29903, 328, 2264, 322, 316, 2590, 29889, 13, 8263, 14067, 3081, 2222, 29889, 13, 5647, 10291, 18757, 261, 847, 10225, 310, 623, 300, 568, 29889, 13, 26023, 3953, 29891, 3907, 1602, 12112, 29889, 13, 29907, 719, 292, 363, 376, 1217, 20295, 2769, 1213, 13, 5494, 14520, 470, 380, 290, 496, 4828, 29889, 13, 1252, 985, 573, 13748, 292, 470, 15721, 671, 29889, 13, 8263, 14067, 411, 19811, 1233, 29889, 13, 9526, 2305, 674, 1018, 304, 679, 1250, 964, 278, 26529, 310, 2834, 408, 4720, 408, 1950, 304, 1072, 475, 263, 4060, 310, 2761, 29892, 541, 4045, 674, 505, 14656, 12789, 4746, 363, 777, 931, 29889, 9134, 337, 7387, 526, 3619, 20890, 304, 24161, 29889, 450, 26171, 310, 596, 21737, 674, 23806, 408, 931, 14517, 322, 366, 8569, 8570, 373, 2462, 29899, 517, 29899, 3250, 14188, 29889, 7311, 26077, 27482, 22884, 17587, 29892, 1016, 29915, 29873, 7252, 596, 376, 18035, 29908, 411, 4045, 2820, 366, 470, 16833, 916, 2305, 29915, 29879, 337, 7387, 322, 23023, 1080, 29889, 5806, 1784, 2305, 10503, 573, 4655, 2834, 22884, 943, 1728, 14338, 7282, 11643, 5996, 4828, 29892, 4045, 1122, 817, 18872, 29889, 13, 10605, 526, 777, 25562, 363, 5614, 292, 2645, 1438, 5189, 3064, 29901, 13, 29911, 2235, 13611, 739, 29901, 2648, 9963, 411, 4045, 29892, 10734, 916, 9121, 805, 23676, 29892, 366, 674, 1104, 2418, 22884, 322, 16289, 393, 916, 2305, 6232, 596, 21737, 29889, 18601, 6471, 1863, 472, 1556, 9121, 2601, 800, 29889, 960, 727, 29915, 29879, 697, 3625, 304, 366, 29892, 5988, 29936, 565, 451, 29892, 2050, 6257, 697, 29889, 960, 366, 4459, 975, 1332, 295, 2168, 29892, 2244, 363, 1371, 29889, 739, 29915, 29879, 451, 263, 1804, 310, 8062, 2264, 29889, 323, 2235, 411, 263, 9311, 287, 6198, 29892, 5121, 29892, 3942, 5786, 380, 2142, 571, 29892, 11050, 470, 1153, 14663, 29889, 20080, 10708, 433, 1144, 508, 367, 8444, 29892, 408, 1556, 7150, 6694, 297, 4940, 11251, 2613, 2838, 292, 322, 24161, 29889, 3872, 29915, 29873, 1235, 7535, 4953, 23968, 29889, 13, 26772, 10057, 310, 3575, 11661, 936, 15202, 29901, 3617, 20947, 310, 1791, 322, 15058, 29892, 4772, 19163, 573, 13748, 292, 322, 5883, 3174, 29892, 322, 17545, 6284, 29889, 319, 5405, 9687, 29879, 393, 526, 1880, 297, 285, 1446, 322, 1208, 3842, 29889, 13, 24445, 596, 14060, 545, 304, 278, 9763, 5745, 29901, 3423, 25009, 4772, 2820, 29899, 1552, 29899, 13058, 11456, 9763, 23746, 322, 278, 4685, 29889, 450, 4558, 29892, 16558, 943, 322, 1580, 2785, 508, 367, 1407, 5625, 6751, 304, 596, 4060, 310, 1532, 29899, 915, 292, 29889, 13, 8100, 482, 297, 14188, 393, 366, 1284, 26681, 292, 322, 577, 6046, 29901, 18058, 18281, 29892, 14333, 263, 13135, 29892, 6493, 385, 1616, 23363, 29892, 470, 2125, 263, 1472, 27683, 29889, 1522, 2924, 304, 7535, 29889, 13, 6132, 1554, 6374, 29901, 3617, 9701, 297, 14188, 393, 13731, 6617, 3996, 621, 824, 404, 322, 337, 465, 18541, 29889, 22387, 7881, 27886, 261, 25700, 304, 1074, 920, 366, 508, 1371, 29889, 25538, 10416, 29892, 19012, 376, 18020, 9741, 29908, 363, 2669, 1757, 322, 5866, 470, 2436, 8721, 304, 2305, 297, 278, 9121, 29889, 18601, 263, 5121, 470, 12307, 1058, 338, 2534, 263, 5189, 931, 29889, 13, 2008, 1416, 6479, 271, 358, 29901, 960, 366, 505, 4549, 21737, 393, 2113, 29915, 29873, 748, 3448, 470, 366, 526, 7458, 29881, 363, 901, 1135, 3023, 304, 4832, 11405, 29892, 366, 1122, 864, 304, 16508, 10257, 1371, 29889, 11647, 1058, 505, 750, 3517, 19119, 9045, 4828, 322, 1058, 505, 10503, 2347, 4940, 1020, 10859, 1122, 884, 864, 304, 1423, 297, 411, 263, 19119, 9045, 2562, 10257, 29889, 26206, 368, 1432, 9121, 11161, 756, 263, 3942, 2669, 4818, 29892, 3942, 2304, 4818, 470, 8811, 7881, 2669, 4818, 988, 366, 508, 2130, 2472, 29892, 2737, 1705, 29892, 2613, 2838, 292, 29892, 322, 24161, 1006, 7316, 5786, 29889, 512, 6124, 29892, 599, 9121, 13175, 29892, 3704, 3086, 13211, 5144, 322, 2538, 6972, 2879, 1058, 526, 5039, 630, 363, 901, 1135, 29871, 29941, 29900, 3841, 29892, 526, 560, 335, 1821, 363, 16083, 322, 19119, 9045, 2562, 2845, 472, 263, 9121, 16083, 14502, 24454, 470, 472, 263, 7631, 713, 24454, 1549, 10014, 2965, 29909, 1525, 29892, 278, 27443, 310, 9045, 5786, 363, 278, 23926, 5786, 29889, 10014, 2965, 29909, 1525, 8128, 2472, 1048, 19119, 9045, 23633, 11104, 363, 278, 9121, 373, 1009, 2563, 3268, 29892, 7821, 29889, 509, 293, 598, 29889, 23853, 29889, 1394, 6958, 963, 472, 29871, 29947, 29947, 29947, 29899, 29941, 29953, 29941, 29899, 29906, 29906, 29955, 29941, 29889, 3115, 29892, 20080, 3118, 4435, 8128, 29871, 29906, 29946, 29899, 18721, 2130, 304, 2472, 322, 1371, 29889, 22387, 963, 472, 29871, 29947, 29900, 29900, 29899, 29941, 29946, 29906, 29899, 29929, 29953, 29946, 29955, 470, 7821, 29889, 23853, 277, 653, 2873, 1167, 29889, 23853, 29889, 13, 13770, 363, 3462, 3245, 10343, 322, 18601, 13, 13443, 596, 1887, 341, 13703, 15202, 6813, 23736, 403, 29889, 10987, 596, 1887, 23736, 403, 1244, 29889, 13, 29911, 2200, 598, 29892, 278, 27443, 310, 9045, 322, 19119, 9045, 5786, 363, 278, 23926, 5786, 29892, 8128, 2472, 1048, 19119, 9045, 23633, 11104, 363, 278, 9121, 472, 1009, 1856, 3268, 29892, 7821, 29889, 509, 293, 598, 29889, 23853, 29889, 13, 1576, 8811, 14662, 4007, 21558, 8843, 1220, 338, 29871, 29896, 29899, 29947, 29900, 29900, 29899, 29947, 29941, 29941, 29899, 29953 ]
1,024
CommonCrawl
0.520391
-0.268971
-0.109108
1.883149
We all love learning new things. The human is a curious animal, prone to applying the old alchemist's motto 'solve et coagula' to everyday life, in so far as we like to take complex things, break them into pieces and then put them back together to see how they work. We do this all the time, often unconsciously, in order to see the inner workings of creation. Curiosity is what drives us onwards, until a moment occurs when the walls of our perception fall back and we are left to view a new expanse that we didn't know existed. Then we are liberated, momentarily, from former ignorance. It's a profound feeling and one that we wanted to devote at least one blog to, if not a whole series, depending on how you like our first 'Five Ideas That Will Nuke Your Mind'. Ever wondered why dragons are such a terrifying apex predator? Or what connection we have with the stars arrayed across the roof of the Earth? If you the answer is 'yes' you might want to count yourself lucky because these are the kind of questions we're going to be tackling in detail. We too have been troubled by difficult mysteries that keep us pinned to the water cooler, desperately probing each other for something to fill those gaping holes in our knowledge. Like, say, what is the universe expanding into? And how do you define such monstrous terms as 'eternity' or 'nothing'. Surely everything has to have some sort of boundary? And if the universe is, in some vague way, spherical and… ahm… like, collapsing in on itself at its limits, you know? Then how… how is that possible? Maybe it's like those Russian nesting dolls, right? You just open our universe up and there's always another smaller one inside. Who knows? In the end it's easy to see how people go crazy trying to get to the bottom of all this stuff. For now we'll just have to leave those mind-benders to larger minds and fry some smaller fish by telling you our first 'Five Ideas That Will Nuke Your Mind'. Many times he's been called the 'Godfather of Monsters' and celebrated for his wonderfully twisted and delicately crafted films, which tread a jagged line between fantasy and horror. A Mexican director with a penchant for chilling bones, Guillermo didn't really make it into the mainstream until the release of his gruesome fairytale, Pans Labyrinth. Now he's making big budget films and owns a gothic man cave that takes up an entire house, crowded with iconic props and scenes of the cinematic macabre. However you know Guillermo (perhaps not at all), we're sure you've somehow been effected by his rare and piercing perception of the world. As a kid, Guillermo had always been fascinated by the sublime – that which is at once both horrifying and beautiful. At a very early age he decided to volunteer at the local Psychiatric Hospital where he befriended the embalmers and surely encountered the most visceral outcasts of society. It was from these formative, and quite unusual, experiences that Guillermo developed the ability to see in way that is unfamiliar to many of us. This allowed him to create monsters that defied our expectations of how a monster should look. He said that he wanted his creation to seem as though they had transformed if you viewed them from a new angle. In this way he prevented us from being able to fully realise the abnormal form inside our minds, like the unseen shark in Jaws, which is so much more terrible when the music plays and it circles the gloom of our imagination – out of sight. When it came to the design stage Guillermo said he would start with the definition of the monster's silhouette. He used this as the key to their movement and it allowed him to frame their anatomy, after which he would apply the colour and texture of the skin, making it mottled, furred or whatever. For him, detail was always the last and most exciting aspect of making monsters. Interestingly, when it came to the design for Smaug from The Hobbit (before Peter Jackson took over), Guillermo referred to the natural world for inspiration. He wanted to capture the softness of the dragon's underbelly, as it slithered with its sinuous, snake-like body. He also wanted the monster to alight,
[ 1334, 599, 5360, 6509, 716, 2712, 29889, 450, 5199, 338, 263, 12758, 13019, 29892, 544, 650, 304, 15399, 278, 2030, 394, 14969, 391, 29915, 29879, 3184, 517, 525, 2929, 345, 634, 1302, 351, 2497, 29915, 304, 1432, 3250, 2834, 29892, 297, 577, 2215, 408, 591, 763, 304, 2125, 4280, 2712, 29892, 2867, 963, 964, 12785, 322, 769, 1925, 963, 1250, 4208, 304, 1074, 920, 896, 664, 29889, 1334, 437, 445, 599, 278, 931, 29892, 4049, 443, 3200, 455, 5794, 29892, 297, 1797, 304, 1074, 278, 6426, 664, 886, 310, 11265, 29889, 10837, 2363, 537, 338, 825, 25100, 502, 373, 2935, 29892, 2745, 263, 3256, 10008, 746, 278, 14603, 310, 1749, 639, 1441, 6416, 1250, 322, 591, 526, 2175, 304, 1776, 263, 716, 1518, 12350, 393, 591, 3282, 29915, 29873, 1073, 22856, 29889, 1987, 591, 526, 7866, 630, 29892, 3256, 6275, 29892, 515, 4642, 16245, 749, 29889, 739, 29915, 29879, 263, 2600, 618, 11223, 322, 697, 393, 591, 5131, 304, 2906, 866, 472, 3203, 697, 12618, 304, 29892, 565, 451, 263, 3353, 3652, 29892, 8679, 373, 920, 366, 763, 1749, 937, 525, 29943, 573, 13001, 294, 2193, 2811, 12487, 446, 3575, 20152, 4286, 13, 29923, 369, 4997, 287, 2020, 8338, 787, 526, 1316, 263, 1935, 29878, 9215, 263, 412, 29916, 4450, 1061, 29973, 1394, 825, 3957, 591, 505, 411, 278, 10819, 1409, 287, 4822, 278, 17526, 310, 278, 11563, 29973, 960, 366, 278, 1234, 338, 525, 3582, 29915, 366, 1795, 864, 304, 2302, 7535, 9885, 29891, 1363, 1438, 526, 278, 2924, 310, 5155, 591, 29915, 276, 2675, 304, 367, 22002, 1847, 297, 9493, 29889, 1334, 2086, 505, 1063, 7458, 29881, 491, 5189, 22277, 583, 393, 3013, 502, 282, 27464, 304, 278, 4094, 12528, 261, 29892, 553, 546, 2486, 2070, 292, 1269, 916, 363, 1554, 304, 5445, 1906, 17261, 292, 26532, 297, 1749, 7134, 29889, 8502, 29892, 1827, 29892, 825, 338, 278, 19859, 7985, 292, 964, 29973, 1126, 920, 437, 366, 4529, 1316, 1601, 710, 681, 4958, 408, 525, 300, 824, 537, 29915, 470, 525, 28450, 4286, 18585, 368, 4129, 756, 304, 505, 777, 2656, 310, 10452, 29973, 1126, 565, 278, 19859, 338, 29892, 297, 777, 25160, 982, 29892, 26903, 936, 322, 30098, 263, 7184, 30098, 763, 29892, 784, 14128, 292, 297, 373, 3528, 472, 967, 13071, 29892, 366, 1073, 29973, 1987, 920, 30098, 920, 338, 393, 1950, 29973, 7198, 372, 29915, 29879, 763, 1906, 10637, 17763, 292, 11232, 29879, 29892, 1492, 29973, 887, 925, 1722, 1749, 19859, 701, 322, 727, 29915, 29879, 2337, 1790, 7968, 697, 2768, 29889, 11644, 9906, 29973, 13, 797, 278, 1095, 372, 29915, 29879, 4780, 304, 1074, 920, 2305, 748, 12220, 1537, 1811, 304, 679, 304, 278, 5970, 310, 599, 445, 6433, 29889, 1152, 1286, 591, 29915, 645, 925, 505, 304, 5967, 1906, 3458, 29899, 29890, 21043, 304, 7200, 27656, 322, 285, 719, 777, 7968, 9427, 491, 14509, 366, 1749, 937, 525, 29943, 573, 13001, 294, 2193, 2811, 12487, 446, 3575, 20152, 4286, 13, 14804, 3064, 540, 29915, 29879, 1063, 2000, 278, 525, 29954, 397, 22212, 310, 2598, 23080, 29915, 322, 26301, 363, 670, 4997, 3730, 3252, 12652, 322, 628, 293, 2486, 25554, 287, 12298, 29892, 607, 260, 949, 263, 432, 351, 3192, 1196, 1546, 13568, 8995, 322, 23026, 29889, 319, 24777, 8881, 411, 263, 6584, 13775, 363, 521, 8873, 289, 2873, 29892, 2088, 453, 20772, 3282, 29915, 29873, 2289, 1207, 372, 964, 278, 1667, 5461, 2745, 278, 6507, 310, 670, 4500, 14151, 6534, 3637, 744, 29892, 349, 550, 12016, 4316, 22653, 29889, 2567, 540, 29915, 29879, 3907, 4802, 23562, 12298, 322, 1914, 29879, 263, 330, 720, 293, 767, 24230, 393, 4893, 701, 385, 4152, 3699, 29892, 11660, 7176, 411, 9849, 293, 17761, 322, 20407, 310, 278, 4670, 19217, 5825, 370, 276, 29889, 2398, 366, 1073, 2088, 453, 20772, 313, 546, 4252, 451, 472, 599, 511, 591, 29915, 276, 1854, 366, 29915, 345, 10431, 1063, 2779, 287, 491, 670, 10812, 322, 9307, 3277, 639, 1441, 310, 278, 3186, 29889, 13, 2887, 263, 26397, 29892, 2088, 453, 20772, 750, 2337, 1063, 21028, 262, 630, 491, 278, 1014, 28046, 785, 393, 607, 338, 472, 2748, 1716, 4029, 29878, 9215, 322, 9560, 29889, 2180, 263, 1407, 4688, 5046, 540, 8459, 304, 27886, 261, 472, 278, 1887, 16777, 7163, 2200, 15967, 988, 540, 367, 7932, 2760, 278, 953, 5521, 13269, 322, 18880, 18169, 278, 1556, 1998, 2265, 284, 714, 4384, 29879, 310, 12459, 29889, 739, 471, 515, 1438, 883, 1230, 29892, 322, 3755, 22910, 29892, 27482, 393, 2088, 453, 20772, 8906, 278, 11509, 304, 1074, 297, 982, 393, 338, 443, 8302, 4447, 304, 1784, 310, 502, 29889, 910, 6068, 1075, 304, 1653, 1601, 23080, 393, 822, 1000, 1749, 2149, 800, 310, 920, 263, 1601, 2475, 881, 1106, 29889, 940, 1497, 393, 540, 5131, 670, 11265, 304, 2833, 408, 2466, 896, 750, 27615, 565, 366, 24774, 963, 515, 263, 716, 10696, 29889, 512, 445, 982, 540, 5557, 287, 502, 515, 1641, 2221, 304, 8072, 1855, 895, 278, 633, 8945, 883, 2768, 1749, 27656, 29892, 763, 278, 443, 28026, 528, 935, 297, 435, 10467, 29892, 607, 338, 577, 1568, 901, 16403, 746, 278, 4696, 13582, 322, 372, 22558, 278, 15482, 290, 310, 1749, 28038, 785, 714, 310, 11126, 29889, 13, 10401, 372, 2996, 304, 278, 2874, 7408, 2088, 453, 20772, 1497, 540, 723, 1369, 411, 278, 5023, 310, 278, 1601, 2475, 29915, 29879, 4047, 10774, 2353, 29889, 940, 1304, 445, 408, 278, 1820, 304, 1009, 10298, 322, 372, 6068, 1075, 304, 3515, 1009, 385, 8678, 29891, 29892, 1156, 607, 540, 723, 3394, 278, 12384, 322, 18459, 310, 278, 19309, 29892, 3907, 372, 286, 1501, 839, 29892, 3261, 1127, 470, 6514, 29889, 1152, 1075, 29892, 9493, 471, 2337, 278, 1833, 322, 1556, 5566, 11407, 9565, 310, 3907, 1601, 23080, 29889, 23829, 11687, 29892, 746, 372, 2996, 304, 278, 2874, 363, 4116, 2987, 515, 450, 25302, 2966, 313, 11083, 5310, 11886, 3614, 975, 511, 2088, 453, 20772, 12992, 304, 278, 5613, 3186, 363, 8681, 12232, 29889, 940, 5131, 304, 10446, 278, 4964, 2264, 310, 278, 8338, 265, 29915, 29879, 1090, 6596, 368, 29892, 408, 372, 2243, 2121, 287, 411, 967, 4457, 17269, 29892, 269, 21040, 29899, 4561, 3573, 29889, 940, 884, 5131, 278, 1601, 2475, 304, 394, 523, 29892 ]
1,024
C4
1.823902
0.127826
1.256271
0.43613
like a proud water bird, empowered with a variety of different animal traits, whilst still adhering to the underlying principles of what defines a dragon. At the heart of these principles, there is a rather interesting theory that Guillermo proposed in his illustrated book, 'Cabinet of Curiosities'. While discussing the reasons why dragons scare us, Guillermo began to describe that primordial era when our ape ancestors were stalked by fearsome predators. Back then the main sources of our perpetual dread would've been big cats (lions, leopards, smilodons) birds of prey (eagles, argentavis', propalaeotheriums) and reptiles (crocodiles, snakes, megalanias). The dragon is a clever combination of all these three predator types. It has the wings and talons of a bird of prey. It walks on all fours with a long tail, hunched shoulders and low neck like the cats. It even has the hard scales, lidless eyes and razor-toothed jaws of a reptile. Together these features stir a congenital memory stored deep inside us – a kind of primal terror kept from the days when we were prey – and that is the essence of why we fear dragons. Alan Moore is to readers of underground comics what Jesus was to fans of bread and wine. His chaotic beard and shamanic glare have been seared into the psyche of all who come across him. And yet, despite his best intentions, he has inadvertently found his way into the mainstream with his work being adapted for movies like V For Vendetta and Watchmen. Having risen from a gritty Northampton upbringing, stirring through vats of blood in a sheepskin tannery and generally chewing on life's gristle, Moore eventually assailed the high walls of comic book writing and became one of the most unique, prolific writers today. In fact, Watchmen, arguably Moore's most important opus, was included in Time Magazine's list of 100 Best Novels – an astounding feat for a graphic novel, still widely dismissed as comic writing by fusty elitists. We could pick a page at random from Watchmen and it would undoubtedly have a great idea on it or a flash of genius writing. However, in the interest of brevity, we've opted to go with that otherworldly moment when Doctor Manhattan, a God incarnate, walks across the surface of Mars and contemplates the worth of the human race. What we want to focus on in particular, though, is his eventual realisation of how rare life really is, which ultimately compels the Doctor to return to Earth. Laurie, the Doctor's estranged girlfriend, stands in the incandescent blue light of his unclothed body. She is effectively his muse and her heartbreak is the whetstone that sharpens the acuity of his understanding. It's a truly fascinating fact of life, that we all possess something that is so indescribably rare. The probability of our existence is hardly quantifiable, although the odds were presumed to be about one in 400 trillion against us existing as we are, in what Buddhist's would call this 'precious incarnation'. To put this into perspective, if you floated a single life jacket somewhere on one of our oceans and let one lonely turtle loose underwater somewhere in those oceans, the likelihood of that turtle surfacing once and poking its head through the jacket is roughly the same as the chance of you existing. It's quite a thing to take for granted, isn't it? In fact, if you roughly calculate the odds against this occurrence you'd find that they were about 1 in 700 trillion. However even this is purely hypothetical estimation that discounts the minutiae leading to the concatenation of sperm, among other things. Nevertheless another scientific estimation has been made, supposedly taking into account the intricacies of conception, throughout the millennia. So what's the overall likelihood of you being you? Well, if you gathered 2 million people together and asked them all to roll a trillion-sided dice, the chance of everyone rolling the exact same number is close to the chance of you being born the way you were. In short, your existence is, mathematically speaking, an impossibility, essentially re
[ 763, 263, 22314, 4094, 11199, 29892, 3710, 1680, 287, 411, 263, 12875, 310, 1422, 13019, 1020, 1169, 29892, 21109, 1603, 594, 2276, 292, 304, 278, 14407, 18671, 310, 825, 17645, 263, 8338, 265, 29889, 13, 4178, 278, 5192, 310, 1438, 18671, 29892, 727, 338, 263, 3265, 8031, 6368, 393, 2088, 453, 20772, 7972, 297, 670, 26848, 3143, 29892, 525, 29907, 370, 10157, 310, 10837, 2363, 1907, 4286, 5806, 5353, 292, 278, 9590, 2020, 8338, 787, 885, 598, 502, 29892, 2088, 453, 20772, 4689, 304, 8453, 393, 1903, 536, 616, 3152, 746, 1749, 263, 412, 19525, 943, 892, 380, 2235, 287, 491, 8866, 5372, 4450, 4097, 29889, 7437, 769, 278, 1667, 8974, 310, 1749, 25722, 950, 21005, 723, 29915, 345, 1063, 4802, 274, 1446, 313, 29880, 1080, 29892, 454, 459, 3163, 29892, 1560, 309, 397, 787, 29897, 17952, 310, 758, 29891, 313, 29872, 351, 793, 29892, 19896, 485, 275, 742, 3107, 2883, 29872, 1228, 21425, 29897, 322, 337, 415, 5475, 313, 29883, 10198, 397, 5475, 29892, 5807, 6926, 29892, 4508, 284, 273, 3173, 467, 450, 8338, 265, 338, 263, 23455, 10296, 310, 599, 1438, 2211, 4450, 1061, 4072, 29889, 739, 756, 278, 24745, 322, 5969, 787, 310, 263, 11199, 310, 758, 29891, 29889, 739, 17042, 2039, 373, 599, 285, 2470, 411, 263, 1472, 12464, 29892, 298, 3322, 287, 26671, 322, 4482, 18873, 763, 278, 274, 1446, 29889, 739, 1584, 756, 278, 2898, 23431, 29892, 17343, 2222, 5076, 322, 8006, 272, 29899, 517, 720, 287, 432, 10467, 310, 263, 337, 415, 488, 29889, 323, 12966, 1438, 5680, 23546, 263, 378, 1885, 2410, 3370, 6087, 6483, 2768, 502, 785, 263, 2924, 310, 1903, 284, 15115, 8126, 515, 278, 3841, 746, 591, 892, 758, 29891, 785, 322, 393, 338, 278, 3686, 663, 310, 2020, 591, 8866, 8338, 787, 29889, 13, 2499, 273, 18588, 338, 304, 22176, 310, 1090, 2057, 419, 1199, 825, 13825, 471, 304, 24909, 310, 18423, 322, 19006, 29889, 3600, 10329, 13574, 367, 538, 322, 528, 13533, 293, 330, 8663, 505, 1063, 409, 1965, 964, 278, 6529, 29891, 1173, 310, 599, 1058, 2041, 4822, 1075, 29889, 1126, 3447, 29892, 15020, 670, 1900, 7609, 1080, 29892, 540, 756, 297, 328, 1765, 2705, 1476, 670, 982, 964, 278, 1667, 5461, 411, 670, 664, 1641, 23430, 363, 2351, 583, 763, 478, 1152, 478, 355, 11300, 322, 24274, 1527, 29889, 15950, 5161, 264, 515, 263, 330, 768, 1017, 4644, 314, 12533, 701, 1182, 292, 292, 29892, 23546, 5393, 1549, 325, 1446, 310, 10416, 297, 263, 1183, 8961, 9089, 260, 812, 708, 322, 6892, 923, 16958, 373, 2834, 29915, 29879, 867, 391, 280, 29892, 18588, 10201, 1223, 29874, 2356, 278, 1880, 14603, 310, 419, 293, 3143, 5007, 322, 3897, 697, 310, 278, 1556, 5412, 29892, 410, 29880, 928, 23550, 9826, 29889, 512, 2114, 29892, 24274, 1527, 29892, 1852, 29884, 2197, 18588, 29915, 29879, 1556, 4100, 1015, 375, 29892, 471, 5134, 297, 5974, 17880, 29915, 29879, 1051, 310, 29871, 29896, 29900, 29900, 6407, 2864, 1379, 785, 385, 8717, 12449, 1238, 271, 363, 263, 3983, 293, 9554, 29892, 1603, 17644, 18918, 287, 408, 419, 293, 5007, 491, 285, 504, 29891, 560, 277, 2879, 29889, 13, 4806, 1033, 5839, 263, 1813, 472, 4036, 515, 24274, 1527, 322, 372, 723, 563, 283, 3116, 23244, 505, 263, 2107, 2969, 373, 372, 470, 263, 11013, 310, 26858, 5007, 29889, 2398, 29892, 297, 278, 4066, 310, 2078, 17037, 29892, 591, 29915, 345, 3523, 287, 304, 748, 411, 393, 916, 11526, 368, 3256, 746, 15460, 29093, 23586, 29892, 263, 4177, 5528, 2753, 403, 29892, 17042, 2039, 4822, 278, 7101, 310, 16852, 322, 640, 331, 9884, 278, 7088, 310, 278, 5199, 8175, 29889, 1724, 591, 864, 304, 8569, 373, 297, 3153, 29892, 2466, 29892, 338, 670, 1741, 950, 1855, 4371, 310, 920, 10812, 2834, 2289, 338, 29892, 607, 18973, 752, 1379, 278, 15460, 304, 736, 304, 11563, 29889, 13, 5661, 332, 347, 29892, 278, 15460, 29915, 29879, 707, 29878, 4618, 7826, 18326, 29892, 15028, 297, 278, 5528, 392, 267, 1760, 7254, 3578, 310, 670, 443, 695, 720, 287, 3573, 29889, 2296, 338, 17583, 670, 23200, 322, 902, 5192, 8690, 338, 278, 377, 300, 12734, 393, 15301, 575, 278, 1274, 29884, 537, 310, 670, 8004, 29889, 13, 3112, 29915, 29879, 263, 19781, 21028, 262, 1218, 2114, 310, 2834, 29892, 393, 591, 599, 22592, 1554, 393, 338, 577, 1399, 267, 699, 14815, 10812, 29889, 450, 6976, 310, 1749, 10379, 338, 15155, 4323, 28677, 29892, 5998, 278, 7736, 29879, 892, 2225, 21571, 304, 367, 1048, 697, 297, 29871, 29946, 29900, 29900, 534, 453, 291, 2750, 502, 5923, 408, 591, 526, 29892, 297, 825, 28234, 391, 29915, 29879, 723, 1246, 445, 525, 1457, 8802, 5528, 2753, 362, 4286, 1763, 1925, 445, 964, 18520, 29892, 565, 366, 5685, 630, 263, 2323, 2834, 28015, 300, 9051, 373, 697, 310, 1749, 288, 346, 550, 322, 1235, 697, 23123, 873, 260, 4227, 280, 23819, 1090, 13405, 9051, 297, 1906, 288, 346, 550, 29892, 278, 4188, 22342, 310, 393, 260, 4227, 280, 1190, 29888, 9390, 2748, 322, 11293, 292, 967, 2343, 1549, 278, 28015, 300, 338, 20928, 278, 1021, 408, 278, 8825, 310, 366, 5923, 29889, 739, 29915, 29879, 3755, 263, 2655, 304, 2125, 363, 16896, 29892, 3508, 29915, 29873, 372, 29973, 512, 2114, 29892, 565, 366, 20928, 8147, 278, 7736, 29879, 2750, 445, 27170, 366, 29915, 29881, 1284, 393, 896, 892, 1048, 29871, 29896, 297, 29871, 29955, 29900, 29900, 534, 453, 291, 29889, 2398, 1584, 445, 338, 24837, 13752, 300, 936, 23248, 393, 2313, 792, 29879, 278, 1375, 329, 23395, 8236, 304, 278, 16125, 362, 310, 269, 17858, 29892, 4249, 916, 2712, 29889, 25678, 1790, 16021, 23248, 756, 1063, 1754, 29892, 7424, 368, 5622, 964, 3633, 278, 11158, 983, 2478, 310, 26192, 29892, 10106, 278, 3533, 2108, 423, 29889, 1105, 825, 29915, 29879, 278, 12463, 4188, 22342, 310, 366, 1641, 366, 29973, 5674, 29892, 565, 366, 22229, 29871, 29906, 7284, 2305, 4208, 322, 4433, 963, 599, 304, 9679, 263, 534, 453, 291, 29899, 29879, 2618, 17629, 29892, 278, 8825, 310, 14332, 27777, 278, 2684, 1021, 1353, 338, 3802, 304, 278, 8825, 310, 366, 1641, 6345, 278, 982, 366, 892, 29889, 512, 3273, 29892, 596, 10379, 338, 29892, 10860, 1711, 13590, 29892, 385, 7275, 29879, 4127, 29892, 13674, 337 ]
1,024
C4
1.753258
0.41853
1.073362
0.512022
The Fate of the Fallen Omnibus The Fate of the Fallen, Books 1-4 By: R. Phoenix Narrated by: Jack Noble Series: The Fate of the Fallen, Book 1-4 When the gods come calling, you don't get to say no. Patrick Collins is three years into a career as a special agent for the Supernatural Operations Agency when the gods come calling to collect a soul debt he owes them. An immortal has gone missing in New York City and bodies are showing up in the wake of demon-led ritual killings that Patrick recognizes all too easily from his nightmares. There was potential By VirgoMage on 04-18-19 Knot the Broseph Howling Hills Heat, Book 1 By: Liam Kingsley Narrated by: Stephen Van Doren Nyle's done well for himself - at only 26 years old, he's the prime alpha of the close-knit Howling Hills Pack, as well as the owner of the town's hottest nightclub: Club Rumblefish. There's just one thing missing: a mate. And when Nyle receives word that his best friend - and longtime crush - is returning home from his military service, his wolf can't help but sit up and take notice. Seph is glad to be home. He didn't hate the military - but he was never able to keep himself completely invested. Part of his heart has always been back in Howling Hills, with the alpha he left behind. Great Start to a New Series By Draconis on 04-09-19 Circle of Darkness Genesis Circle Series, Book 1 By: Aimee Nicole Walker, Nicholas Bella Narrated by: Joel Leslie There isn't a monster D'Angelo Kumar can't destroy or a crisis he can't manage, until he meets Angel Bai. The insane attraction he feels toward the sexy waiter is unwelcome, because D'Angelo doesn't have room in his life for relationships. A solitary path is the only option for a man like him, but fighting his growing feelings for Angel may be the first battle he can't win. Great new paranormal series with fab narration! By Morgan A Skye on 07-04-19 War's Mate Honey Creek Den, Book 1 By: Taylor Rylan Narrated by: Kenneth Obi Growing up in a coven with only one other shifter doesn't allow Arik much of an opportunity to find his mate, and he doesn't know when or where he'll find him. When dreams about his mate start interrupting his sleep, he's content to wait for them to find each other. That is, until he dreams that his mate is in danger. Alpha War has all but given up on ever finding his true mate. He's looked for centuries. When his den starts being attacked by the local coven, all thoughts of finding his mate leave his mind. He only wants to protect his den members like any alpha would. growler bears No Shame Series, Book 1 By: Nora Phoenix Indy will do anything to prevent his mobster ex from finding him. Their last encounter left Indy recovering for months in the hospital, and, ever since, he's become an expert at hiding in plain sight. Determined to stay under the radar, he takes on a new identity and moves from place to place, until he meets the man who breaks through all his defenses. Former Army Medic Noah came back damaged from his last tour in more than one way. Noah, Josh, & Indie By DarkJade on 03-01-19 Wrong Way Home: Taken Criminal Delights, Book 1 By: K.A. Merikan Narrated by: Wyatt Baker Like every other weekend, Colin is on his way home from university, but he's taunted by the notion that he never takes risks in life and always follows the beaten path. On impulse, he decides to take a different route. Just this one time. What he doesn't realize is that it's the last time he has a choice. He ends up taking a detour into the darkest pit of horror, abducted by a silent, imposing man with a blood-stained axe. But what seems like his worst nightmare might
[ 450, 383, 403, 310, 278, 383, 5442, 13352, 29876, 19699, 13, 1576, 383, 403, 310, 278, 383, 5442, 29892, 13730, 29871, 29896, 29899, 29946, 13, 2059, 29901, 390, 29889, 29715, 13, 29940, 2749, 630, 491, 29901, 5457, 1939, 569, 13, 19204, 29901, 450, 383, 403, 310, 278, 383, 5442, 29892, 6726, 29871, 29896, 29899, 29946, 13, 10401, 278, 27379, 2041, 5432, 29892, 366, 1016, 29915, 29873, 679, 304, 1827, 694, 29889, 14875, 26410, 338, 2211, 2440, 964, 263, 6413, 408, 263, 4266, 10823, 363, 278, 5670, 25047, 6607, 800, 29353, 746, 278, 27379, 2041, 5432, 304, 6314, 263, 10752, 2553, 29873, 540, 8152, 267, 963, 29889, 530, 5198, 441, 284, 756, 7695, 4567, 297, 1570, 3088, 4412, 322, 17873, 526, 6445, 701, 297, 278, 281, 1296, 310, 8033, 29899, 839, 10421, 950, 12088, 886, 393, 14875, 5936, 7093, 599, 2086, 5948, 515, 670, 4646, 3034, 267, 29889, 13, 8439, 471, 7037, 13, 2059, 6749, 1484, 29924, 482, 373, 29871, 29900, 29946, 29899, 29896, 29947, 29899, 29896, 29929, 13, 29968, 1333, 278, 4358, 344, 561, 13, 5328, 1847, 24128, 940, 271, 29892, 6726, 29871, 29896, 13, 2059, 29901, 2718, 314, 21701, 2330, 13, 29940, 2749, 630, 491, 29901, 14317, 6556, 360, 8085, 13, 29940, 1508, 29915, 29879, 2309, 1532, 363, 3654, 448, 472, 871, 29871, 29906, 29953, 2440, 2030, 29892, 540, 29915, 29879, 278, 6019, 15595, 310, 278, 3802, 29899, 3959, 277, 1128, 1847, 24128, 18744, 29892, 408, 1532, 408, 278, 12271, 310, 278, 4726, 29915, 29879, 298, 1501, 342, 4646, 29066, 29901, 5977, 390, 15563, 15161, 29889, 1670, 29915, 29879, 925, 697, 2655, 4567, 29901, 263, 15358, 29889, 1126, 746, 405, 1508, 20586, 1734, 393, 670, 1900, 5121, 448, 322, 1472, 2230, 2181, 1878, 448, 338, 7863, 3271, 515, 670, 9121, 2669, 29892, 670, 281, 4369, 508, 29915, 29873, 1371, 541, 7845, 701, 322, 2125, 8369, 29889, 922, 561, 338, 10932, 304, 367, 3271, 29889, 940, 3282, 29915, 29873, 26277, 278, 9121, 448, 541, 540, 471, 2360, 2221, 304, 3013, 3654, 6446, 2437, 2868, 29889, 3455, 310, 670, 5192, 756, 2337, 1063, 1250, 297, 1128, 1847, 24128, 29892, 411, 278, 15595, 540, 2175, 5742, 29889, 13, 25120, 271, 7370, 304, 263, 1570, 10488, 13, 2059, 16322, 535, 275, 373, 29871, 29900, 29946, 29899, 29900, 29929, 29899, 29896, 29929, 13, 23495, 280, 310, 15317, 2264, 13, 15462, 6656, 27927, 10488, 29892, 6726, 29871, 29896, 13, 2059, 29901, 319, 603, 29872, 405, 23249, 19512, 29892, 24234, 350, 3547, 13, 29940, 2749, 630, 491, 29901, 3650, 295, 2664, 3197, 13, 8439, 3508, 29915, 29873, 263, 1601, 2475, 360, 29915, 9928, 7078, 476, 24540, 508, 29915, 29873, 8174, 470, 263, 24161, 540, 508, 29915, 29873, 10933, 29892, 2745, 540, 28103, 17323, 350, 1794, 29889, 450, 1663, 1662, 1098, 13857, 540, 23880, 11183, 278, 409, 3594, 4480, 261, 338, 18500, 295, 2763, 29892, 1363, 360, 29915, 9928, 7078, 1838, 29915, 29873, 505, 5716, 297, 670, 2834, 363, 21702, 29889, 319, 26373, 653, 2224, 338, 278, 871, 2984, 363, 263, 767, 763, 1075, 29892, 541, 17770, 670, 15678, 21737, 363, 17323, 1122, 367, 278, 937, 10555, 540, 508, 29915, 29873, 5401, 29889, 13, 25120, 271, 716, 610, 273, 2759, 3652, 411, 10135, 15474, 362, 29991, 13, 2059, 20549, 319, 16572, 29872, 373, 29871, 29900, 29955, 29899, 29900, 29946, 29899, 29896, 29929, 13, 29956, 279, 29915, 29879, 29566, 13, 29950, 4992, 15594, 3384, 29892, 6726, 29871, 29896, 13, 2059, 29901, 12537, 390, 2904, 273, 13, 29940, 2749, 630, 491, 29901, 28576, 4250, 29875, 13, 29954, 798, 292, 701, 297, 263, 274, 9813, 411, 871, 697, 916, 528, 361, 357, 1838, 29915, 29873, 2758, 319, 5357, 1568, 310, 385, 15130, 304, 1284, 670, 15358, 29892, 322, 540, 1838, 29915, 29873, 1073, 746, 470, 988, 540, 29915, 645, 1284, 1075, 29889, 1932, 12561, 29879, 1048, 670, 15358, 1369, 23754, 292, 670, 8709, 29892, 540, 29915, 29879, 2793, 304, 4480, 363, 963, 304, 1284, 1269, 916, 29889, 2193, 338, 29892, 2745, 540, 12561, 29879, 393, 670, 15358, 338, 297, 9703, 29889, 838, 2026, 3362, 756, 599, 541, 2183, 701, 373, 3926, 9138, 670, 1565, 15358, 29889, 940, 29915, 29879, 5148, 363, 21726, 29889, 1932, 670, 972, 8665, 1641, 22630, 491, 278, 1887, 274, 9813, 29892, 599, 13133, 310, 9138, 670, 15358, 5967, 670, 3458, 29889, 940, 871, 10753, 304, 12566, 670, 972, 5144, 763, 738, 15595, 723, 29889, 13, 29887, 798, 1358, 367, 1503, 13, 3782, 1383, 420, 10488, 29892, 6726, 29871, 29896, 13, 2059, 29901, 405, 2207, 29715, 13, 2568, 29891, 674, 437, 3099, 304, 5557, 670, 22458, 2475, 429, 515, 9138, 1075, 29889, 11275, 1833, 11735, 2175, 1894, 29891, 9792, 292, 363, 7378, 297, 278, 13457, 29892, 322, 29892, 3926, 1951, 29892, 540, 29915, 29879, 4953, 385, 17924, 472, 25508, 297, 8656, 11126, 29889, 5953, 837, 1312, 304, 7952, 1090, 278, 2971, 279, 29892, 540, 4893, 373, 263, 716, 10110, 322, 16229, 515, 2058, 304, 2058, 29892, 2745, 540, 28103, 278, 767, 1058, 16706, 1549, 599, 670, 822, 11259, 29889, 3812, 261, 8811, 22247, 1939, 801, 2996, 1250, 5625, 4063, 515, 670, 1833, 6282, 297, 901, 1135, 697, 982, 29889, 13, 3782, 801, 29892, 22838, 29892, 669, 1894, 347, 13, 2059, 15317, 29967, 1943, 373, 29871, 29900, 29941, 29899, 29900, 29896, 29899, 29896, 29929, 13, 29956, 29373, 5307, 8778, 29901, 323, 9424, 13, 29907, 28479, 5556, 5861, 29892, 6726, 29871, 29896, 13, 2059, 29901, 476, 29889, 29909, 29889, 4702, 7941, 13, 29940, 2749, 630, 491, 29901, 10167, 1131, 22652, 13, 27552, 1432, 916, 4723, 355, 29892, 1530, 262, 338, 373, 670, 982, 3271, 515, 16372, 29892, 541, 540, 29915, 29879, 11062, 28000, 491, 278, 17837, 393, 540, 2360, 4893, 5161, 2039, 297, 2834, 322, 2337, 4477, 278, 367, 2579, 2224, 29889, 1551, 2411, 19994, 29892, 540, 1602, 2247, 304, 2125, 263, 1422, 5782, 29889, 3387, 445, 697, 931, 29889, 1724, 540, 1838, 29915, 29873, 16289, 338, 393, 372, 29915, 29879, 278, 1833, 931, 540, 756, 263, 7348, 29889, 940, 10614, 701, 5622, 263, 1439, 473, 964, 278, 6501, 342, 22754, 310, 23026, 29892, 633, 2199, 287, 491, 263, 17436, 29892, 7275, 292, 767, 411, 263, 10416, 29899, 303, 7114, 4853, 29872, 29889, 1205, 825, 2444, 763, 670, 17322, 4646, 29885, 598, 1795 ]
1,024
CommonCrawl
0.080058
-1.185532
-1.238103
-1.05769
just prove to be a path to the kind of freedom Colin never knew existed. Taron has lived alone for years. Just go with it Chosen Bundle: Books 1-3 By: J. D. Light Three books in one volume! Contains Just Ridley: Chosen, Book 1; Grumpy Old Bear: Chosen, Book 2; and Sweet Sutton: Chosen, Book 3. Ridley Scott and Flynn Becker have been making eyes at each other through the diner window for months. Thompsyn Lane is a grumpy, old, reclusive bear shifter who has no intention of changing anything about his life for anyone. Sutton Hilliard has been sneaking around at night watching his sexy neighbor run around his backyard naked for months. Amazing series By Kathryn M on 03-28-19 Prince for Sale Thrall Prince Romance By: Caroline Gibson Narrated by: Matt Haynes David Thomen is Earth's premier scientist, and he wants to be alone with his inventions, his money, and his PTSD. Instead, a mute, starving alien slave is dropped in his lap. Not just any alien slave - the leader of Earth's first alien invasion, defeated by David's technology. Nothing Special Series, Book 1 By: A.E. Via Narrated by: Aiden Snow Detective Cashel "Cash" Godfrey is big, tattooed, and angry so people typically keep their distance. He's fresh out of the police academy, however, no one is looking to partner with the six-foot-four beast with a huge chip on his shoulder and an inability to trust. When Cash scans the orientation room he wasn't expecting to find sexy hazel eyes locked onto him. Eyes of the handsome Detective Leonidis "Leo" Day. This Really Is Something Special By Deanna Weatherstein on 05-20-19 How We Survive Reclaiming Hope, Book 1 By: Michele Notaro With the world in chaos around us, the only thing I could do was try to keep Felix safe as we searched for our older brother. We'd been traveling for over two years, searching Ministry camp after Ministry camp and trying to steer clear of the Rebels. I didn't know what to do when we ran into a whole group of shifters with guns. But then the huge, gorgeous guy that found us did the unthinkable.... ✫✫ 3.5 Stars ✫✫ By Cyndi Marie on 04-09-19 The Right Match Omega Dating Agency, Book 1 By: Aiden Bates, Austin Bates Narrated by: Randi Johnson An older alpha with a taste for bad decisions. A kinky omega who's up for anything. An app that brings them together. Ramiro Danner has been around the block more than once. He's tired of playing around, but this alpha has a weakness for younger omegas who aren't interested in anything more than a fling. Ram never expected that agreeing to be a guinea pig for a new dating app would be anything more than a disaster, but when he meets Erik, all of that changes. Enjoyed it By K. Ramjohn on 07-18-19 By: Christina Lee, Riley Hart Narrated by: Tristan James, Kale Williams After the death of his wife, Tanner Rowe takes a step toward making her dying wish come true and buys the house with the dilapidated barn she'd been drawn to in the Upper Peninsula. But after a year, he still can't get past his grief long enough to make the repairs he'd promised. Recently out of prison, Cole Lachlan has little to his name. Homeless, broke, and without many options as a felon, Cole heads to Red Bluff with hopes of a second chance. There he meets Tanner, whose loneliness mirrors his own, and soon Cole is trading room and board for rebuilding the burned-out barn. I rated high but I don't LIKE the ending. By Buscatlady on 06-03-19 PsyCop, Book 1 By: Jordan Castillo Price Narrated
[ 925, 6356, 304, 367, 263, 2224, 304, 278, 2924, 310, 16082, 1530, 262, 2360, 6363, 22856, 29889, 323, 5022, 756, 10600, 7432, 363, 2440, 29889, 13, 14084, 748, 411, 372, 13, 1451, 7749, 24470, 29901, 13730, 29871, 29896, 29899, 29941, 13, 2059, 29901, 435, 29889, 360, 29889, 12790, 13, 28575, 8277, 297, 697, 7977, 29991, 2866, 2708, 3387, 390, 333, 2330, 29901, 678, 7749, 29892, 6726, 29871, 29896, 29936, 1632, 398, 2272, 8198, 23606, 29901, 678, 7749, 29892, 6726, 29871, 29906, 29936, 322, 317, 16668, 317, 1851, 29901, 678, 7749, 29892, 6726, 29871, 29941, 29889, 390, 333, 2330, 8075, 322, 383, 13493, 29876, 1522, 4937, 505, 1063, 3907, 5076, 472, 1269, 916, 1549, 278, 4538, 261, 3474, 363, 7378, 29889, 4609, 567, 948, 23841, 338, 263, 867, 398, 2272, 29892, 2030, 29892, 337, 7009, 573, 11460, 528, 361, 357, 1058, 756, 694, 16392, 310, 6480, 3099, 1048, 670, 2834, 363, 5019, 29889, 317, 1851, 9143, 29875, 538, 756, 1063, 269, 484, 5086, 2820, 472, 4646, 21217, 670, 409, 3594, 12307, 1065, 2820, 670, 1250, 19852, 302, 12535, 363, 7378, 29889, 13, 29909, 16986, 292, 3652, 13, 2059, 19663, 719, 29876, 341, 373, 29871, 29900, 29941, 29899, 29906, 29947, 29899, 29896, 29929, 13, 4040, 1239, 363, 317, 744, 13, 29911, 1092, 497, 10787, 6033, 749, 13, 2059, 29901, 26980, 15347, 1100, 13, 29940, 2749, 630, 491, 29901, 9811, 11389, 4515, 13, 19504, 498, 2770, 338, 11563, 29915, 29879, 7017, 9638, 391, 29892, 322, 540, 10753, 304, 367, 7432, 411, 670, 11817, 1080, 29892, 670, 6909, 29892, 322, 670, 349, 29911, 7230, 29889, 8669, 29892, 263, 286, 1082, 29892, 5810, 1747, 394, 819, 19532, 338, 13700, 297, 670, 23012, 29889, 2216, 925, 738, 394, 819, 19532, 448, 278, 11822, 310, 11563, 29915, 29879, 937, 394, 819, 28425, 29892, 16235, 491, 4699, 29915, 29879, 15483, 29889, 13, 26521, 12630, 10488, 29892, 6726, 29871, 29896, 13, 2059, 29901, 319, 29889, 29923, 29889, 23306, 13, 29940, 2749, 630, 491, 29901, 319, 3615, 24392, 13, 6362, 522, 573, 315, 1161, 295, 376, 29907, 1161, 29908, 4177, 29888, 8903, 338, 4802, 29892, 260, 16234, 29877, 287, 29892, 322, 26230, 577, 2305, 12234, 3013, 1009, 5418, 29889, 940, 29915, 29879, 10849, 714, 310, 278, 10974, 263, 9567, 29892, 3138, 29892, 694, 697, 338, 3063, 304, 18096, 411, 278, 4832, 29899, 6661, 29899, 17823, 367, 579, 411, 263, 12176, 29830, 373, 670, 23468, 322, 385, 297, 3097, 304, 9311, 29889, 1932, 315, 1161, 885, 550, 278, 19843, 5716, 540, 9007, 29915, 29873, 16120, 304, 1284, 409, 3594, 447, 10533, 5076, 22822, 11480, 1075, 29889, 382, 3582, 310, 278, 1361, 5372, 5953, 522, 573, 10255, 333, 275, 376, 3226, 29877, 29908, 8373, 29889, 13, 4013, 830, 635, 1317, 12538, 12630, 13, 2059, 897, 9713, 1334, 1624, 5465, 373, 29871, 29900, 29945, 29899, 29906, 29900, 29899, 29896, 29929, 13, 5328, 1334, 6298, 29894, 573, 13, 4789, 8342, 292, 7963, 29892, 6726, 29871, 29896, 13, 2059, 29901, 341, 4070, 280, 2216, 8854, 13, 3047, 278, 3186, 297, 10329, 359, 2820, 502, 29892, 278, 871, 2655, 306, 1033, 437, 471, 1018, 304, 3013, 26346, 9109, 408, 591, 17371, 363, 1749, 9642, 8099, 29889, 1334, 29915, 29881, 1063, 9850, 292, 363, 975, 1023, 2440, 29892, 11975, 20886, 4242, 1156, 20886, 4242, 322, 1811, 304, 1886, 261, 2821, 310, 278, 12936, 1379, 29889, 306, 3282, 29915, 29873, 1073, 825, 304, 437, 746, 591, 6350, 964, 263, 3353, 2318, 310, 528, 361, 2153, 411, 18788, 29889, 1205, 769, 278, 12176, 29892, 330, 3890, 681, 1410, 29891, 393, 1476, 502, 1258, 278, 443, 386, 682, 519, 3045, 13, 229, 159, 174, 229, 159, 174, 29871, 29941, 29889, 29945, 25435, 29871, 229, 159, 174, 229, 159, 174, 13, 2059, 8045, 299, 29875, 9932, 373, 29871, 29900, 29946, 29899, 29900, 29929, 29899, 29896, 29929, 13, 1576, 10428, 14514, 13, 5981, 360, 1218, 29353, 29892, 6726, 29871, 29896, 13, 2059, 29901, 319, 3615, 350, 1078, 29892, 24518, 350, 1078, 13, 29940, 2749, 630, 491, 29901, 17468, 29875, 11717, 13, 2744, 9642, 15595, 411, 263, 21779, 363, 4319, 1602, 12112, 29889, 319, 413, 682, 29891, 2703, 2442, 1058, 29915, 29879, 701, 363, 3099, 29889, 530, 623, 393, 23522, 963, 4208, 29889, 8292, 3350, 360, 7310, 756, 1063, 2820, 278, 2908, 901, 1135, 2748, 29889, 940, 29915, 29879, 23407, 310, 8743, 2820, 29892, 541, 445, 15595, 756, 263, 8062, 2264, 363, 20023, 2703, 387, 294, 1058, 9455, 29915, 29873, 8852, 297, 3099, 901, 1135, 263, 1652, 292, 29889, 8292, 2360, 3806, 393, 8661, 292, 304, 367, 263, 1410, 16736, 282, 335, 363, 263, 716, 270, 1218, 623, 723, 367, 3099, 901, 1135, 263, 766, 1901, 29892, 541, 746, 540, 28103, 23599, 29892, 599, 310, 393, 3620, 29889, 13, 2369, 2212, 28133, 372, 13, 2059, 476, 29889, 8292, 29926, 6547, 373, 29871, 29900, 29955, 29899, 29896, 29947, 29899, 29896, 29929, 13, 2059, 29901, 2819, 1099, 9371, 29892, 390, 15168, 12321, 13, 29940, 2749, 630, 491, 29901, 1605, 9777, 5011, 29892, 476, 744, 11648, 13, 13555, 278, 4892, 310, 670, 6532, 29892, 323, 7310, 390, 4657, 4893, 263, 4331, 11183, 3907, 902, 27116, 6398, 2041, 1565, 322, 1321, 952, 278, 3699, 411, 278, 21749, 481, 333, 630, 2594, 29876, 1183, 29915, 29881, 1063, 12061, 304, 297, 278, 24929, 7363, 1144, 2497, 29889, 1205, 1156, 263, 1629, 29892, 540, 1603, 508, 29915, 29873, 679, 4940, 670, 867, 2575, 1472, 3307, 304, 1207, 278, 1634, 7121, 540, 29915, 29881, 22399, 29889, 3599, 2705, 714, 310, 8475, 29892, 16816, 365, 496, 6468, 756, 2217, 304, 670, 1024, 29889, 15089, 6393, 29892, 14455, 29892, 322, 1728, 1784, 3987, 408, 263, 7995, 265, 29892, 16816, 15883, 304, 4367, 3164, 3096, 411, 26926, 310, 263, 1473, 8825, 29889, 1670, 540, 28103, 323, 7310, 29892, 5069, 301, 11064, 3335, 19571, 29879, 670, 1914, 29892, 322, 4720, 16816, 338, 3534, 292, 5716, 322, 7613, 363, 337, 25237, 278, 12138, 287, 29899, 449, 2594, 29876, 29889, 13, 29902, 364, 630, 1880, 541, 306, 1016, 29915, 29873, 22962, 278, 17140, 29889, 13, 2059, 8406, 4117, 29880, 3714, 373, 29871, 29900, 29953, 29899, 29900, 29941, 29899, 29896, 29929, 13, 29925, 29879, 29891, 29907, 459, 29892, 6726, 29871, 29896, 13, 2059, 29901, 18284, 4834, 9093, 20743, 13, 29940, 2749, 630 ]
1,024
CommonCrawl
0.074793
-1.400964
-1.516052
-1.152555
by: Gomez Pugh Victor Bayne, the psychic half a PsyCop team, is a gay medium who's more concerned with flying under the radar than in making waves. He hooks up with handsome Jacob Marks, a non-psychic (or "Stiff") from an adjacent precinct at his ex-partner's retirement party, and it seems like his dubious luck has taken a turn for the better. But then a serial killer surfaces who can change his appearance to match any witness' idea of the world's hottest guy. Perfect narrator for one of my favorite books! By Jesi Lea Ryan on 08-17-14 Unbreakable Bonds Series, Book 1 By: Jocelynn Drake, Rinda Elliott Lucas Vallois is always in control. He's building an empire in the glittering city of Cincinnati and created his own family from his three close friends. The self-made millionaire has everything he wants within his tight grasp. But his world starts to crumble after he's jumped by a trio of thugs late one night after leaving a club. The warning is clear - give up his new property venture or end up dead. Caving to the demands of his friends, Lucas accepts the help of bodyguard Andrei Hadeon. Give me more! By Annika on 04-08-19 Leashes & Lace, Book 1 By: Shaw Montgomery Houston knows who he is...but most men don't seem to understand. A Dom who likes wearing panties and lace isn't what most submissives expect when they look at Houston. Broad, strong Doms are supposed to look intimidating in leather, not sexy in leather and lace. When long looks and a curious encounter with his new roommate make Houston think there might be some interest from Reece, he isn't sure what to do. Reece is straight, isn't he? Reece knows who he is...but most men don't seem to understand. A little lost at first, but impressed! By MayBae on 05-28-19 Human Omega: Discovered on the Slave Planet Pykh Series, Book 1 By: Eileen Glass It's all a matter of opinion, but Carter's day is going pretty badly. He's an engineer captured by bug aliens, now depending on his large, muscled, naked cage mates for food and warmth. They seem sentient, so that's good. But they're also handsy. Which is...complicated. The military isn't looking for him. Slaves taken by the bug race never come back. Yet, Carter is very much alive, and if he wants to stay that way, he'll need to trust Pykh and Siel, two affectionate aliens with claws, teeth, and size. Spoiler Review By Anja Smith on 03-24-19 His Innocent Angel Heaven's Ballroom, Book 1 By: Aiden Bates Omega Riley Landon doesn't go to work at the Ballroom expecting to give up his innocence, but when he meets Max, the passion between them burns bright right from the start. Unfortunately, it's a one-night affair. But when Riley discovers he is pregnant, their one-night stand blossoms into the possibility of forever. Welcome to Heaven's Ballroom, the most luxurious club in the city - with the hottest omega dancers. Lovely story By Zizawah on 06-18-19 At a Stranger's Mercy Badge and Bullets, Book 1 By: Brittany Cournoyer Making eye contact with a killer wasn't exactly how Bradley Danforth had planned to start his day. As an accountant, he craved structure and routine. What he hadn't anticipated was being part of a real-life murder mystery with him cast in the starring role. Death and sorrow were part of Max Donohue's job description, leaving the detective hardened after years on the job. On his latest case, he's the one stuck protecting the only witness in a sadistic homicide. The narration was the best part Now that supernatural beings have seized control of the world, life has
[ 491, 29901, 402, 608, 29920, 349, 6129, 13, 29963, 919, 272, 6211, 484, 29892, 278, 11643, 293, 4203, 263, 10144, 29891, 29907, 459, 3815, 29892, 338, 263, 23852, 18350, 1058, 29915, 29879, 901, 15041, 411, 22764, 1090, 278, 2971, 279, 1135, 297, 3907, 20037, 29889, 940, 12422, 29879, 701, 411, 1361, 5372, 10968, 4485, 29879, 29892, 263, 1661, 29899, 567, 3376, 293, 313, 272, 376, 855, 2593, 1159, 515, 385, 20114, 8303, 5562, 472, 670, 429, 29899, 1595, 1089, 29915, 29879, 3240, 19211, 6263, 29892, 322, 372, 2444, 763, 670, 15416, 2738, 9885, 756, 4586, 263, 2507, 363, 278, 2253, 29889, 1205, 769, 263, 7797, 413, 5495, 28001, 1058, 508, 1735, 670, 10097, 304, 1993, 738, 16277, 29915, 2969, 310, 278, 3186, 29915, 29879, 298, 1501, 342, 1410, 29891, 29889, 13, 5894, 3647, 15474, 1061, 363, 697, 310, 590, 25448, 8277, 29991, 13, 2059, 8524, 29875, 951, 29874, 20916, 373, 29871, 29900, 29947, 29899, 29896, 29955, 29899, 29896, 29946, 13, 2525, 8690, 519, 350, 13788, 10488, 29892, 6726, 29871, 29896, 13, 2059, 29901, 435, 542, 873, 15755, 16322, 446, 29892, 390, 11054, 26656, 1501, 13, 29931, 1682, 294, 2630, 417, 275, 338, 2337, 297, 2761, 29889, 940, 29915, 29879, 5214, 385, 3710, 533, 297, 278, 3144, 5171, 292, 4272, 310, 315, 3742, 2559, 2219, 322, 2825, 670, 1914, 3942, 515, 670, 2211, 3802, 7875, 29889, 450, 1583, 29899, 26350, 7284, 5218, 756, 4129, 540, 10753, 2629, 670, 19932, 25274, 29889, 1205, 670, 3186, 8665, 304, 2181, 15563, 1156, 540, 29915, 29879, 12500, 287, 491, 263, 3367, 29877, 310, 266, 16926, 5683, 697, 4646, 1156, 10124, 263, 4402, 29889, 450, 9177, 338, 2821, 448, 2367, 701, 670, 716, 2875, 9712, 545, 470, 1095, 701, 7123, 29889, 315, 5555, 304, 278, 1261, 4167, 310, 670, 7875, 29892, 24243, 21486, 278, 1371, 310, 3573, 17728, 1126, 5803, 379, 1943, 265, 29889, 13, 29954, 573, 592, 901, 29991, 13, 2059, 8081, 4106, 373, 29871, 29900, 29946, 29899, 29900, 29947, 29899, 29896, 29929, 13, 3226, 1161, 267, 669, 365, 815, 29892, 6726, 29871, 29896, 13, 2059, 29901, 28548, 4526, 27157, 708, 13, 29950, 283, 7352, 9906, 1058, 540, 338, 856, 4187, 1556, 1757, 1016, 29915, 29873, 2833, 304, 2274, 29889, 319, 7809, 1058, 4188, 267, 591, 4362, 282, 424, 583, 322, 425, 346, 3508, 29915, 29873, 825, 1556, 1014, 9894, 3145, 2149, 746, 896, 1106, 472, 24327, 29889, 12046, 29892, 4549, 360, 4835, 526, 7424, 304, 1106, 938, 326, 333, 1218, 297, 454, 1624, 29892, 451, 409, 3594, 297, 454, 1624, 322, 425, 346, 29889, 1932, 1472, 3430, 322, 263, 12758, 11735, 411, 670, 716, 696, 3011, 403, 1207, 24327, 1348, 727, 1795, 367, 777, 4066, 515, 830, 29872, 346, 29892, 540, 3508, 29915, 29873, 1854, 825, 304, 437, 29889, 830, 29872, 346, 338, 7812, 29892, 3508, 29915, 29873, 540, 29973, 830, 29872, 346, 9906, 1058, 540, 338, 856, 4187, 1556, 1757, 1016, 29915, 29873, 2833, 304, 2274, 29889, 13, 29909, 2217, 5714, 472, 937, 29892, 541, 527, 13120, 29991, 13, 2059, 2610, 29933, 3660, 373, 29871, 29900, 29945, 29899, 29906, 29947, 29899, 29896, 29929, 13, 29950, 7889, 13352, 2442, 29901, 8565, 957, 287, 373, 278, 317, 18398, 20540, 13, 29925, 12072, 29882, 10488, 29892, 6726, 29871, 29896, 13, 2059, 29901, 382, 488, 264, 402, 605, 13, 3112, 29915, 29879, 599, 263, 4383, 310, 9426, 29892, 541, 22264, 29915, 29879, 2462, 338, 2675, 5051, 28042, 29889, 940, 29915, 29879, 385, 22055, 15468, 491, 6494, 394, 11689, 29892, 1286, 8679, 373, 670, 2919, 29892, 2301, 29883, 839, 29892, 302, 12535, 274, 482, 286, 1078, 363, 9687, 322, 14294, 386, 29889, 2688, 2833, 2665, 993, 29892, 577, 393, 29915, 29879, 1781, 29889, 1205, 896, 29915, 276, 884, 6567, 29891, 29889, 8449, 338, 856, 2388, 9169, 29889, 450, 9121, 3508, 29915, 29873, 3063, 363, 1075, 29889, 317, 433, 1960, 4586, 491, 278, 6494, 8175, 2360, 2041, 1250, 29889, 15175, 29892, 22264, 338, 1407, 1568, 18758, 29892, 322, 565, 540, 10753, 304, 7952, 393, 982, 29892, 540, 29915, 645, 817, 304, 9311, 10772, 15339, 322, 317, 709, 29892, 1023, 22832, 403, 394, 11689, 411, 3711, 5652, 29892, 25287, 29892, 322, 2159, 29889, 13, 29903, 1129, 3955, 13957, 13, 2059, 530, 1764, 7075, 373, 29871, 29900, 29941, 29899, 29906, 29946, 29899, 29896, 29929, 13, 29950, 275, 512, 10763, 296, 17323, 13, 3868, 3496, 29915, 29879, 13402, 8345, 29892, 6726, 29871, 29896, 13, 2059, 29901, 319, 3615, 350, 1078, 13, 5981, 390, 15168, 3172, 265, 1838, 29915, 29873, 748, 304, 664, 472, 278, 13402, 8345, 16120, 304, 2367, 701, 670, 21458, 663, 29892, 541, 746, 540, 28103, 5918, 29892, 278, 15935, 1546, 963, 12138, 29879, 11785, 1492, 515, 278, 1369, 29889, 11511, 29892, 372, 29915, 29879, 263, 697, 29899, 11147, 26195, 29889, 1205, 746, 390, 15168, 17021, 874, 540, 338, 758, 5138, 424, 29892, 1009, 697, 29899, 11147, 2317, 1999, 2209, 4835, 964, 278, 13331, 310, 22296, 29889, 21829, 304, 22977, 29915, 29879, 13402, 8345, 29892, 278, 1556, 21684, 332, 2738, 4402, 297, 278, 4272, 448, 411, 278, 298, 1501, 342, 2703, 2442, 270, 4564, 414, 29889, 13, 29931, 586, 873, 5828, 13, 2059, 796, 466, 1450, 801, 373, 29871, 29900, 29953, 29899, 29896, 29947, 29899, 29896, 29929, 13, 4178, 263, 3767, 4600, 29915, 29879, 4702, 1270, 13, 22050, 479, 322, 8313, 10376, 29892, 6726, 29871, 29896, 13, 2059, 29901, 3230, 29873, 1384, 6325, 1217, 7598, 13, 29924, 5086, 10977, 6958, 411, 263, 413, 5495, 9007, 29915, 29873, 3721, 920, 15862, 2330, 3951, 1454, 386, 750, 20458, 304, 1369, 670, 2462, 29889, 1094, 385, 3633, 424, 29892, 540, 12220, 1490, 3829, 322, 26529, 29889, 1724, 540, 27222, 29915, 29873, 23483, 630, 471, 1641, 760, 310, 263, 1855, 29899, 19264, 13406, 29236, 411, 1075, 4320, 297, 278, 380, 23693, 6297, 29889, 14450, 322, 28543, 892, 760, 310, 5918, 3872, 1148, 434, 29915, 29879, 4982, 6139, 29892, 10124, 278, 6459, 573, 2898, 6419, 1156, 2440, 373, 278, 4982, 29889, 1551, 670, 9281, 1206, 29892, 540, 29915, 29879, 278, 697, 10771, 12566, 292, 278, 871, 16277, 297, 263, 14610, 4695, 3632, 293, 680, 29889, 13, 1576, 15474, 362, 471, 278, 1900, 760, 13, 10454, 393, 2428, 25047, 367, 886, 505, 25291, 2761, 310, 278, 3186, 29892, 2834, 756 ]
1,024
CommonCrawl
0.356689
-1.000598
-0.954774
-1.015474
become a struggle for the humans who once held power. Witches, vampires, and werewolves determine the fate of humanity, but their moral compasses have long since been shattered. Rebels, free humans, and slaves all share dreams of hope, mercy, love, and more. But with their fate so uncertain, survival isn't enough...and they may have to sacrifice what is nearest and dearest to them if they want to change their lives. Bought: When he agreed to take the fall for his pack leader's failed attempts to help the Rebellion, Jace knew he wouldn't live long enough to regret it. However, instead of the noble end he envisioned for himself, the werewolf finds himself at the mercy of a witch and his depraved games. Though he clings to his conviction that he can withstand anything his new master can dish out, it isn't long before he realizes pride has no place in his life as the pet of the controlling Elias Ivers. Ravel: For years, Reese has hidden away in his home, refusing to venture out where he might face what reminds him of all that he's lost. When Ashton, a human thief, breaks into his home one night, he doesn't have a choice but to face the harsh truths of the world he's turned his back on. He knows he supports the society monsters of myth and lore built upon the backs of humans through his silence, but the new leaders don't tolerate sympathizers. If a werewolf can't act against the status quo without facing severe consequences, a human with Ashton's cunning and experience circumventing supernatural predators can't risk drawing their attention. Their chance encounter leaves them shaken and questioning whether they are living life as they were intended or if surviving is really living at all. Recoil: Over the past decade, Khaz has watched as supernatural creatures like himself have turned the world into their own personal playground. Unlike the others, he didn't benefit from the Takeover. Every time he sells himself to keep a roof over his head, he's keenly aware of that fact. His landlord, a renowned slaver, offers him the chance to catch up on his rent by breaking a human. Groomed to fight, Noah has survived by giving in to his hatred of those who took everything away from humanity. When the werewolf can't break him, he's given to the vampire instead - and he's sure this will be no different. The problem is that even the harsh lessons the Rebellion taught him couldn't prepare him for someone like Khaz...who always has an ace up his sleeve. Bought, Ravel, and Recoil feature different characters whose lives begin to come together in Owned and Temper. This dystopian series explores different aspects of the world, from utter darkness to the shining lights waiting to emerge. The books range from dark erotica to romance to horror to action(ish) to bits of other things in between. ©2019 R. Phoenix (P)2019 R. Phoenix Asymmetry: A Fate of the Fallen Standalone Owned: The Fate of the Fallen Covi If you like dark books? Listen to this! Interesting and dark stories, a range of characters, strong world building, and good pacing. I would definitely recommend this to anyone who is into darker books. My favorite is the first story because it's so twisted and I would read/listen to so much more about Jace and Elias. I do feel that the first book was super dark, and it got a little lighter from there, so I would have preferred the stories to stay just as twisted if not more. And this is more a personal preference - the narrator speaks really slowly, so I had to speed it up. If that wasn't an option, I would have found it hard to get through the narration. [I received a copy of this book for an honest review :).] Sumeralyearound Good listen I have to say that I love to listen to audiobooks and it's great when authors bundle them. It also helped with these books because the first 2 were short reads that were only about 2-3 hours each. The narrator did a good job and the author created a world I could see through her writing. Overall a good listen. good and dark this is dark.. sexy and intr
[ 4953, 263, 21117, 363, 278, 25618, 1058, 2748, 4934, 3081, 29889, 399, 2335, 267, 29892, 325, 1160, 2658, 29892, 322, 892, 24437, 1960, 8161, 278, 23779, 310, 5199, 537, 29892, 541, 1009, 14731, 752, 465, 267, 505, 1472, 1951, 1063, 528, 2620, 287, 29889, 12936, 1379, 29892, 3889, 25618, 29892, 322, 25569, 599, 6232, 12561, 29879, 310, 4966, 29892, 2778, 1270, 29892, 5360, 29892, 322, 901, 29889, 1205, 411, 1009, 23779, 577, 17999, 29892, 10503, 2561, 3508, 29915, 29873, 3307, 856, 392, 896, 1122, 505, 304, 28839, 825, 338, 20471, 322, 9425, 342, 304, 963, 565, 896, 864, 304, 1735, 1009, 12080, 29889, 13, 29933, 1774, 29901, 1932, 540, 15502, 304, 2125, 278, 6416, 363, 670, 4870, 11822, 29915, 29879, 5229, 14734, 304, 1371, 278, 12936, 514, 291, 29892, 435, 815, 6363, 540, 7656, 29915, 29873, 5735, 1472, 3307, 304, 28883, 372, 29889, 2398, 29892, 2012, 310, 278, 15996, 1095, 540, 427, 4924, 287, 363, 3654, 29892, 278, 892, 29893, 4369, 14061, 3654, 472, 278, 2778, 1270, 310, 263, 281, 2335, 322, 670, 1401, 336, 1490, 8090, 29889, 14832, 540, 1067, 886, 304, 670, 7602, 2463, 393, 540, 508, 411, 1689, 3099, 670, 716, 5835, 508, 270, 728, 714, 29892, 372, 3508, 29915, 29873, 1472, 1434, 540, 1855, 7093, 24967, 756, 694, 2058, 297, 670, 2834, 408, 278, 5697, 310, 278, 640, 22155, 382, 18849, 306, 874, 29889, 13, 29934, 6447, 29901, 1152, 2440, 29892, 830, 968, 756, 7934, 3448, 297, 670, 3271, 29892, 2143, 4746, 304, 9712, 545, 714, 988, 540, 1795, 3700, 825, 1083, 12772, 1075, 310, 599, 393, 540, 29915, 29879, 5714, 29889, 1932, 1094, 400, 265, 29892, 263, 5199, 266, 2575, 29892, 16706, 964, 670, 3271, 697, 4646, 29892, 540, 1838, 29915, 29873, 505, 263, 7348, 541, 304, 3700, 278, 4023, 845, 8760, 29879, 310, 278, 3186, 540, 29915, 29879, 6077, 670, 1250, 373, 29889, 940, 9906, 540, 11286, 278, 12459, 1601, 23080, 310, 22082, 322, 301, 487, 4240, 2501, 278, 1250, 29879, 310, 25618, 1549, 670, 15142, 29892, 541, 278, 716, 20251, 1016, 29915, 29873, 20341, 403, 17520, 19427, 29889, 13, 3644, 263, 892, 29893, 4369, 508, 29915, 29873, 1044, 2750, 278, 4660, 439, 29877, 1728, 14870, 22261, 27721, 29892, 263, 5199, 411, 1094, 400, 265, 29915, 29879, 274, 27389, 322, 7271, 9942, 794, 292, 2428, 25047, 4450, 4097, 508, 29915, 29873, 12045, 11580, 1009, 8570, 29889, 11275, 8825, 11735, 11308, 963, 528, 9424, 322, 1139, 292, 3692, 896, 526, 8471, 2834, 408, 896, 892, 9146, 470, 565, 10503, 4357, 338, 2289, 8471, 472, 599, 29889, 13, 4789, 29877, 309, 29901, 6811, 278, 4940, 316, 6332, 29892, 12217, 834, 756, 20654, 408, 2428, 25047, 907, 3698, 763, 3654, 505, 6077, 278, 3186, 964, 1009, 1914, 7333, 1708, 2057, 29889, 853, 4561, 278, 4045, 29892, 540, 3282, 29915, 29873, 14169, 515, 278, 11190, 957, 29889, 7569, 931, 540, 269, 10071, 3654, 304, 3013, 263, 17526, 975, 670, 2343, 29892, 540, 29915, 29879, 28430, 368, 9543, 310, 393, 2114, 29889, 3600, 2982, 29880, 536, 29892, 263, 4325, 26689, 8370, 369, 29892, 16688, 1075, 278, 8825, 304, 4380, 701, 373, 670, 23990, 491, 16679, 263, 5199, 29889, 13, 29954, 8345, 287, 304, 8589, 29892, 1939, 801, 756, 10503, 2347, 491, 6820, 297, 304, 670, 3056, 1127, 310, 1906, 1058, 3614, 4129, 3448, 515, 5199, 537, 29889, 1932, 278, 892, 29893, 4369, 508, 29915, 29873, 2867, 1075, 29892, 540, 29915, 29879, 2183, 304, 278, 325, 1160, 533, 2012, 448, 322, 540, 29915, 29879, 1854, 445, 674, 367, 694, 1422, 29889, 450, 1108, 338, 393, 1584, 278, 4023, 845, 3109, 787, 278, 12936, 514, 291, 16187, 1075, 8496, 29915, 29873, 19012, 1075, 363, 4856, 763, 12217, 834, 856, 15970, 2337, 756, 385, 21643, 701, 670, 12844, 29872, 345, 29889, 13, 29933, 1774, 29892, 390, 6447, 29892, 322, 3599, 29877, 309, 4682, 1422, 4890, 5069, 12080, 3380, 304, 2041, 4208, 297, 438, 1233, 287, 322, 6789, 546, 29889, 13, 4013, 270, 858, 459, 713, 3652, 3902, 2361, 1422, 21420, 310, 278, 3186, 29892, 515, 14401, 23490, 304, 278, 528, 2827, 26068, 10534, 304, 11176, 479, 29889, 450, 8277, 3464, 515, 6501, 604, 327, 983, 304, 6017, 749, 304, 23026, 304, 3158, 29898, 728, 29897, 304, 9978, 310, 916, 2712, 297, 1546, 29889, 13, 30211, 29906, 29900, 29896, 29929, 390, 29889, 29715, 313, 29925, 29897, 29906, 29900, 29896, 29929, 390, 29889, 29715, 13, 2887, 962, 2527, 719, 29901, 319, 383, 403, 310, 278, 383, 5442, 6679, 18785, 13, 29949, 1233, 287, 29901, 450, 383, 403, 310, 278, 383, 5442, 13, 29907, 6895, 13, 3644, 366, 763, 6501, 8277, 29973, 2391, 264, 304, 445, 29991, 13, 4074, 342, 292, 322, 6501, 15874, 29892, 263, 3464, 310, 4890, 29892, 4549, 3186, 5214, 29892, 322, 1781, 282, 9390, 29889, 306, 723, 11630, 6907, 445, 304, 5019, 1058, 338, 964, 6501, 261, 8277, 29889, 1619, 25448, 338, 278, 937, 5828, 1363, 372, 29915, 29879, 577, 3252, 12652, 322, 306, 723, 1303, 29914, 20631, 304, 577, 1568, 901, 1048, 435, 815, 322, 382, 18849, 29889, 306, 437, 4459, 393, 278, 937, 3143, 471, 2428, 6501, 29892, 322, 372, 2355, 263, 2217, 301, 14643, 515, 727, 29892, 577, 306, 723, 505, 16389, 278, 15874, 304, 7952, 925, 408, 3252, 12652, 565, 451, 901, 29889, 13, 2855, 445, 338, 901, 263, 7333, 24583, 448, 278, 15474, 1061, 7726, 29879, 2289, 14205, 29892, 577, 306, 750, 304, 6210, 372, 701, 29889, 960, 393, 9007, 29915, 29873, 385, 2984, 29892, 306, 723, 505, 1476, 372, 2898, 304, 679, 1549, 278, 15474, 362, 29889, 13, 29961, 29902, 4520, 263, 3509, 310, 445, 3143, 363, 385, 15993, 9076, 584, 467, 29962, 13, 29903, 4680, 284, 6360, 618, 13, 18420, 11621, 13, 29902, 505, 304, 1827, 393, 306, 5360, 304, 11621, 304, 10348, 12733, 322, 372, 29915, 29879, 2107, 746, 15717, 11846, 963, 29889, 739, 884, 9213, 411, 1438, 8277, 1363, 278, 937, 29871, 29906, 892, 3273, 13623, 393, 892, 871, 1048, 29871, 29906, 29899, 29941, 6199, 1269, 29889, 450, 15474, 1061, 1258, 263, 1781, 4982, 322, 278, 4148, 2825, 263, 3186, 306, 1033, 1074, 1549, 902, 5007, 29889, 6811, 497, 263, 1781, 11621, 29889, 13, 16773, 322, 6501, 13, 1366, 338, 6501, 636, 409, 3594, 322, 11158 ]
1,024
CommonCrawl
0.837608
-0.140815
-0.294867
-0.306669
Image by Nishu kumar / 500px Images Generous like its 23 million people, Taiwan offers wondrous vistas, lively traditions and a culture as luxuriant as Jade Mountain on a sunny day. The Beautiful Isle Famed for centuries as Ilha Formosa (Beautiful Isle; 美麗島; Měilìdǎo), this is a land with more sides than the 11-headed Guanyin. Towering sea cliffs, marble-walled gorges and tropical forests are just the start of your journey, which could take you as far as Yushan, Taiwan's 3952m alpine roof. In Taiwan you can criss-cross mountains on colonial-era hiking trails or cycle a lone highway with the blue Pacific on one side and green volcanic arcs on the other. And if you simply want classic landscapes to enjoy, you'll find them around every corner. 'Have you eaten?' The words are used as a greeting here, and the answer is almost always 'yes', as there's just too much nibbling to do. Taiwan offers the gamut of Chinese cuisines, the best Japanese outside Japan, and a full house of local specialities from Tainan milkfish and Taipei beef noodles to indigenous barbecued wild boar. Night markets serve endless feasts of snacks including oyster omelettes, shrimp rolls and shaved ice. When you're thirsty you can indulge in juices from the freshest fruits, local craft beer, fragrant teas and, in a surprising twist, Asia's best gourmet coffee and drinking chocolate. Asian Values On Their Terms The Taiwanese have created Asia's most vibrant democracy and liberal society, with a raucous free press, gender equality, and respect for human rights and, increasingly, animal rights as well. The ancestors are still worshipped, and parents still get their dues, but woe betide the politician who thinks it's the people who must pander, and not them. If you want to catch a glimpse of the people's passion for protest, check out Taipei main station on most weekends, or just follow the local news. The Tao of Today Taiwan is heir to the entire Chinese tradition of Buddhism, Taoism, Confucianism and that amorphous collection of deities and demons worshipped as folk faith. Over the centuries the people have blended their way into a unique and tolerant religious culture that's often as ritual heavy as Catholicism and as wild as Santería. Taiwanese temples (all 15,000) combine worship hall, festival venue and art house under one roof. Watch a plague boat burn at Donglong Temple, go on a pilgrimage with the Empress of Heaven, study a rooftop three-dimensional mosaic, and learn why a flag and ball have come to represent prayer. Jump to:Table of contents Must see experiences Featured & Latest stories Must see in Taiwan Taroko Gorge Taiwan's top tourist draw is a walk-in Chinese painting. Rising above the froth of the blue-green Liwu River, the marble walls (yes, marble!) of Taroko Gorge swirl with the colours of a master's palette. Add grey mist, lush vegetation and waterfalls seemingly tumbling down from heaven, and you have a truly classic landscape. Walk along the Swallow Grotto to see the gorge at its most sublime or brave the Jhuilu Old Trail, a vertiginous path 500m above the canyon floor. Must see in Temple Treasures There are 15,000 official temples in Taiwan, three times as many as there were 30 years ago. Still the focus of local culture, temples play the role of community centre as much as house of worship. Both Tainan and Lukang boast a wealth of old buildings, from understated Confucius temples to Mazu temples rich in examples of southern folk decorative arts. But if you can only visit one temple in Taiwan, head to Bao'an Temple in Taipei, a showcase of traditional design, rites and festivities. National Palace Museum Taiwan houses what is often believed to be the greatest collection of Chinese art
[ 7084, 491, 405, 728, 29884, 413, 24540, 847, 29871, 29945, 29900, 29900, 1756, 1954, 1179, 13, 5631, 681, 763, 967, 29871, 29906, 29941, 7284, 2305, 29892, 27807, 16688, 281, 898, 29878, 681, 325, 9395, 29892, 301, 3598, 3534, 2187, 322, 263, 9257, 408, 21684, 5338, 424, 408, 435, 1943, 18204, 373, 263, 6575, 1460, 2462, 29889, 13, 1576, 25685, 1317, 280, 13, 29943, 2795, 363, 21726, 408, 1720, 2350, 3812, 3628, 313, 3629, 1300, 6845, 1317, 280, 29936, 29871, 30630, 236, 189, 154, 30721, 29936, 341, 30036, 309, 30097, 29881, 30359, 29877, 511, 445, 338, 263, 2982, 411, 901, 11192, 1135, 278, 29871, 29896, 29896, 29899, 2813, 287, 2088, 1384, 262, 29889, 23615, 292, 7205, 1067, 28324, 29892, 1766, 569, 29899, 29893, 4212, 330, 990, 267, 322, 21881, 363, 9197, 526, 925, 278, 1369, 310, 596, 16342, 29892, 607, 1033, 2125, 366, 408, 2215, 408, 612, 1878, 273, 29892, 27807, 29915, 29879, 29871, 29941, 29929, 29945, 29906, 29885, 394, 26215, 17526, 29889, 13, 797, 27807, 366, 508, 2181, 790, 29899, 19128, 19223, 373, 25539, 29899, 1572, 298, 638, 292, 1020, 2719, 470, 11412, 263, 301, 650, 29469, 411, 278, 7254, 14328, 373, 697, 2625, 322, 7933, 1700, 3068, 293, 564, 2395, 373, 278, 916, 29889, 1126, 565, 366, 3763, 864, 22037, 2982, 1557, 11603, 304, 13389, 29892, 366, 29915, 645, 1284, 963, 2820, 1432, 11155, 29889, 13, 29915, 25559, 366, 321, 2579, 17901, 450, 3838, 526, 1304, 408, 263, 1395, 15133, 1244, 29892, 322, 278, 1234, 338, 4359, 2337, 525, 3582, 742, 408, 727, 29915, 29879, 925, 2086, 1568, 302, 747, 21435, 304, 437, 29889, 27807, 16688, 278, 24988, 329, 310, 10013, 2723, 275, 1475, 29892, 278, 1900, 10369, 5377, 5546, 29892, 322, 263, 2989, 3699, 310, 1887, 4266, 1907, 515, 323, 475, 273, 27274, 15161, 322, 17984, 412, 29875, 367, 1389, 694, 397, 793, 304, 1399, 2101, 681, 2594, 19385, 6742, 8775, 1045, 279, 29889, 11554, 2791, 1691, 9080, 1095, 2222, 1238, 19416, 310, 5807, 26514, 3704, 288, 858, 261, 288, 1004, 13650, 267, 29892, 528, 5632, 29886, 9679, 29879, 322, 528, 10511, 14890, 29889, 1932, 366, 29915, 276, 266, 765, 29891, 366, 508, 29156, 479, 297, 3623, 1575, 515, 278, 10849, 342, 285, 21211, 29892, 1887, 25554, 367, 261, 29892, 5227, 629, 424, 734, 294, 322, 29892, 297, 263, 26800, 3252, 391, 29892, 14325, 29915, 29879, 1900, 330, 473, 2527, 26935, 322, 13748, 292, 521, 542, 23167, 29889, 13, 2887, 713, 2630, 1041, 1551, 11275, 11814, 29879, 13, 1576, 27807, 968, 505, 2825, 14325, 29915, 29879, 1556, 325, 4626, 424, 1261, 25804, 322, 26054, 12459, 29892, 411, 263, 1153, 1682, 681, 3889, 3965, 29892, 23346, 17193, 29892, 322, 3390, 363, 5199, 10462, 322, 29892, 10231, 368, 29892, 13019, 10462, 408, 1532, 29889, 450, 19525, 943, 526, 1603, 6365, 845, 16242, 29892, 322, 11825, 1603, 679, 1009, 27447, 29892, 541, 281, 7297, 1010, 680, 278, 14099, 1058, 22405, 372, 29915, 29879, 278, 2305, 1058, 1818, 282, 3825, 29892, 322, 451, 963, 29889, 960, 366, 864, 304, 4380, 263, 330, 12552, 344, 310, 278, 2305, 29915, 29879, 15935, 363, 10021, 29892, 1423, 714, 17984, 412, 29875, 1667, 5073, 373, 1556, 4723, 1975, 29892, 470, 925, 1101, 278, 1887, 9763, 29889, 13, 1576, 323, 6241, 310, 20628, 13, 29911, 1794, 11440, 338, 540, 381, 304, 278, 4152, 10013, 11399, 310, 28234, 1608, 29892, 323, 6241, 1608, 29892, 10811, 29884, 28445, 1608, 322, 393, 626, 5676, 681, 4333, 310, 316, 1907, 322, 1261, 787, 6365, 845, 16242, 408, 19589, 10847, 29889, 6811, 278, 21726, 278, 2305, 505, 1999, 2760, 1009, 982, 964, 263, 5412, 322, 20341, 424, 12962, 9257, 393, 29915, 29879, 4049, 408, 10421, 950, 9416, 408, 11865, 1608, 322, 408, 8775, 408, 3087, 357, 1553, 29889, 13, 29911, 1794, 11440, 968, 1350, 2701, 313, 497, 29871, 29896, 29945, 29892, 29900, 29900, 29900, 29897, 14405, 26320, 12713, 29892, 16005, 6003, 434, 322, 1616, 3699, 1090, 697, 17526, 29889, 24274, 263, 715, 3437, 13006, 12138, 472, 360, 549, 5426, 18057, 29892, 748, 373, 263, 8230, 629, 3027, 411, 278, 2812, 2139, 310, 22977, 29892, 6559, 263, 696, 29877, 615, 459, 2211, 29899, 12531, 286, 3628, 293, 29892, 322, 5110, 2020, 263, 7353, 322, 8287, 505, 2041, 304, 2755, 27402, 29889, 13, 29967, 3427, 304, 29901, 3562, 310, 8118, 13, 29924, 504, 1074, 27482, 13, 19132, 29881, 669, 7053, 342, 15874, 13, 29924, 504, 1074, 297, 27807, 13, 29911, 279, 15218, 402, 3890, 13, 29911, 1794, 11440, 29915, 29879, 2246, 6282, 391, 4216, 338, 263, 6686, 29899, 262, 10013, 20413, 29889, 390, 5921, 2038, 278, 14671, 386, 310, 278, 7254, 29899, 12692, 2718, 29893, 29884, 6163, 29892, 278, 1766, 569, 14603, 313, 3582, 29892, 1766, 569, 14366, 310, 11740, 15218, 402, 3890, 2381, 5168, 411, 278, 28061, 310, 263, 5835, 29915, 29879, 282, 26456, 29889, 3462, 18345, 5862, 29892, 301, 1878, 18655, 362, 322, 4094, 12559, 2833, 11687, 260, 3774, 1847, 1623, 515, 18356, 29892, 322, 366, 505, 263, 19781, 22037, 24400, 29889, 12878, 3412, 278, 3925, 9536, 402, 5450, 517, 304, 1074, 278, 330, 3890, 472, 967, 1556, 1014, 28046, 470, 26565, 278, 435, 6905, 309, 29884, 8198, 3201, 309, 29892, 263, 4837, 7238, 681, 2224, 29871, 29945, 29900, 29900, 29885, 2038, 278, 508, 29891, 265, 11904, 29889, 13, 29924, 504, 1074, 297, 13, 5776, 552, 6479, 25414, 13, 8439, 526, 29871, 29896, 29945, 29892, 29900, 29900, 29900, 6221, 1350, 2701, 297, 27807, 29892, 2211, 3064, 408, 1784, 408, 727, 892, 29871, 29941, 29900, 2440, 8020, 29889, 12074, 278, 8569, 310, 1887, 9257, 29892, 1350, 2701, 1708, 278, 6297, 310, 7881, 8442, 408, 1568, 408, 3699, 310, 26320, 29889, 9134, 323, 475, 273, 322, 365, 2679, 574, 1045, 579, 263, 17173, 310, 2030, 13814, 29892, 515, 1090, 303, 630, 10811, 29884, 16102, 1350, 2701, 304, 341, 13581, 1350, 2701, 8261, 297, 6455, 310, 14841, 19589, 10200, 1230, 16930, 29889, 1205, 565, 366, 508, 871, 6493, 697, 17567, 297, 27807, 29892, 2343, 304, 6000, 29877, 29915, 273, 18057, 297, 17984, 412, 29875, 29892, 263, 1510, 4878, 310, 13807, 2874, 29892, 364, 3246, 322, 29482, 1907, 29889, 13, 27325, 24537, 6838, 13, 29911, 1794, 11440, 12955, 825, 338, 4049, 13112, 304, 367, 278, 14176, 4333, 310, 10013, 1616 ]
1,024
CommonCrawl
1.753258
-0.408321
1.087708
0.658748
in the world. With ancient pottery, bronzes and jade, Ming vases, Song landscape paintings and calligraphy that even those who are not art lovers can appreciate, Taipei's National Palace Museum isn't merely a must-visit, it's a must-repeat-visit. Why? Out of the nearly 700,000 pieces in the museum's collection – spanning every Chinese dynasty, in addition to prehistory and the modern-age – only a tiny fraction is ever on display at the one time. Latest Stories from Taiwan Airline launches speed dating on "flights to nowhere" November 24th, 2020 • 2 min read Single people looking for love may be in luck this holiday period thanks to "Love is in the Air" flights. See the Taiwanese grandparents who model outfits left behind at their laundromat August 7th, 2020 • 2 min read Grandparents Wan-Ji Chang and Sho-Er Hsu are keeping the internet entertained by dressing up in clothes that have been left in their laundromat for years. Would you try this ramen pizza in Taiwan? July 9th, 2020 • 1 min read Ever felt torn between choosing what you want for dinner? At Pizza Hut Taiwan, visitors can now sample the world's first tonkotsu ramen pizza. "Your chi door is not open": experiencing a traditional knife massage in Taipei January 14th, 2020 • 5 min read The ancient art of knife massage is undergoing a renaissance as a wellness activity in Taiwan. Jamie Fullerton ventures to Taipei to experience one. Sunrise over Jade Mountain: a trip up Taiwan's Alishan Forest Railway November 8th, 2018 • 6 min read Sometime before dawn, a group of dedicated travellers huddle in the dark cold of a small mountain train station. Little puffs of breath rise on the frosty… Big adventures on Little Liuchiu, Taiwan's largest coral island August 15th, 2018 • 7 min read It's midnight, and you're on the beach, wading carefully through the rock pools left behind by low tide. The only sound: the waves rushing back and forth… Southern Taiwan: folk festivals, tropical fun and chocolate June 5th, 2018 • 6 min read Tropical southern Taiwan is a land of turquoise waters and rocky coasts, night markets and beach bars, succulent seafood and fresh produce. One of… Kaohsiung: Taiwan's blossoming cultural city Spring is in the air in Kaohsiung; well, metaphorically anyway. Taiwan's second largest city is reinventing itself from an industrial port to a cultural… Welcome to purridise: Taiwan's Houtong Cat Village September 28th, 2016 • 5 min read Tucked away in the hills of northern Taiwan, there is a small village that houses a furry surprise. Set alongside the Keelung River, the former coal… Balloons, beaches and fiery festivals in Taitung, Taiwan's secret destination June 29th, 2016 • 5 min read On Taiwan's southeastern coast, the alluring, snail-shaped county of Taitung is Taiwan's wonderful secret. Taitung escapes mass tourism, despite having… Asian street food fight: Singapore vs Taipei Many Asian cities claim to be the one true king of street food. Thais boast that Bangkok's endless alleyways filled with tasty dishes make their capital… East Asia's craft beer revolution: the ultimate guide to Japan, Taiwan, South Korea and China September 3rd, 2014 • 6 min read There's something brewing in the Orient, something that will make beer drinkers positively hoppy with glee. It's a craft beer revolution, and one long… Taiwan: a secret foodie wonderland March 14th, 2014 • 5 min read Right now, in-
[ 297, 278, 3186, 29889, 2973, 12297, 3104, 22005, 29892, 12246, 10947, 322, 432, 1943, 29892, 341, 292, 325, 2129, 29892, 9362, 24400, 10675, 886, 322, 1246, 335, 1140, 29891, 393, 1584, 1906, 1058, 526, 451, 1616, 658, 874, 508, 11188, 29892, 17984, 412, 29875, 29915, 29879, 3086, 24537, 6838, 3508, 29915, 29873, 13586, 263, 1818, 29899, 1730, 277, 29892, 372, 29915, 29879, 263, 1818, 29899, 14358, 29899, 1730, 277, 29889, 3750, 29973, 4451, 310, 278, 8886, 29871, 29955, 29900, 29900, 29892, 29900, 29900, 29900, 12785, 297, 278, 19133, 29915, 29879, 4333, 785, 805, 9450, 1432, 10013, 22337, 29891, 29892, 297, 6124, 304, 758, 18434, 322, 278, 5400, 29899, 482, 785, 871, 263, 21577, 15958, 338, 3926, 373, 2479, 472, 278, 697, 931, 29889, 13, 13992, 342, 624, 3842, 515, 27807, 13, 29909, 381, 1220, 6826, 267, 6210, 270, 1218, 373, 376, 1579, 5861, 304, 1286, 4150, 29908, 13, 25363, 1096, 29871, 29906, 29946, 386, 29892, 29871, 29906, 29900, 29906, 29900, 10266, 29871, 29906, 1375, 1303, 13, 15771, 2305, 3063, 363, 5360, 1122, 367, 297, 9885, 445, 8753, 22394, 3785, 3969, 304, 376, 29931, 994, 338, 297, 278, 5593, 29908, 1652, 5861, 29889, 13, 13393, 278, 27807, 968, 4595, 862, 1237, 1058, 1904, 714, 29888, 1169, 2175, 5742, 472, 1009, 425, 870, 456, 271, 13, 26197, 29871, 29955, 386, 29892, 29871, 29906, 29900, 29906, 29900, 10266, 29871, 29906, 1375, 1303, 13, 3338, 392, 862, 1237, 399, 273, 29899, 29967, 29875, 678, 574, 322, 17550, 29899, 2110, 379, 2146, 526, 12515, 278, 8986, 875, 814, 7114, 491, 10714, 292, 701, 297, 22095, 393, 505, 1063, 2175, 297, 1009, 425, 870, 456, 271, 363, 2440, 29889, 13, 29956, 483, 366, 1018, 445, 364, 5071, 282, 24990, 297, 27807, 29973, 13, 29967, 11850, 29871, 29929, 386, 29892, 29871, 29906, 29900, 29906, 29900, 10266, 29871, 29896, 1375, 1303, 13, 29923, 369, 7091, 10146, 1546, 23906, 825, 366, 864, 363, 17803, 29973, 2180, 349, 24990, 379, 329, 27807, 29892, 26824, 508, 1286, 4559, 278, 3186, 29915, 29879, 937, 15243, 29895, 1862, 29884, 364, 5071, 282, 24990, 29889, 13, 29908, 10858, 18558, 3050, 338, 451, 1722, 1115, 10623, 3277, 263, 13807, 889, 1607, 4158, 482, 297, 17984, 412, 29875, 13, 29967, 15623, 653, 29871, 29896, 29946, 386, 29892, 29871, 29906, 29900, 29906, 29900, 10266, 29871, 29945, 1375, 1303, 13, 1576, 12297, 1616, 310, 889, 1607, 4158, 482, 338, 1090, 17696, 263, 364, 2386, 9948, 408, 263, 1532, 2264, 6354, 297, 27807, 29889, 16131, 347, 14846, 28634, 9712, 1973, 304, 17984, 412, 29875, 304, 7271, 697, 29889, 13, 29903, 348, 29878, 895, 975, 435, 1943, 18204, 29901, 263, 17487, 701, 27807, 29915, 29879, 838, 728, 273, 17300, 16795, 13, 25363, 1096, 29871, 29947, 386, 29892, 29871, 29906, 29900, 29896, 29947, 10266, 29871, 29953, 1375, 1303, 13, 29903, 3297, 603, 1434, 27470, 29892, 263, 2318, 310, 16955, 6427, 28257, 298, 566, 29881, 280, 297, 278, 6501, 11220, 310, 263, 2319, 14378, 7945, 5073, 29889, 11143, 2653, 600, 29879, 310, 16172, 14451, 373, 278, 14671, 22062, 30098, 13, 6970, 17623, 1973, 373, 11143, 2718, 987, 5871, 29892, 27807, 29915, 29879, 10150, 1034, 284, 11359, 13, 26197, 29871, 29896, 29945, 386, 29892, 29871, 29906, 29900, 29896, 29947, 10266, 29871, 29955, 1375, 1303, 13, 3112, 29915, 29879, 7145, 11147, 29892, 322, 366, 29915, 276, 373, 278, 25695, 29892, 281, 9382, 16112, 1549, 278, 7679, 772, 3775, 2175, 5742, 491, 4482, 260, 680, 29889, 450, 871, 6047, 29901, 278, 20037, 364, 21616, 1250, 322, 11483, 30098, 13, 29903, 283, 5063, 27807, 29901, 19589, 29482, 1338, 29892, 21881, 2090, 322, 521, 542, 23167, 13, 29967, 1540, 29871, 29945, 386, 29892, 29871, 29906, 29900, 29896, 29947, 10266, 29871, 29953, 1375, 1303, 13, 29911, 1336, 936, 14841, 27807, 338, 263, 2982, 310, 7013, 339, 29877, 895, 19922, 322, 7679, 29891, 12180, 29879, 29892, 4646, 2791, 1691, 322, 25695, 22306, 29892, 8348, 352, 296, 7205, 1181, 397, 322, 10849, 7738, 29889, 3118, 310, 30098, 13, 29968, 29874, 1148, 1039, 686, 29901, 27807, 29915, 29879, 1999, 2209, 28826, 16375, 4272, 13, 19634, 338, 297, 278, 4799, 297, 13680, 1148, 1039, 686, 29936, 1532, 29892, 1539, 481, 2015, 1711, 8763, 29889, 27807, 29915, 29879, 1473, 10150, 4272, 338, 15561, 794, 292, 3528, 515, 385, 18408, 2011, 304, 263, 16375, 30098, 13, 28862, 2763, 304, 282, 1038, 333, 895, 29901, 27807, 29915, 29879, 379, 449, 549, 10459, 24720, 13, 2008, 3266, 29871, 29906, 29947, 386, 29892, 29871, 29906, 29900, 29896, 29953, 10266, 29871, 29945, 1375, 1303, 13, 29911, 2707, 287, 3448, 297, 278, 22696, 310, 14622, 27807, 29892, 727, 338, 263, 2319, 5720, 393, 12955, 263, 3261, 719, 16671, 29889, 3789, 19963, 278, 4813, 295, 686, 6163, 29892, 278, 4642, 17148, 30098, 13, 22031, 417, 787, 29892, 367, 14520, 322, 21334, 29891, 29482, 1338, 297, 323, 1249, 686, 29892, 27807, 29915, 29879, 7035, 12551, 13, 29967, 1540, 29871, 29906, 29929, 386, 29892, 29871, 29906, 29900, 29896, 29953, 10266, 29871, 29945, 1375, 1303, 13, 2951, 27807, 29915, 29879, 13267, 354, 11530, 12180, 29892, 278, 599, 3864, 29892, 5807, 737, 29899, 845, 10501, 15178, 310, 323, 1249, 686, 338, 27807, 29915, 29879, 20695, 7035, 29889, 323, 1249, 686, 3966, 11603, 4158, 6282, 1608, 29892, 15020, 2534, 30098, 13, 2887, 713, 11952, 9687, 8589, 29901, 25960, 7186, 17984, 412, 29875, 13, 14804, 20021, 14368, 5995, 304, 367, 278, 697, 1565, 6989, 310, 11952, 9687, 29889, 498, 1759, 1045, 579, 393, 14320, 29895, 554, 29915, 29879, 1095, 2222, 394, 2330, 1994, 10423, 411, 260, 579, 29891, 270, 17006, 1207, 1009, 7483, 30098, 13, 29923, 579, 14325, 29915, 29879, 25554, 367, 261, 19479, 29901, 278, 8494, 6490, 10754, 304, 5546, 29892, 27807, 29892, 4275, 19109, 322, 7551, 13, 2008, 3266, 29871, 29941, 5499, 29892, 29871, 29906, 29900, 29896, 29946, 10266, 29871, 29953, 1375, 1303, 13, 8439, 29915, 29879, 1554, 2078, 16958, 297, 278, 29650, 29892, 1554, 393, 674, 1207, 367, 261, 13748, 414, 13686, 3598, 5089, 23717, 411, 330, 17179, 29889, 739, 29915, 29879, 263, 25554, 367, 261, 19479, 29892, 322, 697, 1472, 30098, 13, 29911, 1794, 11440, 29901, 263, 7035, 9687, 347, 4997, 1049, 13, 29924, 1279, 29871, 29896, 29946, 386, 29892, 29871, 29906, 29900, 29896, 29946, 10266, 29871, 29945, 1375, 1303, 13, 7341, 1286, 29892, 297, 29899 ]
1,024
CommonCrawl
0.68817
-1.419133
0.129696
-0.298764
the-know foodies from across Asia are descending on an island in the East China Sea to gobble steaming plates of dumplings and nibble… An explosive experience at the Yanshui Fireworks Festival April 11th, 2012 • 4 min read It's just past midnight. In a few moments all hell breaks loose. These are our favorite local haunts, touristy spots, and hidden gems throughout Taiwan. Discover more sights Buddhist Temple Longshan Temple Built in the late 18th century, Longshan Temple remains a showcase of southern temple design. The temple is expansive, covering over 10,000 sq metres within its gated walls, so give yourself a few hours to take in the grandeur and admire the minutiae. Museum 50 A true hidden gem, this private museum has a small but exceptional collection of sculpture and antiques by mid-19th- to 20th-century Japanese artists who were inspired by Taiwan or who had taught early Taiwanese masters. There's mind-blowing jizai okimono (articulated animal figures), such as iron snakes that move like real ones and a metallic pheasant comprising 700 parts; netsuke (small carved ornaments) of outstanding artistry; and beautiful paintings and vases. Most are unique or one of under a handful ever made. Home to the world's largest and arguably finest collection of Chinese art, this vast hoard covers treasures in painting, calligraphy, statuary, bronzes, lacquerware, ceramics, jade and religious objects. Some of the most popular items, such as the famous Jadeite Cabbage, are always on display – although check first that it's not on loan to the southern branch in Chiayi. There are controversial plans to partially or even wholly close the museum in 2020 for three years' refurbishment. Founded in 1738 by Han immigrants from Fujian, this temple has served as a municipal, guild and self-defence centre, as well as a house of worship. These days it is one of the city's top religious sites, and a prime venue for exploring both Taiwan's vibrant folk faith and its unique temple arts and architecture. The temple can get very congested with tourists; try coming early in the morning (before 8am) or late in the evening (after 8pm) to avoid the crush. Dihua Street This former 'Centre Street' has long been known for its Chinese medicine shops, fabric market and lively Lunar New Year sundry market. It has attracted numerous restoration and cultural projects and is now a magnet for young entrepreneurs, eager to breathe new life into the neighbourhood with cafes, restaurants, art studios and antique shops. Thankfully, this gentrification hasn't squashed the original atmosphere – fancy ceramic shops sit side by side with long-term tenants selling sacks of dried mushrooms and agricultural produce. Towering above the city like the gigantic bamboo stalk it was designed to resemble, Taipei 101 is impossible to miss. At 508m, Taipei 101 held the title of 'world's tallest building' for a number of years. Until 2011, it also held the title of the world's tallest green building. Taoist Temple Grand Mazu Temple This lively temple once served as the palace of Ning Jin, the last king of the Ming dynasty. If you wish to confirm visually that a king's status is lower than an emperor's, count the steps to the shrine. There are only seven; an emperor would get nine. Tianliao Stone Temple Tianliao Stone Temple is a fantastical, Gaudi-esque interpretation of a Taoist temple by Southeast Asian migrant workers. The 500 men had been hired to build a highway in the area, but the contractor went out of business and they were stranded with no means. A temple took them in, after trying in vain to negotiate with the labour authorities. In return for free food and lodging, the men were asked to build a temple, which they did in the early 1990s with seashells, corals,
[ 1552, 29899, 28385, 9687, 583, 515, 4822, 14325, 526, 5153, 2548, 373, 385, 11359, 297, 278, 6932, 7551, 14070, 304, 330, 711, 569, 1886, 11500, 715, 1078, 310, 270, 398, 572, 886, 322, 302, 747, 569, 30098, 13, 2744, 20389, 573, 7271, 472, 278, 612, 550, 15669, 6438, 13129, 8518, 13, 29909, 3193, 29871, 29896, 29896, 386, 29892, 29871, 29906, 29900, 29896, 29906, 10266, 29871, 29946, 1375, 1303, 13, 3112, 29915, 29879, 925, 4940, 7145, 11147, 29889, 512, 263, 2846, 19462, 599, 23927, 16706, 23819, 29889, 13, 1349, 968, 526, 1749, 25448, 1887, 447, 348, 1372, 29892, 6282, 391, 29891, 805, 1862, 29892, 322, 7934, 330, 1567, 10106, 27807, 29889, 13, 4205, 11911, 901, 269, 5861, 13, 29933, 566, 12744, 391, 18057, 13, 8208, 845, 273, 18057, 13, 3727, 2782, 297, 278, 5683, 29871, 29896, 29947, 386, 6462, 29892, 6242, 845, 273, 18057, 9242, 263, 1510, 4878, 310, 14841, 17567, 2874, 29889, 450, 17567, 338, 1518, 550, 573, 29892, 21653, 975, 29871, 29896, 29900, 29892, 29900, 29900, 29900, 18074, 17963, 2629, 967, 330, 630, 14603, 29892, 577, 2367, 7535, 263, 2846, 6199, 304, 2125, 297, 278, 6815, 332, 322, 7336, 533, 278, 1375, 329, 23395, 29889, 13, 29924, 5021, 29871, 29945, 29900, 13, 29909, 1565, 7934, 7055, 29892, 445, 2024, 19133, 756, 263, 2319, 541, 3682, 284, 4333, 310, 17039, 545, 322, 9418, 1912, 491, 7145, 29899, 29896, 29929, 386, 29899, 304, 29871, 29906, 29900, 386, 29899, 27371, 10369, 17906, 1058, 892, 20603, 491, 27807, 470, 1058, 750, 16187, 4688, 27807, 968, 5835, 29879, 29889, 1670, 29915, 29879, 3458, 29899, 29890, 677, 292, 432, 466, 1794, 3431, 326, 3231, 313, 442, 293, 7964, 13019, 13994, 511, 1316, 408, 13977, 5807, 6926, 393, 4337, 763, 1855, 6743, 322, 263, 1539, 497, 293, 282, 354, 13186, 7199, 5921, 29871, 29955, 29900, 29900, 5633, 29936, 302, 1691, 29884, 446, 313, 9278, 1559, 1490, 15937, 20060, 29897, 310, 714, 11235, 1616, 6020, 29936, 322, 9560, 10675, 886, 322, 325, 2129, 29889, 7849, 526, 5412, 470, 697, 310, 1090, 263, 1361, 1319, 3926, 1754, 29889, 13, 11184, 304, 278, 3186, 29915, 29879, 10150, 322, 1852, 29884, 2197, 1436, 342, 4333, 310, 10013, 1616, 29892, 445, 13426, 5089, 538, 18469, 2578, 25414, 297, 20413, 29892, 1246, 335, 1140, 29891, 29892, 1002, 29884, 653, 29892, 12246, 10947, 29892, 24011, 7808, 2519, 29892, 5147, 314, 1199, 29892, 432, 1943, 322, 12962, 3618, 29889, 3834, 310, 278, 1556, 5972, 4452, 29892, 1316, 408, 278, 13834, 435, 1943, 568, 315, 8846, 482, 29892, 526, 2337, 373, 2479, 785, 5998, 1423, 937, 393, 372, 29915, 29879, 451, 373, 24806, 304, 278, 14841, 5443, 297, 18168, 388, 29875, 29889, 1670, 526, 19341, 616, 13900, 304, 22039, 470, 1584, 377, 18368, 3802, 278, 19133, 297, 29871, 29906, 29900, 29906, 29900, 363, 2211, 2440, 29915, 2143, 9265, 18310, 29889, 13, 29943, 7261, 297, 29871, 29896, 29955, 29941, 29947, 491, 7169, 5198, 4481, 1934, 515, 383, 8016, 713, 29892, 445, 17567, 756, 6766, 408, 263, 11677, 29892, 1410, 789, 322, 1583, 29899, 1753, 663, 8442, 29892, 408, 1532, 408, 263, 3699, 310, 26320, 29889, 4525, 3841, 372, 338, 697, 310, 278, 4272, 29915, 29879, 2246, 12962, 11840, 29892, 322, 263, 6019, 6003, 434, 363, 3902, 8253, 1716, 27807, 29915, 29879, 325, 4626, 424, 19589, 10847, 322, 967, 5412, 17567, 16930, 322, 11258, 29889, 450, 17567, 508, 679, 1407, 378, 29887, 2868, 411, 6282, 2879, 29936, 1018, 6421, 4688, 297, 278, 7250, 313, 11083, 29871, 29947, 314, 29897, 470, 5683, 297, 278, 11005, 313, 7045, 29871, 29947, 3358, 29897, 304, 4772, 278, 2181, 1878, 29889, 13, 29928, 4861, 3357, 7103, 13, 4013, 4642, 525, 29907, 14056, 7103, 29915, 756, 1472, 1063, 2998, 363, 967, 10013, 26602, 528, 3554, 29892, 18187, 9999, 322, 301, 3598, 365, 348, 279, 1570, 8905, 480, 299, 719, 9999, 29889, 739, 756, 13978, 287, 12727, 1791, 12418, 322, 16375, 9279, 322, 338, 1286, 263, 10710, 363, 4123, 23440, 1600, 1295, 29892, 19888, 304, 2078, 271, 354, 716, 2834, 964, 278, 29643, 411, 274, 2142, 267, 29892, 12374, 1934, 29892, 1616, 1921, 2363, 322, 3677, 1387, 528, 3554, 29889, 3374, 3730, 29892, 445, 8116, 29878, 2450, 22602, 29915, 29873, 10674, 25936, 278, 2441, 25005, 785, 19231, 5147, 314, 293, 528, 3554, 7845, 2625, 491, 2625, 411, 1472, 29899, 8489, 3006, 1934, 269, 7807, 269, 26514, 310, 270, 1255, 286, 1878, 18901, 322, 18032, 3631, 7738, 29889, 13, 29911, 1680, 292, 2038, 278, 4272, 763, 278, 19340, 7716, 289, 314, 833, 29877, 380, 2235, 372, 471, 8688, 304, 620, 6967, 29892, 17984, 412, 29875, 29871, 29896, 29900, 29896, 338, 9301, 304, 3052, 29889, 2180, 29871, 29945, 29900, 29947, 29885, 29892, 17984, 412, 29875, 29871, 29896, 29900, 29896, 4934, 278, 3611, 310, 525, 11526, 29915, 29879, 15655, 342, 5214, 29915, 363, 263, 1353, 310, 2440, 29889, 28609, 29871, 29906, 29900, 29896, 29896, 29892, 372, 884, 4934, 278, 3611, 310, 278, 3186, 29915, 29879, 15655, 342, 7933, 5214, 29889, 13, 29911, 6241, 391, 18057, 13, 3338, 392, 341, 13581, 18057, 13, 4013, 301, 3598, 17567, 2748, 6766, 408, 278, 24369, 310, 405, 292, 29779, 29892, 278, 1833, 6989, 310, 278, 341, 292, 22337, 29891, 29889, 960, 366, 6398, 304, 9659, 1998, 1474, 393, 263, 6989, 29915, 29879, 4660, 338, 5224, 1135, 385, 953, 13651, 29915, 29879, 29892, 2302, 278, 6576, 304, 278, 14653, 457, 29889, 1670, 526, 871, 9881, 29936, 385, 953, 13651, 723, 679, 14183, 29889, 13, 29911, 713, 4456, 29877, 15681, 18057, 13, 29911, 713, 4456, 29877, 15681, 18057, 338, 263, 13568, 579, 936, 29892, 10415, 4749, 29899, 267, 802, 19854, 310, 263, 323, 6241, 391, 17567, 491, 317, 449, 15879, 20021, 9725, 424, 17162, 29889, 450, 29871, 29945, 29900, 29900, 1757, 750, 1063, 298, 2859, 304, 2048, 263, 29469, 297, 278, 4038, 29892, 541, 278, 8078, 272, 3512, 714, 310, 5381, 322, 896, 892, 851, 392, 287, 411, 694, 2794, 29889, 319, 17567, 3614, 963, 297, 29892, 1156, 1811, 297, 15722, 304, 27214, 403, 411, 278, 23390, 21142, 29889, 512, 736, 363, 3889, 9687, 322, 21896, 3460, 29892, 278, 1757, 892, 4433, 304, 2048, 263, 17567, 29892, 607, 896, 1258, 297, 278, 4688, 29871, 29896, 29929, 29929, 29900, 29879, 411, 409, 1161, 10071, 29892, 1034, 1338, 29892 ]
1,024
CommonCrawl
1.052256
-0.551564
1.148677
0.271696
Magento Developer Blog Editing the Magento Core For Fun and Profit All communityThis categoryBlogKnowledge baseUsers cancel JoshuaSWarren M1 Certified One of the first things a new Magento developer learns is "never edit the core". Both Magento 1 and Magento 2 are designed to be easily upgradable, and a key component of that ability to upgrade is the fact that there are a set of core files living under the Magento namespace that should never be edited. This is such common knowledge (and a frequent complaint when you inherit a project from another developer) that it's become a meme, first as an image of Magento Evangelist Ben Marks demanding to know "Did you just edit the core?" and later as stickers and t-shirts featuring that image. However, thanks to the efforts of Magento's Community Engineering team, editing the core is not just allowed, it's encouraged! Specifically, Magento now has a process through which anyone can submit a pull request containing a bug fix, improvement or new feature to the Magento core, so that all Magento users can benefit from it. This type of core edit not only preserves the upgradability of the Magento system, it allows Magento to operate as a true open source project, with contributors from all over the world. Let's take a look at the value of contributing to the Magento core, how to go about contributing, who can contribute and some recent contributions I've been involved with here at Creatuity. Why Should I Contribute? If you're already an open source advocate, then you already understand the value of participating in an open source project by contributing. For those that are new to open source contributions, though, there are many benefits to contributing to any open source project, and there's some strong reasons to contribute specifically to Magento. Magento is a complex system consisting of thousands of files with a very strong set of architectural patterns. Resolving an open issue and submitting a pull request with the fix will give you a deep education and understanding of how different pieces within the Magento architecture interact more than any other task you complete in Magento ever will. Pull requests you submit to Magento are reviewed by community volunteers as well as core Magento developers and architects. This allows you to learn from some of the brightest minds that are most familiar with the Magento system. From a completely capitalist viewpoint, contributing to the core Magento product can be an excellent way to further your own career. Each year, merchants running on the Magento platform generate over $100 billion in revenue. Service providers, developers, hosting companies and other similar enterprises generate over $4 billion in revenue each year providing services to those merchants. There are tens of thousands of developers competing for the attention of those merchants and agencies, but less than 500 of those developers have contributed to the Magento core. Nothing stands out on a resume or project proposal like the fact that you have written a piece of the Magento core code. On the opposite end of the spectrum, contributing to the Magento core is a great way to give back. Many of us have jobs, friends and opportunities we never would have had if Magento didn't exist. At a minimum, if you've been working with the Magento platform for more than a month or two, chances are you've used at least one open source tool or contribution from another developer. Contributing a fix or new feature to the Magento core is a great way to pay it forward and repay that kindness with a contribution of your own. Finally, if you have a chance to attend a Magento Contribution Day, often held in conjunction with a Magento-focused conference, contributing can be quite a bit of fun. There's nothing quite like being in a room full of developers who understand the Magento platform and working on resolving a nagging bug or issue in Magento together. How Do I Contribute? Now that you're excited to contribute to the Magento, hopefully for both fun and profit, how do you contribute? Contributions take on quite a few different forms, but for now let's assume you're thinking of writing some code and submitting a pull request to the Magento core. These pull requests are all processed and overseen by the Magento Community Engineering team, a group of Magento Inc. employees that focus on three major initiatives: Processing pull requests submitted to the community on the Magento 2 GitHub repository and encouraging those contributions and assisting those contributors. Working with a group of community contributors on
[ 3561, 9239, 10682, 261, 350, 1188, 13, 6103, 292, 278, 3561, 9239, 10239, 1152, 13811, 322, 6175, 277, 13, 3596, 7881, 4013, 7663, 29933, 1188, 29968, 3707, 5485, 2967, 5959, 12611, 13, 29967, 10578, 3357, 23066, 279, 1267, 13, 29924, 29896, 18410, 2164, 13, 6716, 310, 278, 937, 2712, 263, 716, 3561, 9239, 13897, 24298, 1983, 338, 376, 484, 369, 3863, 278, 7136, 1642, 9134, 3561, 9239, 29871, 29896, 322, 3561, 9239, 29871, 29906, 526, 8688, 304, 367, 5948, 20337, 519, 29892, 322, 263, 1820, 4163, 310, 393, 11509, 304, 14955, 338, 278, 2114, 393, 727, 526, 263, 731, 310, 7136, 2066, 8471, 1090, 278, 3561, 9239, 7397, 393, 881, 2360, 367, 8788, 29889, 910, 338, 1316, 3619, 7134, 313, 392, 263, 17091, 15313, 524, 746, 366, 13125, 263, 2060, 515, 1790, 13897, 29897, 393, 372, 29915, 29879, 4953, 263, 286, 2004, 29892, 937, 408, 385, 1967, 310, 3561, 9239, 21827, 391, 4111, 4485, 29879, 9667, 292, 304, 1073, 376, 9260, 366, 925, 3863, 278, 7136, 3026, 322, 2678, 408, 12070, 414, 322, 260, 29899, 845, 381, 1372, 23425, 393, 1967, 29889, 13, 17245, 29892, 3969, 304, 278, 14231, 310, 3561, 9239, 29915, 29879, 19184, 22557, 3815, 29892, 16278, 278, 7136, 338, 451, 925, 6068, 29892, 372, 29915, 29879, 18443, 287, 29991, 26321, 29892, 3561, 9239, 1286, 756, 263, 1889, 1549, 607, 5019, 508, 9752, 263, 8206, 2009, 6943, 263, 6494, 2329, 29892, 20414, 470, 716, 4682, 304, 278, 3561, 9239, 7136, 29892, 577, 393, 599, 3561, 9239, 4160, 508, 14169, 515, 372, 29889, 910, 1134, 310, 7136, 3863, 451, 871, 2225, 20098, 278, 20337, 3097, 310, 278, 3561, 9239, 1788, 29892, 372, 6511, 3561, 9239, 304, 21994, 408, 263, 1565, 1722, 2752, 2060, 29892, 411, 17737, 29560, 515, 599, 975, 278, 3186, 29889, 13, 12024, 29915, 29879, 2125, 263, 1106, 472, 278, 995, 310, 17737, 17068, 304, 278, 3561, 9239, 7136, 29892, 920, 304, 748, 1048, 17737, 17068, 29892, 1058, 508, 29126, 322, 777, 7786, 20706, 306, 29915, 345, 1063, 9701, 411, 1244, 472, 6760, 8088, 537, 29889, 13, 11008, 10575, 306, 2866, 2666, 29973, 13, 3644, 366, 29915, 276, 2307, 385, 1722, 2752, 22545, 403, 29892, 769, 366, 2307, 2274, 278, 995, 310, 5221, 1218, 297, 385, 1722, 2752, 2060, 491, 17737, 17068, 29889, 1152, 1906, 393, 526, 716, 304, 1722, 2752, 20706, 29892, 2466, 29892, 727, 526, 1784, 23633, 304, 17737, 17068, 304, 738, 1722, 2752, 2060, 29892, 322, 727, 29915, 29879, 777, 4549, 9590, 304, 29126, 10816, 304, 3561, 9239, 29889, 13, 19095, 9239, 338, 263, 4280, 1788, 19849, 310, 17202, 310, 2066, 411, 263, 1407, 4549, 731, 310, 6956, 3631, 15038, 29889, 24062, 1747, 385, 1722, 2228, 322, 11834, 5367, 263, 8206, 2009, 411, 278, 2329, 674, 2367, 366, 263, 6483, 9793, 322, 8004, 310, 920, 1422, 12785, 2629, 278, 3561, 9239, 11258, 16254, 901, 1135, 738, 916, 3414, 366, 4866, 297, 3561, 9239, 3926, 674, 29889, 13, 29925, 913, 7274, 366, 9752, 304, 3561, 9239, 526, 9076, 287, 491, 7881, 27886, 414, 408, 1532, 408, 7136, 3561, 9239, 18777, 322, 6956, 29879, 29889, 910, 6511, 366, 304, 5110, 515, 777, 310, 278, 11785, 342, 27656, 393, 526, 1556, 9985, 411, 278, 3561, 9239, 1788, 29889, 13, 4591, 263, 6446, 7483, 391, 1776, 3149, 29892, 17737, 17068, 304, 278, 7136, 3561, 9239, 3234, 508, 367, 385, 15129, 982, 304, 4340, 596, 1914, 6413, 29889, 7806, 1629, 29892, 2778, 305, 1934, 2734, 373, 278, 3561, 9239, 7481, 5706, 975, 395, 29896, 29900, 29900, 24464, 297, 337, 9947, 29889, 6692, 1326, 11376, 29892, 18777, 29892, 23376, 14582, 322, 916, 2788, 3896, 558, 4637, 5706, 975, 395, 29946, 24464, 297, 337, 9947, 1269, 1629, 13138, 5786, 304, 1906, 2778, 305, 1934, 29889, 1670, 526, 25187, 310, 17202, 310, 18777, 5100, 292, 363, 278, 8570, 310, 1906, 2778, 305, 1934, 322, 946, 15942, 29892, 541, 3109, 1135, 29871, 29945, 29900, 29900, 310, 1906, 18777, 505, 26869, 304, 278, 3561, 9239, 7136, 29889, 9531, 15028, 714, 373, 263, 620, 2017, 470, 2060, 24963, 763, 278, 2114, 393, 366, 505, 3971, 263, 8424, 310, 278, 3561, 9239, 7136, 775, 29889, 13, 2951, 278, 11564, 1095, 310, 278, 18272, 29892, 17737, 17068, 304, 278, 3561, 9239, 7136, 338, 263, 2107, 982, 304, 2367, 1250, 29889, 9267, 310, 502, 505, 17643, 29892, 7875, 322, 28602, 1907, 591, 2360, 723, 505, 750, 565, 3561, 9239, 3282, 29915, 29873, 1863, 29889, 2180, 263, 9212, 29892, 565, 366, 29915, 345, 1063, 1985, 411, 278, 3561, 9239, 7481, 363, 901, 1135, 263, 4098, 470, 1023, 29892, 521, 2925, 526, 366, 29915, 345, 1304, 472, 3203, 697, 1722, 2752, 5780, 470, 11896, 515, 1790, 13897, 29889, 2866, 1091, 17068, 263, 2329, 470, 716, 4682, 304, 278, 3561, 9239, 7136, 338, 263, 2107, 982, 304, 5146, 372, 6375, 322, 1634, 388, 393, 2924, 2264, 411, 263, 11896, 310, 596, 1914, 29889, 13, 12881, 635, 29892, 565, 366, 505, 263, 8825, 304, 14333, 263, 3561, 9239, 2866, 3224, 8373, 29892, 4049, 4934, 297, 9589, 651, 411, 263, 3561, 9239, 29899, 29888, 542, 3880, 21362, 29892, 17737, 17068, 508, 367, 3755, 263, 2586, 310, 2090, 29889, 1670, 29915, 29879, 3078, 3755, 763, 1641, 297, 263, 5716, 2989, 310, 18777, 1058, 2274, 278, 3561, 9239, 7481, 322, 1985, 373, 3770, 1747, 263, 17995, 3460, 6494, 470, 2228, 297, 3561, 9239, 4208, 29889, 13, 5328, 1938, 306, 2866, 2666, 29973, 13, 10454, 393, 366, 29915, 276, 24173, 304, 29126, 304, 278, 3561, 9239, 29892, 27581, 363, 1716, 2090, 322, 21665, 29892, 920, 437, 366, 29126, 29973, 2866, 3224, 29879, 2125, 373, 3755, 263, 2846, 1422, 7190, 29892, 541, 363, 1286, 1235, 29915, 29879, 5251, 366, 29915, 276, 7291, 310, 5007, 777, 775, 322, 11834, 5367, 263, 8206, 2009, 304, 278, 3561, 9239, 7136, 29889, 4525, 8206, 7274, 526, 599, 19356, 322, 975, 28026, 491, 278, 3561, 9239, 19184, 22557, 3815, 29892, 263, 2318, 310, 3561, 9239, 9266, 29889, 22873, 393, 8569, 373, 2211, 4655, 14511, 5056, 29901, 13, 7032, 292, 8206, 7274, 18397, 304, 278, 7881, 373, 278, 3561, 9239, 29871, 29906, 25492, 9810, 322, 18443, 292, 1906, 20706, 322, 6985, 292, 1906, 17737, 29560, 29889, 13, 5531, 292, 411, 263, 2318, 310, 7881, 17737, 29560, 373 ]
1,024
CommonCrawl
0.775116
0.415935
0.908385
1.847732
a major new feature for Magento 2 - multi-source inventory. This is a massive co-development effort between Magento Inc and a number of community contributors. Managing the Magento Partner Contributions Program, a method by which Magento partner agencies are able to submit pull requests to Magento. If after reading this article you're still not sure how to contribute or what to contribute, the official [Magento Community Engineering Slack channel] is a great place to chat with the Community Engineering team. You can request access to that Slack group by emailing engcom [at] magento [dot] com. Magento labels issues on the Magento 2 GitHub repository with the label 'up for grabs' when the issue seems like one that would be good for a community member to contribute, but community members are always welcome to fix any issue they'd like. Magento also organizes events such as this year's "Squashtoberfest" where they will tag a specific set of issues on the Magento 2 GitHub repository as targets for the event and then give prizes and special recognition to community members for resolving those issues with a pull request by a specific deadline. These events help Magento bundle fixes and contributions into specific upcoming releases. Finally, Magento also encourages their partners to submit through a Partner Community Engineering initiative where Magento solution partners are rewarded when their employees submit pull requests. Once you've identified the specific contribution you want to make, Magento has a set of guidelines on how to submit your contribution, online in the [Magento DevDocs documentation]. These guidelines are similar to working on any other open source project you may have interacted with on GitHub, and primarily consist of: Fork the Magento 2 GitHub repository, complete your work and submit a pull request. Once your pull request is submitted, it will go through automated and manual reviews. If additional work or clarification is required, respond within two weeks or the pull request may be closed to keep the Magento 2 repository manageable. Pull requests that introduce new functionality should also include a corresponding pull request to the Magento DevDocs documentation as well as test coverage to allow for the automated testing of the new functionality. All contributors must electronically sign a contributor license agreement, outlining your ownership of the code that you've contributed and granting Magento the right to use that code. Anyone Can Contribute Now that you understand how to contribute, you might be thinking you don't have the time or maybe aren't sure if your Magento 2 experience is deep enough to allow you to contribute. It's important to realize - everyone can contribute! Contributions are much more than just pull requests. While pull requests for bug fixes and new features are wonderful, there are many ways to contribute to the Magento 2 project without writing a single line of code. If you're interested in testing, QA and documenting issues, there's always issues on the Magento 2 GitHub repository that need further details. By scanning the list of open issues, you can look at the labels and easily see if there are issues that the Magento team has been able to reproduce as they will be tagged with labels such as 'Reproduced on 2.2.x'. You'll see other issues marked with the label 'needs update' - these are issues where the original reporter may not have provided enough information or clear steps to reproduce this issue. Oftentimes a fresh set of eyes on the original bug report can discern what the original reporter was referring to and can provide clarification that allows the issue to be reproduced so that it can be resolved. Opening issues can be a helpful way of contributing as well. When you're working with any software package on a regular basis it's common for there to be minor issues that you always work around or ignore. By taking the time to contribute a report documenting the issue or a potential enhancement to Magento, you pave the way for those minor issues to be resolved, improving not just your experience but the experience of every developer working with the Magento platform. Taking the time to write a good, easy to reproduce issue is a great way to contribute to the Magento project. Finally, the Magento developer documentation team has led the way in embracing an open source ethos. Before the Magento 2 codebase was available on GitHub, the Magento 2 Developer Documentation, "DevDocs", was on GitHub and accepting pull requests. So, if you enjoy technical writing, contribute to DevDocs! The DevDocs GitHub repository has a list of open issues where developers have listed areas that the documentation may be incorrect or incomplete, so
[ 263, 4655, 716, 4682, 363, 3561, 9239, 29871, 29906, 448, 2473, 29899, 4993, 11817, 706, 29889, 910, 338, 263, 20364, 1302, 29899, 25431, 7225, 1546, 3561, 9239, 9266, 322, 263, 1353, 310, 7881, 17737, 29560, 29889, 13, 2517, 6751, 278, 3561, 9239, 3455, 1089, 2866, 3224, 29879, 7835, 29892, 263, 1158, 491, 607, 3561, 9239, 18096, 946, 15942, 526, 2221, 304, 9752, 8206, 7274, 304, 3561, 9239, 29889, 13, 3644, 1156, 5183, 445, 4274, 366, 29915, 276, 1603, 451, 1854, 920, 304, 29126, 470, 825, 304, 29126, 29892, 278, 6221, 518, 19095, 9239, 19184, 22557, 317, 2364, 8242, 29962, 338, 263, 2107, 2058, 304, 13563, 411, 278, 19184, 22557, 3815, 29889, 887, 508, 2009, 2130, 304, 393, 317, 2364, 2318, 491, 4876, 292, 3033, 510, 518, 271, 29962, 2320, 9239, 518, 6333, 29962, 419, 29889, 13, 19095, 9239, 11073, 5626, 373, 278, 3561, 9239, 29871, 29906, 25492, 9810, 411, 278, 3858, 525, 786, 363, 2646, 5824, 29915, 746, 278, 2228, 2444, 763, 697, 393, 723, 367, 1781, 363, 263, 7881, 4509, 304, 29126, 29892, 541, 7881, 5144, 526, 2337, 12853, 304, 2329, 738, 2228, 896, 29915, 29881, 763, 29889, 3561, 9239, 884, 2894, 7093, 4959, 1316, 408, 445, 1629, 29915, 29879, 376, 29903, 339, 294, 400, 4950, 29613, 29908, 988, 896, 674, 4055, 263, 2702, 731, 310, 5626, 373, 278, 3561, 9239, 29871, 29906, 25492, 9810, 408, 22525, 363, 278, 1741, 322, 769, 2367, 3691, 10947, 322, 4266, 19679, 304, 7881, 5144, 363, 3770, 1747, 1906, 5626, 411, 263, 8206, 2009, 491, 263, 2702, 7123, 1220, 29889, 4525, 4959, 1371, 3561, 9239, 11846, 24626, 322, 20706, 964, 2702, 701, 11506, 27474, 29889, 13, 12881, 635, 29892, 3561, 9239, 884, 18443, 267, 1009, 22056, 304, 9752, 1549, 263, 3455, 1089, 19184, 22557, 14511, 1230, 988, 3561, 9239, 1650, 22056, 526, 20751, 287, 746, 1009, 22873, 9752, 8206, 7274, 29889, 13, 26222, 366, 29915, 345, 15659, 278, 2702, 11896, 366, 864, 304, 1207, 29892, 3561, 9239, 756, 263, 731, 310, 1410, 10652, 1475, 373, 920, 304, 9752, 596, 11896, 29892, 7395, 297, 278, 518, 19095, 9239, 9481, 29928, 12332, 5106, 1822, 4525, 1410, 10652, 1475, 526, 2788, 304, 1985, 373, 738, 916, 1722, 2752, 2060, 366, 1122, 505, 16254, 287, 411, 373, 25492, 29892, 322, 19434, 5718, 310, 29901, 13, 29943, 548, 278, 3561, 9239, 29871, 29906, 25492, 9810, 29892, 4866, 596, 664, 322, 9752, 263, 8206, 2009, 29889, 13, 26222, 596, 8206, 2009, 338, 18397, 29892, 372, 674, 748, 1549, 3345, 630, 322, 12219, 21804, 29889, 960, 5684, 664, 470, 7542, 2450, 338, 3734, 29892, 10049, 2629, 1023, 11405, 470, 278, 8206, 2009, 1122, 367, 5764, 304, 3013, 278, 3561, 9239, 29871, 29906, 9810, 10933, 519, 29889, 13, 29925, 913, 7274, 393, 14944, 716, 9863, 881, 884, 3160, 263, 6590, 8206, 2009, 304, 278, 3561, 9239, 9481, 29928, 12332, 5106, 408, 1532, 408, 1243, 23746, 304, 2758, 363, 278, 3345, 630, 6724, 310, 278, 716, 9863, 29889, 13, 3596, 17737, 29560, 1818, 11966, 1711, 1804, 263, 17737, 3406, 19405, 17327, 29892, 714, 1915, 292, 596, 27428, 310, 278, 775, 393, 366, 29915, 345, 26869, 322, 16690, 292, 3561, 9239, 278, 1492, 304, 671, 393, 775, 29889, 13, 10773, 650, 1815, 2866, 2666, 13, 10454, 393, 366, 2274, 920, 304, 29126, 29892, 366, 1795, 367, 7291, 366, 1016, 29915, 29873, 505, 278, 931, 470, 5505, 9455, 29915, 29873, 1854, 565, 596, 3561, 9239, 29871, 29906, 7271, 338, 6483, 3307, 304, 2758, 366, 304, 29126, 29889, 739, 29915, 29879, 4100, 304, 16289, 448, 14332, 508, 29126, 29991, 2866, 3224, 29879, 526, 1568, 901, 1135, 925, 8206, 7274, 29889, 5806, 8206, 7274, 363, 6494, 24626, 322, 716, 5680, 526, 20695, 29892, 727, 526, 1784, 5837, 304, 29126, 304, 278, 3561, 9239, 29871, 29906, 2060, 1728, 5007, 263, 2323, 1196, 310, 775, 29889, 13, 3644, 366, 29915, 276, 8852, 297, 6724, 29892, 660, 29909, 322, 1842, 292, 5626, 29892, 727, 29915, 29879, 2337, 5626, 373, 278, 3561, 9239, 29871, 29906, 25492, 9810, 393, 817, 4340, 4902, 29889, 2648, 885, 9450, 278, 1051, 310, 1722, 5626, 29892, 366, 508, 1106, 472, 278, 11073, 322, 5948, 1074, 565, 727, 526, 5626, 393, 278, 3561, 9239, 3815, 756, 1063, 2221, 304, 18532, 408, 896, 674, 367, 4055, 3192, 411, 11073, 1316, 408, 525, 1123, 5498, 1133, 373, 29871, 29906, 29889, 29906, 29889, 29916, 4286, 887, 29915, 645, 1074, 916, 5626, 10902, 411, 278, 3858, 525, 484, 5779, 2767, 29915, 448, 1438, 526, 5626, 988, 278, 2441, 1634, 9555, 1122, 451, 505, 4944, 3307, 2472, 470, 2821, 6576, 304, 18532, 445, 2228, 29889, 438, 615, 296, 1355, 263, 10849, 731, 310, 5076, 373, 278, 2441, 6494, 3461, 508, 2313, 824, 825, 278, 2441, 1634, 9555, 471, 16811, 304, 322, 508, 3867, 7542, 2450, 393, 6511, 278, 2228, 304, 367, 9483, 1133, 577, 393, 372, 508, 367, 11527, 29889, 13, 6585, 292, 5626, 508, 367, 263, 8444, 982, 310, 17737, 17068, 408, 1532, 29889, 1932, 366, 29915, 276, 1985, 411, 738, 7047, 3577, 373, 263, 4943, 8405, 372, 29915, 29879, 3619, 363, 727, 304, 367, 9461, 5626, 393, 366, 2337, 664, 2820, 470, 11455, 29889, 2648, 5622, 278, 931, 304, 29126, 263, 3461, 1842, 292, 278, 2228, 470, 263, 7037, 26371, 27967, 304, 3561, 9239, 29892, 366, 282, 1351, 278, 982, 363, 1906, 9461, 5626, 304, 367, 11527, 29892, 4857, 1747, 451, 925, 596, 7271, 541, 278, 7271, 310, 1432, 13897, 1985, 411, 278, 3561, 9239, 7481, 29889, 323, 5086, 278, 931, 304, 2436, 263, 1781, 29892, 4780, 304, 18532, 2228, 338, 263, 2107, 982, 304, 29126, 304, 278, 3561, 9239, 2060, 29889, 13, 12881, 635, 29892, 278, 3561, 9239, 13897, 5106, 3815, 756, 5331, 278, 982, 297, 7232, 945, 292, 385, 1722, 2752, 11314, 359, 29889, 10949, 278, 3561, 9239, 29871, 29906, 775, 3188, 471, 3625, 373, 25492, 29892, 278, 3561, 9239, 29871, 29906, 10682, 261, 10854, 362, 29892, 376, 16618, 29928, 12332, 613, 471, 373, 25492, 322, 25967, 8206, 7274, 29889, 1105, 29892, 565, 366, 13389, 16905, 5007, 29892, 29126, 304, 9481, 29928, 12332, 29991, 450, 9481, 29928, 12332, 25492, 9810, 756, 263, 1051, 310, 1722, 5626, 988, 18777, 505, 9904, 10161, 393, 278, 5106, 1122, 367, 10240, 470, 28907, 29892, 577 ]
1,024
CommonCrawl
0.4382
0.235543
0.634022
1.878089
reviewing those issues and then submitting a pull request to DevDocs with updated documentation is another great way to contribute to the Magento project without writing a single line of code. Also, thanks to the fact that the DevDocs accept pull requests, if you ever find a mistake in the documentation you can submit a pull request on the spot to correct it and ensure other developers aren't tripped up by that error. Our Recent Contributions I've had the pleasure of being involved in several recent contributions to the Magento 2 core, each of which was an interesting experience that allowed me to grow my skills as a developer. The biggest contribution I have been involved in was when our team at Creatuity built a new feature for Magento 2 - one touch ordering. This feature enhances Magento by allowing customers who have a credit card saved on their account to order a product with a single click on the product page, similar to the one click button on Amazon.com product pages. While designing this feature to determine if it was feasible for us to build it in Magento 2, I learned quite a bit about how the core Magento support for the Braintree credit card processor worked and I was excited to realize that the existing classes and libraries in Magento meant that adding this feature was primarily an effort in connecting existing code in new and different ways. After completing this new feature, the Creatuity team submitted it through the Partner Community Engineering program, allowing our development team to receive feedback from developers, architects and UX experts at Magento about what we did well and what we could improve. Not only did this result in a better, more polished one touch ordering system in Magento, it allowed us to further develop our skills and hear from viewpoints we might otherwise not encounter. Already this feature, which is scheduled to be released in Magento 2.2.2, has been discussed by Internet Retailer and other industry publications, allowing our work to receive more attention than it otherwise would've if we hadn't contributed it to the core. I also had an opportunity to join the Magento Contribution Day held before Meet Magento New York 2017, where we worked on issues from the Squashtoberfest event. Reading through the list of issues with the group at that event helped us all get a better sense for the type of issues that are being opened on the Magento 2 repository each day and how challenging it can be to understand, reproduce and resolve an issue that was reported by someone else. I worked on two different issues, both of which resulted in a pull request back to the core. Interestingly enough, one of those pull requests wasn't accepted (pull request # 11501), and it was primarily because my pull request and the resulting discussion led the core Magento team to realize that due to a particular architectural decision made in the Magento platform, the cost and potential risk of resolving a minor issue outweighed requiring the few developers impacted by this issue to apply a simple workaround. This resulted in the original issue being closed and the developer that reported it provided with a workaround. While it was disappointing to spend time developing a solution that ultimately wasn't used, it was a great experience to learn much more about how the SOAP and REST APIs function under the hood in Magento. The other Squashtoberfest pull request I wrote (pull request # 11499) involved resolving some unexpected behavior with Magento's integration tests. Resolving this issue required several hours of research to understand how Magento prepared the test database for running the integration tests, giving me a much better understanding of how Magento's automated testing suite works. After this research, I realized that resolving this unexpected behavior required only a few lines of code to be changed. That pull request has been accepted and will be released in an upcoming update to Magento 2.2, benefiting everyone who uses automated testing with Magento 2. Through these efforts, contributing to Magento has been a great experience for both myself and for Creatuity, and I encourage you to get involved and try it as well. Go Forth and Edit the Core! I hope that you are convinced of the value of contributing to the Magento project. By moving to a fork-and-pull, open contribution model on GitHub for Magento 2, the Magento core team has opened up the development process to more contributions than were ever possible in the past. I hope that as a community we all continue to embrace this spirit of openness and each find a way to make some type of open source contribution back to Magento. So, go forth and edit the core! This article was originally published in php[architect] magazine: Modern Magento –
[ 9076, 292, 1906, 5626, 322, 769, 11834, 5367, 263, 8206, 2009, 304, 9481, 29928, 12332, 411, 4784, 5106, 338, 1790, 2107, 982, 304, 29126, 304, 278, 3561, 9239, 2060, 1728, 5007, 263, 2323, 1196, 310, 775, 29889, 3115, 29892, 3969, 304, 278, 2114, 393, 278, 9481, 29928, 12332, 3544, 8206, 7274, 29892, 565, 366, 3926, 1284, 263, 10171, 297, 278, 5106, 366, 508, 9752, 263, 8206, 2009, 373, 278, 9758, 304, 1959, 372, 322, 9801, 916, 18777, 9455, 29915, 29873, 3367, 2986, 701, 491, 393, 1059, 29889, 13, 29949, 332, 3599, 296, 2866, 3224, 29879, 13, 29902, 29915, 345, 750, 278, 15377, 310, 1641, 9701, 297, 3196, 7786, 20706, 304, 278, 3561, 9239, 29871, 29906, 7136, 29892, 1269, 310, 607, 471, 385, 8031, 7271, 393, 6068, 592, 304, 6548, 590, 25078, 408, 263, 13897, 29889, 450, 24842, 11896, 306, 505, 1063, 9701, 297, 471, 746, 1749, 3815, 472, 6760, 8088, 537, 4240, 263, 716, 4682, 363, 3561, 9239, 29871, 29906, 448, 697, 6023, 20520, 29889, 910, 4682, 26371, 2925, 3561, 9239, 491, 14372, 20330, 1058, 505, 263, 16200, 5881, 7160, 373, 1009, 3633, 304, 1797, 263, 3234, 411, 263, 2323, 2828, 373, 278, 3234, 1813, 29892, 2788, 304, 278, 697, 2828, 2826, 373, 16631, 29889, 510, 3234, 6515, 29889, 5806, 2874, 292, 445, 4682, 304, 8161, 565, 372, 471, 28326, 1821, 363, 502, 304, 2048, 372, 297, 3561, 9239, 29871, 29906, 29892, 306, 10972, 3755, 263, 2586, 1048, 920, 278, 7136, 3561, 9239, 2304, 363, 278, 5032, 524, 929, 16200, 5881, 21433, 3796, 322, 306, 471, 24173, 304, 16289, 393, 278, 5923, 4413, 322, 9562, 297, 3561, 9239, 6839, 393, 4417, 445, 4682, 471, 19434, 385, 7225, 297, 16791, 5923, 775, 297, 716, 322, 1422, 5837, 29889, 13, 13555, 1614, 1259, 445, 716, 4682, 29892, 278, 6760, 8088, 537, 3815, 18397, 372, 1549, 278, 3455, 1089, 19184, 22557, 1824, 29892, 14372, 1749, 5849, 3815, 304, 7150, 16705, 515, 18777, 29892, 6956, 29879, 322, 501, 29990, 2902, 1372, 472, 3561, 9239, 1048, 825, 591, 1258, 1532, 322, 825, 591, 1033, 11157, 29889, 2216, 871, 1258, 445, 1121, 297, 263, 2253, 29892, 901, 1248, 3276, 697, 6023, 20520, 1788, 297, 3561, 9239, 29892, 372, 6068, 502, 304, 4340, 2693, 1749, 25078, 322, 8293, 515, 1776, 9748, 591, 1795, 6467, 451, 11735, 29889, 838, 2040, 445, 4682, 29892, 607, 338, 21467, 304, 367, 5492, 297, 3561, 9239, 29871, 29906, 29889, 29906, 29889, 29906, 29892, 756, 1063, 15648, 491, 4685, 4649, 737, 261, 322, 916, 13661, 25964, 29892, 14372, 1749, 664, 304, 7150, 901, 8570, 1135, 372, 6467, 723, 29915, 345, 565, 591, 27222, 29915, 29873, 26869, 372, 304, 278, 7136, 29889, 13, 29902, 884, 750, 385, 15130, 304, 5988, 278, 3561, 9239, 2866, 3224, 8373, 4934, 1434, 2191, 300, 3561, 9239, 1570, 3088, 29871, 29906, 29900, 29896, 29955, 29892, 988, 591, 3796, 373, 5626, 515, 278, 317, 339, 294, 400, 4950, 29613, 1741, 29889, 21439, 1549, 278, 1051, 310, 5626, 411, 278, 2318, 472, 393, 1741, 9213, 502, 599, 679, 263, 2253, 4060, 363, 278, 1134, 310, 5626, 393, 526, 1641, 6496, 373, 278, 3561, 9239, 29871, 29906, 9810, 1269, 2462, 322, 920, 18066, 292, 372, 508, 367, 304, 2274, 29892, 18532, 322, 8814, 385, 2228, 393, 471, 8967, 491, 4856, 1683, 29889, 306, 3796, 373, 1023, 1422, 5626, 29892, 1716, 310, 607, 20601, 297, 263, 8206, 2009, 1250, 304, 278, 7136, 29889, 23829, 11687, 3307, 29892, 697, 310, 1906, 8206, 7274, 9007, 29915, 29873, 9259, 313, 26746, 2009, 396, 29871, 29896, 29896, 29945, 29900, 29896, 511, 322, 372, 471, 19434, 1363, 590, 8206, 2009, 322, 278, 9819, 10679, 5331, 278, 7136, 3561, 9239, 3815, 304, 16289, 393, 2861, 304, 263, 3153, 6956, 3631, 10608, 1754, 297, 278, 3561, 9239, 7481, 29892, 278, 3438, 322, 7037, 12045, 310, 3770, 1747, 263, 9461, 2228, 714, 705, 25398, 26795, 278, 2846, 18777, 10879, 287, 491, 445, 2228, 304, 3394, 263, 2560, 14725, 29889, 910, 20601, 297, 278, 2441, 2228, 1641, 5764, 322, 278, 13897, 393, 8967, 372, 4944, 411, 263, 14725, 29889, 5806, 372, 471, 23451, 292, 304, 18864, 931, 14338, 263, 1650, 393, 18973, 9007, 29915, 29873, 1304, 29892, 372, 471, 263, 2107, 7271, 304, 5110, 1568, 901, 1048, 920, 278, 7791, 3301, 322, 16759, 23649, 740, 1090, 278, 298, 2092, 297, 3561, 9239, 29889, 13, 1576, 916, 317, 339, 294, 400, 4950, 29613, 8206, 2009, 306, 5456, 313, 26746, 2009, 396, 29871, 29896, 29896, 29946, 29929, 29929, 29897, 9701, 3770, 1747, 777, 15668, 6030, 411, 3561, 9239, 29915, 29879, 13465, 6987, 29889, 24062, 1747, 445, 2228, 3734, 3196, 6199, 310, 5925, 304, 2274, 920, 3561, 9239, 13240, 278, 1243, 2566, 363, 2734, 278, 13465, 6987, 29892, 6820, 592, 263, 1568, 2253, 8004, 310, 920, 3561, 9239, 29915, 29879, 3345, 630, 6724, 9460, 1736, 29889, 2860, 445, 5925, 29892, 306, 16387, 393, 3770, 1747, 445, 15668, 6030, 3734, 871, 263, 2846, 3454, 310, 775, 304, 367, 3939, 29889, 2193, 8206, 2009, 756, 1063, 9259, 322, 674, 367, 5492, 297, 385, 701, 11506, 2767, 304, 3561, 9239, 29871, 29906, 29889, 29906, 29892, 7795, 11407, 14332, 1058, 3913, 3345, 630, 6724, 411, 3561, 9239, 29871, 29906, 29889, 13, 29911, 1092, 820, 1438, 14231, 29892, 17737, 17068, 304, 3561, 9239, 756, 1063, 263, 2107, 7271, 363, 1716, 6142, 322, 363, 6760, 8088, 537, 29892, 322, 306, 13731, 6617, 366, 304, 679, 9701, 322, 1018, 372, 408, 1532, 29889, 13, 8120, 1152, 386, 322, 7641, 278, 10239, 29991, 13, 29902, 4966, 393, 366, 526, 25617, 310, 278, 995, 310, 17737, 17068, 304, 278, 3561, 9239, 2060, 29889, 2648, 8401, 304, 263, 27350, 29899, 392, 29899, 26746, 29892, 1722, 11896, 1904, 373, 25492, 363, 3561, 9239, 29871, 29906, 29892, 278, 3561, 9239, 7136, 3815, 756, 6496, 701, 278, 5849, 1889, 304, 901, 20706, 1135, 892, 3926, 1950, 297, 278, 4940, 29889, 306, 4966, 393, 408, 263, 7881, 591, 599, 6773, 304, 953, 13842, 445, 8548, 310, 1722, 2264, 322, 1269, 1284, 263, 982, 304, 1207, 777, 1134, 310, 1722, 2752, 11896, 1250, 304, 3561, 9239, 29889, 1105, 29892, 748, 11483, 322, 3863, 278, 7136, 29991, 13, 4013, 4274, 471, 10437, 6369, 297, 3989, 29961, 1279, 4496, 29962, 14853, 29901, 14624, 3561, 9239, 785 ]
1,024
CommonCrawl
0.976179
0.257605
0.651954
1.508745
'Brain drain': UT law grads leave Austin to pursue public defense by: Chris Davis Posted: Feb 28, 2019 / 12:17 PM CST / Updated: Mar 1, 2019 / 04:04 PM CST UPDATE (Friday, March 1, 10 a.m.): AUSTIN (KXAN) — Travis County may have more time to submit a plan to establish a public defender's office after a meeting Thursday between various stakeholders. The working group behind the plans drafted an "intent to submit" letter to send to the Texas Indigent Defense Commission (TIDC) by the March 11 deadline. That letter is the first step toward getting grant funding to establish an office before a full proposal is due in early May. A county or district judge needs to sign off on that letter, but none in Travis County would, leaving public defender advocates uncertain about the plan's future. But TIDC's executive director, Geoff Burkhart, told KXAN after Thursday's meeting that the commission can waive the first deadline and still accept the full proposal in two months. The decision to waive the deadline would need to be approved by the full TIDC board at either its meeting next week or at the following meeting in June, but the board has approved similar waivers in the past, Burkhart said. That would give the working group two more months to work with judges and defense attorneys to come up with a plan that works for everyone, said Amanda Woog, the chair of the working group and executive director of the Texas Fair Defense Project. In order to submit the full plan, the group needs more county judges to sign off on the proposal. If TIDC accepts the proposal in May, grant funding would become available in the fall. "We're going to keep working on it," Woog told KXAN. The group will continue its weekly meetings, the next of which will happen Monday, and she said she's "upbeat" about the prospect of getting a waiver from the TIDC. AUSTIN (KXAN) — About three dozen University of Texas at Austin School of Law students will meet Friday for the first official meeting of their new student organization, Indigent Defense Group. The purpose of the group is to share resources and advice among a growing number of law students interested in providing legal services to defendants who can't afford to hire an attorney. Without a public defender's office in Travis County, graduates are leaving central Texas to pursue that passion. It comes as a deadline draws near to take the first step toward establishing a public defender's office here. Travis County is one of the largest jurisdictions in the country without a dedicated office for indigent defense, and a study last year found defendants who rely on the current appointment system get consistently worse outcomes at trial than those who can afford to hire a private attorney. Logan Wexler, a third-year law student, said results like those are indicative of a system that works against low-income communities, a system he wants to help change. The Houston native head to Albuquerque when he graduates in May to work in the public defender's office there. "Everyone here that wants to do public defense knows that their path is outside of this city," Wexler said. The exodus has been described as a "brain drain" by advocates who want to see changes in Travis County's indigent defense system, and the number of UT law students who want to do public defense work is growing, even within the last three or four years. "A significantly greater number of students are coming into law school already sort of attuned to criminal justice issues in a critical way," said UT law professor Jennifer Laurin. While it's hard to pin down why more students are deciding earlier on that they want to pursue public service instead of high-profile — and high-paying — private practices, Laurin believes more students are being exposed to the issues during undergraduate classes. The prominence of groups like Black Lives Matter over the last several also likely plays a role. "I think what's happening in our criminal justice system is one of the greatest civil rights crises in American society right now," said David Whitney, a second-year law student and member of the Inidgent Defense Group. Originally from Minnesota, Whitney has come to love Austin and, like Wexler
[ 525, 22097, 270, 6038, 2396, 501, 29911, 4307, 4656, 29879, 5967, 24518, 304, 12359, 434, 970, 26406, 13, 1609, 29901, 12821, 15225, 13, 6747, 287, 29901, 26319, 29871, 29906, 29947, 29892, 29871, 29906, 29900, 29896, 29929, 847, 29871, 29896, 29906, 29901, 29896, 29955, 11278, 315, 1254, 847, 25723, 29901, 1085, 29871, 29896, 29892, 29871, 29906, 29900, 29896, 29929, 847, 29871, 29900, 29946, 29901, 29900, 29946, 11278, 315, 1254, 13, 14474, 313, 29943, 2429, 388, 29892, 4779, 29871, 29896, 29892, 29871, 29896, 29900, 263, 29889, 29885, 9575, 13, 29909, 17321, 1177, 313, 29968, 29990, 2190, 29897, 813, 3201, 1730, 5127, 1122, 505, 901, 931, 304, 9752, 263, 3814, 304, 10127, 263, 970, 822, 1581, 29915, 29879, 8034, 1156, 263, 11781, 498, 1295, 3250, 1546, 5164, 380, 1296, 8948, 414, 29889, 13, 1576, 1985, 2318, 5742, 278, 13900, 18195, 287, 385, 376, 14029, 304, 9752, 29908, 5497, 304, 3638, 304, 278, 10319, 1894, 25692, 5282, 1947, 11444, 313, 29911, 1367, 29907, 29897, 491, 278, 4779, 29871, 29896, 29896, 7123, 1220, 29889, 2193, 5497, 338, 278, 937, 4331, 11183, 2805, 16690, 5220, 292, 304, 10127, 385, 8034, 1434, 263, 2989, 24963, 338, 2861, 297, 4688, 2610, 29889, 13, 29909, 15178, 470, 6474, 16833, 4225, 304, 1804, 1283, 373, 393, 5497, 29892, 541, 5642, 297, 3201, 1730, 5127, 723, 29892, 10124, 970, 822, 1581, 22545, 1078, 17999, 1048, 278, 3814, 29915, 29879, 5434, 29889, 1205, 323, 1367, 29907, 29915, 29879, 22760, 8881, 29892, 28295, 6640, 15339, 442, 29892, 5429, 476, 29990, 2190, 1156, 498, 1295, 3250, 29915, 29879, 11781, 393, 278, 12969, 508, 11324, 573, 278, 937, 7123, 1220, 322, 1603, 3544, 278, 2989, 24963, 297, 1023, 7378, 29889, 13, 1576, 10608, 304, 11324, 573, 278, 7123, 1220, 723, 817, 304, 367, 23454, 491, 278, 2989, 323, 1367, 29907, 7613, 472, 2845, 967, 11781, 2446, 4723, 470, 472, 278, 1494, 11781, 297, 5306, 29892, 541, 278, 7613, 756, 23454, 2788, 11324, 1536, 297, 278, 4940, 29892, 6640, 15339, 442, 1497, 29889, 13, 7058, 723, 2367, 278, 1985, 2318, 1023, 901, 7378, 304, 664, 411, 6577, 2710, 322, 26406, 1098, 272, 484, 952, 304, 2041, 701, 411, 263, 3814, 393, 1736, 363, 14332, 29892, 1497, 1913, 5863, 14962, 468, 29892, 278, 11774, 310, 278, 1985, 2318, 322, 22760, 8881, 310, 278, 10319, 13822, 5282, 1947, 8010, 29889, 13, 797, 1797, 304, 9752, 278, 2989, 3814, 29892, 278, 2318, 4225, 901, 15178, 6577, 2710, 304, 1804, 1283, 373, 278, 24963, 29889, 960, 323, 1367, 29907, 21486, 278, 24963, 297, 2610, 29892, 16690, 5220, 292, 723, 4953, 3625, 297, 278, 6416, 29889, 13, 29908, 4806, 29915, 276, 2675, 304, 3013, 1985, 373, 372, 1699, 14962, 468, 5429, 476, 29990, 2190, 29889, 450, 2318, 674, 6773, 967, 4723, 368, 5870, 886, 29892, 278, 2446, 310, 607, 674, 3799, 27822, 29892, 322, 1183, 1497, 1183, 29915, 29879, 376, 786, 915, 271, 29908, 1048, 278, 27289, 310, 2805, 263, 281, 1794, 369, 515, 278, 323, 1367, 29907, 29889, 13, 29909, 17321, 1177, 313, 29968, 29990, 2190, 29897, 813, 13611, 2211, 24231, 3014, 310, 10319, 472, 24518, 4523, 310, 7927, 8041, 674, 5870, 28728, 363, 278, 937, 6221, 11781, 310, 1009, 716, 8368, 13013, 29892, 1894, 25692, 5282, 1947, 6431, 29889, 13, 1576, 6437, 310, 278, 2318, 338, 304, 6232, 7788, 322, 9848, 4249, 263, 15678, 1353, 310, 4307, 8041, 8852, 297, 13138, 11706, 5786, 304, 24663, 1934, 1058, 508, 29915, 29873, 21750, 304, 298, 533, 385, 1098, 25252, 29889, 13932, 263, 970, 822, 1581, 29915, 29879, 8034, 297, 3201, 1730, 5127, 29892, 10591, 1078, 526, 10124, 6555, 10319, 304, 12359, 434, 393, 15935, 29889, 13, 3112, 5304, 408, 263, 7123, 1220, 4216, 29879, 2978, 304, 2125, 278, 937, 4331, 11183, 10127, 292, 263, 970, 822, 1581, 29915, 29879, 8034, 1244, 29889, 3201, 1730, 5127, 338, 697, 310, 278, 10150, 24894, 8977, 1080, 297, 278, 4234, 1728, 263, 16955, 8034, 363, 1399, 25692, 26406, 29892, 322, 263, 6559, 1833, 1629, 1476, 24663, 1934, 1058, 19104, 373, 278, 1857, 28573, 1788, 679, 5718, 2705, 15029, 714, 26807, 472, 14260, 1135, 1906, 1058, 508, 21750, 304, 298, 533, 263, 2024, 1098, 25252, 29889, 13, 3403, 273, 399, 735, 1358, 29892, 263, 4654, 29899, 6360, 4307, 8368, 29892, 1497, 2582, 763, 1906, 526, 4221, 1230, 310, 263, 1788, 393, 1736, 2750, 4482, 29899, 262, 2763, 23507, 29892, 263, 1788, 540, 10753, 304, 1371, 1735, 29889, 450, 24327, 7531, 2343, 304, 838, 2423, 7808, 802, 746, 540, 10591, 1078, 297, 2610, 304, 664, 297, 278, 970, 822, 1581, 29915, 29879, 8034, 727, 29889, 13, 29908, 26526, 650, 1244, 393, 10753, 304, 437, 970, 26406, 9906, 393, 1009, 2224, 338, 5377, 310, 445, 4272, 1699, 399, 735, 1358, 1497, 29889, 13, 1576, 429, 397, 375, 756, 1063, 5439, 408, 263, 376, 2634, 262, 270, 6038, 29908, 491, 22545, 1078, 1058, 864, 304, 1074, 3620, 297, 3201, 1730, 5127, 29915, 29879, 1399, 25692, 26406, 1788, 29892, 322, 278, 1353, 310, 501, 29911, 4307, 8041, 1058, 864, 304, 437, 970, 26406, 664, 338, 15678, 29892, 1584, 2629, 278, 1833, 2211, 470, 3023, 2440, 29889, 13, 29908, 29909, 16951, 7621, 1353, 310, 8041, 526, 6421, 964, 4307, 3762, 2307, 2656, 310, 1098, 348, 287, 304, 22161, 15426, 5626, 297, 263, 12187, 982, 1699, 1497, 501, 29911, 4307, 12251, 23774, 9633, 14019, 262, 29889, 13, 8809, 488, 372, 29915, 29879, 2898, 304, 12534, 1623, 2020, 901, 8041, 526, 1602, 4821, 8859, 373, 393, 896, 864, 304, 12359, 434, 970, 2669, 2012, 310, 1880, 29899, 10185, 813, 322, 1880, 29899, 10472, 292, 813, 2024, 23274, 29892, 14019, 262, 1339, 17180, 901, 8041, 526, 1641, 19884, 304, 278, 5626, 2645, 1090, 5105, 27240, 4413, 29889, 450, 2504, 262, 663, 310, 6471, 763, 6054, 365, 3145, 341, 2620, 975, 278, 1833, 3196, 884, 5517, 13582, 263, 6297, 29889, 13, 29908, 29902, 1348, 825, 29915, 29879, 10464, 297, 1749, 22161, 15426, 1788, 338, 697, 310, 278, 14176, 7631, 10462, 2181, 4637, 297, 3082, 12459, 1492, 1286, 1699, 1497, 4699, 20572, 3801, 29892, 263, 1473, 29899, 6360, 4307, 8368, 322, 4509, 310, 278, 512, 333, 5362, 5282, 1947, 6431, 29889, 13, 23182, 635, 515, 20994, 29892, 20572, 3801, 756, 2041, 304, 5360, 24518, 322, 29892, 763, 399, 735, 1358 ]
1,024
CommonCrawl
0.423257
-0.126702
0.574846
1.076157
Playing online casino is mainly concern with gambling on mobile. People used to play such online games for their entertainment and fun. Making money with money is the main function of playing online casino. Various types are found to play and win with a secure manner. People used to look out their quality, rules and regulation, payment methods and much more. Accordingly, here we will discuss how can choose a best online casino platform for our satisfaction. Collect necessary information: First of all making one sense about collecting useful information about online casino games. Is it useful? Making regards of it may give you a positive output. We make a priority to it because from this information we can choose out the best quality material among all. Understand the rules: Secondly, we must have to check out the rules and regulations of online gaming. This is because rules are responsible for telling about their method of playing. People used to opt out such option because of making lack of mistakes. It is a very good habit that we must check out what are the basic condition of these kinds of a platform. Check out reviews: Most of the time reviews plays an important role in showing us about positive and negative effects while to play. It is necessary because experience people will surely give you to choose the right path before playing such games. Facilities: What are the facilities given by them? Is it useable? People are finding many ways to play in an efficient manner. Facilities also refer to features and qualities of online casino games. It may be preferred by them because to look out various befits for an individual. Many times we make huge money on it and sometimes it never valued more than initial. Security and reliability: Many times many of us gave priority to security. In a sense we are choosing the best casino then reliability with playing makes us responsible for giving attraction to it. Tutorial: Before playing such online casino games we must check out tutorial videos online. What they make the right direction. That's why these are points may clear your all doubts regarding it. People are giving much attention to consuming their free time on it. Continue reading "What to look while choosing the best online casino" Continue reading "What are the most popular online casino games?" Online casinos have been a lot popular with the time. If you have never given it a try, then you must. It is really easy and fun while playing online. The best thing about them is there are numerous casinos online to choose from, and still, your options can't reduce. There are a huge number of things that are checked while selecting an online casino to play. There are a huge number of things the user needs to keep in mind to find the best online casino for playing. As we all are well aware of the fact, every website is good, and there are a huge number of them which are the best. So the best thing you can do is compare the websites to find the best online casino. There are some of the things you have to consider. The first thing you have to keep in mind is how the game works. There are mainly two types of games. One of them is the ones the user has to download and play. On the other hand, some require a flash player. It is really important you have the knowledge about the device that you are going to use so you can choose the right one. Another thing the user has to compare is the conditions provided by the game player. It is really important they have all the required information about types of bonuses and their conditions. These conditions are really important as they will decide how you will play the game. On the other hand if some of these conditions which some of the players cannot play with? So make sure you compare the conditions as well. Another thing the user has to consider is the website or app they are choosing to play online casino has the required license. This will help the user to play the game safely and without any issues. There are some websites who do not have the license for making other people play casino, but they still do. So if you find any one of them, then you have to make sure they have the required license. These were some of the things you can compare so that you can find the best online casino according to your requirements and play it according to your wants. Continue reading "How can we compare different online casinos?" Continue reading "Why Check Out Online Casino Reviews Before Making the Final Call?" Playing gambling in casinos is in very much demand among people. Online casino is one of the best ways to make the job done easily. If you are one of them who love to play gambling by sitting at your home then online is the best option for them. It is
[ 7412, 292, 7395, 3209, 1789, 338, 14364, 5932, 411, 330, 1117, 1847, 373, 10426, 29889, 11647, 1304, 304, 1708, 1316, 7395, 8090, 363, 1009, 22684, 358, 322, 2090, 29889, 341, 5086, 6909, 411, 6909, 338, 278, 1667, 740, 310, 8743, 7395, 3209, 1789, 29889, 9586, 681, 4072, 526, 1476, 304, 1708, 322, 5401, 411, 263, 11592, 8214, 29889, 11647, 1304, 304, 1106, 714, 1009, 11029, 29892, 6865, 322, 1072, 2785, 29892, 19179, 3519, 322, 1568, 901, 29889, 13, 7504, 3278, 368, 29892, 1244, 591, 674, 5353, 920, 508, 6755, 263, 1900, 7395, 3209, 1789, 7481, 363, 1749, 26470, 29889, 13, 28916, 5181, 2472, 29901, 3824, 310, 599, 3907, 697, 4060, 1048, 6314, 292, 5407, 2472, 1048, 7395, 3209, 1789, 8090, 29889, 1317, 372, 5407, 29973, 341, 5086, 21778, 310, 372, 1122, 2367, 366, 263, 6374, 1962, 29889, 1334, 1207, 263, 20136, 304, 372, 1363, 515, 445, 2472, 591, 508, 6755, 714, 278, 1900, 11029, 5518, 4249, 599, 29889, 13, 29177, 1689, 278, 6865, 29901, 6440, 368, 29892, 591, 1818, 505, 304, 1423, 714, 278, 6865, 322, 1072, 8250, 310, 7395, 330, 11500, 29889, 910, 338, 1363, 6865, 526, 14040, 363, 14509, 1048, 1009, 1158, 310, 8743, 29889, 11647, 1304, 304, 3523, 714, 1316, 2984, 1363, 310, 3907, 10225, 310, 28947, 29889, 739, 338, 263, 1407, 1781, 4760, 393, 591, 1818, 1423, 714, 825, 526, 278, 6996, 4195, 310, 1438, 17690, 310, 263, 7481, 29889, 13, 5596, 714, 21804, 29901, 7849, 310, 278, 931, 21804, 13582, 385, 4100, 6297, 297, 6445, 502, 1048, 6374, 322, 8178, 9545, 1550, 304, 1708, 29889, 739, 338, 5181, 1363, 7271, 2305, 674, 18880, 2367, 366, 304, 6755, 278, 1492, 2224, 1434, 8743, 1316, 8090, 29889, 13, 29943, 562, 9770, 29901, 1724, 526, 278, 23330, 2183, 491, 963, 29973, 1317, 372, 671, 519, 29973, 11647, 526, 9138, 1784, 5837, 304, 1708, 297, 385, 8543, 8214, 29889, 14184, 9770, 884, 2737, 304, 5680, 322, 4021, 1907, 310, 7395, 3209, 1789, 8090, 29889, 739, 1122, 367, 16389, 491, 963, 1363, 304, 1106, 714, 5164, 15823, 1169, 363, 385, 5375, 29889, 9267, 3064, 591, 1207, 12176, 6909, 373, 372, 322, 6041, 372, 2360, 659, 6742, 901, 1135, 2847, 29889, 13, 13228, 322, 12536, 3097, 29901, 9267, 3064, 1784, 310, 502, 4846, 20136, 304, 6993, 29889, 512, 263, 4060, 591, 526, 23906, 278, 1900, 3209, 1789, 769, 12536, 3097, 411, 8743, 3732, 502, 14040, 363, 6820, 1098, 13857, 304, 372, 29889, 13, 29911, 6072, 29901, 10949, 8743, 1316, 7395, 3209, 1789, 8090, 591, 1818, 1423, 714, 9673, 19707, 7395, 29889, 1724, 896, 1207, 278, 1492, 5305, 29889, 13, 7058, 29915, 29879, 2020, 1438, 526, 3291, 1122, 2821, 596, 599, 27455, 1372, 11211, 372, 29889, 11647, 526, 6820, 1568, 8570, 304, 1136, 9929, 1009, 3889, 931, 373, 372, 29889, 13, 1323, 14150, 5183, 376, 5618, 304, 1106, 1550, 23906, 278, 1900, 7395, 3209, 1789, 29908, 13, 1323, 14150, 5183, 376, 5618, 526, 278, 1556, 5972, 7395, 3209, 1789, 8090, 3026, 13, 2951, 1220, 3209, 8226, 505, 1063, 263, 3287, 5972, 411, 278, 931, 29889, 960, 366, 505, 2360, 2183, 372, 263, 1018, 29892, 769, 366, 1818, 29889, 739, 338, 2289, 4780, 322, 2090, 1550, 8743, 7395, 29889, 450, 1900, 2655, 1048, 963, 338, 727, 526, 12727, 3209, 8226, 7395, 304, 6755, 515, 29892, 322, 1603, 29892, 596, 3987, 508, 29915, 29873, 10032, 29889, 1670, 526, 263, 12176, 1353, 310, 2712, 393, 526, 7120, 1550, 18851, 385, 7395, 3209, 1789, 304, 1708, 29889, 13, 8439, 526, 263, 12176, 1353, 310, 2712, 278, 1404, 4225, 304, 3013, 297, 3458, 304, 1284, 278, 1900, 7395, 3209, 1789, 363, 8743, 29889, 1094, 591, 599, 526, 1532, 9543, 310, 278, 2114, 29892, 1432, 4700, 338, 1781, 29892, 322, 727, 526, 263, 12176, 1353, 310, 963, 607, 526, 278, 1900, 29889, 1105, 278, 1900, 2655, 366, 508, 437, 338, 7252, 278, 28007, 304, 1284, 278, 1900, 7395, 3209, 1789, 29889, 1670, 526, 777, 310, 278, 2712, 366, 505, 304, 2050, 29889, 13, 1576, 937, 2655, 366, 505, 304, 3013, 297, 3458, 338, 920, 278, 3748, 1736, 29889, 1670, 526, 14364, 1023, 4072, 310, 8090, 29889, 3118, 310, 963, 338, 278, 6743, 278, 1404, 756, 304, 5142, 322, 1708, 29889, 1551, 278, 916, 1361, 29892, 777, 1996, 263, 11013, 4847, 29889, 739, 338, 2289, 4100, 366, 505, 278, 7134, 1048, 278, 4742, 393, 366, 526, 2675, 304, 671, 577, 366, 508, 6755, 278, 1492, 697, 29889, 13, 2744, 1228, 2655, 278, 1404, 756, 304, 7252, 338, 278, 5855, 4944, 491, 278, 3748, 4847, 29889, 739, 338, 2289, 4100, 896, 505, 599, 278, 3734, 2472, 1048, 4072, 310, 10814, 6394, 322, 1009, 5855, 29889, 4525, 5855, 526, 2289, 4100, 408, 896, 674, 11097, 920, 366, 674, 1708, 278, 3748, 29889, 1551, 278, 916, 1361, 565, 777, 310, 1438, 5855, 607, 777, 310, 278, 10769, 2609, 1708, 411, 29973, 1105, 1207, 1854, 366, 7252, 278, 5855, 408, 1532, 29889, 13, 2744, 1228, 2655, 278, 1404, 756, 304, 2050, 338, 278, 4700, 470, 623, 896, 526, 23906, 304, 1708, 7395, 3209, 1789, 756, 278, 3734, 19405, 29889, 910, 674, 1371, 278, 1404, 304, 1708, 278, 3748, 23511, 322, 1728, 738, 5626, 29889, 1670, 526, 777, 28007, 1058, 437, 451, 505, 278, 19405, 363, 3907, 916, 2305, 1708, 3209, 1789, 29892, 541, 896, 1603, 437, 29889, 1105, 565, 366, 1284, 738, 697, 310, 963, 29892, 769, 366, 505, 304, 1207, 1854, 896, 505, 278, 3734, 19405, 29889, 13, 1349, 968, 892, 777, 310, 278, 2712, 366, 508, 7252, 577, 393, 366, 508, 1284, 278, 1900, 7395, 3209, 1789, 5034, 304, 596, 11780, 322, 1708, 372, 5034, 304, 596, 10753, 29889, 13, 1323, 14150, 5183, 376, 5328, 508, 591, 7252, 1422, 7395, 3209, 8226, 3026, 13, 1323, 14150, 5183, 376, 11008, 5399, 4451, 13542, 6960, 1789, 830, 7406, 10949, 341, 5086, 278, 9550, 8251, 3026, 13, 13454, 292, 330, 1117, 1847, 297, 3209, 8226, 338, 297, 1407, 1568, 9667, 4249, 2305, 29889, 13542, 3209, 1789, 338, 697, 310, 278, 1900, 5837, 304, 1207, 278, 4982, 2309, 5948, 29889, 960, 366, 526, 697, 310, 963, 1058, 5360, 304, 1708, 330, 1117, 1847, 491, 16246, 472, 596, 3271, 769, 7395, 338, 278, 1900, 2984, 363, 963, 29889, 739, 338 ]
1,024
C4
-1.140412
-1.39188
-1.340317
-0.171011
Led Zep Live 1975 Soundboards - The Best Sound? By EzyEric, November 11, 2008 in Led Zep Live Founding member of the ledzeppelin.com James Gang Location:South of Hell Im curious as to why the good number of 1975 soundboards out there have the best sound. The only other soundboards I can think of that sound this good are perhaps Southhampton, but thats borderline official release as I heard that was remastered for potential show before HTWWW was chosen. FYI, Southampton was a multi-track recording by the band, not a soundboard made by a bootlegger. Melcórë Zephead ...Wow, I must be one of the few people (if there are any others, lol) who actually prefer the 1975 tour. (After all, Plant's voice doesn't sound anywhere near as...different, to say the least...as anything post-1980...) Edited November 21, 2008 by Melcórë NYC6880 Location:New York The 75 SBs are very clean but Im not much of a fan of them. I prefer a good 75 AUD source to a SB which makes me a weirdo. I know I am very much in the minority here but to me, the 75 boards have Plants vocals way too high in the mix which is NOT a good thing and Jimmy's guitar with that weak tone is too high as well. Bonzos drums sound much better in 75 AUD recordings than they do on the SBs. They are heard more clearly on a soundboard source but they really lack the power you feel while listening to him drum on a good audience recording. kdh Location:kill devil hills, nc, usa Curious that the only official release of any 75 material is Earls Court cookieshoes Those are the only gigs from 1975 that were professionally recorded. And even as good as the US 75 soundboards are, in comparison, they would never fly as official releases. Especially when you consider how much work Page and his engineers put into remastering the EC stuff for the DVD that came out in 2003. And those were from multi-tracks. With the 2-track board tapes we have from the US tour, there is none of the same flexibility in being able to master them. Cascades Axe Man Location:Bend, Oregon I don't mean to be argumentative for argument's sake, but.... Some of those 1975 soundboards sound a lot better than the TSRTS soundtrack, and a LOT better than BBC Sessions. "Days Confused" 3-5-75, for example. They are very worthy of a little touch-up and an eventual release. I know what you mean. But consider that the difference between the 73 soundboards and the 75 boards has mainly to do with the fact that the 1975 Showco setup was vastly more sophisticated than the 1973 Showco setup, and obviously the 1969 and 1971 BBC setups as well. So, running a simple two-track cassette off of the board on a system that nice is going to yield a very nice sounding tape. But remember that the 75 boards sound excellent for what they are, but limited in what one can do with them since you've got a mix that is set in stone, and not changeable save for some drastic EQ re-working. But even then, in comparison to some crazy 5.1 ultra-high fidelity mix off of proper multi-tracks there would be a world of difference. kabbalahone Location:Dartmouth, Nova Scotia Uh, OK. Yes, Robert's voice was not stellar during parts of 75. However, parts of 73 were not great either and if that is your criteria then by the Tour Over Europe you must have stopped listening all together. That was the worst for Robert, by far. I love the 75 shows/soundboards. The sound is fantastic and the vibe at the shows is purely comical. They give some of the best examples of why Zep was always about the original 4 and how they could never continue after Bonzo passed. The humor and comradery on stage, especially between Robert and
[ 28934, 796, 1022, 10782, 13, 29896, 29929, 29955, 29945, 14976, 24691, 448, 450, 6407, 14976, 29973, 13, 2059, 382, 1537, 2110, 293, 29892, 13, 25363, 1096, 29871, 29896, 29896, 29892, 29871, 29906, 29900, 29900, 29947, 297, 28934, 796, 1022, 10782, 13, 9692, 292, 4509, 310, 278, 5331, 911, 17344, 262, 29889, 510, 5011, 26531, 13, 6508, 29901, 29903, 2438, 310, 19339, 13, 1888, 12758, 408, 304, 2020, 278, 1781, 1353, 310, 29871, 29896, 29929, 29955, 29945, 6047, 24691, 714, 727, 505, 278, 1900, 6047, 29889, 450, 871, 916, 6047, 24691, 306, 508, 1348, 310, 393, 6047, 445, 1781, 526, 6060, 4275, 3391, 12533, 29892, 541, 20952, 5139, 1220, 6221, 6507, 408, 306, 6091, 393, 471, 1083, 1901, 287, 363, 7037, 1510, 1434, 3154, 29956, 29956, 29956, 471, 10434, 29889, 13, 29943, 29979, 29902, 29892, 4275, 314, 12533, 471, 263, 2473, 29899, 11294, 16867, 491, 278, 3719, 29892, 451, 263, 6047, 3377, 1754, 491, 263, 6579, 1397, 914, 29889, 13, 29924, 295, 29883, 4916, 30083, 13, 29999, 1022, 2813, 13, 856, 29956, 340, 29892, 306, 1818, 367, 697, 310, 278, 2846, 2305, 313, 361, 727, 526, 738, 4045, 29892, 301, 324, 29897, 1058, 2869, 5821, 278, 29871, 29896, 29929, 29955, 29945, 6282, 29889, 13, 29898, 13555, 599, 29892, 18058, 29915, 29879, 7314, 1838, 29915, 29873, 6047, 12214, 2978, 408, 856, 29881, 15622, 29892, 304, 1827, 278, 3203, 856, 294, 3099, 1400, 29899, 29896, 29929, 29947, 29900, 11410, 13, 3853, 1573, 3979, 29871, 29906, 29896, 29892, 29871, 29906, 29900, 29900, 29947, 491, 6286, 29883, 4916, 30083, 13, 29940, 29979, 29907, 29953, 29947, 29947, 29900, 13, 6508, 29901, 4373, 3088, 13, 1576, 29871, 29955, 29945, 317, 29933, 29879, 526, 1407, 5941, 541, 1954, 451, 1568, 310, 263, 13524, 310, 963, 29889, 306, 5821, 263, 1781, 29871, 29955, 29945, 319, 15789, 2752, 304, 263, 317, 29933, 607, 3732, 592, 263, 13543, 29877, 29889, 306, 1073, 306, 626, 1407, 1568, 297, 278, 9461, 537, 1244, 541, 304, 592, 29892, 278, 29871, 29955, 29945, 1045, 3163, 505, 1858, 1934, 17985, 982, 2086, 1880, 297, 278, 6837, 607, 338, 6058, 263, 1781, 2655, 322, 20636, 29915, 29879, 11210, 411, 393, 8062, 16225, 338, 2086, 1880, 408, 1532, 29889, 8396, 29834, 28987, 6047, 1568, 2253, 297, 29871, 29955, 29945, 319, 15789, 2407, 886, 1135, 896, 437, 373, 278, 317, 29933, 29879, 29889, 2688, 526, 6091, 901, 9436, 373, 263, 6047, 3377, 2752, 541, 896, 2289, 10225, 278, 3081, 366, 4459, 1550, 19866, 304, 1075, 24103, 373, 263, 1781, 20026, 16867, 29889, 13, 29895, 12744, 13, 6508, 29901, 21174, 29754, 22696, 29892, 302, 29883, 29892, 502, 29874, 13, 23902, 2738, 393, 278, 871, 6221, 6507, 310, 738, 29871, 29955, 29945, 5518, 338, 5290, 3137, 9245, 13, 15108, 583, 1251, 267, 13, 1349, 852, 526, 278, 871, 19340, 29879, 515, 29871, 29896, 29929, 29955, 29945, 393, 892, 6351, 635, 10478, 29889, 1126, 1584, 408, 1781, 408, 278, 3148, 29871, 29955, 29945, 6047, 24691, 526, 29892, 297, 10230, 29892, 896, 723, 2360, 11340, 408, 6221, 27474, 29889, 3423, 25009, 746, 366, 2050, 920, 1568, 664, 9305, 322, 670, 6012, 414, 1925, 964, 1083, 1901, 292, 278, 17522, 6433, 363, 278, 15191, 393, 2996, 714, 297, 29871, 29906, 29900, 29900, 29941, 29889, 1126, 1906, 892, 515, 2473, 29899, 3018, 4684, 29889, 2973, 278, 29871, 29906, 29899, 11294, 7613, 260, 11603, 591, 505, 515, 278, 3148, 6282, 29892, 727, 338, 5642, 310, 278, 1021, 8525, 4127, 297, 1641, 2221, 304, 5835, 963, 29889, 13, 29907, 6151, 3076, 319, 17115, 2315, 13, 6508, 29901, 29933, 355, 29892, 25203, 13, 29902, 1016, 29915, 29873, 2099, 304, 367, 2980, 1230, 363, 2980, 29915, 29879, 16563, 29892, 541, 3045, 13, 9526, 310, 1906, 29871, 29896, 29929, 29955, 29945, 6047, 24691, 6047, 263, 3287, 2253, 1135, 278, 323, 14098, 9375, 6047, 11294, 29892, 322, 263, 365, 2891, 2253, 1135, 14129, 317, 10964, 29889, 376, 25991, 10811, 3880, 29908, 29871, 29941, 29899, 29945, 29899, 29955, 29945, 29892, 363, 1342, 29889, 2688, 526, 1407, 24717, 310, 263, 2217, 6023, 29899, 786, 322, 385, 1741, 950, 6507, 29889, 13, 29902, 1073, 825, 366, 2099, 29889, 1205, 2050, 393, 278, 4328, 1546, 278, 29871, 29955, 29941, 6047, 24691, 322, 278, 29871, 29955, 29945, 1045, 3163, 756, 14364, 304, 437, 411, 278, 2114, 393, 278, 29871, 29896, 29929, 29955, 29945, 7704, 1111, 6230, 471, 13426, 368, 901, 269, 3021, 4695, 630, 1135, 278, 29871, 29896, 29929, 29955, 29941, 7704, 1111, 6230, 29892, 322, 12879, 278, 29871, 29896, 29929, 29953, 29929, 322, 29871, 29896, 29929, 29955, 29896, 14129, 731, 14340, 408, 1532, 29889, 13, 6295, 29892, 2734, 263, 2560, 1023, 29899, 11294, 274, 465, 2353, 1283, 310, 278, 7613, 373, 263, 1788, 393, 7575, 338, 2675, 304, 7709, 263, 1407, 7575, 6047, 292, 260, 4085, 29889, 1205, 6456, 393, 278, 29871, 29955, 29945, 1045, 3163, 6047, 15129, 363, 825, 896, 526, 29892, 541, 9078, 297, 825, 697, 508, 437, 411, 963, 1951, 366, 29915, 345, 2355, 263, 6837, 393, 338, 731, 297, 12565, 29892, 322, 451, 1735, 519, 4078, 363, 777, 4192, 6288, 382, 29984, 337, 29899, 22899, 29889, 1205, 1584, 769, 29892, 297, 10230, 304, 777, 12220, 1537, 29871, 29945, 29889, 29896, 8494, 336, 29899, 9812, 285, 10652, 537, 6837, 1283, 310, 1571, 2473, 29899, 3018, 4684, 727, 723, 367, 263, 3186, 310, 4328, 29889, 13, 29895, 370, 5521, 801, 650, 13, 6508, 29901, 29928, 442, 21026, 29892, 16216, 11032, 423, 13, 29965, 29882, 29892, 9280, 29889, 13, 8241, 29892, 4755, 29915, 29879, 7314, 471, 451, 14781, 279, 2645, 5633, 310, 29871, 29955, 29945, 29889, 2398, 29892, 5633, 310, 29871, 29955, 29941, 892, 451, 2107, 2845, 322, 565, 393, 338, 596, 16614, 769, 491, 278, 6371, 6811, 4092, 366, 1818, 505, 11084, 19866, 599, 4208, 29889, 2193, 471, 278, 17322, 363, 4755, 29892, 491, 2215, 29889, 13, 29902, 5360, 278, 29871, 29955, 29945, 3697, 29914, 29802, 24691, 29889, 450, 6047, 338, 13568, 6288, 322, 278, 325, 18673, 472, 278, 3697, 338, 24837, 419, 936, 29889, 2688, 2367, 777, 310, 278, 1900, 6455, 310, 2020, 796, 1022, 471, 2337, 1048, 278, 2441, 29871, 29946, 322, 920, 896, 1033, 2360, 6773, 1156, 8396, 2502, 4502, 29889, 450, 27448, 322, 419, 3665, 708, 373, 7408, 29892, 7148, 1546, 4755, 322 ]
1,024
CommonCrawl
-0.461296
-0.741689
-0.238381
-1.015949
Bonzo, was tremendous. In the movie, the comraderie is always between John and John. Plus, Oh how I wish I could hear Dazed and Confused from the soundtrack without the vocals which are overpowering the rest of the band, plus the other 3 parts are extremely in sync.... hopes for a release of such one day.... hint, hint hillsy Location:TEESIDE UK Im with you on this Melc!!! 75 was jam packed with some of Zeps finest moments imo, and as for Robert, i prefer his singing to the pre 73 shows, much more maturity. Oh for a soundboard of Cleveland 24.1.75, or at least a better audience recording! Devil's Haircut Robert singing with less range, less power, a crackling voice, and off key singing is preferred to you than the earlier Plant? That dwindling is called maturity ? Wow, to each their own, that's for sure. I still like his later voice, but I believe it's an adjustment to compromise and and far less versatile than his youth, uhh...immaturity. SuperDave Location:Clarksdale to Memphis That particular show has amazing sound. It happens to be a good show as well. The 1975 board tapes do sound amazing, but they are not multitrack tapes (as has been said). They were recorded most likely to 1/4 inch reels at a much higher tape speed than a typical cassette tape deck (as Jimmy used on the 1977 tour - a Nakamichi deck) which will result in superior quality. In addition, it is widely speculated that these board tapes were recorded by Showco employees, possibly without the band's consent! The Southampton 1973 tape is simply a very crude, and quick 2 track mixdown from the multitrack tapes - it is not a soundboard tape and if mixed properly, would sound as good as an official release. The Flying Circus show is indeed great sound, but it cannot be mixed. So JPJ bass on Sick Again when it gets a lot louder is not going to change. To prove it's a board tape, listen to the audience recording of that night - you can hear the bass get much louder in the Garden - that's the FOH mixing board moving the fader up on the bass track (which was being recorded in real time to a 1/4 inch reel that we all have now own). Hope this helps. ZepFanatic Location:Boston Could someone please tell me what exactly is a soundboard. I love how you trash the tour and then ask what we're even talking about... I was just commenting on your opinion of 75 being their worst tour. Robert wasn't at his peak, quite far from it at times actually. 77 had some great Plant shows, vocally, and 79 he was better, agreed. But 80 was terrible for him, and they were only on tour for less than a month. I don't see how you could say that Robert's voice was better on the 80 tour than 75. I am just respectfully disagreeing with you that 75 was their worst. I've always felt his voice in 1980 was stronger, in general, than it had been in 1977...huh... 11 months later... georgio Location:Asia good thread...i'm of the pre plant 1973 fan club... As far as the 75 performances go there were some poor ones very early in the tour but what turns me off most of the first leg is that they just didnt see very inspired, the playing is reasonabley professional and I'm sure the audience had fun but that spark of energy from earlier years didnt seem to be there much. Things definately changed during the second leg though with tracks like NQ, DAC, TU, WLL etc bringing back more of the "could go anywhere" improvisation and generally the energy levels increasing. Bags_Groove I agree 1975 isn't Plant's best year, but I feel like he does his best to compensate for his vocal limitations during february by doing his best not to stray away from his current vocal comfort zone. I could never call 1975 their worst year though, mostly for three main reasons; 1. Jimmy's Sick
[ 8396, 2502, 29892, 471, 14586, 355, 681, 29889, 13, 797, 278, 14064, 29892, 278, 419, 29878, 1664, 347, 338, 2337, 1546, 2259, 322, 2259, 29889, 15113, 29892, 6439, 920, 306, 6398, 306, 1033, 8293, 360, 834, 287, 322, 10811, 3880, 515, 278, 6047, 11294, 1728, 278, 17985, 607, 526, 975, 13519, 292, 278, 1791, 310, 278, 3719, 29892, 2298, 278, 916, 29871, 29941, 5633, 526, 14154, 297, 16523, 3045, 26926, 363, 263, 6507, 310, 1316, 697, 2462, 3045, 13182, 29892, 13182, 13, 29882, 6090, 29891, 13, 6508, 29901, 4330, 2890, 22027, 10261, 13, 1888, 411, 366, 373, 445, 6286, 29883, 21004, 13, 29955, 29945, 471, 14322, 4870, 287, 411, 777, 310, 3091, 567, 1436, 342, 19462, 527, 29877, 29892, 322, 408, 363, 4755, 29892, 474, 5821, 670, 23623, 304, 278, 758, 29871, 29955, 29941, 3697, 29892, 1568, 901, 286, 1337, 537, 29889, 13, 9048, 363, 263, 6047, 3377, 310, 27249, 29871, 29906, 29946, 29889, 29896, 29889, 29955, 29945, 29892, 470, 472, 3203, 263, 2253, 20026, 16867, 29991, 13, 16618, 309, 29915, 29879, 379, 1466, 7582, 13, 9588, 2151, 23623, 411, 3109, 3464, 29892, 3109, 3081, 29892, 263, 26755, 1847, 7314, 29892, 322, 1283, 1820, 23623, 338, 16389, 304, 366, 1135, 278, 8859, 18058, 29973, 2193, 11988, 513, 1847, 338, 2000, 286, 1337, 537, 1577, 13, 29956, 340, 29892, 304, 1269, 1009, 1914, 29892, 393, 29915, 29879, 363, 1854, 29889, 306, 1603, 763, 670, 2678, 7314, 29892, 541, 306, 4658, 372, 29915, 29879, 385, 10365, 358, 304, 19632, 895, 322, 322, 2215, 3109, 1224, 24285, 1135, 670, 12397, 29892, 318, 25446, 856, 6727, 1337, 537, 29889, 13, 19111, 29928, 1351, 13, 6508, 29901, 6821, 935, 4928, 744, 304, 341, 7278, 275, 13, 7058, 3153, 1510, 756, 21863, 292, 6047, 29889, 739, 5930, 304, 367, 263, 1781, 1510, 408, 1532, 29889, 13, 1576, 29871, 29896, 29929, 29955, 29945, 7613, 260, 11603, 437, 6047, 21863, 292, 29892, 541, 896, 526, 451, 1773, 277, 22282, 260, 11603, 313, 294, 756, 1063, 1497, 467, 2688, 892, 10478, 1556, 5517, 304, 29871, 29896, 29914, 29946, 297, 305, 337, 1379, 472, 263, 1568, 6133, 260, 4085, 6210, 1135, 263, 15662, 274, 465, 2353, 260, 4085, 19810, 313, 294, 20636, 1304, 373, 278, 29871, 29896, 29929, 29955, 29955, 6282, 448, 263, 20962, 314, 18544, 19810, 29897, 607, 674, 1121, 297, 11558, 11029, 29889, 512, 6124, 29892, 372, 338, 17644, 1580, 7964, 393, 1438, 7613, 260, 11603, 892, 10478, 491, 7704, 1111, 22873, 29892, 10075, 1728, 278, 3719, 29915, 29879, 20218, 29991, 13, 1576, 4275, 314, 12533, 29871, 29896, 29929, 29955, 29941, 260, 4085, 338, 3763, 263, 1407, 7618, 311, 29892, 322, 4996, 29871, 29906, 5702, 6837, 3204, 515, 278, 1773, 277, 22282, 260, 11603, 448, 372, 338, 451, 263, 6047, 3377, 260, 4085, 322, 565, 12849, 6284, 29892, 723, 6047, 408, 1781, 408, 385, 6221, 6507, 29889, 13, 1576, 383, 5890, 12594, 375, 1510, 338, 6200, 2107, 6047, 29892, 541, 372, 2609, 367, 12849, 29889, 1105, 435, 29925, 29967, 12760, 373, 317, 860, 11454, 746, 372, 4947, 263, 3287, 301, 283, 672, 338, 451, 2675, 304, 1735, 29889, 1763, 6356, 372, 29915, 29879, 263, 7613, 260, 4085, 29892, 11621, 304, 278, 20026, 16867, 310, 393, 4646, 448, 366, 508, 8293, 278, 12760, 679, 1568, 301, 283, 672, 297, 278, 19906, 448, 393, 29915, 29879, 278, 18322, 29950, 24907, 7613, 8401, 278, 285, 1664, 701, 373, 278, 12760, 5702, 313, 4716, 471, 1641, 10478, 297, 1855, 931, 304, 263, 29871, 29896, 29914, 29946, 297, 305, 337, 295, 393, 591, 599, 505, 1286, 1914, 467, 7963, 445, 6911, 29889, 13, 29999, 1022, 29943, 273, 2454, 13, 6508, 29901, 29933, 11253, 13, 23323, 4856, 3113, 2649, 592, 825, 3721, 338, 263, 6047, 3377, 29889, 13, 29902, 5360, 920, 366, 534, 1161, 278, 6282, 322, 769, 2244, 825, 591, 29915, 276, 1584, 9963, 1048, 856, 13, 29902, 471, 925, 3440, 292, 373, 596, 9426, 310, 29871, 29955, 29945, 1641, 1009, 17322, 6282, 29889, 4755, 9007, 29915, 29873, 472, 670, 19224, 29892, 3755, 2215, 515, 372, 472, 3064, 2869, 29889, 13, 29955, 29955, 750, 777, 2107, 18058, 3697, 29892, 7931, 635, 29892, 322, 29871, 29955, 29929, 540, 471, 2253, 29892, 15502, 29889, 1205, 29871, 29947, 29900, 471, 16403, 363, 1075, 29892, 322, 896, 892, 871, 373, 6282, 363, 3109, 1135, 263, 4098, 29889, 306, 1016, 29915, 29873, 1074, 920, 366, 1033, 1827, 393, 4755, 29915, 29879, 7314, 471, 2253, 373, 278, 29871, 29947, 29900, 6282, 1135, 29871, 29955, 29945, 29889, 13, 29902, 626, 925, 3390, 3730, 22941, 929, 292, 411, 366, 393, 29871, 29955, 29945, 471, 1009, 17322, 29889, 13, 29902, 29915, 345, 2337, 7091, 670, 7314, 297, 29871, 29896, 29929, 29947, 29900, 471, 23505, 29892, 297, 2498, 29892, 1135, 372, 750, 1063, 297, 29871, 29896, 29929, 29955, 29955, 856, 6905, 29882, 856, 13, 29896, 29896, 7378, 2678, 856, 13, 479, 990, 601, 13, 6508, 29901, 2887, 423, 13, 16773, 3244, 856, 29875, 29915, 29885, 310, 278, 758, 8024, 29871, 29896, 29929, 29955, 29941, 13524, 4402, 856, 13, 2887, 2215, 408, 278, 29871, 29955, 29945, 21637, 748, 727, 892, 777, 6460, 6743, 1407, 4688, 297, 278, 6282, 541, 825, 12169, 592, 1283, 1556, 310, 278, 937, 2814, 338, 393, 896, 925, 28950, 1074, 1407, 20603, 29892, 278, 8743, 338, 15590, 29891, 10257, 322, 306, 29915, 29885, 1854, 278, 20026, 750, 2090, 541, 393, 16267, 310, 5864, 515, 8859, 2440, 28950, 2833, 304, 367, 727, 1568, 29889, 28706, 7403, 2486, 3939, 2645, 278, 1473, 2814, 2466, 411, 16257, 763, 405, 29984, 29892, 360, 2477, 29892, 323, 29965, 29892, 399, 2208, 2992, 20794, 1250, 901, 310, 278, 376, 26680, 748, 12214, 29908, 4857, 1730, 362, 322, 6892, 278, 5864, 11174, 10231, 29889, 13, 29933, 810, 29918, 29954, 307, 994, 13, 29902, 8661, 29871, 29896, 29929, 29955, 29945, 3508, 29915, 29873, 18058, 29915, 29879, 1900, 1629, 29892, 541, 306, 4459, 763, 540, 947, 670, 1900, 304, 22874, 403, 363, 670, 20982, 27028, 2645, 13127, 653, 491, 2599, 670, 1900, 451, 304, 380, 764, 3448, 515, 670, 1857, 20982, 13016, 10640, 29889, 13, 29902, 1033, 2360, 1246, 29871, 29896, 29929, 29955, 29945, 1009, 17322, 1629, 2466, 29892, 11149, 363, 2211, 1667, 9590, 29936, 13, 29896, 29889, 20636, 29915, 29879, 317, 860 ]
1,024
CommonCrawl
-0.746438
-1.076518
-0.701033
-1.330903
Guitar Tone (don't get me wrong his playing is still quite sloppy, but he sounds Amazing on "Sick Again", "Over The Hills and Far Away", "In My Time Of Dying", "Kashmir" and "Trampled Underfoot", and this was before he really got strung out during concerts like the 1977 tour) 2. Bonzo's Drumming (I know a lot of people say 1977 is his better year, but no pun intended, I still have yet to hear him 'miss a beat' and I've listened to half the 1975 soundboards. His rhythm is tight and these are some of the most impressive Moby Dicks I've heard so far (though my favourite version is still Osaka 1971-09-29), though I still have yet to really sink my teeth in to the 'Over The Tops' of 1977, so maybe my opinion will change once I get there) 3. The Long Jams (some people may call them indulgent, but I personally think that they do a great job with these long song extensions, not quite as impressive as the medleys from 1969 - 1973, but they go to some pretty inventive places with these jams) I do agree that January and February are relatively weak (not bad, just lacking compared to their older concerts due to Robert's vocal limitations and Jimmy's bum finger) but I think March 1975 is Amazing. The first 1975 boot I ever downloaded was "Snow Jobs" and it didn't just exceed my expectations, it blew my mind. LedElvis75 Location:South Bend, IN 29 minutes ago, Bags_Groove said: Bonzo's playing during the Fort Worth show on 3/3/75 is some of his best, tightest playing. He was/is the best ever, so this shouldn't surprise me, but every time I listen to this FW show my jaw hits the floor. Just amazing listening to that guy play. OTHAFA is the epitome of tight but loose playing. And his performance on TSRTS is just ridiculous. Moby Dick isn't as crazy as some of his earlier versions, but the technicality of it is mind blowing. ZepHead315 I'm going to preface this by saying that I haven't heard a TON of 75 shows, so bear with me. The problems I have with 1975 shows, at least from what I've heard, is the following: 1. Stale setlists. This was probably the least exciting setlist Zeppelin ever did. If you look at the typical setlist for a 75 show, it's all standard stuff that you would expect them to play for that era. It's barely an upgrade from the 73 American tour. And the pacing is just off, especially for the second half. I mean come on, a 20-30 minute Moby Dick followed by a 40 minute Dazed and Confused? IIRC, literally the only thing they'd change would be the encores, at least for the American shows. Maybe add Communication Breakdown, or Heartbreaker. I know it was the same deal with the 73 tour, but that setlist felt tighter and just worked better IMO. Even the 77 tour had more variance (substituting IMTOD for OTHAFA, changing Trampled Under Foot from an encore to a main part of the setlist and even sometimes putting it directly after the acoustic set, sometimes including Black Dog, sometimes including Dancing Days in the acoustic set). 2. Robert's voice, which has been pretty well covered here so I won't say anything else. 3. Jimmy's tone. I really dislike how his guitar sounds on this tour. As others have pointed out, too clean, hardly any "crunch". 4. The band in general, especially Jimmy and Robert, were a shadow of their 1973 selves. A perfect example of this is the versions of Dazed and Confused from this tour. With the exception of 3/21/75, I haven't heard a single version yet that matched up to the versions from 1973 and earlier. On the earlier tours, it was played with a fury and speed that would just blow you away. Even though it got to 30 minutes
[ 2088, 3673, 323, 650, 313, 9176, 29915, 29873, 679, 592, 2743, 670, 8743, 338, 1603, 3755, 14216, 23717, 29892, 541, 540, 10083, 11562, 19583, 373, 376, 29903, 860, 11454, 613, 376, 3563, 450, 24128, 322, 8413, 319, 1582, 613, 376, 797, 1619, 5974, 4587, 360, 5414, 613, 376, 29968, 1161, 11038, 29908, 322, 376, 2308, 981, 29881, 7634, 6661, 613, 322, 445, 471, 1434, 540, 2289, 2355, 851, 686, 714, 2645, 13135, 29879, 763, 278, 29871, 29896, 29929, 29955, 29955, 6282, 29897, 13, 29906, 29889, 8396, 2502, 29915, 29879, 4942, 398, 4056, 313, 29902, 1073, 263, 3287, 310, 2305, 1827, 29871, 29896, 29929, 29955, 29955, 338, 670, 2253, 1629, 29892, 541, 694, 6035, 9146, 29892, 306, 1603, 505, 3447, 304, 8293, 1075, 525, 9894, 263, 16646, 29915, 322, 306, 29915, 345, 29616, 304, 4203, 278, 29871, 29896, 29929, 29955, 29945, 6047, 24691, 29889, 3600, 18178, 29265, 338, 19932, 322, 1438, 526, 777, 310, 278, 1556, 21210, 573, 341, 18711, 360, 7358, 306, 29915, 345, 6091, 577, 2215, 313, 3592, 590, 15381, 568, 1873, 338, 1603, 6657, 8245, 29871, 29896, 29929, 29955, 29896, 29899, 29900, 29929, 29899, 29906, 29929, 511, 2466, 306, 1603, 505, 3447, 304, 2289, 28169, 590, 25287, 297, 304, 278, 525, 3563, 450, 323, 3554, 29915, 310, 29871, 29896, 29929, 29955, 29955, 29892, 577, 5505, 590, 9426, 674, 1735, 2748, 306, 679, 727, 29897, 13, 29941, 29889, 450, 6242, 435, 2232, 313, 5372, 2305, 1122, 1246, 963, 29156, 5362, 29892, 541, 306, 22345, 1348, 393, 896, 437, 263, 2107, 4982, 411, 1438, 1472, 4823, 17752, 29892, 451, 3755, 408, 21210, 573, 408, 278, 1612, 280, 952, 515, 29871, 29896, 29929, 29953, 29929, 448, 29871, 29896, 29929, 29955, 29941, 29892, 541, 896, 748, 304, 777, 5051, 11817, 573, 7600, 411, 1438, 432, 2232, 29897, 13, 29902, 437, 8661, 393, 5490, 322, 6339, 526, 13774, 8062, 313, 1333, 4319, 29892, 925, 10225, 292, 9401, 304, 1009, 9642, 13135, 29879, 2861, 304, 4755, 29915, 29879, 20982, 27028, 322, 20636, 29915, 29879, 289, 398, 19917, 29897, 541, 306, 1348, 4779, 29871, 29896, 29929, 29955, 29945, 338, 11562, 19583, 29889, 450, 937, 29871, 29896, 29929, 29955, 29945, 6579, 306, 3926, 16532, 471, 376, 29903, 3707, 17163, 29879, 29908, 322, 372, 3282, 29915, 29873, 925, 13461, 590, 2149, 800, 29892, 372, 10767, 29893, 590, 3458, 29889, 13, 29931, 287, 6489, 1730, 29955, 29945, 13, 6508, 29901, 29903, 2438, 350, 355, 29892, 2672, 13, 29906, 29929, 6233, 8020, 29892, 350, 810, 29918, 29954, 307, 994, 1497, 29901, 13, 29933, 265, 2502, 29915, 29879, 8743, 2645, 278, 7236, 399, 2072, 1510, 373, 29871, 29941, 29914, 29941, 29914, 29955, 29945, 338, 777, 310, 670, 1900, 29892, 19932, 342, 8743, 29889, 940, 471, 29914, 275, 278, 1900, 3926, 29892, 577, 445, 9273, 29915, 29873, 16671, 592, 29892, 541, 1432, 931, 306, 11621, 304, 445, 383, 29956, 1510, 590, 432, 1450, 19572, 278, 11904, 29889, 3387, 21863, 292, 19866, 304, 393, 1410, 29891, 1708, 29889, 438, 4690, 29909, 4519, 338, 278, 9358, 277, 608, 310, 19932, 541, 23819, 8743, 29889, 1126, 670, 4180, 373, 323, 14098, 9375, 338, 925, 8177, 12906, 681, 29889, 341, 18711, 12488, 3508, 29915, 29873, 408, 12220, 1537, 408, 777, 310, 670, 8859, 6910, 29892, 541, 278, 16905, 537, 310, 372, 338, 3458, 13031, 292, 29889, 13, 29999, 1022, 5494, 29941, 29896, 29945, 13, 29902, 29915, 29885, 2675, 304, 758, 2161, 445, 491, 5934, 393, 306, 7359, 29915, 29873, 6091, 263, 323, 1164, 310, 29871, 29955, 29945, 3697, 29892, 577, 11460, 411, 592, 29889, 13, 1576, 4828, 306, 505, 411, 29871, 29896, 29929, 29955, 29945, 3697, 29892, 472, 3203, 515, 825, 306, 29915, 345, 6091, 29892, 338, 278, 1494, 29901, 13, 29896, 29889, 624, 744, 731, 21513, 29889, 910, 471, 3117, 278, 3203, 5566, 11407, 731, 1761, 3091, 17344, 262, 3926, 1258, 29889, 960, 366, 1106, 472, 278, 15662, 731, 1761, 363, 263, 29871, 29955, 29945, 1510, 29892, 372, 29915, 29879, 599, 3918, 6433, 393, 366, 723, 2149, 963, 304, 1708, 363, 393, 3152, 29889, 739, 29915, 29879, 16079, 368, 385, 14955, 515, 278, 29871, 29955, 29941, 3082, 6282, 29889, 1126, 278, 282, 9390, 338, 925, 1283, 29892, 7148, 363, 278, 1473, 4203, 29889, 306, 2099, 2041, 373, 29892, 263, 29871, 29906, 29900, 29899, 29941, 29900, 11015, 341, 18711, 12488, 5643, 491, 263, 29871, 29946, 29900, 11015, 360, 834, 287, 322, 10811, 3880, 29973, 1944, 10363, 29892, 22830, 278, 871, 2655, 896, 29915, 29881, 1735, 723, 367, 278, 2094, 2361, 29892, 472, 3203, 363, 278, 3082, 3697, 29889, 7198, 788, 22365, 362, 28301, 3204, 29892, 470, 17778, 1030, 5790, 29889, 306, 1073, 372, 471, 278, 1021, 5376, 411, 278, 29871, 29955, 29941, 6282, 29892, 541, 393, 731, 1761, 7091, 260, 14643, 322, 925, 3796, 2253, 306, 6720, 29889, 7753, 278, 29871, 29955, 29955, 6282, 750, 901, 20162, 313, 22492, 12937, 292, 22313, 4986, 29928, 363, 438, 4690, 29909, 4519, 29892, 6480, 1605, 981, 29881, 7634, 7527, 515, 385, 10440, 304, 263, 1667, 760, 310, 278, 731, 1761, 322, 1584, 6041, 10594, 372, 4153, 1156, 278, 1274, 18291, 293, 731, 29892, 6041, 3704, 6054, 18776, 29892, 6041, 3704, 3951, 3277, 24728, 297, 278, 1274, 18291, 293, 731, 467, 13, 29906, 29889, 4755, 29915, 29879, 7314, 29892, 607, 756, 1063, 5051, 1532, 10664, 1244, 577, 306, 2113, 29915, 29873, 1827, 3099, 1683, 29889, 13, 29941, 29889, 20636, 29915, 29879, 16225, 29889, 306, 2289, 766, 4561, 920, 670, 11210, 10083, 373, 445, 6282, 29889, 1094, 4045, 505, 11520, 714, 29892, 2086, 5941, 29892, 15155, 738, 376, 7283, 3322, 1642, 13, 29946, 29889, 450, 3719, 297, 2498, 29892, 7148, 20636, 322, 4755, 29892, 892, 263, 15504, 310, 1009, 29871, 29896, 29929, 29955, 29941, 5535, 1960, 29889, 319, 4922, 1342, 310, 445, 338, 278, 6910, 310, 360, 834, 287, 322, 10811, 3880, 515, 445, 6282, 29889, 2973, 278, 3682, 310, 29871, 29941, 29914, 29906, 29896, 29914, 29955, 29945, 29892, 306, 7359, 29915, 29873, 6091, 263, 2323, 1873, 3447, 393, 19228, 701, 304, 278, 6910, 515, 29871, 29896, 29929, 29955, 29941, 322, 8859, 29889, 1551, 278, 8859, 260, 2470, 29892, 372, 471, 5318, 411, 263, 285, 2857, 322, 6210, 393, 723, 925, 13031, 366, 3448, 29889, 7753, 2466, 372, 2355, 304, 29871, 29941, 29900, 6233 ]
1,024
CommonCrawl
-0.487638
-0.760183
-0.041575
-1.176588
, it rarely felt like it. By the time the 75 tour rolled around, the song had already evolved to its complete form. The band did not introduce any new sections for the song (save for the outro). As such, there's a feeling of "going through the motions". Which would be fine...if the band still played as well as they did two years earlier. Unfortunately, Jimmy in particular is clearly not as fluid as he was. Often times, the song is played at a slow, lumbering pace, like a huge monster walking through molasses. The only sections of this song that were consistently good on the 75 tour were the San Francisco/Woodstock section (here the slow pace actually helps, and sounds more eerie and hypnotic than in 73) and the outro. Give me an earlier version any day over the 75 versions. I don't think it's their worst live year ever (I'd vote for 1980. Sorry guys, it just doesn't do anything for me), but it's far from their best IMO. I really think if they dropped Dazed, shortened the drum solo a bit, and added a few more songs (like what happened for the January shows), it would work better. As it stands, I rarely listen to a 75 show. I really have to be in the mood for it. It just feels like a chore with the exception of the truly great shows (3/12 and 3/21 come to mind). blooze 4 hours ago, ZepHead315 said: I think I'd just about agree with all of this. Especially the part about even though they rarely changed up the 73 NA setlist, it didn't feel like it. I think that setlist just works so well. Probably my second favorite behind 72 NA, since the WLL medley into RNR was the PERFECT way for them to close out a show. Also agree on Jimmy's guitar tone. Sounds good at times (see the Millard section of 3/12) but a lot of times seems to take the life out of parts of the show unfortunately, specifically Black Dog or DNC during the main riff. However, I really do appreciate the mood and atmosphere that the 75 gigs create on NQ and parts of Dazed. NQ in particular works (especially in March) because you get the feeling that Jonesy, Jimmy, and Bonzo were all improvising at the same time during the guitar solo section. Just awesome irondirigible On 2008-11-10 at 7:37 PM, Rock Action said: Seems to me that a lot of the 1975 soundboards were intended to be mixed into something official at a later time. They're just TOO good. Flying Circus, Snow Jobs, Days Confused, St. Louis Blues, Conspiracy Theory...c'mon, those are too good to be anything else but potential releases. Let's hope they one day become just that: official releases. Sathington Willoughby Location:Georgia, USA On 5/18/2017 at 1:45 PM, ZepHead315 said: Completely agree with all this, great post. Boleskinner Location:Australia I like 75 because it was the last time Jonsey used the Fender bass and for the most part Page was still tight and had some of his 68-73 fluency left. Plus many of the soundboards sound awesome as well, with great depth and balance. John Bonham is the Heart 'N' Soul of Led Zeppelin. Location:Inside The Blimp From someone that saw the band in 73 and 75 and 77, I never had an issue with Plant's vocal range limitations. He delivered the songs as best he could. The 75 tour is the most feel good tour for me. The look and feel and vibe of the the 75 tour, for me, surpassed 73 and 77. Jimmy's solo performance on D&C on March 4th was incendiary. I suppose that was THE Highpoint of my LZ concert-going career... I've listened to the 3/4/75 CD at very loud levels with headphones on, and that truly reminds me of what it sounded like a few rows back from the stage. The 77 NQ excess was too much for me. But Kash
[ 29892, 372, 23703, 7091, 763, 372, 29889, 2648, 278, 931, 278, 29871, 29955, 29945, 6282, 29081, 2820, 29892, 278, 4823, 750, 2307, 15220, 1490, 304, 967, 4866, 883, 29889, 450, 3719, 1258, 451, 14944, 738, 716, 13926, 363, 278, 4823, 313, 7620, 363, 278, 714, 307, 467, 1094, 1316, 29892, 727, 29915, 29879, 263, 11223, 310, 376, 17696, 1549, 278, 3184, 1080, 1642, 8449, 723, 367, 2691, 856, 361, 278, 3719, 1603, 5318, 408, 1532, 408, 896, 1258, 1023, 2440, 8859, 29889, 11511, 29892, 20636, 297, 3153, 338, 9436, 451, 408, 22576, 408, 540, 471, 29889, 438, 15535, 3064, 29892, 278, 4823, 338, 5318, 472, 263, 5232, 29892, 301, 2807, 292, 27725, 29892, 763, 263, 12176, 1601, 2475, 22049, 1549, 6062, 465, 267, 29889, 450, 871, 13926, 310, 445, 4823, 393, 892, 5718, 2705, 1781, 373, 278, 29871, 29955, 29945, 6282, 892, 278, 3087, 8970, 29914, 29956, 2092, 17712, 4004, 313, 4150, 278, 5232, 27725, 2869, 6911, 29892, 322, 10083, 901, 6380, 347, 322, 10163, 1333, 293, 1135, 297, 29871, 29955, 29941, 29897, 322, 278, 714, 307, 29889, 25538, 592, 385, 8859, 1873, 738, 2462, 975, 278, 29871, 29955, 29945, 6910, 29889, 13, 29902, 1016, 29915, 29873, 1348, 372, 29915, 29879, 1009, 17322, 5735, 1629, 3926, 313, 29902, 29915, 29881, 11719, 363, 29871, 29896, 29929, 29947, 29900, 29889, 8221, 18239, 29892, 372, 925, 1838, 29915, 29873, 437, 3099, 363, 592, 511, 541, 372, 29915, 29879, 2215, 515, 1009, 1900, 306, 6720, 29889, 306, 2289, 1348, 565, 896, 13700, 360, 834, 287, 29892, 3273, 6419, 278, 24103, 6651, 263, 2586, 29892, 322, 2715, 263, 2846, 901, 12516, 313, 4561, 825, 9559, 363, 278, 5490, 3697, 511, 372, 723, 664, 2253, 29889, 1094, 372, 15028, 29892, 306, 23703, 11621, 304, 263, 29871, 29955, 29945, 1510, 29889, 306, 2289, 505, 304, 367, 297, 278, 286, 2092, 363, 372, 29889, 739, 925, 23880, 763, 263, 521, 487, 411, 278, 3682, 310, 278, 19781, 2107, 3697, 313, 29941, 29914, 29896, 29906, 322, 29871, 29941, 29914, 29906, 29896, 2041, 304, 3458, 467, 13, 14073, 29877, 911, 13, 29946, 6199, 8020, 29892, 796, 1022, 5494, 29941, 29896, 29945, 1497, 29901, 13, 29902, 1348, 306, 29915, 29881, 925, 1048, 8661, 411, 599, 310, 445, 29889, 3423, 25009, 278, 760, 1048, 1584, 2466, 896, 23703, 3939, 701, 278, 29871, 29955, 29941, 8598, 731, 1761, 29892, 372, 3282, 29915, 29873, 4459, 763, 372, 29889, 306, 1348, 393, 731, 1761, 925, 1736, 577, 1532, 29889, 21606, 590, 1473, 25448, 5742, 29871, 29955, 29906, 8598, 29892, 1951, 278, 399, 2208, 1612, 2330, 964, 390, 16514, 471, 278, 349, 1001, 29943, 13845, 982, 363, 963, 304, 3802, 714, 263, 1510, 29889, 13, 17351, 8661, 373, 20636, 29915, 29879, 11210, 16225, 29889, 317, 3885, 1781, 472, 3064, 313, 4149, 278, 8649, 538, 4004, 310, 29871, 29941, 29914, 29896, 29906, 29897, 541, 263, 3287, 310, 3064, 2444, 304, 2125, 278, 2834, 714, 310, 5633, 310, 278, 1510, 15428, 29892, 10816, 6054, 18776, 470, 360, 15868, 2645, 278, 1667, 364, 2593, 29889, 13, 17245, 29892, 306, 2289, 437, 11188, 278, 286, 2092, 322, 25005, 393, 278, 29871, 29955, 29945, 19340, 29879, 1653, 373, 405, 29984, 322, 5633, 310, 360, 834, 287, 29889, 405, 29984, 297, 3153, 1736, 313, 267, 25009, 297, 4779, 29897, 1363, 366, 679, 278, 11223, 393, 10920, 29891, 29892, 20636, 29892, 322, 8396, 2502, 892, 599, 4857, 1730, 292, 472, 278, 1021, 931, 2645, 278, 11210, 6651, 4004, 29889, 3387, 29663, 13, 381, 898, 381, 335, 1821, 13, 2951, 29871, 29906, 29900, 29900, 29947, 29899, 29896, 29896, 29899, 29896, 29900, 472, 29871, 29955, 29901, 29941, 29955, 11278, 29892, 8027, 9123, 1497, 29901, 13, 2008, 1567, 304, 592, 393, 263, 3287, 310, 278, 29871, 29896, 29929, 29955, 29945, 6047, 24691, 892, 9146, 304, 367, 12849, 964, 1554, 6221, 472, 263, 2678, 931, 29889, 2688, 29915, 276, 925, 7495, 29949, 1781, 29889, 383, 5890, 12594, 375, 29892, 24392, 17163, 29879, 29892, 24728, 10811, 3880, 29892, 624, 29889, 5899, 23434, 29892, 2138, 1631, 10068, 24134, 856, 29883, 29915, 3712, 29892, 1906, 526, 2086, 1781, 304, 367, 3099, 1683, 541, 7037, 27474, 29889, 13, 12024, 29915, 29879, 4966, 896, 697, 2462, 4953, 925, 393, 29901, 6221, 27474, 29889, 13, 29903, 493, 4885, 2811, 820, 1609, 13, 6508, 29901, 7999, 990, 423, 29892, 8278, 13, 2951, 29871, 29945, 29914, 29896, 29947, 29914, 29906, 29900, 29896, 29955, 472, 29871, 29896, 29901, 29946, 29945, 11278, 29892, 796, 1022, 5494, 29941, 29896, 29945, 1497, 29901, 13, 8909, 29873, 873, 8661, 411, 599, 445, 29892, 2107, 1400, 29889, 13, 29933, 6544, 29895, 3993, 13, 6508, 29901, 22537, 423, 13, 29902, 763, 29871, 29955, 29945, 1363, 372, 471, 278, 1833, 931, 9937, 7759, 1304, 278, 383, 1581, 12760, 322, 363, 278, 1556, 760, 9305, 471, 1603, 19932, 322, 750, 777, 310, 670, 29871, 29953, 29947, 29899, 29955, 29941, 20501, 3819, 2175, 29889, 13, 29575, 1784, 310, 278, 6047, 24691, 6047, 29663, 408, 1532, 29892, 411, 2107, 10809, 322, 17346, 29889, 13, 11639, 8396, 3391, 338, 278, 17778, 525, 29940, 29915, 27339, 310, 28934, 3091, 17344, 262, 29889, 13, 6508, 29901, 797, 2975, 450, 350, 12552, 13, 4591, 4856, 393, 4446, 278, 3719, 297, 29871, 29955, 29941, 322, 29871, 29955, 29945, 322, 29871, 29955, 29955, 29892, 306, 2360, 750, 385, 2228, 411, 18058, 29915, 29879, 20982, 3464, 27028, 29889, 940, 20115, 278, 12516, 408, 1900, 540, 1033, 29889, 450, 29871, 29955, 29945, 6282, 338, 278, 1556, 4459, 1781, 6282, 363, 592, 29889, 450, 1106, 322, 4459, 322, 325, 18673, 310, 278, 278, 29871, 29955, 29945, 6282, 29892, 363, 592, 29892, 1190, 3364, 287, 29871, 29955, 29941, 322, 29871, 29955, 29955, 29889, 20636, 29915, 29879, 6651, 4180, 373, 360, 29987, 29907, 373, 4779, 29871, 29946, 386, 471, 5528, 26464, 653, 29889, 306, 7755, 393, 471, 6093, 5057, 3149, 310, 590, 365, 29999, 13135, 29899, 17696, 6413, 856, 13, 29902, 29915, 345, 29616, 304, 278, 29871, 29941, 29914, 29946, 29914, 29955, 29945, 7307, 472, 1407, 22526, 11174, 411, 2343, 561, 2873, 373, 29892, 322, 393, 19781, 1083, 12772, 592, 310, 825, 372, 6047, 287, 763, 263, 2846, 4206, 1250, 515, 278, 7408, 29889, 13, 1576, 29871, 29955, 29955, 405, 29984, 19163, 471, 2086, 1568, 363, 592, 29889, 1205, 476, 1161 ]
1,024
CommonCrawl
-0.031512
-0.760021
-0.334318
-1.171529
Adirondack World of Edna West Teall at ADKX Adirondack Experience, The Museum on Blue Mountain Lake (ADKX) annual winter Cabin Fever Sunday Series is underway, featuring seven events that look deeper into Adirondack history and culture. The next event, The Adirondack World of Edna West Teall with Laura Rice and Elizabeth Folwell, is set for February 10th, at 1:30 pm. » Continue Reading. Noted Adirondack Artist Paul Matthews Dies at 85 Paul Clement Matthews II, an artist and writer based in Lambertville, NJ and Keene, NY, whose paintings were shown at galleries and museums in New York, New Jersey, Pennsylvania and elsewhere, died January 15, 2019 in Hamilton, NJ, where he had been hospitalized with a chronic lung disease. He was 85. Matthews' work ranged from portraits and nudes done in a meticulous, realistic style, to majestic landscapes and cloudscapes of the Adirondack high peaks, to darker, dreamlike scenes that reflected a surreal inner world. » Continue Reading. Don Wynn: Not The Times To Be Painting Only Trees by Don Wynn I've been taking some time away from trying to capture the elusive painted equivalents of things primarily Adirondack in origin, which in many instances are so very positive in character. In times of great sociopolitical upheaval, as is the case in our nation today, events occurring beyond our personal sphere of activity will have a profound and sometimes immediate effect on our own environment. » Continue Reading. Adaptations to Extremes: Art, Science Panel Discussion The Lake George Arts Project's Courthouse Gallery has announced "Adaptations to Extremes," an Art-Science exhibition set to run from January 19th to February 22nd. An opening reception has been set for Saturday, January 19th from 4 to 6 pm, and a panel discussion writer Michael Coffey serving as moderator on Sunday, January 20th at the Bolton Historical Museum at 3 pm. Both events are free and open to the public. » Continue Reading. Arts Center Seeking Student Art for Show in May The Adirondack Lakes Center for the Arts (Arts Center) has announced they are seeking K-12 student artists interested in displaying their artwork during the shared Member & Student Art Show in May. » Continue Reading. Hyde Collection Hires Lake George CEO The board of trustees of The Hyde Collection has announced it has appointed Norman E. Dascher Jr. as the Museum's chief executive officer. Dascher, a resident of Diamond Point on Lake George and longtime regional nonprofit executive, brings to The Hyde more than three decades of nonprofit leadership experience and a lifetime appreciation of art. He will succeed Anne Saile, who has served as director since June 2017. » Continue Reading. Call for Artists: Adirondack Lakes Center for the Arts The Adirondack Lakes Center for the Arts (Arts Center) has announced they are seeking artists to exhibit in their three galleries in mid-April through December 2019. » Continue Reading. Adk Regional Theatre Fundraising For 'The Crucible' Adirondack Regional Theatre has announced it will be staging the Arthur Miller classic "The Crucible" at the Strand Theatre in Plattsburgh February 8, 9 and 10, 2019. To help underwrite the production the group has launch a Go Fund Me account. Arthur Miller's timely American drama is about what can happen when truth is bent to political convenience. No one is safe as a reign of terror rips through 1692 Salem. Led by Abigail Williams, a group of girls who claim to have seen the Devil, hurl out charges of witchcraft, sending those who won't confess to the noose. When the accusing finger points to his wife, John Proctor is forced to confront his past and determine his future. » Continue Reading. TAUNY Plans for St Law County Studio Tour TAUNY is set to host a variety of programs during the St. Lawrence County Arts Artists' Studio Tour November 1st to 3rd. The community is invited to stop by The TAUNY Center and to meet local
[ 2087, 381, 898, 547, 2787, 310, 2155, 1056, 3122, 1920, 497, 472, 11033, 29968, 29990, 13, 3253, 381, 898, 547, 28224, 5597, 29892, 450, 6838, 373, 10924, 18204, 9459, 313, 3035, 29968, 29990, 29897, 17568, 13851, 11680, 262, 383, 1310, 16340, 10488, 338, 1090, 1582, 29892, 23425, 9881, 4959, 393, 1106, 25871, 964, 2087, 381, 898, 547, 4955, 322, 9257, 29889, 13, 1576, 2446, 1741, 29892, 450, 2087, 381, 898, 547, 2787, 310, 2155, 1056, 3122, 1920, 497, 411, 21671, 390, 625, 322, 13061, 8301, 5872, 29892, 338, 731, 363, 6339, 29871, 29896, 29900, 386, 29892, 472, 29871, 29896, 29901, 29941, 29900, 26354, 29889, 2047, 2866, 14150, 21439, 29889, 13, 3664, 287, 2087, 381, 898, 547, 3012, 391, 3739, 9811, 354, 5652, 6065, 472, 29871, 29947, 29945, 13, 18275, 26769, 9811, 354, 5652, 1944, 29892, 385, 7664, 322, 9227, 2729, 297, 12718, 2151, 4909, 29892, 405, 29967, 322, 4813, 1600, 29892, 23526, 29892, 5069, 10675, 886, 892, 4318, 472, 11798, 6358, 322, 19133, 29879, 297, 1570, 3088, 29892, 1570, 14500, 29892, 16636, 322, 17551, 29892, 6423, 5490, 29871, 29896, 29945, 29892, 29871, 29906, 29900, 29896, 29929, 297, 12372, 29892, 405, 29967, 29892, 988, 540, 750, 1063, 13457, 1891, 411, 263, 17168, 293, 13030, 17135, 29889, 940, 471, 29871, 29947, 29945, 29889, 13, 29924, 1131, 354, 5652, 29915, 664, 364, 4618, 515, 2011, 336, 1169, 322, 302, 8192, 2309, 297, 263, 1539, 12906, 681, 29892, 1855, 4695, 3114, 29892, 304, 10067, 15931, 2982, 1557, 11603, 322, 9570, 1557, 11603, 310, 278, 2087, 381, 898, 547, 1880, 1236, 10327, 29892, 304, 6501, 261, 29892, 12561, 4561, 20407, 393, 25312, 263, 1190, 6370, 6426, 3186, 29889, 2047, 2866, 14150, 21439, 29889, 13, 10310, 399, 948, 29876, 29901, 2216, 450, 10277, 1763, 1522, 349, 475, 1259, 9333, 6479, 267, 13, 1609, 3872, 399, 948, 29876, 13, 29902, 29915, 345, 1063, 5622, 777, 931, 3448, 515, 1811, 304, 10446, 278, 560, 375, 573, 23139, 5737, 1237, 310, 2712, 19434, 2087, 381, 898, 547, 297, 3978, 29892, 607, 297, 1784, 8871, 526, 577, 1407, 6374, 297, 2931, 29889, 13, 797, 3064, 310, 2107, 5374, 13242, 277, 936, 701, 354, 7712, 29892, 408, 338, 278, 1206, 297, 1749, 5233, 9826, 29892, 4959, 13920, 292, 8724, 1749, 7333, 20745, 310, 6354, 674, 505, 263, 2600, 618, 322, 6041, 16800, 2779, 373, 1749, 1914, 5177, 29889, 2047, 2866, 14150, 21439, 29889, 13, 29909, 1388, 415, 800, 304, 7338, 1745, 267, 29901, 3012, 29892, 9327, 349, 3870, 8565, 1558, 291, 13, 1576, 9459, 5122, 11401, 8010, 29915, 29879, 6325, 386, 1709, 15230, 756, 9326, 376, 29909, 1388, 415, 800, 304, 7338, 1745, 267, 1699, 385, 3012, 29899, 29903, 15277, 29130, 731, 304, 1065, 515, 5490, 29871, 29896, 29929, 386, 304, 6339, 29871, 29906, 29906, 299, 29889, 13, 2744, 8718, 25647, 756, 1063, 731, 363, 24211, 29892, 5490, 29871, 29896, 29929, 386, 515, 29871, 29946, 304, 29871, 29953, 26354, 29892, 322, 263, 9451, 10679, 9227, 5765, 315, 2696, 1032, 16330, 408, 17768, 1061, 373, 16340, 29892, 5490, 29871, 29906, 29900, 386, 472, 278, 8922, 880, 20315, 6838, 472, 29871, 29941, 26354, 29889, 9134, 4959, 526, 3889, 322, 1722, 304, 278, 970, 29889, 2047, 2866, 14150, 21439, 29889, 13, 1433, 1372, 7817, 922, 1416, 292, 15740, 3012, 363, 7704, 297, 2610, 13, 1576, 2087, 381, 898, 547, 365, 6926, 7817, 363, 278, 11401, 313, 1433, 1372, 7817, 29897, 756, 9326, 896, 526, 25738, 476, 29899, 29896, 29906, 8368, 17906, 8852, 297, 16384, 1009, 1616, 1287, 2645, 278, 7258, 19495, 669, 15740, 3012, 7704, 297, 2610, 29889, 2047, 2866, 14150, 21439, 29889, 13, 26322, 311, 14348, 379, 2658, 9459, 5122, 14645, 29949, 13, 1576, 7613, 310, 9311, 12712, 310, 450, 9665, 311, 14348, 756, 9326, 372, 756, 10658, 21296, 382, 29889, 3713, 4630, 13843, 29889, 408, 278, 6838, 29915, 29879, 9087, 22760, 12139, 29889, 13, 29928, 294, 4630, 29892, 263, 20201, 310, 22904, 898, 8984, 373, 9459, 5122, 322, 1472, 2230, 14014, 1661, 771, 9202, 22760, 29892, 23522, 304, 450, 9665, 311, 901, 1135, 2211, 1602, 3076, 310, 1661, 771, 9202, 26001, 7271, 322, 263, 25423, 5108, 362, 310, 1616, 29889, 940, 674, 9269, 10558, 5701, 488, 29892, 1058, 756, 6766, 408, 8881, 1951, 5306, 29871, 29906, 29900, 29896, 29955, 29889, 2047, 2866, 14150, 21439, 29889, 13, 5594, 363, 3012, 2879, 29901, 2087, 381, 898, 547, 365, 6926, 7817, 363, 278, 11401, 13, 1576, 2087, 381, 898, 547, 365, 6926, 7817, 363, 278, 11401, 313, 1433, 1372, 7817, 29897, 756, 9326, 896, 526, 25738, 17906, 304, 10371, 277, 297, 1009, 2211, 11798, 6358, 297, 7145, 29899, 29909, 3193, 1549, 5846, 29871, 29906, 29900, 29896, 29929, 29889, 2047, 2866, 14150, 21439, 29889, 13, 3253, 29895, 16208, 15521, 13249, 336, 5921, 1152, 525, 1576, 11263, 15520, 29915, 13, 3253, 381, 898, 547, 16208, 15521, 756, 9326, 372, 674, 367, 380, 6751, 278, 11498, 16498, 22037, 376, 1576, 11263, 15520, 29908, 472, 278, 3767, 392, 15521, 297, 1858, 1131, 29879, 13903, 6339, 29871, 29947, 29892, 29871, 29929, 322, 29871, 29896, 29900, 29892, 29871, 29906, 29900, 29896, 29929, 29889, 1763, 1371, 1090, 3539, 278, 5802, 278, 2318, 756, 6826, 263, 2921, 13249, 2191, 3633, 29889, 13, 1433, 9743, 16498, 29915, 29879, 5335, 873, 3082, 18621, 338, 1048, 825, 508, 3799, 746, 8760, 338, 26148, 304, 8604, 29703, 29889, 1939, 697, 338, 9109, 408, 263, 20913, 310, 15115, 364, 4512, 1549, 29871, 29896, 29953, 29929, 29906, 317, 12698, 29889, 28934, 491, 1976, 335, 737, 11648, 29892, 263, 2318, 310, 14000, 1058, 5995, 304, 505, 3595, 278, 9481, 309, 29892, 298, 2271, 714, 21090, 310, 281, 2335, 17293, 29892, 9348, 1906, 1058, 2113, 29915, 29873, 1970, 404, 304, 278, 694, 852, 29889, 1932, 278, 1035, 4746, 19917, 3291, 304, 670, 6532, 29892, 2259, 1019, 2801, 338, 11826, 304, 21751, 670, 4940, 322, 8161, 670, 5434, 29889, 2047, 2866, 14150, 21439, 29889, 13, 6040, 3904, 29979, 1858, 550, 363, 624, 7927, 5127, 7448, 6371, 13, 6040, 3904, 29979, 338, 731, 304, 3495, 263, 12875, 310, 11104, 2645, 278, 624, 29889, 19520, 5127, 11401, 3012, 2879, 29915, 7448, 6371, 3979, 29871, 29896, 303, 304, 29871, 29941, 5499, 29889, 450, 7881, 338, 23610, 304, 5040, 491, 450, 323, 29909, 3904, 29979, 7817, 322, 304, 5870, 1887 ]
1,024
CommonCrawl
0.283328
-1.058349
0.217098
0.314702
artists and see art-making in action. These programs will begin on Thursday, November 1st with a 3-day barn quilt making workshop led by Ruth McWilliams. On Saturday, November 3rd, the next Folkstore Artist Spotlight exhibit featuring the work of Susan Robinson will open with a Meet the Artist Opening Reception from 1 to 3 pm. Visitors can drop by The TAUNY Center throughout the day that Saturday to see Folkstore Artists Mary Harding, Tina Charbonneau, Debra Monteith, and Elaine Boots demonstrating their skills in the TAUNY Gallery. » Continue Reading. New Keene Art Gallery Opening Columbus Day Weekend A new art gallery is set to open in the village of Keene on Columbus Day Weekend, October 5-8, 2018. Lifelong photographers and career mountain guides R.L. & Karen Stolz of Vertical Perspectives Photography have opened the Alpenhaus Gallery to showcase their work. The viewing space is unique. Originally constructed in 1987 as a climbing gym for their mountain guiding service, Alpine Adventures, it is twenty feet tall yet retains an intimate feel. » Continue Reading. 'Back to the Future' at NorthWind Gallery, Saranac Lake NorthWind Fine Arts Gallery has announced "Back to the Future," an exhibit by Heidi Gutersloh and David Woodward. The opening reception has been set for Friday, October 5, from 5 to 7 pm at 11 Woodruff Street, Saranac Lake. The reception is free and open to the public, light refreshments will be served. The exhibit will be on display through October 29th. » Continue Reading. Trailblazer: John Van Alstine by Tracy Ormsbee This story originally appeared in the Adirondack Explorer. Read more here. World-renowned stone sculptor John Van Alstine's interpretation of nature's interaction with the manmade world extends from his art to his home to his appreciation of the world around him. Large-scale abstract sculptures of found stone with steel and bronze surround and occupy many of the six buildings on his nine-acre complex — the former Adirondack Lumber Company mill along the Sacandaga River. » Continue Reading. Mohawk & Abenaki Art Market at Adirondack Experience Adirondack Experience, the Museum on Blue Mountain Lake, (ADKX) has announced the first Mohawk and Abenaki Art Market, set for August 25-26, from 10 am to 5 pm. The Art Market is the joint effort of the museum in collaboration with the Akwesasne Cultural Center and the Abenaki Cultural Preservation Corporation. The 2018 Mohawk and Abenaki Art Market features master and emerging indigenous artists from the Mohawk communities of Akwesasne (located where Ontario, Quebec, and New York State intersect on the map) and Kahnawake (located adjacent to the city of Montreal). » Continue Reading. North Country Screening of George Takei's Allegiance The Sembrich Summer Film Series will continue on Monday, August 13th, at 7:30 pm with a screening of George Takei's Allegiance, The Broadway Musical on the big screen at the Bolton Town Hall. Admission is free. Filmed live on Broadway in January of 2016 during the last weeks of its run, Allegiance tells the story of the Kimura family, whose lives are upended when they and 110,000 other Japanese-Americans are forced to leave their homes following the events of Pearl Harbor. » Continue Reading. Field Sketching In Newcomb With Artist Neil Rizos The Adirondack Interpretive Center's (AIC) summer Artist in Residence Neil Rizos will lead a free workshop on Saturday August 11th from 9 am to 3 pm, during which participants will use both classroom and field components to learn to observe and record information to create field sketches with confidence. Neil Rizos is an award winning artist specializing in birds and landscapes who recently had a solo exhibit at the Roger Tory Institute of Natural History that included 75 paintings, prints and sculptures. His art work is in the permanent collection of the United State Library of Congress, the George W.
[ 17906, 322, 1074, 1616, 29899, 28990, 297, 3158, 29889, 13, 1349, 968, 11104, 674, 3380, 373, 498, 1295, 3250, 29892, 3979, 29871, 29896, 303, 411, 263, 29871, 29941, 29899, 3250, 2594, 29876, 439, 2782, 3907, 664, 19032, 5331, 491, 23130, 4052, 12984, 10909, 29889, 1551, 24211, 29892, 3979, 29871, 29941, 5499, 29892, 278, 2446, 8301, 29895, 8899, 3012, 391, 1706, 327, 4366, 10371, 277, 23425, 278, 664, 310, 25914, 22265, 674, 1722, 411, 263, 2191, 300, 278, 3012, 391, 4673, 292, 830, 1441, 515, 29871, 29896, 304, 29871, 29941, 26354, 29889, 5741, 17259, 508, 5768, 491, 450, 323, 29909, 3904, 29979, 7817, 10106, 278, 2462, 393, 24211, 304, 1074, 8301, 29895, 8899, 3012, 2879, 6182, 10999, 292, 29892, 323, 1099, 2896, 6718, 484, 585, 29892, 7089, 336, 11240, 389, 29892, 322, 28637, 457, 1952, 1862, 9004, 1218, 1009, 25078, 297, 278, 323, 29909, 3904, 29979, 15230, 29889, 2047, 2866, 14150, 21439, 29889, 13, 4373, 4813, 1600, 3012, 15230, 4673, 292, 11990, 375, 8373, 15511, 355, 13, 29909, 716, 1616, 23363, 338, 731, 304, 1722, 297, 278, 5720, 310, 4813, 1600, 373, 11990, 375, 8373, 15511, 355, 29892, 5533, 29871, 29945, 29899, 29947, 29892, 29871, 29906, 29900, 29896, 29947, 29889, 365, 361, 295, 549, 17739, 414, 322, 6413, 14378, 1410, 2247, 390, 29889, 29931, 29889, 669, 3467, 264, 624, 324, 29920, 310, 11198, 936, 9034, 1103, 3145, 19040, 5275, 505, 6496, 278, 838, 2238, 6208, 15230, 304, 1510, 4878, 1009, 664, 29889, 13, 1576, 1776, 292, 2913, 338, 5412, 29889, 22118, 635, 13319, 297, 29871, 29896, 29929, 29947, 29955, 408, 263, 10784, 10549, 330, 962, 363, 1009, 14378, 1410, 4821, 2669, 29892, 838, 26215, 21255, 1973, 29892, 372, 338, 10081, 6900, 15655, 3447, 11551, 29879, 385, 938, 6490, 4459, 29889, 2047, 2866, 14150, 21439, 29889, 13, 29915, 5841, 304, 278, 16367, 29915, 472, 4644, 29956, 513, 15230, 29892, 7745, 273, 562, 9459, 13, 29940, 2072, 29956, 513, 28896, 11401, 15230, 756, 9326, 376, 5841, 304, 278, 16367, 1699, 385, 10371, 277, 491, 940, 8819, 24032, 414, 417, 29882, 322, 4699, 10180, 1328, 29889, 450, 8718, 25647, 756, 1063, 731, 363, 28728, 29892, 5533, 29871, 29945, 29892, 515, 29871, 29945, 304, 29871, 29955, 26354, 472, 29871, 29896, 29896, 10180, 582, 600, 7103, 29892, 7745, 273, 562, 9459, 29889, 13, 1576, 25647, 338, 3889, 322, 1722, 304, 278, 970, 29892, 3578, 11086, 1860, 674, 367, 6766, 29889, 450, 10371, 277, 674, 367, 373, 2479, 1549, 5533, 29871, 29906, 29929, 386, 29889, 2047, 2866, 14150, 21439, 29889, 13, 5323, 309, 17530, 3298, 29901, 2259, 6556, 838, 303, 457, 13, 1609, 323, 10068, 1394, 1516, 915, 29872, 13, 4013, 5828, 10437, 7470, 297, 278, 2087, 381, 898, 547, 21508, 29889, 7523, 901, 1244, 29889, 13, 14058, 29899, 1267, 26689, 12565, 17039, 272, 2259, 6556, 838, 303, 457, 29915, 29879, 19854, 310, 5469, 29915, 29879, 14881, 411, 278, 767, 26350, 3186, 4988, 515, 670, 1616, 304, 670, 3271, 304, 670, 5108, 362, 310, 278, 3186, 2820, 1075, 29889, 13, 24105, 479, 29899, 7052, 9846, 17039, 1973, 310, 1476, 12565, 411, 22973, 322, 18449, 8388, 618, 322, 6919, 29891, 1784, 310, 278, 4832, 13814, 373, 670, 14183, 29899, 21160, 4280, 813, 278, 4642, 2087, 381, 898, 547, 365, 2807, 6938, 3533, 3412, 278, 15573, 392, 7781, 6163, 29889, 2047, 2866, 14150, 21439, 29889, 13, 29924, 1148, 20011, 669, 319, 1785, 9940, 3012, 28794, 472, 2087, 381, 898, 547, 28224, 5597, 13, 3253, 381, 898, 547, 28224, 5597, 29892, 278, 6838, 373, 10924, 18204, 9459, 29892, 313, 3035, 29968, 29990, 29897, 756, 9326, 278, 937, 12929, 20011, 322, 319, 1785, 9940, 3012, 28794, 29892, 731, 363, 3111, 29871, 29906, 29945, 29899, 29906, 29953, 29892, 515, 29871, 29896, 29900, 626, 304, 29871, 29945, 26354, 29889, 13, 1576, 3012, 28794, 338, 278, 14002, 7225, 310, 278, 19133, 297, 24771, 411, 278, 10813, 29893, 267, 294, 484, 23287, 7817, 322, 278, 319, 1785, 9940, 23287, 4360, 20525, 15025, 29889, 450, 29871, 29906, 29900, 29896, 29947, 12929, 20011, 322, 319, 1785, 9940, 3012, 28794, 5680, 5835, 322, 11176, 3460, 1399, 2101, 681, 17906, 515, 278, 12929, 20011, 23507, 310, 10813, 29893, 267, 294, 484, 313, 28809, 988, 21718, 29892, 27605, 29892, 322, 1570, 3088, 4306, 25869, 373, 278, 2910, 29897, 322, 476, 801, 1056, 29893, 1296, 313, 28809, 20114, 304, 278, 4272, 310, 26693, 467, 2047, 2866, 14150, 21439, 29889, 13, 29940, 2072, 15456, 22666, 292, 310, 5122, 11190, 29875, 29915, 29879, 838, 1397, 8837, 13, 1576, 9444, 1182, 436, 13329, 4643, 10488, 674, 6773, 373, 27822, 29892, 3111, 29871, 29896, 29941, 386, 29892, 472, 29871, 29955, 29901, 29941, 29900, 26354, 411, 263, 4315, 292, 310, 5122, 11190, 29875, 29915, 29879, 838, 1397, 8837, 29892, 450, 23291, 28554, 373, 278, 4802, 4315, 472, 278, 8922, 880, 8421, 6573, 29889, 2087, 6737, 338, 3889, 29889, 13, 3434, 2168, 5735, 373, 23291, 297, 5490, 310, 29871, 29906, 29900, 29896, 29953, 2645, 278, 1833, 11405, 310, 967, 1065, 29892, 838, 1397, 8837, 10603, 278, 5828, 310, 278, 12931, 2002, 3942, 29892, 5069, 12080, 526, 701, 2760, 746, 896, 322, 29871, 29896, 29896, 29900, 29892, 29900, 29900, 29900, 916, 10369, 29899, 9816, 16708, 526, 11826, 304, 5967, 1009, 17774, 1494, 278, 4959, 310, 21265, 29880, 3536, 4089, 29889, 2047, 2866, 14150, 21439, 29889, 13, 3073, 4971, 3486, 292, 512, 1570, 17743, 2973, 3012, 391, 29334, 390, 466, 359, 13, 1576, 2087, 381, 898, 547, 4124, 19819, 573, 7817, 29915, 29879, 313, 29909, 2965, 29897, 11801, 3012, 391, 297, 2538, 5084, 29334, 390, 466, 359, 674, 3275, 263, 3889, 664, 19032, 373, 24211, 3111, 29871, 29896, 29896, 386, 515, 29871, 29929, 626, 304, 29871, 29941, 26354, 29892, 2645, 607, 27138, 674, 671, 1716, 770, 8345, 322, 1746, 7117, 304, 5110, 304, 14111, 322, 2407, 2472, 304, 1653, 1746, 21256, 267, 411, 16420, 29889, 13, 8139, 309, 390, 466, 359, 338, 385, 9862, 15613, 7664, 4266, 5281, 297, 17952, 322, 2982, 1557, 11603, 1058, 10325, 750, 263, 6651, 10371, 277, 472, 278, 14159, 323, 706, 8907, 310, 18385, 5298, 393, 5134, 29871, 29955, 29945, 10675, 886, 29892, 14677, 322, 17039, 1973, 29889, 3600, 1616, 664, 338, 297, 278, 17667, 4333, 310, 278, 3303, 4306, 9538, 310, 11559, 29892, 278, 5122, 399, 29889 ]
1,024
CommonCrawl
0.750662
-0.889637
0.732649
0.653689
Tavarnok (szlovákul Tovarníky) község Szlovákiában, a Nyitrai kerület Nagytapolcsányi járásában. Fekvése Nagytapolcsánytól 2 km-re északnyugatra fekszik. Története A település már a 12. században létezett. Első írásos említése 1235-ben történt "Taarnuk" alakban. Királyi birtok, majd a zoborhegyi bencés apátságé. 1272-től az Aba nemzetségé, Egyed tárnokmester rokonáé. Később a tapolcsányi uradalom része. 1570-ben a faluban malom és 7 ház állt. 1715-ben 13 háztartása adózott. 1787-ben 40 házában 350 lakos élt. 1828-ban 55 háza és 385 lakosa volt, akik főként mezőgazdasággal, fazekassággal foglalkoztak. 1834-ben cukorgyár létesült, 1865-ben szeszfőzde, 1866-ban sörfőzde épült. Lakói a közeli nagybirtokokon és a cukorgyárban dolgoztak, mely azonban 1928-ban leégett és már nem építették újjá. A 18. század végén Vályi András szerint "TAVARNOK. Tavarnik. Tót falu Nyitra Várm. földes Ura Gr. Traun Uraság, lakosai többfélék, fekszik Nagy Tapolcsányhoz közel, mellynek filiája; földgye jó, fája van a' Podhrágyi erdőből, piatza N. Tapolcsányon." A 19. század közepén Fényes Elek szerint " Tavarnok, tót falu, Nyitra vmegyében, N. Tapolcsán mellett. Számlál 381 kath., 2 zsidó lak. – Ékesiti az uraság szép kastélya és kerte. Földjei jók; réte legelője elég, erdeje nagy. Szép urasági tehenészet. F. u. gr. Erdődy Józsefnő." Nyitra vármegye századfordulós monográfiája szerint "Tavarnok, nyitravölgyi tót község, Nagy-Tapolcsány mellett, ettől északnyugotra, 3 kilométerre, 933 r. kath. vallásu lakossal. Posta-, táviró- és vasúti állomása Nagy-Tapolcsány. Ősrégi község, a mely "Tárnok" elnevezés alatt már a XII. században királyi birtok volt. Itt van tavarnoki báró Stummer Ágoston nagyszabásu, díszes kastélya és szép parkja. A kastélyt gr. Forgách Ferencz nyitrai püspök, később esztergomi érsek építtette 1600–1610-ben. VI. Károly e kastélyt a birtokkal együtt 1718-ban gr. Forgách Simontól elkoboztatta és karancs-berényi báró Berényi Péternek adományozta. Később vétel útján gróf Traun de Abendsberg tulajdonába jutott, kitől ismét az Erdődy család vásárolta meg. Ezután gr. Erdődy Erzsébet egyik rokona, gróf Colloredo Mels örökölte és tőle vásárolta 1868-ban a jelenleg
[ 323, 485, 2753, 554, 313, 3616, 5590, 4985, 352, 323, 586, 279, 2213, 3459, 29897, 7591, 25038, 5207, 5590, 29976, 1984, 10326, 29892, 263, 16693, 277, 17016, 13023, 15363, 14461, 3637, 481, 324, 2395, 6399, 29875, 432, 3054, 1569, 10326, 29889, 13, 13, 29943, 1416, 29894, 10237, 29871, 13, 29940, 351, 3637, 481, 324, 2395, 6399, 29873, 5471, 29871, 29906, 30081, 8848, 29899, 276, 2465, 29114, 1460, 688, 16546, 1238, 2039, 20711, 29889, 13, 13, 29911, 1340, 6772, 18977, 29871, 13, 29909, 22744, 14434, 263, 29871, 29896, 29906, 29889, 26522, 328, 2571, 22109, 371, 21060, 29889, 13144, 30048, 29871, 10687, 1569, 359, 321, 828, 2468, 10237, 29871, 29896, 29906, 29941, 29945, 29899, 1785, 15980, 6772, 593, 376, 29911, 29874, 2753, 2679, 29908, 394, 557, 2571, 29889, 5201, 7837, 29875, 29773, 17082, 29892, 25172, 263, 503, 711, 272, 354, 1927, 29875, 3856, 29883, 743, 3095, 29976, 1372, 4064, 29948, 29889, 29871, 29896, 29906, 29955, 29906, 29899, 29873, 8054, 2698, 1976, 29874, 6583, 29920, 1691, 2445, 29948, 29892, 9028, 287, 260, 3054, 29876, 554, 29885, 4156, 696, 8077, 29976, 29948, 29889, 476, 29464, 1327, 263, 18751, 324, 2395, 6399, 29875, 318, 3665, 17419, 6896, 911, 29889, 29871, 29896, 29945, 29955, 29900, 29899, 1785, 263, 11092, 431, 273, 4439, 290, 2465, 29871, 29955, 298, 5058, 13575, 29873, 29889, 29871, 29896, 29955, 29896, 29945, 29899, 1785, 29871, 29896, 29941, 14859, 2065, 442, 13199, 594, 29980, 29730, 29889, 29871, 29896, 29955, 29947, 29955, 29899, 1785, 29871, 29946, 29900, 298, 5058, 10326, 29871, 29941, 29945, 29900, 24591, 359, 904, 1896, 29889, 29871, 29896, 29947, 29906, 29947, 29899, 2571, 29871, 29945, 29945, 14859, 1362, 2465, 29871, 29941, 29947, 29945, 24591, 3628, 5583, 29892, 11208, 638, 16793, 19321, 592, 9357, 29887, 834, 17370, 29976, 1505, 284, 29892, 16928, 1416, 465, 29976, 1505, 284, 16847, 29880, 2235, 29877, 2065, 557, 29889, 29871, 29896, 29947, 29941, 29946, 29899, 1785, 274, 2679, 990, 29891, 3054, 301, 1893, 267, 12100, 29892, 29871, 29896, 29947, 29953, 29945, 29899, 1785, 2268, 16137, 29888, 30048, 29920, 311, 29892, 29871, 29896, 29947, 29953, 29953, 29899, 2571, 269, 1340, 29888, 30048, 29920, 311, 7930, 12100, 29889, 27229, 29980, 29875, 263, 7591, 5037, 18338, 20397, 17082, 554, 265, 2465, 263, 274, 2679, 990, 29891, 3054, 2571, 8828, 1484, 2065, 557, 29892, 22202, 26363, 2571, 29871, 29896, 29929, 29906, 29947, 29899, 2571, 454, 29948, 657, 29873, 2465, 14434, 6583, 7930, 28242, 5859, 20786, 29926, 29976, 29889, 13, 13, 29909, 29871, 29896, 29947, 29889, 26522, 328, 17751, 1690, 478, 7837, 29875, 1126, 11964, 26174, 376, 6040, 26865, 6632, 29968, 29889, 323, 485, 2753, 638, 29889, 323, 15827, 11092, 29884, 16693, 277, 336, 478, 29976, 1758, 29889, 10621, 430, 267, 501, 336, 1632, 29889, 3201, 348, 501, 3417, 4064, 29892, 24591, 359, 1794, 22654, 29888, 3610, 5859, 29892, 1238, 2039, 20711, 405, 6485, 323, 481, 324, 2395, 6399, 19362, 7591, 295, 29892, 9232, 368, 6750, 977, 29875, 22748, 29936, 10621, 430, 1927, 29872, 432, 29980, 29892, 285, 22748, 1109, 263, 29915, 8594, 1092, 29976, 1927, 29875, 604, 29881, 30048, 29890, 8054, 29892, 2930, 271, 1362, 405, 29889, 323, 481, 324, 2395, 6399, 265, 1213, 13, 13, 29909, 29871, 29896, 29929, 29889, 26522, 328, 4929, 911, 29886, 1690, 383, 7125, 267, 8317, 29895, 26174, 376, 323, 485, 2753, 554, 29892, 260, 15827, 11092, 29884, 29892, 16693, 277, 336, 22419, 11125, 14790, 29892, 405, 29889, 323, 481, 324, 2395, 1715, 286, 25939, 29889, 5207, 29976, 828, 2464, 29871, 29941, 29947, 29896, 413, 493, 1696, 29871, 29906, 503, 29879, 333, 29980, 24591, 29889, 785, 3067, 10794, 4812, 2698, 318, 3417, 4064, 2268, 6430, 413, 579, 19800, 29874, 2465, 13023, 371, 29889, 383, 22077, 1324, 29875, 432, 15948, 29936, 1841, 371, 2814, 295, 30048, 1324, 560, 2445, 29892, 604, 311, 1324, 18338, 29889, 5207, 6430, 318, 3417, 29976, 3146, 734, 3169, 743, 4975, 29889, 383, 29889, 318, 29889, 867, 29889, 29446, 30048, 4518, 18433, 29920, 344, 9144, 30048, 1213, 13, 13, 29940, 29891, 277, 336, 9366, 1758, 387, 4099, 26522, 328, 4006, 352, 7173, 1601, 12414, 7241, 22748, 26174, 376, 29911, 485, 2753, 554, 29892, 7098, 277, 5705, 5873, 1927, 29875, 260, 15827, 7591, 25038, 29892, 405, 6485, 29899, 29911, 481, 324, 2395, 6399, 286, 25939, 29892, 8248, 8054, 2465, 29114, 1460, 688, 327, 336, 29892, 29871, 29941, 20052, 29948, 21717, 29892, 29871, 29929, 29941, 29941, 364, 29889, 413, 493, 29889, 22044, 1569, 29884, 24591, 2209, 284, 29889, 4918, 29874, 15767, 260, 29976, 2405, 29980, 29899, 2465, 19723, 30030, 2034, 13575, 290, 13199, 405, 6485, 29899, 29911, 481, 324, 2395, 6399, 29889, 29871, 30451, 21935, 2445, 29875, 7591, 25038, 29892, 263, 22202, 376, 29911, 3054, 29876, 554, 29908, 560, 484, 13325, 743, 394, 1131, 14434, 263, 17172, 29889, 26522, 328, 2571, 28317, 29875, 29773, 17082, 5583, 29889, 306, 698, 1109, 260, 485, 2753, 21025, 289, 3054, 29980, 624, 398, 1050, 7260, 29887, 11253, 17995, 18369, 370, 1569, 29884, 29892, 19559, 3616, 267, 413, 579, 19800, 29874, 2465, 2268, 6430, 14089, 1764, 29889, 319, 413, 579, 19800, 29873, 867, 29889, 383, 990, 18549, 383, 4578, 2067, 7098, 277, 17016, 282, 29993, 1028, 14628, 29892, 413, 29464, 1327, 831, 29920, 357, 29887, 21019, 20946, 344, 29895, 7930, 29983, 698, 2353, 29871, 29896, 29953, 29900, 29900, 29994, 29896, 29953, 29896, 29900, 29899, 1785, 29889, 5473, 29889, 476, 29976, 307, 368, 321, 413, 579, 19800, 29873, 263, 29773, 517, 6859, 284, 5524, 17635, 29871, 29896, 29955, 29896, 29947, 29899, 2571, 867, 29889, 383, 990, 18549, 3439, 609, 5471, 560, 29895, 711, 29877, 2065, 14975, 2465, 10856, 273, 2395, 29899, 495, 7125, 29875, 289, 3054, 29980, 2292, 7125, 29875, 349, 26283, 6750, 594, 19613, 2112, 941, 29889, 476, 29464, 1327, 325, 1893, 295, 3720, 29873, 29012, 867, 29980, 29888, 3201, 348, 316, 1976, 1975, 2552, 260, 352, 1175, 9176, 29976, 2291, 432, 329, 1501, 29892, 413, 277, 8054, 338, 29885, 1893, 2698, 29446, 30048, 4518, 29421, 7461, 325, 1569, 29976, 1467, 941, 4508, 29889, 18817, 329, 1715, 867, 29889, 29446, 30048, 4518, 17390, 29879, 29948, 6878, 5524, 638, 28159, 2681, 29892, 867, 29980, 29888, 13435, 4395, 29877, 341, 1379, 29871, 1340, 14628, 5873, 371, 2465, 260, 30048, 280, 325, 1569, 29976, 1467, 941, 29871, 29896, 29947, 29953, 29947, 29899, 2571, 263, 432, 4498, 1397 ]
1,024
Wikipedia
-0.612623
-0.514577
-0.473293
-1.093106
i tulajdonos. A kastély nagy kényelemmel van berendezve és helyiségei közül különösen szép a nagyterem és a családi kápolna. Br. Stummer Ágostonnak itt nagy kiterjedésü mintagazdasága nagy czukorgyára van, mely utóbbi körülbelül 47,000  méternyi területet foglal el." Tavarnokba a 19. században beolvadt Kisjéc falu, melyet 1258-ban "Inferior Jechy" alakban említenek először. 1510-ben "Alsokysyecz" néven szerepel. 1715-ben 4 háztartása volt. 1787-ben a Bossányi család a földesura, 13 házában 139 lakos élt. 1828-ban 25 házát 215-en lakták. A trianoni békeszerződésig Nyitra vármegye Nagytapolcsányi járásához tartozott. Az 1920-as években sok lakója kivándorolt a tengerentúlra. A Stummer cukorgyár 1929-ben leégett. Népessége 1880-ban 930 lakosából 31 magyar és 823 szlovák anyanyelvű volt. 1890-ben 933 lakosából 59 magyar, 24 német és 847 szlovák anyanyelvű volt. Ebből 926 római katolikus, 6 evangélikus és 1 izraelita vallású volt. 1900-ban 1098 lakosából 62 magyar és 992 szlovák anyanyelvű volt. 1910-ben 1074 lakosából 245 magyar, 25 német, 17 egyéb és 787 szlovák anyanyelvű volt. Ebből 1054 római katolikus, 10 evangélikus, 9 izraelita és 1 református vallású volt. 1921-ben 1079 lakosából 56 magyar és 967 csehszlovák volt. 1930-ban 1092 lakosából 36 magyar, 25 német, 1 zsidó, 1008 csehszlovák, 1 egyéb nemzetiségű és 21 állampolgárság nélküli volt. 1970-ben 1740 lakosából 1727 szlovák, 12 cseh és 1 orosz volt. Egy ideig Nagytapolcsány része volt. 2001-ben 1248 lakosából 1237 szlovák volt. 2011-ben 1419 lakosából 1371 szlovák, 5 cseh és 1-1 magyar, morva, német, ruszin és szerb, illetve 38 ismeretlen nemzetiségű volt. Magyar anyanyelvűként senkit sem jegyeztek fel. Neves személyek Itt született 1713-ban Tapolcsányi Gergely Pál piarista tartományfőnök. Itt hunyt el 1721-ben Ebeczky István kuruc generális. Itt hunyt el 1914-ben Kelecsényi Károly jogász, entomológus. Itt hunyt el 1916-ban Pantocsek József orvos, botanikus, algológus, paleobotanikus. Nevezetességei Kastélya 1600 és 1610 között épült reneszánsz stílusban. A 18
[ 29875, 260, 352, 1175, 9176, 359, 29889, 319, 413, 579, 19800, 18338, 413, 7125, 20461, 12873, 1109, 7655, 3324, 29920, 345, 2465, 14827, 11728, 479, 29875, 7591, 6001, 26337, 3042, 29997, 4881, 2268, 6430, 263, 18338, 357, 331, 2465, 263, 29421, 29976, 6051, 413, 29976, 3733, 1056, 29889, 1771, 29889, 624, 398, 1050, 7260, 29887, 520, 3409, 557, 372, 29873, 18338, 413, 1524, 11370, 743, 29993, 20559, 351, 834, 17370, 29976, 3249, 18338, 5316, 2679, 990, 29891, 14684, 1109, 29892, 22202, 3477, 29980, 14663, 18710, 6001, 6596, 6001, 29871, 29946, 29955, 29892, 29900, 29900, 29900, 29871, 197, 147, 8774, 725, 25675, 1935, 15363, 300, 16847, 29880, 284, 560, 1213, 13, 13, 29911, 485, 2753, 554, 2291, 263, 29871, 29896, 29929, 29889, 26522, 328, 2571, 367, 324, 29894, 3590, 476, 275, 29926, 4582, 11092, 29884, 29892, 22202, 300, 29871, 29896, 29906, 29945, 29947, 29899, 2571, 376, 797, 571, 1611, 2581, 23766, 29908, 394, 557, 2571, 321, 828, 29983, 841, 1416, 14427, 3616, 1340, 29889, 29871, 29896, 29945, 29896, 29900, 29899, 1785, 376, 2499, 29879, 554, 952, 29891, 27750, 29908, 5273, 854, 19742, 13111, 29889, 29871, 29896, 29955, 29896, 29945, 29899, 1785, 29871, 29946, 14859, 2065, 442, 13199, 5583, 29889, 29871, 29896, 29955, 29947, 29955, 29899, 1785, 263, 350, 2209, 6399, 29875, 29421, 7461, 263, 10621, 430, 267, 2002, 29892, 29871, 29896, 29941, 298, 5058, 10326, 29871, 29896, 29941, 29929, 24591, 359, 904, 1896, 29889, 29871, 29896, 29947, 29906, 29947, 29899, 2571, 29871, 29906, 29945, 298, 5058, 2682, 29871, 29906, 29896, 29945, 29899, 264, 425, 1193, 4985, 29889, 13, 13, 29909, 3367, 273, 5271, 289, 5859, 267, 3298, 9357, 29881, 743, 335, 16693, 277, 336, 9366, 1758, 387, 4099, 14461, 3637, 481, 324, 2395, 6399, 29875, 432, 3054, 1569, 29976, 19362, 13914, 2112, 1501, 29889, 4709, 29871, 29896, 29929, 29906, 29900, 29899, 294, 904, 19134, 1785, 269, 554, 24591, 29980, 1764, 413, 440, 8712, 272, 14339, 263, 3006, 914, 296, 25293, 336, 29889, 319, 624, 398, 1050, 274, 2679, 990, 29891, 3054, 29871, 29896, 29929, 29906, 29929, 29899, 1785, 454, 29948, 657, 29873, 29889, 13, 13, 29940, 6430, 404, 14553, 29871, 13, 29896, 29947, 29947, 29900, 29899, 2571, 29871, 29929, 29941, 29900, 24591, 359, 16341, 5471, 29871, 29941, 29896, 17717, 2465, 29871, 29947, 29906, 29941, 2268, 5590, 4985, 738, 1384, 295, 29894, 30089, 5583, 29889, 13, 13, 29896, 29947, 29929, 29900, 29899, 1785, 29871, 29929, 29941, 29941, 24591, 359, 16341, 5471, 29871, 29945, 29929, 17717, 29892, 29871, 29906, 29946, 302, 24700, 2465, 29871, 29947, 29946, 29955, 2268, 5590, 4985, 738, 1384, 295, 29894, 30089, 5583, 29889, 382, 1327, 8054, 29871, 29929, 29906, 29953, 364, 29980, 24402, 29483, 17342, 29892, 29871, 29953, 3415, 574, 29948, 5081, 375, 2465, 29871, 29896, 5951, 9058, 2028, 22044, 1569, 30030, 5583, 29889, 13, 13, 29896, 29929, 29900, 29900, 29899, 2571, 29871, 29896, 29900, 29929, 29947, 24591, 359, 16341, 5471, 29871, 29953, 29906, 17717, 2465, 29871, 29929, 29929, 29906, 2268, 5590, 4985, 738, 1384, 295, 29894, 30089, 5583, 29889, 13, 13, 29896, 29929, 29896, 29900, 29899, 1785, 29871, 29896, 29900, 29955, 29946, 24591, 359, 16341, 5471, 29871, 29906, 29946, 29945, 17717, 29892, 29871, 29906, 29945, 302, 24700, 29892, 29871, 29896, 29955, 5524, 10126, 2465, 29871, 29955, 29947, 29955, 2268, 5590, 4985, 738, 1384, 295, 29894, 30089, 5583, 29889, 382, 1327, 8054, 29871, 29896, 29900, 29945, 29946, 364, 29980, 24402, 29483, 17342, 29892, 29871, 29896, 29900, 3415, 574, 29948, 5081, 375, 29892, 29871, 29929, 5951, 9058, 2028, 2465, 29871, 29896, 11736, 2682, 375, 22044, 1569, 30030, 5583, 29889, 13, 13, 29896, 29929, 29906, 29896, 29899, 1785, 29871, 29896, 29900, 29955, 29929, 24591, 359, 16341, 5471, 29871, 29945, 29953, 17717, 2465, 29871, 29929, 29953, 29955, 274, 11734, 3616, 5590, 4985, 5583, 29889, 13, 13, 29896, 29929, 29941, 29900, 29899, 2571, 29871, 29896, 29900, 29929, 29906, 24591, 359, 16341, 5471, 29871, 29941, 29953, 17717, 29892, 29871, 29906, 29945, 302, 24700, 29892, 29871, 29896, 503, 29879, 333, 29980, 29892, 29871, 29896, 29900, 29900, 29947, 274, 11734, 3616, 5590, 4985, 29892, 29871, 29896, 5524, 10126, 6583, 4975, 275, 2445, 30089, 2465, 29871, 29906, 29896, 13575, 1160, 22991, 19596, 4064, 302, 3610, 29895, 29993, 492, 5583, 29889, 13, 13, 29896, 29929, 29955, 29900, 29899, 1785, 29871, 29896, 29955, 29946, 29900, 24591, 359, 16341, 5471, 29871, 29896, 29955, 29906, 29955, 2268, 5590, 4985, 29892, 29871, 29896, 29906, 274, 11734, 2465, 29871, 29896, 470, 13165, 5583, 29889, 13, 13, 29923, 1927, 1957, 335, 14461, 3637, 481, 324, 2395, 6399, 6896, 911, 5583, 29889, 13, 13, 29906, 29900, 29900, 29896, 29899, 1785, 29871, 29896, 29906, 29946, 29947, 24591, 359, 16341, 5471, 29871, 29896, 29906, 29941, 29955, 2268, 5590, 4985, 5583, 29889, 13, 13, 29906, 29900, 29896, 29896, 29899, 1785, 29871, 29896, 29946, 29896, 29929, 24591, 359, 16341, 5471, 29871, 29896, 29941, 29955, 29896, 2268, 5590, 4985, 29892, 29871, 29945, 274, 11734, 2465, 29871, 29896, 29899, 29896, 17717, 29892, 3036, 1564, 29892, 302, 24700, 29892, 364, 10958, 262, 2465, 12081, 29890, 29892, 980, 1026, 345, 29871, 29941, 29947, 338, 1050, 300, 2435, 6583, 4975, 275, 2445, 30089, 5583, 29889, 15910, 738, 1384, 295, 29894, 30089, 19321, 269, 5842, 277, 3031, 432, 387, 4099, 8832, 29895, 7995, 29889, 13, 13, 8139, 1960, 2268, 331, 19800, 1416, 13, 29902, 698, 2268, 15363, 1803, 29871, 29896, 29955, 29896, 29941, 29899, 2571, 323, 481, 324, 2395, 6399, 29875, 5681, 29887, 873, 349, 2464, 2930, 279, 2079, 13914, 19613, 29888, 30048, 29876, 14628, 29889, 29871, 13, 29902, 698, 9074, 3637, 560, 29871, 29896, 29955, 29906, 29896, 29899, 1785, 382, 19385, 29920, 3459, 11066, 20137, 12802, 1682, 1176, 26088, 29889, 13, 29902, 698, 9074, 3637, 560, 29871, 29896, 29929, 29896, 29946, 29899, 1785, 4813, 280, 2395, 7125, 29875, 476, 29976, 307, 368, 16812, 15995, 29892, 875, 290, 13567, 375, 29889, 13, 29902, 698, 9074, 3637, 560, 29871, 29896, 29929, 29896, 29953, 29899, 2571, 349, 424, 542, 344, 29895, 18433, 29920, 28604, 470, 23517, 29892, 24662, 17342, 29892, 3093, 13567, 375, 29892, 15509, 711, 327, 273, 17342, 29889, 13, 13, 8139, 345, 4975, 404, 14553, 29875, 29871, 13, 476, 579, 19800, 29874, 29871, 29896, 29953, 29900, 29900, 2465, 29871, 29896, 29953, 29896, 29900, 18646, 7930, 12100, 4325, 16137, 1715, 3616, 380, 29983, 12160, 2571, 29889, 319, 29871, 29896, 29947 ]
1,024
Wikipedia
-0.889084
-0.774945
0.07364
-1.162674
Random Thoughts of Gil Camporazo: DepEd LIS/EBEIS Concerns, Issues: Where to Go? DepEd LIS/EBEIS Concerns, Issues: Where to Go? Since the computerization of Learner Information System (LIS) as well as the Enhanced Basic Education Information System (EBEIS), school Information and Communications Technology (ICT) coordinators, school heads, and especially school guidance coordinators and classroom teachers are on the verge of baptism of fire exploring the cybespace and online school-related job. With the intention of resolving the technical issues those DepEd non-teaching and teaching personnel may encounter while doing their encoding job for the the first time in the history of Department of Education, group like Learner Information System (LIS) Help Desk, School Forms Reengineering Team (SFRT), and EBEIS Help Desk was created in the Facebook with only a handful of admins who did sacrifice their time and effort to properly discharge their responsibilities. The mentioned FB group was only limited to DepEd non-teaching, teaching, and administrative/supervisory personnel. By the way, since the above-groups mentioned here are closed, you have to request for approval of your membership first before you could access them. However, it is suggested that any issue may be directed to the Central Office for resolution, have it settled first by your respective local Division Planning Officer (DPO). Let's not over burden the key persons involved in this LIS/EBEIS task like Sir Jonathan Diche and Mam Rechie Ventura Cruz. Why? May dahilan naman siguro, di ba? bakit sa dami ng komento at reklamo ganun at ganun p rin ang naeencounter na problema ng mga LIS user?...sino kaya ang may problema ung internet connection or ung mismong mga tao s likod nung website n yun? Hello po. May student po ako ma mag transfer sa. Maguindanao pero di ko alam ang school. Wala na akong contact sa family niya at sa former address nila, wala na Ron sila doon. Ano ang Gagawin ko po ? Salamat. good afternoon po....may pupil po ako na hindi po na enrol for school year 2014-2015...nagtry po aq na eenrol,hindi po nag succeed..ano po ba dapat kong gawin?salamat po. Bakit hindi maenroll? Baka meron pang ibang critical issue na hindi pa naresolve. Try to enroll him using his LRN. hello po ok lang po ba naifinalize ang section kahit may unconfirmed transferred in pa po? Good day Sir, how to update or change the basic information of the learners. Good day po!..just asking po if how to remove the learner na wala nman po sa school masterlist, taga ibang school po kc yung bata and we wonder bkit po siya nasa toggle list nmin. Sir good afternoon po paano po maresolve ang critical issues sa LIS nakalocked po. How can I remove the name of a student with multiple enrolment issue in one class/section? I have already tried to un-enrol one of the names of that student, but it is still there. Good day po sir, Ano po ba ang dapat naming gawin, nafinalized na ang LIS namin 2nd week of May, tapos mali pala ang school na transferred out ang bata pag update namin, at last week tumawag ang teacher sa school kung saan actual natransferred in ang bata hindi sila makafinalize dahil di makapagconfirm. Ano po ba ang solution nito? Sana po matulungan ninyo kami. Maraming salamat po. good day sir,,,we had an ALS LIS Account but why is it that when we access it there is no form or any template to input the data of our learners? tanx and hope you could advise with this issue. sir gud evening po pano po gagawin if hindi po na finalize ung ebeis? pls help po. sir gud afternoon poh.may learner poh ako na when i try to enrol eh lage na lang learner already enrolled check your masterlist..kso wala poh s
[ 16968, 498, 1774, 29879, 310, 11788, 7259, 272, 834, 29877, 29901, 10034, 3853, 365, 3235, 29914, 29923, 15349, 3235, 23924, 824, 29879, 29892, 16982, 1041, 29901, 6804, 304, 2921, 29973, 13, 8498, 3853, 365, 3235, 29914, 29923, 15349, 3235, 23924, 824, 29879, 29892, 16982, 1041, 29901, 6804, 304, 2921, 29973, 13, 23036, 278, 6601, 2133, 310, 19530, 1089, 10343, 2184, 313, 29931, 3235, 29897, 408, 1532, 408, 278, 1174, 29308, 19219, 13151, 10343, 2184, 313, 29923, 15349, 3235, 511, 3762, 10343, 322, 22365, 800, 17968, 313, 29902, 1783, 29897, 6615, 4097, 29892, 3762, 15883, 29892, 322, 7148, 3762, 27323, 6615, 4097, 322, 770, 8345, 27335, 526, 373, 278, 1147, 479, 310, 27257, 1608, 310, 3974, 3902, 8253, 278, 5094, 5707, 3535, 322, 7395, 3762, 29899, 12817, 4982, 29889, 13, 3047, 278, 16392, 310, 3770, 1747, 278, 16905, 5626, 1906, 10034, 3853, 1661, 29899, 371, 9733, 322, 18819, 24127, 1122, 11735, 1550, 2599, 1009, 8025, 4982, 363, 278, 278, 937, 931, 297, 278, 4955, 310, 10317, 310, 13151, 29892, 2318, 763, 19530, 1089, 10343, 2184, 313, 29931, 3235, 29897, 22305, 2726, 29895, 29892, 4523, 3812, 29879, 830, 10599, 3241, 8583, 313, 20322, 13079, 511, 322, 382, 15349, 3235, 22305, 2726, 29895, 471, 2825, 297, 278, 13327, 411, 871, 263, 1361, 1319, 310, 7336, 1144, 1058, 1258, 28839, 1009, 931, 322, 7225, 304, 6284, 766, 23367, 1009, 5544, 747, 9770, 29889, 13, 1576, 5276, 28816, 2318, 471, 871, 9078, 304, 10034, 3853, 1661, 29899, 371, 9733, 29892, 18819, 29892, 322, 19185, 29914, 9136, 1730, 706, 24127, 29889, 13, 2059, 278, 982, 29892, 1951, 278, 2038, 29899, 13155, 5276, 1244, 526, 5764, 29892, 366, 505, 304, 2009, 363, 2134, 791, 310, 596, 28512, 937, 1434, 366, 1033, 2130, 963, 29889, 13, 17245, 29892, 372, 338, 7829, 393, 738, 2228, 1122, 367, 10624, 304, 278, 8068, 11367, 363, 10104, 29892, 505, 372, 17141, 937, 491, 596, 18067, 1887, 7946, 1858, 9450, 28288, 313, 11191, 29949, 467, 2803, 29915, 29879, 451, 975, 6866, 1145, 278, 1820, 12407, 9701, 297, 445, 365, 3235, 29914, 29923, 15349, 3235, 3414, 763, 6290, 20983, 360, 4070, 322, 27287, 830, 305, 347, 21141, 2002, 17960, 29889, 13, 11008, 29973, 2610, 20694, 309, 273, 6869, 273, 4365, 2192, 29892, 652, 9922, 29973, 13, 29890, 557, 277, 872, 270, 4479, 8736, 413, 2932, 29877, 472, 337, 29895, 5288, 29877, 9581, 348, 472, 9581, 348, 282, 29053, 2614, 1055, 29872, 3977, 5336, 1055, 21655, 8736, 286, 3249, 365, 3235, 1404, 29973, 856, 29879, 1789, 413, 9010, 2614, 1122, 21655, 29443, 8986, 3957, 470, 29443, 21436, 549, 286, 3249, 260, 6241, 269, 4188, 397, 302, 686, 4700, 302, 343, 348, 29973, 13, 10994, 772, 29889, 2610, 8368, 772, 263, 2901, 611, 2320, 6782, 872, 29889, 3561, 29884, 513, 1648, 29877, 7046, 652, 5812, 394, 314, 2614, 3762, 29889, 399, 2883, 1055, 11208, 549, 6958, 872, 3942, 6836, 3761, 472, 872, 4642, 3211, 302, 4233, 29892, 281, 2883, 1055, 11546, 4047, 29874, 437, 265, 29889, 530, 29877, 2614, 402, 351, 1450, 262, 5812, 772, 1577, 3956, 314, 271, 29889, 13, 16773, 17724, 772, 3045, 13029, 23449, 309, 772, 263, 2901, 1055, 298, 14108, 772, 1055, 427, 1467, 363, 3762, 1629, 29871, 29906, 29900, 29896, 29946, 29899, 29906, 29900, 29896, 29945, 856, 29876, 351, 2202, 772, 263, 29939, 1055, 1739, 1467, 29892, 29882, 14108, 772, 17995, 9269, 636, 1562, 772, 9922, 270, 26347, 413, 549, 330, 1450, 262, 29973, 19585, 314, 271, 772, 29889, 13, 29933, 557, 277, 298, 14108, 611, 264, 1245, 29973, 350, 8245, 2778, 265, 282, 574, 474, 29890, 574, 12187, 2228, 1055, 298, 14108, 3300, 302, 5114, 324, 345, 29889, 3967, 304, 427, 1245, 1075, 773, 670, 365, 29934, 29940, 29889, 13, 12199, 772, 3431, 6361, 772, 9922, 1055, 361, 979, 675, 2614, 4004, 413, 801, 277, 1122, 443, 5527, 381, 2168, 18440, 297, 3300, 772, 29973, 13, 18420, 2462, 6290, 29892, 920, 304, 2767, 470, 1735, 278, 6996, 2472, 310, 278, 5110, 414, 29889, 13, 18420, 2462, 772, 29991, 636, 5143, 6721, 772, 565, 920, 304, 3349, 278, 24298, 1089, 1055, 281, 2883, 302, 1171, 772, 872, 3762, 5835, 1761, 29892, 4055, 29874, 474, 29890, 574, 3762, 772, 413, 29883, 343, 686, 20133, 322, 591, 4997, 289, 7354, 772, 1354, 3761, 8281, 29874, 20429, 1051, 302, 1195, 29889, 13, 29903, 381, 1781, 17724, 772, 3300, 1562, 772, 1766, 267, 324, 345, 2614, 12187, 5626, 872, 365, 3235, 23349, 284, 1698, 287, 772, 29889, 13, 5328, 508, 306, 3349, 278, 1024, 310, 263, 8368, 411, 2999, 427, 1467, 358, 2228, 297, 697, 770, 29914, 2042, 29973, 13, 29902, 505, 2307, 1898, 304, 443, 29899, 264, 1467, 697, 310, 278, 2983, 310, 393, 8368, 29892, 541, 372, 338, 1603, 727, 29889, 13, 18420, 2462, 772, 8889, 29892, 530, 29877, 772, 9922, 2614, 270, 26347, 22006, 330, 1450, 262, 29892, 1055, 8394, 1891, 1055, 2614, 365, 3235, 6869, 262, 29871, 29906, 299, 4723, 310, 2610, 29892, 18751, 359, 286, 2606, 282, 2883, 2614, 3762, 1055, 18440, 714, 2614, 20133, 10203, 2767, 6869, 262, 29892, 472, 1833, 4723, 21622, 1450, 351, 2614, 15703, 872, 3762, 413, 686, 872, 273, 3935, 302, 8141, 550, 14373, 297, 2614, 20133, 298, 14108, 4047, 29874, 2136, 2142, 979, 675, 20694, 309, 652, 2136, 481, 351, 26897, 29889, 530, 29877, 772, 9922, 2614, 1650, 302, 2049, 29973, 317, 1648, 772, 1775, 352, 686, 273, 302, 4901, 29877, 413, 4479, 29889, 1085, 11500, 4497, 314, 271, 772, 29889, 13, 16773, 2462, 8889, 12985, 29892, 705, 750, 385, 319, 8547, 365, 3235, 16535, 541, 2020, 338, 372, 393, 746, 591, 2130, 372, 727, 338, 694, 883, 470, 738, 4472, 304, 1881, 278, 848, 310, 1749, 5110, 414, 29973, 10345, 29916, 322, 4966, 366, 1033, 22939, 411, 445, 2228, 29889, 13, 29879, 381, 330, 566, 11005, 772, 282, 1562, 772, 330, 351, 1450, 262, 565, 298, 14108, 772, 1055, 2186, 675, 29443, 321, 915, 275, 29973, 715, 29879, 1371, 772, 29889, 13, 29879, 381, 330, 566, 17724, 772, 29882, 29889, 13029, 24298, 1089, 772, 29882, 263, 2901, 1055, 746, 474, 1018, 304, 427, 1467, 321, 29882, 301, 482, 1055, 6361, 24298, 1089, 2307, 427, 24476, 1423, 596, 5835, 1761, 636, 29895, 578, 281, 2883, 772, 29882, 269 ]
1,024
C4
-1.523518
-1.131349
-1.681029
0.009234
Blake Edwards – Revenge of the Pink Panther (1978) July 7, 2020 1971-1980, Blake Edwards, Comedy, Crime, United Kingdom Leave a comment 589 Views Fifth of the Pink Panther series and the last to star Peter Sellers before his untimely death. French mobster, Phillip Douvier has got a problem – hardly none of the other crime families give his family any respect. To try and fix this problem, he gives orders to murder Chief Inspector Clouseau who everybody think is a genius and only a few like Chief Inspector Dreyfus know of his true stupidity. Thanks due to a mixup an escaping criminal dies in Clouseau's car, and it crashes and explodes. Chief Inspector Dreyfus is delighted (so much so that when at the memorial service he tries very hard not to laugh out in delight and everybody thinks he's crying), but Clouseau, wondering who's out to kill him gets the help of his oriental servant Cato and Douvier's secretary and ex-lover Simone Legree to help solve the mystery… Read More » Blake Edwards – The Pink Panther Strikes Again (1976) Charles Dreyfus (Herbert Lom), the Chief Inspector of the Surete and superior of Inspector Clouseau was last seen in The Return of the Pink Panther (1975) suffering a breakdown cause of Clouseau's torment. He decides to try and kill him, but fails and was last seen confined to a mental asylum. This movie begins three years later, Dreyfus' doctors think is well enough to be released, but before he is, Clouseau visits him and agitates him into killing him, so he's not released. But he escapes and tries to kill Clouseau, but fails. He then decides to recruit some of the best criminals in the world, and then kidnaps a noted English scientist and creates a device that can destroy the world. After using it, his only demand is Clouseau. So every country in the world sends their best assassin to kill him but fail. And Clouseau tries to find Dreyfus before he does any more damage. Read More » Blake Edwards – The Return of the Pink Panther (1975) Third in the Pink Panther film franchise. The "Pink Panther" Diamond is stolen once again from Lugash and a white glove is left making everybody think that the famous jewel thief "The Phantom" has stolen it. This surprises everybody as it was thought that The Phantom was retired. It also surprises The Phantom (a.k.a. Sir Charles Litton (Christopher Plummer)) himself as he didn't do it. He sets out from the south of France to Lugash find the diamond and to clear his name as pressure comes from the Lugash authorities to give back the diamond. Meanwhile, infamous French Detective Inspector Jacques Clouseau (Peter Sellers) is called in to find the diamond and he immediately goes to the south of France to check up on Sir Charles. Lady Claudine Litton, Charles' wife (Catherine Schell), discovers this and leads Clouseau on a false trail and, as normal, Clouseau, with his clueless methods, and Cato Fong (Burt Kwouk), his oriental manservant, cause mayhem as they try to find the diamond. Meanwhile, Clouseau pushes his boss, Chief Inspector Charles Dreyfus (Herbert Lom) too far and as the story proceeds, Dreyfus makes attempts to murder Clouseau and get him out of his life forever. Read More » Blake Edwards – Days of Wine and Roses (1962) January 4, 2020 1961-1970, Blake Edwards, Drama, USA Leave a comment 838 Views In this addiction melodrama, Joe Clay (Jack Lemmon), a promising adman, meet his future wife Kirsten (Lee Remick) at a party. Once married, the pressures of his business lead Joe to seek solace in liquor. Kirsten joins him in his nocturnal drinking sessions, and before long both are confirmed alcoholics. After several fright
[ 10465, 446, 29174, 785, 830, 854, 479, 310, 278, 349, 682, 6518, 721, 313, 29896, 29929, 29955, 29947, 29897, 13, 29967, 11850, 29871, 29955, 29892, 29871, 29906, 29900, 29906, 29900, 12, 29896, 29929, 29955, 29896, 29899, 29896, 29929, 29947, 29900, 29892, 10465, 446, 29174, 29892, 422, 7584, 29892, 29682, 29892, 3303, 12626, 951, 1351, 263, 3440, 29871, 29945, 29947, 29929, 4533, 29879, 13, 29943, 361, 386, 310, 278, 349, 682, 6518, 721, 3652, 322, 278, 1833, 304, 5810, 5310, 317, 28257, 1434, 670, 443, 9346, 873, 4892, 29889, 5176, 22458, 2475, 29892, 21856, 666, 360, 5128, 631, 756, 2355, 263, 1108, 785, 15155, 5642, 310, 278, 916, 17268, 13175, 2367, 670, 3942, 738, 3390, 29889, 1763, 1018, 322, 2329, 445, 1108, 29892, 540, 4076, 11299, 304, 13406, 14546, 13377, 1103, 272, 2233, 1709, 585, 1058, 26077, 1348, 338, 263, 26858, 322, 871, 263, 2846, 763, 14546, 13377, 1103, 272, 360, 8903, 29888, 375, 1073, 310, 670, 1565, 20239, 537, 29889, 1834, 2861, 304, 263, 6837, 786, 385, 3966, 21430, 22161, 2977, 297, 2233, 1709, 585, 29915, 29879, 1559, 29892, 322, 372, 21985, 322, 3902, 2631, 29889, 14546, 13377, 1103, 272, 360, 8903, 29888, 375, 338, 15319, 287, 313, 578, 1568, 577, 393, 746, 472, 278, 2626, 9020, 2669, 540, 14335, 1407, 2898, 451, 304, 10569, 714, 297, 15319, 322, 26077, 22405, 540, 29915, 29879, 10901, 292, 511, 541, 2233, 1709, 585, 29892, 9873, 1058, 29915, 29879, 714, 304, 12088, 1075, 4947, 278, 1371, 310, 670, 7769, 284, 21649, 315, 1219, 322, 360, 5128, 631, 29915, 29879, 28274, 322, 429, 29899, 417, 369, 3439, 650, 5682, 929, 304, 1371, 4505, 278, 29236, 30098, 7523, 5853, 2047, 13, 29933, 433, 446, 29174, 785, 450, 349, 682, 6518, 721, 624, 5357, 267, 11454, 313, 29896, 29929, 29955, 29953, 29897, 13, 5914, 793, 360, 8903, 29888, 375, 313, 18650, 2151, 365, 290, 511, 278, 14546, 13377, 1103, 272, 310, 278, 18585, 371, 322, 11558, 310, 13377, 1103, 272, 2233, 1709, 585, 471, 1833, 3595, 297, 450, 7106, 310, 278, 349, 682, 6518, 721, 313, 29896, 29929, 29955, 29945, 29897, 23164, 263, 2867, 3204, 4556, 310, 2233, 1709, 585, 29915, 29879, 4842, 358, 29889, 940, 1602, 2247, 304, 1018, 322, 12088, 1075, 29892, 541, 8465, 322, 471, 1833, 3595, 1970, 1312, 304, 263, 19119, 408, 2904, 398, 29889, 910, 14064, 16410, 2211, 2440, 2678, 29892, 360, 8903, 29888, 375, 29915, 437, 14359, 1348, 338, 1532, 3307, 304, 367, 5492, 29892, 541, 1434, 540, 338, 29892, 2233, 1709, 585, 1998, 1169, 1075, 322, 946, 277, 1078, 1075, 964, 23393, 1075, 29892, 577, 540, 29915, 29879, 451, 5492, 29889, 1205, 540, 3966, 11603, 322, 14335, 304, 12088, 2233, 1709, 585, 29892, 541, 8465, 29889, 940, 769, 1602, 2247, 304, 1162, 9216, 777, 310, 278, 1900, 15116, 19016, 297, 278, 3186, 29892, 322, 769, 26397, 29876, 2547, 263, 11682, 4223, 9638, 391, 322, 10017, 263, 4742, 393, 508, 8174, 278, 3186, 29889, 2860, 773, 372, 29892, 670, 871, 9667, 338, 2233, 1709, 585, 29889, 1105, 1432, 4234, 297, 278, 3186, 16003, 1009, 1900, 20105, 262, 304, 12088, 1075, 541, 4418, 29889, 1126, 2233, 1709, 585, 14335, 304, 1284, 360, 8903, 29888, 375, 1434, 540, 947, 738, 901, 18658, 29889, 7523, 5853, 2047, 13, 29933, 433, 446, 29174, 785, 450, 7106, 310, 278, 349, 682, 6518, 721, 313, 29896, 29929, 29955, 29945, 29897, 13, 1349, 1823, 297, 278, 349, 682, 6518, 721, 2706, 23272, 895, 29889, 450, 376, 29925, 682, 6518, 721, 29908, 22904, 898, 338, 380, 18975, 2748, 1449, 515, 365, 688, 1161, 322, 263, 4796, 15482, 345, 338, 2175, 3907, 26077, 1348, 393, 278, 13834, 432, 809, 295, 266, 2575, 376, 1576, 1963, 15762, 29908, 756, 380, 18975, 372, 29889, 910, 11468, 4637, 26077, 408, 372, 471, 2714, 393, 450, 1963, 15762, 471, 16528, 29889, 739, 884, 11468, 4637, 450, 1963, 15762, 313, 29874, 29889, 29895, 29889, 29874, 29889, 6290, 5322, 21395, 880, 313, 18687, 13434, 1858, 398, 1050, 876, 3654, 408, 540, 3282, 29915, 29873, 437, 372, 29889, 940, 6166, 714, 515, 278, 7062, 310, 3444, 304, 365, 688, 1161, 1284, 278, 11502, 898, 322, 304, 2821, 670, 1024, 408, 12959, 5304, 515, 278, 365, 688, 1161, 21142, 304, 2367, 1250, 278, 11502, 898, 29889, 25065, 29892, 3041, 314, 681, 5176, 5953, 522, 573, 13377, 1103, 272, 12915, 2233, 1709, 585, 313, 23686, 317, 28257, 29897, 338, 2000, 297, 304, 1284, 278, 11502, 898, 322, 540, 7389, 5771, 304, 278, 7062, 310, 3444, 304, 1423, 701, 373, 6290, 5322, 29889, 10040, 25886, 457, 21395, 880, 29892, 5322, 29915, 6532, 313, 29907, 16490, 1102, 514, 511, 17021, 874, 445, 322, 11981, 2233, 1709, 585, 373, 263, 2089, 26203, 322, 29892, 408, 4226, 29892, 2233, 1709, 585, 29892, 411, 670, 1067, 2491, 404, 3519, 29892, 322, 315, 1219, 383, 549, 313, 29933, 4227, 476, 29893, 283, 29895, 511, 670, 7769, 284, 286, 550, 6972, 424, 29892, 4556, 1122, 8008, 408, 896, 1018, 304, 1284, 278, 11502, 898, 29889, 25065, 29892, 2233, 1709, 585, 5503, 267, 670, 289, 2209, 29892, 14546, 13377, 1103, 272, 5322, 360, 8903, 29888, 375, 313, 18650, 2151, 365, 290, 29897, 2086, 2215, 322, 408, 278, 5828, 8469, 29879, 29892, 360, 8903, 29888, 375, 3732, 14734, 304, 13406, 2233, 1709, 585, 322, 679, 1075, 714, 310, 670, 2834, 22296, 29889, 7523, 5853, 2047, 13, 29933, 433, 446, 29174, 785, 24728, 310, 399, 457, 322, 5678, 267, 313, 29896, 29929, 29953, 29906, 29897, 13, 29967, 15623, 653, 29871, 29946, 29892, 29871, 29906, 29900, 29906, 29900, 12, 29896, 29929, 29953, 29896, 29899, 29896, 29929, 29955, 29900, 29892, 10465, 446, 29174, 29892, 360, 20556, 29892, 8278, 951, 1351, 263, 3440, 29871, 29947, 29941, 29947, 4533, 29879, 13, 797, 445, 788, 2463, 9232, 397, 20556, 29892, 11131, 26234, 313, 27006, 8836, 3712, 511, 263, 2504, 5921, 594, 1171, 29892, 5870, 670, 5434, 6532, 476, 765, 264, 313, 3226, 29872, 5240, 860, 29897, 472, 263, 6263, 29889, 9038, 8300, 29892, 278, 3965, 1973, 310, 670, 5381, 3275, 11131, 304, 16508, 899, 815, 297, 15617, 272, 29889, 476, 765, 264, 26205, 1075, 297, 670, 694, 312, 595, 284, 13748, 292, 21396, 29892, 322, 1434, 1472, 1716, 526, 16725, 27231, 5391, 1199, 29889, 2860, 3196, 22739 ]
1,024
CommonCrawl
-0.085471
-0.786139
-0.27828
-1.238567
Bills Hall of Fame running back Thurman Thomas will be putting his taste buds to the ultimate test this evening, as he and a panel of experts judge the Taste NY Craft Beer Challenge finals. Held in New York City, the last installment in the state-wide competition will feature five finalists, including a few flavor-filled local breweries such as Bills Partners Southern Tier Brewing Company and Genesee. Identified by more than 42,000 voters as the top craft breweries in New York, from a list of over 70, the finalists will be analyzed using the following criteria: brewery's diversity, range and quality. Each will have the opportunity to showcase some of their most popular products. For Southern Tier Brewing Company, the event will give the judges a chance to try their new IPA, Nu Skool. Follow along tonight from 5 – 7 p.m. to find out which brewery wins it all! Throughout his 13 years in the NFL, former Bills running back Thurman Thomas was recognized several times for his efforts on the field. An influential member of the Western New York community, the Hall of Famer has also made a name for himself off the field. Thomas has been selected to receive the Legacy of Service Award on Friday, Nov. 18 at Niagara University's President's Dinner at the Seneca Niagara Resort and Casino. He was chosen based on his continued commitment to serving the community. Thomas and a group of other honorees will be acknowledged during the dinner, which begins at 6 p.m. Proceeds from the evening will benefit the university's scholarship programs. For more information on how to purchase tickets to the dinner, please visit here. With today's announcement by Bills team President Russ Brandon that the club will be retiring Bruce Smith's No. 78 in a halftime ceremony at the Bills home opener, he was naturally asked about whether Thurman Thomas' No. 34 could be next in line. Right now only Jim Kelly's No. 12 is retired. Smith's 78 will follow in September. Thomas sounds likely to follow soon after. Bills secondary coach Tim McDonald is entering his second season with Buffalo on Rex Ryan's staff. His 13-year playing career was highlighted by a Super Bowl title with the San Francisco 49ers in 1995. McDonald signed as a free agent with San Fran in 1993, a move that might not have happened were it not for a certain game the 49ers had played a season prior against the Buffalo Bills. In 1992 the Bills and 49ers met early in the season in the now famous 'No Punt' game won by Buffalo 34-31. Though the Niners had a respectable defense that ranked 15th in the NFL, San Fran was 26th in pass defense and 24th in interceptions. And in a heated arms race with the Dallas Cowboys for NFC supremacy, the 49ers were looking for free agent help in the secondary. McDonald, who was a Phoenix Cardinals free agent, was given a five-year contract offer worth big money at the time ($12.75M). McDonald believes it never would've happened were it not for the Bills-49ers 'no punt' game where the defense was non-existent. "What got me to San Francisco as a free agent was their need for defensive help," McDonald told Buffalobills.com. "San Francisco offered me a pretty good deal because they played that game – and I talked to Jim Kelly and Thurman Thomas about this – they played a game against the Buffalo Bills in 1992 and there were no punts. McDonald had a staff of big names that he played under at the time. Thurman Thomas joined the American Dairy Association on September 2nd to train 100 Buffalo City School District physical education teachers on the NFL FLAG Football program as a part of the Fuel Up To Play 60 initiative. The training, hosted at City Honors High School in Buffalo, was hosted by SHAPE America and comprised of the teachers learning how to run the NFL FLAG curriculum in their classroom. During the NFL Draft, Commission Goodell and others announced the second year of distribution for "Fuel Up to
[ 350, 6090, 6573, 310, 21808, 2734, 1250, 498, 332, 1171, 5569, 674, 367, 10594, 670, 21779, 8619, 29879, 304, 278, 8494, 6490, 1243, 445, 11005, 29892, 408, 540, 322, 263, 9451, 310, 2902, 1372, 16833, 278, 323, 4350, 23526, 315, 4154, 1522, 261, 27211, 2186, 29879, 29889, 379, 2495, 297, 1570, 3088, 4412, 29892, 278, 1833, 2601, 358, 297, 278, 2106, 29899, 8157, 13888, 674, 4682, 5320, 2186, 2879, 29892, 3704, 263, 2846, 21054, 272, 29899, 26940, 1887, 2078, 556, 583, 1316, 408, 350, 6090, 3455, 8397, 14234, 29088, 350, 3973, 292, 6938, 322, 5739, 968, 29872, 29889, 13, 7648, 2164, 491, 901, 1135, 29871, 29946, 29906, 29892, 29900, 29900, 29900, 9014, 414, 408, 278, 2246, 25554, 2078, 556, 583, 297, 1570, 3088, 29892, 515, 263, 1051, 310, 975, 29871, 29955, 29900, 29892, 278, 2186, 2879, 674, 367, 29537, 287, 773, 278, 1494, 16614, 29901, 2078, 556, 29891, 29915, 29879, 6894, 537, 29892, 3464, 322, 11029, 29889, 7806, 674, 505, 278, 15130, 304, 1510, 4878, 777, 310, 1009, 1556, 5972, 9316, 29889, 1152, 14234, 29088, 350, 3973, 292, 6938, 29892, 278, 1741, 674, 2367, 278, 6577, 2710, 263, 8825, 304, 1018, 1009, 716, 5641, 29909, 29892, 12487, 4971, 1507, 29889, 13, 29943, 2952, 3412, 15243, 523, 515, 29871, 29945, 785, 29871, 29955, 282, 29889, 29885, 29889, 304, 1284, 714, 607, 2078, 556, 29891, 21614, 372, 599, 29991, 13, 29911, 1092, 820, 449, 670, 29871, 29896, 29941, 2440, 297, 278, 25167, 29892, 4642, 350, 6090, 2734, 1250, 498, 332, 1171, 5569, 471, 14831, 3196, 3064, 363, 670, 14231, 373, 278, 1746, 29889, 530, 7112, 2556, 4509, 310, 278, 10504, 1570, 3088, 7881, 29892, 278, 6573, 310, 383, 4183, 756, 884, 1754, 263, 1024, 363, 3654, 1283, 278, 1746, 29889, 13, 1349, 18902, 756, 1063, 4629, 304, 7150, 278, 5682, 4135, 310, 6692, 7526, 373, 28728, 29892, 2864, 29889, 29871, 29896, 29947, 472, 15981, 351, 2518, 3014, 29915, 29879, 7178, 29915, 29879, 360, 3993, 472, 278, 5811, 13273, 15981, 351, 2518, 2538, 441, 322, 6960, 1789, 29889, 940, 471, 10434, 2729, 373, 670, 7572, 9063, 358, 304, 16330, 278, 7881, 29889, 13, 1349, 18902, 322, 263, 2318, 310, 916, 4207, 487, 267, 674, 367, 24084, 3192, 2645, 278, 17803, 29892, 607, 16410, 472, 29871, 29953, 282, 29889, 29885, 29889, 1019, 3947, 29879, 515, 278, 11005, 674, 14169, 278, 16372, 29915, 29879, 21344, 3527, 11104, 29889, 13, 2831, 901, 2472, 373, 920, 304, 20590, 16892, 1691, 304, 278, 17803, 29892, 3113, 6493, 1244, 29889, 13, 3047, 9826, 29915, 29879, 7475, 13561, 491, 350, 6090, 3815, 7178, 4719, 1771, 9214, 393, 278, 4402, 674, 367, 3240, 8491, 18885, 7075, 29915, 29879, 1939, 29889, 29871, 29955, 29947, 297, 263, 8870, 615, 603, 25672, 472, 278, 350, 6090, 3271, 1015, 759, 29892, 540, 471, 18180, 4433, 1048, 3692, 498, 332, 1171, 5569, 29915, 1939, 29889, 29871, 29941, 29946, 1033, 367, 2446, 297, 1196, 29889, 13, 7341, 1286, 871, 8507, 21872, 29915, 29879, 1939, 29889, 29871, 29896, 29906, 338, 16528, 29889, 7075, 29915, 29879, 29871, 29955, 29947, 674, 1101, 297, 3839, 29889, 5569, 10083, 5517, 304, 1101, 4720, 1156, 29889, 13, 29933, 6090, 16723, 11182, 7870, 4052, 28080, 338, 18055, 670, 1473, 4259, 411, 22274, 7003, 373, 390, 735, 20916, 29915, 29879, 13925, 29889, 3600, 29871, 29896, 29941, 29899, 6360, 8743, 6413, 471, 12141, 287, 491, 263, 5670, 27207, 3611, 411, 278, 3087, 8970, 29871, 29946, 29929, 414, 297, 29871, 29896, 29929, 29929, 29945, 29889, 4052, 28080, 8794, 408, 263, 3889, 10823, 411, 3087, 1352, 297, 29871, 29896, 29929, 29929, 29941, 29892, 263, 4337, 393, 1795, 451, 505, 9559, 892, 372, 451, 363, 263, 3058, 3748, 278, 29871, 29946, 29929, 414, 750, 5318, 263, 4259, 7536, 2750, 278, 22274, 7003, 350, 6090, 29889, 13, 797, 29871, 29896, 29929, 29929, 29906, 278, 350, 6090, 322, 29871, 29946, 29929, 414, 1539, 4688, 297, 278, 4259, 297, 278, 1286, 13834, 525, 3782, 349, 1657, 29915, 3748, 2113, 491, 22274, 7003, 29871, 29941, 29946, 29899, 29941, 29896, 29889, 14832, 278, 27960, 414, 750, 263, 3390, 519, 26406, 393, 26642, 29871, 29896, 29945, 386, 297, 278, 25167, 29892, 3087, 1352, 471, 29871, 29906, 29953, 386, 297, 1209, 26406, 322, 29871, 29906, 29946, 386, 297, 1006, 1441, 29879, 29889, 1126, 297, 263, 540, 630, 10188, 8175, 411, 278, 27043, 21638, 833, 952, 363, 405, 8610, 22747, 29885, 4135, 29892, 278, 29871, 29946, 29929, 414, 892, 3063, 363, 3889, 10823, 1371, 297, 278, 16723, 29889, 13, 27297, 28080, 29892, 1058, 471, 263, 29715, 9160, 19016, 3889, 10823, 29892, 471, 2183, 263, 5320, 29899, 6360, 8078, 5957, 7088, 4802, 6909, 472, 278, 931, 3255, 29896, 29906, 29889, 29955, 29945, 29924, 467, 4052, 28080, 1339, 17180, 372, 2360, 723, 29915, 345, 9559, 892, 372, 451, 363, 278, 350, 6090, 29899, 29946, 29929, 414, 525, 1217, 11978, 29915, 3748, 988, 278, 26406, 471, 1661, 29899, 735, 9696, 29889, 13, 29908, 5618, 2355, 592, 304, 3087, 8970, 408, 263, 3889, 10823, 471, 1009, 817, 363, 822, 6270, 1371, 1699, 4052, 28080, 5429, 22274, 284, 711, 6090, 29889, 510, 29889, 376, 22509, 8970, 12520, 592, 263, 5051, 1781, 5376, 1363, 896, 5318, 393, 3748, 785, 322, 306, 24867, 304, 8507, 21872, 322, 498, 332, 1171, 5569, 1048, 445, 785, 896, 5318, 263, 3748, 2750, 278, 22274, 7003, 350, 6090, 297, 29871, 29896, 29929, 29929, 29906, 322, 727, 892, 694, 6035, 1372, 29889, 13, 27297, 28080, 750, 263, 13925, 310, 4802, 2983, 393, 540, 5318, 1090, 472, 278, 931, 29889, 13, 1349, 332, 1171, 5569, 8772, 278, 3082, 360, 1466, 29891, 7993, 373, 3839, 29871, 29906, 299, 304, 7945, 29871, 29896, 29900, 29900, 22274, 7003, 4412, 4523, 7457, 9128, 9793, 27335, 373, 278, 25167, 383, 4375, 29954, 8914, 1824, 408, 263, 760, 310, 278, 383, 2491, 5020, 1763, 7412, 29871, 29953, 29900, 14511, 1230, 29889, 450, 6694, 29892, 17791, 472, 4412, 7906, 943, 5057, 4523, 297, 22274, 7003, 29892, 471, 17791, 491, 24972, 3301, 29923, 6813, 322, 7199, 3368, 310, 278, 27335, 6509, 920, 304, 1065, 278, 25167, 383, 4375, 29954, 16256, 12906, 398, 297, 1009, 770, 8345, 29889, 13, 29928, 3864, 278, 25167, 360, 4154, 29892, 11444, 7197, 514, 322, 4045, 9326, 278, 1473, 1629, 310, 4978, 363, 376, 29943, 2491, 5020, 304 ]
1,024
C4
0.109606
-0.642409
1.073362
-0.270936
Play 60 NFL FLAG Essentials Kits" in 2015 to physical education teachers across the country. Buffalo was 1 of 10 NFL markets selected to receive NFL FLAG Football Essentials kits and will receive 46 kits that will be distributed to all of the Buffalo Public elementary schools. These NFL FLAG Essentials Kits will help increase students' physical activity in-school and at home through a package of equipment, curriculum, online training, and recognition. NFL, USA Football, and Fuel Up to Play 60 are expanding their commitment to youth health and wellness by giving NFL FLAG Essentials Kits to over one million students across 2,500 schools nationwide for the 2015-16 school year. For those that haven't seen it yet, here's the Rex Ryan Sports Illustrated cover with Bills Hall of Famers Jim Kelly and Thurman Thomas. It's a regional cover, not a national cover for the magazine to go along with the story by Jenny Vrentas. With so much positive news packed into one week for Bills fans, the 73-thousand plus at Ralph Wilson Stadium Sunday were just hoping the team would cap the week with a win. Doug Marrone's men obliged taking a day when the man who founded the franchise was honored, and two of the team's most famous alumni presented the late Hall of Fame owner's wife, Mary Wilson, with an honorary Wall of Fame ring. That combined with the Pegula agreement to purchase the franchise and keep it in Western New York brought the week to a fitting conclusion. When asked what Mr. Wilson might've thought of the performance Sunday, Brandon believed his former boss would've loved it. He played in Buffalo, coached in Buffalo, and made many friends along the way. Tonight, former Bills QB Alex Van Pelt joins us on The John Murphy Show. Van Pelt just wrapped up his first year as the Running Backs Coach for the Green Bay Packers, after two years before that with Tampa Bay. The Pack saw their season end with their divisional round playoff loss in San Francisco last Saturday night. Tonight, Alex Van Pelt joins us at 720pm and we'll ask about the Packers season, and about the injury-plagued season of Niagara Falls native James Starks, a Green Bay running back. We'll also get Alex's take on the Bills new Offensive Coordinator Nathaniel Hackett. Van Pelt and Hackett worked closely together in 2008-09 when both were members of the Bills offensive coaching staff. Hall of Fame running back Thurman Thomas joins us in studio at 8pm for his usual weekly visit. Thurman always has fresh and original takes on the Bills and the NFL. And at 820pm, another former Bills player, Bucky Brooks, will be on the line with us from the East-West Shrine Game in St Petersburg, Florida. Brooks was Buffalo's 2nd round draft pick in 1994 out of North Carolina. Since his playing days ended, he's become a personnel man in the NFL, working with the Seahawks and Panthers. And for the last few years, he's become a draft expert for the NFL Network and NFL.com. We'll ask Bucky about the prospects in the upcoming draft. We always have time for phone calls and comments from listeners. The John Murphy Show airs weeknights from 7pm-9pm on the flagship station of the Bills, WGR Sports Radio 550. It's the big news of the day at One Bills Drive, the multi-year contract extension signed by guard Kraig Urbik. It's a great story. Urbik was claimed off waivers by the Bills in September, 2010, after washing out as a third round draft pick in Pittsburgh. We'll talk with Urbik tonight on The John Murphy Show tonight. He joins us at 7:20pm to address the slow start to his NFL career, and moving forward with what he believes are a core group of players on the Bills offense. At 8pm tonight, Hall of Fame RB Thurman Thomas joins us for his usual Tuesday night appearance. C.J. Spiller continues to climb up the Bills rushing charts, and we'll check in
[ 7412, 29871, 29953, 29900, 25167, 383, 4375, 29954, 11044, 9409, 476, 1169, 29908, 297, 29871, 29906, 29900, 29896, 29945, 304, 9128, 9793, 27335, 4822, 278, 4234, 29889, 13, 29933, 3096, 7003, 471, 29871, 29896, 310, 29871, 29896, 29900, 25167, 2791, 1691, 4629, 304, 7150, 25167, 383, 4375, 29954, 8914, 11044, 9409, 413, 1169, 322, 674, 7150, 29871, 29946, 29953, 413, 1169, 393, 674, 367, 13235, 304, 599, 310, 278, 22274, 7003, 5236, 22470, 12462, 29889, 13, 1349, 968, 25167, 383, 4375, 29954, 11044, 9409, 476, 1169, 674, 1371, 7910, 8041, 29915, 9128, 6354, 297, 29899, 27041, 322, 472, 3271, 1549, 263, 3577, 310, 21083, 29892, 16256, 12906, 398, 29892, 7395, 6694, 29892, 322, 19679, 29889, 13, 29940, 10536, 29892, 8278, 8914, 29892, 322, 383, 2491, 5020, 304, 7412, 29871, 29953, 29900, 526, 7985, 292, 1009, 9063, 358, 304, 12397, 9045, 322, 1532, 2264, 491, 6820, 25167, 383, 4375, 29954, 11044, 9409, 476, 1169, 304, 975, 697, 7284, 8041, 4822, 29871, 29906, 29892, 29945, 29900, 29900, 12462, 5233, 8157, 363, 278, 29871, 29906, 29900, 29896, 29945, 29899, 29896, 29953, 3762, 1629, 29889, 13, 2831, 1906, 393, 7359, 29915, 29873, 3595, 372, 3447, 29892, 1244, 29915, 29879, 278, 390, 735, 20916, 12453, 28070, 630, 4612, 411, 350, 6090, 6573, 310, 27458, 414, 8507, 21872, 322, 498, 332, 1171, 5569, 29889, 13, 3112, 29915, 29879, 263, 14014, 4612, 29892, 451, 263, 4797, 4612, 363, 278, 14853, 304, 748, 3412, 411, 278, 5828, 491, 21116, 1460, 478, 7771, 294, 29889, 13, 3047, 577, 1568, 6374, 9763, 4870, 287, 964, 697, 4723, 363, 350, 6090, 24909, 29892, 278, 29871, 29955, 29941, 29899, 386, 681, 392, 2298, 472, 23438, 13015, 17213, 16340, 892, 925, 17231, 278, 3815, 723, 2117, 278, 4723, 411, 263, 5401, 29889, 13215, 1085, 29878, 650, 29915, 29879, 1757, 24474, 5622, 263, 2462, 746, 278, 767, 1058, 11091, 278, 23272, 895, 471, 4207, 4395, 29892, 322, 1023, 310, 278, 3815, 29915, 29879, 1556, 13834, 394, 1227, 29875, 9132, 278, 5683, 6573, 310, 21808, 12271, 29915, 29879, 6532, 29892, 6182, 13015, 29892, 411, 385, 10657, 653, 14406, 310, 21808, 9228, 29889, 2193, 12420, 411, 278, 27281, 2497, 17327, 304, 20590, 278, 23272, 895, 322, 3013, 372, 297, 10504, 1570, 3088, 6296, 278, 4723, 304, 263, 28221, 15997, 29889, 13, 10401, 4433, 825, 3237, 29889, 13015, 1795, 29915, 345, 2714, 310, 278, 4180, 16340, 29892, 1771, 9214, 13112, 670, 4642, 289, 2209, 723, 29915, 345, 18012, 372, 29889, 13, 3868, 5318, 297, 22274, 7003, 29892, 1302, 3791, 297, 22274, 7003, 29892, 322, 1754, 1784, 7875, 3412, 278, 982, 29889, 17812, 523, 29892, 4642, 350, 6090, 660, 29933, 4827, 6556, 349, 2152, 26205, 502, 373, 450, 2259, 7487, 11461, 7704, 29889, 13, 29963, 273, 349, 2152, 925, 21021, 701, 670, 937, 1629, 408, 278, 19509, 7437, 29879, 3189, 496, 363, 278, 7646, 6211, 18744, 414, 29892, 1156, 1023, 2440, 1434, 393, 411, 323, 20056, 6211, 29889, 450, 18744, 4446, 1009, 4259, 1095, 411, 1009, 8572, 1848, 4513, 1708, 2696, 6410, 297, 3087, 8970, 1833, 24211, 4646, 29889, 13, 29911, 265, 523, 29892, 4827, 6556, 349, 2152, 26205, 502, 472, 29871, 29955, 29906, 29900, 3358, 322, 591, 29915, 645, 2244, 1048, 278, 18744, 414, 4259, 29892, 322, 1048, 278, 24092, 29899, 572, 351, 6742, 4259, 310, 15981, 351, 2518, 383, 4293, 7531, 5011, 624, 17862, 29892, 263, 7646, 6211, 2734, 1250, 29889, 1334, 29915, 645, 884, 679, 4827, 29915, 29879, 2125, 373, 278, 350, 6090, 716, 5947, 6270, 3189, 4194, 1061, 27650, 709, 379, 547, 1803, 29889, 6556, 349, 2152, 322, 379, 547, 1803, 3796, 16467, 4208, 297, 29871, 29906, 29900, 29900, 29947, 29899, 29900, 29929, 746, 1716, 892, 5144, 310, 278, 350, 6090, 1283, 6270, 1302, 9733, 13925, 29889, 13, 29950, 497, 310, 21808, 2734, 1250, 498, 332, 1171, 5569, 26205, 502, 297, 8693, 472, 29871, 29947, 3358, 363, 670, 9670, 4723, 368, 6493, 29889, 498, 332, 1171, 2337, 756, 10849, 322, 2441, 4893, 373, 278, 350, 6090, 322, 278, 25167, 29889, 13, 2855, 472, 29871, 29947, 29906, 29900, 3358, 29892, 1790, 4642, 350, 6090, 4847, 29892, 350, 14395, 4358, 12117, 29892, 674, 367, 373, 278, 1196, 411, 502, 515, 278, 6932, 29899, 16128, 317, 1092, 457, 8448, 297, 624, 29675, 29892, 13813, 29889, 4358, 12117, 471, 22274, 7003, 29915, 29879, 29871, 29906, 299, 4513, 18195, 5839, 297, 29871, 29896, 29929, 29929, 29946, 714, 310, 4644, 13397, 29889, 4001, 670, 8743, 3841, 9698, 29892, 540, 29915, 29879, 4953, 263, 24127, 767, 297, 278, 25167, 29892, 1985, 411, 278, 922, 801, 1450, 2039, 322, 6518, 3341, 29889, 1126, 363, 278, 1833, 2846, 2440, 29892, 540, 29915, 29879, 4953, 263, 18195, 17924, 363, 278, 25167, 8527, 322, 25167, 29889, 510, 29889, 1334, 29915, 645, 2244, 350, 14395, 1048, 278, 27289, 29879, 297, 278, 701, 11506, 18195, 29889, 13, 4806, 2337, 505, 931, 363, 9008, 5717, 322, 6589, 515, 11621, 414, 29889, 450, 2259, 7487, 11461, 7704, 4799, 29879, 4723, 29876, 5861, 515, 29871, 29955, 3358, 29899, 29929, 3358, 373, 278, 13449, 4034, 5073, 310, 278, 350, 6090, 29892, 399, 14345, 12453, 9204, 29871, 29945, 29945, 29900, 29889, 13, 3112, 29915, 29879, 278, 4802, 9763, 310, 278, 2462, 472, 3118, 350, 6090, 22850, 29892, 278, 2473, 29899, 6360, 8078, 6081, 8794, 491, 8372, 19387, 335, 501, 6050, 638, 29889, 739, 29915, 29879, 263, 2107, 5828, 29889, 501, 6050, 638, 471, 17049, 1283, 11324, 1536, 491, 278, 350, 6090, 297, 3839, 29892, 29871, 29906, 29900, 29896, 29900, 29892, 1156, 471, 2790, 714, 408, 263, 4654, 4513, 18195, 5839, 297, 27150, 13903, 29889, 1334, 29915, 645, 5193, 411, 501, 6050, 638, 15243, 523, 373, 450, 2259, 7487, 11461, 7704, 15243, 523, 29889, 940, 26205, 502, 472, 29871, 29955, 29901, 29906, 29900, 3358, 304, 3211, 278, 5232, 1369, 304, 670, 25167, 6413, 29892, 322, 8401, 6375, 411, 825, 540, 1339, 17180, 526, 263, 7136, 2318, 310, 10769, 373, 278, 350, 6090, 1283, 1947, 29889, 13, 4178, 29871, 29947, 3358, 15243, 523, 29892, 6573, 310, 21808, 390, 29933, 498, 332, 1171, 5569, 26205, 502, 363, 670, 9670, 323, 1041, 3250, 4646, 10097, 29889, 315, 29889, 29967, 29889, 1706, 5495, 18172, 304, 10784, 29890, 701, 278, 350, 6090, 364, 21616, 24469, 29892, 322, 591, 29915, 645, 1423, 297 ]
1,024
C4
-0.324954
-1.055753
0.112194
-0.501144
with Thurman for his take on Spiller and the loss in Toronto two days ago. There's a new book about the NFL called "Coaching Confidential-Inside the Fraternity of NFL Coaches." Longtime Pro Football writer Gary Myers of the NY Daily News is the author, and he'll join us live at 8:20 tonight to talk about the book, and the circus that is the New York Jets. As always, we'll cover the news of the day from One Bills Drive, and we'll make time for phone calls from fans. We've got quite a lineup tonight on The John Murphy Show, as the Bills prep for their appearance in the prime time spotlight Thursday night. We'll start with Quarterback Ryan Fitzpatrick at 7:20pm. We'll talk to Fitz about the uptick in offensive production in recent weeks, and the disappointing end to the Patriots game last Sunday. We'll also look ahead to the game against the Dolphins Thursday. At 8pm, Hall of Fame Running Back Thurman Thomas makes his usual Tuesday night appearance in studio with us. Thurman played for both the Bills and the Dolphins during his NFL career. At 8:20pm, we'll talk to another Hall of Famer. Former Dolphins Quarterback Bob Griese joins us live from South Florida, where he's the color commentator on the Dolphins radio network. He's also the co-author of a new book celebrating the 40th anniversary of Miami's perfect season. The book is called "Perfection: the Inside Story of the 1972 Miami Dolphins Perfect Season." We'll ask Griese about his memories from that season, and what to expect from the Dolphins this week at Ralph Wilson Stadium. As usual, we'll take your phone calls and have updates on the latest from the Bills and the NFL. Players day off–coaches day on at One Bills Drive. We'll start talking about the matchup with the Houston Texans tonight on The John Murphy show. Bills running back Fred Jackson joins us in studio at 7:20pm. We'll talk to Fred about the benefits of the bye week, his struggle coming back from his opening day knee injury, and sharing the running game workload with his talented teammate C.J. Spiller. Hall of Fame running back Thurman Thomas joins us live in studio at 8pm. Thurman makes his regular Tuesday night appearance, and tonight we'll get his take on the Bills after the bye week. And we'll go back into the Bills past at 8:20pm when former punter Chris Mohr joins us live on the line from his home in Georgia. Mohr will be back in Buffalo in early December when he's presented with the Ralph C. Wilson, Jr. Distinguished Service Award. As always, we'll cover the news of the day from the Bills and the NFL, and we'll make time for your phone calls. Fred Jackson has quickly climbed the ladder of best total yards from scrimmage seasons in Bills history this season. Heading into Sunday's game against Washington he sat 8th all time among Bills all-time scrimmage yard leaders. Following his 194-yard effort he vaulted himself into second. In games 1-7 in any Bills season, O.J. Simpson is still the leader with 1,106 yards from scrimage in 1975. But Fred Jackson has bested Simpson's start to his 1973 season when he compiled 1,073 yards in the first seven games. Jackson has 1,074 yards from scrimmage in his first seven games this season putting him in between Simpson's two most productive years in a Bills uniform. Thurman Thomas' MVP season of 1991 (1,032 yards) now stands fourth. Fred Jackson is ranking high on another Bills team list with his big 196-yard effort Sunday, in addition to being among the league leaders in total yards from scrimmage. Jackson's 712 yards from scrimmage through the first five games of 2011 are the fourth-most in team history. He's the first player with 700 or more yards from scrimmage in Games
[ 411, 498, 332, 1171, 363, 670, 2125, 373, 1706, 5495, 322, 278, 6410, 297, 17612, 1023, 3841, 8020, 29889, 13, 8439, 29915, 29879, 263, 716, 3143, 1048, 278, 25167, 2000, 376, 7967, 9733, 10811, 1693, 616, 29899, 797, 2975, 278, 383, 3605, 824, 537, 310, 25167, 3189, 14520, 1213, 6242, 2230, 1019, 8914, 9227, 23529, 1619, 414, 310, 278, 23526, 23331, 10130, 338, 278, 4148, 29892, 322, 540, 29915, 645, 5988, 502, 5735, 472, 29871, 29947, 29901, 29906, 29900, 15243, 523, 304, 5193, 1048, 278, 3143, 29892, 322, 278, 3449, 375, 393, 338, 278, 1570, 3088, 435, 1691, 29889, 13, 2887, 2337, 29892, 591, 29915, 645, 4612, 278, 9763, 310, 278, 2462, 515, 3118, 350, 6090, 22850, 29892, 322, 591, 29915, 645, 1207, 931, 363, 9008, 5717, 515, 24909, 29889, 13, 4806, 29915, 345, 2355, 3755, 263, 1196, 786, 15243, 523, 373, 450, 2259, 7487, 11461, 7704, 29892, 408, 278, 350, 6090, 8273, 363, 1009, 10097, 297, 278, 6019, 931, 9758, 4366, 498, 1295, 3250, 4646, 29889, 13, 4806, 29915, 645, 1369, 411, 751, 4254, 1627, 20916, 22963, 5031, 9131, 472, 29871, 29955, 29901, 29906, 29900, 3358, 29889, 1334, 29915, 645, 5193, 304, 22963, 1048, 278, 318, 415, 860, 297, 1283, 6270, 5802, 297, 7786, 11405, 29892, 322, 278, 23451, 292, 1095, 304, 278, 23168, 1862, 3748, 1833, 16340, 29889, 1334, 29915, 645, 884, 1106, 14432, 304, 278, 3748, 2750, 278, 11201, 561, 1144, 498, 1295, 3250, 29889, 13, 4178, 29871, 29947, 3358, 29892, 6573, 310, 21808, 19509, 7437, 498, 332, 1171, 5569, 3732, 670, 9670, 323, 1041, 3250, 4646, 10097, 297, 8693, 411, 502, 29889, 498, 332, 1171, 5318, 363, 1716, 278, 350, 6090, 322, 278, 11201, 561, 1144, 2645, 670, 25167, 6413, 29889, 13, 4178, 29871, 29947, 29901, 29906, 29900, 3358, 29892, 591, 29915, 645, 5193, 304, 1790, 6573, 310, 383, 4183, 29889, 3812, 261, 11201, 561, 1144, 751, 4254, 1627, 7991, 402, 374, 968, 26205, 502, 5735, 515, 4275, 13813, 29892, 988, 540, 29915, 29879, 278, 2927, 3440, 1061, 373, 278, 11201, 561, 1144, 7155, 3564, 29889, 940, 29915, 29879, 884, 278, 1302, 29899, 8921, 310, 263, 716, 3143, 10894, 1218, 278, 29871, 29946, 29900, 386, 6957, 27547, 310, 23740, 29915, 29879, 4922, 4259, 29889, 450, 3143, 338, 2000, 376, 5894, 20309, 29901, 278, 22804, 13740, 310, 278, 29871, 29896, 29929, 29955, 29906, 23740, 11201, 561, 1144, 2431, 3647, 24791, 1213, 1334, 29915, 645, 2244, 402, 374, 968, 1048, 670, 2626, 3842, 515, 393, 4259, 29892, 322, 825, 304, 2149, 515, 278, 11201, 561, 1144, 445, 4723, 472, 23438, 13015, 17213, 29889, 13, 2887, 9670, 29892, 591, 29915, 645, 2125, 596, 9008, 5717, 322, 505, 11217, 373, 278, 9281, 515, 278, 350, 6090, 322, 278, 25167, 29889, 13, 13454, 414, 2462, 1283, 29994, 1111, 14520, 2462, 373, 472, 3118, 350, 6090, 22850, 29889, 1334, 29915, 645, 1369, 9963, 1048, 278, 1993, 786, 411, 278, 24327, 8490, 550, 15243, 523, 373, 450, 2259, 7487, 11461, 1510, 29889, 13, 29933, 6090, 2734, 1250, 12001, 11886, 26205, 502, 297, 8693, 472, 29871, 29955, 29901, 29906, 29900, 3358, 29889, 1334, 29915, 645, 5193, 304, 12001, 1048, 278, 23633, 310, 278, 491, 29872, 4723, 29892, 670, 21117, 6421, 1250, 515, 670, 8718, 2462, 17905, 29872, 24092, 29892, 322, 19383, 278, 2734, 3748, 664, 1359, 411, 670, 5969, 14927, 3815, 25046, 315, 29889, 29967, 29889, 1706, 5495, 29889, 13, 29950, 497, 310, 21808, 2734, 1250, 498, 332, 1171, 5569, 26205, 502, 5735, 297, 8693, 472, 29871, 29947, 3358, 29889, 498, 332, 1171, 3732, 670, 4943, 323, 1041, 3250, 4646, 10097, 29892, 322, 15243, 523, 591, 29915, 645, 679, 670, 2125, 373, 278, 350, 6090, 1156, 278, 491, 29872, 4723, 29889, 13, 2855, 591, 29915, 645, 748, 1250, 964, 278, 350, 6090, 4940, 472, 29871, 29947, 29901, 29906, 29900, 3358, 746, 4642, 6035, 357, 12821, 4546, 1092, 26205, 502, 5735, 373, 278, 1196, 515, 670, 3271, 297, 16762, 29889, 4546, 1092, 674, 367, 1250, 297, 22274, 7003, 297, 4688, 5846, 746, 540, 29915, 29879, 9132, 411, 278, 23438, 315, 29889, 13015, 29892, 13843, 29889, 6652, 6202, 3276, 6692, 7526, 29889, 13, 2887, 2337, 29892, 591, 29915, 645, 4612, 278, 9763, 310, 278, 2462, 515, 278, 350, 6090, 322, 278, 25167, 29892, 322, 591, 29915, 645, 1207, 931, 363, 596, 9008, 5717, 29889, 13, 29943, 1127, 11886, 756, 9098, 10784, 2580, 278, 11979, 672, 310, 1900, 3001, 17454, 515, 885, 5632, 29885, 482, 20084, 297, 350, 6090, 4955, 445, 4259, 29889, 940, 9382, 964, 16340, 29915, 29879, 3748, 2750, 7660, 540, 3290, 29871, 29947, 386, 599, 931, 4249, 350, 6090, 599, 29899, 2230, 885, 5632, 29885, 482, 29413, 20251, 29889, 12206, 670, 29871, 29896, 29929, 29946, 29899, 19852, 7225, 540, 325, 1292, 287, 3654, 964, 1473, 29889, 13, 797, 8090, 29871, 29896, 29899, 29955, 297, 738, 350, 6090, 4259, 29892, 438, 29889, 29967, 29889, 3439, 11869, 338, 1603, 278, 11822, 411, 29871, 29896, 29892, 29896, 29900, 29953, 17454, 515, 14387, 3027, 297, 29871, 29896, 29929, 29955, 29945, 29889, 1205, 12001, 11886, 756, 1900, 287, 3439, 11869, 29915, 29879, 1369, 304, 670, 29871, 29896, 29929, 29955, 29941, 4259, 746, 540, 13126, 29871, 29896, 29892, 29900, 29955, 29941, 17454, 297, 278, 937, 9881, 8090, 29889, 13, 27006, 1100, 756, 29871, 29896, 29892, 29900, 29955, 29946, 17454, 515, 885, 5632, 29885, 482, 297, 670, 937, 9881, 8090, 445, 4259, 10594, 1075, 297, 1546, 3439, 11869, 29915, 29879, 1023, 1556, 3234, 573, 2440, 297, 263, 350, 6090, 9090, 29889, 498, 332, 1171, 5569, 29915, 341, 18510, 4259, 310, 29871, 29896, 29929, 29929, 29896, 313, 29896, 29892, 29900, 29941, 29906, 17454, 29897, 1286, 15028, 11582, 29889, 13, 29943, 1127, 11886, 338, 24034, 1880, 373, 1790, 350, 6090, 3815, 1051, 411, 670, 4802, 29871, 29896, 29929, 29953, 29899, 19852, 7225, 16340, 29892, 297, 6124, 304, 1641, 4249, 278, 13225, 20251, 297, 3001, 17454, 515, 885, 5632, 29885, 482, 29889, 13, 27006, 1100, 29915, 29879, 29871, 29955, 29896, 29906, 17454, 515, 885, 5632, 29885, 482, 1549, 278, 937, 5320, 8090, 310, 29871, 29906, 29900, 29896, 29896, 526, 278, 11582, 29899, 3242, 297, 3815, 4955, 29889, 940, 29915, 29879, 278, 937, 4847, 411, 29871, 29955, 29900, 29900, 470, 901, 17454, 515, 885, 5632, 29885, 482, 297, 12482 ]
1,024
C4
-0.333445
-0.929868
0.322001
-0.633126
Reflections on the 50th Anniversary of the Brown Decision by Pedro A. Noguera and Robert Cohen Pedro Noguera. Photo by Nic Paget-Clarke. As the 50th anniversary of the Brown v. Board of Education decision approaches, how should the nation commemorate this historic school desegregation decision? We could celebrate this decision for outlawing apartheid in public education and establishing a precedent for ending racial segregation in other areas of American society. Or, perhaps more realistically, we could reflect upon the Court's vagueness about enforcing this decision -- its offering the odd term "all deliberate speed" in place of a real timetable for school desegregation. With this phrasing, we can see that imprecision as the first of many evasions that even liberal whites made when it came to translating Brown into educational policy. The legacy of this history of avoidance and delay has left our public schools so segregated (though on a de facto rather than de jure basis) that there are good grounds for questioning whether there is much to celebrate on Brown's 50th. New York City's public schools serve as an excellent example. At first glance they appear to be among the most diverse in the world. Over 100 different languages and cultures are represented among the 1.1 million students, and over a third are either foreign-born or the children of newly arrived immigrants. But a closer look reveals that the ghost of Jim Crow lingers even amidst this multicultural mosaic. More than 73 percent of the city's schools are virtually segregated. Approximately 900 schools have student populations that are 80 to 100 percent African American, Latino or both. The schools are segregated by income as well as race. In the vast majority of these schools, more than 85 percent of the students qualify for free or reduced priced lunch. Although over 40 percent of New Yorkers are white, only 15.3 percent of the students enrolled in its public schools are U.S.-born whites. Much of America shares with New York this pattern of profound race and class isolation. Even the sites of some of the most famous victories for school desegregation, such as Little Rock's Central High, have -- because of white flight -- re-segregated. In the 1990s the proportion of black students attending all-minority schools rose from 33 percent to 37 percent and in the South the proportion of black students enrolled in white majority schools plummeted from 44 percent to 33 percent. Disturbingly, Latinos, who now comprise the fastest growing ethnic group in the nation, are now more likely to be segregated than any other group. Unlike 50 years ago, when there was a growing sense that racial integration was a moral goal worth pursuing, today that optimism has vanished, and segregation in our schools and elsewhere is accepted as an unavoidable feature of life in America. The President's No Child Left Behind law contains no plan to support racial integration or to further equity among poor and affluent schools. Even Democrats and other liberal critics of this law have said nothing about its failure to deal with the persistence and expansion of de facto segregation in America's schools. Thus one way to truly honor Brown may be to challenge the left and right sides of the American educational debate to stop running away from the issue of school segregation. A second way to commemorate Brown would be to honor those few school districts that are still trying to make school desegregation work, such as the 21 districts in the Minority Student Achievement Network. These school districts have defied national trends and remain racially and socio-economically integrated. Though challenged by a variety of equity issues and a persistent achievement gap, such districts serve as an example for what might have been if we had the leadership and resolve to realize the goals of Brown. Though far from perfect, such districts show us that one of the most important benefits of integration is the presence of middle-class parents who utilize their political clout to advocate for resources that benefit all students and students who are better prepared to handle the challenges of living in a diverse society because of the education they received. We can also honor Brown by revisiting the issue of integration in communities of color. Many Black and Latino communities gave up long ago on school integration because of white resistance to bussing
[ 9897, 5942, 373, 278, 29871, 29945, 29900, 386, 530, 1240, 27547, 13, 974, 278, 9817, 3826, 2459, 13, 1609, 13286, 319, 29889, 405, 468, 29884, 1572, 322, 4755, 315, 14899, 13, 29925, 287, 307, 405, 468, 29884, 1572, 29889, 1963, 3747, 491, 13656, 349, 26084, 29899, 29907, 4675, 446, 29889, 13, 2887, 278, 29871, 29945, 29900, 386, 6957, 27547, 310, 278, 9817, 325, 29889, 12590, 310, 13151, 10608, 13501, 29892, 920, 881, 278, 5233, 844, 28927, 403, 445, 22879, 3762, 553, 387, 1727, 362, 10608, 29973, 1334, 1033, 10894, 403, 445, 10608, 363, 714, 10653, 292, 12435, 9722, 297, 970, 9793, 322, 10127, 292, 263, 9399, 296, 363, 17140, 1153, 1455, 2377, 1727, 362, 297, 916, 10161, 310, 3082, 12459, 29889, 1394, 29892, 6060, 901, 1855, 391, 1711, 29892, 591, 1033, 9432, 2501, 278, 9245, 29915, 29879, 325, 351, 3837, 404, 1048, 24555, 3277, 445, 10608, 1192, 967, 27032, 278, 7736, 1840, 376, 497, 23663, 403, 6210, 29908, 297, 2058, 310, 263, 1855, 5335, 300, 519, 363, 3762, 553, 387, 1727, 362, 29889, 2973, 445, 12216, 5832, 29892, 591, 508, 1074, 393, 527, 17990, 2459, 408, 278, 937, 310, 1784, 3415, 294, 1080, 393, 1584, 26054, 18960, 1754, 746, 372, 2996, 304, 5578, 1218, 9817, 964, 28976, 8898, 29889, 13, 1576, 25000, 310, 445, 4955, 310, 4772, 749, 322, 9055, 756, 2175, 1749, 970, 12462, 577, 2377, 1727, 630, 313, 3592, 373, 263, 316, 2114, 29877, 3265, 1135, 316, 432, 545, 8405, 29897, 393, 727, 526, 1781, 25502, 363, 1139, 292, 3692, 727, 338, 1568, 304, 10894, 403, 373, 9817, 29915, 29879, 29871, 29945, 29900, 386, 29889, 1570, 3088, 4412, 29915, 29879, 970, 12462, 9080, 408, 385, 15129, 1342, 29889, 2180, 937, 21798, 896, 2615, 304, 367, 4249, 278, 1556, 16984, 297, 278, 3186, 29889, 6811, 29871, 29896, 29900, 29900, 1422, 10276, 322, 4185, 1973, 526, 9875, 4249, 278, 29871, 29896, 29889, 29896, 7284, 8041, 29892, 322, 975, 263, 4654, 526, 2845, 9117, 29899, 4939, 470, 278, 4344, 310, 15141, 11977, 5198, 4481, 1934, 29889, 13, 6246, 263, 17649, 1106, 10320, 1338, 393, 278, 330, 3069, 310, 8507, 29445, 16850, 414, 1584, 28655, 303, 445, 1773, 3953, 3631, 286, 3628, 293, 29889, 5853, 1135, 29871, 29955, 29941, 10151, 310, 278, 4272, 29915, 29879, 12462, 526, 4610, 1474, 2377, 1727, 630, 29889, 28268, 2657, 2486, 29871, 29929, 29900, 29900, 12462, 505, 8368, 23093, 393, 526, 29871, 29947, 29900, 304, 29871, 29896, 29900, 29900, 10151, 11715, 3082, 29892, 7053, 1789, 470, 1716, 29889, 450, 12462, 526, 2377, 1727, 630, 491, 17869, 408, 1532, 408, 8175, 29889, 512, 278, 13426, 13638, 310, 1438, 12462, 29892, 901, 1135, 29871, 29947, 29945, 10151, 310, 278, 8041, 4021, 1598, 363, 3889, 470, 12212, 544, 7612, 301, 3322, 29889, 8512, 975, 29871, 29946, 29900, 10151, 310, 1570, 3088, 414, 526, 4796, 29892, 871, 29871, 29896, 29945, 29889, 29941, 10151, 310, 278, 8041, 427, 24476, 297, 967, 970, 12462, 526, 501, 29889, 29903, 9229, 4939, 18960, 29889, 13, 29924, 987, 310, 6813, 29358, 411, 1570, 3088, 445, 4766, 310, 2600, 618, 8175, 322, 770, 11695, 362, 29889, 7753, 278, 11840, 310, 777, 310, 278, 1556, 13834, 6879, 3842, 363, 3762, 553, 387, 1727, 362, 29892, 1316, 408, 11143, 8027, 29915, 29879, 8068, 5057, 29892, 505, 1192, 1363, 310, 4796, 16286, 1192, 337, 29899, 344, 7642, 630, 29889, 512, 278, 29871, 29896, 29929, 29929, 29900, 29879, 278, 18618, 310, 4628, 8041, 1098, 2548, 599, 29899, 1195, 272, 537, 12462, 11492, 515, 29871, 29941, 29941, 10151, 304, 29871, 29941, 29955, 10151, 322, 297, 278, 4275, 278, 18618, 310, 4628, 8041, 427, 24476, 297, 4796, 13638, 12462, 715, 398, 2527, 287, 515, 29871, 29946, 29946, 10151, 304, 29871, 29941, 29941, 10151, 29889, 6652, 9265, 11687, 29892, 7053, 8226, 29892, 1058, 1286, 7199, 895, 278, 5172, 342, 15678, 11314, 7823, 2318, 297, 278, 5233, 29892, 526, 1286, 901, 5517, 304, 367, 2377, 1727, 630, 1135, 738, 916, 2318, 29889, 13, 2525, 4561, 29871, 29945, 29900, 2440, 8020, 29892, 746, 727, 471, 263, 15678, 4060, 393, 1153, 1455, 13465, 471, 263, 14731, 7306, 7088, 12359, 26420, 29892, 9826, 393, 5994, 1608, 756, 1109, 3276, 29892, 322, 2377, 1727, 362, 297, 1749, 12462, 322, 17551, 338, 9259, 408, 385, 443, 485, 3398, 519, 4682, 310, 2834, 297, 6813, 29889, 13, 1576, 7178, 29915, 29879, 1939, 10517, 19941, 1522, 16887, 4307, 3743, 694, 3814, 304, 2304, 1153, 1455, 13465, 470, 304, 4340, 1592, 537, 4249, 6460, 322, 2756, 6092, 296, 12462, 29889, 7753, 14189, 1446, 322, 916, 26054, 28431, 310, 445, 4307, 505, 1497, 3078, 1048, 967, 10672, 304, 5376, 411, 278, 3736, 11416, 322, 13184, 310, 316, 2114, 29877, 2377, 1727, 362, 297, 6813, 29915, 29879, 12462, 29889, 6549, 697, 982, 304, 19781, 10657, 9817, 1122, 367, 304, 18766, 278, 2175, 322, 1492, 11192, 310, 278, 3082, 28976, 27836, 304, 5040, 2734, 3448, 515, 278, 2228, 310, 3762, 2377, 1727, 362, 29889, 13, 29909, 1473, 982, 304, 844, 28927, 403, 9817, 723, 367, 304, 10657, 1906, 2846, 3762, 24172, 393, 526, 1603, 1811, 304, 1207, 3762, 553, 387, 1727, 362, 664, 29892, 1316, 408, 278, 29871, 29906, 29896, 24172, 297, 278, 21987, 537, 15740, 15542, 10384, 882, 8527, 29889, 4525, 3762, 24172, 505, 822, 1000, 4797, 534, 1975, 322, 3933, 1153, 5584, 322, 577, 3934, 29899, 29872, 4599, 1711, 23387, 29889, 14832, 18066, 287, 491, 263, 12875, 310, 1592, 537, 5626, 322, 263, 28152, 27012, 882, 17261, 29892, 1316, 24172, 9080, 408, 385, 1342, 363, 825, 1795, 505, 1063, 565, 591, 750, 278, 26001, 322, 8814, 304, 16289, 278, 14433, 310, 9817, 29889, 14832, 2215, 515, 4922, 29892, 1316, 24172, 1510, 502, 393, 697, 310, 278, 1556, 4100, 23633, 310, 13465, 338, 278, 10122, 310, 7256, 29899, 1990, 11825, 1058, 3667, 675, 1009, 8604, 1067, 449, 304, 22545, 403, 363, 7788, 393, 14169, 599, 8041, 322, 8041, 1058, 526, 2253, 13240, 304, 4386, 278, 18066, 267, 310, 8471, 297, 263, 16984, 12459, 1363, 310, 278, 9793, 896, 4520, 29889, 13, 4806, 508, 884, 10657, 9817, 491, 23484, 11407, 278, 2228, 310, 13465, 297, 23507, 310, 2927, 29889, 9267, 6054, 322, 7053, 1789, 23507, 4846, 701, 1472, 8020, 373, 3762, 13465, 1363, 310, 4796, 17711, 304, 289, 1558, 292 ]
1,024
CommonCrawl
1.617405
0.997342
1.510908
2.252493
WCNC.com reports that in a recent study from TRIP our home state of South Carolina ranks as the sixth-worst state in the nation when it comes to highway fatalities. But why are our highways so dangerous? What is the leading case of fatal car accidents in our state? When asked this question state troopers blamed drunk driving, and some sobering statistics agree. According to the Centers for Disease Control and Prevention's Sobering Facts Sheet, 3,870 people were killed in car accidents involving a drunk driver in South Carolina between 2003 and 2012. The facts sheet indicates that this figure is well above the national average. But what can be done to combat drunk driving on our roads? Strategies to reduce or prevent drunk driving typically center around educating the public, holding sobriety checkpoints, and increasing the penalty for driving under the influence (DUI). One option available to South Carolina is to deter drunk driving by imposing harsher penalties for suspected drunk drivers who refuse to submit to a breath-alcohol test when a peace officer requests them to. The United States Supreme Court recently heard a case involving this very topic and upheld several state laws that impose criminal penalties on drivers who refuse to take a breath-alcohol test during DUI stops. The U.S. Supreme Court Approves of Warrantless Breath Tests During DUI Stops According to wistv.com, the U.S. Supreme Court recently heard three cases in which drivers argued that being required to submit to breath- or blood-alcohol tests without a warrant violates the Constitution's Fourth Amendment ban on unreasonable searches and seizures. The Supreme Court ruled that police officers must obtain a search warrant before they can require drivers to take a blood-alcohol test, but that breath-alcohol tests can be required without a warrant because they are less intrusive and, therefore, do not violate the Fourth Amendment. The cases that the Supreme Court heard all involved state laws that criminalized the act of refusing blood and breath alcohol concentration tests during DUI stops. Wistv.com reports that all 50 states currently have laws that allow the state to revoke a driver's license for refusing to submit to drunk driving tests, however, the Supreme Court's ruling affects 11 state laws that take things a step farther by imposing criminal penalties on drivers who refuse such tests. In other words, the Supreme Court has approved of police officers requiring warrantless breath tests during drunk driving stops and upholds state laws that impose criminal penalties for those who refuse. This recent ruling leaves the door open for states like South Carolina who do not currently criminalize such refusals to add increased penalties to their implied consent laws. What Is an 'Implied Consent' Law? When you first applied for your driver's license, chances are that you were so excited to hit the road that you may not have really thought through the ramifications of what you were agreeing to when you signed on the dotted line. Nonetheless, each state has an 'implied consent law' that kicks in when a driver applies for their license. Under an implied consent law, drivers consent to undergoing sobriety tests administered by police officers in the field for the purpose of determining whether or not the driver is impaired by drugs or alcohol. Because licensed drivers have already given their implied consent for field sobriety tests, refusing to submit is illegal if the officer who stopped you reasonably suspects that you are driving under the influence. While the penalty for refusing such a sobriety test varies from state to state, every state allows for the driver's license to be revoked for a specified period of time as punishment. South Carolina's implied consent law, found in S.C. Code § 56-5-2950, notes that a driver who improperly refused a sobriety test for the first time will have his or her driver's license suspended for six months, nine months for a second offense, and one year for a third offense. It should be noted that South Carolina does not impose criminal penalties for refusing a sobriety test; rather, the punishment is simply to suspend your driver's license. For comparison, check out the penalties that some other states can impose on drivers who improperly refuse to take roadside sobriety tests for the first time in their state: Alaska: Up
[ 399, 13778, 29907, 29889, 510, 13676, 393, 297, 263, 7786, 6559, 515, 323, 3960, 29925, 1749, 3271, 2106, 310, 4275, 13397, 27871, 408, 278, 25963, 29899, 13762, 303, 2106, 297, 278, 5233, 746, 372, 5304, 304, 29469, 18409, 1907, 29889, 1205, 2020, 526, 1749, 1880, 1994, 577, 18215, 29973, 1724, 338, 278, 8236, 1206, 310, 18409, 1559, 1035, 16719, 297, 1749, 2106, 29973, 1932, 4433, 445, 1139, 2106, 3147, 459, 414, 1999, 2795, 4192, 2960, 19500, 29892, 322, 777, 577, 495, 292, 13964, 8661, 29889, 7579, 304, 278, 2895, 414, 363, 360, 895, 559, 11264, 322, 4721, 7316, 29915, 29879, 1105, 495, 292, 26748, 29879, 2296, 300, 29892, 29871, 29941, 29892, 29947, 29955, 29900, 2305, 892, 9445, 297, 1559, 1035, 16719, 21677, 263, 4192, 2960, 7156, 297, 4275, 13397, 1546, 29871, 29906, 29900, 29900, 29941, 322, 29871, 29906, 29900, 29896, 29906, 29889, 450, 17099, 9869, 14088, 393, 445, 4377, 338, 1532, 2038, 278, 4797, 6588, 29889, 13, 6246, 825, 508, 367, 2309, 304, 15499, 4192, 2960, 19500, 373, 1749, 25320, 29973, 3767, 1845, 583, 304, 10032, 470, 5557, 4192, 2960, 19500, 12234, 4818, 2820, 6320, 1218, 278, 970, 29892, 13587, 22810, 374, 3305, 1423, 9748, 29892, 322, 10231, 278, 27368, 363, 19500, 1090, 278, 9949, 313, 29928, 3120, 467, 3118, 2984, 3625, 304, 4275, 13397, 338, 304, 270, 1308, 4192, 2960, 19500, 491, 7275, 292, 4023, 845, 261, 6584, 1997, 583, 363, 2858, 6021, 4192, 2960, 18563, 1058, 26506, 304, 9752, 304, 263, 16172, 29899, 284, 1111, 5391, 1243, 746, 263, 10776, 12139, 7274, 963, 304, 29889, 450, 3303, 3900, 22569, 9245, 10325, 6091, 263, 1206, 21677, 445, 1407, 11261, 322, 318, 561, 2495, 3196, 2106, 14243, 393, 2411, 852, 22161, 6584, 1997, 583, 373, 18563, 1058, 26506, 304, 2125, 263, 16172, 29899, 284, 1111, 5391, 1243, 2645, 360, 3120, 17726, 29889, 13, 1576, 501, 29889, 29903, 29889, 22569, 9245, 28268, 1960, 310, 399, 2749, 424, 2222, 5826, 493, 4321, 29879, 7133, 360, 3120, 624, 3554, 13, 7504, 3278, 304, 281, 391, 29894, 29889, 510, 29892, 278, 501, 29889, 29903, 29889, 22569, 9245, 10325, 6091, 2211, 4251, 297, 607, 18563, 28705, 393, 1641, 3734, 304, 9752, 304, 16172, 29899, 470, 10416, 29899, 284, 1111, 5391, 6987, 1728, 263, 1370, 21867, 5537, 1078, 278, 20063, 29915, 29879, 12458, 386, 1913, 355, 358, 9892, 373, 443, 23147, 519, 29645, 322, 409, 466, 1973, 29889, 450, 22569, 9245, 29490, 393, 10974, 13049, 1818, 4017, 263, 2740, 1370, 21867, 1434, 896, 508, 1996, 18563, 304, 2125, 263, 10416, 29899, 284, 1111, 5391, 1243, 29892, 541, 393, 16172, 29899, 284, 1111, 5391, 6987, 508, 367, 3734, 1728, 263, 1370, 21867, 1363, 896, 526, 3109, 11158, 375, 573, 322, 29892, 5480, 29892, 437, 451, 5537, 403, 278, 12458, 386, 1913, 355, 358, 29889, 13, 1576, 4251, 393, 278, 22569, 9245, 6091, 599, 9701, 2106, 14243, 393, 22161, 1891, 278, 1044, 310, 2143, 4746, 10416, 322, 16172, 27231, 5391, 26702, 6987, 2645, 360, 3120, 17726, 29889, 399, 391, 29894, 29889, 510, 13676, 393, 599, 29871, 29945, 29900, 5922, 5279, 505, 14243, 393, 2758, 278, 2106, 304, 337, 5744, 263, 7156, 29915, 29879, 19405, 363, 2143, 4746, 304, 9752, 304, 4192, 2960, 19500, 6987, 29892, 3138, 29892, 278, 22569, 9245, 29915, 29879, 364, 19478, 6602, 29879, 29871, 29896, 29896, 2106, 14243, 393, 2125, 2712, 263, 4331, 26645, 491, 7275, 292, 22161, 6584, 1997, 583, 373, 18563, 1058, 26506, 1316, 6987, 29889, 512, 916, 3838, 29892, 278, 22569, 9245, 756, 23454, 310, 10974, 13049, 26795, 1370, 21867, 2222, 16172, 6987, 2645, 4192, 2960, 19500, 17726, 322, 318, 561, 3361, 2106, 14243, 393, 2411, 852, 22161, 6584, 1997, 583, 363, 1906, 1058, 26506, 29889, 910, 7786, 364, 19478, 11308, 278, 3050, 1722, 363, 5922, 763, 4275, 13397, 1058, 437, 451, 5279, 22161, 675, 1316, 2143, 375, 1338, 304, 788, 11664, 6584, 1997, 583, 304, 1009, 2411, 2957, 20218, 14243, 29889, 13, 5618, 1317, 385, 525, 24192, 2957, 2138, 296, 29915, 7927, 29973, 13, 10401, 366, 937, 7436, 363, 596, 7156, 29915, 29879, 19405, 29892, 521, 2925, 526, 393, 366, 892, 577, 24173, 304, 7124, 278, 6520, 393, 366, 1122, 451, 505, 2289, 2714, 1549, 278, 13472, 8232, 310, 825, 366, 892, 8661, 292, 304, 746, 366, 8794, 373, 278, 270, 15048, 1196, 29889, 10050, 621, 6393, 29892, 1269, 2106, 756, 385, 525, 6574, 2957, 20218, 4307, 29915, 393, 413, 7358, 297, 746, 263, 7156, 16058, 363, 1009, 19405, 29889, 7634, 385, 2411, 2957, 20218, 4307, 29892, 18563, 20218, 304, 1090, 17696, 22810, 374, 3305, 6987, 4113, 1531, 287, 491, 10974, 13049, 297, 278, 1746, 363, 278, 6437, 310, 3683, 2827, 3692, 470, 451, 278, 7156, 338, 2411, 29874, 2859, 491, 5883, 3174, 470, 27231, 5391, 29889, 7311, 7794, 21144, 18563, 505, 2307, 2183, 1009, 2411, 2957, 20218, 363, 1746, 22810, 374, 3305, 6987, 29892, 2143, 4746, 304, 9752, 338, 27302, 565, 278, 12139, 1058, 11084, 366, 2769, 2197, 12326, 29879, 393, 366, 526, 19500, 1090, 278, 9949, 29889, 5806, 278, 27368, 363, 2143, 4746, 1316, 263, 22810, 374, 3305, 1243, 722, 583, 515, 2106, 304, 2106, 29892, 1432, 2106, 6511, 363, 278, 7156, 29915, 29879, 19405, 304, 367, 6664, 12504, 363, 263, 6790, 3785, 310, 931, 408, 6035, 18310, 29889, 13, 29903, 2438, 13397, 29915, 29879, 2411, 2957, 20218, 4307, 29892, 1476, 297, 317, 29889, 29907, 29889, 5920, 16683, 29871, 29945, 29953, 29899, 29945, 29899, 29906, 29929, 29945, 29900, 29892, 11486, 393, 263, 7156, 1058, 4857, 546, 368, 15964, 263, 22810, 374, 3305, 1243, 363, 278, 937, 931, 674, 505, 670, 470, 902, 7156, 29915, 29879, 19405, 8872, 2760, 363, 4832, 7378, 29892, 14183, 7378, 363, 263, 1473, 1283, 1947, 29892, 322, 697, 1629, 363, 263, 4654, 1283, 1947, 29889, 739, 881, 367, 11682, 393, 4275, 13397, 947, 451, 2411, 852, 22161, 6584, 1997, 583, 363, 2143, 4746, 263, 22810, 374, 3305, 1243, 29936, 3265, 29892, 278, 6035, 18310, 338, 3763, 304, 8872, 355, 596, 7156, 29915, 29879, 19405, 29889, 1152, 10230, 29892, 1423, 714, 278, 6584, 1997, 583, 393, 777, 916, 5922, 508, 2411, 852, 373, 18563, 1058, 4857, 546, 368, 26506, 304, 2125, 6520, 2975, 22810, 374, 3305, 6987, 363, 278, 937, 931, 297, 1009, 2106, 29901, 13, 2499, 16191, 29901, 5020 ]
1,024
CommonCrawl
0.235779
0.532735
1.371037
1.260829
The masked attacker poses for a photo with students. who didn't realize who he was, before launching his assault/ (AFP) From Gaza to Sweden: covering deadly attacks Mai Yaghi Wednesday 25 November 2015 Trollhattan, Sweden, November 25, 2015 -- I knew I was in a different world when my daughter didn't even cross my mind as I rushed to cover a deadly attack on a school. I am from the Gaza Strip, where I worked for AFP for several years and have been on unpaid leave in Sweden since May, to help my daughter recover from the last war. I was keen to work as a journalist outside Gaza and had asked the AFP Stockholm bureau chief to keep me in mind for any work. When he messaged asking if I would be interested in covering an attack on a school in the southwestern town of Trollhattan, I immediately said yes. (AFP Graphics) I didn't even know there had been an attack. I just asked him to send me the address and hopped into a taxi for the hour and a half ride to Trollhattan. I was so excited that I forgot to call my husband to tell him that I was going and only dialed his number from the cab. "An attack on a school in Sweden? Did you call Yara's school?" he asked, talking about my 8-year-old daughter. I froze in shock. I didn't even think about my daughter or her brother as I rushed to go cover the attack. What a difference from Gaza. Smoke rises over Gaza after an Israeli strike. July, 2014. (AFP / Thomas Coex) In Gaza, a thin strip of land saturated by violence for years, my children were my first worry when I headed off to cover attacks and wars. It was common and expected to hear an air raid or an attack in Gaza at any time of day and night. When I got calls from the office to go cover one, I would often drop my kids off at my mother's and head out. Gaza is small and you never knew if an attack would strike your house. How often did I feel selfish and guilty for leaving them in dangerous situations. A child walks through the rubble her home in Gaza. August, 2014. (AFP / Roberto Schmidt) Once my daughter broke my heart. It was during the last war. There was heavy shelling and I had to go to the office. She hugged me tightly as I headed out. "Don't go Mommy. If you go out, you will get killed and we will only meet in heaven." But I couldn't work from home that day, as there was no electricity and I was saving the USB battery for the night. To be honest, I think I also wanted to go out, to escape, so that I didn't have to see the fear in her eyes when an explosion struck. And they struck every minute it seems. I felt so helpless. Going to work was an escape. "The Israelis are not targeting journalists," I told her. "I have a press sign on my car, so I'll be ok, don't worry. I'll be safe," I said heading out the door. She wasn't fooled. Palestinians scramble after an air strike on a house in Gaza. August, 2014. (AFP / Roberto Schmidt) The last war was particularly hard on me, both as a journalist and as a human being. The bureau's office assistant was killed in the war, I had to leave my house and move into my sister's, my husband was out of Gaza. My daughter had serious trauma from that war. She couldn't be alone at all, she was too scared. She couldn't even go to the bathroom by herself. A child cries inside a Gaza hospital. July, 2014. (AFP / Mohammed Abed) An opportunity to come to Sweden came up and my husband and I decided to take it. Even here, it was difficult. She was too scared to go to school, she was afraid it would be shelled. I had to go back to Gaza in the beginning and my husband had to stay with her in the classroom for three months. If she heard a helicopter here, she began to panic. We came here to escape the violence and the tension of the Gaza Strip
[ 450, 11105, 287, 5337, 261, 926, 267, 363, 263, 15373, 411, 8041, 29889, 1058, 3282, 29915, 29873, 16289, 1058, 540, 471, 29892, 1434, 6826, 292, 670, 29159, 29914, 313, 5098, 29925, 29897, 13, 4591, 15853, 29874, 304, 24506, 29901, 21653, 7123, 368, 16661, 13, 29924, 1794, 612, 351, 2918, 15050, 4515, 3250, 29871, 29906, 29945, 3979, 29871, 29906, 29900, 29896, 29945, 13, 29911, 1245, 29882, 23586, 29892, 24506, 29892, 3979, 29871, 29906, 29945, 29892, 29871, 29906, 29900, 29896, 29945, 1192, 306, 6363, 306, 471, 297, 263, 1422, 3186, 746, 590, 8750, 3282, 29915, 29873, 1584, 4891, 590, 3458, 408, 306, 364, 15392, 304, 4612, 263, 7123, 368, 5337, 373, 263, 3762, 29889, 13, 29902, 626, 515, 278, 15853, 29874, 624, 6472, 29892, 988, 306, 3796, 363, 23844, 29925, 363, 3196, 2440, 322, 505, 1063, 373, 443, 3274, 333, 5967, 297, 24506, 1951, 2610, 29892, 304, 1371, 590, 8750, 9792, 515, 278, 1833, 1370, 29889, 306, 471, 28430, 304, 664, 408, 263, 24452, 5377, 15853, 29874, 322, 750, 4433, 278, 23844, 29925, 17920, 289, 13411, 9087, 304, 3013, 592, 297, 3458, 363, 738, 664, 29889, 1932, 540, 4473, 4063, 6721, 565, 306, 723, 367, 8852, 297, 21653, 385, 5337, 373, 263, 3762, 297, 278, 7062, 22741, 4726, 310, 323, 1245, 29882, 23586, 29892, 306, 7389, 1497, 4874, 29889, 13, 29898, 5098, 29925, 29247, 29897, 13, 29902, 3282, 29915, 29873, 1584, 1073, 727, 750, 1063, 385, 5337, 29889, 306, 925, 4433, 1075, 304, 3638, 592, 278, 3211, 322, 5089, 2986, 964, 263, 8818, 29875, 363, 278, 7234, 322, 263, 4203, 22203, 304, 323, 1245, 29882, 23586, 29889, 306, 471, 577, 24173, 393, 306, 9640, 304, 1246, 590, 10216, 304, 2649, 1075, 393, 306, 471, 2675, 322, 871, 9766, 839, 670, 1353, 515, 278, 7776, 29889, 13, 29908, 2744, 5337, 373, 263, 3762, 297, 24506, 29973, 7440, 366, 1246, 612, 2518, 29915, 29879, 3762, 3026, 540, 4433, 29892, 9963, 1048, 590, 29871, 29947, 29899, 6360, 29899, 1025, 8750, 29889, 13, 29902, 14671, 911, 297, 19253, 29889, 306, 3282, 29915, 29873, 1584, 1348, 1048, 590, 8750, 470, 902, 8099, 408, 306, 364, 15392, 304, 748, 4612, 278, 5337, 29889, 13, 5618, 263, 4328, 515, 15853, 29874, 29889, 13, 29903, 4346, 446, 364, 4637, 975, 15853, 29874, 1156, 385, 22895, 5037, 21283, 29889, 5468, 29892, 29871, 29906, 29900, 29896, 29946, 29889, 313, 5098, 29925, 847, 5569, 3189, 735, 29897, 13, 797, 15853, 29874, 29892, 263, 16835, 17820, 310, 2982, 269, 1337, 630, 491, 21448, 363, 2440, 29892, 590, 4344, 892, 590, 937, 15982, 746, 306, 2343, 287, 1283, 304, 4612, 16661, 322, 29129, 29889, 13, 3112, 471, 3619, 322, 3806, 304, 8293, 385, 4799, 1153, 333, 470, 385, 5337, 297, 15853, 29874, 472, 738, 931, 310, 2462, 322, 4646, 29889, 1932, 306, 2355, 5717, 515, 278, 8034, 304, 748, 4612, 697, 29892, 306, 723, 4049, 5768, 590, 413, 4841, 1283, 472, 590, 5637, 29915, 29879, 322, 2343, 714, 29889, 15853, 29874, 338, 2319, 322, 366, 2360, 6363, 565, 385, 5337, 723, 21283, 596, 3699, 29889, 1128, 4049, 1258, 306, 4459, 1583, 728, 322, 27719, 363, 10124, 963, 297, 18215, 18845, 29889, 13, 29909, 2278, 17042, 2039, 1549, 278, 14051, 569, 902, 3271, 297, 15853, 29874, 29889, 3111, 29892, 29871, 29906, 29900, 29896, 29946, 29889, 313, 5098, 29925, 847, 21739, 25157, 29897, 13, 26222, 590, 8750, 14455, 590, 5192, 29889, 739, 471, 2645, 278, 1833, 1370, 29889, 1670, 471, 9416, 6473, 292, 322, 306, 750, 304, 748, 304, 278, 8034, 29889, 2296, 298, 688, 3192, 592, 19932, 368, 408, 306, 2343, 287, 714, 29889, 13, 29908, 10310, 29915, 29873, 748, 341, 290, 1357, 29889, 960, 366, 748, 714, 29892, 366, 674, 679, 9445, 322, 591, 674, 871, 5870, 297, 18356, 1213, 13, 6246, 306, 8496, 29915, 29873, 664, 515, 3271, 393, 2462, 29892, 408, 727, 471, 694, 12646, 537, 322, 306, 471, 14238, 278, 12951, 16988, 363, 278, 4646, 29889, 13, 1762, 367, 15993, 29892, 306, 1348, 306, 884, 5131, 304, 748, 714, 29892, 304, 10169, 29892, 577, 393, 306, 3282, 29915, 29873, 505, 304, 1074, 278, 8866, 297, 902, 5076, 746, 385, 20389, 291, 15469, 29889, 1126, 896, 15469, 1432, 11015, 372, 2444, 29889, 306, 7091, 577, 1081, 572, 404, 29889, 2921, 292, 304, 664, 471, 385, 10169, 29889, 13, 29908, 1576, 11996, 275, 526, 451, 3646, 292, 8955, 2879, 1699, 306, 5429, 902, 29889, 376, 29902, 505, 263, 3965, 1804, 373, 590, 1559, 29892, 577, 306, 29915, 645, 367, 3431, 29892, 1016, 29915, 29873, 15982, 29889, 306, 29915, 645, 367, 9109, 1699, 306, 1497, 28435, 714, 278, 3050, 29889, 13, 13468, 9007, 29915, 29873, 7953, 839, 29889, 13, 18210, 342, 2172, 550, 885, 2572, 569, 1156, 385, 4799, 21283, 373, 263, 3699, 297, 15853, 29874, 29889, 3111, 29892, 29871, 29906, 29900, 29896, 29946, 29889, 313, 5098, 29925, 847, 21739, 25157, 29897, 13, 1576, 1833, 1370, 471, 10734, 2898, 373, 592, 29892, 1716, 408, 263, 24452, 322, 408, 263, 5199, 1641, 29889, 450, 289, 13411, 29915, 29879, 8034, 20255, 471, 9445, 297, 278, 1370, 29892, 306, 750, 304, 5967, 590, 3699, 322, 4337, 964, 590, 9883, 29915, 29879, 29892, 590, 10216, 471, 714, 310, 15853, 29874, 29889, 13, 3421, 8750, 750, 10676, 1020, 10859, 515, 393, 1370, 29889, 2296, 8496, 29915, 29873, 367, 7432, 472, 599, 29892, 1183, 471, 2086, 885, 1965, 29889, 2296, 8496, 29915, 29873, 1584, 748, 304, 278, 27683, 8345, 491, 8735, 29889, 13, 29909, 2278, 274, 2722, 2768, 263, 15853, 29874, 13457, 29889, 5468, 29892, 29871, 29906, 29900, 29896, 29946, 29889, 313, 5098, 29925, 847, 12929, 28913, 1976, 287, 29897, 13, 2744, 15130, 304, 2041, 304, 24506, 2996, 701, 322, 590, 10216, 322, 306, 8459, 304, 2125, 372, 29889, 7753, 1244, 29892, 372, 471, 5189, 29889, 2296, 471, 2086, 885, 1965, 304, 748, 304, 3762, 29892, 1183, 471, 13421, 372, 723, 367, 528, 14356, 29889, 306, 750, 304, 748, 1250, 304, 15853, 29874, 297, 278, 6763, 322, 590, 10216, 750, 304, 7952, 411, 902, 297, 278, 770, 8345, 363, 2211, 7378, 29889, 960, 1183, 6091, 263, 1081, 293, 19959, 1244, 29892, 1183, 4689, 304, 7243, 293, 29889, 13, 4806, 2996, 1244, 304, 10169, 278, 21448, 322, 278, 260, 2673, 310, 278, 15853, 29874, 624, 6472 ]
1,024
CommonCrawl
0.800928
-0.393234
0.267308
0.054137
Peace through Strength Posted by PITHOCRATES - March 6th, 2014 Bad Guys won't open their Can of Whoop-Ass if there is a Chance they'll get their Ass Kicked Bullies generally pick on smaller and weaker people. Smaller and weaker people don't pick on tough guys. They don't walk up to a bully and give him a wedgie. They'd like to. But they don't. Why? Because if a small and weak person did they'd get their ass kicked. That's why. And people don't like getting their ass kicked. But sometimes it's the tough guys that save the day. In the opening scene of V for Vendetta Evey was about to get raped by some government thugs. Then tough guy V came along and kicked their asses. Saving Eve from a brutal rape. In Die Hard the evil Hans Gruber was going to kill everyone in that building until tough guy John McClane happened on the scene. And started killing the bad guys. Saving the day. In the movie Patton everyone wanted him thrown out of the Army after he slapped that crying soldier. But when the Allies' drive stalled in the Normandy hedgerow country who did they turn to? That's right. Tough guy General Patton. Who started kicking Nazi ass big time. Breaking through their lines and advancing in every compass direction while British General Bernard Montgomery was still struggling o take his D-Day objective. Caen. People don't like getting their ass kicked. But if they are in danger of a good ass-kicking they'd want someone on their side who can kick ass as good as the next guy. For even bad guys don't want to get their ass kicked. And if there is a chance of that happening they're going to think long and hard before opening their can of whoop-ass. Especially when someone else's can of whoop-ass is bigger. Only the Military Might of the United States could contain Soviet Expansion The Roman Empire had one mighty can of whoop-ass. Something her potential enemies understood. And feared. So they didn't cause any trouble. Because they didn't want to get their ass kicked. Which is why from approximately 27 BC to 180 AD there was relative peace in the world. Pax Romana. For the Romans had the mightiest military force in the world. And if you went up against them you were most likely going to lose. So they didn't. Instead, choosing to live in peace. The British Empire was even larger than the Roman Empire. And had an even larger can of whoop-ass. Not only did they have armies throughout their empire which was so large that the sun never set on it. The Royal Navy ruled the seas. Which meant if you caused any trouble in the world you could expect an ass-kicking. Either from her mighty military power. Or her aid to a smaller and weaker country under threat from an aggressive neighbor. The bad guys learned. It wasn't worth it. If you tried to break the peace you were going to get your ass kicked. Which is why from 1815 through 1914 when the British Empire ruled the world there was relative peace. Pax Britannica. The United States of America had come of age during the 20th century. Growing even bigger and stronger than the empire that sired her. The British Empire. Who went into decline during the 20th century. But just as Pax Britannica drew to a close and the world became a more dangerous place the United States stepped in. Allowing the Allies to defeat Nazi Germany. And Imperial Japan. She grew to have the biggest can of whoop-ass in history. And became the world's policeman. Pushing back against Soviet expansion. In Europe. The Balkans. The Middle East. And Southeast Asia. The Soviets wanted to conquer the world. And would have if not for America's mighty military to counter their threat. Leading to a period of relative peace following World War II. Pax Americana. As only the military might of the United States could contain Soviet expansion. Vladimir Putin feels that he can put the old Soviet Union back together during the Obama Administration During a sound check before a radio address President Reagan made a joke. He said, "My fellow Americans, I'm pleased to tell you today that I've signed legislation that will outlaw Russia forever. We
[ 24819, 1549, 3767, 1477, 13, 6747, 287, 491, 349, 1806, 8187, 11341, 1299, 2890, 448, 4779, 29871, 29953, 386, 29892, 29871, 29906, 29900, 29896, 29946, 13, 22050, 2088, 952, 2113, 29915, 29873, 1722, 1009, 1815, 310, 11644, 459, 29899, 7900, 565, 727, 338, 263, 678, 749, 896, 29915, 645, 679, 1009, 4007, 476, 17840, 13, 29933, 352, 3687, 6892, 5839, 373, 7968, 322, 591, 5790, 2305, 29889, 4116, 12572, 322, 591, 5790, 2305, 1016, 29915, 29873, 5839, 373, 260, 820, 18239, 29889, 2688, 1016, 29915, 29873, 6686, 701, 304, 263, 8227, 368, 322, 2367, 1075, 263, 14837, 12053, 29889, 2688, 29915, 29881, 763, 304, 29889, 1205, 896, 1016, 29915, 29873, 29889, 3750, 29973, 7311, 565, 263, 2319, 322, 8062, 2022, 1258, 896, 29915, 29881, 679, 1009, 1223, 413, 17840, 29889, 2193, 29915, 29879, 2020, 29889, 1126, 2305, 1016, 29915, 29873, 763, 2805, 1009, 1223, 413, 17840, 29889, 1205, 6041, 372, 29915, 29879, 278, 260, 820, 18239, 393, 4078, 278, 2462, 29889, 13, 797, 278, 8718, 9088, 310, 478, 363, 478, 355, 11300, 382, 6950, 471, 1048, 304, 679, 1153, 9795, 491, 777, 5874, 266, 16926, 29889, 1987, 260, 820, 1410, 29891, 478, 2996, 3412, 322, 413, 17840, 1009, 1223, 267, 29889, 317, 5555, 382, 345, 515, 263, 26644, 284, 1153, 412, 29889, 512, 1640, 10999, 278, 16126, 6971, 1632, 11234, 471, 2675, 304, 12088, 14332, 297, 393, 5214, 2745, 260, 820, 1410, 29891, 2259, 4052, 6821, 1662, 9559, 373, 278, 9088, 29889, 1126, 4687, 23393, 278, 4319, 18239, 29889, 317, 5555, 278, 2462, 29889, 512, 278, 14064, 4121, 880, 14332, 5131, 1075, 12005, 714, 310, 278, 8811, 1156, 540, 8370, 2986, 393, 10901, 292, 20767, 29889, 1205, 746, 278, 838, 3687, 29915, 7899, 380, 4212, 297, 278, 5655, 13910, 298, 287, 914, 340, 4234, 1058, 1258, 896, 2507, 304, 29973, 2193, 29915, 29879, 1492, 29889, 323, 820, 1410, 29891, 4593, 4121, 880, 29889, 11644, 4687, 24817, 292, 11409, 29875, 1223, 4802, 931, 29889, 5826, 5086, 1549, 1009, 3454, 322, 3061, 19985, 297, 1432, 752, 465, 5305, 1550, 4908, 4593, 13337, 4526, 27157, 708, 471, 1603, 20042, 288, 2125, 670, 360, 29899, 12742, 12091, 29889, 9243, 264, 29889, 13, 15666, 1991, 1016, 29915, 29873, 763, 2805, 1009, 1223, 413, 17840, 29889, 1205, 565, 896, 526, 297, 9703, 310, 263, 1781, 1223, 29899, 29895, 860, 292, 896, 29915, 29881, 864, 4856, 373, 1009, 2625, 1058, 508, 24817, 1223, 408, 1781, 408, 278, 2446, 1410, 29891, 29889, 1152, 1584, 4319, 18239, 1016, 29915, 29873, 864, 304, 679, 1009, 1223, 413, 17840, 29889, 1126, 565, 727, 338, 263, 8825, 310, 393, 10464, 896, 29915, 276, 2675, 304, 1348, 1472, 322, 2898, 1434, 8718, 1009, 508, 310, 1058, 459, 29899, 465, 29889, 3423, 25009, 746, 4856, 1683, 29915, 29879, 508, 310, 1058, 459, 29899, 465, 338, 16600, 29889, 13, 11730, 278, 20080, 341, 523, 310, 278, 3303, 3900, 1033, 1712, 15308, 12027, 9454, 13, 1576, 5917, 13378, 750, 697, 27977, 508, 310, 1058, 459, 29899, 465, 29889, 12538, 902, 7037, 22595, 11098, 29889, 1126, 1238, 1965, 29889, 1105, 896, 3282, 29915, 29873, 4556, 738, 7458, 29889, 7311, 896, 3282, 29915, 29873, 864, 304, 679, 1009, 1223, 413, 17840, 29889, 8449, 338, 2020, 515, 14235, 29871, 29906, 29955, 17403, 304, 29871, 29896, 29947, 29900, 11033, 727, 471, 6198, 10776, 297, 278, 3186, 29889, 349, 1165, 6033, 1648, 29889, 1152, 278, 6033, 550, 750, 278, 1795, 12239, 9121, 4889, 297, 278, 3186, 29889, 1126, 565, 366, 3512, 701, 2750, 963, 366, 892, 1556, 5517, 2675, 304, 14074, 29889, 1105, 896, 3282, 29915, 29873, 29889, 8669, 29892, 23906, 304, 5735, 297, 10776, 29889, 13, 1576, 4908, 13378, 471, 1584, 7200, 1135, 278, 5917, 13378, 29889, 1126, 750, 385, 1584, 7200, 508, 310, 1058, 459, 29899, 465, 29889, 2216, 871, 1258, 896, 505, 5075, 583, 10106, 1009, 3710, 533, 607, 471, 577, 2919, 393, 278, 6575, 2360, 731, 373, 372, 29889, 450, 7021, 13166, 29490, 278, 409, 294, 29889, 8449, 6839, 565, 366, 8581, 738, 7458, 297, 278, 3186, 366, 1033, 2149, 385, 1223, 29899, 29895, 860, 292, 29889, 20370, 515, 902, 27977, 9121, 3081, 29889, 1394, 902, 16226, 304, 263, 7968, 322, 591, 5790, 4234, 1090, 28469, 515, 385, 946, 3663, 573, 12307, 29889, 450, 4319, 18239, 10972, 29889, 739, 9007, 29915, 29873, 7088, 372, 29889, 960, 366, 1898, 304, 2867, 278, 10776, 366, 892, 2675, 304, 679, 596, 1223, 413, 17840, 29889, 8449, 338, 2020, 515, 29871, 29896, 29947, 29896, 29945, 1549, 29871, 29896, 29929, 29896, 29946, 746, 278, 4908, 13378, 29490, 278, 3186, 727, 471, 6198, 10776, 29889, 349, 1165, 18940, 29889, 13, 1576, 3303, 3900, 310, 6813, 750, 2041, 310, 5046, 2645, 278, 29871, 29906, 29900, 386, 6462, 29889, 402, 798, 292, 1584, 16600, 322, 23505, 1135, 278, 3710, 533, 393, 269, 2859, 902, 29889, 450, 4908, 13378, 29889, 11644, 3512, 964, 4845, 457, 2645, 278, 29871, 29906, 29900, 386, 6462, 29889, 1205, 925, 408, 349, 1165, 18940, 15010, 304, 263, 3802, 322, 278, 3186, 3897, 263, 901, 18215, 2058, 278, 3303, 3900, 28996, 297, 29889, 29408, 292, 278, 838, 3687, 304, 20653, 11409, 29875, 9556, 29889, 1126, 21080, 5546, 29889, 2296, 13631, 304, 505, 278, 24842, 508, 310, 1058, 459, 29899, 465, 297, 4955, 29889, 1126, 3897, 278, 3186, 29915, 29879, 13665, 11422, 29889, 349, 21616, 1250, 2750, 15308, 13184, 29889, 512, 4092, 29889, 450, 350, 2235, 550, 29889, 450, 14253, 6932, 29889, 1126, 317, 449, 15879, 14325, 29889, 450, 317, 6895, 1691, 5131, 304, 26474, 278, 3186, 29889, 1126, 723, 505, 565, 451, 363, 6813, 29915, 29879, 27977, 9121, 304, 6795, 1009, 28469, 29889, 951, 9382, 304, 263, 3785, 310, 6198, 10776, 1494, 2787, 3362, 1944, 29889, 349, 1165, 2163, 12679, 29889, 1094, 871, 278, 9121, 1795, 310, 278, 3303, 3900, 1033, 1712, 15308, 13184, 29889, 13, 29963, 4528, 17216, 12065, 262, 23880, 393, 540, 508, 1925, 278, 2030, 15308, 7761, 1250, 4208, 2645, 278, 4250, 3304, 23303, 13, 29928, 3864, 263, 6047, 1423, 1434, 263, 7155, 3211, 7178, 830, 18939, 1754, 263, 2958, 446, 29889, 940, 1497, 29892, 376, 3421, 10404, 23035, 29892, 306, 29915, 29885, 22301, 304, 2649, 366, 9826, 393, 306, 29915, 345, 8794, 13332, 362, 393, 674, 714, 10653, 12710, 22296, 29889, 1334 ]
1,024
CommonCrawl
-0.129665
-0.428923
0.432957
-0.647553
begin bombing in five minutes." Reagan had a sense of humor and those present laughed. The joke leaked. The Soviets heard it. And they put their Soviet Far East Army on alert. You see, they had great respect for the awesome military power of the United States. And they respected Reagan. They did not like him. But they respected him. And if he said he was going to open a can of whoop-ass on them they got nervous. For President Reagan may have spoken softly. But he was not afraid to kick ass. The Soviets had no such respect for Reagan's predecessor. Jimmy Carter. In fact, they had so little respect for him that they developed a nuclear first-strike plan. For Carter was gutting the military. And wasn't a tough guy when it came to foreign policy. He was a president who wanted to focus on domestic policy. A sign of weakness the Soviets could smell. Anyone who gutted the military to pay for more domestic spending would never pull the nuclear trigger. At least that's what the Soviets thought. Which is why they prepared a nuclear first-strike plan during the Carter administration. Sure they could win a nuclear war against him. The Soviets thought no such thing during the Reagan administration. So instead of a nuclear war (which may have happened in a Carter second term) we had peace. Because of our strength. Peace through strength. If you're a bad-ass people will leave you alone. Because no one wants to get their ass kicked. If you're hell-bent on beating the crap out of your neighbor so you can take her resources and there is a bad-ass in the world that can bring a world of hurt down on you it will make you think. And pause. This is why there was a Pax Romana. A Pax Britannica. And a Pax Americana. Because people respect a bad-ass. And will not incite it. They may hate the bad-ass. But they will respect it. And not piss it off. President Obama has a strong domestic agenda. Like Jimmy Carter. He doesn't want to deal with foreign policy. Like Jimmy Carter. And he is not respected or feared by the world's bad guys. Like Jimmy Carter. Who is far more inclined to make a speech and threaten action. But is far less likely to open a can of whoop-ass. Like Ronald Reagan. Which is why Vladimir Putin feels that he can put the old Soviet Union back together during the Obama administration. Because he doesn't fear the wrath of President Obama. As no one does. For he is all bark and no bite. At least, so far. Apart from killing a bunch of people that can't fight back. Drone strikes. Bombing Libya (that was no threat to American interests). And killing Osama bin Laden with a SEAL team. More of an imperial use of force than acting as the world's policeman to safeguard liberty and democracy. So Vladimir Putin has little to worry about during an Obama presidency. Unlike conservatives in America. Posted in Politics 101 - Comments Off on Peace through Strength Tags: ass kicked, ass-kicking, bad guys, bad-ass, British Empire, bully, Carter, first-strike, foreign policy, Jimmy Carter, kick ass, military, military might, military power, nuclear, nuclear first-strike, Obama, Obama administration, Pax Americana, Pax Britannica, Pax Romana, Peace, peace through strength, President Obama, President Reagan, Putin, Reagan, Roman Empire, Soviet, Soviet expansion, Soviet Union, tough guy, Vladimir Putin, whoop-ass, world's policeman LESSONS LEARNED #15: "Most people would rather hear a pleasant lie than an unpleasant truth." -Old Pithy. Posted by PITHOCRATES - May 27th, 2010 NO ONE LIKES bad news. That's why when someone says, "I've got good news and bad news, which do you want to hear first?" most people want to hear the bad news first. Get the sting over. Then hear the good news to help get over the sting of the bad. People are so adverse to bad news they'll even look for ways to ignore it as long as they can. They'll believe lies if the lies keep their pleasant little world pleasant. Almost to any cost. In 1944, the
[ 3380, 13585, 292, 297, 5320, 6233, 1213, 830, 18939, 750, 263, 4060, 310, 27448, 322, 1906, 2198, 19090, 29889, 450, 2958, 446, 454, 12535, 29889, 450, 317, 6895, 1691, 6091, 372, 29889, 1126, 896, 1925, 1009, 15308, 8413, 6932, 8811, 373, 6655, 29889, 887, 1074, 29892, 896, 750, 2107, 3390, 363, 278, 29663, 9121, 3081, 310, 278, 3303, 3900, 29889, 1126, 896, 3390, 287, 830, 18939, 29889, 2688, 1258, 451, 763, 1075, 29889, 1205, 896, 3390, 287, 1075, 29889, 1126, 565, 540, 1497, 540, 471, 2675, 304, 1722, 263, 508, 310, 1058, 459, 29899, 465, 373, 963, 896, 2355, 23547, 681, 29889, 1152, 7178, 830, 18939, 1122, 505, 19182, 4964, 368, 29889, 1205, 540, 471, 451, 13421, 304, 24817, 1223, 29889, 13, 1576, 317, 6895, 1691, 750, 694, 1316, 3390, 363, 830, 18939, 29915, 29879, 27978, 985, 272, 29889, 20636, 22264, 29889, 512, 2114, 29892, 896, 750, 577, 2217, 3390, 363, 1075, 393, 896, 8906, 263, 20346, 937, 29899, 303, 20995, 3814, 29889, 1152, 22264, 471, 22341, 1259, 278, 9121, 29889, 1126, 9007, 29915, 29873, 263, 260, 820, 1410, 29891, 746, 372, 2996, 304, 9117, 8898, 29889, 940, 471, 263, 6673, 1058, 5131, 304, 8569, 373, 21849, 8898, 29889, 319, 1804, 310, 8062, 2264, 278, 317, 6895, 1691, 1033, 1560, 514, 29889, 26407, 1058, 330, 4774, 287, 278, 9121, 304, 5146, 363, 901, 21849, 805, 2548, 723, 2360, 8206, 278, 20346, 7135, 29889, 2180, 3203, 393, 29915, 29879, 825, 278, 317, 6895, 1691, 2714, 29889, 8449, 338, 2020, 896, 13240, 263, 20346, 937, 29899, 303, 20995, 3814, 2645, 278, 22264, 17517, 29889, 18585, 896, 1033, 5401, 263, 20346, 1370, 2750, 1075, 29889, 450, 317, 6895, 1691, 2714, 694, 1316, 2655, 2645, 278, 830, 18939, 17517, 29889, 1105, 2012, 310, 263, 20346, 1370, 313, 4716, 1122, 505, 9559, 297, 263, 22264, 1473, 1840, 29897, 591, 750, 10776, 29889, 7311, 310, 1749, 9324, 29889, 13, 15666, 815, 1549, 9324, 29889, 960, 366, 29915, 276, 263, 4319, 29899, 465, 2305, 674, 5967, 366, 7432, 29889, 7311, 694, 697, 10753, 304, 679, 1009, 1223, 413, 17840, 29889, 960, 366, 29915, 276, 23927, 29899, 29890, 296, 373, 367, 1218, 278, 274, 2390, 714, 310, 596, 12307, 577, 366, 508, 2125, 902, 7788, 322, 727, 338, 263, 4319, 29899, 465, 297, 278, 3186, 393, 508, 6963, 263, 3186, 310, 21682, 1623, 373, 366, 372, 674, 1207, 366, 1348, 29889, 1126, 19957, 29889, 910, 338, 2020, 727, 471, 263, 349, 1165, 6033, 1648, 29889, 319, 349, 1165, 18940, 29889, 1126, 263, 349, 1165, 2163, 12679, 29889, 7311, 2305, 3390, 263, 4319, 29899, 465, 29889, 1126, 674, 451, 297, 2036, 372, 29889, 2688, 1122, 26277, 278, 4319, 29899, 465, 29889, 1205, 896, 674, 3390, 372, 29889, 1126, 451, 282, 790, 372, 1283, 29889, 13, 13504, 1693, 4250, 3304, 756, 263, 4549, 21849, 946, 8395, 29889, 8502, 20636, 22264, 29889, 940, 1838, 29915, 29873, 864, 304, 5376, 411, 9117, 8898, 29889, 8502, 20636, 22264, 29889, 1126, 540, 338, 451, 3390, 287, 470, 1238, 1965, 491, 278, 3186, 29915, 29879, 4319, 18239, 29889, 8502, 20636, 22264, 29889, 11644, 338, 2215, 901, 1343, 1312, 304, 1207, 263, 12032, 322, 20616, 3158, 29889, 1205, 338, 2215, 3109, 5517, 304, 1722, 263, 508, 310, 1058, 459, 29899, 465, 29889, 8502, 11546, 2741, 830, 18939, 29889, 8449, 338, 2020, 27880, 12065, 262, 23880, 393, 540, 508, 1925, 278, 2030, 15308, 7761, 1250, 4208, 2645, 278, 4250, 3304, 17517, 29889, 7311, 540, 1838, 29915, 29873, 8866, 278, 2358, 493, 310, 7178, 4250, 3304, 29889, 1094, 694, 697, 947, 29889, 1152, 540, 338, 599, 289, 935, 322, 694, 289, 568, 29889, 2180, 3203, 29892, 577, 2215, 29889, 319, 1595, 515, 23393, 263, 14928, 310, 2305, 393, 508, 29915, 29873, 8589, 1250, 29889, 4942, 650, 19492, 267, 29889, 24347, 292, 8153, 3761, 313, 5747, 471, 694, 28469, 304, 3082, 20017, 467, 1126, 23393, 6657, 3304, 9016, 365, 4858, 411, 263, 3725, 1964, 3815, 29889, 5853, 310, 385, 26990, 671, 310, 4889, 1135, 16684, 408, 278, 3186, 29915, 29879, 13665, 11422, 304, 9437, 24024, 538, 24169, 322, 1261, 25804, 29889, 1105, 27880, 12065, 262, 756, 2217, 304, 15982, 1048, 2645, 385, 4250, 3304, 28282, 1270, 29889, 853, 4561, 8976, 5056, 297, 6813, 29889, 13, 6747, 287, 297, 6934, 1199, 29871, 29896, 29900, 29896, 448, 461, 29879, 5947, 373, 24819, 1549, 3767, 1477, 13, 28089, 29901, 1223, 413, 17840, 29892, 1223, 29899, 29895, 860, 292, 29892, 4319, 18239, 29892, 4319, 29899, 465, 29892, 4908, 13378, 29892, 8227, 368, 29892, 22264, 29892, 937, 29899, 303, 20995, 29892, 9117, 8898, 29892, 20636, 22264, 29892, 24817, 1223, 29892, 9121, 29892, 9121, 1795, 29892, 9121, 3081, 29892, 20346, 29892, 20346, 937, 29899, 303, 20995, 29892, 4250, 3304, 29892, 4250, 3304, 17517, 29892, 349, 1165, 2163, 12679, 29892, 349, 1165, 18940, 29892, 349, 1165, 6033, 1648, 29892, 24819, 29892, 10776, 1549, 9324, 29892, 7178, 4250, 3304, 29892, 7178, 830, 18939, 29892, 12065, 262, 29892, 830, 18939, 29892, 5917, 13378, 29892, 15308, 29892, 15308, 13184, 29892, 15308, 7761, 29892, 260, 820, 1410, 29891, 29892, 27880, 12065, 262, 29892, 1058, 459, 29899, 465, 29892, 3186, 29915, 29879, 13665, 11422, 13, 1307, 1799, 1164, 29903, 11060, 15249, 3352, 396, 29896, 29945, 29901, 376, 29924, 520, 2305, 723, 3265, 8293, 263, 21246, 3804, 1135, 385, 443, 552, 13186, 8760, 1213, 448, 21648, 349, 389, 29891, 29889, 13, 6747, 287, 491, 349, 1806, 8187, 11341, 1299, 2890, 448, 2610, 29871, 29906, 29955, 386, 29892, 29871, 29906, 29900, 29896, 29900, 13, 6632, 6732, 29923, 17705, 29968, 2890, 4319, 9763, 29889, 2193, 29915, 29879, 2020, 746, 4856, 4083, 29892, 376, 29902, 29915, 345, 2355, 1781, 9763, 322, 4319, 9763, 29892, 607, 437, 366, 864, 304, 8293, 937, 3026, 1556, 2305, 864, 304, 8293, 278, 4319, 9763, 937, 29889, 3617, 278, 380, 292, 975, 29889, 1987, 8293, 278, 1781, 9763, 304, 1371, 679, 975, 278, 380, 292, 310, 278, 4319, 29889, 13, 15666, 1991, 526, 577, 594, 3901, 304, 4319, 9763, 896, 29915, 645, 1584, 1106, 363, 5837, 304, 11455, 372, 408, 1472, 408, 896, 508, 29889, 2688, 29915, 645, 4658, 12185, 565, 278, 12185, 3013, 1009, 21246, 2217, 3186, 21246, 29889, 838, 3242, 304, 738, 3438, 29889, 512, 29871, 29896, 29929, 29946, 29946, 29892, 278 ]
1,024
CommonCrawl
0.007546
-0.068788
-0.031264
-0.986224
Germans were beaten. There was a chance some soldiers would be home before Christmas. So when some scattered reports came of movements on the German front towards the Eifel Region just east of the Ardennes, SHAEF (Supreme Headquarters Allied Expeditionary Force) discounted them. Explained them away as nothing. Because the Germans didn't launch winter offensives. Until 1944, that is. The Schnee Eifel battle, at the beginning of the center prong of a 3-prong attack, was the greatest American defeat in 1944/1945 Europe. But this was only one of many battles known as the Battle of the Bulge. This German winter offensive through the Ardennes was the biggest American battle of World War II. And bloodiest. In all, the Germans killed about 20,000 American soldiers. Some after they surrendered. Kampfgruppe Peiper spearheaded the Sixth SS Panzer Division. Joachim Peiper would eventually lead this force through the Baugnez crossroads near Malmedy. And into infamy. The Malmedy Massacre wasn't the only war crime, though. There were others. In the movie Patton, General Patton predicted this German offensive. And there was some truth in that. Third Army DID predict this. But it was his chief of intelligence, Colonel Oscar Koch, who figured this out. Patton's battlefield successes were the result of strong intelligence. And Colonel Koch gave him some of the best intelligence available on the Western Front. In November 1944, he gathered the intelligence, analyzed it and predicted a time and place. Of course, SHAEF discounted his findings. They were sure the Germans were beaten. Besides, the Germans didn't launch winter offensives. THE BATTLE OF the Bulge was only a small part of World War II, the biggest and meanest war in the history of mankind. Nations mobilized their military, economic, industrial, and scientific forces to wage total war. Civilians died, too. En masse. Whether by bombing of enemy cities or by organized genocide in occupied lands, civilians felt the horrors of war as they never had before. So how did such a horrific war come to be? It's complicated. Did it have to be as bad as it was? No. At least, France could have stopped Hitler earlier. Before his military buildup. But to understand this story, you have to go back in time. THE GREAT WAR, World War I, was the culmination of a series of disputes over European power and control of the Balkans. The Crimean War of 1853–1856, the Austro-Sardinian War of 1859 and the Austro-Prussian War of 1866 stirred the pot up in the Balkans. The Franco-Prussian War of 1870-1871 established a new unified Germany as the dominant power of Europe as Great Britain and France were in decline (and ceded the Loraine-Alsace region from France to Germany). And the Russo-Turkish War of 1877–1878 exploited the Balkan tempest. Weaker nations formed treaties with stronger nations. Entangling treaties. Imperial interests in the Balkans of both the great and not so great powers further fermented the Balkan tempest. Minority rule of the majority led to nationalist rebellion. To quench this rebellion, the Austro-Hungarian Empire annexed Serbia. This is a very cursory history but you get the picture. There was a lot of anger. And a lot of wrongs to right. And territory to regain. Or to simply gain. And then on Sunday, the 28th of June 1914, Archduke Franz Ferdinand of Austria visited Sarajevo. There a Yugoslav nationalist, Gavrilo Princip, assassinated him. And then all of those entangling treaties kicked in and a world was at war. IT WAS THE bloodiest and costliest war to date. No one thought it would be, though. You see, they learned a lot from the Prussians during the Franco-Prussian War of 1870-1871. Which was swift and conclusive. Unfortunately, they learned little from the American Civil War (1861-1865
[ 7287, 550, 892, 367, 2579, 29889, 1670, 471, 263, 8825, 777, 13936, 723, 367, 3271, 1434, 17661, 29889, 1105, 746, 777, 29574, 13676, 2996, 310, 24147, 373, 278, 5332, 4565, 7113, 278, 382, 361, 295, 11069, 925, 9755, 310, 278, 826, 1145, 4515, 29892, 317, 15715, 29638, 313, 29903, 786, 10291, 12252, 19252, 838, 2957, 1222, 9795, 654, 653, 11004, 29897, 2313, 792, 287, 963, 29889, 12027, 433, 1312, 963, 3448, 408, 3078, 29889, 7311, 278, 7287, 550, 3282, 29915, 29873, 6826, 13851, 1283, 575, 3145, 29889, 13, 29965, 20233, 29871, 29896, 29929, 29946, 29946, 29892, 393, 338, 29889, 450, 21129, 29872, 382, 361, 295, 10555, 29892, 472, 278, 6763, 310, 278, 4818, 544, 549, 310, 263, 29871, 29941, 29899, 558, 549, 5337, 29892, 471, 278, 14176, 3082, 20653, 297, 29871, 29896, 29929, 29946, 29946, 29914, 29896, 29929, 29946, 29945, 4092, 29889, 1205, 445, 471, 871, 697, 310, 1784, 8957, 793, 2998, 408, 278, 12788, 310, 278, 8313, 479, 29889, 910, 5332, 13851, 1283, 6270, 1549, 278, 826, 1145, 4515, 471, 278, 24842, 3082, 10555, 310, 2787, 3362, 1944, 29889, 1126, 10416, 12239, 29889, 512, 599, 29892, 278, 7287, 550, 9445, 1048, 29871, 29906, 29900, 29892, 29900, 29900, 29900, 3082, 13936, 29889, 3834, 1156, 896, 27503, 287, 29889, 476, 16817, 25218, 3938, 29875, 546, 961, 279, 2813, 287, 278, 18372, 386, 5886, 6518, 3298, 7946, 29889, 3650, 24039, 3938, 29875, 546, 723, 10201, 3275, 445, 4889, 1549, 278, 350, 2987, 16617, 4891, 307, 7925, 2978, 3792, 2168, 29891, 29889, 1126, 964, 3041, 25934, 29889, 450, 3792, 2168, 29891, 7360, 21160, 9007, 29915, 29873, 278, 871, 1370, 17268, 29892, 2466, 29889, 1670, 892, 4045, 29889, 13, 797, 278, 14064, 4121, 880, 29892, 4593, 4121, 880, 25383, 445, 5332, 1283, 6270, 29889, 1126, 727, 471, 777, 8760, 297, 393, 29889, 18008, 8811, 360, 1367, 8500, 445, 29889, 1205, 372, 471, 670, 9087, 310, 21082, 29892, 16893, 19054, 25911, 29892, 1058, 14788, 445, 714, 29889, 4121, 880, 29915, 29879, 10555, 2671, 2551, 267, 892, 278, 1121, 310, 4549, 21082, 29889, 1126, 16893, 25911, 4846, 1075, 777, 310, 278, 1900, 21082, 3625, 373, 278, 10504, 13960, 29889, 512, 3979, 29871, 29896, 29929, 29946, 29946, 29892, 540, 22229, 278, 21082, 29892, 29537, 287, 372, 322, 25383, 263, 931, 322, 2058, 29889, 4587, 3236, 29892, 317, 15715, 29638, 2313, 792, 287, 670, 1284, 886, 29889, 2688, 892, 1854, 278, 7287, 550, 892, 367, 2579, 29889, 19065, 29892, 278, 7287, 550, 3282, 29915, 29873, 6826, 13851, 1283, 575, 3145, 29889, 13, 28350, 350, 1299, 29911, 1307, 8079, 278, 8313, 479, 471, 871, 263, 2319, 760, 310, 2787, 3362, 1944, 29892, 278, 24842, 322, 2099, 342, 1370, 297, 278, 4955, 310, 767, 14380, 29889, 18269, 27227, 1891, 1009, 9121, 29892, 17407, 29892, 18408, 29892, 322, 16021, 8249, 304, 281, 482, 3001, 1370, 29889, 315, 440, 2638, 550, 6423, 29892, 2086, 29889, 1174, 5516, 344, 29889, 26460, 491, 13585, 292, 310, 11103, 14368, 470, 491, 19098, 2531, 29877, 8204, 297, 16404, 12625, 29892, 14175, 2638, 550, 7091, 278, 23026, 29879, 310, 1370, 408, 896, 2360, 750, 1434, 29889, 13, 6295, 920, 1258, 1316, 263, 4029, 29878, 928, 1370, 2041, 304, 367, 29973, 739, 29915, 29879, 12092, 29889, 7440, 372, 505, 304, 367, 408, 4319, 408, 372, 471, 29973, 1939, 29889, 2180, 3203, 29892, 3444, 1033, 505, 11084, 23151, 8859, 29889, 10949, 670, 9121, 1321, 309, 20908, 29889, 1205, 304, 2274, 445, 5828, 29892, 366, 505, 304, 748, 1250, 297, 931, 29889, 13, 28350, 402, 1525, 1299, 399, 1718, 29892, 2787, 3362, 306, 29892, 471, 278, 13949, 1195, 362, 310, 263, 3652, 310, 8937, 267, 975, 7824, 3081, 322, 2761, 310, 278, 350, 2235, 550, 29889, 13, 1576, 29682, 273, 3362, 310, 29871, 29896, 29947, 29945, 29941, 29994, 29896, 29947, 29945, 29953, 29892, 278, 3330, 307, 29899, 29903, 21473, 713, 3362, 310, 29871, 29896, 29947, 29945, 29929, 322, 278, 3330, 307, 29899, 4040, 1558, 713, 3362, 310, 29871, 29896, 29947, 29953, 29953, 23546, 1127, 278, 3104, 701, 297, 278, 350, 2235, 550, 29889, 450, 20923, 29899, 4040, 1558, 713, 3362, 310, 29871, 29896, 29947, 29955, 29900, 29899, 29896, 29947, 29955, 29896, 7841, 263, 716, 443, 2164, 9556, 408, 278, 28526, 3081, 310, 4092, 408, 7027, 14933, 322, 3444, 892, 297, 4845, 457, 313, 392, 274, 19226, 278, 365, 2207, 457, 29899, 2499, 29879, 815, 5120, 515, 3444, 304, 9556, 467, 1126, 278, 11688, 578, 29899, 29911, 29641, 728, 3362, 310, 29871, 29896, 29947, 29955, 29955, 29994, 29896, 29947, 29955, 29947, 16035, 1573, 278, 350, 2235, 273, 5694, 342, 29889, 13, 4806, 5790, 19079, 8429, 7539, 583, 411, 23505, 19079, 29889, 4284, 574, 1847, 7539, 583, 29889, 21080, 20017, 297, 278, 350, 2235, 550, 310, 1716, 278, 2107, 322, 451, 577, 2107, 10801, 4340, 6013, 358, 287, 278, 350, 2235, 273, 5694, 342, 29889, 21987, 537, 5751, 310, 278, 13638, 5331, 304, 4797, 391, 337, 12562, 291, 29889, 1763, 439, 264, 305, 445, 337, 12562, 291, 29892, 278, 3330, 307, 29899, 29950, 686, 13956, 13378, 385, 13996, 287, 1816, 15959, 29889, 13, 4013, 338, 263, 1407, 18580, 706, 4955, 541, 366, 679, 278, 7623, 29889, 1670, 471, 263, 3287, 310, 27343, 29889, 1126, 263, 3287, 310, 2743, 29879, 304, 1492, 29889, 1126, 20123, 304, 1072, 475, 29889, 1394, 304, 3763, 11581, 29889, 1126, 769, 373, 16340, 29892, 278, 29871, 29906, 29947, 386, 310, 5306, 29871, 29896, 29929, 29896, 29946, 29892, 2595, 700, 446, 11694, 19693, 310, 17362, 16669, 7745, 8339, 1365, 29889, 1670, 263, 612, 688, 17464, 4797, 391, 29892, 402, 485, 4115, 29877, 14771, 29886, 29892, 20105, 262, 630, 1075, 29889, 1126, 769, 599, 310, 1906, 875, 574, 1847, 7539, 583, 413, 17840, 297, 322, 263, 3186, 471, 472, 1370, 29889, 13, 1806, 399, 3289, 6093, 10416, 12239, 322, 3438, 20409, 1370, 304, 2635, 29889, 1939, 697, 2714, 372, 723, 367, 29892, 2466, 29889, 887, 1074, 29892, 896, 10972, 263, 3287, 515, 278, 1588, 375, 1039, 550, 2645, 278, 20923, 29899, 4040, 1558, 713, 3362, 310, 29871, 29896, 29947, 29955, 29900, 29899, 29896, 29947, 29955, 29896, 29889, 8449, 471, 12086, 322, 21204, 573, 29889, 11511, 29892, 896, 10972, 2217, 515, 278, 3082, 12886, 3362, 313, 29896, 29947, 29953, 29896, 29899, 29896, 29947, 29953, 29945 ]
1,024
CommonCrawl
1.008783
0.98696
2.332205
1.25071
). For 4 bloody years the Americans demonstrated warfare where technology was ahead of military tactics. And World War I was to look more like the American Civil War than the Franco-Prussian War of 1870-1871. Long. And bloody. A war of attrition where you don't necessarily win a decisive battle. The other side just runs out of soldiers to kill. World War I (1914 to 1918) saw horrific killing fields. Artillery bombardments that would last for days. Attacks through barbed wire into raking machine-gun fire. Poison gas. The death toll was staggering. Great Britain and her Imperial forces lost over a million killed, over 2 million maimed and wounded. France lost slightly more killed and almost twice in maimed and wounded. Civilians were not untouched by war, either. Blockade starved civilian populations. The War devastated and impoverished these two countries. They won the war, but only barely. The entry of America was just too much. More soldiers and material. The killing could go on indefinitely. So all sides sued for peace. With the Americans on the Allied side, though, they were in a position to dictate the terms of the peace. And boy did they. THE TREATY OF VERSAILLES was punitive. In the run up to war, there were really no innocents. But to the victors go the spoils. Official blame for the war fell on Germany. She lost territory (France got back the Loraine-Alsace region) and all her colonies. And she had to pay reparations. The Germans were pissed. The Allies hoped to mitigate their war losses by German tribute. But it was too much. Even a member of the British delegation at Versailles, economist John Maynard Keynes, thought so. In an effort to restore Great Britain and France as the dominant European powers, the allies probably went too far. The economic burdens on Germany were too great. Then hyper-inflation met Great Depression. Angry socialists, communists and nationalists tore the nation asunder. Until a uniter came along. Adolf Hitler. HITLER ROSE TO power legally. Then he consolidated his power ruthlessly. He renounced the Versailles Treaty. And did a lot of things that showed his ultimate intentions. Including writing a book years earlier about his ultimate intentions. Mein Kampf. Which was pretty detailed. To anyone who read it. One of his first provocative acts was to place a negligible military force into the Rhineland in 1936. The German High Command was a little skittish about this idea for they did not believe they had sufficient strength to successfully fight off a French response. The French had superior numbers in military power. But they were financially weak. They had poured a fortune into the line of fortresses known as the Maginot Line. They could not afford all out war with Germany, too, and they thought a military conflict in the Rhineland may lead to that. And after going through the horrors of the Great War, they had no desire to do it again. Whether it was a question of could or would is still debated. But had they, one wonders how such action would have altered the course of history. Hitler continued in a string of actions, explaining away each as harmless with no higher purpose. Great Britain and France were growing uneasy but accepted his statements. They wanted to believe. They would do just about anything to avoid a return to war. Even give away another sovereign nation's land. THE SUDETENLAND WAS an area along the Czechoslovakia side of their border with Germany with German inhabitants. Hitler wanted to reincorporate them into the German state. He promised this would be his last territorial acquisition. And, at Munich in September of 1938, Great Britain and France took him at his word. With Czechoslovakia not even present at this conference, they concluded the pact that ceded the Sudetenland to Germany. All's well that ends well. British Prime Minister Neville Chamberlain returned to London with a copy of the Munich Pact. He would give a speech declaring they got "peace for our time." But they didn't. Hitler soon took the rest of Czechoslovakia. With his two flanks protected, Hitler invaded Poland in 1939 and launched the world into war. Again. Only this time, it would be worse.
[ 467, 1152, 29871, 29946, 6668, 1486, 2440, 278, 23035, 28585, 1370, 24658, 988, 15483, 471, 14432, 310, 9121, 28476, 1199, 29889, 1126, 2787, 3362, 306, 471, 304, 1106, 901, 763, 278, 3082, 12886, 3362, 1135, 278, 20923, 29899, 4040, 1558, 713, 3362, 310, 29871, 29896, 29947, 29955, 29900, 29899, 29896, 29947, 29955, 29896, 29889, 6242, 29889, 1126, 6668, 1486, 29889, 319, 1370, 310, 12421, 654, 988, 366, 1016, 29915, 29873, 12695, 5401, 263, 22442, 573, 10555, 29889, 450, 916, 2625, 925, 6057, 714, 310, 13936, 304, 12088, 29889, 13, 14058, 3362, 306, 313, 29896, 29929, 29896, 29946, 304, 29871, 29896, 29929, 29896, 29947, 29897, 4446, 4029, 29878, 928, 23393, 4235, 29889, 3012, 19486, 13585, 538, 1860, 393, 723, 1833, 363, 3841, 29889, 6212, 26514, 1549, 2594, 2580, 8014, 964, 1153, 9292, 4933, 29899, 28798, 3974, 29889, 3929, 2285, 10489, 29889, 450, 4892, 304, 645, 471, 380, 9921, 292, 29889, 7027, 14933, 322, 902, 21080, 8249, 5714, 975, 263, 7284, 9445, 29892, 975, 29871, 29906, 7284, 611, 326, 287, 322, 19747, 29889, 3444, 5714, 10029, 901, 9445, 322, 4359, 8951, 297, 611, 326, 287, 322, 19747, 29889, 315, 440, 2638, 550, 892, 451, 443, 16747, 287, 491, 1370, 29892, 2845, 29889, 15658, 1943, 5810, 1490, 7631, 713, 23093, 29889, 13, 1576, 3362, 2906, 579, 630, 322, 2411, 957, 3276, 1438, 1023, 10916, 29889, 2688, 2113, 278, 1370, 29892, 541, 871, 16079, 368, 29889, 450, 6251, 310, 6813, 471, 925, 2086, 1568, 29889, 5853, 13936, 322, 5518, 29889, 450, 23393, 1033, 748, 373, 297, 1753, 18639, 29889, 1105, 599, 11192, 480, 287, 363, 10776, 29889, 2973, 278, 23035, 373, 278, 838, 2957, 2625, 29892, 2466, 29892, 896, 892, 297, 263, 2602, 304, 9657, 403, 278, 4958, 310, 278, 10776, 29889, 1126, 8023, 1258, 896, 29889, 13, 28350, 323, 1525, 1299, 29979, 8079, 478, 1001, 8132, 6227, 17101, 471, 6035, 3321, 29889, 512, 278, 1065, 701, 304, 1370, 29892, 727, 892, 2289, 694, 21458, 1237, 29889, 1205, 304, 278, 6879, 943, 748, 278, 13345, 2719, 29889, 10564, 1999, 420, 363, 278, 1370, 8379, 373, 9556, 29889, 2296, 5714, 20123, 313, 16066, 2355, 1250, 278, 365, 2207, 457, 29899, 2499, 29879, 815, 5120, 29897, 322, 599, 902, 8104, 583, 29889, 1126, 1183, 750, 304, 5146, 337, 862, 800, 29889, 450, 7287, 550, 892, 282, 790, 287, 29889, 13, 1576, 838, 3687, 24936, 304, 1380, 335, 403, 1009, 1370, 28495, 491, 5332, 260, 2666, 29889, 1205, 372, 471, 2086, 1568, 29889, 7753, 263, 4509, 310, 278, 4908, 16000, 362, 472, 10138, 29874, 7545, 29892, 7766, 391, 2259, 2610, 29876, 538, 4813, 948, 267, 29892, 2714, 577, 29889, 512, 385, 7225, 304, 17749, 7027, 14933, 322, 3444, 408, 278, 28526, 7824, 10801, 29892, 278, 394, 3687, 3117, 3512, 2086, 2215, 29889, 450, 17407, 6866, 21518, 373, 9556, 892, 2086, 2107, 29889, 1987, 11266, 29899, 13453, 362, 1539, 7027, 897, 2590, 29889, 530, 14793, 5264, 2879, 29892, 3817, 2879, 322, 4797, 2879, 260, 487, 278, 5233, 408, 5062, 29889, 28609, 263, 443, 1524, 2996, 3412, 29889, 21834, 23151, 29889, 13, 29950, 1806, 29931, 1001, 16641, 1660, 7495, 3081, 2814, 635, 29889, 1987, 540, 1136, 17211, 630, 670, 3081, 364, 2806, 23769, 29889, 940, 4325, 20979, 278, 10138, 29874, 7545, 6479, 11156, 29889, 1126, 1258, 263, 3287, 310, 2712, 393, 10018, 670, 8494, 6490, 7609, 1080, 29889, 512, 22368, 5007, 263, 3143, 2440, 8859, 1048, 670, 8494, 6490, 7609, 1080, 29889, 2191, 262, 476, 16817, 29889, 8449, 471, 5051, 13173, 29889, 1763, 5019, 1058, 1303, 372, 29889, 13, 6716, 310, 670, 937, 25725, 1230, 14741, 471, 304, 2058, 263, 3480, 3473, 1821, 9121, 4889, 964, 278, 7861, 262, 14045, 297, 29871, 29896, 29929, 29941, 29953, 29889, 450, 5332, 5057, 10516, 471, 263, 2217, 2071, 986, 728, 1048, 445, 2969, 363, 896, 1258, 451, 4658, 896, 750, 8002, 9324, 304, 8472, 8589, 1283, 263, 5176, 2933, 29889, 450, 5176, 750, 11558, 3694, 297, 9121, 3081, 29889, 1205, 896, 892, 11782, 5584, 8062, 29889, 2688, 750, 7446, 1127, 263, 19717, 964, 278, 1196, 310, 363, 509, 15322, 2998, 408, 278, 3561, 262, 327, 7407, 29889, 2688, 1033, 451, 21750, 599, 714, 1370, 411, 9556, 29892, 2086, 29892, 322, 896, 2714, 263, 9121, 14529, 297, 278, 7861, 262, 14045, 1122, 3275, 304, 393, 29889, 1126, 1156, 2675, 1549, 278, 23026, 29879, 310, 278, 7027, 3362, 29892, 896, 750, 694, 13521, 304, 437, 372, 1449, 29889, 26460, 372, 471, 263, 1139, 310, 1033, 470, 723, 338, 1603, 2553, 630, 29889, 1205, 750, 896, 29892, 697, 281, 18452, 920, 1316, 3158, 723, 505, 10551, 287, 278, 3236, 310, 4955, 29889, 13, 29950, 277, 1358, 7572, 297, 263, 1347, 310, 8820, 29892, 24232, 3448, 1269, 408, 4023, 828, 404, 411, 694, 6133, 6437, 29889, 7027, 14933, 322, 3444, 892, 15678, 1597, 8995, 541, 9259, 670, 9506, 29889, 2688, 5131, 304, 4658, 29889, 2688, 723, 437, 925, 1048, 3099, 304, 4772, 263, 736, 304, 1370, 29889, 7753, 2367, 3448, 1790, 577, 369, 7577, 5233, 29915, 29879, 2982, 29889, 13, 28350, 20134, 2287, 29911, 1430, 29931, 9468, 399, 3289, 385, 4038, 3412, 278, 21489, 24022, 557, 423, 2625, 310, 1009, 5139, 411, 9556, 411, 5332, 19681, 29889, 23151, 5131, 304, 15561, 2616, 1971, 403, 963, 964, 278, 5332, 2106, 29889, 940, 22399, 445, 723, 367, 670, 1833, 29740, 1274, 23493, 29889, 1126, 29892, 472, 13564, 436, 297, 3839, 310, 29871, 29896, 29929, 29941, 29947, 29892, 7027, 14933, 322, 3444, 3614, 1075, 472, 670, 1734, 29889, 2973, 21489, 24022, 557, 423, 451, 1584, 2198, 472, 445, 21362, 29892, 896, 22834, 278, 282, 627, 393, 274, 19226, 278, 8383, 6302, 1049, 304, 9556, 29889, 2178, 29915, 29879, 1532, 393, 10614, 1532, 29889, 13, 29933, 768, 728, 15512, 7668, 2448, 4909, 25037, 7420, 4133, 304, 4517, 411, 263, 3509, 310, 278, 13564, 436, 349, 627, 29889, 940, 723, 2367, 263, 12032, 25136, 896, 2355, 376, 412, 815, 363, 1749, 931, 1213, 1205, 896, 3282, 29915, 29873, 29889, 23151, 4720, 3614, 278, 1791, 310, 21489, 24022, 557, 423, 29889, 2973, 670, 1023, 1652, 1331, 6364, 29892, 23151, 2437, 11932, 18898, 297, 29871, 29896, 29929, 29941, 29929, 322, 15241, 278, 3186, 964, 1370, 29889, 11454, 29889, 9333, 445, 931, 29892, 372, 723, 367, 15029, 29889 ]
1,024
CommonCrawl
0.563185
0.935049
1.690231
0.208452
© 2020 myhowbook.com We use cookies to analyze traffic, provide social media features and to personalise ads. We also share information about your use of our site with our analytics, social media and advertising partners who may combine it with other information that you've provided to them or that they've collected from your use of their services. Select cookie types you want to enable: [Show Details] Necessary cookies are lorem ipsum dolor sit amet. Statistics cookies are lorem ipsum dolor sit amet. Advertisement cookies are lorem ipsum dolor sit amet. Social Media Features cookies are lorem ipsum dolor sit amet. Read our Cookie Policy Close Eunice Gayson Biography By MyHowBook Team ⚈ Published On: 2014-12-04 13:01:43 Eunice Gayson's facts Date of Birth 1928-march-17 Nationality English Name on Birth Eunice Sargaison Place of Birth croydon Eunice Gayson is a very talented and evergreen actress of English Film Industry. She was born as Eunice Sargaison. Eunice was born in the year 1928 and celebrates her birthday in every 17th day of March. She was born in the very beautiful city of England name London. Her birth place is Croydon. She is professionally an actress who is active in this profession since 1948 to 1972. Her parent also motivates and inspires her in her work. Because of her huge ambition she is able to get this position in English film industry. Eunice Gayson is a very beautiful and mesmerizing actress of English film industry. She is slightly built up and have white complexion of face. Eunice speaks British accent. She has wavy brown hair with beautiful and fascinating eyes. She has maintained her figure and body very perfectly. She has a very good height. She has a very clean face. Eunice has a very good sense of fashion. She has a very beautiful smile. She has a very attractive body. Her acting and versatility to serve various roles really makes her a sensational and talented actress. Supported by her gorgeous face and attractive body figure, she is really a brilliant actress with gifted abilities and skills. She has gained century worth success in her early age. Eunice Gayson started her career from the very beginning. She struggle for many years and then finally gets chance in the big show. She has worked in many films. Her first appearance was in the film My Brother Jonathan which is released in the year 1948. She appeared in the film Melody in the dark in the same year. In the year 1950, she played in two films named To Have And To Hold and Dance Hall. In the year 1952, she played in the film Miss Robin Hood and Down Among the Z Men. In 1953, she appears in the film Street corner. Dance, Little Lady and One Just Man are the films released in the year 1954. In the year 1955 she played in the films Out of the clouds and Count of Twelve. Zarak and The Last Man to Hang?was the film released in 1956. Carry on Admiral was the film released in the year 1957. She has played in many other films like Light Fingers, The revenge of Frankenstein, Hello London, Dr. No, From Russia with Love, Danger Man, The Saint, The Avengers, Before the Fringe, The Adventurer, MasterChef etc. The renowned actress first got married to Leigh Vance in the year 1922. They were separated in the year 1994. Then she tied in the relationship with Brian Jackson. Because of several misunderstanding, they took divorce. Eunice has earned millions of dollars from the various films and also gets the love and motivation from her fans. Expanding and adapting her power of success utilizing her abilities and talent Eunice Gayson has drawn an irreplaceable and memorable place in the English film industry. The determination and her capability of years have taken her to stand in the social and economic position where she is today. She stands as a role model and motivator to the newcomers and for those people who seek the light of success through their own ability and determination. She gives perfect example that the success could be gain no other than hard work. D
[ 29871, 30211, 29871, 29906, 29900, 29906, 29900, 590, 3525, 2909, 29889, 510, 13, 4806, 671, 21046, 304, 27599, 12469, 29892, 3867, 5264, 5745, 5680, 322, 304, 7333, 895, 594, 29879, 29889, 1334, 884, 6232, 2472, 1048, 596, 671, 310, 1749, 3268, 411, 1749, 16114, 1199, 29892, 5264, 5745, 322, 18811, 5921, 22056, 1058, 1122, 14405, 372, 411, 916, 2472, 393, 366, 29915, 345, 4944, 304, 963, 470, 393, 896, 29915, 345, 16531, 515, 596, 671, 310, 1009, 5786, 29889, 13, 3549, 15327, 4072, 366, 864, 304, 9025, 29901, 518, 8964, 25577, 29962, 13, 29940, 687, 404, 653, 21046, 526, 301, 3668, 23421, 22224, 7845, 27315, 29889, 13, 9513, 6765, 21046, 526, 301, 3668, 23421, 22224, 7845, 27315, 29889, 13, 3253, 1765, 275, 882, 21046, 526, 301, 3668, 23421, 22224, 7845, 27315, 29889, 13, 6295, 1455, 8213, 5169, 3698, 21046, 526, 301, 3668, 23421, 22224, 7845, 27315, 29889, 13, 6359, 1749, 17278, 347, 25219, 23186, 13, 29923, 348, 625, 402, 1036, 265, 17093, 13, 2059, 1619, 5328, 10967, 8583, 29871, 229, 157, 139, 8042, 3726, 1551, 29901, 29871, 29906, 29900, 29896, 29946, 29899, 29896, 29906, 29899, 29900, 29946, 29871, 29896, 29941, 29901, 29900, 29896, 29901, 29946, 29941, 13, 29923, 348, 625, 402, 1036, 265, 29915, 29879, 17099, 13, 2539, 310, 350, 7515, 29871, 29896, 29929, 29906, 29947, 29899, 29885, 1279, 29899, 29896, 29955, 13, 27325, 537, 4223, 13, 1170, 373, 350, 7515, 382, 348, 625, 317, 1191, 8376, 13, 22150, 310, 350, 7515, 8182, 2941, 265, 13, 29923, 348, 625, 402, 1036, 265, 338, 263, 1407, 5969, 14927, 322, 3926, 12692, 20993, 310, 4223, 4643, 12157, 719, 29889, 2296, 471, 6345, 408, 382, 348, 625, 317, 1191, 8376, 29889, 382, 348, 625, 471, 6345, 297, 278, 1629, 29871, 29896, 29929, 29906, 29947, 322, 10894, 1078, 902, 12060, 3250, 297, 1432, 29871, 29896, 29955, 386, 2462, 310, 4779, 29889, 2296, 471, 6345, 297, 278, 1407, 9560, 4272, 310, 5408, 1024, 4517, 29889, 2439, 12060, 2058, 338, 8764, 2941, 265, 29889, 2296, 338, 6351, 635, 385, 20993, 1058, 338, 6136, 297, 445, 6351, 1951, 29871, 29896, 29929, 29946, 29947, 304, 29871, 29896, 29929, 29955, 29906, 29889, 2439, 3847, 884, 17385, 1078, 322, 8681, 2658, 902, 297, 902, 664, 29889, 7311, 310, 902, 12176, 3181, 654, 1183, 338, 2221, 304, 679, 445, 2602, 297, 4223, 2706, 13661, 29889, 13, 29923, 348, 625, 402, 1036, 265, 338, 263, 1407, 9560, 322, 4883, 1050, 5281, 20993, 310, 4223, 2706, 13661, 29889, 2296, 338, 10029, 4240, 701, 322, 505, 4796, 4280, 291, 310, 3700, 29889, 382, 348, 625, 7726, 29879, 4908, 1035, 296, 29889, 2296, 756, 281, 5301, 17354, 11315, 411, 9560, 322, 21028, 262, 1218, 5076, 29889, 2296, 756, 19949, 902, 4377, 322, 3573, 1407, 7970, 29889, 2296, 756, 263, 1407, 1781, 3171, 29889, 2296, 756, 263, 1407, 5941, 3700, 29889, 382, 348, 625, 756, 263, 1407, 1781, 4060, 310, 13460, 29889, 2296, 756, 263, 1407, 9560, 17819, 29889, 2296, 756, 263, 1407, 13978, 573, 3573, 29889, 2439, 16684, 322, 1224, 271, 1793, 304, 9080, 5164, 16178, 2289, 3732, 902, 263, 4771, 1288, 322, 5969, 14927, 20993, 29889, 13, 14039, 287, 491, 902, 330, 3890, 681, 3700, 322, 13978, 573, 3573, 4377, 29892, 1183, 338, 2289, 263, 27592, 20993, 411, 19797, 287, 633, 9770, 322, 25078, 29889, 2296, 756, 17515, 6462, 7088, 2551, 297, 902, 4688, 5046, 29889, 382, 348, 625, 402, 1036, 265, 4687, 902, 6413, 515, 278, 1407, 6763, 29889, 2296, 21117, 363, 1784, 2440, 322, 769, 7146, 4947, 8825, 297, 278, 4802, 1510, 29889, 2296, 756, 3796, 297, 1784, 12298, 29889, 2439, 937, 10097, 471, 297, 278, 2706, 1619, 4358, 721, 20983, 607, 338, 5492, 297, 278, 1629, 29871, 29896, 29929, 29946, 29947, 29889, 2296, 7470, 297, 278, 2706, 6286, 1486, 297, 278, 6501, 297, 278, 1021, 1629, 29889, 512, 278, 1629, 29871, 29896, 29929, 29945, 29900, 29892, 1183, 5318, 297, 1023, 12298, 4257, 1763, 6975, 1126, 1763, 21771, 322, 22440, 6573, 29889, 512, 278, 1629, 29871, 29896, 29929, 29945, 29906, 29892, 1183, 5318, 297, 278, 2706, 4750, 13104, 379, 2092, 322, 9943, 17302, 278, 796, 7567, 29889, 512, 29871, 29896, 29929, 29945, 29941, 29892, 1183, 5692, 297, 278, 2706, 7103, 11155, 29889, 22440, 29892, 11143, 10040, 322, 3118, 3387, 2315, 526, 278, 12298, 5492, 297, 278, 1629, 29871, 29896, 29929, 29945, 29946, 29889, 512, 278, 1629, 29871, 29896, 29929, 29945, 29945, 1183, 5318, 297, 278, 12298, 4451, 310, 278, 27091, 322, 3917, 310, 8168, 13841, 29889, 22453, 557, 322, 450, 9208, 2315, 304, 379, 574, 29973, 11102, 278, 2706, 5492, 297, 29871, 29896, 29929, 29945, 29953, 29889, 1704, 719, 373, 23946, 284, 471, 278, 2706, 5492, 297, 278, 1629, 29871, 29896, 29929, 29945, 29955, 29889, 2296, 756, 5318, 297, 1784, 916, 12298, 763, 12790, 383, 19936, 29892, 450, 20957, 479, 310, 1352, 1717, 5465, 29892, 15043, 4517, 29892, 4942, 29889, 1939, 29892, 3645, 12710, 411, 8155, 29892, 360, 4600, 2315, 29892, 450, 4107, 29892, 450, 28943, 5743, 29892, 10949, 278, 4693, 19144, 29892, 450, 21255, 9945, 29892, 9082, 26856, 29888, 2992, 29889, 13, 1576, 4325, 26689, 20993, 937, 2355, 8300, 304, 951, 1141, 478, 749, 297, 278, 1629, 29871, 29896, 29929, 29906, 29906, 29889, 2688, 892, 13055, 297, 278, 1629, 29871, 29896, 29929, 29929, 29946, 29889, 1987, 1183, 21351, 297, 278, 9443, 411, 15733, 11886, 29889, 7311, 310, 3196, 19818, 11235, 29892, 896, 3614, 25074, 346, 29889, 13, 29923, 348, 625, 756, 20591, 14746, 310, 17208, 515, 278, 5164, 12298, 322, 884, 4947, 278, 5360, 322, 17385, 362, 515, 902, 24909, 29889, 12027, 392, 292, 322, 7744, 292, 902, 3081, 310, 2551, 3667, 5281, 902, 633, 9770, 322, 24242, 382, 348, 625, 402, 1036, 265, 756, 12061, 385, 3805, 6506, 519, 322, 26959, 519, 2058, 297, 278, 4223, 2706, 13661, 29889, 450, 3683, 3381, 322, 902, 2117, 3097, 310, 2440, 505, 4586, 902, 304, 2317, 297, 278, 5264, 322, 17407, 2602, 988, 1183, 338, 9826, 29889, 2296, 15028, 408, 263, 6297, 1904, 322, 17385, 1061, 304, 278, 716, 510, 414, 322, 363, 1906, 2305, 1058, 16508, 278, 3578, 310, 2551, 1549, 1009, 1914, 11509, 322, 3683, 3381, 29889, 2296, 4076, 4922, 1342, 393, 278, 2551, 1033, 367, 11581, 694, 916, 1135, 2898, 664, 29889, 13, 29928 ]
1,024
CommonCrawl
-0.682587
-1.759153
-0.919918
-1.243627
TreeHouse (THS) doesn't possess the right combination of the two key ingredients for a likely earnings beat in its upcoming report. Get prepared with the key expectations. It has been about a month since the last earnings report for Scientific Games (SGMS). Shares have lost about 27% in that time frame, underperforming the S&P 500. Will the recent negative trend continue leading up to its next earnings release, or is Scientific Games due for a breakout? Before we dive into how investors and analysts have reacted as of late, let's take a quick look at its most recent earnings report in order to get a better handle on the important catalysts. Scientific Games Corporation reported fourth-quarter 2018 earnings of $2.21 per share against the year-ago quarter's loss of 48 cents. Revenues increased 8% from the year-ago quarter to $885.7 million. Robust performance of Lottery and Social segment drove the top line. The Zacks Consensus Estimate for earnings and revenues was pegged at 10 cents and $874 million, respectively. Gaming Segment (53.1% of total revenues) revenues declined 4.6% year over year to $469.8 million. Gaming operations declined 11% to $151.4 million due to an unfavorable impact from revenue recognition accounting, effective from 2018. While Gaming Systems revenues increased 10% year over year, Gaming Machine Sales declined 12% from the year-ago quarter. Table Products sales witnessed an increase of 20% from the year-ago period driven by robust demand for shufflers and table products. The increase in Gaming System revenues was due to ongoing system installations in Canada, along with an increase in hardware sales, primarily iVIEW4. Notably, Gaming machine average sales price declined 4%. Further, net sales of iVIEW 4 was recorded at 105,000 units till December 2018, including 17,000 in the fourth quarter. Lottery Segment (26.1% of total revenues) revenues were up 6.2% from the prior-year quarter to $230.7 million. The company benefited from higher denomination ticket sales and constant innovations. Revenues from Lottery Systems increased 22% due to domestic organic growth. Moreover, higher multi-state jackpot activity coupled with new lottery system installations in Kansas and new investment in Keno in Pennsylvania boosted revenues. Meanwhile, Instant Products stayed flat year over year. Social Segment (12.8% of total revenues) revenues increased 19% year over year to $113.7 million. Notably, average daily revenues from daily active users in the fourth quarter increased significantly. Moreover, average monthly active users increased from 7.6 million in the year-ago quarter to 8.4 million users. Further, the company benefited from "growing popularity" of Bingo Showdown apps as well as the new MONOPOLY Slots-themed social casino app launched recently. Significant growth in core apps including Jackpot Party Social Casino also aided the company. Digital Segment (8.1% of revenues) revenues grew to $71.5 million compared with $17.8 million in the year-ago quarter, of which $51.7 million came from NYX Gaming Group Limited. In the reported quarter, Scientific Games announced its multi-state lottery linked lottery game, DEAL OR NO DEAL in partnership with Endemol Shine Gaming. Further, the company launched multiple digital games with Norsk Tipping, Norway's national lottery operator and World Lottery Association member. Total revenues in 2018 were $3.36 billion, up 9% year over year. Net loss per share came in at $3.87, wider than a loss of $2.72 per share in 2017. Consolidated attributable earnings before interest, taxes, depreciation and amortization (AEBITDA) increased 9% year over year to $1.33 billion. AEBITDA increased 6% from the year-ago period to $343.5 million.
[ 15472, 29950, 1709, 313, 4690, 29903, 29897, 1838, 29915, 29873, 22592, 278, 1492, 10296, 310, 278, 1023, 1820, 2348, 1127, 10070, 363, 263, 5517, 2326, 11753, 16646, 297, 967, 701, 11506, 3461, 29889, 3617, 13240, 411, 278, 1820, 2149, 800, 29889, 13, 3112, 756, 1063, 1048, 263, 4098, 1951, 278, 1833, 2326, 11753, 3461, 363, 23753, 928, 12482, 313, 26016, 4345, 467, 1383, 5114, 505, 5714, 1048, 29871, 29906, 29955, 29995, 297, 393, 931, 3515, 29892, 1090, 19826, 292, 278, 317, 29987, 29925, 29871, 29945, 29900, 29900, 29889, 13, 12984, 278, 7786, 8178, 534, 355, 6773, 8236, 701, 304, 967, 2446, 2326, 11753, 6507, 29892, 470, 338, 23753, 928, 12482, 2861, 363, 263, 2867, 449, 29973, 10949, 591, 270, 573, 964, 920, 13258, 943, 322, 3483, 858, 29879, 505, 7657, 287, 408, 310, 5683, 29892, 1235, 29915, 29879, 2125, 263, 4996, 1106, 472, 967, 1556, 7786, 2326, 11753, 3461, 297, 1797, 304, 679, 263, 2253, 4386, 373, 278, 4100, 17246, 858, 29879, 29889, 13, 29903, 15566, 928, 12482, 15025, 8967, 11582, 29899, 339, 4254, 29871, 29906, 29900, 29896, 29947, 2326, 11753, 310, 395, 29906, 29889, 29906, 29896, 639, 6232, 2750, 278, 1629, 29899, 4425, 12616, 29915, 29879, 6410, 310, 29871, 29946, 29947, 274, 1237, 29889, 13, 1123, 854, 1041, 11664, 29871, 29947, 29995, 515, 278, 1629, 29899, 4425, 12616, 304, 395, 29947, 29947, 29945, 29889, 29955, 7284, 29889, 6417, 504, 4180, 310, 20815, 22005, 322, 10307, 10768, 26603, 278, 2246, 1196, 29889, 13, 1576, 796, 26514, 2138, 8841, 2661, 6490, 363, 2326, 11753, 322, 20957, 1041, 471, 282, 387, 3192, 472, 29871, 29896, 29900, 274, 1237, 322, 395, 29947, 29955, 29946, 7284, 29892, 8307, 29889, 13, 29954, 11500, 6667, 358, 313, 29945, 29941, 29889, 29896, 29995, 310, 3001, 20957, 1041, 29897, 20957, 1041, 4845, 1312, 29871, 29946, 29889, 29953, 29995, 1629, 975, 1629, 304, 395, 29946, 29953, 29929, 29889, 29947, 7284, 29889, 13, 29954, 11500, 6931, 4845, 1312, 29871, 29896, 29896, 29995, 304, 395, 29896, 29945, 29896, 29889, 29946, 7284, 2861, 304, 385, 29395, 17118, 519, 10879, 515, 337, 9947, 19679, 3633, 292, 29892, 11828, 515, 29871, 29906, 29900, 29896, 29947, 29889, 13, 8809, 488, 402, 11500, 23985, 20957, 1041, 11664, 29871, 29896, 29900, 29995, 1629, 975, 1629, 29892, 402, 11500, 6189, 28389, 4845, 1312, 29871, 29896, 29906, 29995, 515, 278, 1629, 29899, 4425, 12616, 29889, 6137, 10969, 29879, 16538, 16277, 287, 385, 7910, 310, 29871, 29906, 29900, 29995, 515, 278, 1629, 29899, 4425, 3785, 18225, 491, 16424, 9667, 363, 528, 3096, 9306, 322, 1591, 9316, 29889, 13, 1576, 7910, 297, 402, 11500, 2184, 20957, 1041, 471, 2861, 304, 373, 17696, 1788, 2601, 800, 297, 7400, 29892, 3412, 411, 385, 7910, 297, 12837, 16538, 29892, 19434, 474, 29963, 8673, 29956, 29946, 29889, 2216, 2197, 29892, 402, 11500, 4933, 6588, 16538, 8666, 4845, 1312, 29871, 29946, 15543, 8725, 29892, 7787, 16538, 310, 474, 29963, 8673, 29956, 29871, 29946, 471, 10478, 472, 29871, 29896, 29900, 29945, 29892, 29900, 29900, 29900, 10340, 3428, 5846, 29871, 29906, 29900, 29896, 29947, 29892, 3704, 29871, 29896, 29955, 29892, 29900, 29900, 29900, 297, 278, 11582, 12616, 29889, 13, 29931, 327, 22005, 6667, 358, 313, 29906, 29953, 29889, 29896, 29995, 310, 3001, 20957, 1041, 29897, 20957, 1041, 892, 701, 29871, 29953, 29889, 29906, 29995, 515, 278, 7536, 29899, 6360, 12616, 304, 395, 29906, 29941, 29900, 29889, 29955, 7284, 29889, 450, 5001, 7795, 1573, 515, 6133, 972, 290, 3381, 23381, 16538, 322, 4868, 24233, 800, 29889, 13, 1123, 854, 1041, 515, 20815, 22005, 23985, 11664, 29871, 29906, 29906, 29995, 2861, 304, 21849, 2894, 293, 14321, 29889, 12808, 29892, 6133, 2473, 29899, 3859, 28015, 17765, 6354, 7303, 29881, 411, 716, 3287, 22005, 1788, 2601, 800, 297, 20029, 322, 716, 13258, 358, 297, 476, 8154, 297, 16636, 14505, 287, 20957, 1041, 29889, 25065, 29892, 2799, 424, 10969, 29879, 27661, 12151, 1629, 975, 1629, 29889, 13, 6295, 1455, 6667, 358, 313, 29896, 29906, 29889, 29947, 29995, 310, 3001, 20957, 1041, 29897, 20957, 1041, 11664, 29871, 29896, 29929, 29995, 1629, 975, 1629, 304, 395, 29896, 29896, 29941, 29889, 29955, 7284, 29889, 2216, 2197, 29892, 6588, 14218, 20957, 1041, 515, 14218, 6136, 4160, 297, 278, 11582, 12616, 11664, 16951, 29889, 12808, 29892, 6588, 4098, 368, 6136, 4160, 11664, 515, 29871, 29955, 29889, 29953, 7284, 297, 278, 1629, 29899, 4425, 12616, 304, 29871, 29947, 29889, 29946, 7284, 4160, 29889, 13, 29943, 332, 721, 29892, 278, 5001, 7795, 1573, 515, 376, 29887, 798, 292, 5972, 537, 29908, 310, 350, 20191, 7704, 3204, 11446, 408, 1532, 408, 278, 716, 341, 1164, 4590, 5607, 29979, 14866, 1862, 29899, 386, 22580, 5264, 3209, 1789, 623, 15241, 10325, 29889, 9954, 928, 424, 14321, 297, 7136, 11446, 3704, 5457, 17765, 9173, 10307, 6960, 1789, 884, 263, 2618, 278, 5001, 29889, 13, 27103, 6667, 358, 313, 29947, 29889, 29896, 29995, 310, 20957, 1041, 29897, 20957, 1041, 13631, 304, 395, 29955, 29896, 29889, 29945, 7284, 9401, 411, 395, 29896, 29955, 29889, 29947, 7284, 297, 278, 1629, 29899, 4425, 12616, 29892, 310, 607, 395, 29945, 29896, 29889, 29955, 7284, 2996, 515, 23526, 29990, 402, 11500, 6431, 28873, 29889, 13, 797, 278, 8967, 12616, 29892, 23753, 928, 12482, 9326, 967, 2473, 29899, 3859, 3287, 22005, 9024, 3287, 22005, 3748, 29892, 5012, 1964, 6323, 11698, 5012, 1964, 297, 22056, 4034, 411, 2796, 331, 324, 1383, 457, 402, 11500, 29889, 8725, 29892, 278, 5001, 15241, 2999, 13436, 8090, 411, 4186, 808, 323, 17347, 29892, 27440, 29915, 29879, 4797, 3287, 22005, 5455, 322, 2787, 20815, 22005, 7993, 4509, 29889, 13, 11536, 20957, 1041, 297, 29871, 29906, 29900, 29896, 29947, 892, 395, 29941, 29889, 29941, 29953, 24464, 29892, 701, 29871, 29929, 29995, 1629, 975, 1629, 29889, 12670, 6410, 639, 6232, 2996, 297, 472, 395, 29941, 29889, 29947, 29955, 29892, 25734, 1135, 263, 6410, 310, 395, 29906, 29889, 29955, 29906, 639, 6232, 297, 29871, 29906, 29900, 29896, 29955, 29889, 13, 13696, 17211, 630, 1098, 1091, 9246, 2326, 11753, 1434, 4066, 29892, 8818, 267, 29892, 1401, 4361, 362, 322, 626, 441, 2133, 313, 16036, 22698, 7698, 29897, 11664, 29871, 29929, 29995, 1629, 975, 1629, 304, 395, 29896, 29889, 29941, 29941, 24464, 29889, 13, 16036, 22698, 7698, 11664, 29871, 29953, 29995, 515, 278, 1629, 29899, 4425, 3785, 304, 395, 29941, 29946, 29941, 29889, 29945, 7284, 29889 ]
1,024
C4
-0.371484
-0.03829
0.882384
-0.449916
Native American Church | Néishté Kiva | Beyond Prophecy | Indian Reader | Signs Directory Sixth sense? Primitive tribes fled beaches long before tsunami struck By Neelesh Misra Posted January 5 2005, 9:05 AM EST PORT BLAIR, India -- Two days after a tsunami thrashed the island where his ancestors have lived for tens of thousands of years, a lone tribesman stood naked on the beach and looked up at a hovering coast guard helicopter. He then took out his bow and shot an arrow toward the rescue chopper. It was a signal the Sentinelese have sent out to the world for millennia: They want to be left alone. Isolated from the rest of the world, the tribesmen have learned nature's sights, sounds and smells in order to survive. Government officials and anthropologists believe that ancient knowledge of the movement of wind, sea and birds may have saved the five indigenous tribes on the Indian archipelago of Andaman and Nicobar Islands from the tsunami that hit the Asian coastline Dec. 26. "They can smell the wind. They can gauge the depth of the sea with the sound of their oars. They have a sixth sense which we don't possess," said Ashish Roy, a local environmentalist and lawyer who has called on the courts to protect the tribes by preventing their contact with the outside world. The tribes live the most ancient, nomadic lifestyle known to man, frozen in their Paleolithic past. Many produce fire by rubbing stones, fish and hunt with bow and arrow and live in leaf and straw huts. And they don't take kindly to intrusions. Anil Thapliyal, a commander in the Indian coast guard, said he spotted the lone tribesman on North Sentinel Island, a 23-square-mile key, on Dec. 28. "There was a naked Sentinelese man," Thapliyal said. "He came out and shot an arrow at the helicopter." According to varying estimates, there are only about 400 to 1,000 members alive today from the Great Andamanese, Onges, Jarawas, Sentinelese and Shompens. Some anthropological DNA studies indicate the generations may go back 70,000 years. They originated in Africa and migrated to India through Indonesia, anthropologists say. It appears that many tribesman fled the shores well before the waves hit the coast, where they would typically be fishing this time of year. After the tsunami, local officials spotted 41 Great Andamanese--out of 43 in a 2001 Indian census--who had fled the submerged portion of their Strait Island. They also reported seeing 73 Onges--out of 98 in the census--who fled to highland forests in Dugong Creek on the Little Andaman Island, or Hut Bay, a government anthropologist said. However, the fate of the three other tribes won't be known until officials complete a survey of the remote islands this week. Taking surveys of these people is dangerous work. The more than 500 islands across a 3,200-square-mile chain in the southern reaches of the Bay of Bengal appear at first glance to be a tropical paradise. But one of the earliest foreign visitors, Marco Polo, called the atolls "the land of the head hunters." Roman geographer Claudius Ptolemaeus called the Andamans the "islands of the cannibals." The Sentinelese are fiercely protective of their coral reef-ringed terrain. They used to shoot arrows at government officials who came ashore offering gifts on the beach. The Jarawas had armed clashes with authorities until the 1990s, killing several police officers. Samir Acharya, head of the independent Society for Andaman and Nicobar Ecology, said the Jarawas were peaceful until the British, and later the Indians, began encroaching on their territory. British bullets killed thousands of bow-wielding Jarawas in 1859. Over the past few years, however, relations have improved. The government has banned interaction with the tribes, and even taking their pictures is an offense. Many tribe members have visited Port Blair, capital of the Indian-administered territory
[ 19042, 3082, 6291, 891, 27911, 275, 400, 29948, 476, 4244, 891, 18502, 898, 18264, 354, 1270, 891, 7560, 830, 1664, 891, 9954, 29879, 18862, 13, 29903, 861, 386, 4060, 29973, 9724, 3321, 29201, 27481, 367, 14520, 1472, 1434, 260, 11445, 4479, 15469, 13, 2059, 2448, 5830, 29882, 20929, 336, 13, 6747, 287, 5490, 29871, 29945, 29871, 29906, 29900, 29900, 29945, 29892, 29871, 29929, 29901, 29900, 29945, 13862, 382, 1254, 13, 15082, 350, 4375, 8193, 29892, 7513, 1192, 7803, 3841, 1156, 263, 260, 11445, 4479, 1468, 25936, 278, 11359, 988, 670, 19525, 943, 505, 10600, 363, 25187, 310, 17202, 310, 2440, 29892, 263, 301, 650, 29201, 1171, 8389, 302, 12535, 373, 278, 25695, 322, 5148, 701, 472, 263, 16758, 292, 12180, 8372, 1081, 293, 19959, 29889, 13, 3868, 769, 3614, 714, 670, 12580, 322, 10322, 385, 16578, 11183, 278, 26429, 3060, 2496, 29889, 13, 3112, 471, 263, 7182, 278, 317, 15440, 295, 968, 505, 2665, 714, 304, 278, 3186, 363, 3533, 2108, 423, 29901, 2688, 864, 304, 367, 2175, 7432, 29889, 1317, 324, 630, 515, 278, 1791, 310, 278, 3186, 29892, 278, 29201, 1527, 505, 10972, 5469, 29915, 29879, 269, 5861, 29892, 10083, 322, 1560, 10071, 297, 1797, 304, 10503, 573, 29889, 13, 29954, 6170, 358, 24921, 322, 24612, 1336, 1189, 2879, 4658, 393, 12297, 7134, 310, 278, 10298, 310, 8805, 29892, 7205, 322, 17952, 1122, 505, 7160, 278, 5320, 1399, 2101, 681, 29201, 373, 278, 7560, 3190, 666, 295, 4425, 310, 1126, 13533, 322, 13656, 22872, 17839, 515, 278, 260, 11445, 4479, 393, 7124, 278, 20021, 12180, 1220, 3826, 29889, 29871, 29906, 29953, 29889, 13, 29908, 15597, 508, 1560, 514, 278, 8805, 29889, 2688, 508, 22931, 278, 10809, 310, 278, 7205, 411, 278, 6047, 310, 1009, 288, 1503, 29889, 2688, 505, 263, 25963, 4060, 607, 591, 1016, 29915, 29873, 22592, 1699, 1497, 12835, 728, 15793, 29892, 263, 1887, 29380, 391, 322, 25008, 1058, 756, 2000, 373, 278, 28033, 304, 12566, 278, 29201, 491, 5557, 292, 1009, 6958, 411, 278, 5377, 3186, 29889, 13, 1576, 29201, 5735, 278, 1556, 12297, 29892, 2245, 26538, 301, 7004, 1508, 2998, 304, 767, 29892, 14671, 2256, 297, 1009, 26412, 324, 389, 293, 4940, 29889, 9267, 7738, 3974, 491, 14051, 10549, 25702, 29892, 9427, 322, 298, 1657, 411, 12580, 322, 16578, 322, 5735, 297, 20447, 322, 380, 1610, 298, 8842, 29889, 1126, 896, 1016, 29915, 29873, 2125, 25036, 304, 11158, 375, 1080, 29889, 13, 2744, 309, 498, 481, 492, 4605, 29892, 263, 22079, 297, 278, 7560, 12180, 8372, 29892, 1497, 540, 805, 15048, 278, 301, 650, 29201, 1171, 373, 4644, 317, 15440, 295, 7935, 29892, 263, 29871, 29906, 29941, 29899, 17619, 29899, 26763, 1820, 29892, 373, 3826, 29889, 29871, 29906, 29947, 29889, 13, 29908, 8439, 471, 263, 302, 12535, 317, 15440, 295, 968, 767, 1699, 498, 481, 492, 4605, 1497, 29889, 376, 3868, 2996, 714, 322, 10322, 385, 16578, 472, 278, 1081, 293, 19959, 1213, 13, 7504, 3278, 304, 24099, 21875, 29892, 727, 526, 871, 1048, 29871, 29946, 29900, 29900, 304, 29871, 29896, 29892, 29900, 29900, 29900, 5144, 18758, 9826, 515, 278, 7027, 1126, 13533, 968, 29892, 438, 865, 267, 29892, 15864, 1450, 294, 29892, 317, 15440, 295, 968, 322, 1383, 21744, 575, 29889, 3834, 24612, 1336, 5996, 25348, 11898, 12266, 278, 1176, 800, 1122, 748, 1250, 29871, 29955, 29900, 29892, 29900, 29900, 29900, 2440, 29889, 2688, 3978, 630, 297, 10557, 322, 9725, 630, 304, 7513, 1549, 16704, 423, 29892, 24612, 1336, 1189, 2879, 1827, 29889, 13, 3112, 5692, 393, 1784, 29201, 1171, 27481, 278, 528, 2361, 1532, 1434, 278, 20037, 7124, 278, 12180, 29892, 988, 896, 723, 12234, 367, 9427, 292, 445, 931, 310, 1629, 29889, 13, 13555, 278, 260, 11445, 4479, 29892, 1887, 24921, 805, 15048, 29871, 29946, 29896, 7027, 1126, 13533, 968, 489, 449, 310, 29871, 29946, 29941, 297, 263, 29871, 29906, 29900, 29900, 29896, 7560, 16411, 489, 15970, 750, 27481, 278, 1014, 1050, 3192, 11910, 310, 1009, 7357, 277, 7935, 29889, 2688, 884, 8967, 8790, 29871, 29955, 29941, 438, 865, 267, 489, 449, 310, 29871, 29929, 29947, 297, 278, 16411, 489, 15970, 27481, 304, 1880, 1049, 363, 9197, 297, 360, 688, 549, 15594, 373, 278, 11143, 1126, 13533, 7935, 29892, 470, 379, 329, 6211, 29892, 263, 5874, 24612, 1336, 19915, 1497, 29889, 13, 17245, 29892, 278, 23779, 310, 278, 2211, 916, 29201, 2113, 29915, 29873, 367, 2998, 2745, 24921, 4866, 263, 18994, 310, 278, 7592, 24191, 445, 4723, 29889, 13, 29911, 5086, 26946, 952, 310, 1438, 2305, 338, 18215, 664, 29889, 13, 1576, 901, 1135, 29871, 29945, 29900, 29900, 24191, 4822, 263, 29871, 29941, 29892, 29906, 29900, 29900, 29899, 17619, 29899, 26763, 9704, 297, 278, 14841, 22170, 310, 278, 6211, 310, 20781, 284, 2615, 472, 937, 21798, 304, 367, 263, 21881, 26811, 895, 29889, 1205, 697, 310, 278, 24577, 9117, 26824, 29892, 19153, 2043, 29877, 29892, 2000, 278, 472, 3028, 29879, 376, 1552, 2982, 310, 278, 2343, 9074, 2153, 1213, 5917, 1737, 1946, 261, 25886, 2482, 349, 517, 280, 655, 21477, 2000, 278, 1126, 314, 550, 278, 376, 275, 5252, 310, 278, 508, 29876, 747, 1338, 1213, 13, 1576, 317, 15440, 295, 968, 526, 21334, 29883, 873, 12566, 573, 310, 1009, 1034, 284, 337, 1389, 29899, 5393, 287, 28439, 29889, 2688, 1304, 304, 15049, 564, 5727, 472, 5874, 24921, 1058, 2996, 23723, 487, 27032, 330, 17741, 373, 278, 25695, 29889, 13, 1576, 15864, 1450, 294, 750, 23926, 1067, 1161, 267, 411, 21142, 2745, 278, 29871, 29896, 29929, 29929, 29900, 29879, 29892, 23393, 3196, 10974, 13049, 29889, 13, 22966, 381, 15542, 653, 29874, 29892, 2343, 310, 278, 7417, 7765, 363, 1126, 13533, 322, 13656, 22872, 382, 1054, 6933, 29892, 1497, 278, 15864, 1450, 294, 892, 10776, 1319, 2745, 278, 4908, 29892, 322, 2678, 278, 17072, 29892, 4689, 2094, 307, 9733, 373, 1009, 20123, 29889, 4908, 8227, 10376, 9445, 17202, 310, 12580, 29899, 29893, 969, 292, 15864, 1450, 294, 297, 29871, 29896, 29947, 29945, 29929, 29889, 13, 3563, 278, 4940, 2846, 2440, 29892, 3138, 29892, 5302, 505, 16710, 29889, 450, 5874, 756, 289, 11310, 14881, 411, 278, 29201, 29892, 322, 1584, 5622, 1009, 14956, 338, 385, 1283, 1947, 29889, 13, 14804, 29563, 5144, 505, 16669, 3371, 10465, 381, 29892, 7483, 310, 278, 7560, 29899, 6406, 1531, 287, 20123 ]
1,024
CommonCrawl
0.510203
0.240734
2.016597
0.696694
Food Hussy Recipe: Strawberry Cacao Roasted Pork Loin Salad | The Food Hussy! I'm not usually one to order a salad at a restaurant - I like cheese and butter and all things bad for me. But there's one restaurant that has changed my mind - Bite Restaurant in Milford - they make my favorite salad. I was on a mission to make a 30 minute meal and recreate that salad with a few Food Hussy tweaks! First tweak - the protein! I just received a package from Smithfield Marinated Fresh Pork and they asked me to create a quick meal and I and thought it would be the perfect match for my copycat salad. Smithfield Marinated Fresh Pork is a favorite of mine - I always forget to take things out ahead of time - or marinate the night before. I come home and need to get dinner on the table as quick as possible - I ain't got time for marinade! Plus Smithfield Marinated Fresh Pork is made from 100% fresh pork with nothing artificial and it comes in a wide variety of flavors - Roasted Garlic, Sweet Teriyaki and now - Hardwood Smoked Bacon! The thing I liked about the bacon in this is that it wasn't a flavor - it was ACTUAL bacon in the package and I was in like Flynn!!! Since the prep work is done already - you just have to cook it the best way for you - whether it's grill, saute, roast or in the slow cooker. I find the pork loin is too lean for the slow cooker (the Smithfield Marinated Fresh Pork Roast is perfect for this). Now that my protein was ready to go - time to recreate my favorite salad - but with my Food Hussy tweaks of course. While the pork loin was searing and then in the oven - I was able to prep my salad ingredients. The original salad is the "Cacao comes from a tree, which is a plan...Chocolate is Salad" (crazy long name I know) The Bite version has spinach, dried cranberries, strawberries, cacao nibs, gorgonzola, pecans, cucumbers, red onions, tomatoes and balsamic vinaigrette. And I can have fun with that!! I kept a lot of the ingredients like strawberries, tomatoes and most definitely - the cacao nibs. See cacao nibs are one of those powerful foods - they have antioxidants, flavinoids, fight cardiovascular disease, lots of fiber, magnesium, potassium and they'll even improve your mood! Additionally - I used spinach and red onions - but then some more Food Hussy tweaks! I'm a huge fan of goat cheese so any chance to put that in something - I'm doing it. For the dressing - I have a killer recipe for Blueberry Vinaigrette that I use any time I can! And that pork loin - it's always perfect at 155 degrees (get a meat thermometer - they're super cheap and a life saver!) - you want that blush of pink in the center to be sure it's moist and oh so good. I can also tell you - this bacon covered pork loin was so amazing!! The bacon helps add even more juice and flavor - I mean - it's pig on pig! I'll take that any time! I cooked mine a little faster because I cut it in half - but you can always slice or cube the pork if you're in a super hurry. I think cutting it in half was perfect for this - and even if I was cooking the whole loin - I would still do that - just to cut the oven time down. And I always sear on the stove top first - gives it that delicious crust that you don't want to miss! My salad was perfection! It definitely reminded me of the great Bite salad - but I had it in the comfort of my own home and in less than 30 minutes from fridge to belly! Woohoo! I'll take that any day! The other thing I love about this salad is how complex it is. I would NEVER think to put all this stuff together
[ 25453, 379, 1558, 29891, 830, 24044, 29901, 624, 1610, 16344, 315, 562, 6241, 1528, 28470, 349, 548, 4309, 262, 3956, 328, 891, 450, 25453, 379, 1558, 29891, 29991, 13, 29902, 29915, 29885, 451, 5491, 697, 304, 1797, 263, 4497, 328, 472, 263, 27144, 448, 306, 763, 923, 968, 322, 541, 357, 322, 599, 2712, 4319, 363, 592, 29889, 1205, 727, 29915, 29879, 697, 27144, 393, 756, 3939, 590, 3458, 448, 350, 568, 390, 22837, 424, 297, 3833, 4006, 448, 896, 1207, 590, 25448, 4497, 328, 29889, 306, 471, 373, 263, 10655, 304, 1207, 263, 29871, 29941, 29900, 11015, 592, 284, 322, 337, 3258, 393, 4497, 328, 411, 263, 2846, 25453, 379, 1558, 29891, 7780, 10327, 29991, 3824, 7780, 557, 448, 278, 26823, 29991, 306, 925, 4520, 263, 3577, 515, 7075, 2671, 1085, 262, 630, 383, 3781, 349, 548, 322, 896, 4433, 592, 304, 1653, 263, 4996, 592, 284, 322, 306, 322, 2714, 372, 723, 367, 278, 4922, 1993, 363, 590, 3509, 4117, 4497, 328, 29889, 13, 29209, 2671, 1085, 262, 630, 383, 3781, 349, 548, 338, 263, 25448, 310, 7903, 448, 306, 2337, 9566, 304, 2125, 2712, 714, 14432, 310, 931, 448, 470, 1766, 16976, 278, 4646, 1434, 29889, 306, 2041, 3271, 322, 817, 304, 679, 17803, 373, 278, 1591, 408, 4996, 408, 1950, 448, 306, 7216, 29915, 29873, 2355, 931, 363, 1766, 1099, 311, 29991, 15113, 7075, 2671, 1085, 262, 630, 383, 3781, 349, 548, 338, 1754, 515, 29871, 29896, 29900, 29900, 29995, 10849, 282, 548, 411, 3078, 23116, 322, 372, 5304, 297, 263, 9377, 12875, 310, 21054, 943, 448, 1528, 28470, 7455, 506, 29892, 317, 16668, 5061, 19881, 9940, 322, 1286, 448, 10999, 6115, 4116, 12504, 6000, 535, 29991, 13, 1576, 2655, 306, 23289, 1048, 278, 9922, 535, 297, 445, 338, 393, 372, 9007, 29915, 29873, 263, 21054, 272, 448, 372, 471, 319, 1783, 29965, 1964, 9922, 535, 297, 278, 3577, 322, 306, 471, 297, 763, 383, 13493, 29876, 21004, 13, 23036, 278, 8273, 664, 338, 2309, 2307, 448, 366, 925, 505, 304, 7984, 372, 278, 1900, 982, 363, 366, 448, 3692, 372, 29915, 29879, 867, 453, 29892, 872, 1082, 29892, 696, 579, 470, 297, 278, 5232, 7984, 261, 29889, 306, 1284, 278, 282, 548, 658, 262, 338, 2086, 20793, 363, 278, 5232, 7984, 261, 313, 1552, 7075, 2671, 1085, 262, 630, 383, 3781, 349, 548, 1528, 579, 338, 4922, 363, 445, 467, 13, 10454, 393, 590, 26823, 471, 7960, 304, 748, 448, 931, 304, 337, 3258, 590, 25448, 4497, 328, 448, 541, 411, 590, 25453, 379, 1558, 29891, 7780, 10327, 310, 3236, 29889, 5806, 278, 282, 548, 658, 262, 471, 409, 4362, 322, 769, 297, 278, 288, 854, 448, 306, 471, 2221, 304, 8273, 590, 4497, 328, 2348, 1127, 10070, 29889, 13, 1576, 2441, 4497, 328, 338, 278, 376, 29907, 562, 6241, 5304, 515, 263, 5447, 29892, 607, 338, 263, 3814, 856, 1451, 542, 23167, 338, 3956, 328, 29908, 313, 26844, 1537, 1472, 1024, 306, 1073, 29897, 450, 350, 568, 1873, 756, 10917, 496, 29892, 270, 1255, 274, 661, 495, 2722, 29892, 380, 1610, 495, 2722, 29892, 274, 562, 6241, 302, 747, 29879, 29892, 330, 990, 265, 29920, 2963, 29892, 13209, 550, 29892, 274, 1682, 398, 2596, 29892, 2654, 373, 1080, 29892, 6454, 20452, 322, 289, 1338, 314, 293, 325, 1099, 335, 2267, 371, 29889, 1126, 306, 508, 505, 2090, 411, 393, 6824, 13, 29902, 8126, 263, 3287, 310, 278, 2348, 1127, 10070, 763, 380, 1610, 495, 2722, 29892, 6454, 20452, 322, 1556, 11630, 448, 278, 274, 562, 6241, 302, 747, 29879, 29889, 2823, 274, 562, 6241, 302, 747, 29879, 526, 697, 310, 1906, 13988, 9687, 29879, 448, 896, 505, 3677, 601, 29916, 333, 1934, 29892, 21054, 1789, 4841, 29892, 8589, 5881, 29875, 586, 6151, 1070, 17135, 29892, 14568, 310, 5713, 495, 29892, 2320, 4515, 1974, 29892, 3104, 465, 1974, 322, 896, 29915, 645, 1584, 11157, 596, 286, 2092, 29991, 13, 2528, 17658, 448, 306, 1304, 10917, 496, 322, 2654, 373, 1080, 448, 541, 769, 777, 901, 25453, 379, 1558, 29891, 7780, 10327, 29991, 306, 29915, 29885, 263, 12176, 13524, 310, 748, 271, 923, 968, 577, 738, 8825, 304, 1925, 393, 297, 1554, 448, 306, 29915, 29885, 2599, 372, 29889, 1152, 278, 10714, 292, 448, 306, 505, 263, 413, 5495, 9522, 412, 363, 10924, 16344, 478, 1099, 335, 2267, 371, 393, 306, 671, 738, 931, 306, 508, 29991, 13, 2855, 393, 282, 548, 658, 262, 448, 372, 29915, 29879, 2337, 4922, 472, 29871, 29896, 29945, 29945, 14496, 313, 657, 263, 27654, 14563, 8328, 448, 896, 29915, 276, 2428, 28773, 322, 263, 2834, 872, 369, 14366, 448, 366, 864, 393, 1999, 1878, 310, 282, 682, 297, 278, 4818, 304, 367, 1854, 372, 29915, 29879, 2730, 391, 322, 9360, 577, 1781, 29889, 13, 29902, 508, 884, 2649, 366, 448, 445, 9922, 535, 10664, 282, 548, 658, 262, 471, 577, 21863, 292, 6824, 450, 9922, 535, 6911, 788, 1584, 901, 3623, 625, 322, 21054, 272, 448, 306, 2099, 448, 372, 29915, 29879, 282, 335, 373, 282, 335, 29991, 306, 29915, 645, 2125, 393, 738, 931, 29991, 13, 29902, 7984, 287, 7903, 263, 2217, 8473, 1363, 306, 5700, 372, 297, 4203, 448, 541, 366, 508, 2337, 22780, 470, 28704, 278, 282, 548, 565, 366, 29915, 276, 297, 263, 2428, 12166, 719, 29889, 306, 1348, 28967, 372, 297, 4203, 471, 4922, 363, 445, 448, 322, 1584, 565, 306, 471, 7984, 292, 278, 3353, 658, 262, 448, 306, 723, 1603, 437, 393, 448, 925, 304, 5700, 278, 288, 854, 931, 1623, 29889, 1126, 306, 2337, 409, 279, 373, 278, 380, 994, 2246, 937, 448, 4076, 372, 393, 628, 14803, 2181, 504, 393, 366, 1016, 29915, 29873, 864, 304, 3052, 29991, 13, 3421, 4497, 328, 471, 639, 20309, 29991, 739, 11630, 1083, 513, 287, 592, 310, 278, 2107, 350, 568, 4497, 328, 448, 541, 306, 750, 372, 297, 278, 13016, 310, 590, 1914, 3271, 322, 297, 3109, 1135, 29871, 29941, 29900, 6233, 515, 1424, 5525, 304, 1339, 368, 29991, 14962, 1148, 3634, 29991, 306, 29915, 645, 2125, 393, 738, 2462, 29991, 13, 1576, 916, 2655, 306, 5360, 1048, 445, 4497, 328, 338, 920, 4280, 372, 338, 29889, 306, 723, 14693, 5348, 1348, 304, 1925, 599, 445, 6433, 4208 ]
1,024
C4
0.674585
-1.528147
-0.800556
-0.431892
« The Wisdom of Children: Happy Place, Environment Club, Living Now, Mandarins… Cooma: Indigenous History » Cooma: European History Published Sunday, 9th October, 2011 | By Susan AKA Peacefull http://www.monaropioneers.com/earlycooma.htm Early Cooma It was in March, 1849, that a survey for a reserve, or a village, to be known as Cooma, had been completed. On 29th October, 1849, Mr. T. L. (afterwards Sir Thomas) Mitchell, Surveyor General, wrote to Mr. T. S. Townsend, Surveyor at Tarcutta, by letter No. 49/600, as follows: "in reference to your letter of the 30th March last, wherein you forwarded a plan of your survey for a village at Cooma, I have now to inform you that the design for a village at that place has been approved of by His Excellency the Governor in Council, and to forward herewith a copy thereof for your information and guidance while acting in the Monera and Murrumbidgee Districts." It was this design which had been laid before the Executive Council on 2nd June, 1849, and which was returned to the Surveyor-General on 21st June, 1849. It had been transmitted to the Colonial Secretary for approval by the Clerk of the Council, vide letter 29/247, and approval had been conveyed in the Colonial Secretary's letter dated 27th June, 1849, No. 49/293. Notification of the design had been made in the Government Gazette for 1849, Folio 1238, and a letter from the Colonial Secretary, dated I 11th December, 1849, drew the Surveyor-General's attention to the Government Gazette. From particulars available from the Colonial Secretary's office, by letter 10th December, 1849, it appeared from the report of the Surveyor-General that Mr. Kirwan's premises were excluded from the reserve, and were permitted so to remain until he obtained a lease of his Run, and with it, the authority to purchase, as intimated to him in a letter of 23rd September, 1849, from the Chief Commissioner of Crown Lands. Mr. Kirwan is shown as holding an area of 160 acres, -which he afterwards purchased. The first sales of the village lands were held in 1850, and Mr. Alexander Montague purchased a block, being Lot No. 5, of Section No. 5 ' fronting a reserve, for a market. Upon this he ereted a store (with a residence attached). This was probably the second store built in Cooma, the first and earliest being that of Mr. Kirwan, attached to his hotel at Cooma Back Creek. Prior to building his hotel, Mr. Kirwan had very successfully carried on a hawking business. In 1855 the Police Act was extended to Cooma, according to a -Gazette of that year-Folio 588 On 30th September, 1869, a permanent Common was approved of, and dedication took place on 18th February, 1870. The boundaries of the Police District were defined in the Government Gazette-dated 22nd August, 1871. Cooma was proclaimed a Municipality in November, 1879, and the town boundaries were notified on 20th March, 1885. They were amended in 1924, consequent upon the curtailment of the municipal area. Cooma, called by the blacks Coombah, is an aboriginal name to which two meanings have been ascribed. One, generally accepted, is "Big Lake," the other, and in view of the formation of the country, more probably the correct one, is "Open Country." The design of Mr. Surveyor Townsend is endorsed, "Plan for the Village of Cooma, at Monera, in the County of Beresford, 1849." It is of interest in that it shows thereon two groups of buildings. The first of these, at the southern end of Lambie Street, comprises Mr. Lambie's house and right alongside of it the office of the Commissioner for Crown Lands
[ 859, 450, 15756, 3129, 310, 20986, 29901, 28569, 15484, 29892, 16738, 5977, 29892, 26176, 2567, 29892, 15419, 279, 1144, 30098, 13, 7967, 4125, 29901, 1894, 2101, 681, 5298, 2047, 13, 7967, 4125, 29901, 7824, 5298, 13, 21076, 3726, 16340, 29892, 29871, 29929, 386, 5533, 29892, 29871, 29906, 29900, 29896, 29896, 891, 2648, 25914, 319, 29968, 29909, 24819, 8159, 13, 1124, 597, 1636, 29889, 3712, 279, 459, 1421, 414, 29889, 510, 29914, 799, 368, 1111, 4125, 29889, 13357, 13, 29923, 279, 368, 3189, 4125, 13, 3112, 471, 297, 4779, 29892, 29871, 29896, 29947, 29946, 29929, 29892, 393, 263, 18994, 363, 263, 23986, 29892, 470, 263, 5720, 29892, 304, 367, 2998, 408, 3189, 4125, 29892, 750, 1063, 8676, 29889, 1551, 29871, 29906, 29929, 386, 5533, 29892, 29871, 29896, 29947, 29946, 29929, 29892, 3237, 29889, 323, 29889, 365, 29889, 313, 7045, 2935, 6290, 5569, 29897, 26676, 29892, 23218, 272, 4593, 29892, 5456, 304, 3237, 29889, 323, 29889, 317, 29889, 8421, 6717, 29892, 23218, 272, 472, 323, 5666, 329, 941, 29892, 491, 5497, 1939, 29889, 29871, 29946, 29929, 29914, 29953, 29900, 29900, 29892, 408, 4477, 29901, 13, 29908, 262, 3407, 304, 596, 5497, 310, 278, 29871, 29941, 29900, 386, 4779, 1833, 29892, 988, 262, 366, 6375, 287, 263, 3814, 310, 596, 18994, 363, 263, 5720, 472, 3189, 4125, 29892, 306, 505, 1286, 304, 1871, 366, 393, 278, 2874, 363, 263, 5720, 472, 393, 2058, 756, 1063, 23454, 310, 491, 3600, 1222, 3729, 3819, 278, 15431, 297, 8831, 29892, 322, 304, 6375, 1244, 2541, 263, 3509, 727, 974, 363, 596, 2472, 322, 27323, 1550, 16684, 297, 278, 2598, 1572, 322, 341, 1038, 3774, 5525, 29872, 7457, 29879, 1213, 13, 3112, 471, 445, 2874, 607, 750, 1063, 12341, 1434, 278, 28841, 8831, 373, 29871, 29906, 299, 5306, 29892, 29871, 29896, 29947, 29946, 29929, 29892, 322, 607, 471, 4133, 304, 278, 23218, 272, 29899, 15263, 373, 29871, 29906, 29896, 303, 5306, 29892, 29871, 29896, 29947, 29946, 29929, 29889, 739, 750, 1063, 18750, 4430, 304, 278, 1530, 25164, 17719, 363, 2134, 791, 491, 278, 315, 1358, 29895, 310, 278, 8831, 29892, 18900, 5497, 29871, 29906, 29929, 29914, 29906, 29946, 29955, 29892, 322, 2134, 791, 750, 1063, 27769, 287, 297, 278, 1530, 25164, 17719, 29915, 29879, 5497, 29797, 29871, 29906, 29955, 386, 5306, 29892, 29871, 29896, 29947, 29946, 29929, 29892, 1939, 29889, 29871, 29946, 29929, 29914, 29906, 29929, 29941, 29889, 13, 12958, 310, 278, 2874, 750, 1063, 1754, 297, 278, 10354, 29604, 363, 29871, 29896, 29947, 29946, 29929, 29892, 8301, 601, 29871, 29896, 29906, 29941, 29947, 29892, 322, 263, 5497, 515, 278, 1530, 25164, 17719, 29892, 29797, 306, 29871, 29896, 29896, 386, 5846, 29892, 29871, 29896, 29947, 29946, 29929, 29892, 15010, 278, 23218, 272, 29899, 15263, 29915, 29879, 8570, 304, 278, 10354, 29604, 29889, 3645, 3153, 29879, 3625, 515, 278, 1530, 25164, 17719, 29915, 29879, 8034, 29892, 491, 5497, 29871, 29896, 29900, 386, 5846, 29892, 29871, 29896, 29947, 29946, 29929, 29892, 372, 7470, 515, 278, 3461, 310, 278, 23218, 272, 29899, 15263, 393, 3237, 29889, 5201, 11440, 29915, 29879, 5188, 4637, 892, 429, 13347, 515, 278, 23986, 29892, 322, 892, 21905, 577, 304, 3933, 2745, 540, 7625, 263, 454, 559, 310, 670, 7525, 29892, 322, 411, 372, 29892, 278, 14329, 304, 20590, 29892, 408, 938, 326, 630, 304, 1075, 297, 263, 5497, 310, 29871, 29906, 29941, 5499, 3839, 29892, 29871, 29896, 29947, 29946, 29929, 29892, 515, 278, 14546, 11444, 261, 310, 25306, 3172, 29879, 29889, 3237, 29889, 5201, 11440, 338, 4318, 408, 13587, 385, 4038, 310, 29871, 29896, 29953, 29900, 23931, 29892, 448, 4716, 540, 12335, 20848, 29889, 13, 1576, 937, 16538, 310, 278, 5720, 12625, 892, 4934, 297, 29871, 29896, 29947, 29945, 29900, 29892, 322, 3237, 29889, 9428, 4526, 3437, 20848, 263, 2908, 29892, 1641, 20815, 1939, 29889, 29871, 29945, 29892, 310, 9779, 1939, 29889, 29871, 29945, 525, 4565, 292, 263, 23986, 29892, 363, 263, 9999, 29889, 19956, 445, 540, 604, 300, 287, 263, 3787, 313, 2541, 263, 25488, 10959, 467, 910, 471, 3117, 278, 1473, 3787, 4240, 297, 3189, 4125, 29892, 278, 937, 322, 24577, 1641, 393, 310, 3237, 29889, 5201, 11440, 29892, 10959, 304, 670, 16730, 472, 3189, 4125, 7437, 15594, 29889, 22096, 304, 5214, 670, 16730, 29892, 3237, 29889, 5201, 11440, 750, 1407, 8472, 8988, 373, 263, 447, 29893, 9292, 5381, 29889, 13, 797, 29871, 29896, 29947, 29945, 29945, 278, 18923, 3185, 471, 10410, 304, 3189, 4125, 29892, 5034, 304, 263, 448, 29954, 834, 2353, 310, 393, 1629, 29899, 29943, 324, 601, 29871, 29945, 29947, 29947, 13, 2951, 29871, 29941, 29900, 386, 3839, 29892, 29871, 29896, 29947, 29953, 29929, 29892, 263, 17667, 13103, 471, 23454, 310, 29892, 322, 8856, 362, 3614, 2058, 373, 29871, 29896, 29947, 386, 6339, 29892, 29871, 29896, 29947, 29955, 29900, 29889, 450, 24371, 310, 278, 18923, 7457, 892, 3342, 297, 278, 10354, 29604, 29899, 9715, 29871, 29906, 29906, 299, 3111, 29892, 29871, 29896, 29947, 29955, 29896, 29889, 13, 7967, 4125, 471, 9580, 13190, 263, 12813, 2877, 297, 3979, 29892, 29871, 29896, 29947, 29955, 29929, 29892, 322, 278, 4726, 24371, 892, 451, 2164, 373, 29871, 29906, 29900, 386, 4779, 29892, 29871, 29896, 29947, 29947, 29945, 29889, 2688, 892, 626, 2760, 297, 29871, 29896, 29929, 29906, 29946, 29892, 14161, 296, 2501, 278, 3151, 18237, 358, 310, 278, 11677, 4038, 29889, 13, 7967, 4125, 29892, 2000, 491, 278, 4628, 29879, 3189, 3424, 801, 29892, 338, 385, 633, 13492, 1024, 304, 607, 1023, 2099, 886, 505, 1063, 408, 23059, 29889, 3118, 29892, 6892, 9259, 29892, 338, 376, 6970, 9459, 1699, 278, 916, 29892, 322, 297, 1776, 310, 278, 12409, 310, 278, 4234, 29892, 901, 3117, 278, 1959, 697, 29892, 338, 376, 6585, 15456, 1213, 13, 1576, 2874, 310, 3237, 29889, 23218, 272, 8421, 6717, 338, 1095, 943, 287, 29892, 376, 20334, 363, 278, 24720, 310, 3189, 4125, 29892, 472, 2598, 1572, 29892, 297, 278, 5127, 310, 2292, 267, 4006, 29892, 29871, 29896, 29947, 29946, 29929, 1213, 739, 338, 310, 4066, 297, 393, 372, 3697, 727, 265, 1023, 6471, 310, 13814, 29889, 450, 937, 310, 1438, 29892, 472, 278, 14841, 1095, 310, 26832, 347, 7103, 29892, 7199, 4637, 3237, 29889, 26832, 347, 29915, 29879, 3699, 322, 1492, 19963, 310, 372, 278, 8034, 310, 278, 11444, 261, 363, 25306, 3172, 29879 ]
1,024
CommonCrawl
0.115549
-0.15574
1.012392
0.204657
. A short distance away a building, described as the "Old Lock-up," is noted. All these buildings, together with a boarding school, are situated within the boundaries of what is termed Mr. Lambie's paddock, which was then part of Kirwan's "Cooma Run." The position of the buildings may be roughly indicated as at the rear of Messrs. Hain and Co.'s store, where today remains of some of these old time houses may be observed. Mr. Lambie's paddock, before referred to, embraced a good deal of what is now the Showground, and its boundary crossed the spot where the bridge over Cooma Back Creek in Sharp Street was afterwards erected. The second group, consisting of an inn, a stone store, a blacksmith's shop, stable and stockyards, together with a large paddock running north on either side of the Cooma Creek, after it had been joined by the Back Creek, was described as "Kirwan's Improvements." It was within the boundaries of a block of 160 acres which, on three side", was surrounded by the Village Reserve. The map also noted a block called 'Kirwan's Cultivation Paddock," situated within the Village, and comprising a good area of sections 19 and 20 of the present town, on the Royal Side, where the properties of Mr. Mitchell and Mr. Ryall now are. The map shows clearly the old track from the Sydney Road, along the southern bank of the Cooma Creek, between the present gaol and the Nijong Reserve to Kirwan's Inn, which stood near where Mr. Quodling's residence is to-day. From there it led, almost by what is the present stock route which is really the old Kiandra Road – out to Coolringdon. Another track followed the Cooma Back Creek southerly for a short distance, twice crossing a small creek that ran across Lambie Street before getting on to the present Cooma-Adaminaby Road. Sharp Street at that time was not known except as a proposed road. All the business of the place was transacted with-in the area between Kirwan's Inn and the Commissioner's office. It was not till after the proclamation of the village, and the consequent land sales in 1850, that buildings were erected, in what is today the business part of Cooma. In the latter area the first store, of slabs covered with bark, was that of Mr. A. Montague, erected between 1850 and 1851, on the block purchased by him running through from Sharp Street to Massie Street, and forming one of the boundaries of the present Centennial Park. Cooma from the Railway Station – 1925 In the meantime settlement had been increasing, particularly in and about Lambie Street. There the Court House and Lock-up were erected, the building still being in existence, and occupied by Tracker Brindle, of the Police Force. Chief Constable Wilson, who later in 1854 was appointed Bailiff of the Court of Requests, resided not far away, and a little lower down, near the corner of Kirwan and Lamble Streets, where Mr. Ryall's house now is, were the premises occupied by Charles Walters-Postmaster and Poundkeeper. Mr. Walters succeeded Mr. Rimington on 15th May, 1854. The latter gentleman, who seems to have managed the Post Office from Kirwan's Inn, died on 5th May, 1854. An earlier Postmaster, Mr. J. J. Ryall, had a residence on the east side of Cooma Back Creek, in a paddock now owned by Mr. Albert Hain. By March, 1854, Samuel Shannon had opened a store, built of slabs and covered with bark, on land now owned by John Mack, near the then reserve for the Roman Catholic Church situated in Bombala Street, and Joseph Ward, who carried on Kirwin's Inn after the licensee was shot, was occupying premises in Sharp Street, known as the Graziers' Inn. In the early part of 1855 James Hain had completed the erection at the northern end of Lambie Street of a brick building roofed with iron. In respect of this he obtained a general publican's. An unhappy incident attached to the opening of these premises. One of the room was regarded as damp. In order to dry it off a charcoal fire was lit in it. Mr. Hain's three
[ 29889, 319, 3273, 5418, 3448, 263, 5214, 29892, 5439, 408, 278, 376, 21648, 18199, 29899, 786, 1699, 338, 11682, 29889, 2178, 1438, 13814, 29892, 4208, 411, 263, 7613, 292, 3762, 29892, 526, 24046, 2629, 278, 24371, 310, 825, 338, 1840, 287, 3237, 29889, 26832, 347, 29915, 29879, 282, 1202, 1698, 29892, 607, 471, 769, 760, 310, 5201, 11440, 29915, 29879, 376, 7967, 4125, 7525, 1213, 450, 2602, 310, 278, 13814, 1122, 367, 20928, 18694, 408, 472, 278, 18983, 310, 11946, 2288, 29889, 379, 475, 322, 3189, 6169, 29879, 3787, 29892, 988, 9826, 9242, 310, 777, 310, 1438, 2030, 931, 12955, 1122, 367, 8900, 29889, 3237, 29889, 26832, 347, 29915, 29879, 282, 1202, 1698, 29892, 1434, 12992, 304, 29892, 7232, 945, 287, 263, 1781, 5376, 310, 825, 338, 1286, 278, 7704, 2057, 29892, 322, 967, 10452, 21692, 278, 9758, 988, 278, 12945, 975, 3189, 4125, 7437, 15594, 297, 1383, 6834, 7103, 471, 12335, 14737, 2954, 29889, 450, 1473, 2318, 29892, 19849, 310, 385, 7622, 29892, 263, 12565, 3787, 29892, 263, 4628, 3844, 389, 29915, 29879, 18296, 29892, 13714, 322, 10961, 29891, 3163, 29892, 4208, 411, 263, 2919, 282, 1202, 1698, 2734, 6641, 373, 2845, 2625, 310, 278, 3189, 4125, 15594, 29892, 1156, 372, 750, 1063, 8772, 491, 278, 7437, 15594, 29892, 471, 5439, 408, 376, 29968, 381, 11440, 29915, 29879, 1954, 16123, 4110, 1213, 739, 471, 2629, 278, 24371, 310, 263, 2908, 310, 29871, 29896, 29953, 29900, 23931, 607, 29892, 373, 2211, 2625, 613, 471, 22047, 491, 278, 24720, 27811, 29889, 450, 2910, 884, 11682, 263, 2908, 2000, 525, 29968, 381, 11440, 29915, 29879, 7965, 440, 362, 349, 1202, 1698, 1699, 24046, 2629, 278, 24720, 29892, 322, 7199, 5921, 263, 1781, 4038, 310, 13926, 29871, 29896, 29929, 322, 29871, 29906, 29900, 310, 278, 2198, 4726, 29892, 373, 278, 7021, 19160, 29892, 988, 278, 4426, 310, 3237, 29889, 26676, 322, 3237, 29889, 15586, 497, 1286, 526, 29889, 13, 1576, 2910, 3697, 9436, 278, 2030, 5702, 515, 278, 16198, 9321, 29892, 3412, 278, 14841, 9124, 310, 278, 3189, 4125, 15594, 29892, 1546, 278, 2198, 10364, 324, 322, 278, 405, 823, 549, 27811, 304, 5201, 11440, 29915, 29879, 25408, 29892, 607, 8389, 2978, 988, 3237, 29889, 751, 397, 1847, 29915, 29879, 25488, 338, 304, 29899, 3250, 29889, 3645, 727, 372, 5331, 29892, 4359, 491, 825, 338, 278, 2198, 10961, 5782, 607, 338, 2289, 278, 2030, 16540, 10738, 9321, 785, 714, 304, 315, 1507, 5393, 9176, 29889, 7280, 5702, 5643, 278, 3189, 4125, 7437, 15594, 3669, 721, 368, 363, 263, 3273, 5418, 29892, 8951, 24067, 263, 2319, 907, 1416, 393, 6350, 4822, 26832, 347, 7103, 1434, 2805, 373, 304, 278, 2198, 3189, 4125, 29899, 3253, 9103, 10798, 9321, 29889, 1383, 6834, 7103, 472, 393, 931, 471, 451, 2998, 5174, 408, 263, 7972, 6520, 29889, 2178, 278, 5381, 310, 278, 2058, 471, 1301, 627, 287, 411, 29899, 262, 278, 4038, 1546, 5201, 11440, 29915, 29879, 25408, 322, 278, 11444, 261, 29915, 29879, 8034, 29889, 739, 471, 451, 3428, 1156, 278, 410, 15719, 362, 310, 278, 5720, 29892, 322, 278, 14161, 296, 2982, 16538, 297, 29871, 29896, 29947, 29945, 29900, 29892, 393, 13814, 892, 14737, 2954, 29892, 297, 825, 338, 9826, 278, 5381, 760, 310, 3189, 4125, 29889, 512, 278, 7480, 4038, 278, 937, 3787, 29892, 310, 2243, 6897, 10664, 411, 289, 935, 29892, 471, 393, 310, 3237, 29889, 319, 29889, 4526, 3437, 29892, 14737, 2954, 1546, 29871, 29896, 29947, 29945, 29900, 322, 29871, 29896, 29947, 29945, 29896, 29892, 373, 278, 2908, 20848, 491, 1075, 2734, 1549, 515, 1383, 6834, 7103, 304, 7360, 347, 7103, 29892, 322, 25391, 697, 310, 278, 24371, 310, 278, 2198, 2895, 2108, 616, 4815, 29889, 13, 7967, 4125, 515, 278, 16795, 12039, 785, 29871, 29896, 29929, 29906, 29945, 13, 797, 278, 6839, 603, 16493, 750, 1063, 10231, 29892, 10734, 297, 322, 1048, 26832, 347, 7103, 29889, 1670, 278, 9245, 5619, 322, 18199, 29899, 786, 892, 14737, 2954, 29892, 278, 5214, 1603, 1641, 297, 10379, 29892, 322, 16404, 491, 3201, 4937, 1771, 513, 280, 29892, 310, 278, 18923, 11004, 29889, 14546, 5798, 519, 13015, 29892, 1058, 2678, 297, 29871, 29896, 29947, 29945, 29946, 471, 10658, 350, 737, 2593, 310, 278, 9245, 310, 10729, 29879, 29892, 620, 2618, 451, 2215, 3448, 29892, 322, 263, 2217, 5224, 1623, 29892, 2978, 278, 11155, 310, 5201, 11440, 322, 12718, 569, 11738, 1691, 29892, 988, 3237, 29889, 15586, 497, 29915, 29879, 3699, 1286, 338, 29892, 892, 278, 5188, 4637, 16404, 491, 5322, 5260, 2153, 29899, 6747, 6207, 322, 349, 618, 23935, 29889, 3237, 29889, 5260, 2153, 14792, 3237, 29889, 390, 326, 4885, 373, 29871, 29896, 29945, 386, 2610, 29892, 29871, 29896, 29947, 29945, 29946, 29889, 450, 7480, 16615, 29892, 1058, 2444, 304, 505, 8745, 278, 4918, 11367, 515, 5201, 11440, 29915, 29879, 25408, 29892, 6423, 373, 29871, 29945, 386, 2610, 29892, 29871, 29896, 29947, 29945, 29946, 29889, 530, 8859, 4918, 6207, 29892, 3237, 29889, 435, 29889, 435, 29889, 15586, 497, 29892, 750, 263, 25488, 373, 278, 9755, 2625, 310, 3189, 4125, 7437, 15594, 29892, 297, 263, 282, 1202, 1698, 1286, 15205, 491, 3237, 29889, 10537, 379, 475, 29889, 13, 2059, 4779, 29892, 29871, 29896, 29947, 29945, 29946, 29892, 15316, 1383, 23453, 750, 6496, 263, 3787, 29892, 4240, 310, 2243, 6897, 322, 10664, 411, 289, 935, 29892, 373, 2982, 1286, 15205, 491, 2259, 21343, 29892, 2978, 278, 769, 23986, 363, 278, 5917, 11865, 6291, 24046, 297, 24347, 2883, 7103, 29892, 322, 6936, 21910, 29892, 1058, 8988, 373, 5201, 5080, 29915, 29879, 25408, 1156, 278, 19405, 29872, 471, 10322, 29892, 471, 6919, 5414, 5188, 4637, 297, 1383, 6834, 7103, 29892, 2998, 408, 278, 4989, 2526, 414, 29915, 25408, 29889, 13, 797, 278, 4688, 760, 310, 29871, 29896, 29947, 29945, 29945, 5011, 379, 475, 750, 8676, 278, 14737, 428, 472, 278, 14622, 1095, 310, 26832, 347, 7103, 310, 263, 28645, 5214, 17526, 287, 411, 13977, 29889, 512, 3390, 310, 445, 540, 7625, 263, 2498, 970, 273, 29915, 29879, 29889, 530, 28859, 14862, 15134, 10959, 304, 278, 8718, 310, 1438, 5188, 4637, 29889, 3118, 310, 278, 5716, 471, 17878, 408, 270, 1160, 29889, 512, 1797, 304, 15589, 372, 1283, 263, 1373, 1111, 284, 3974, 471, 11872, 297, 372, 29889, 3237, 29889, 379, 475, 29915, 29879, 2211 ]
1,024
CommonCrawl
0.173966
-0.228416
0.861761
-0.378135
Awards and Honours: Hollywood Oscar Costume design Gainsborough Studios Roy Lansford SUMMARY: This interview was conducted in 2000, when Julie Harris was 79 years old. Harris discusses the span of her career, beginning with aspirations of becoming a fashion artist that led her to study at Chelsea Art School. She describes her experiences during the Blitz and as a corporal in the Auxiliary Territorial Service during the Second World War. Harris recalls working as a design assistant to Elizabeth Haffenden at Gainsborough Studios, describingthe eventual demise of Gainsborough and her transition to Rank's Pinewood Studios. She then discusses her work on Casino Royale (1967), The Wrong Box (1966) and other Bryan Forbes films, as well as with notable stars like Michael Caine and David Niven. The final part of the interview features a discussion on the effects of censorship – in particular, the Hollywood Production Code – on designing film costumes. Although relatively short in length, this interview is an enlightening glimpse into the history of British film costume design. Julie_Harris_Final.pdf The copyright of this recording is vested in the BECTU History Project. Interviewer: Roy Lansford Recorded on the 31st August 2000. RL: Right then Julie, if we could start from the very beginning, from when you were born. JH: I was born in 1921, which is three years after the First World War. Totally different world, so in no way can one relate now one's kind of upbringing to what happens today. Iwent to Kindergarten; I mean, you don't even hear the word Kindergarten. I had a nanny. Then I went to boarding school when I was quite young, because I was an only child and probably very spoiled (so it was a good thing I went to boarding school). Then I stayed there until I was about sixteen – no, fourteen, and then I went to another day school, by whichtime I was starting to decide what I wanted to do. I'd always been in love with Clark Gableand other film stars, and I thought I wanted to be an actress and wanted to go on the stage.I don't think so much that I was going to be a film star; I was going to be an actress on the stage. Anyway, my father thought that that wasn't a proper thing to do, and I must do something to earn a proper living. So I decided then that I would be a fashion artist. Now today, nobody in their right mindwould be a fashion artist, but that's what I thought I would do. You see, back in those pre-war years (and I'm talking of 1936, 1937) some girls went to university but not very many,and you either went to finishing school or you did a domestic science course or you did a secretarial, or you got some other kind of job. First of all, I did go to art school – I went to Chelsea Art School.1 (Laughing) I don't think I worked very hard, I wasn't a great artist, andthe fashion course was just taken by Graham Sutherland's wife, Kathleen, who I'm not sureknew a great deal about fashion, but it was all there was in the evenings.2 Then I won a competition in a Sunday paper and I got a scholarship to go to a dress designing/making school. I never learned to dress-make, and to this day, I'm not very good at sewing onbuttons. I found it quite useful not to able to sew in the wardrobe (department) because you were never asked to do anything. So, very firmly, no, I can't sew! People wondered howyou could know about clothes if you couldn't make them, but I've had many, many years in clothes, and you begin to learn. I went to work eventually for someone called a court dressmaker, and that was in the days when debutantes went to court to be presented, and they had three feathers in their hair and a long train and long white gloves, and rather lovely evening dresses. So that was the beginning of my real fashion life. One day into this shop where I worked, came Greta Gynt, who was a great film star of the 1930s and into the 1940s.3 I was absolutely st
[ 9220, 322, 7906, 2470, 29901, 13, 19984, 16239, 19054, 9839, 2017, 2874, 13, 29954, 2708, 22187, 23268, 13, 9588, 29891, 365, 550, 4006, 13, 25021, 1529, 13207, 29901, 910, 15593, 471, 18043, 297, 29871, 29906, 29900, 29900, 29900, 29892, 746, 2739, 347, 20349, 471, 29871, 29955, 29929, 2440, 2030, 29889, 20349, 5353, 267, 278, 10638, 310, 902, 6413, 29892, 6763, 411, 7051, 381, 800, 310, 14171, 263, 13460, 7664, 393, 5331, 902, 304, 6559, 472, 678, 2870, 29874, 3012, 4523, 29889, 2296, 16612, 902, 27482, 2645, 278, 3164, 2784, 322, 408, 263, 17266, 284, 297, 278, 319, 1314, 2638, 653, 19833, 9020, 6692, 2645, 278, 6440, 2787, 3362, 29889, 20349, 1162, 4293, 1985, 408, 263, 2874, 20255, 304, 13061, 379, 3470, 2162, 472, 402, 2708, 22187, 23268, 29892, 20766, 1552, 1741, 950, 1261, 895, 310, 402, 2708, 22187, 322, 902, 9558, 304, 22125, 29915, 29879, 349, 457, 6115, 23268, 29889, 2296, 769, 5353, 267, 902, 664, 373, 6960, 1789, 15793, 744, 313, 29896, 29929, 29953, 29955, 511, 450, 399, 29373, 11773, 313, 29896, 29929, 29953, 29953, 29897, 322, 916, 13307, 273, 1152, 5707, 12298, 29892, 408, 1532, 408, 411, 18697, 10819, 763, 5765, 9243, 457, 322, 4699, 405, 5428, 29889, 450, 2186, 760, 310, 278, 15593, 5680, 263, 10679, 373, 278, 9545, 310, 274, 6073, 3527, 785, 297, 3153, 29892, 278, 19180, 19561, 5920, 785, 373, 2874, 292, 2706, 3438, 9351, 29889, 8512, 13774, 3273, 297, 3309, 29892, 445, 15593, 338, 385, 427, 4366, 8333, 330, 12552, 344, 964, 278, 4955, 310, 4908, 2706, 3438, 2017, 2874, 29889, 13, 27501, 347, 29918, 29950, 2749, 275, 29918, 15790, 29889, 5140, 13, 1576, 3509, 1266, 310, 445, 16867, 338, 325, 2868, 297, 278, 350, 13845, 29965, 5298, 8010, 29889, 13, 4074, 29894, 15580, 29901, 15793, 365, 550, 4006, 13, 9182, 287, 373, 278, 29871, 29941, 29896, 303, 3111, 29871, 29906, 29900, 29900, 29900, 29889, 13, 2241, 29901, 10428, 769, 2739, 347, 29892, 565, 591, 1033, 1369, 515, 278, 1407, 6763, 29892, 515, 746, 366, 892, 6345, 29889, 13, 29967, 29950, 29901, 306, 471, 6345, 297, 29871, 29896, 29929, 29906, 29896, 29892, 607, 338, 2211, 2440, 1156, 278, 3824, 2787, 3362, 29889, 19013, 635, 1422, 3186, 29892, 577, 297, 694, 982, 508, 697, 29279, 1286, 697, 29915, 29879, 2924, 310, 701, 1182, 292, 292, 304, 825, 5930, 9826, 29889, 306, 29893, 296, 304, 15857, 29887, 8109, 29936, 306, 2099, 29892, 366, 1016, 29915, 29873, 1584, 8293, 278, 1734, 15857, 29887, 8109, 29889, 306, 750, 263, 302, 14763, 29889, 1987, 306, 3512, 304, 7613, 292, 3762, 746, 306, 471, 3755, 4123, 29892, 1363, 306, 471, 385, 871, 2278, 322, 3117, 1407, 13345, 2356, 313, 578, 372, 471, 263, 1781, 2655, 306, 3512, 304, 7613, 292, 3762, 467, 1987, 306, 27661, 727, 2745, 306, 471, 1048, 4832, 9404, 785, 694, 29892, 3023, 9404, 29892, 322, 769, 306, 3512, 304, 1790, 2462, 3762, 29892, 491, 377, 1428, 603, 306, 471, 6257, 304, 11097, 825, 306, 5131, 304, 437, 29889, 306, 29915, 29881, 2337, 1063, 297, 5360, 411, 17129, 402, 519, 392, 916, 2706, 10819, 29892, 322, 306, 2714, 306, 5131, 304, 367, 385, 20993, 322, 5131, 304, 748, 373, 278, 7408, 29889, 29902, 1016, 29915, 29873, 1348, 577, 1568, 393, 306, 471, 2675, 304, 367, 263, 2706, 5810, 29936, 306, 471, 2675, 304, 367, 385, 20993, 373, 278, 7408, 29889, 18110, 29892, 590, 4783, 2714, 393, 393, 9007, 29915, 29873, 263, 1571, 2655, 304, 437, 29892, 322, 306, 1818, 437, 1554, 304, 2326, 29876, 263, 1571, 8471, 29889, 13, 6295, 306, 8459, 769, 393, 306, 723, 367, 263, 13460, 7664, 29889, 2567, 9826, 29892, 23196, 297, 1009, 1492, 3458, 29893, 483, 367, 263, 13460, 7664, 29892, 541, 393, 29915, 29879, 825, 306, 2714, 306, 723, 437, 29889, 887, 1074, 29892, 1250, 297, 1906, 758, 29899, 4495, 2440, 313, 392, 306, 29915, 29885, 9963, 310, 29871, 29896, 29929, 29941, 29953, 29892, 29871, 29896, 29929, 29941, 29955, 29897, 777, 14000, 3512, 304, 16372, 541, 451, 1407, 1784, 29892, 392, 366, 2845, 3512, 304, 28321, 3762, 470, 366, 1258, 263, 21849, 10466, 3236, 470, 366, 1258, 263, 7035, 27521, 29892, 470, 366, 2355, 777, 916, 2924, 310, 4982, 29889, 3824, 310, 599, 29892, 306, 1258, 748, 304, 1616, 3762, 785, 306, 3512, 304, 678, 2870, 29874, 3012, 4523, 29889, 29896, 313, 29931, 2987, 2790, 29897, 306, 1016, 29915, 29873, 1348, 306, 3796, 1407, 2898, 29892, 306, 9007, 29915, 29873, 263, 2107, 7664, 29892, 322, 1552, 13460, 3236, 471, 925, 4586, 491, 22196, 317, 14107, 1049, 29915, 29879, 6532, 29892, 19663, 280, 264, 29892, 1058, 306, 29915, 29885, 451, 1854, 29895, 1482, 263, 2107, 5376, 1048, 13460, 29892, 541, 372, 471, 599, 727, 471, 297, 278, 1584, 886, 29889, 29906, 1987, 306, 2113, 263, 13888, 297, 263, 16340, 5650, 322, 306, 2355, 263, 21344, 3527, 304, 748, 304, 263, 10714, 2874, 292, 29914, 28990, 3762, 29889, 306, 2360, 10972, 304, 10714, 29899, 5675, 29892, 322, 304, 445, 2462, 29892, 306, 29915, 29885, 451, 1407, 1781, 472, 409, 16958, 373, 4187, 7453, 29889, 306, 1476, 372, 3755, 5407, 451, 304, 2221, 304, 409, 29893, 297, 278, 281, 538, 307, 915, 313, 311, 8076, 29897, 1363, 366, 892, 2360, 4433, 304, 437, 3099, 29889, 1105, 29892, 1407, 9226, 368, 29892, 694, 29892, 306, 508, 29915, 29873, 409, 29893, 29991, 11647, 4997, 287, 920, 6293, 1033, 1073, 1048, 22095, 565, 366, 8496, 29915, 29873, 1207, 963, 29892, 541, 306, 29915, 345, 750, 1784, 29892, 1784, 2440, 297, 22095, 29892, 322, 366, 3380, 304, 5110, 29889, 306, 3512, 304, 664, 10201, 363, 4856, 2000, 263, 8973, 10714, 28107, 29892, 322, 393, 471, 297, 278, 3841, 746, 9512, 3794, 3512, 304, 8973, 304, 367, 9132, 29892, 322, 896, 750, 2211, 1238, 19467, 297, 1009, 11315, 322, 263, 1472, 7945, 322, 1472, 4796, 15482, 1960, 29892, 322, 3265, 12355, 873, 11005, 10714, 267, 29889, 1105, 393, 471, 278, 6763, 310, 590, 1855, 13460, 2834, 29889, 13, 6716, 2462, 964, 445, 18296, 988, 306, 3796, 29892, 2996, 4122, 941, 402, 3903, 29892, 1058, 471, 263, 2107, 2706, 5810, 310, 278, 29871, 29896, 29929, 29941, 29900, 29879, 322, 964, 278, 29871, 29896, 29929, 29946, 29900, 29879, 29889, 29941, 306, 471, 13312, 380 ]
1,024
CommonCrawl
0.913686
-0.319261
0.352486
0.236279
unned by this lady who had false eyelashes,which I'd never seen before. She was very beautiful and wearing lots of silver fox fur. She was having some clothes made for a film, and it was maybe then that I started thinking, perhaps I would like to design clothes for films. I didn't know anything about it, but I suppose we all think we can do it without any bother! So I then started thinking; this is whatI'd like to do. I did lots of sketches and sent them off to people like David Lean and Alexander Korda,4 and they all came back with, "thank you very much, very nice, but no." Then the war came, and I left that job because the shop closed. I used to go out dancing, as other young people did, when the chaps were on leave, and I went on a fateful night to the Café De Paris when that was bombed. There were a lot of casualties – I think about 60 people were killed5 – including Ken 'Snake Hips' Johnson, who was the band leader, and 1 The Chelsea College of Art and Design, formerly the Chelsea School of Art, is a world-leading art and design institution in London. In the 1930s its art course included design, weaving, embroidery and electrodeposition.2 Graham Sutherland (1903-1980), a notable English abstract artist, was employed as a teacher at Chelsea School of Art. His wife, Kathleen Sutherland (née Barry), was also an artist. 3 Greta Gynt (1916-2000), born Margrethe Voxholt, was a Norwegian singer, dancer and actress. 4 David Lean (1908-1991) was an English film director best known for such films as The Bridge on the River Kwai(1957) and Lawrence of Arabia (1962). Alexander Korda (1893-1956) was a Hungarian-born film producer and director who in the 1930s became a major figure in the British film industry, founding London Films in 1932. 5 Café de Paris is a London nightclub that opened in 1924. In the 20s and 30s it featured such artists as Marlene Dietrich and counted the Prince of Wales and Cole Porter among its regular patrons. On March 8, 1941, the nightclub was bombed, killing 34 people. It reopened in 1948. quite a few of his band.6 It was the most horrendous experience, but these things ratherfade in one's memory. RL: Were you injured at all in that? JH: I got an injury in my arm, which was double-luck – lucky I wasn't killed, but lucky I got this injury, which is my left arm, because I draw in my left hand, and it didn't do it any damage beyond it being a bit of a mess. After that was over, my call-up into the ATS was deferred for a while, and then I was called up at the end of 1942.7 I went up to Harrogate to learn how to become a lady soldier (laughing), which I was never very good at. I don't think I did anything very brilliant, but I ended up being Corporal Harris. Just at the end of the war when I was in London, I used to go to the overseas club dancing on Thursday nights with my friends. You stood around and you got picked up by whoever there was around to be picked up. You wouldn't think ofdoing it today, let alone walk home alone in the blackouts with a total stranger, but my friend met a Polish gentleman that worked in the Polish film industry who knew Kleeman at Gainsborough Studios, who was the studio manager.8 So cutting a long story short, even before I got demobbed, I got an introduction to Gainsborough Studios, and I trolled along in my uniform, and was taken on the set of The Wicked Lady, which was being filmed with Leslie Arliss doing the directing, so then it really got into my blood.9 I mean, the smell of the whole thing, and standing in the lift with James Mason10 – I thought, this was the place to work. Anyway, nothing happened of that, I got my demob, I came out, and I firstly worked in the Canadian officers'
[ 5963, 287, 491, 445, 11379, 1058, 750, 2089, 321, 29891, 295, 1161, 267, 29892, 4716, 306, 29915, 29881, 2360, 3595, 1434, 29889, 2296, 471, 1407, 9560, 322, 591, 4362, 14568, 310, 13283, 1701, 29916, 3261, 29889, 2296, 471, 2534, 777, 22095, 1754, 363, 263, 2706, 29892, 322, 372, 471, 5505, 769, 393, 306, 4687, 7291, 29892, 6060, 306, 723, 763, 304, 2874, 22095, 363, 12298, 29889, 306, 3282, 29915, 29873, 1073, 3099, 1048, 372, 29892, 541, 306, 7755, 591, 599, 1348, 591, 508, 437, 372, 1728, 738, 24738, 29991, 1105, 306, 769, 4687, 7291, 29936, 445, 338, 825, 29902, 29915, 29881, 763, 304, 437, 29889, 306, 1258, 14568, 310, 21256, 267, 322, 2665, 963, 1283, 304, 2305, 763, 4699, 951, 273, 322, 9428, 476, 536, 29874, 29892, 29946, 322, 896, 599, 2996, 1250, 411, 29892, 376, 386, 804, 366, 1407, 1568, 29892, 1407, 7575, 29892, 541, 694, 1213, 13, 11760, 278, 1370, 2996, 29892, 322, 306, 2175, 393, 4982, 1363, 278, 18296, 5764, 29889, 306, 1304, 304, 748, 714, 6025, 3277, 29892, 408, 916, 4123, 2305, 1258, 29892, 746, 278, 521, 2547, 892, 373, 5967, 29892, 322, 306, 3512, 373, 263, 285, 22279, 4646, 304, 278, 315, 28059, 897, 3681, 746, 393, 471, 18523, 2580, 29889, 1670, 892, 263, 3287, 310, 3209, 950, 2938, 785, 306, 1348, 1048, 29871, 29953, 29900, 2305, 892, 9445, 29945, 785, 3704, 10015, 525, 29903, 21040, 379, 4512, 29915, 11717, 29892, 1058, 471, 278, 3719, 11822, 29892, 322, 13, 29896, 450, 678, 2870, 29874, 6346, 310, 3012, 322, 12037, 29892, 21510, 278, 678, 2870, 29874, 4523, 310, 3012, 29892, 338, 263, 3186, 29899, 25369, 1616, 322, 2874, 12666, 297, 4517, 29889, 512, 278, 29871, 29896, 29929, 29941, 29900, 29879, 967, 1616, 3236, 5134, 2874, 29892, 591, 5555, 29892, 7232, 1007, 708, 322, 28118, 311, 3283, 29889, 29906, 22196, 317, 14107, 1049, 313, 29896, 29929, 29900, 29941, 29899, 29896, 29929, 29947, 29900, 511, 263, 18697, 4223, 9846, 7664, 29892, 471, 15723, 408, 263, 15703, 472, 678, 2870, 29874, 4523, 310, 3012, 29889, 3600, 6532, 29892, 19663, 280, 264, 317, 14107, 1049, 313, 24697, 23032, 511, 471, 884, 385, 7664, 29889, 13, 29941, 4122, 941, 402, 3903, 313, 29896, 29929, 29896, 29953, 29899, 29906, 29900, 29900, 29900, 511, 6345, 1085, 7979, 1552, 478, 2251, 5391, 29873, 29892, 471, 263, 27990, 15640, 29892, 6025, 2265, 322, 20993, 29889, 13, 29946, 4699, 951, 273, 313, 29896, 29929, 29900, 29947, 29899, 29896, 29929, 29929, 29896, 29897, 471, 385, 4223, 2706, 8881, 1900, 2998, 363, 1316, 12298, 408, 450, 16230, 373, 278, 6163, 476, 29893, 1794, 29898, 29896, 29929, 29945, 29955, 29897, 322, 19520, 310, 10387, 423, 313, 29896, 29929, 29953, 29906, 467, 9428, 476, 536, 29874, 313, 29896, 29947, 29929, 29941, 29899, 29896, 29929, 29945, 29953, 29897, 471, 263, 14198, 13956, 29899, 4939, 2706, 14297, 322, 8881, 1058, 297, 278, 29871, 29896, 29929, 29941, 29900, 29879, 3897, 263, 4655, 4377, 297, 278, 4908, 2706, 13661, 29892, 1476, 292, 4517, 21470, 297, 29871, 29896, 29929, 29941, 29906, 29889, 13, 29945, 315, 28059, 316, 3681, 338, 263, 4517, 4646, 29066, 393, 6496, 297, 29871, 29896, 29929, 29906, 29946, 29889, 512, 278, 29871, 29906, 29900, 29879, 322, 29871, 29941, 29900, 29879, 372, 15000, 1316, 17906, 408, 1085, 29880, 1600, 24315, 4018, 322, 29115, 278, 10787, 310, 13706, 322, 16816, 7102, 357, 4249, 967, 4943, 2373, 12628, 29889, 1551, 4779, 29871, 29947, 29892, 29871, 29896, 29929, 29946, 29896, 29892, 278, 4646, 29066, 471, 18523, 2580, 29892, 23393, 29871, 29941, 29946, 2305, 29889, 739, 337, 3150, 287, 297, 29871, 29896, 29929, 29946, 29947, 29889, 13, 339, 568, 263, 2846, 310, 670, 3719, 29889, 29953, 739, 471, 278, 1556, 4029, 28759, 681, 7271, 29892, 541, 1438, 2712, 3265, 21675, 297, 697, 29915, 29879, 3370, 29889, 13, 2241, 29901, 399, 406, 366, 28606, 472, 599, 297, 393, 29973, 13, 29967, 29950, 29901, 306, 2355, 385, 24092, 297, 590, 5075, 29892, 607, 471, 3765, 29899, 29880, 2707, 785, 9885, 29891, 306, 9007, 29915, 29873, 9445, 29892, 541, 9885, 29891, 306, 2355, 445, 24092, 29892, 607, 338, 590, 2175, 5075, 29892, 1363, 306, 4216, 297, 590, 2175, 1361, 29892, 322, 372, 3282, 29915, 29873, 437, 372, 738, 18658, 8724, 372, 1641, 263, 2586, 310, 263, 4473, 29889, 13, 13555, 393, 471, 975, 29892, 590, 1246, 29899, 786, 964, 278, 319, 9375, 471, 316, 14373, 363, 263, 1550, 29892, 322, 769, 306, 471, 2000, 701, 472, 278, 1095, 310, 29871, 29896, 29929, 29946, 29906, 29889, 29955, 306, 3512, 701, 304, 3536, 9102, 403, 304, 5110, 920, 304, 4953, 263, 11379, 20767, 313, 433, 29700, 511, 607, 306, 471, 2360, 1407, 1781, 472, 29889, 306, 1016, 29915, 29873, 1348, 306, 1258, 3099, 1407, 27592, 29892, 541, 306, 9698, 701, 1641, 12767, 284, 20349, 29889, 3387, 472, 278, 1095, 310, 278, 1370, 746, 306, 471, 297, 4517, 29892, 306, 1304, 304, 748, 304, 278, 975, 344, 294, 4402, 6025, 3277, 373, 498, 1295, 3250, 4646, 29879, 411, 590, 7875, 29889, 887, 8389, 2820, 322, 366, 2355, 18691, 701, 491, 1058, 1310, 727, 471, 2820, 304, 367, 18691, 701, 29889, 887, 7656, 29915, 29873, 1348, 310, 1867, 292, 372, 9826, 29892, 1235, 7432, 6686, 3271, 7432, 297, 278, 4628, 17718, 411, 263, 3001, 26507, 29892, 541, 590, 5121, 1539, 263, 19919, 16615, 393, 3796, 297, 278, 19919, 2706, 13661, 1058, 6363, 9924, 11422, 472, 402, 2708, 22187, 23268, 29892, 1058, 471, 278, 8693, 8455, 29889, 29947, 1105, 28967, 263, 1472, 5828, 3273, 29892, 1584, 1434, 306, 2355, 1261, 711, 2580, 29892, 306, 2355, 385, 18707, 304, 402, 2708, 22187, 23268, 29892, 322, 306, 260, 24476, 3412, 297, 590, 9090, 29892, 322, 471, 4586, 373, 278, 731, 310, 450, 399, 17840, 10040, 29892, 607, 471, 1641, 977, 2168, 411, 2664, 3197, 826, 29880, 790, 2599, 278, 1513, 292, 29892, 577, 769, 372, 2289, 2355, 964, 590, 10416, 29889, 29929, 306, 2099, 29892, 278, 1560, 514, 310, 278, 3353, 2655, 29892, 322, 13407, 297, 278, 13777, 411, 5011, 28095, 29896, 29900, 785, 306, 2714, 29892, 445, 471, 278, 2058, 304, 664, 29889, 18110, 29892, 3078, 9559, 310, 393, 29892, 306, 2355, 590, 1261, 711, 29892, 306, 2996, 714, 29892, 322, 306, 937, 368, 3796, 297, 278, 11443, 13049, 29915 ]
1,024
CommonCrawl
0.538732
-0.644842
0.438561
-0.694038