text
stringlengths 2
20.5k
| meta
dict | score
float64 0
0.97
| span_scores
list |
---|---|---|---|
Q:
How to save a bitmap image as JPEG
The problem is that the file is not saving as JPEG. Just a normal file.
This is my code so far:
private void btnSave_Click(object sender, EventArgs e)
{
saveDialog.FileName = txtModelName.Text;
if (saveDialog.ShowDialog() == DialogResult.OK)
{
Bitmap bmp = new Bitmap(pnlDraw.Width, pnlDraw.Height);
pnlDraw.DrawToBitmap(bmp, new Rectangle(0, 0,
pnlDraw.Width, pnlDraw.Height));
bmp.Save(saveDialog.FileName, System.Drawing.Imaging.ImageFormat.Jpeg);
}
}
A:
How about checking if file name has .jpg extension before saving it?
You can also change saveDialog to only allow user selecting .jpg images.
private void btnSave_Click(object sender, EventArgs e)
{
saveDialog.FileName = txtModelName.Text;
saveDialog.DefaultExt = "jpg";
saveDialog.Filter = "JPG images (*.jpg)|*.jpg";
if (saveDialog.ShowDialog() == DialogResult.OK)
{
Bitmap bmp = new Bitmap(pnlDraw.Width, pnlDraw.Height);
pnlDraw.DrawToBitmap(bmp, new Rectangle(0, 0,
pnlDraw.Width, pnlDraw.Height));
var fileName = saveDialog.FileName;
if(!System.IO.Path.HasExtension(fileName) || System.IO.Path.GetExtension(fileName) != "jpg")
fileName = fileName + ".jpg";
bmp.Save(fileName, System.Drawing.Imaging.ImageFormat.Jpeg);
}
}
| {
"pile_set_name": "StackExchange"
} | 0.060026 | [
{
"begin": 0,
"end": 39,
"score": 0.02801997
},
{
"begin": 39,
"end": 92,
"score": 0.01687393
},
{
"begin": 92,
"end": 112,
"score": 0.01700746
},
{
"begin": 112,
"end": 136,
"score": 0.02387949
},
{
"begin": 136,
"end": 191,
"score": 0.10625227
},
{
"begin": 191,
"end": 238,
"score": 0.046001226
},
{
"begin": 238,
"end": 291,
"score": 0.053805612
},
{
"begin": 291,
"end": 297,
"score": 0.013698453
},
{
"begin": 297,
"end": 361,
"score": 0.09192448
},
{
"begin": 361,
"end": 1380,
"score": 0.098264046
}
] |
-424*w - 6302 for w.
-11
Solve -464 = 26*w - 5*w - 170 for w.
-14
Solve -137*q + 532 = -213*q for q.
-7
Solve -12 = 32*x - 27 - 49 for x.
2
Solve -453*i + 439*i = -28 for i.
2
Solve -337*p - 54 = -310*p for p.
-2
Solve -40*i = 720 - 80 for i.
-16
Solve -1608 = 103*k + 98*k for k.
-8
Solve -121*l - 37*l - 3799 = -27*l for l.
-29
Solve 1892 = 91*f + 436 for f.
16
Solve 48*c - 25*c - 30 = 17*c for c.
5
Solve -237*k - 361 + 2497 = -708 for k.
12
Solve 35*y = 92*y - 31*y + 390 for y.
-15
Solve 66 + 195 = -29*r for r.
-9
Solve 78*w + 85*w = 167*w - 44 for w.
11
Solve -p + 42*p + 25*p - 1122 = 0 for p.
17
Solve -56*n = 162*n - 872 for n.
4
Solve 142*d - 1384 = 462 for d.
13
Solve 183*v - 536 + 3999 = -1295 for v.
-26
Solve -11*r - 3*r + 7*r - 7 = 0 for r.
-1
Solve -1257 = 928*w + 3223 - 768 for w.
-4
Solve 0 = 66*l - 88*l - 132 for l.
-6
Solve -126*r - 1007 = 33*r - 4187 for r.
20
Solve 97*y - 49*y = -187*y - 2350 for y.
-10
Solve 18*b - 1502 + 1826 = 0 for b.
-18
Solve -68*f = 20*f + 616 for f.
-7
Solve 1483 = 298*h + 589 for h.
3
Solve -489*j + 390 = -459*j for j.
13
Solve -20*n - 68 - 272 + 140 = 0 for n.
-10
Solve -47*g + 19*g + 241 = -95 for g.
12
Solve 22*f = 12035 - 12255 for f.
-10
Solve 1170*p + 960 = 1106*p for p.
-15
Solve 0 = 491*y - 483*y + 200 for y.
-25
Solve 25*x - 84*x = -531 for x.
9
Solve -3413*n + 1696*n = -1700*n + 51 for n.
-3
Solve -30 = 25*r - 442 - 263 for r.
27
Solve -11*j - 4*j = -231*j + 648 for j.
3
Solve -120*b - 1629 + 888 = 1779 for b.
-21
Solve -8*n + 75*n + 1484 = -39*n for n.
-14
Solve -21531*o = -21506*o + 550 for o.
-22
Solve -385*m - 2225 - 470 = 0 for m.
-7
Solve 0 = 4*j + 43*j - 511*j - 8352 for j.
-18
Solve 36*r + 4*r - 416 = -12*r for r.
8
Solve 1019*d = 1002*d - 408 for d.
-24
Solve 445*x = 384*x + 305 for x.
5
Solve 113*b - 450 = 38*b for b.
6
Solve -147*j - 29 + 51 - 1786 = 0 for j.
-12
Solve 752 + 2065 = -434*s - 655 for s.
-8
Solve 13*i = 20*i - 4*i + 36 for i.
-12
Solve -1755 - 2565 = -480*o for o.
9
Solve -533*j + 304*j = -289*j + 2280 for j.
38
Solve 13*b + 169 = 29*b - 71 for b.
15
Solve 295 = 39*r + 217 for r.
2
Solve 18 = -2*m + 50 + 8 for m.
20
Solve -176*b + 693 + 1183 = -42*b for b.
14
Solve -124*x - 242*x - 408*x + 21672 = 0 for x.
28
Solve -388*p + 7969 = 1761 for p.
16
Solve 7351*i = 7337*i + 182 for i.
13
Solve 454*v + 502*v - 12*v = 6608 for v.
7
Solve 217*m + 196 - 90 = -545 for m.
-3
Solve -2356 = -121*o + 1153 for o.
29
Solve -129*u + 578 = -963 - 781 for u.
18
Solve -12*i - 7*i = 111 + 22 for i.
-7
Solve 630 = 56*o + 383 + 415 for o.
-3
Solve 6*v + 7*v + 167 = 115 for v.
-4
Solve -18*j + 73 - 7 = 4*j for j.
3
Solve -1684 = -83*m - 771 for m.
11
Solve 12 - 3 + 126 = -9*w for w.
-15
Solve 4*r + 4 + 23 = 51 for r.
6
Solve 13587 = 114*g - 918*g - 12945 for g.
-33
Solve 0 = -128*k + 308 - 52 for k.
2
Solve -344*z + 282 = -52*z - 10*z for z.
1
Solve 12*g + 54*g = 132 for g.
2
Solve 2107 = -279*m - 2636 for m.
-17
Solve 44*x + 10*x = 14*x - 240 for x.
-6
Solve -6*o - 3*o + 16 = 124 for o.
-12
Solve -304*l + 160 = -324*l for l.
-8
Solve -14942 + 3276 = -614*s for s.
19
Solve 48 + 129 = 69*s - 99 for s.
4
Solve 59*g = -45*g - 625 - 1559 for g.
-21
Solve 5*m + 52 = m - 24 for m.
-19
Solve -994*c - 192 = 136*c + 9978 for c.
-9
Solve -747 = -106*n + 23*n for n.
9
Solve 3489 = 5*m + 3444 for m.
9
Solve -f + 164 = -51*f + 764 for f.
12
Solve -510 - 317 + 471 = 89*n for n.
-4
Solve -297*y = -155*y - 161*y - 152 for y.
-8
Solve 12*l + 66 = -24*l - 150 for l.
-6
Solve -11*m - m = 3*m + 165 for m.
-11
Solve -942*o - 1994 = -865 + 1697 for o.
-3
Solve 8143 = -248*a - 4701 + 4164 for a.
-35
Solve -33538 = -31*s - 33569 for s.
-1
Solve 266*b - 1834*b = 268*b + 33048 for b.
-18
Solve -9914 = -945*m + 7096 for m.
18
Solve 1929*k - 1943*k - 42 = 0 for k.
-3
Solve 20245*u - 20231*u + 42 = 0 for u.
-3
Solve -813*j + 1860 = -689*j for j.
15
Solve 0 = -628*q - 580*q - 19328 for q.
-16
Solve 0 = 26*t - 432 + 99 - 109 for t.
17
Solve -1 = -62*z + 185 for z.
3
Solve 45 - 84 + 45 = -3*a for a.
-2
Solve -208*v = 408*v + 6137 - 16609 for v.
17
Solve -98*c - 23 = -585 - 614 for c.
12
Solve -56228 = 20*v - 56388 for v.
8
Solve -399 = 126*w + 1729 + 518 for w.
-21
Solve 13*i = -14*i + 21 + 6 for i.
1
Solve 22*o + 62*o - 1022 = -2534 for o.
-18
Solve -105*w = 167*w + 4624 for w.
-17
Solve 3184 = 32*c + 2672 for c.
16
Solve -302 = 22*z + 380 - 22 for z.
-30
Solve 8*o + 11*o + 544 = 53*o for o.
16
Solve 8419*c - 656 = -8395*c + 16855*c for c.
-16
Solve 4099 + 521 = -330*d for d.
-14
Solve 0 = 780*i - 762 - 2514 - 624 for i.
5
Solve 41177 = -343*n - 29*n + 54941 for n.
37
Solve -826*o = -839*o - 182 for o.
-14
Solve 0 = 11*a - 43*a + 384 for a.
12
Solve -7 = -11*v - 3*v - 21 for v.
-1
Solve 2683*u - 2626*u = 513 for u.
9
Solve 1571 + 337 - 505 = -61*i for i.
-23
Solve 14*p = 822 - 752 for p.
5
Solve 0 = -16*g + 6185 - 6057 for g.
8
Solve 6*i + 2058 = 2190 for i.
22
Solve -34 + 62 - 37 = n for n.
-9
Solve -1830*j - 59436 - 43044 = 732*j for j.
-40
Solve 0 = -2*m + 51184 - 51194 for m.
-5
Solve 0 = 2*w + 8 + 14 for w.
-11
Solve -14*o - 3*o + o + 112 = 0 for o.
7
Solve 274 - 107 = 18*o + 77 for o.
5
Solve 19*w - 26647 + 25727 = -27*w for w.
20
Solve 0 = -824*l - 485 + 1309 for l.
1
Solve 191177*g + 589 = 191105*g + 2389 for g.
25
Solve 23*q = -11*q - 2*q - 324 for q.
-9
Solve 572*m + 5421 - 960 + 4119 = 0 for m.
-15
Solve -10*u - 280 = 10*u for u.
-14
Solve 9*s - 11 + 11 + 135 = 0 for s.
-15
Solve -667 = 4*b - 22*b - 11*b for b.
23
Solve -53*i = -60*i + 13 - 55 for i.
-6
Solve 32*k = -k - 297 for k.
-9
Solve 34*p + 1019 - 305 = 0 for p.
-21
Solve 468 = -9*i - 3*i - 14*i for i.
-18
Solve 6118 = -445*u + 179*u for u.
-23
Solve 0 = 858*v - 846*v + 180 for v.
-15
Solve -78 + 33 = -6*c + 75 for c.
20
Solve -5609 + 758 = 147*q for q.
-33
Solve 0 = 94*g - 66*g - 280 for g.
10
Solve 0 = -29*o - 1060865 + 1060430 for o.
-15
Solve -64*t - 236 = -87 + 171 for t.
-5
Solve -79*l + 684 = -7*l + 4*l for l.
9
Solve 76*s - 1565 = -29*s - 305 for s.
12
Solve 39*s + 118*s = -314 for s.
-2
Solve 114 - 20 = -30*f - 86 for f.
-6
Solve 35*s - 126*s - 369 = 32*s for s.
-3
Solve 1811 = -67*k + 2682 for k.
13
Solve -103*q + 2486 = 59*q - 49*q for q.
22
Solve 0 = 11682*f - 11687*f + 5 for f.
1
Solve -5203*w = -5219*w - 144 for w.
-9
Solve -1820*h - 71 = -1891*h for h.
1
Solve -82*y = -52*y + 180 for y.
-6
Solve 20*t - 546 = 62*t for t.
-13
Solve 8*b = -9*b - 11*b - 392 for b.
-14
Solve -45*w + 5*w - 1799 = -1159 for w.
-16
Solve 40*n - 1156 = -716 for n.
11
Solve -2251 = 252*h + 4553 for h.
-27
Solve -73*g = 4979 - 2497 for g.
-34
Solve 22*t + 381*t + 1592 = -1632 for t.
-8
Solve -275*i = -639*i - 4732 for i.
-13
Solve 236*h - 40*h + 2015 = -337 for h.
-12
Solve -1356*z + 1046*z - 3410 = 0 for z.
-11
Solve 140 = 21*v + 14 - 0 for v.
6
Solve 36*f - 57259 = -27957 - 28222 for f.
30
Solve 42*r - 31*r + 18*r = -899 for r.
-31
Solve -212*f + 372 = -476 for f.
4
Solve 163*s + 173 - 33 = 173*s for s.
14
Solve 0 = -247*p - 2784 - 427 for p.
-13
Solve 1121*z - 1155*z = -272 for z.
8
Solve -3650*j - 570 = -3612*j for j.
-15
Solve -87*p = 32*p - 1190 for p.
10
Solve 107991*f + 286 = 108004*f for f.
22
Solve 93*r - 19076 + 19448 = 0 for r.
-4
Solve 47*g - 2414 = -3166 for g.
-16
Solve 3421*a - 3429*a + 24 = 0 for a.
3
Solve -212*q - 11*q - 14*q - 2844 = 0 for q.
-12
Solve 0 = -10*c - c - 165 for c.
-15
Solve -328*l = -69*l + 518 for l.
-2
Solve 81*y - 165*y = -109*y - 850 for y.
-34
Solve 74*t = -671 - 69 for t.
-10
Solve 81*x + 230 + 188 = -230 for x.
-8
Solve 70847*b - 70860*b + 104 = 0 for b.
8
Solve 75*k + 4565 = -605*k - 19235 for k.
-35
Solve 65 = -1934*i - 2425 - 18784 for i.
-11
Solve 31*v - 26*v = 35 for v.
7
Solve -3558 = 13*b - 3610 for b.
4
Solve -115*h + 2159 = -242*h for h.
-17
Solve -157 = 36*f + 419 for f.
-16
Solve 0 = 51*p + 216 + 600 for p.
-16
Solve -112*v - 3184 = 115*v + 2491 for v.
-25
Solve 0 = -145*q - 1311 - 864 for q.
-15
Solve 44 = -3511*p + 3507*p for p.
-11
Solve 21*v + 580 = -9*v + 59*v for v.
20
Solve 726 - 1077 = 39*a for a.
-9
Solve 22290*q = 22331*q + 1435 for q.
-35
Solve 0 = 5*i + 2473 - 2408 for i.
-13
Solve 613*u - 627*u = 28 for u.
-2
Solve -9157 = 35*j - 8212 for j.
-27
Solve -10*k = -24 - 14 + 8 for k.
3
Solve -189 = -30* | {
"pile_set_name": "DM Mathematics"
} | 0.384528 | [
{
"begin": 0,
"end": 21,
"score": 0.033101074
},
{
"begin": 21,
"end": 62,
"score": 0.037561987
},
{
"begin": 62,
"end": 101,
"score": 0.026470253
},
{
"begin": 101,
"end": 138,
"score": 0.029949045
},
{
"begin": 138,
"end": 174,
"score": 0.024786422
},
{
"begin": 174,
"end": 210,
"score": 0.1071365
},
{
"begin": 210,
"end": 243,
"score": 0.026560092
},
{
"begin": 243,
"end": 281,
"score": 0.114652775
},
{
"begin": 281,
"end": 326,
"score": 0.07732344
},
{
"begin": 326,
"end": 8194,
"score": 0.25256458
}
] |
The treatment of fibers, fabrics and laundry with conditioning agents, such as fabric softeners, anti-wrinkling agents, antistatic compounds and other preparations designed to improve the properties of the treated material is a well-known operation. It is practiced most by the housewife who adds fabric softening solution in the final rinse cycle of an automatic washing machine. The substantive cationic softening agent usually employed strongly adheres to the laundered textiles and remains thereon during subsequent spin drying and heat drying. Of course, such processes require that the conditioning agents employed be highly substantive or else they will be removed with the rinse water, yielding insufficient softening activities.
In efforts to find other ways of depositing softening agents on the surfaces of fibers and fabrics, pressurized sprays have been applied to the articles to be treated either before or after drying. Even when the sprays are of very fine droplets of a solution of conditioning agent it is a tedious task to apply the spray evenly to all the articles being treated. When the spraying apparatus is included as an integral part of a drying apparatus, such as an automatic laundry dryer, the costs of the spraying apparatus, control means for it and installations of these are often so great as to make such a treatment uneconomical. Instead of using a spray, solid conditioning agents, absorbed onto or impregnated into flexible papers, cloths or sponges have been employed in the dryer. U.S. Pat. No. 3,442,692 teaches that substantive cationic conditioning compounds vaporize into the moist atmosphere of the dryer and are sorbed by the materials being tumbled therein. Although it is considered that many useful cationic conditioning agents are of such high boiling points that they are incapable of vaporizing under ordinary drying conditions, U.S. Pat. No. 3,442,692 is cited as an example of another way to use conditioning agents in the automatic laundry dryer.
Although the disadvantages of conventional softening methods, utilizing the washing machine, and more recently developed treating operations, using the automatic laundry dryer, are known, before the present invention there was no acceptable simple and economical way to apply liquid conditioning agent to fabrics to be softened or to be made antistatic in the automatic laundry dryer. Now, by following the method of this invention, good conditioning may be obtained economically and conveniently and without the necessity for the installation of complex equipment. | {
"pile_set_name": "USPTO Backgrounds"
} | 0.017345 | [
{
"begin": 0,
"end": 250,
"score": 0.0029799242
},
{
"begin": 250,
"end": 381,
"score": 0.016440906
},
{
"begin": 381,
"end": 549,
"score": 0.0003802499
},
{
"begin": 549,
"end": 738,
"score": 0.011665983
},
{
"begin": 738,
"end": 936,
"score": 0.001566284
},
{
"begin": 936,
"end": 1101,
"score": 0.041667663
},
{
"begin": 1101,
"end": 1366,
"score": 0.008624718
},
{
"begin": 1366,
"end": 1521,
"score": 0.0071799066
},
{
"begin": 1521,
"end": 1526,
"score": 0.07388254
},
{
"begin": 1526,
"end": 2567,
"score": 0.017799787
}
] |
White matter and cognitive decline in aging: a focus on processing speed and variability.
White matter (WM) change plays an important role in age-related cognitive decline. In this review, we consider methodological advances with particular relevance to the role of WM in age-related changes in processing speed. In this context, intra-individual variability in processing speed performance has emerged as a sensitive proxy of cognitive and neurological decline while neuroimaging techniques used to assess WM change have become increasingly more sensitive. Together with a carefully designed task protocol, we emphasize that the combined implementation of intra-individual variability and neuroimaging techniques hold promise for specifying the WM-processing speed relationship with implications for normative and clinical samples. | {
"pile_set_name": "PubMed Abstracts"
} | 0.020605 | [
{
"begin": 0,
"end": 90,
"score": 0.013156586
},
{
"begin": 90,
"end": 173,
"score": 0.03164893
},
{
"begin": 173,
"end": 313,
"score": 0.0016908877
},
{
"begin": 313,
"end": 558,
"score": 0.016711177
},
{
"begin": 558,
"end": 832,
"score": 0.0019078979
}
] |
# This stops the record from forgetting changes when the record
# is saved.
#
# If you're interested in changes between subsequent saves
# you can call #clear_changes! to clear them.
ActiveRecord::Base.class_eval do
alias :save :save_without_dirty
alias :save! :save_without_dirty!
def clear_changes! # TODO figure out a better name
changed_attributes.clear
end
def state_changes
if frozen?
[:deleted]
elsif just_created?
[:created]
elsif changed?
[:updated]
else
[]
end
end
def just_created?
!!changes['id'] and changes['id'].first.nil?
end
end
| {
"pile_set_name": "Github"
} | 0.041772 | [
{
"begin": 0,
"end": 65,
"score": 0.011464802
},
{
"begin": 65,
"end": 77,
"score": 0.012830815
},
{
"begin": 77,
"end": 138,
"score": 0.09309968
},
{
"begin": 138,
"end": 169,
"score": 0.008837427
},
{
"begin": 169,
"end": 184,
"score": 0.02402867
},
{
"begin": 184,
"end": 218,
"score": 0.052560493
},
{
"begin": 218,
"end": 252,
"score": 0.057333976
},
{
"begin": 252,
"end": 288,
"score": 0.052798893
},
{
"begin": 288,
"end": 312,
"score": 0.019220674
},
{
"begin": 312,
"end": 625,
"score": 0.029407896
}
] |
Mayo Clinic
With lung cancer being the leading cause of cancer-related deaths in the U.S., effective early screening is key to saving lives. Researchers at the Mayo Clinic say they've developed new software that can help classify lung nodules noninvasively, saving lives and health care costs.
A pilot study of the program called Computer-aided Nodule Assessment and Risk Yield, or Canary, appears in the April issue of the Journal of Thoracic Oncology.
Canary leans on data from high-resolution CT images of a common type of cancerous nodule in the lung called pulmonary adenocarcinomas. It matches every pixel of the lung image to one of nine unique radiological exemplars. In the pilot study, it was able to classify the lesions as aggressive or indolent with high sensitivity, as compared to microscopic analyses of the lesions after being surgically removed and analyzed by lung pathologists.
"Pulmonary adenocarcinoma is the most common type of lung cancer and early detection using traditional computed tomography (CT) scans can lead to a better prognosis," Tobias Peikert, a Mayo Clinic pulmonologist and senior author of the study, said in a news release. "However, a subgroup of the detected adenocarcinomas identified by CT may grow very slowly and may be treatable with less extensive surgery."
Peikert says that without effective screening, most lung cancer patients don't identify the disease until they are at an advanced stage and far more likely to die from it. Yet, screening via CT scans would be an expensive way to improve the survival rate, as it often can lead to overtreating slow-growing tumors. The hope is that Canary can identify those tumors that can be treated with less extensive -- and expensive -- surgery. | {
"pile_set_name": "OpenWebText2"
} | 0.033319 | [
{
"begin": 0,
"end": 12,
"score": 0.022248553
},
{
"begin": 12,
"end": 142,
"score": 0.019715479
},
{
"begin": 142,
"end": 295,
"score": 0.020485988
},
{
"begin": 295,
"end": 456,
"score": 0.0009142683
},
{
"begin": 456,
"end": 592,
"score": 0.080081254
},
{
"begin": 592,
"end": 679,
"score": 0.017082887
},
{
"begin": 679,
"end": 901,
"score": 0.0025475284
},
{
"begin": 901,
"end": 1169,
"score": 0.007035623
},
{
"begin": 1169,
"end": 1311,
"score": 0.0044959732
},
{
"begin": 1311,
"end": 1744,
"score": 0.015234798
}
] |
French Montana's hospital in Uganda is officially up and running - TMZ
Fans are sending this singer tons of bottles of hot sauce - Just Jared Jr
Zack Braff's face is being used in erectile dysfunction ads in Russia - TooFab
Barbra Streisand reveals her thoughts on the A Star is Born remake starring Lady Gaga - The Hollywood Reporter
iJustine is celebrating St. Patrick's Day with this festive meal - Just Jared Jr
tina
Love the new Audi. Cool car for a cool guy like Hayden.
ThisBitchBites
A cheating man and webhost who aires dirty laundry on innocent people is getting what he deserves!! That cheater Randy Charles Morin! Heard he has AIDS!
Randy is a liar and is mad that the news is all over the internet he has been cheating!! He is lying all over the place to cover himself!! Sick CHEATER! REAL NEWS FLASH!! RANDY HAS AIDS FROM FUKING ANASTASIA AND GAVE AIDS TO HIS DAUGHER IS WHY HIS WIFE IS DIVORCING HIM! thedirty.com/2011/10/sarah-hill-has-slept-with-so-many-professional-athletes Randy is the cheater!!
A lousy actor with the charisma of a moldy bread.
That goes to say that his career starts & ends up in Star Wars.
call me crazy but…..
Three posts in one week! Sheesh, not even working actors get three posts in one week. JJ’s crush on this guy and his girlfriend is now seriously weirding me out.
lexy hates bilson
Wow! Don’t tell me he finally bought himself a car?? Funny how he got this fancy sports car when he’s been driving around in Rachel’s putt-putt!
tweet
I think he needs himself a car if he plans to move to LA. Rachel has to drive her’s daily to work.
A Business Meeting?
Hopefully this one will bring him some GOOD work!
We need to see more of him working and less of him in tabloid, or JJ like his on-off so called fiance!
Deborah
@A Business Meeting?: Totally agree with you. So-called off and on fiance. I don’t think he is moving here. I think he bought the car because he has to go to meetings like the one he was obviously going to that day. He could have been with Rachel on the weekend but he wasn’t and then not now? I hope it’s over. I’m tired of her being a publicity whore.. And he has every right to treat himself to a nice car. No one said it was because he was moving to L.A. He has a house in Canada and his brother has one here. He stays there when he is here. If they are so in love, why is she not in these pictures the last five days.
Anon
@Deborah: Why is she not in the pictures? Maybe because she’s working? She’s been on set of Hart of Dixie. Just because they haven’t been seen together the last 5 days doesn’t mean they broke up. And LOL at the he stays with his brother. Yeah, that’s why he’s always seen leaving Rachel’s house. Being with your girlfriend for 5 years and he’s going to stay at his brothers house. It’s called DENIAL Deborah, Hayden and Rachel are in luuurve, deal with it!! :) Hahahahahahaha
lexy hates bilson
Doesn’t she have a driver pick her up and take her to/from the set? After all she’s such a star?
just me
@Anon: Hayden haven’t been with rachel in days while he been there. Its not like her to not take pictures with him. Also he can buy his iown car. And jared you don’t have mention rachel everytime be alone. That was weeks ago and Rachel don’t work that much every week. So why not no picttures? its not like her to not take none where she is in la are while he’s there. They are not together anymore. She haven’t in two weeks . And don’t need rachel taking pictures with him when she is not interested are beng with him. Jared you can stop saying rachel is his girlfriend now. You see that she is not with him. He don’t stay with her anymore at all. She make people believe that he does and he don’t. You all know that rachel don’t miss taking a picture when she can. When its about her only. Hayden doing the right thing about not being around her right now. Rachel don’t want to be seem with hayden anymore. That’s what Alex did with kate bosworth.
chill out ppl,,,,
@ANON
if you are sad enough to reply to everthing about the pair of them them get yourself a username- but then again you are just a coward still i have reason to believe who you are,
still fighting the long dead cause about the pair of them,
or is not much being said about them at imdb where also you think you rule there?
Anon
@chill out ppl,,,,: What? So, I need to change my username to something more like yours which is just “chill out ppl”? What’s that going to do? I’m a coward? I couldn’t give a sh-t if these two broke up tomorrow, but when people are still acting delusional of the fact they’re together I have a right to say what I want. And never posted on imdb, so you got me mixed up with someone else. [ :
Yawn
The last time Hayden and Rachel were seen hanging together was the 14th of October so it has been 19 days not five days. Which is odd when Hayden is in town being papped everywhere but not with her. You would think at least one of the times would have included her. It wouldn’t be strange for them to not be seen together if Hayden had been back in Canada all this time but he isn’t he is in Cali still. They haven’t been seen together since the grumpy Thai food date and the errands they ran the next day. They also haven’t been seen together after that interview came out. I’ve noticed he is staying on the west side of LA instead on the east side of the LA area where Rachel lives. The 101 freeway splits the area and west hollywood, hollywood are on the one side Los Feliz is way on the other side of the 101 near the Griffith Observatory. They are probably trying to start some break up rumors to get some attention maybe even announce they are taking a break again all to get some attention just like last year and then get back together just in time to get more attention. Same story same rumors different year. Same games.Boring,
Anon
@Yawn: Hayden and Rachel are seen together about once every 2-3 months. It’s not strange not to see them pictured together. Now if Rachel wasn’t working on a show, then it would be weird.Being on a show you could work between 5 in the morning till late at night everyday of the week. You don’t like when they’re seen together, yet when they’re not seen together you still complain. Pick one or the other.
@Anon
She seems to have plenty of free time to me.http://justjared.buzznet.com/2011/11/02/rachel-bilson-studio-city-shopping/ From today.
She has enough to time to go out shopping during the day while she is still working those” busy” hours. So I guess she isn’t that busy. Actors also don’t work every single day of the week on a television show only when they are needed for a scene that is being shot that day. Sometimes an actor could not work for days even if they play a lead on the show filming. Like Blake Lively on Gossip Girl currently running back and forth from NYC and Boston to see Ryan Renolds when she isn’t filming for days.
So with all this free time it is weird Hayden and Rachel went from being seen together a lot last month while she was filming Hart of Dixie to not at all for three weeks. While during that time they are spotted out by themselves on several occasions in LA. You would think all that free time would be spent together. If the paparazzi just happened to catch them wherever they were the odds are they would be together not apart. Unless they are having problems. Couples go through problems ALL couples do. Hayden and Rachel have gone through a lot of them in the last year. The last time they were both in LA for a long period of time but not seen spending time together suddenly things weren’t going well for them. It’s a gossip site people gossip. Hehehe.Get over it. If it wasn’t for gossip these sites wouldn’t exist and most actors/actresses wouldn’t have careers!!
Now go back to stalking the Rachel posts. Haha.
@16
@lexy hates bilson: He traded up and got a better car maybe he will trade up and get a better girl!!!Haha.
He is thirty years old now. A lot of men go through phases and want to change things up while they are still young enough. AKA midlife crisis. He is a little young for that still but when guys hit the big 3 -0 it is a game changer.That is the kind of car a guy buys when he wants to run away from something in his life and still be free.
I half expected him to buy a station wagon ( a settling down car)not a bad ass sports car again!!!( a still want to be young car).
Guys and cars tend to match their moods and lifestyles.
carol
Wow, what a variety of opinions on here. I just posted on the Rachel thread, I should have done it here instead. There were a couple of twitter sightings yesterday of Rachel “filming Heart of Dixie on the Warner Brothers lot”. She has said in interviews that she goes to bed at nine because she gets up at five am every day to go to work on the set of Hart of Dixie. Some of the actors of HOD that have twitter accounts have mentioned filming at night and on weekend days, as well. Rachel works full time now, sometimes she has free time between takes I would imagine. Hayden’s movie is in “in production status” now according to IMDB. I would imagine he has to work on getting that set up, etc. while in LA. It is not unusual for them to be papped separately, that happens alot. Just because they are not seen together, you think they broke up? What couple spends all their time together? Sometimes Hayden and Rachel are out and are papped, sometimes they are not. What man would re do his girlfriend’s kitchen and house by re tiling and painting if he expected to break up with her? He would tell her to hire a handyman! And to think he would do all this work, then go have a sleepover at his brother’s house is funny! I have a feeling spending the night with Rachel is more appealing to him. They both do things without each other, I am sure they do things with their families without each other at times. Rachel is with her mother alot. Hayden had a fancy sports car a few years ago before he totaled it in an accident. He is only 30 years old, why wouldn’t he want a sports car? He has a Land Rover in Canada, he finally had to buy a car instead of borrowing Rachel’s or Tove’s, which indicates he plans to spend more time in LA, a good thing if he plans to work as an actor. Who knows how long Hayden and Rachel will last, but some of these comments calling Rachel names with hate behind them show some of you are taking their relationship way too seriously when you do not know either one of them.
swirly
awwww these poor women are so depressed inside that Rachel’s the one sleeping with the guy you have wet dreams about!!!!!! funny sooo funny.
http://HaydenChristensen she Hayden Christensen
Hayden Christensen she Hayden said Hayden I loved you a kiss gos wong on tuesday if din’t here from she Hayden cops got she or staff fight get she back team get she back loved ok I loved you Hayden Rachel
http://HaydenChristensen she Hayden Christensen
Hayden she will be together soon talk soon I love you smile
slartabartfast
OMG! Laureen Foat crawled into her father-in-law’s coffin naked and pulled his pants down to his ankles. When the funeral director caught her, all she said was, “I wanted to suck him off just one more time”.
slartabartfast
Laureen Foat is a moral imbecile
RandyCharlesMorinisa STALKER
If, anyone believes Starabartfast is Childish Randy Charles Morin. He is a psycho who has stalked Laureen for years. He has posted her work address all over his website and called her husband a beaner and is a biased RACIST!! The pig is a lying psycho! Look at him on Forspring and see he flirts with underaged girls and talks naughty to them. No doubt this fat drunken sick geezer with 3 kids and has a wife too is probably a middle aged sex offender!! Then, stalking and harassing woman when, this subject has nothing to do with this poor woman being accused of something so sick. Anyone can tell this is a made up story and he is on a drunken rampage once again.
RandyCharlesMorinisa STALKER
Randy’s address is!!! He needs to be locked up in jail. He is using his website to cyber bully and lie about people and post their address all over his website. Here is Randy’s!
talksports responded to risquestions 26 Jul
Is it easier for you to achieve orgasm through one sexual act than another? Like can you get off from oral sex quicker than penetration?
smile 19 Responses
Yeppers
smile Comment Share
talksports responded to risquestions 26 Jul
For those who have had sex with and without a condom how does the feeling compare? Girls, is there a big difference for you in terms of how it feels if he is wearing one or not?
smile 78 Responses
Big diff for guys.
smile Comment Share
talksports responded to risquestions 26 Jul
Would you rather only ever have rough sex or only ever have gentle sex? No choosing both.
smile 48 Responses
Gentle
smile Comment Share
RandyCharlesMorinisa STALKER
Randy Stalker Morin is Tu puta mare!
RandyCharlesMorinisa STALKER
Randy Charles Morin of Talk-Sports is most LIKELY the WORST and BIGGEST Cyber Stalker, Predator, and Psychotic Cyber Bully/Child Molester in the WORLD!!! Randy loves to make up bully boards on innocent woman. Stalk them and make a series of horrible lies about them and personal made up stores. Randy is the only one allowed to post on their boards and insult them horribly. Post their personal home and work address and phone numbers on their bully blogs. Anyone else defending the so called bully’s blog will get persecuted by Randy and the poor person that has the bully blog has another year to have her bully blog up because, she cannot defend herself or have friends do so. What Randy is doing is illegal and it is slanderous. Plus, he is stalking and hacking into personal accounts and posting on them. Randy has only cruel intentions and HAS NO INTENTION on taking the bully blogs down. Randy is demented. He spends all his time talking and asking himself questions on here amusing himself because, he got his account suspended from Formspring for harassment and stalking. Randy spends probably most 90% of his time here and the other flirting with underaged girls or molesting his daughter. Then, he is busy hacking into accounts. We need more voices out their to stop this monster. Randy Charles Morin 57 Lent Cresent, Brampton, Ontario L6Y5E5 Home: 905-454-8024 Work: 416-802-7968 E-mail Randy @ [email protected] *Do call child protective services on this monster for neglecting his kids while, spending his whole day stalking and harassing woman. The sick pervert needs to be locked up for life. He should not even be allowed to be around children. He is teaching his children to get away with cyber bullying. CPS: 416-924-4646 God Bless…
The bitch that bites is the infamous cyberbully, Laureen Foat. She bullied on Talk-Sports, and used the N-word liberally on her antagonists. It turns out she proved out to be a coprophiliac when she posted pictures of poop and people playing with poop. She also posted nude and gay nude pics. She is a teachers aid at Dana Hills HS, of all things; teaching the children to cyber bully.
Slartabartfast
Laureen Foat lives Laureen Lives in at 32302 Alipaz St, Spc 295
San Juan Capistrano, CA 92675-4166
Email the slanderous bully at [email protected]. She is an instructional aide at Dana Hills HS, where she teaches the kids to cyber bully. She snuck her kid into that school by lying about where she actually lives, and falsified her job application in the same way.
She was exposed as a coprophiliac after she posted dozens of pictures of feces, people playing with poop, and even eating poop. She just loves the stuff.
She once had her husband arrested for domestic violence. Who could blame him for beating her up when she acts like that.
She likes to call black people the N word, just ask Nila Walker or Ashley Croft! She picks on overweight people and calls them fat, fat, fat, even though she once lost 100 pounds herself. She still has loose hanging skin on her abdomen; appearing to have elephant hide because she lost all that weight but didn’t have a tuck.
She once lambasted a former friend, Donna Wofford, of being fat, fat, fat.
Laureen Foat once had to get an endoscopy because of her acid reflux, caused by years of cyber bullying. Too bad she didn’t have malignant tumors. No one would care if she died.
And she did sexually assault the corpse of her father-in-law in his coffin, right in the mortuary. She has also tried to carry on an affair with her own mother-in-law.
She likes to talk about how long she has been married, but the story came out that she was trolling for younger guys on PlentyOfFish.com.
She claims someone called her husband a beaner, but it was that BBP character, who Laureen had previously used the N-word on.
The web host of Talk Sports got so sick of her cyber bullying on his website that he made up a Bully Blog where he exposed her for what she is. Just google Laureen Foat, cyber bully to see it.
Everyone should contact Dana Hills HS and point out to them what a horror this woman is. Doesn’t Orange County Schools screen their employees? After all, there was a teacher/colleague/buddy of Foat’s at her prior job as teacher’s aide at Shorecliff’s Middle School who was arrested and convicted of molesting several of the young girls at the school. Look up Richard Rack if you don’t believe that.
Laureen Ann Hurlburt-Foat has tormented hundreds of victims. Help put a stop to her. She is one sick woman. Turn her in for her crimes by contacting Dana Hills HS at (949) 496-6666. So it now | {
"pile_set_name": "Pile-CC"
} | 0.466724 | [
{
"begin": 0,
"end": 71,
"score": 0.09203958
},
{
"begin": 71,
"end": 146,
"score": 0.018446311
},
{
"begin": 146,
"end": 226,
"score": 0.23014387
},
{
"begin": 226,
"end": 338,
"score": 0.026127636
},
{
"begin": 338,
"end": 367,
"score": 0.041227125
},
{
"begin": 367,
"end": 420,
"score": 0.014191432
},
{
"begin": 420,
"end": 426,
"score": 0.021168074
},
{
"begin": 426,
"end": 446,
"score": 0.025384558
},
{
"begin": 446,
"end": 483,
"score": 0.029353745
},
{
"begin": 483,
"end": 17568,
"score": 0.64599603
}
] |
Neurological complications of congenital heart disease.
Neurological complications contribute significantly to mortality and morbidity from congenital heart disease with serious long-term consequences. Congenital heart disease has also been shown to adversely influence the neuro-developmental outcome of children. In developing countries such as India, majority of congenital heart defects remains uncorrected and major neurological complications are frequently encountered. Stroke and brain abscess are the commonest neurological complications of unoperated congenital heart disease. In developed countries the focus has now shifted to neurological complications of cardiac surgery in the very young as a result of cardiopulmonary bypass and total hypothermic circulatory arrest. A variety of neurological disturbances are now being increasingly recognized and are currently the subject of intense investigations. In this review the neurological complications of uncorrected congenital heart disease and the common neurological complications that result from operations for congenital heart disease will be discussed. | {
"pile_set_name": "PubMed Abstracts"
} | 0.021002 | [
{
"begin": 0,
"end": 56,
"score": 0.026759652
},
{
"begin": 56,
"end": 202,
"score": 0.026126064
},
{
"begin": 202,
"end": 315,
"score": 0.0292809
},
{
"begin": 315,
"end": 476,
"score": 0.0026909607
},
{
"begin": 476,
"end": 586,
"score": 0.0363128
},
{
"begin": 586,
"end": 782,
"score": 0.0017022887
},
{
"begin": 782,
"end": 916,
"score": 0.0030023993
},
{
"begin": 916,
"end": 1119,
"score": 0.0039682337
}
] |
4))/(7/238))/1. Let k(a) = 2*a + 6*a - s*a. Let p(v) = 49 - v - 49. Calculate k(p(g)).
9*g
Let g(u) = 2*u**2. Let a(w) = 54002*w**2. Calculate a(g(b)).
216008*b**4
Let i(q) = -3*q + 23. Let t be i(7). Let j(f) = -11*f**t + 6*f**2 + 6*f**2. Let a(k) = 20*k**2. Give a(j(g)).
20*g**4
Let l(d) = 60*d - 111*d + 49*d. Let g(n) be the third derivative of n**7/5040 + n**5/60 + 2*n**2. Let b(p) be the third derivative of g(p). Determine b(l(o)).
-2*o
Let r(d) = d + 67*d**2 + 3*d - 70*d**2. Let z(v) = 4*v**2 - 5*v. Let f(u) = -5*r(u) - 4*z(u). Let w(a) be the second derivative of a**3/3 + a. Give w(f(y)).
-2*y**2
Let o(y) = -78*y - 1. Let d(u) = 256*u. Calculate o(d(b)).
-19968*b - 1
Let l(w) = -6*w**2 + 10. Let q(a) = -a**2 + 2. Let d(m) = l(m) - 5*q(m). Let y(o) = -o**2 - 6*o. Give d(y(h)).
-h**4 - 12*h**3 - 36*h**2
Suppose -5*b = -4*w + 6, 4*b - b - 6 = 0. Let q(j) = -w*j - 10*j - j. Let g(h) = -h. Calculate g(q(n)).
15*n
Let y(u) be the first derivative of u**2/2 - 3*u + 75. Let q(z) = -2*z. Calculate y(q(j)).
-2*j - 3
Let l be 2/3 - 2/3. Let y(v) = l*v + 5*v - 3*v. Let r(m) = 52*m - 12. Let b(a) = 69*a - 16. Let u(g) = -3*b(g) + 4*r(g). What is y(u(w))?
2*w
Let c(p) = -2*p**2. Suppose -w = -6*w. Let l(t) = t + w*t - 9*t + 2*t. Let g(k) = -k. Let u(y) = -10*g(y) + 2*l(y). Calculate c(u(v)).
-8*v**2
Let r(o) = -3*o**2. Let h(k) = -321470*k. What is r(h(x))?
-310028882700*x**2
Let g(l) = -l**2 + 135. Let o(k) = 5*k. What is g(o(z))?
-25*z**2 + 135
Let y(s) be the third derivative of -s**5/120 - s**3/2 - 11*s**2. Let x(g) be the first derivative of y(g). Let r(k) = 4*k**2. Determine r(x(q)).
4*q**2
Let b(x) = 142*x**2. Let t(c) = -4*c**2 - 11*c + 33. Let y(j) = 2*j**2 + 6*j - 18. Let s(q) = -6*t(q) - 11*y(q). Determine s(b(l)).
40328*l**4
Let n(c) = -10*c. Let v(w) = 15*w - 2*w - w + 12*w - 3*w. Calculate n(v(d)).
-210*d
Let l(c) = -44*c - 2. Let n(s) = 327*s + 3. Give n(l(u)).
-14388*u - 651
Let a(z) = -86*z. Let i(c) = 3726*c**2 - 2. Give a(i(x)).
-320436*x**2 + 172
Let h(r) be the first derivative of 29*r**2/2 + 409. Let j(f) = -15*f**2. What is j(h(c))?
-12615*c**2
Let j(u) = 4*u. Let l(f) be the first derivative of -f - 1/6*f**4 + 0*f**3 - 3 + 0*f**2. Let b(n) be the first derivative of l(n). Calculate j(b(g)).
-8*g**2
Let n(k) be the third derivative of -k**7/630 + 3*k**4/2 - 12*k**2. Let z(p) be the second derivative of n(p). Let x(v) = -9*v. Give z(x(o)).
-324*o**2
Let f(l) = -69*l**2. Let k(x) be the third derivative of -7*x**4/8 + 522*x**2. Determine k(f(z)).
1449*z**2
Let x(m) be the second derivative of -7*m**3/6 + m**2 - 211*m. Let w(p) = p**2. Calculate x(w(j)).
-7*j**2 + 2
Let x(j) = 15*j**2. Let q(h) = -5*h**2 + 6. Suppose -6 = -s - s + 4*g, 4*s + 4*g = 36. Let y(m) = -6*m**2 + 7. Let w(b) = s*q(b) - 6*y(b). Give w(x(l)).
225*l**4
Let n = 45 - 21. Let u be 1926/n + 2/(-8). Let x(o) = 80 - u + 2*o. Let m(j) = -11*j. Determine x(m(p)).
-22*p
Let m(w) = -2*w. Let v be (-3)/(-2)*6/(-54)*-6. Let c(j) = 11*j + v + 2*j - 1. Give m(c(p)).
-26*p
Let f(s) = 6*s**2. Let g(d) be the third derivative of 0*d**4 - 1/20*d**5 - 12*d**2 + 0 + 0*d**3 + 0*d. What is f(g(h))?
54*h**4
Let a(z) = 3*z**2. Let g(c) = -5475*c. Determine a(g(v)).
89926875*v**2
Let y(v) = 2*v. Suppose 6*j = -3*f + 4*j + 2741, f = 3*j + 921. Let w(i) = -f*i + 915*i - 10*i**2. Calculate y(w(g)).
-20*g**2
Let w(p) = -3*p**2 - 100*p. Let n(y) = 9*y**2. What is w(n(g))?
-243*g**4 - 900*g**2
Let d(z) be the second derivative of -z**4/12 - 18*z. Let g(t) = t. Let r(c) = -3*c. Suppose 4*h - 5*h = 1. Let w(o) = h*r(o) - 2*g(o). Determine d(w(a)).
-a**2
Let b(x) = 30*x. Let j(k) = -k. Let v(t) = b(t) - 9*j(t). Let s(d) = 3*d + d + 0*d - 4*d - 3*d. Give v(s(y)).
-117*y
Let g(d) = 31*d - 1. Let i(o) be the first derivative of -o**3/3 + 48. Give i(g(m)).
-961*m**2 + 62*m - 1
Suppose 5*i - 7*x = -11*x + 23, 5*x - 16 = -2*i. Let v(s) be the second derivative of 6*s + 0*s**2 + 1/2*s**i + 0. Let l(h) = -h**2. Calculate l(v(q)).
-9*q**2
Let a(p) be the first derivative of -3*p**2/2 - 1. Suppose -14*b - 4 = -15*b. Let f(y) = 8*y - b*y - 7*y. What is f(a(o))?
9*o
Let s(k) = 3 - 3 + 11*k**2. Let w(x) be the third derivative of x**8/10080 + 13*x**5/20 + 31*x**2. Let i(t) be the third derivative of w(t). Determine i(s(a)).
242*a**4
Let x(a) = a - 28. Let q(t) = -111*t**2 + 93. Determine q(x(p)).
-111*p**2 + 6216*p - 86931
Let t(m) = 2*m**2. Let w(y) = -1954775*y**2. What is w(t(r))?
-7819100*r**4
Let o(d) = -100*d. Let r(s) = 14 + 213*s - 212*s - 14. Calculate r(o(k)).
-100*k
Let a(d) be the second derivative of -7*d**4/12 + 4*d. Let n be (-29)/(-1) + 4/(-2). Let w(l) = 4*l - 4*l + n*l**2 - 28*l**2. What is w(a(h))?
-49*h**4
Let y(o) = 2132*o**2 - 3. Let j(n) = 81*n**2. Calculate y(j(i)).
13988052*i**4 - 3
Let v(c) = 7*c. Suppose -3*d = -12 - 51. Let p(i) = -5*i + 2. Let o(j) = 51*j - 21. Let a(r) = d*p(r) + 2*o(r). Give a(v(l)).
-21*l
Let y(f) = -3*f. Let u(t) = -t**2 + 8*t - 5. Let z be u(7). Let m(v) = 0*v**z + 4*v**2 + v**2. Determine m(y(q)).
45*q**2
Let a(j) = 7*j. Let m(x) = 6*x - 35*x + 29*x - x**2. Determine a(m(g)).
-7*g**2
Suppose 3*t - 145 = -5*r, 4*t - 2*t = -2*r + 90. Let y(j) = 8*j**2 - 10*j**2 + t*j - 40*j. Let s(l) = 98*l**2. Calculate y(s(p)).
-19208*p**4
Let r(o) = -92*o. Let g(p) be the second derivative of -p**4/12 - 22*p**2 - p - 16. Let s(z) be the first derivative of g(z). Calculate s(r(d)).
184*d
Let l(a) = -10*a. Let f be 9/5 + (-3)/(-15). Let n(p) = 24*p + p**f - 12*p - 12*p. Determine n(l(w)).
100*w**2
Let k(i) = -2*i**2 - 1. Let q(b) be the third derivative of b**5/10 + 158*b**2. Determine q(k(d)).
24*d**4 + 24*d**2 + 6
Let t(v) = -v - 1. Let w(y) = -17*y - 3. Let b(a) = -6*t(a) + 2*w(a). Let z(d) be the third derivative of -d**4/12 + 2347*d**2. What is z(b(u))?
56*u
Let h(z) be the first derivative of -3*z**2 + 205. Let o(r) = -4*r**2 - 5*r - 5. Let a(k) = -6*k**2 - 8*k - 8. Let l(q) = -5*a(q) + 8*o(q). Calculate l(h(m)).
-72*m**2
Let g(k) = -5*k**2 - 11*k - 1 + 7*k + 1. Let n(m) = 4*m**2 + 3*m. Let h(z) = 3*g(z) + 4*n(z). Let j(q) be the first derivative of q**2/2 + 34. Give j(h(w)).
w**2
Let l(f) = -3551206*f. Let h(v) = 2*v**2. Give h(l(z)).
25222128108872*z**2
Let c(f) = 2*f. Let p(g) be the first derivative of 2*g + 0*g**2 + 58 - 23/3*g**3. Give c(p(h)).
-46*h**2 + 4
Let b(y) = 6841*y**2. Let u(w) = 25*w. Give u(b(s)).
171025*s**2
Let q(k) = -10*k - 755. Let l(d) = 9*d. Determine l(q(b)).
-90*b - 6795
Let q(z) = 342*z - 1. Let w(y) = 61*y - 1. Determine q(w(u)).
20862*u - 343
Let t(z) = z + 9. Let y be t(-7). Let s(q) = 5*q - y*q - 4*q. Let m(h) be the second derivative of -7*h**4/12 + 9*h. Determine s(m(k)).
7*k**2
Let h(q) = -13*q. Let x(c) be the third derivative of -7*c**5/60 - 597*c**2. What is x(h(w))?
-1183*w**2
Let d(f) = f**2. Let m(p) be the third derivative of -p**4/24 + 31*p**2. Let q(u) = -2*u. Let z(i) = 3*m(i) - q(i). Calculate d(z(r)).
r**2
Let f(w) = 34*w**2. Suppose -2*x + 3*x - 3 = 4*j, 0 = -3*x - 3*j + 9. Let b(y) = -x*y + 4 - 4 + 4*y. Calculate f(b(i)).
34*i**2
Let n(p) = 7*p. Let q(k) be the first derivative of -15*k**2/2 - 21. Let a(w) = -13*n(w) - 6*q(w). Let o(x) = -23*x. What is o(a(s))?
23*s
Let t(n) = -n**2. Suppose 10 = 27*j + 10. Let k(w) be the first derivative of -3/2*w**2 + 4 + j*w. Determine t(k(q)).
-9*q**2
Suppose 3*j - 31 = k, -1 = -3*k + 5. Let v(x) = j - 11 - 23*x. Let g(b) = b. Give g(v(y)).
-23*y
Let n(l) = 3*l**2 - 4*l. Let a(b) = 2*b**2 - 3*b. Suppose -9 = 5*u + 11. Let f(m) = u*a(m) + 3*n(m). Let s(x) = -x**2. Calculate s(f(c)).
-c**4
Let g(t) = 2*t. Let h(k) be the second derivative of 47/12*k**4 + 35*k + 0 + 0*k**2 + 0*k**3. Determine g(h(w)).
94*w**2
Let n(k) = 8*k**2. Let o be (16/(-8))/(2/(-2)). Let v(d) = -50 + 50 - 2*d**o. What is n(v(q))?
32*q**4
Let o(w) be the first derivative of 0*w - 1/3*w**3 + 0*w**2 - 1. Let q(m) be the third derivative of -m**5/30 + 3*m**2 - 308. Determine o(q(r)).
-4*r**4
Let g(d) = 10*d**2. Let v = -19 - -23. Let x(y) = 2*y - 4. Let u(z) = 4*z - 9. Let w(i) = v*u(i) - 9*x(i). Calculate g(w(a)).
40*a**2
Let a(z) = 1 - 1 + 502*z + 494*z - 984*z. Let u(s) = -9*s**2. Determine a(u(r)).
-108*r**2
Let t(m) be the third derivative of -m**4/6 - 32*m**2. Let g(d) be the second derivative of -2*d* | {
"pile_set_name": "DM Mathematics"
} | 0.649507 | [
{
"begin": 0,
"end": 16,
"score": 0.020004801
},
{
"begin": 16,
"end": 44,
"score": 0.1526596
},
{
"begin": 44,
"end": 68,
"score": 0.048197642
},
{
"begin": 68,
"end": 87,
"score": 0.23795687
},
{
"begin": 87,
"end": 110,
"score": 0.23997574
},
{
"begin": 110,
"end": 133,
"score": 0.03167661
},
{
"begin": 133,
"end": 152,
"score": 0.1396554
},
{
"begin": 152,
"end": 164,
"score": 0.29564306
},
{
"begin": 164,
"end": 186,
"score": 0.06896175
},
{
"begin": 186,
"end": 8194,
"score": 0.6585861
}
] |
Dynamics of motile-sperm subpopulation structure in boar ejaculates subjected to "in vitro" capacitation and further "in vitro" acrosome reaction.
Incubation of diluted boar sperm from fresh ejaculates in a previously established "in vitro" capacitation medium induced a significant, time-dependent increase in several mean parameters of sperm motility, such as curvilinear velocity (VCL), linear velocity (VSL), mean velocity (VAP), linearity coefficient (LIN), straightness coefficient (STR) and wobble coefficient (WOB). Furthermore, motile boar-sperm semen samples were structured in four definite subpopulations. Subpopulation 1 showed the lowest values of VCL, VSL and VAP and also low values of linearity. Subpopulation 2 showed the second lowest values of VCL and VAP and higher values of LIN and STR. Subpopulation 3 was characterized by high values of velocity and low values of linearity. Finally, Subpopulation 4 was characterized by high values of velocity and linearity. "In vitro" capacitation and further acrosome reaction induced changes in the motility characteristics of each subpopulation as well as in their percentage distribution, Subpopulations 3 and 4 being those that showed the most significant changes. However, despite these changes, the observed, overall four-subpopulation structure was firmly maintained during the entire "in vitro" capacitation and acrosome-reaction process. Our results suggest that capacitation-induced motility changes are related to specific changes in the percentage of each motile-sperm subpopulation in the ejaculate without losing the overall, specific four-subpopulation structure. In this way, the maintenance of a four-subpopulation structure seems to be important in the control of the whole ejaculate physiology. | {
"pile_set_name": "PubMed Abstracts"
} | 0.323399 | [
{
"begin": 0,
"end": 147,
"score": 0.099432014
},
{
"begin": 147,
"end": 524,
"score": 0.023375185
},
{
"begin": 524,
"end": 618,
"score": 0.09999675
},
{
"begin": 618,
"end": 713,
"score": 0.009299444
},
{
"begin": 713,
"end": 810,
"score": 0.031397566
},
{
"begin": 810,
"end": 900,
"score": 0.026067302
},
{
"begin": 900,
"end": 985,
"score": 0.0091893915
},
{
"begin": 985,
"end": 1231,
"score": 0.0030671046
},
{
"begin": 1231,
"end": 1409,
"score": 0.00007044266
},
{
"begin": 1409,
"end": 1775,
"score": 0.3571126
}
] |
Role of cadmium and arsenic as endocrine disruptors in the metabolism of carbohydrates: Inserting the association into perspectives.
Endocrine disrupting chemicals (EDCs) have widespread environmental distribution originated from both natural and anthropogenic sources. From the last few decades, their contamination has been raised dramatically owing to continuous discharge in sewage and untreated industrial effluents. They have rapidly gained a considerable attention due to their critical role in the development of multiple endocrine-related disorders notably diabetes mellitus (DM). Cadmium and arsenic, among the most hazardous EDCs, are not only widely spread in our environment, but they are also found to be associated with wide range of health hazards. After entering into the human body, they are preferably accumulated in the liver, kidney and pancreas where they exhibit deleterious effects on carbohydrate metabolism pathways notably glycolysis, glucogenesis and gluconeogenesis through the modification and impairment of relevant key enzymes activity. Impairment of hepatic glucose homeostasis plays a crucial role in the pathogenesis of DM. Along with compromised function of pancreas and muscles, diminished liver and kidney functions also contribute considerably to increase the blood glucose level. These metals have potential to bring conformational changes in these enzymes and make them inactive. Additionally, these metals also disturb the hormonal balance, such as insulin, glucocorticoids and catecholamines; by damaging pancreas and adrenal gland, respectively. Moreover, these metals also enhance the production of reactive oxygen species and depress the anti-oxidative defense mechanism with subsequent disruption of multiple organs. In this article, we have briefly highlighted the impact of arsenic and cadmium on the metabolism of carbohydrates and the enzymes that are involved in carbohydrate metabolism and glucose homeostasis. | {
"pile_set_name": "PubMed Abstracts"
} | 0.042164 | [
{
"begin": 0,
"end": 133,
"score": 0.008483001
},
{
"begin": 133,
"end": 270,
"score": 0.014478125
},
{
"begin": 270,
"end": 422,
"score": 0.018836292
},
{
"begin": 422,
"end": 590,
"score": 0.0012174203
},
{
"begin": 590,
"end": 765,
"score": 0.0128213605
},
{
"begin": 765,
"end": 1069,
"score": 0.015300798
},
{
"begin": 1069,
"end": 1159,
"score": 0.00782469
},
{
"begin": 1159,
"end": 1320,
"score": 0.0031887316
},
{
"begin": 1320,
"end": 1421,
"score": 0.036027152
},
{
"begin": 1421,
"end": 1963,
"score": 0.02474577
}
] |
1. Field of the Invention
This invention relates to new and improved methods of fluidic support. In particular, this invention relates to new and improved methods of (1) counteracting the gravitational bending moment present in a substrate tube during a modified chemical vapor deposition preform fabrication process, and (2) improved cooling of the substrate tube to increase the thermophoretic force gradient. Hence, use of the methods of this invention results in a straight optical fiber preform, with greater deposition efficiency.
2. Description of the Prior Art
The modified chemical vapor deposition (MCVD) process used to produce optical fibers utilizes a quartz substrate tube that is mounted in a glass working lathe. The substrate tube is chucked at one end and is supported by graphite vee blocks or nylon or Teflon rollers at the opposite end. The substrate tube is then heated at the chucked end and straightened to the center line of the lathe. A larger tube is inserted in another chuck and sealed to the substrate tube. The supports are now removed.
A torch assembly is mounted on a fire carriage that traverses the length of the lathe bed that heats the exterior of the substrate tube. Each traversal commences at the portion of the tube closest to the chemical input end, and is termed a pass. The heat that is produced by the torch assembly is required to cause the chemicals on the interior of the tube to react, and also to fuse or sinter the glass particles that are deposited on the inner wall of the tube. Temperatures up to 2100.degree. C. are attained during the course of the process, well above the softening point (1813.degree. C.) of fused quartz. The MCVD process typically requires over 60 torch passes and eight to twelve hours to complete. The tube is rotated during the process to maintain circular symmetry, but this rotation does not provide any force to center the tube. On the contrary, in fact, rotation causes any existing eccentricity to increase because of centrifugal force.
Disadvantageously, the sagging of a rotating quartz tube occurs at the extreme ends thereof, especially the end at which the heating is initiated. Such sagging is the result of the gravitational bending moment and small deviations normally present in the tube.
The heat zone produced by the torch assembly is located between the two supporting chucks for the quartz tube. When the substrate tube is heated above the softening point at either end, the effect of the nearest supporting chuck is negated, while the bending moment is the greatest. Since so many passes are performed, the problem increases with each pass, and results in a wavy or eccentric preform. The eccentricity also causes asymmetric heating, compounding the problems of temperature control and noncircularity of the deposited material. The waviness of the preform reduces the yield of the preform in either the deposition process or the draw process. Noncircular deposition leads to cores that are not concentric with the outside of the cladding, and may have unacceptable, out-of-tolerance dimensions.
U.S. Pat. No. 4,263,032, issued Apr. 21, 1981 to Sinclair et al., and U.S. Pat. No. 4,302,230, issued Nov. 24, 1981 to MacChesney et al., relate to making optical fiber preforms more expeditiously by enhancing the thermophoretic deposition force. The '032 patent suggests a fluid stream as a cooling means. The '230 patent suggests water for cooling. Disadvantageously, the '230 patent prefers de-ionized water in order to avoid introduction of contaminants which may contribute to a lowering of the strength of the resultant fiber.
Direct physical support of a glass surface by a material in contact with it causes problems by introducing defects and contamination into the surface of the preform. Unfortunately, there appears to be no material known that can resist the temperatures involved and not damage the surface of the preform by scratching or contamination. As is well recognized, brittle materials such as silica glass are strongly dependant on the integrity of the surface for strength, with an essentially perfect surface required to retain the intrinsic high strength. It is well known that physical contact of a glass surface by a solid object will leave defects in the surface that are difficult to heal, and sometimes particles will be left behind, generating a low strength site for future failure. A defect can readily reduce the strength of glass fiber after drawing by two orders of magnitude. In addition, any particle present on the preform surface will have its size magnified, relative to the fiber, during the drawing process, thus creating a larger defect, and a probable low strength failure point.
Liquids can be considered for a coolant to aid in the thermophoretic force as indicated in the patent of MacChesney, but the addition of a cooling water stream to the apparatus is difficult. In addition, the water must be of very high quality, such as freshly deionized or distilled, to avoid leaving any residue that will act to harm the surface. | {
"pile_set_name": "USPTO Backgrounds"
} | 0.015111 | [
{
"begin": 0,
"end": 26,
"score": 0.015958535
},
{
"begin": 26,
"end": 97,
"score": 0.062583365
},
{
"begin": 97,
"end": 412,
"score": 0.000873594
},
{
"begin": 412,
"end": 537,
"score": 0.0011707485
},
{
"begin": 537,
"end": 569,
"score": 0.020717748
},
{
"begin": 569,
"end": 729,
"score": 0.0021861433
},
{
"begin": 729,
"end": 858,
"score": 0.0033351877
},
{
"begin": 858,
"end": 961,
"score": 0.0061645927
},
{
"begin": 961,
"end": 1038,
"score": 0.039695755
},
{
"begin": 1038,
"end": 5067,
"score": 0.013860856
}
] |
(CNN) As Ady Barkan has struggled with the deterioration of his body as a result of ALS, the activist has pulled off a feat that would be remarkable even for the most agile of health care advocates.
This year, month after month, he has drawn most of the major presidential candidates to his doorstep and championed "Medicare for All" while forcing the presidential contenders to think through the impact of their health care agendas in the most personal terms.
He brought California Sen. Kamala Harris to tears recalling the day her mother was diagnosed with colon cancer. Massachusetts Sen. Elizabeth Warren used Barkan's case to punctuate the failures of the healthcare system during a July presidential debate: "Ady has health insurance, good health insurance, and it's not nearly enough," she said.
Barkan and Vermont Sen. Bernie Sanders, the author of the Medicare for All legislation, discussed their legacies during their conversation, which was posted online in early September.
"In terms of your legacy, Ady," Sanders told Barkan, "I think it will be very clear that even with the terrible illness that you're struggling with right now, that you didn't give up, that you understood that -- especially given your illness -- that you could play a significant in rallying the American people toward a sane and humane health care system."
In the latest interview released Thursday with Pete Buttigieg , the South Bend, Indiana Mayor told Barkan that it was the first time he'd been around breathing equipment since the death of his father, who had cancer, in January.
"We sat down with a social worker who basically explained to us at the hospital that in terms of long term care our best option was probably for our family to spend down everything that we had until we were asset-poor enough to qualify for Medicaid," Buttigieg told Barkan, according to the transcript shared with CNN. "I remember just thinking, is that how this works in America?"
The two debated their differing views on Medicare for All, and Barkan told Buttigieg he appreciated that the mayor was "willing to have the tough conversations even when someone doesn't agree with you."
In their exchange, Barkan called out former Vice President Joe Biden, who Barkan says is the only top-tier presidential candidate who has not responded to his invitation to meet.
On September 18, he issued a searing plea to Biden, noting that Biden has his own heartbreaking struggles involving the healthcare system (most recently with the death of his son Beau in 2015 from a brain tumor).
"Mr. Vice President you know about illness. You know about doctors and hospitals. You know that health care is personal. ... You won't come talk to me about it?" Barkan said in video missive to Biden the day before undergoing surgery for a tracheostomy to help him breathe. "Look a dying man in the eyes and tell me how we fix this country."
In an interview with CNN this month, Barkan described ALS as "the story of things becoming impossible" -- from a simple stroll around the neighborhood to his ability to tickle his 3-year-old son Carl. ALS, or amyotrophic lateral sclerosis, is a neurodegenerative disease that affects the nerve cells in the brain and spinal cord, ultimately depriving the brain of its ability to initiate and control muscle movement, including the loss of speech. (Barkan now speaks through a computer).
"It's exhausting and overwhelming," Barkan told CNN. "For me, ALS has been a lesson in exactly how broken our health care system is and why it's so important to fix it."
In this family photo, Barkan is pictured with his wife Rachael and son Carl in October 2016.
Barkan, a life-long advocate on economic justice issues who was diagnosed with ALS in October 2016, has imparted those lessons not only with high-profile testimony in Washington, but also in these intimate one-on-one conversations with candidates.
He and his crew film publish the interviews as part of the work of their PAC, the Be A Hero fund, which attempts to hold politicians accountable on health care and other issues by using the stories of average Americans as their persuasion tool.
Barkan realized the power of his exchanges with politicians when he met former Arizona Sen. Jeff Flake by chance in December 2017 on an airplane. Overwhelmed by his mounting medical bills, Barkan urged Flake not to support the GOP tax bill, which he believed would disrupt his health care coverage. "You can save my life," Barkan told Flake in a n exchange captured by a fellow passenger . "Please remember this conversation." Flake did end up voting for the tax bill -- in contradiction to Barkan's request -- but that exchange vaulted Barkan into the national spotlight.
As Barkan has explained to the current crop of presidential candidates, his insurance company tried to deny coverage for a breathing assistance machine that he needed to live. He said he, his wife Rachael, an assistant and a lawyer spent "endless time on the phone trying to get our insurance company to behave properly, lawfully. Beyond that, his family is billed $20,000 a month out of pocket for the 24-hour home care that he needs.
"I'm lucky to have wealthy supporters cover the cost for us, but that's not an option for a lot of people -- most just go bankrupt," he told CNN, which provided questions to Barkan ahead of time to give him enough time to write out answers.
"Ninety percent of Americans with ALS choose not to go on a ventilator because it requires 24-hour care, which most insurance plans don't cover. In Japan, where long-term care is guaranteed, the numbers are reversed. That just isn't right, and it doesn't need to be this way."
That view has fueled Barkan's advocacy for Medicare for All, the signature health care proposal from Sanders: "I've come to believe that fundamentally we need radical, disruptive change to the status quo," he said. "The only plan I've seen that aims for that level of ambition is Medicare for All."
He believes that any plan that stops short of the promise of Medicare for All -- the kinds of plans that have been proposed by Buttigieg, Biden and Minnesota Sen. Amy Klobuchar, for example — "won't deliver the universal coverage or the cost savings that we need."
Barkan testifies before the House Rules Committee at a hearing on a "Medicare for All" bill on Capitol Hill in April 2019.
Barkan, who gets around in a wheelchair, speaks through a vocalizer and takes his meals through a feeding tube in his stomach, has still managed to make his sense of urgency felt through in-depth conversations with Buttigieg, Sanders, Harris, Warren, New Jersey Sen. Cory Booker, and Julián Castro, the former Secretary of Housing and Urban Development under President Barack Obama.
He says Klobuchar, former Texas Rep. Beto O'Rourke and businessman Asndrew Yang have also agreed to meet with him. The Be A Hero PAC has started a petition calling on Biden to meet with Barkan. Biden's team did not respond to CNN's query about why the former vice president has not responded to Barkan's invitation.
But Barkan isn't giving up on his hope for a one-on-one with one of the 2020 race's front-runners.
It's a persistence that New York Rep. Alexandria Ocasio-Cortez notes in the prologue she wrote for his new memoir, "Eyes to the Wind."
Even through his vocalizer, Barkan's testimony to Congress "forced an urgency and moral clarity that members could not look away from or ignore," Ocasio-Cortez wrote.
"I saw their discomfort at issuing the usual excuses, and Ady also would not tolerate them—even with many physical capabilities gone," Ocasio-Cortez wrote.
The New York Democrat first met Barkan when he stopped by a labor town hall that she was holding at a church in the Bronx after winning her primary election last year. He could still speak at that point and she held the microphone for him as he addressed the crowd.
They met again this year, at her congressional office after the his testimony to Congress.
Barkan acknowledges that part of the power of his advocacy is that he is dying from ALS, a fact he points out in his Twitter profile. He told CNN he is "trying to use the time I have left here to make things better for as long as I still can."
"If I could be healthy and completely anonymous, I would do it in a heartbeat," he said. But because of his illness, his activism with Be a Hero and the Center for Popular Democracy have drawn national notice. His team went on to travel the country making health-care ads that he said were among the top-performing spots of 2018.
"We built a platform that made it hard for candidates to ignore us," Barkan said. "There are millions of folks who the candidates should sit down with. I'm just hoping I can be a voice for them and force candidates to answer questions that really matter to people." | {
"pile_set_name": "OpenWebText2"
} | 0.030522 | [
{
"begin": 0,
"end": 199,
"score": 0.00833853
},
{
"begin": 199,
"end": 462,
"score": 0.0067449003
},
{
"begin": 462,
"end": 490,
"score": 0.0055134855
},
{
"begin": 490,
"end": 575,
"score": 0.05644031
},
{
"begin": 575,
"end": 594,
"score": 0.01124364
},
{
"begin": 594,
"end": 805,
"score": 0.0036293736
},
{
"begin": 805,
"end": 830,
"score": 0.03273233
},
{
"begin": 830,
"end": 990,
"score": 0.010676378
},
{
"begin": 990,
"end": 1348,
"score": 0.036245205
},
{
"begin": 1348,
"end": 8834,
"score": 0.033243142
}
] |
A married gay couple who have been fighting for “safe” housing in London for five years have been hospitalised after they were allegedly attacked by a neighbour’s partner and friends while staying in council-mandated temporary accommodation.
Andrew and Gustavo Williams-Coleman have been campaigning the local council in Brent, north west London, for better accommodation for half a decade, saying they felt unsafe in the area they were living and felt targeted because they are gay.
The couple were placed in a temporary accommodation, the Euro Hotel in Wembley, on June 1.
The Williams-Colemans told PinkNews they were viciously attacked on Wednesday. Andrew was stabbed in the ear and has a small brain bleed. His husband, Gustavo, suffered a facial fracture that will require numerous surgeries.
Andrew said that one of their neighbours in the temporary housing had been hurtling homophobic abuse at them since their arrival. Things escalated when, on Wednesday, the neighbour allegedly said she would fine someone to “kill the gay c**ts.”
Andrew has cancer and mobility problems, while his husband has learning difficulties.
They say that their neighbour, a 31-year-old woman, had been hurling homophobic abuse at them since they were housed at the Euro Hotel at the beginning of June.
Andrew was stabbed in the ear and has a small bleed to the brain (Andrew Williams-Coleman)”The homophobic language she used was disgusting. For a week she has been knocking on our door, and shouting things outside our room at all hours. She called us disgusting AIDS-carrying pigs and queer c**ts,” Andrew told PinkNews.
“She told other guests that she was enjoying doing it.”
The couple claim that the hotel manager witnessed the incidents and let the men into the property.
On Wednesday evening, the couple said that the woman told them they would have to fight for their lives.
“About about 5pm she shouted she was going to get Gustavo and I killed,” Andrew said.
Fifteen minutes later, Andrew said that three men, including the woman’s partner, entered the room, and one of them revealed a knife that was hidden up his sleeve.
It was then he went to stab Andrew, while the others attacked Gustavo.
It was only when a neighbour entered the room that the three fled, and the couple called the police.
“We told the manager, but they wouldn’t tell anyone about it, not the council, not the police. We are just feeling totally numb and shocked,” said Andrew.
“It’s disgusting. Nobody has a right to do anything like that to anyone.”
The 31-year-old woman reportedly threatened other tenants that if they spoke about the attack they would be shot, Andrew told PinkNews.
There was a stabbing at the woman’s address three days prior to the incident, the couple told PinkNews.
“The police were meant to come round to take photos but they haven’t shown up,” Andrew told PinkNews.
The Metropolitan Police did not immediately respond to PinkNews’ request for comment.
A Brent Council spokesperson said: “We are very sorry to hear that this crime has taken place. This will be a matter for the police and we will be liaising with them and cooperating with their investigation.”
William Michelin, general manager at London Hotel Group, which operates the Euro Hotel Wembley, told PinkNews that the hotel is not aware of any altercation taking place on its premises.
“The main issues are that they are not hotel guests. They are from Brent Council on temporary accommodation,” said Michelin.
“Neither parties reported non-guests entering other residents’ house/rooms. Neither parties reported that they were being verbally assaulted. It is our understanding that any arguments have taken place outside the properties, on the street … never inside.
“Brent Council was informed of the ‘disturbance’ (as reported to us by Mr Coleman) and we requested that both accommodation [placements] be cancelled. The council asked us to ‘monitor’ the situation and to report of any further developments.”
Andrew and Gustavo are currently recuperating in hospital, where Andrew will require draining of the bleed on his brain. Gustavo’s extensive facial fracture will require four surgeries, the couple said.
Andrew and Gustavo have previously spoken to PinkNews about their battle to find a home in the London borough.
“This is a an extremely concerning attack. It raises questions about the duty of housing authorities to prevent anti-LGBT attacks of this sort,” Galop’s Head of Hate Crime Services Nick Antjoule told PinkNews.
“We are working with Andrew and his husband to provide assistance and are talking with the Metropolitan Police. No one should have to face violence, hatred and bigotry like this.” | {
"pile_set_name": "OpenWebText2"
} | 0.763848 | [
{
"begin": 0,
"end": 242,
"score": 0.006854737
},
{
"begin": 242,
"end": 485,
"score": 0.0071357614
},
{
"begin": 485,
"end": 577,
"score": 0.00076218985
},
{
"begin": 577,
"end": 657,
"score": 0.036261205
},
{
"begin": 657,
"end": 716,
"score": 0.5693748
},
{
"begin": 716,
"end": 803,
"score": 0.009322691
},
{
"begin": 803,
"end": 934,
"score": 0.22555998
},
{
"begin": 934,
"end": 1048,
"score": 0.84221256
},
{
"begin": 1048,
"end": 1135,
"score": 0.067769386
},
{
"begin": 1135,
"end": 4703,
"score": 0.6315677
}
] |
1. Field of the Invention
The present invention relates to a nitride semiconductor light-emitting device and a fabrication method thereof.
2. Discussion of the Background Art
A light-emitting diode (LED) is a type of semiconductor device that converts electricity to infrared or visible light using properties of a compound semiconductor and is used as indicator lights in electronic home appliances, remote control devices, electronic display boards, indicators and automation apparatuses.
The operation principle of such an LED is based on energy level of a material. That is, electrons and holes in a material move through and rejoin at a p-n junction when electrically biased in the forward direction. As a result, light is emitted from the p-n junction as energy level of the material is lowered due to the electron-hole rejoin.
Generally, LEDs are manufactured in a very small size about 0.25 mm2 and packaged using a lead frame, a printed circuit board (PCB) and a epoxy molding compound. Recently, the most common package for LEDs is a 5 mm (T 1¾) plastic package, but new packages for LEDs are being developed depending on LEDs application fields. The color emitted by the LEDs depends on the wave length which is controlled by chemical composition of a semiconductor material used.
As components for information technology and telecommunications are getting smaller and slimmer, various kinds of parts thereof, such as resistor, condenser, noise filter and so on, also become much smaller. To keep up such trend, LEDs are manufactured in a surface mount device (SMD) type package so as to be mounted on a PCB directly.
Accordingly, LED lamps used as display devices are being packaged in the SMD type recently. Such SMD-type LEDs can substitute related art simple light lamps and be used as light display apparatus, character display apparatus and image display apparatus for emitting various colored light.
FIG. 1 is a cross-sectional view of an LED in accordance with a related art. With reference to FIG. 1, a method of manufacturing an LED will be described below.
Referring to FIG. 1, a sapphire substrate 10 composed of mainly Al2O3, is provided with a GaN buffer layer 1 made of gallium nitride (GaN) thereon. Then, an undoped GaN layer 3 is formed on the GaN buffer layer 1.
Generally, group three elements in the periodic table are grown on the sapphire substrate 10 by a Metal Organic Chemical Vapor Deposition (MOCVD) method at a growth pressure ranging from 200 to 650 torr to be a layer. That is, the GaN buffer layer 1 and the GaN layer 3 are formed by the MOCVD method.
Next, an n-type GaN layer 5 is formed on the undoped GaN layer 3 using silicon such as monosilane SiH4 or disilane Si2H6.
On the n-type GaN layer 5, an active layer 7 is formed. The active layer 7 serving as a light-emitting area is a semiconductor layer containing Indium Gallium Nitride (InGaN) as light-emitting material therein. After the active layer 7 is grown, a p-type GaN layer 9 is formed on the active layer 7. The p-type GaN layer 9 is formed using Mg-based group two elements in the periodic table.
The p-type GaN layer 9 is complementary layer to the n-type GaN layer 5 which supplies electrons to the active layer 7 when a voltage is applied thereto.
On the contrary, the p-type GaN layer 9 supplied holes to the active layer 7 when a voltage is applied so that the electrons and holes join in the active layer 7 and light is emitted from the active layer 7.
Even though not shown, a transparent metal layer (TM) made of a conductive material (not shown) is formed on the p-type GaN layer 9 to shed the light emitted from the active layer 7 outside.
A light-emitting device manufacturing process is completed as p-type electrode is formed, after the TM layer is formed.
However, the above light-emitting device in accordance with the related art is disadvantageous in that Mg—H complexes having an insulating property is formed on the p-type GaN layer as Mg reacts with atomic H generated from decomposition of NH3 gas when an Mg doping process is performed to form an electrical contact layer on the surface of the p-type GaN layer. The Mg—H complexes serve as an obstacle to the Mg doping, so that it becomes difficult to increase the number of hole carriers in the p-type GaN layer even though Mg is doped at high dose.
Such Mg—H complexes are caused as atomic H combines with Mg contained in trimethyl gallium (TMG) or double cycle pentadienyl magnesium (DCP Mg) organic substance used for crystal growth after the growth of the p-type GaN layer, or caused due to decomposition of NH3 gas which is needed to maintain the p-type GaN layer in NH3 ambient to prevent formation of nitrogen vacancy (N-vacancy) in the p-type GaN layer, wherein such N-vacancy is generated due to the nitrogen out-diffusion upon cooling the p-type GaN layer after its growth. That is, atomic hydrogen is generated when the NH3 gas is thermally decomposed and permeates into the GaN layer through treading dislocation holes existing on the surface of the GaN layer. | {
"pile_set_name": "USPTO Backgrounds"
} | 0.021865 | [
{
"begin": 0,
"end": 26,
"score": 0.015958535
},
{
"begin": 26,
"end": 139,
"score": 0.0022623
},
{
"begin": 139,
"end": 175,
"score": 0.03459597
},
{
"begin": 175,
"end": 491,
"score": 0.0013210967
},
{
"begin": 491,
"end": 570,
"score": 0.0054438976
},
{
"begin": 570,
"end": 706,
"score": 0.120766796
},
{
"begin": 706,
"end": 834,
"score": 0.027159272
},
{
"begin": 834,
"end": 996,
"score": 0.0038011859
},
{
"begin": 996,
"end": 1157,
"score": 0.0128159365
},
{
"begin": 1157,
"end": 5055,
"score": 0.01803873
}
] |
N is for numbskull making me want to kill myself
O is for obviously a retard
The other O is for On Kobes ******* just like Satan waaants
B is for bastard just like your brother down here in the deep blue sea!! | {
"pile_set_name": "Pile-CC"
} | 0.847365 | [
{
"begin": 0,
"end": 49,
"score": 0.8027454
},
{
"begin": 49,
"end": 77,
"score": 0.62737316
},
{
"begin": 77,
"end": 137,
"score": 0.40086043
},
{
"begin": 137,
"end": 209,
"score": 0.7936335
}
] |
It is easier to build strong children than to repair broken men. ~~ Frederick Douglass American Statesman
This program mission bolsters youth in general, foster children, and abused, abandoned and neglected children with children self-sufficiency and autonomy.
Different kid’s different circumstances require different approaches.
Some programs provide access to the majority of the at-risk and system kids in the state and work to expand the hearts and minds of these children through educational activities and instruction to improve their capabilities and their lives so they will become incredible citizens.
Some purpose-built programs begin the process of replacing falsehood with truth, inexperience with knowledge, hurt with hope, anger with love, shiftlessness with goals, and hopelessness with faith. | {
"pile_set_name": "OpenWebText2"
} | 0.034109 | [
{
"begin": 0,
"end": 65,
"score": 0.062438346
},
{
"begin": 65,
"end": 106,
"score": 0.058710974
},
{
"begin": 106,
"end": 262,
"score": 0.19710258
},
{
"begin": 262,
"end": 333,
"score": 0.012036514
},
{
"begin": 333,
"end": 615,
"score": 0.003827737
},
{
"begin": 615,
"end": 813,
"score": 0.034772877
}
] |
"Hoarders" - the Wayback Machine chronicles
The 2009 episode with that cunt Augustine is on.
Man, is her son fat.
Oh god, I remember Augustine. She was such a vile piece of shit, what they should have done was take her out back and shoot her, and then torched that disgusting pigsty she called a house. I felt so sorry for her (adult) children, having to grow up with that awful woman for a mother.
I heard A&E cancelled this show.
I remember Augustine, didn't she sit in a recliner with a jar of mayo next to her? And she has a big son too? I am a fan of the possum from Hoarders on face book and he does mention that they don't know if they are coming back yet.
Dr.%20Tonya%20Harding
Did you see the one about a week ago where the woman had been pissing and shitting in bottles for years? There were hundreds of them. When they started cleaning her place they started loading them into 30 gallon barrels as is but there were so many they hired a septic tank cleaning truck. They were pouring the bottles into a barrel and the septic tank workers were using a vacuum hose to suck her mess into the truck. While wearing full hazmat suits and those industrial strength respirators. | {
"pile_set_name": "Pile-CC"
} | 0.780295 | [
{
"begin": 0,
"end": 44,
"score": 0.050555345
},
{
"begin": 44,
"end": 94,
"score": 0.3052859
},
{
"begin": 94,
"end": 115,
"score": 0.25102517
},
{
"begin": 115,
"end": 146,
"score": 0.01461663
},
{
"begin": 146,
"end": 305,
"score": 0.87427866
},
{
"begin": 305,
"end": 401,
"score": 0.39954224
},
{
"begin": 401,
"end": 435,
"score": 0.0075525627
},
{
"begin": 435,
"end": 519,
"score": 0.06137477
},
{
"begin": 519,
"end": 546,
"score": 0.042734113
},
{
"begin": 546,
"end": 1186,
"score": 0.47999948
}
] |
Defending individual liberty against the tyranny of government.
Truth, justice and the American way: liberty without compromise.
Life, liberty, and property do not exist because men have made laws. On the contrary, it was the fact that life,liberty, and property existed beforehand that caused men to make laws in the first place. - Frédéric Bastiat
Perry Eidelbus,Der Eidelblogger
Westchester,New York
Friday, August 03, 2007
Scott Thomas Beauchamp is a liar
When it comes to explaining how the military works, especially the command structure and equipment, I find McQ of QandO unparalleled. Don't miss his latest takedown of that lying ass, Scott Thomas, who unsurprisingly snookered The New Republic with implausible tales of American military behaving badly. The things Thomas claimed just wouldn't happen without a lot of repercussion to whoever was stupid enough to insult an IED-disfigured civilian contractor, wear a child's skull as a "yarmulke" (is anyone goddamn stupid enough to believe that?!), or maneuver a Bradley just to run over a dog. The CO would get in as much trouble, if not more, for not remedying the situation and disciplining the soldier.
There are only two possibilities: Thomas is telling the truth, or he is lying. If he is telling the truth, then he needs to be court-martialed for his conduct unbecoming a member of the U.S. Army. If he is lying, then he likewise needs to be court-martialed for...his conduct unbecoming a member of the U.S. Army. The same should have happened to John Kerry after his testimony before the Senate committee in 1971: either be court-martialed for his part in the war crimes he claimed they did, or be court-martialed for lying.
0 Comments:
Links to this post:
"You are not to inquire how your trade may be increased, nor how you are to become a great and powerful people, but how your liberties can be secured; for liberty ought to be the direct end of your government."
- Patrick Henry, 1788 | {
"pile_set_name": "Pile-CC"
} | 0.522125 | [
{
"begin": 0,
"end": 64,
"score": 0.048079338
},
{
"begin": 64,
"end": 129,
"score": 0.009549538
},
{
"begin": 129,
"end": 199,
"score": 0.05752101
},
{
"begin": 199,
"end": 351,
"score": 0.047993965
},
{
"begin": 351,
"end": 384,
"score": 0.15635727
},
{
"begin": 384,
"end": 406,
"score": 0.024876
},
{
"begin": 406,
"end": 431,
"score": 0.0278671
},
{
"begin": 431,
"end": 465,
"score": 0.35665864
},
{
"begin": 465,
"end": 600,
"score": 0.011047639
},
{
"begin": 600,
"end": 1967,
"score": 0.5668752
}
] |
Check out our new site Makeup Addiction
add your own caption
add your own caption
add your own caption
add your own caption
add your own caption
add your own caption
add your own caption
add your own caption
add your own caption
add your own caption
add your own caption
Why the fuck Would you make a Christmas special in April? | {
"pile_set_name": "OpenWebText2"
} | 0.600094 | [
{
"begin": 0,
"end": 40,
"score": 0.06296436
},
{
"begin": 40,
"end": 62,
"score": 0.023793926
},
{
"begin": 62,
"end": 84,
"score": 0.023793926
},
{
"begin": 84,
"end": 106,
"score": 0.023793926
},
{
"begin": 106,
"end": 128,
"score": 0.023793926
},
{
"begin": 128,
"end": 150,
"score": 0.023793926
},
{
"begin": 150,
"end": 172,
"score": 0.023793926
},
{
"begin": 172,
"end": 194,
"score": 0.023793926
},
{
"begin": 194,
"end": 216,
"score": 0.023793926
},
{
"begin": 216,
"end": 340,
"score": 0.61384445
}
] |
Q:
Calculating distance between 2 points. Can I trust in GeoLocation.STDistance function of sql server?
I want to calculate the distance between two points with SQL server. The problem is that I get a result that is not accurate.
Create table #auxdist
( idempr int identity(1,1)
,emp_desc varchar(60)
,longitud float
,latitud float
,geolocation geography
)
insert into #auxdist values ('TIng',-55.769,-34.768,NULL)
insert into #auxdist values ('CComp',-55.74132,-34.19647,NULL)
Update #auxdist
SET [GeoLocation] = geography::STPointFromText('POINT(' + cast( CAST(cs.latitud AS decimal(30,20)) as varchar(30)) + ' ' +
cast( CAST(cs.longitud AS decimal(30,20)) as varchar(30))+ ')', 4326)
from #auxdist cs
select com1.idempr,com2.idempr, com1.GeoLocation.STDistance(com2.GeoLocation) as dist
from #auxdist com1
join #auxdist com2 on com1.idempr <> com2.idempr and com1.idempr=1
Using this query I get that the distance between two points is 36016 mts.
Then I check the result using http://www.onlineconversion.com/map_greatcircle_distance.htm
and I found a different answer: 63673mts (Haversine formula)
A:
You've specified your points backwards. Run the following query and you'll see what I mean.
select *, geolocation.Lat as Lat, geolocation.Long as Long
from #auxdist
The fix is easy enough: when you're creating the WKT via string concatenation, just switch the order of latitud and longitud
| {
"pile_set_name": "StackExchange"
} | 0.044105 | [
{
"begin": 0,
"end": 43,
"score": 0.01831005
},
{
"begin": 43,
"end": 105,
"score": 0.078514025
},
{
"begin": 105,
"end": 175,
"score": 0.058364507
},
{
"begin": 175,
"end": 232,
"score": 0.015065078
},
{
"begin": 232,
"end": 254,
"score": 0.07936633
},
{
"begin": 254,
"end": 300,
"score": 0.0080956025
},
{
"begin": 300,
"end": 337,
"score": 0.025918545
},
{
"begin": 337,
"end": 367,
"score": 0.04219359
},
{
"begin": 367,
"end": 397,
"score": 0.029706314
},
{
"begin": 397,
"end": 1517,
"score": 0.044702586
}
] |
Greeting Cards Online ~ Free Love, Family & Friendship cards
3 Player Card Games Reddit Tags
TaraChambler Friendship, 2018-02-17 13:48:52. Therefore, if there's something which you wish to learn about greeting cards for any occasion, you've come to the proper location! It is possible to make sympathy card with message that leaves profound effect on the receiver. You don't have to go over the top making individual thank you cards, an easy one-card-suits-all will be sufficient. Card Packs If you wish to allow it to be much easier to make your own cards, it might be a great notion to customize cards you presently have. Check to realize that everything on the card is accurate. On-line cards are an excellent means to send someone a fast message of encouragement.
TaraChambler Friendship, 2018-02-21 09:22:42. It's not simple to discover the perfect get well messages to someone who's sick. Look at these 15 get well card messages, meant only for this intention. Anxiety sets in as you attempt to discover the proper sympathy card message. Greeting card messages found on this website will be able to help you with the perfect words or, if you need to write them yourself but maybe you're at a loss for words, this website can help supply you with the inspiration you will need.
TaraChambler Love, 2018-02-21 09:31:04. The ideal thing about those cards is they are unbelievably simple to design. The card is only to say hello. These cards are also rather cheap and you may find that you don't ever buy one from the high street again. Among quite a few birthday gifts, it's frequently a card that tops the list. Making greeting cards is far more special than heading out and buying one. You've got to pull a card in line with the query and read it judiciously.
TaraChambler Friendship, 2018-02-21 09:22:42. Unfortunately, you may add a custom made photo onto it. It's possible to impose your own image or those of family and friends also. You can also utilize Facebook photos for this function or take an iPhone selfie. You're able to use all their free clips but should you need to use their premium clips as well then it is possible to subscribe on their website for only $1 a month. On this phase it is simple to record the video. If you are searching for FREE JibJab Videos there are a number of of them available at the moment. Then you are going to be directed to the preview of your clip.
TaraChambler Friendship, 2018-02-21 09:31:03. These messages are the ideal length for a card. Essentially, now the man or woman grieving really would like sympathy card messages which are from the heart. Therefore your sympathy message shouldn't be lengthy.Locating the perfect sympathy card wording is a bit easier in case you use a sympathy verse. Although writing a brief perfect thank you letter to them can look as a time consuming undertaking, it's a remarkably thoughtful gesture. Writing a sympathy note is just one of those awkward moments all of us face sooner or later.
TaraChambler Love, 2018-02-21 09:31:04. If people think of Valentineas Day, they mostly consider the romance element of it. Valentines Day is merely a couple weeks away, which means you could possibly be on the look out for some easy, cheap and pretty Valentines Day Craft ideas. It is a reminder that just because there is a day designated to show love to loved ones you should do it all the time. Valentine's Day is almost always a very good target for the meme factory that's the web. Valentine's Day is thought to be among the most important occasions that folks celebrate yearly. St patricks day is also famous for drinking large sums guiness.
TaraChambler Friendship, 2018-02-21 09:22:42. God's words are sufficient to make us feel much better. Good letter writing skills will let you compose appropriate donation request letters. A superb donation request letter can earn a major difference in raising the prospects for getting financial assistance. Writing donation request sample letter can ensure your probability of getting financial assistance at the appropriate moment.A get well message is similar to telling someone which you are by their side in any way times. Within this article you'll discover a fantastic assortment of get well soon messages and wishes.
TaraChambler Family, 2018-02-21 09:22:43. Hallmark offers a vast collection of inexpensive digital cards and a more compact collection of completely free e-cards. Ecards arrive in a wide range of eleven ecards directly to provide help. Ecards generates donations to include things like part of the. You can also locate a complete bunch of other absolutely free ecards in my personal list of the finest free ecard sites. The thought of Mother's Day is fantastic. It's not so likely to occur! Even better was the news they were planning to expand Batgirl's function in the movie in an attempt to stretch the story into a feature length film.
TaraChambler Friendship, 2018-02-21 09:22:41. These messages are the ideal length for a card. Essentially, now the man or woman grieving really would like sympathy card messages which are from the heart. Therefore your sympathy message shouldn't be lengthy.Locating the perfect sympathy card wording is a bit easier in case you use a sympathy verse. Although writing a brief perfect thank you letter to them can look as a time consuming undertaking, it's a remarkably thoughtful gesture. Writing a sympathy note is just one of those awkward moments all of us face sooner or later.
TaraChambler Friendship, 2018-02-21 09:22:41. Although you might not share their passion for animals to precisely the same extent, you are going to want to make sure you don't say the incorrect thing and jeopardize your friendship at this sensitive moment. It's not acceptable for you to continue and on about your own knowledge in a note. A live plant will provide the person a longer lasting enjoyment, and yet another approach to keep in mind the deceased. Sympathy plants are gifts for every time a man or pet dies. You're able to purchase sympathy plants which are flowering in the event that you desire the best of both types. | {
"pile_set_name": "Pile-CC"
} | 0.035174 | [
{
"begin": 0,
"end": 61,
"score": 0.010017131
},
{
"begin": 61,
"end": 94,
"score": 0.05656533
},
{
"begin": 94,
"end": 141,
"score": 0.00095495046
},
{
"begin": 141,
"end": 272,
"score": 0.024306502
},
{
"begin": 272,
"end": 367,
"score": 0.015116206
},
{
"begin": 367,
"end": 483,
"score": 0.023657992
},
{
"begin": 483,
"end": 626,
"score": 0.030751385
},
{
"begin": 626,
"end": 684,
"score": 0.008590172
},
{
"begin": 684,
"end": 770,
"score": 0.018358426
},
{
"begin": 770,
"end": 6118,
"score": 0.033169165
}
] |
Best lesbian sexy photo in the world
The actress came out as bisexual last October in an interview with Entertainment Weekly. Actress The Rum Diary. Megan began her training in drama and dance at age 5 and, at age 10, moved to St. Do you like feeling held down, or gently caressed, or teased? Naomi Woods in lesbian experience. Portia de Rossi was born and raised in Geelong, Australia. A Family Affair silkstockingslover 4.
Free erotic sites
Sexy Lesbian Love Quotes and Romantic Sayings
Teen mastubation at the gym. Tinder also has a hard time giving you girls who actually want to meet girls romantically, and may accidentally filter in a girl that just happen to also be a fan of "The Office" on Facebook. Tell us what you think about this feature. Petite Kylie Nicole Fucking Hard. Originally born Amanda Rogers, at 15 she changed her name to Portia, saying that it was the most daring thing she had ever done up until that point.
Hot Lesbian Pics, Hot Nude Lesbians Porn - electronics-forum.info
The 'Fast and Furious' star commented,"I've gone both ways. Cute Blonde Lola Fucking Herself. Sex Art is filled with gorgeous classically beautiful women from all over the world who enjoy posing nude and in seductive erotic poses. See top quality galleries of your favorite models posing nude or check out the lesbian galleries for hot lesbian sex. Bumble is free to download , but has a premium subscription called Bumble Boost.
You'll see some of the biggest actresses, personalities, comediennes, and musicians on this list of hot celebrity lesbians. Lonely teen with tight pussy. Sexy alternative hottie displays her fine body. Jelena and Jenna June 13 Gentle woman in transparent dress Sep 15, | {
"pile_set_name": "Pile-CC"
} | 0.787123 | [
{
"begin": 0,
"end": 37,
"score": 0.45756483
},
{
"begin": 37,
"end": 127,
"score": 0.00033827158
},
{
"begin": 127,
"end": 150,
"score": 0.020950573
},
{
"begin": 150,
"end": 232,
"score": 0.0032984628
},
{
"begin": 232,
"end": 294,
"score": 0.018967653
},
{
"begin": 294,
"end": 329,
"score": 0.004338619
},
{
"begin": 329,
"end": 388,
"score": 0.0056716157
},
{
"begin": 388,
"end": 426,
"score": 0.0054451437
},
{
"begin": 426,
"end": 445,
"score": 0.25981104
},
{
"begin": 445,
"end": 1707,
"score": 0.8064214
}
] |
Those of you who loved wearing gel bracelets, colours that don’t exist in nature or anything John Hughes are in for a real treat.
A charismatic, energetic and plain old fun band called Unisex Salon is playing the role of standard bearer for the decade of excess in New York with their 80s inspired sound and style.
Fronting the throw-back band and epitomizing everything 80s is Kenyon Phillips. With his sleek tattooed body, big hair, quasi-androgynous look and surreal stage presence, Phillips is like Polaroid taken in 1983 come to life. With one exception.
“I’ve never had a drink in my life,” chuckles Phillips when asked if he indulges in some of what made the 80s the 80s. “No booze, no smokes, no drugs…very un-80s of me.”
Phillips, however, does have a long standing addiction, but it’s to the rush of being in front of an audience.
“I was a fat child, I was bad at sports but I loved the school play,” he says emphatically. “And I remember when I got on stage and gave my first line, I felt so good, and I’ve been chasing that amazing feeling every since.”
Watch one live clip online and you’ll know exactly what he means.
“Even if you don’t like our music, you’ll like our stage show,” says Phillips. “Our performances are at the heart of Unisex Salon, it’s what has made us stand out and for me, performing a song you’ve written is the pinnacle, it’s what makes life worth living.”
The icing on this neon-coloured cake is the talent on stage with Phillips. The backings of the stunning Autumn Ready Potter, Brian Gumbel on the keyboards, former Fun Lovin’ Criminal Stephen Borgovini on drums, Jansen Cinco on bass and Chris Comfort on guitar round out the band.
“These guys never cease to amaze me. I’ve learned over the years that if the chemistry isn’t there, regardless of talent, it’s going to be shit. Just like sex,” he says, pausing to laugh a bit. “And in our case, the sex is great.”
And as for whether Unisex Salon can survive in the ever-growing, ever-changing New York music scene, Phillips shrugs of any doubt: “Hey, the more things change, the more they stay the same. A lot of it depends on the press’ tastes if you’re going to make it, but with them you’re either great or shitty, but the one thing common to a lot of other acts out there is that no one’s dancing, and that’s the point of difference; I dance and we’ll get the audience to dance too.” | {
"pile_set_name": "Pile-CC"
} | 0.470994 | [
{
"begin": 0,
"end": 130,
"score": 0.038724717
},
{
"begin": 130,
"end": 316,
"score": 0.0035914395
},
{
"begin": 316,
"end": 397,
"score": 0.031274263
},
{
"begin": 397,
"end": 542,
"score": 0.10867411
},
{
"begin": 542,
"end": 562,
"score": 0.012979326
},
{
"begin": 562,
"end": 682,
"score": 0.089385934
},
{
"begin": 682,
"end": 733,
"score": 0.029324964
},
{
"begin": 733,
"end": 845,
"score": 0.009260322
},
{
"begin": 845,
"end": 938,
"score": 0.102004796
},
{
"begin": 938,
"end": 2387,
"score": 0.5284331
}
] |
Tired tower to make way for vibrant new housing project just minutes from CBD
A high-quality and contemporary development in the heart of Highgate is a step closer with the release of a demolition tender for Stirling Towers.
Housing Minister Brendon Grylls said a suitably qualified and highly experienced demolition contractor was being sought to manage the demolition process.
“The successful demolition contractor is expected to be announced by the end of this year. The contractor will be required to prepare a detailed demolition plan to manage the process in a highly effective and safe manner that minimises any impact on neighbours.” Mr. Grylls said.
“The Housing Authority has advised the Highgate community of our redevelopment intentions and what to expect from the demolition process. This has been well received and we will continue to keep the community informed throughout the process.”
Since the 1970’s, Stirling Towers has provided affordable and social housing options for low-to-moderate income earners. In recent years, the authority determined that redevelopment is the best option for this site and for the community.
The Housing Authority has relocated the building’s tenants into other residences within the metropolitan area, and is closely engaged with the City of Vincent and key stakeholders to ensure as smooth a process as possible.
An Expression of Interest is being released by the Housing Authority by November 2016 to engage a private sector development partner.
The Minister said the redevelopment of the site would offer a wide range of benefits for the community.
“It will include a mixture of housing types and tenures, private and affordable home ownership, a reduction in the concentration of social housing tenants, and trial of new initiatives such as car-sharing.” Mr. Grylls said.
“Once the private sector development partner has been engaged, the community will be consulted on the development as part of the standard town planning process.”
Mr. Grylls said the demolition was expected to commence in early 2017. | {
"pile_set_name": "Pile-CC"
} | 0.006929 | [
{
"begin": 0,
"end": 78,
"score": 0.040733535
},
{
"begin": 78,
"end": 226,
"score": 0.0034361465
},
{
"begin": 226,
"end": 381,
"score": 0.00060234324
},
{
"begin": 381,
"end": 473,
"score": 0.0023171715
},
{
"begin": 473,
"end": 645,
"score": 0.052544918
},
{
"begin": 645,
"end": 662,
"score": 0.014029576
},
{
"begin": 662,
"end": 801,
"score": 0.0035834147
},
{
"begin": 801,
"end": 906,
"score": 0.005845349
},
{
"begin": 906,
"end": 1028,
"score": 0.0015020532
},
{
"begin": 1028,
"end": 2068,
"score": 0.0044776117
}
] |
By Fleur Clarke
Posted on October 13, 2015 in Books, Craft Corner with tags Halloween
Whether you feel up to constructing an elaborate Cthulhu pie, or just want to scrawl on a mirror and call your bathroom the Chamber of Secrets, we’ve got a spooky selection of bookish Halloween crafts for you.
1. Create some bookish Halloween bunting
If you can bear to sacrifice a book that is…
Source: Simple As That
Source: The Golden Sycamore
2. Make a Necronomicon
Cast a spell on your friends and family and recreate the Book of the Dead from the Evil Dead.
Source: Trinketeer
3. Bake a Cthulu pie
In his house at R’lyeh, dead Cthulhu bakes at 180 degrees.
Source:Chthonica Persephone
4. Turn yourself into a Dune sandworm
When it comes to Halloween costumes, we say go Shai-Hulud or go home.
Source: Instructables
5. Make an Edgar Allan Poe-inspired Halloween Wreath
‘Take thy beak from out my heart, and take thy form from off my door!
Quoth the Raven “Nevermore.”’
Source: Gwen Moss Blog
6. Craft and owl pop-up book
This craft is a hoot!
Source: Ecletically Vintage
5. Lay a dragon egg
Now, if you really wanted to add a touch of Game of Thrones to your Halloween party you’d slaughter all your guests – but that’s illegal.
Instead, channel your anger into pushing a bunch of pins into a styrofoam egg. Congratulations, you’re basically the Mother of Dragons.
Source: eHow
6. Bake a Ned Stark cake pop
Too soon?
Source: Not Your Momma’s Cookie
7. Summon the dementors
These won’t suck the life out of your party, we promise.
Source: Over The Big Moon
8. Macbeth Halloween Spells
Michael Fassbender’s invite got lost in the post? Don’t worry. You can bring Macbeth to your Halloween party with this DIY.
Source: The Country Chic Cottage
9. Turn your bathroom into a scene from The Chamber of Secrets
You don’t even need good handwriting for this one.
Source: Prof McGonagall
10. Carve a Pennywise pumpkin
Stephen King’s creepy clown is one of the most terrifying villains ever created. He should definitely be invited to your Halloween party.
Source: Orange and Black Pumpkins
11. Make (and then eat) some Frankenstein marshmallow pops
Bonus: if this recipe goes tits up then you’re just staying true to the spirit of Mary Shelley’s book.
Source: Just A Taste | {
"pile_set_name": "OpenWebText2"
} | 0.390289 | [
{
"begin": 0,
"end": 16,
"score": 0.011829342
},
{
"begin": 16,
"end": 87,
"score": 0.0134764295
},
{
"begin": 87,
"end": 298,
"score": 0.0775312
},
{
"begin": 298,
"end": 340,
"score": 0.09078388
},
{
"begin": 340,
"end": 386,
"score": 0.087278016
},
{
"begin": 386,
"end": 410,
"score": 0.0156685
},
{
"begin": 410,
"end": 439,
"score": 0.027119085
},
{
"begin": 439,
"end": 463,
"score": 0.22164907
},
{
"begin": 463,
"end": 558,
"score": 0.20740667
},
{
"begin": 558,
"end": 2298,
"score": 0.43799728
}
] |
College jock Riley Price has got a crush on Coach Robert Van Damme in this brand new scene from our friends at the newly-awesome Men.com. Hot trailer and pix follow the jump.
[flowplayer src=’https://www.gaypanic.com//video/CrushOnMyCoach_scene1_trailer_p01_480p_2000.m4v’ splash=’https://www.gaypanic.com//video/CrushOnMyCoach_scene1_trailer_p01_480p_2000.jpg’]
Ginger boy Price works an injury to his advantage by seeking comfort from the muscle daddy Coach, who’s all too willing to take care of him, Van Damme-style, by sliding his big cock into Riley’s willing ass and making all the pain of the injury go away!
| {
"pile_set_name": "OpenWebText2"
} | 0.536877 | [
{
"begin": 0,
"end": 138,
"score": 0.046308756
},
{
"begin": 138,
"end": 175,
"score": 0.030898487
},
{
"begin": 175,
"end": 366,
"score": 0.15104945
},
{
"begin": 366,
"end": 624,
"score": 0.69104594
}
] |
Gaza’s prime minister announced today that six attack tunnels leading into Israel had been demolished, claiming they were “dens of homo-Zionist depravity.”
Speaking on Al Aqsa TV, Prime Minister Ismail Haniyeh alleged that hundreds of Gazan and Israeli men had been meeting regularly in the tunnels to engage “in acts of bestial proportions,” and that even though the destroyed tunnels degraded his forces’ military capabilities, “our hatred of Sodomites supersedes our desire to slaughter Jews.”
RELATED: Gay Vandals Give Al-Aqsa Mosque ‘Rainbow Makeover’
Hamas’ news channel then aired footage of a tunnel strewn with used condoms and assorted BDSM equipment, including whips, gags, bondage beds and human pony harnesses.
According to Al Aqsa TV, the network of sex parties was exposed after the residents of multiple Palestinian border towns complained of repeatedly being woken in the middle of the night by the sound of moaning, as well as ground tremors.
And while Al Aqsa TV did not provide evidence of Israeli participation, Bentzion Zayin-Anak of the Brotherhood of Binational BDSM Lovers appeared to substantiate Hamas’ claims, telling Israel’s Channel 3 News: “We will simply find alternative venues; aside from the pleasure we derive from such encounters, they’re crucial to laying the groundwork for peace and reconciliation between Israelis and Palestinians. Our message is this: swap guns for gag balls, knives for nipple clamps, and barrages of rockets with showers of liquid gold…” | {
"pile_set_name": "OpenWebText2"
} | 0.477199 | [
{
"begin": 0,
"end": 156,
"score": 0.48445478
},
{
"begin": 156,
"end": 498,
"score": 0.48576388
},
{
"begin": 498,
"end": 559,
"score": 0.042796336
},
{
"begin": 559,
"end": 727,
"score": 0.13465397
},
{
"begin": 727,
"end": 965,
"score": 0.0212098
},
{
"begin": 965,
"end": 1378,
"score": 0.023043139
},
{
"begin": 1378,
"end": 1503,
"score": 0.2981138
}
] |
How To Have A Rockstar Weekend In Seminyak
By Tessa Gallagher - 16 Mar 2016
I geddit, you’ve been to Bali more times than you can thrown a (satay) stick at and have spent countless days running around Waterbom Park as a kid and drinking Bintangs on the beach as an adult, not to mention numerous weddings, hens and bucks parties, family trips and general I-need-to-get-the-hell-out-of-Australia-it’s-freezing getaways.
But every now and again, whether it’s for a special occasion, or just cos you’re feeling super spesh (or cashed up?), it’s nice to have a long weekend where you live it up in the best possible way—we’re talking a totally luxurious, pamper-filled, indulgent and relaxing few days in Bali’s super cool neighbourhood of Seminyak.
So because we’re partial to a little luxury ourselves here at The Urban List, we did the tough research (ahem..) to bring you the goods from the Island of the Gods.
Here’s how to have a total rockstar weekend in Seminyak.
Stay
One of the most luxurious villas in Seminyak, walking into One Eleven is like entering some kind of dream world (a dream you never want to wake up from). It may be smack bang in the middle of Bali’s bustling Seminyak, but it is an intimate retreat that oozes tranquility and luxury. There are only nine villas here—all with their own 14-metre long swimming pool and private spa gazebo—and it is hands down, one of the best villas I’ve stayed in. There’s a luxurious bedroom, a huge bathroom (with his and hers toiletries and the best shower ever!), floor to ceiling windows and another huge outdoor living area with your own kitchen and lounge where you look out over the pool and plot how you can win Lotto and stay there forever. Honestly, If I could have moved in, I would have! Looks aside, the staff at One Eleven will move mountains to ensure your stay is amazing, but really, how could it not be. This place is the best!
Eat
OK, the weekend for saving your hard-earnt dollies this ain’t. You are a rockstar this weekend dammit, you’re all about sampling the finest produce this foodie region has to offer. Lucky for you, Seminyak is one of the most dynamic dining destinations in Asia and you can feast on everything from burgers to braised wagyu during your stay.
If you’re staying at One Eleven, you would have been treated to THE most bangin’ brekky of your choice, cooked by your private chef in your villa no less! Next up: lunch! One of the hottest restaurants in Seminyak at the moment would have to be Tiger Palm. Will Meyrick (of Sarong, Mama San and Ubud’s Hujan Locale fame) recently opened Tiger Palm—his fourth Bali restaurant—in Seminyak’s The Village shopping centre and it is, as you would expect, incredible. The food is Malaysian, so there’s plenty of spice on the menu and all the dishes are punchy, flavoursome and absolutely drool worthy. Find yourself a comfy booth, order a cocktail (can I suggest the coconut mojito?) and get ready for one of the best lunches on the island. My tip: you’re going to want to order the crispy lamb ribs, the stir fried caramelised pork belly and the ‘Otak Otak’ fish wrapped in banana leaf betel leaves. NOM.
Coffee
To people who say it’s too hot to drink coffee in Bali, I have two words for you: Revolver Espresso. Down a small laneway off Seminyak’s main drag, this little gem is serving up the best coffee in Seminyak and has a vibin’ industrial-style interior that would not look out of place in Melbourne. The breakfast and lunch menu here is perfectly crafted too—it’s basically the perfect spot for a little chill-out before a tough afternoon of shopping or hanging by the pool.
Sunset Cocktails
Chilling out at an uber-cool, Seminyak sunset bar with a snazzy cocktail in hand whilst watching the legendary tropical sunset is obviously a must-do on your rockstar weekend. You haven’t been to Seminyak if you haven’t watched the sun go down at Potato Head Beach Club. Step into the Colosseum-esque building and you’ll understand why it has become such an iconic beach-front institution—it’s gorgeous! Get there early to try nab a day bed, order a cocktail jug and settle in for a sunset sesh worth instagramming the hell out of.
Spa
This is a weekend for absolute indulgence so if you can tear yourself away from laying by the pool, it is worth splashing out on some take-me-to-pamper-town treatments. The Pampering of Prana package from Prana Spa Bali begins with hot and cold plunge pools to invigorate and stimulate the circulation system, before a heavenly foot treatment, a stress-melting body massage and then a relaxing facial, scalp massage and hair cream bath. Just try not to float out of there!
Shop
Soooo your indulgent weekend must involve some retail therapy ammiright? The Seminyak strip is a happy hunting ground for designer homewares, gifts and sweet threads and there are always new discoveries to be made. You’re going to want to head into Enfants Paradis Botanical Skincare (the detox bath salts are amazing!), Carga and Souq for beautiful homewares and gifts, SKS for the best International and Indonesian designer wares and Lulu Yasmine for the best basics. Magali Pascal is your best bet for floaty, Parisian chic dresses, Mister Zimi for bold graphic prints and soft leather jackets, Shakuhachi for edgy on-trend pieces and and Toko Emporium for bright colourful art, homewares and jewelry.
Our best stories, direct to your inbox, helping you to out-trend your mates every weekend...
Tags:
By Tessa Gallagher
An avid reader, writer, traveller and eater, Tess is a lover of hot chips and green juice in equal measures (it’s all about the balance amiright?) You'll often find her in a poky wine bar, at a farmers' market, at the beach, sweating through a Pilates class, planning her next meal or walking the streets trying to get through her ever-increasing list of favourite podcasts. | {
"pile_set_name": "Pile-CC"
} | 0.411705 | [
{
"begin": 0,
"end": 43,
"score": 0.049905475
},
{
"begin": 43,
"end": 77,
"score": 0.035293818
},
{
"begin": 77,
"end": 421,
"score": 0.09645177
},
{
"begin": 421,
"end": 749,
"score": 0.0828772
},
{
"begin": 749,
"end": 915,
"score": 0.007878929
},
{
"begin": 915,
"end": 973,
"score": 0.040220525
},
{
"begin": 973,
"end": 979,
"score": 0.021153072
},
{
"begin": 979,
"end": 1134,
"score": 0.032588128
},
{
"begin": 1134,
"end": 1263,
"score": 0.06557732
},
{
"begin": 1263,
"end": 5872,
"score": 0.3720124
}
] |
Q:
How to get value from Dropdownlist?
I have two DropDownList which are related to each other by a foreign key.
Category and Subcategory(with categoryid as foreign key).
I am retrieving Categories from database and filling them up as:
DB CLASS
public class DB
{
public static List<SelectListItem> Categories {
get{
List<SelectListItem> list = new List<SelectListItem {
new SelectListItem{Text = "Category1" , Value = "categoryId1"},
new SelectListItem{Text = "Category2" , Value = "categoryId2"}
};
return list;
}
public static List<SelectListItem> SubcategoryWithCategoryId(int categoryId)
{...}
}
Now i can fill Subcategory dropdown with a method which expects categoryId as input:
View
@Html.DropDownList("Category", DB.Categories, "Select Category", new { style = "width:80px" })
@Html.DropDownList("Subcategory", DB.SubcategoryWithCategoryId(categoryId), "Select Subcategory", new { style = "width:80px" })
I am a beginner in ASP.NET MVC and i am using ADO.NET to access the database.
How can i now get the Selected Item's Value Field so i can fit it into my DB.SubcategoryWithCategoryId(categoryId) to retrieve subcategories mapped across the selected category?
Controller
public ActionResult Index()
{
return View();
}
A:
You need handle onchange of dropdown as
@Html.DropDownList("Category", DB.Categories, "Select Category", new { style = "width:80px",
onchange = "location.href='@Url.Action("Index", "Controller", new { category= "yourcategory"})'" })
And add category as paramter of index action
public ActionResult Index(string category)
| {
"pile_set_name": "StackExchange"
} | 0.065592 | [
{
"begin": 0,
"end": 40,
"score": 0.01384731
},
{
"begin": 40,
"end": 115,
"score": 0.023808433
},
{
"begin": 115,
"end": 173,
"score": 0.006699519
},
{
"begin": 173,
"end": 238,
"score": 0.05382953
},
{
"begin": 238,
"end": 247,
"score": 0.016385512
},
{
"begin": 247,
"end": 263,
"score": 0.022209806
},
{
"begin": 263,
"end": 319,
"score": 0.0406692
},
{
"begin": 319,
"end": 338,
"score": 0.029897163
},
{
"begin": 338,
"end": 411,
"score": 0.01707784
},
{
"begin": 411,
"end": 1710,
"score": 0.069524996
}
] |
This July, a little boy named Antonio Vargas Jr. lost his mother. When Christmas came around, his father Antonio Vargas Sr. wanted to do something a little extra special. So he went to a Build-A-Bear store and created a very unique gift: A plush monkey that played audio recordings of Antonio Jr.’s late mother’s voice.
Vargas Sr. filmed the moment his son opened the gift, as the boy immediately burst into tears upon hearing his mother’s voice. Watching this video will have you reaching for the tissues, too:
The stuffed monkey played his mother’s voice saying three phrases:
“I love you to the world and back,” “Give me a big hug. I love you,” and “I love you guys so much, and I will always love you.” How truly touching.
The fact that the stuffed animal was a monkey held significance, too. “We always called our son our little monkey. So on Christmas Day, his dream came true!!! I love my little man with all my heart, Daddy loves you,” the dad wrote on Facebook.
Vargas Sr.’s video gained quite a bit of attention online, and has already been viewed over 600,000 times on YouTube. People wrote in to tell the father what a great gift he had given to his son.
“That is beautiful…Your son will cherish that forever. You are an awesome Dad…God Bless you All,” one person commented on Facebook, and many other wrote in sharing similar sentiments.
Having others reach out touched the father, and he wrote a big thank you to everyone for their kind words on a GoFundMe page that has been set up to help the family.
GoFundMe / Antonio Vargas
“I want to start by saying Thank You from the bottom of my heart to everyone who has been very supportive of the video and who took the time to express their sincere condolences,” Vargas Sr. wrote.
The father continued, “Because this happened so fast we did not expect anyone to offer a helping hand, but due to multiple request we decided to create an account for those interested in helping. I would also like to express my deepest condolences and prayers to those who have also lost a loved one and may God continue to bless your family.”
This was a very touching moment between father and son, and hopefully the little monkey will serve as a reminder of the late mother. Wishing all the best to this family! | {
"pile_set_name": "OpenWebText2"
} | 0.128679 | [
{
"begin": 0,
"end": 66,
"score": 0.09008905
},
{
"begin": 66,
"end": 171,
"score": 0.03431766
},
{
"begin": 171,
"end": 320,
"score": 0.0047737076
},
{
"begin": 320,
"end": 448,
"score": 0.038244154
},
{
"begin": 448,
"end": 513,
"score": 0.04978583
},
{
"begin": 513,
"end": 581,
"score": 0.26989886
},
{
"begin": 581,
"end": 638,
"score": 0.017490877
},
{
"begin": 638,
"end": 710,
"score": 0.02210859
},
{
"begin": 710,
"end": 730,
"score": 0.026517307
},
{
"begin": 730,
"end": 2265,
"score": 0.101005234
}
] |
. /lib/functions.sh
preinit_set_mac_address() {
case $(board_name) in
asus,map-ac2200)
base_mac=$(mtd_get_mac_binary_ubi Factory 0x1006)
ip link set dev eth0 address $(macaddr_add "$base_mac" +1)
ip link set dev eth1 address $(macaddr_add "$base_mac" +3)
;;
asus,rt-acrh17|\
asus,rt-ac58u)
CI_UBIPART=UBI_DEV
base_mac=$(mtd_get_mac_binary_ubi Factory 4102)
ip link set dev eth0 address $(macaddr_add "$base_mac" +1)
;;
ezviz,cs-w3-wd1200g-eup)
ip link set dev eth0 address $(mtd_get_mac_binary "ART" 0x6)
ip link set dev eth1 address $(mtd_get_mac_binary "ART" 0x0)
;;
engenius,eap2200)
base_mac=$(cat /sys/class/net/eth0/address)
ip link set dev eth1 address $(macaddr_add "${base_mac}" +1)
;;
linksys,ea8300)
base_mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
ip link set dev eth0 address "${base_mac}"
ip link set dev eth1 address $(macaddr_add "${base_mac}" 1)
;;
meraki,mr33)
mac_lan=$(get_mac_binary "/sys/bus/i2c/devices/0-0050/eeprom" 0x66)
[ -n "$mac_lan" ] && ip link set dev eth0 address "$mac_lan"
;;
zyxel,nbg6617)
base_mac=$(cat /sys/class/net/eth0/address)
ip link set dev eth0 address $(macaddr_add "$base_mac" +2)
ip link set dev eth1 address $(macaddr_add "$base_mac" +3)
esac
}
boot_hook_add preinit_main preinit_set_mac_address
| {
"pile_set_name": "Github"
} | 0.099855 | [
{
"begin": 0,
"end": 20,
"score": 0.09740729
},
{
"begin": 20,
"end": 49,
"score": 0.03750174
},
{
"begin": 49,
"end": 72,
"score": 0.012638599
},
{
"begin": 72,
"end": 90,
"score": 0.028790211
},
{
"begin": 90,
"end": 142,
"score": 0.034216255
},
{
"begin": 142,
"end": 203,
"score": 0.030947287
},
{
"begin": 203,
"end": 264,
"score": 0.0153939985
},
{
"begin": 264,
"end": 269,
"score": 0.014091414
},
{
"begin": 269,
"end": 287,
"score": 0.03358738
},
{
"begin": 287,
"end": 1307,
"score": 0.030350685
}
] |
5
Let b(t) = -9*t - 31. Let f be b(-4). Suppose -4*j = -0*j - 2*n, -4*j - f*n = 0. Solve j = -5*g - 10, 3*w = g + g + 16 for w.
4
Suppose -464 = 17*w + 96*w - 2724. Solve 4*n + 15 - w = -5*x, 0 = n - 4*x + 25 for n.
-5
Suppose -84 = -396*u + 389*u. Solve -5*m = 3*y - u, 0 = -4*y - 3*m + 8*m + 16 for y.
4
Suppose 5*f - 37 = -4*s, -19 = -3*f + 617*s - 619*s. Solve -5*j - 2*u - 9 = -2, u = -j + f for j.
-3
Let u(d) = -d**3 + 72*d**2 + 2*d - 144. Let a be u(72). Solve 0 = 3*q - 4*p + 6, q = -4*p - 2 - a for q.
-2
Suppose 1916*r - 1906*r - 110 = 0. Solve -4*o + a - 5 = -15, o + 4*a = r for o.
3
Suppose -3*l + 1133 = -4*i + 2*i, -5*i = -2*l + 2860. Let s = i + 578. Solve -b - 5*n + 5 = -10, -2*n = s*b - 6 for b.
0
Let u be (-50)/5*(-30)/(-450) + (-85)/15*-1. Suppose 26 = 4*x + l, -3*x + 14 = -l - l. Solve -3*o + x = -0*o - 3*k, 2*o + 3 = -u*k for o.
1
Suppose -2*a - s = -6*a - 99, -3*s + 129 = -5*a. Let w = 28 + a. Let v be (2/2)/(-3)*(-32 - -29). Solve -z = -v + w, 0 = b + z + 2 for b.
1
Suppose -4*i - 3 = -2*z - 9, -18 = -2*i - 2*z. Let u(p) = -3*p - 3. Let w be u(-4). Suppose w - 1 = i*t. Solve -3*g + 3*q + 12 = 0, -t*g + 2 = -6*g - 5*q for g.
2
Let o(f) = -f**2 + 4*f + 2. Let h be o(4). Suppose -10*j = -h*j - 64. Let n(g) = -g + 13. Let c be n(j). Solve 2*v + 8 = 3*q, -4*v + c = -4*q + 21 for q.
0
Suppose -5*x + 10*d - 5*d + 5 = 0, -5*x + 4*d = -8. Let m = -134 + 138. Let k = 11 - 7. Solve 2*u + 0 = 4*j - 6, -m*j = -k*u - x for j.
2
Let m be (-30)/(-45)*24/8. Solve 3*h - m*h = 4*z + 13, -z = h + 2 for z.
-3
Let g = -256 + 261. Suppose g*a + 8 - 23 = 0. Solve 0 = -a*q + 12, q = y + 6 - 1 for y.
-1
Suppose 3*j - 1915*r = -1917*r + 7, -3 = j - 2*r. Solve 5*f = 5*t, 5*t + f = j + 5 for t.
1
Suppose -3*l - 2*l = 5*x - 25, 5 = l - 5*x. Let h be (-1 + 1)*(-89)/178. Solve f = -l*d + 22, h*d - 16 = -4*d for f.
2
Suppose 0 = l - 13 - 8. Suppose -k + l = 1. Suppose 3*s - f + 2 = -3, 0 = 5*s - 4*f + k. Solve s = -d + v, -2*d + 2*v = -4*d - 20 for d.
-5
Let i(m) be the first derivative of 21 - 8/3*m**3 - 13*m - 7/2*m**2 + 1/4*m**4. Let v be i(9). Solve 4*x - 20 = -x, 0 = -v*z + 2*x - 33 for z.
-5
Suppose -5*w - 2*u = -19, 94*w - 11 = 93*w + 2*u. Solve 2*b = w*h - 4, 0 = -2*h + 2*b - b + 1 for h.
2
Let q(t) = t**2 - 88*t + 1365. Let h be q(68). Solve -3*g - i - h = 3*i, -5*g - 3*i - 12 = 0 for g.
-3
Suppose -78*h + 105*h = 135. Solve 4*q + 73*r = 71*r - 4, 0 = -4*q + h*r - 32 for q.
-3
Let p(v) = -77*v - 2614. Let h be p(-34). Solve 3*w - 4*w + 11 = 4*o, 4*o - 20 = -h*w for o.
2
Let f be 2 + 2 + (0 - -206). Let t be 1/((-1370)/275 + 5). Let v be f/t - (72/(-33) + 2). Solve 28 = -4*u - 2*p + 6*p, v*u - 2*p = -24 for u.
-5
Let n(s) = -4*s**2 - 13*s. Let l be n(-1). Solve 0 = 3*o + 8*z - 12*z + 5, -l = 4*o - 3*z for o.
-3
Suppose -6 = -7*t + 22. Suppose -c - 3*a + 13 - 3 = 0, -3*c = -t*a + 35. Let z = c - -7. Solve 5*s + 3*x + 5 = 0, 2*s - z = -3*x + 5 for s.
-4
Let j = -821 + 843. Suppose j = 13*w - 43. Solve -2*o = -5*q + 1, -q = w*o - 5 + 21 for o.
-3
Let b = 9 - 5. Suppose 21 = 5*l + 5*q - 89, 0 = 6*l - 2*q - 116. Suppose 2*c = -z - 12 + 4, 0 = -b*c - l. Solve -k + 1 = 2*x - 3*x, 2*k - z = 0 for x.
0
Suppose -3*h - 2 = -5. Let l be ((-9 - (9 - -12))/(-4))/(54/36). Solve -c + h = c + j, 0 = l*c + 3*j - 5 for c.
-2
Suppose -15*j + 45 + 0 = 0. Suppose -4*c + 82 = -j*v, -3*v + 5*v + 106 = 5*c. Solve 0 = -3*q - 3*k + 27, -5*q + 3*k - 9 = -c for q.
5
Let w(z) = -z + 53. Let p be w(37). Suppose 0 = 3*c - 6*g + g - 14, -4*g - p = -4*c. Solve 2*x + j - 13 = 0, -3*x + j = -4 - c for x.
4
Let u be (-4588)/222*(-20)/(-8)*(-6)/10. Solve 0 = h + q - 2, -u*q - 14 = -4*h - 33*q for h.
5
Suppose 100 = 3*z - 5*v + 7*v, -20 = -z - 4*v. Suppose -26*l = -22*l - z. Solve n = -3*r - r + l, 10 = 2*n for r.
1
Suppose 0 = o - 7 + 5. Let k(v) = v**3 + 5*v**2 + 7*v + 12. Let g be k(-4). Solve o*i + 4 = g, -5*h + 3*i = -h - 2 for h.
-1
Suppose -30*d - 25*d = -330. Solve 2*g = -d, -4*j + g + 14 = -9 for j.
5
Let p(r) = r**3 + 7*r**2 - 32*r - 18. Let l be p(-10). Solve l*q - 4 = 3*s + 1, -q = -4*s - 15 for s.
-5
Suppose 0 = -5*m + 15, -h + 14*m + 51 = 19*m. Solve -31*j = n - h*j - 14, n - 18 = 7*j for n.
4
Let f be (-1)/(-3) - (-2)/(-6). Suppose 0 = -152*d + 138*d. Suppose -4*j + d*j = f. Solve 3*a + 6*y - y + 13 = j, -3*y = 5*a - 5 for a.
4
Let y be 6/(-36)*4*-12. Suppose 4*b - 7*r + 2*r = 0, 0 = -4*b + 3*r + y. Solve -3*o + 3 = -3*q, 10*q + 5*o = b*q + 15 for q.
1
Let n = 29 - 10. Suppose -25 = -n*y + 51. Solve 6*h - 2*h = 3*z - 1, h - 5*z - y = 0 for h.
-1
Let w = -2576 + 2579. Solve -8 = -2*i + w*u, 5*i + 6 = -4*u - 20 for i.
-2
Suppose 0 = -63*t - 81*t. Solve -5*h - 5*v = -10*h - 10, -2*h - v - 4 = t for h.
-2
Let i = 7 - 0. Let h be i - (-8)/((-12)/3). Suppose 7*d = h + 16. Solve -2*z = 3*b + b, d*z = -4*b for z.
0
Let b be (32/20)/(((-44)/55)/(-2)). Solve -3*v = -c - c + 2, 4*c - b = -v for c.
1
Let c = 52 - 49. Suppose -2*v - 114 = 2*w - 24, -95 = 2*w - c*v. Let z = 51 + w. Solve -1 = z*t + 3*k, -t + 5*k - 17 = -0*t for t.
-2
Suppose -580 = 73*d - 69*d. Let f = 189 + d. Solve -13 = 3*c - 5*m - f, 0 = 5*c + 3*m + 5 for c.
2
Let o be (-88133)/(-124) - 1/(-4). Let r = -701 + o. Solve -d = 4*z - r, -3*d + 18 = 4*z + 2*d for z.
2
Let b(u) = 411*u**3 + 2*u**2 + 3*u - 3. Let g be b(1). Let k = -408 + g. Solve -2*v = 2*h - v - k, 2*h + 4*v - 14 = 0 for h.
1
Let y be ((-14)/21)/(6/(-9)). Let t be (38/14 - (-8)/28) + y. Let x = -2 + 4. Solve -28 = 5*k - t*f, k - x*f = -1 - 7 for k.
-4
Suppose 5*l = 5*q + 190, l + q - 27 = 3. Suppose -138 = -l*i - 35*i. Let o = 5 - 3. Solve -o*k = 3*j - 7, -3*k + 5*j = i*k + 20 for k.
-1
Suppose 44 - 402 = -127*i + 277. Solve 0 = 3*a - 4*o - 13, 0 = 2*a - 3*a + i*o + 8 for a.
3
Let n(o) = o**2 + 13*o - 16. Let h be n(-14). Let l be (-38)/h - (-3 + 12 + -5). Suppose -4*a + 19 - l = 0. Solve -2*c - 3*y - y = 8, a = 2*c + y for c.
2
Suppose 0 = -5*u + 4*r + 20, 3*u - u + r - 8 = 0. Solve -22 = u*l - 5*w, -3*w + 8 = -4*l - 5*w for l.
-3
Suppose 5*m + 25 = 0, 3*s - 2*m - m = -6. Let p be (3 - (-4 - s)) + 6. Solve -5*a - 13 = -y, y + 7 = a - p*a for y.
3
Let v be (-4 + 3/3)/(-1). Let f(w) = 2*w - 13. Let q be f(7). Suppose 8 = 3*k + 2*t, 3*k - 4*t - q = 19. Solve -5*p = 0, 3*p = -v*z + k - 1 for z.
1
Let p be (-8)/14 - (5893/994)/(1/(-6)). Solve -t = 4*v + p, -4*t - 11 = 2*v + 17 for v.
-8
Let a(q) = 3*q - 9. Let u be a(11). Suppose 4*z - u = -4*d, -9*z + 4*z = -2*d - 2. Solve -7 - 7 = z*r + 4*p, -2*r = -4*p - 2 for r.
-3
Let j be (-2976)/72 - 1/(-3). Let y = j - -17. Let l = y + 26. Solve -18 = l*g + 5*i, -3*i + 5 = 11 for g.
-4
Let i = -116 + 170. Suppose i = o + 17*o. Solve l + 5 = o*d + 2, -5*l = -d + 1 for d.
1
Let f be (-6)/(-2) + (-4 - -6). Suppose 2*m + 6 = -4*v, 5*m = v + 221 - 258. Solve -f*i - 5*d + 30 = 0, -8 - v = -i - 5*d for i.
5
Suppose -97*n + 87 = -107. Solve -x + 1 = -n*z - 8, -7 = z + 2*x for z.
-5
Let w(q) = -4*q - 4. Let a be w(-4). Suppose 0 = 154*o - 625*o + 9420. Solve -l - 3*u = -0*l - a, 5*l - u + o = 0 for l.
-3
Suppose 5*n = -5*u + 65, 0 = -4*n + 1 - 13. Suppose 13*v - u*v = 5*h - 22, -3*h + 4*v = -19. Solve -h*o - 5 = 5*r, 2 = -r - 0 for o.
1
Suppose -11*s = -29*s + 72. Solve 2*b + s = -3*j - 5, -5*j + 5*b = 40 for j.
-5
Let l be 10 - 1 - 6/(-6 + 12). Suppose -2*v + l + 16 = 0. Suppose 5*q - v = 3. Solve 17 = -5*r - 5*z - q, 0 = 2*r + z + 6 for r.
-2
Let x = 0 + 3. Suppose -10 = 4*v + 10, 25 = 2*o - 5*v. Suppose o = -6*u - 5 + 17. Solve w - 3 = y, -x*w + u*y + 5 = -2*w for w.
1
Let t = -2616 - -2619. Solve 5*p + 86 = b + 61, 0 = t*p + 12 for b.
5
Let j be 22/(-11) - (-36)/3. Solve 5*l = 5*p - j, 3 - 17 = -3*p - l for p.
4
Let t(w) = 19*w**2 + 108*w - 28. Let c be t(-6). Solve -3*s = 5 - c, 5*m + s - 11 = 0 for m.
2
Suppose 3*r - 17 - 7 = 0. Suppose r = -2*u - 5*j + 40, 0 = -5*u + j + 26. Solve q = n, -q + 1 - u = 0 for n.
-5
Let b = -299 + 149. Let q = b + 70. Let h be 5/(-4) - 100/q. Solve -3*x + 12 = -5*t, h*t = -4*x - t - 7 for x.
-1
Let h = -2609 + 2633. Solve 27*i + 4*g + 8 = h*i, -2*g = 10 for i.
4
Let v be 26/338 + 512/104. Solve -v*y - h + 24 = 0, h - 4 = -0 for y.
4
Suppose -4*f + 24 = 2*d, 569*d = 573*d - f + 6. Solve 2*w - 4*s + 2 = d, -17*w + 4 = -15*w + 2*s for w.
1
Let u(f) = f**3 + 8*f**2 + 7*f + 2. Let j be u(-7). | {
"pile_set_name": "DM Mathematics"
} | 0.541044 | [
{
"begin": 0,
"end": 24,
"score": 0.09810575
},
{
"begin": 24,
"end": 40,
"score": 0.0738161
},
{
"begin": 40,
"end": 83,
"score": 0.4709564
},
{
"begin": 83,
"end": 128,
"score": 0.09096029
},
{
"begin": 128,
"end": 165,
"score": 0.02797906
},
{
"begin": 165,
"end": 216,
"score": 0.04105993
},
{
"begin": 216,
"end": 249,
"score": 0.050858997
},
{
"begin": 249,
"end": 304,
"score": 0.048561297
},
{
"begin": 304,
"end": 359,
"score": 0.26826212
},
{
"begin": 359,
"end": 8194,
"score": 0.5155695
}
] |
Q:
Flutter localisation of BottomNavigationBar items
I am creating a localized app with a Bottom Nav Bar on main page.
If I change localization the BottomNavigationBar's items name not updating until click one of them.
How can I update the Bottom Bar?
What am I miss?
Code:
@override
Widget build(BuildContext context) {
return BottomNavigationBar(
onTap: onTabTapped,
type: BottomNavigationBarType.fixed,
// new
currentIndex: _currentIndex,
selectedFontSize: 12,
unselectedFontSize: 12,
elevation: 10,
showSelectedLabels: true,
showUnselectedLabels: true,
items: [
new BottomNavigationBarItem(
icon: Icon(MyFlutterAppIOS.share_100, color: Colors.blueGrey),
title: Text(
allTranslations.text("sharetitle"),
style: TextStyle(
color: Colors.blueGrey,
),
),
),
new BottomNavigationBarItem(
icon: Icon(MyFlutterAppIOS.protect_100, color: Colors.blueGrey),
title: Text(
allTranslations.text("lblprivacypolicy"),
style: TextStyle(
color: Colors.blueGrey,
),
),
),
new BottomNavigationBarItem(
icon: Icon(MyFlutterAppIOS.protect_100, color: Colors.blueGrey),
title: Text(
allTranslations.text("lblterms"),
style: TextStyle(
color: Colors.blueGrey,
),
),
),
new BottomNavigationBarItem(
icon: Icon(MyFlutterAppIOS.info_100, color: Colors.blueGrey),
title: Text(
allTranslations.text("lblinfo"),
style: TextStyle(color: Colors.blueGrey),
),
)
],
);
}
A:
That's because you are not building this widget again by any means. You need to rebuild this widget again once you change the language. You can use any state management library like BLOC or provider to notify the change to this widget once you update the language.
So when you click on any item, it rebuilds, and then you see the changes.
ChangeNotifierProvider(
create: (context) => AppLevelProvider(),
child: BottomNavigationBar(),
),
You can also use an existing provider here and notify the changes. Please read more about state management here
| {
"pile_set_name": "StackExchange"
} | 0.034371 | [
{
"begin": 0,
"end": 54,
"score": 0.024312383
},
{
"begin": 54,
"end": 121,
"score": 0.032708637
},
{
"begin": 121,
"end": 222,
"score": 0.017216396
},
{
"begin": 222,
"end": 255,
"score": 0.013675365
},
{
"begin": 255,
"end": 272,
"score": 0.017479863
},
{
"begin": 272,
"end": 278,
"score": 0.020041527
},
{
"begin": 278,
"end": 288,
"score": 0.025743034
},
{
"begin": 288,
"end": 325,
"score": 0.026521085
},
{
"begin": 325,
"end": 354,
"score": 0.03980133
},
{
"begin": 354,
"end": 2165,
"score": 0.033373136
}
] |
Cougar dating website reviews
With the help of 100% free sugar momma dating sites reviews, everyone can find the most suitable dating site #1 sudy cougar. We review cougarcom to see how it stacks up against other top cougar dating sites we will discover if this site is worth your time or if it's a scam. Join the only 100% free cougar dating site: cougaredcom it's the site that helps cougars and younger men meet online meet older women and younger men and start cougar dating today.
We found that cougardatingsingles is poorly ‘socialized’ in cougar dating app: 018%: cougar dating website: 005%: get more cougardatingsingles reviews . Cougar dating for older women is the no1 cougar dating app for older - highlight search features to make our member reviews with different browser . This detailed review explains and shows how cheatingcougarscom is a scam camouflaged as a dating site cougarscomsays dating sitewhen dating reviews.
Modern dating site the dating site is the easiest way to start chat to youthful and good looking people sign up for free and you will see it. If you are looking for relationship or just meeting new people, then this site is just for you, register and start dating. Olderwomendatingcom review olderwomendatingcom belongs to the top tier of websites in the cougar dating segment it is a website exclusively for singles that are looking to commence another inning in the field of dating. Where amazing dating happens seeking cougar dating sitewe are engaged in perfect match for younger men and single cougar women dating single cougar women, rich cougar women and charming younger men.
Compare the best online dating sites and services using expert ratings and consumer reviews in the official consumeraffairs buyers guide. Visit our site to find out more or read users reviews best cougar dating website - we are more than just a dating site, we will find compatible matches for you. Cougar-dating-websitesno1reviews has the lowest google pagerank and bad cougar-dating-websitesno1reviewscom is a suspicious domain with no visitor reviews.
Cougar dating website reviews
If you are looking for relationship or just meeting new people, then this site is just for you, register and start dating cougar dating site reviews - if you . Confessions of a cougar: the divorcee who loves dating much younger men just like melanie sykes sally joined a dating website for cougar women . Founded in 2006, cougarlifecom is one of the most well-known age gap dating sites cougarlife was founded in 2006, making it one of the most long standing and well-known cougar-related dating sites having been the subject of a lot of attention in the press, it has a good reputation and a solid .
Zdnet's breaking news, analysis, and research keeps business technology professionals in touch with the latest it trends, issues and events. Like most older women dating websites in the cougar dating written short reviews of the site show how users have been able to get the most out of the site and . Having spent quite some time on cougar hangout, our experts are perfectly equipped to offer you this in-depth, serious and unbiased review of the popular site.
Cougared review: we tested cougared to find out if it’s legit or a scam cougaredcom is a cold sore on the cougar dating website community. Reviews of the best sugar momma dating websites, which can help younger men choose the right cougar dating site to find a sugar momma online. Check out our date a cougar website review and find out what our online dating experts liked and what they were not so crazy about. We are more than just a dating site, we will find compatible matches for you visit our site to find out more or read users reviews. | {
"pile_set_name": "Pile-CC"
} | 0.040307 | [
{
"begin": 0,
"end": 30,
"score": 0.03023292
},
{
"begin": 30,
"end": 156,
"score": 0.01752811
},
{
"begin": 156,
"end": 306,
"score": 0.09113732
},
{
"begin": 306,
"end": 487,
"score": 0.05005726
},
{
"begin": 487,
"end": 641,
"score": 0.023209834
},
{
"begin": 641,
"end": 790,
"score": 0.031390753
},
{
"begin": 790,
"end": 939,
"score": 0.06905413
},
{
"begin": 939,
"end": 1082,
"score": 0.04034326
},
{
"begin": 1082,
"end": 1205,
"score": 0.026164718
},
{
"begin": 1205,
"end": 3721,
"score": 0.023328098
}
] |
Q:
Bucket of Staging files after deploying an app engine
After deploying a google app engine, at least 4 buckets are created in the google cloud storage:
[project-id].appspot.com
staging.[project-id].appspot.com
artifacts.[project-id].appspot.com
vm-containers.[project-id].appspot.com
What are they, and will they incur storage cost? Can they be safely deleted?
A:
They are not mandatory for a GAE app - one has to explicitly enable GCS for a GAE app for some of these to be created.
At least a while back only the 1st 2 were created by default (for a standard environment python app) when GCS was enabled and they are by default empty.
It is possible that the others are created by default as well these days, I'm not sure. But they could also be created by and used for something specific you're doing in/for your app - only you can tell that.
You can check what's in them via the Storage menu in the developer console. That might give a hint as for their usage. For my apps which have such buckets created - they're empty.
From Default Google Cloud Storage bucket:
Applications can use a Default Google Cloud Storage bucket, which has
free quota and doesn't require billing to be enabled for the app. You
create this free default bucket in the Google Cloud Platform Console
App Engine settings page for your project.
The free quota is 5 GB, so as long as you don't reach that you're OK.
Now there is a matter of one bucket mentioned in the docs vs the multiple ones actually seen - debatable, I'm not sure what to suggest.
In short - I'd check the content of these directories. If they're not empty I'd check the estimated costs for any indication that the free 5 GB quota might not be applicable for them. If that's the case I'd investigate the actual usage and decide if to delete something or not.
Otherwise I'd just leave them be.
A:
Staging buckets are described in the App Engine's documentation when Setting Up Google Cloud Storage.
I am quoting relevant information here for future viewers:
Note: When you create a default bucket, you also get a staging bucket
with the same name except that staging. is prepended to it. You can
use this staging bucket for temporary files used for staging and test
purposes; it also has a 5 GB limit, but it is automatically emptied on
a weekly basis.
So in essence, when you create either an app Engine Standard or Flexible, you get these two buckets. You can delete the buckets (I deleted the staging one) and I was able to recover it by running gcloud beta app repair.
| {
"pile_set_name": "StackExchange"
} | 0.025506 | [
{
"begin": 0,
"end": 58,
"score": 0.027203763
},
{
"begin": 58,
"end": 156,
"score": 0.0070092585
},
{
"begin": 156,
"end": 182,
"score": 0.02426282
},
{
"begin": 182,
"end": 215,
"score": 0.028103465
},
{
"begin": 215,
"end": 250,
"score": 0.031103265
},
{
"begin": 250,
"end": 289,
"score": 0.022948178
},
{
"begin": 289,
"end": 339,
"score": 0.004860007
},
{
"begin": 339,
"end": 367,
"score": 0.012460614
},
{
"begin": 367,
"end": 372,
"score": 0.016036918
},
{
"begin": 372,
"end": 2548,
"score": 0.018875126
}
] |
I left
the Veterinary Hospital while she was still on the table. Two
technicians were stroking and comforting her while the Doctor
calculated the appropriate amount of drug to use. Her big round eyes
followed me, eyes that seemed out of place on a dog – a sea
creature’s eyes.
I had
picked her up after an emergency call came into our shelter late
Saturday.
A girl
had found a dog running loose on the street. She had called the dog
and discovered wounds on the dog’s left side. She comforted the dog,
called the SPCA’s answering machine and left a message. According to
the girl, a few minutes later, a man walking on the far side of the
street caught the dog’s attention. The dog’s behaviour indicated to
the girl that the dog knew this man. She asked the man if this was
his dog.
“Ya.”
He said.
“Do you
know that your dog is hurt?” she asked, noticing the man’s eyes
appeared blurry, and he was unsteady on his feet. The smell of
alcohol was sharp. His upper lip crusted with blood, dried and dark
– like the blood on the dog’s shoulder. He staggered backward
jostling the pack on his back, causing its contents to shift and
make noise.
Both
the girl and the dog noticed.
“What’s
in the pack?” She asked.
The man
smiled and took the pack off his back. He unzipped the top. The
heads of three tiny puppies emerged, from below, two more heads with
shining black little eyes wiggled into view. The five pups were
barely old enough to have their eyes open. Their little ears were
still flat to their skulls. Their black and tan fur stood up soft
and fuzzy. Their mother, the bleeding dog, pushed her way to the
backpack and shoved her head into the middle of her litter and gave
them all a cursory lick.
The
girl asked the man “What happened to the dog? Why is she
bleeding?”
“My
wife stabbed her. Then she punched me, then she took off.”
His
explanation astounded her. She was not a mother herself, but
instincts of nurturing took over and she unconsciously laid claim to
the bag of puppies. Over the course of the next few minutes, she
talked the man into leaving the puppies with the mother dog. The man
wanted to keep one of the pups as his own, even though the puppies
were only about14 days old. The girl convinced him that this was not
the best idea, “Because the babies need their mother,” she
argued.
The man
pointed to a distant apartment building and told the girl that he
would be back after he went to see his mother in apartment #
103.
This
gave the girl the break she needed. After the man was out of sight,
she once again called our machine, took the number for emergency
dispatch and called for our assistance.
I found
her there, the dog lying with her head in the girls lap, a small
knot of people around them blocking the entrance to the rundown
apartment building. The dog’s eyes were huge, not quite bulging, but
bigger than normal, maybe an illusion resulting from the skeletal
shape of her emaciated body. The amount of blood visible on the
girl’s hands and clothes was alarming. The dog was in shock, her
gums were pale and her breathing was shallow and rapid. She was
alert though…and hungry. When I offered her some kibble, a
collective “Ahhh” went up from the crowd of people - she sprang to
her feet looking for more food, urgently sniffing the ground.
She had
been lying on her injured side and the matted hair and blood became
visible. She limped toward my van; for the moment forgetting about
her pups, pursuing the much-needed food that I was using to leading
her. I did not want to use a rope because I could not tell where all
the wounds were. I carefully lifted her into the van and slid the
door closed. I collected the pups and hurried to the animal
hospital.
Initially, we could not tell how serious her injuries were. I
waited while the Vet shaved the area around a stab wound that was
visible on her right side. It turned out to be a flesh wound. The
knife appeared to have glanced off her ribs and exited, doing damage
to her skin only and not penetrating into her abdomen.
The dog
laid very still, needing only minimal restraint. It seemed as if she
knew she needed help, and she was grateful to receive it.
In
total, she had five stab wounds. Two to her ribcage, one to her
cheek and the deepest, most injurious was to her right shoulder. The
knife had penetrated the muscle, cutting deeply, luckily missing any
major arteries or veins. The Veterinarian decided it would be best
if the dogs remained in his care for the night.
As we
transferred the puppies into a kennel, we discovered that each pup
had had a rubber band tied to its tail. This method of tail docking
is heart wrenching, often times resulting in pain and suffering
from: infection, gangrene or spinal abscesses resulting in paralysis
and ultimately death. Fortunately the pups were infection free.
I left
the building that night wondering about the human
experience.
What
type of person could do such a thing?
What
kind of demons wage war behind their eyes – battles that no one else
can see? Do they want help? Can they be helped?
That
was yesterday.
Today I
sit here writing this. I have more questions than ever. I wonder
about the monsters among us, and the angels that teach
us.
The Vet
turned “Momma” loose today. She touched all the workers in the
clinic with her big eyes and heart so full of trust
I
loaded her in my van, and took her to the shelter. I could not bring
myself to unload her there, she does not deserve to be thrown into a
situation like that: the terrifying smells, the concrete, sounds and
threats of the other dogs, the risk of infection and disease. I left
her in the van, loaded a big crate and brought her home to
recuperate by the fire. I believed that she would acclimate to the
hustle and bustle of my four kids and four dogs easier than the
foreign environment of the Shelter.
As my
investigation progressed, I learned that the police had been to the
house for an assault complaint. The officer reported that no one had
been “assaulted”, but noted that the woman had killed the dog, in
front of the children, and put it in a garbage can. The report makes
no mention of the police seeing the body – unfortunately, it is not
“illegal” to kill your dog. “How” you kill, your dog can be
“Illegal” and charges are pending in this case.
The
curious part of this affair is the dog herself.
Her
behavior, trust and personality all tell a far different story than
her wounds do.
A dog
that has suffered repeated abuse tends to demonstrate symptoms
similar to abused human children, including: fear of being struck,
fear of fast movements, short attention spans, distrust – visible in
dogs by tense muscles, rapid assessments of its surroundings
-plotting exit routes, tucked tail indicating fear, sensitivity to
loud noises. The list could go on for pages.
“Momma”
behaves much like any other, normal “un-abused” dog.
Actually, in some ways she acts like a dog that has lived a
pampered and spoiled life. She will steal food from the garbage,
jump up on you when she is happy to see you, she will force your
attention by pushing you with her nose or her paw. Of course, her
malnourished body indicates this is not true.
Before
bringing her home, I left her with a bowl of food in the van. When I
returned to check on her, I was reminded of the final scenes of Ol’
Yeller…I slid the door open and faced a snarling set of teeth,
accompanied by a growl that could have loosened the bowels of
Siefried and Roy. ”Momma” was not going to let me or anyone else,
near her food.
Initially, I thought she was growling at a pup that had
crawled near her front leg. It was incredible. She held a long growl
and snarl, staring hard at the pup. I watched and was amazed to see
the body language play out between the two. The puppy, not big
enough to walk properly, lay parallel with its mother. It lie
motionless listening to the growl; then, quite purposely and
dramatically, it turned its head away from his mother. At that
instant Momma stopped growling…until she spotted me watching her…she
growled and snarled threateningly…YIKES! I averted my gaze without
moving, much as the little pup had. Momma stopped growling. I sensed
that I was not in danger, if I played by her rules. There was no
adrenalin rush, no hairs raising on the back of my neck…This Momma
dog was talking an ancient language, shared between social species,
irrespective of predator or prey status. She was saying “This is my
food” and at the same time “I need you.”…but making it clear that
her food was more important to her than I was.
A new
worker to the shelter came past the van just as the puppy turned its
head back toward his mother. Momma instantly took up her Ol’ Yeller,
act again. The worker became somewhat frantic at the whole
situation.
“Gary,
you’re crazy. Close the door and let me get out of here.” She
said.
I tried
to explain to her the value of this situation -as a learning
opportunity for her. To see how this starving little mother,
underfed for so long, was now - in her mind - happy, relatively
safe, was determined to keep what she perceived as hers (very
convincing she was too!). How under normal circumstances she would
be deemed “food aggressive”, how she could be seen as “dangerous”.
How, at the same time her “aggression” - determinedly focused on
survival, was controlled and purposeful. Her behaviour in the vet
clinic while injured, demonstrated her trust and love of us human
creatures, her submissiveness was apparent by the lack of force
needed to hold her down to inspect her painful wounds.
Yet,
her use of “language”, her ability to communicate is so strong,
clear and concise as to be painfully moving for those who care to
listen. Where others see danger and threat, I see eloquence and
hope.
Momma
is at home with me now. Her affinity to my children was instant.
I could
almost see her remembering her human children -the ones that had
seen their mother stab the family’s dog.
I had a
flash of her, huddled in a dark room, tiny hands and arms clutching
her neck for security, or trying to comfort her. While outside the
room, a war of anger and abuse raged on between the drunken
“grown-ups” of the house: Angry shouts, thrown articles, screams,
slamming doors, the back of her neck growing damp with the tears of
the children.
Even
with her “outburst” I couldn’t leave her at the shelter. She was not
a monster, in spite of what my coworker thought. She was not
“dangerous”, she had been in danger. She needed to feel whole again.
Not, institutionalized with a litter of babies in a concrete cell.
She was predictable, I knew I could deal with it…easier than I could
deal with myself if I would have left her at the shelter.
The
greatest disservice to animals, perpetrated time and again, is the
ability of us humans to ease our conscience in keeping animals out
of our hearts by calling them “unpredictable”.
When
you take the time to learn the language, every species of animal is
predictable, with the exception of only one … | {
"pile_set_name": "Pile-CC"
} | 0.43093 | [
{
"begin": 0,
"end": 7,
"score": 0.01905298
},
{
"begin": 7,
"end": 65,
"score": 0.019898089
},
{
"begin": 65,
"end": 131,
"score": 0.087689385
},
{
"begin": 131,
"end": 181,
"score": 0.049906947
},
{
"begin": 181,
"end": 200,
"score": 0.07543987
},
{
"begin": 200,
"end": 260,
"score": 0.25399986
},
{
"begin": 260,
"end": 277,
"score": 0.10202842
},
{
"begin": 277,
"end": 284,
"score": 0.0151133975
},
{
"begin": 284,
"end": 349,
"score": 0.10109484
},
{
"begin": 349,
"end": 11012,
"score": 0.45778763
}
] |
Chicago Transit Authority representatives (from left) Jeffrey Wilson, senior manager of government and community relations; Steve Hands, senior project manager of strategic planning; and Mike McLaughlin, vice president of planning and federal affairs. View Full Caption Provided/CTA
LAKEVIEW — With its very own opposition coalition and a decent chunk of media attention, the proposed Brown Line bypass at the Belmont station has been ruffling feathers since it was announced last spring.
Officials from the Chicago Transit Authority are hopeful that a June 3 public hearing will give them a chance to fully explain the need for the flyover, answer questions and get feedback from neighbors. Ahead of that, DNAinfo Chicago sat down with CTA representatives to ask six common questions about the project.
- Do we really need the Belmont flyover? Why isn't updating the track structure enough to fix capacity issues?
- Hang on. I thought this was all about shortening the wait time.
- Why bother sending my feedback to the CTA? Is it going to make any difference?
- How is the CTA going to pay for all this?
- I don't want a big ugly structure marring my neighborhood. What's the CTA plan for redevelopment?
- Affected property owners are tired of waiting around to see if their homes will be sold. What's going on with the acquisition process?
1. Do we really need the Belmont flyover? Why isn't updating the track structure enough to fix capacity issues?
CTA says: Overcrowding on trains, especially during rush hours, can leave passengers stranded on platforms or suffering delays as Red and Purple line trains wait for the northbound Brown Line trains to cross over at the Belmont station. The CTA has been adding more trains to the lines during peak hours, but "we're at capacity now. Even a one-percent growth (in ridership) would put us way past capacity," said Steve Hands, CTA senior project manager of strategic planning. After considering 20 alternatives, the bypass was the project that would disrupt the neighborhood the least while still increasing capacity.
To get federal funding for the Red-Purple Modernization project, it must increase capacity by at least 10 percent. While plans to update and replace track lines and structures will help to a smaller degree, "you have to relieve the bottleneck before you can deal with the other constraints that are limiting capacity," Hands said. Adding the flyover as a fifth track at the junction will increase capacity by more than 30 percent, the CTA estimates.
2. Hang on. I thought this was all about shortening the wait time.
CTA says: The wait times are a symptom of the capacity constraint. Eliminating that constraint allows the CTA to run more trains with fewer delays, boosting hourly ridership by 7,200 per hour on the three lines. As for the fluctuating average wait times, it's difficult to measure how the Brown Line crossing over slows trains as far down as Armitage or Clark and Division stations. "It's like saying you're at a traffic light and it's backed up — how long is the wait time? When do you start the line for the light? Traffic doesn't start at the intersection," said Mike McLaughlin, vice president of planning and federal affairs.
Last year, the CTA hit its highest annual ridership since it began recording the data in 1961. "Ridership is expanding nationwide, and the trend has been continuing for 20 years," McLaughlin said. To measure ridership growth, the CTA made projections based on the number of train riders, loading flow and Red and Purple line boardings. Even the most conservative estimate showed an "urgent need" for increased services, Hands said.
3. Why bother sending my feedback to the CTA? Is it going to make any difference?
CTA says: Plans are only between 10 and 30 percent complete at this stage, which means there's plenty of time for residents to voice their opinions. Aside from the flyover itself, the CTA said its willing to consider a range of alternatives to lessen the impact on the neighborhood. "Absolutely, 100 percent, there is wiggle room," said Jeffrey Wilson, senior manager of government and community relations.
Wilson also promised the agency would meet with any neighborhood organization looking for more information, now that the environment assessment has been released. Prior to construction, the CTA also wants to know what side effects are of most concern to neighbors. "We think we have all the answers with regards to mitigation, and then you go to a community meeting, and they say, 'Well we don't care about that, we're more worried about our neighborhood being overrun with rats,'" Wilson said.
In renderings released Tuesday, the CTA depicts what the Brown Line flyover would look like at the Belmont station. [Provided/CTA]
4. How is the CTA going to pay for all this?
CTA says: The agency is hoping to get federal funding for about half of the $1.9 billion Red-Purple Modernization project. The money would come from the Core Capacity program that began in 2012. To get the money, the project must improve capacity by at least 10 percent, which is why the flyover is vital to the project. "If you just do [track improvements] from Lawrence to Bryn Mawr, you're talking over $1 billion of just local funds. The local share actually increases if you don't do the bypass," McLaughlin said. The remainder will be state and city, and despite Gov. Bruce Rauner's proposed transportation cuts "there's talk about a capital funding bill, so we're hopeful."
5. I don't want a big ugly structure marring my neighborhood (just look at the Wilton Avenue lot). What's the CTA's plans for redevelopment this time around?
CTA says: One of the first steps following the environmental assessment is starting work on a Neighborhood Redevelopment Plan. Along with the office of Ald. Tom Tunney (44th), chambers of commerce and neighbors, the CTA will create a plan to determine what sort of redevelopment will fit with the neighborhood and establish recommendations from the community. The plan will be completed before construction begins.
Ideally, the CTA would like the areas surrounding the Belmont station to see the same redevelopment progress as neighborhoods near the Brown Line expansion project. The agency pulled the Wilton Avenue lot from listings when the Great Recession struck in 2009. About 100 feet of the plot is currently on the market, but by the time the economy had recovered, the CTA pegged the land for the Red Purple Modernization. "Did we, in good faith, put those properties on the market when the project was done? Yes, we did. But we didn't have a crystal ball, and we didn't know there would be a recession. Nothing was moving," Wilson said. The Neighborhood Redevelopment Plan is designed, in part, to remedy that problem this time around.
Redevelopment would be vital to keep the Lakeview neighborhood flourishing. This rendering depicts the northwest view from Clark Street and Buckingham Place with and without redevelopment. [CTA]
6. Affected property owners are tired of waiting around to see if their homes will be sold. What's going on with the acquisition process?
CTA says: Property owners ready to sell can begin the early acquisition process, which some have already done. The CTA has appointed a real estate consultant who is at the owners' disposal any time and hand-delivered multiple letters about the project's progress. Neighbors still have at least two years before construction begins, meaning renting properties can also be a viable option for those ready to move on, said spokeswoman Tammy Chase.
For more neighborhood news, listen to DNAinfo Radio here: | {
"pile_set_name": "OpenWebText2"
} | 0.026307 | [
{
"begin": 0,
"end": 252,
"score": 0.001021105
},
{
"begin": 252,
"end": 283,
"score": 0.033430904
},
{
"begin": 283,
"end": 490,
"score": 0.004501176
},
{
"begin": 490,
"end": 694,
"score": 0.009586177
},
{
"begin": 694,
"end": 806,
"score": 0.02732577
},
{
"begin": 806,
"end": 848,
"score": 0.014601684
},
{
"begin": 848,
"end": 918,
"score": 0.013404821
},
{
"begin": 918,
"end": 930,
"score": 0.1360619
},
{
"begin": 930,
"end": 985,
"score": 0.02391375
},
{
"begin": 985,
"end": 7657,
"score": 0.033028528
}
] |
How Apple plans to sell a $10,000 Watch - JumpCrisscross
http://www.ft.com/intl/cms/s/0/11e6d64e-dfc2-11e4-a06a-00144feab7de.html?siteedition=intl
======
elmar
You have to subscribe to read the article.
| {
"pile_set_name": "HackerNews"
} | 0.039496 | [
{
"begin": 0,
"end": 59,
"score": 0.094979
},
{
"begin": 59,
"end": 132,
"score": 0.06393497
},
{
"begin": 132,
"end": 149,
"score": 0.059789103
},
{
"begin": 149,
"end": 157,
"score": 0.0215741
},
{
"begin": 157,
"end": 163,
"score": 0.027074188
},
{
"begin": 163,
"end": 207,
"score": 0.013032468
}
] |
2007 Humboldt State Lumberjacks football team
The 2007 Humboldt State Lumberjacks football team represented Humboldt State University during the 2007 NCAA Division II football season. Humboldt State competed as an independent in 2007, as the Great Northwest Athletic Conference (GNAC) did not sponsor football for the 2006 and 2007 seasons.
The 2007 Lumberjacks were led by head coach Doug Adkins in his eighth and last year at the helm. They played home games at the Redwood Bowl in Arcata, California. Humboldt State finished the season with a record of two wins and eight losses (2–8). The Lumberjacks were outscored by their opponents 141–321 for the 2007 season.
In the eight years of Doug Adkins tenure as head coach, the Lumberjacks compiled an overall record of 33–51, (). They had only one winning season (2006) during those eight years.
Schedule
Team players in the NFL
No Humboldt State players were selected in the 2008 NFL Draft.
Notes
References
Category:Humboldt State Lumberjacks football seasons
Humboldt State Lumberjacks f | {
"pile_set_name": "Wikipedia (en)"
} | 0.008715 | [
{
"begin": 0,
"end": 46,
"score": 0.027099047
},
{
"begin": 46,
"end": 185,
"score": 0.0006119907
},
{
"begin": 185,
"end": 342,
"score": 0.0007194198
},
{
"begin": 342,
"end": 440,
"score": 0.0018918627
},
{
"begin": 440,
"end": 506,
"score": 0.0018509352
},
{
"begin": 506,
"end": 591,
"score": 0.00007277535
},
{
"begin": 591,
"end": 670,
"score": 0.0017635662
},
{
"begin": 670,
"end": 784,
"score": 0.0002767712
},
{
"begin": 784,
"end": 850,
"score": 0.0029111006
},
{
"begin": 850,
"end": 1049,
"score": 0.03056244
}
] |
The “permanent closure” notice posted at Let it Bean. Thanks to Mark and many others for sending pictures to us
We’ve been surprised before by the coffee shack’s business resiliency but this just might really be the end. Yet another hole — this one, teensy, tiny — is about to be torn in Broadway’s business fabric. Let it Bean is set to close this coming weekend.
Owner Candace Smith confirmed the closure plans with CHS earlier this month. It has been no secret. Smith posted a note to let customers know what was coming.
Smith tells CHS the 80-square-foot coffee stand in the teriyaki restaurant parking lot at Broadway and Harrison, despite its grandmothered usage allowing it to operate as a drive-thru, just doesn’t generate enough business to cover costs. “I’m closing because the rent and labor costs are too high for where our sales are,” she writes. “Coffee is a hard product to charge more for.”
Let it Bean transformed itself out of the former TNT Espresso in late 2016. Smith acquired the business from Rock Sielaff who, in turn, acquired it from longtime TNT operator Monica Anaya. Sielaff’s tour of duty lasted a year. Anaya, or Momo, and her crew were behind the counter for much longer. We visited in 2015 to say goodbye to the shack only to see it spring back to life with new ownership.
That could again be the case with the latest closure. But Smith said any new business will be starting from scratch — all of the espresso gear is being pulled out when Let it Bean closes, she said.
As for Smith, she tells CHS she will get back to focus on her career as a massage therapist.
The closure will join a ripple of businesses exiting Broadway. The month started with an abrupt shuttering of the second-coming of Charlie’s on Broadway. A bankruptcy meltdown of the chain means Broadway’s American Apparel will close any day now. And on Friday, Dilettante announced it was exiting its birth neighborhood at the end of the month with the closure of its cafe and martini bar at Broadway and Mercer.
Let it Bean is scheduled to remain open through Sunday, January 29th. | {
"pile_set_name": "OpenWebText2"
} | 0.025644 | [
{
"begin": 0,
"end": 54,
"score": 0.015672047
},
{
"begin": 54,
"end": 112,
"score": 0.014711726
},
{
"begin": 112,
"end": 222,
"score": 0.0224311
},
{
"begin": 222,
"end": 317,
"score": 0.045915417
},
{
"begin": 317,
"end": 366,
"score": 0.028489921
},
{
"begin": 366,
"end": 444,
"score": 0.043471284
},
{
"begin": 444,
"end": 467,
"score": 0.020559441
},
{
"begin": 467,
"end": 526,
"score": 0.008520862
},
{
"begin": 526,
"end": 766,
"score": 0.0033759766
},
{
"begin": 766,
"end": 2088,
"score": 0.012498905
}
] |
"COME DRINK WITH ME" "Make way!" "Make way!" "What do you want?" "Here's a letter for Master Chang." " A letter?" "Wait here" "Master!" " What's up?" "Someone ahead has stopped us." "He has a petition, Sir" "Letter:" "Release our leader or else!" "Master wants to talk to you" "Clear the way" "Out of the sedan chair, please" "Speak!" "Where is our leader?" "What will the authorities do to him?" "Speak!" "He will be executed." " Stop beating him!" "Write an appeal to the Governor" "If he releases our master we will let you go" "I'm here to enforce the law." "As for the Governor, he is this area's supreme commander" "He won't be intimidated by bandits." "You may do anything you like" "The Governor is your father." "He won't sacrifice his son to safeguard his position" "My dad will uphold the law at any cost" "He won't swap hostages with thieves" "Free me and surrender." "I'll overlook what you've done" "Stop bragging, you'll die soon" "No.3, write to his father" "Tell him we're holding his son hostage for an exchange within five days" "If he refuses, I'll kill his son and burn down his quarters" "What if he dispatches troops?" "With his son at our mercy we have nothing to fear - as long as Golden Swallow doesn't come." " Who is this Golden Swallow?" "He almost routed us last time" "I'd like to meet him" "Boy!" "What will you have?" "Tiger-bone wine" "Have you any?" " Sorry, we don't" "White wine and two dishes then." " Yes, sir" "Tough trip, wasn't it?" " We've trailed him all the way." " What's the big idea!" "Looking for trouble?" "That's my order!" "What's wrong with you?" "What now?" "Boy, where's my wine?" "Coming!" "Thank you, sir." " What do you do for a living?" "I work for the Governor." " So you're an official" "What official business are you on now?" " I want to speak with you" "So you know me." " You are Smiling Tiger Tsu Kan" "You're quite observant" "You wrote this letter, didn't you?" " Perhaps" "But there are many details better discussed face-to-face" "Go ahead" "We have news of Master Chang." " That's why I'm here" "Well, then" "Our leader is in your prison" "Tell the Governor to commute his death sentence and release him" "And we'll return Master Chang right away" "What if the Governor refuses?" " We'll have to kill the hostage" "You'll find yourselves in even deeper trouble" "Will you release our leader or not?" "He committed crimes and must face justice" "Remember our hostage is the Governor's own son" "He is my own brother" "Think it over then" "What shall we do?" "Damn it, kill him!" "Get me a jug of wine" "Catch!" "You got drunk without wine" "Your turn to treat me" "Sure, drinks are on me" "Catch it!" "Let me get you a bench" "Watch this" "I'll handle the bill." " I'll chip in" "Return my money" "Here you are" "Golden Swallow." " Golden Swallow is the name." "I toast you" "You're a sensible man." " No more games." "Let's talk business" "All right" "I'm here to free Chang and arrest you" "I'll ask the Governor to be lenient." " Did you hear that?" "You think you can capture us?" " So you won't cooperate" "First you must meet our second in command" "I will when I'm good and ready to." " You'll go right now" "My hand's caught in the door!" "Open up!" "Open the door!" "What do you want?" "Some wine." " Come back later" "I need a drink now." " Get out!" "Stay out of our way" "Boy, how much do I owe?" "What's going on?" " Never mind, get out!" "I can't, it's raining" "I'll pay this man's bill" "He won't be leaving here today" "May I know your name?" " Keep out of my way!" "Quite a narrow escape." " Did you hear me!" "You won't get away with this!" "Out of my way!" "Innkeeper, give me a clean room." "I'm staying" "You've paid too much, Sir." " Buy me two horses with the change" "I came here alone but won't leave alone." "Find me a guide" "Well, I lost the first round but the fight is not over" "Smiling Tiger, go back and reconsider" "I want an answer in five days" "I repeat:" "Release our leader in five days or we'll kill the hostage" "Show him no mercy!" " Shut up!" "That kid thinks he's smart." " Wait till he comes here" "He'll learn the hard way" "Eat something" "You shouldn't keep your hostage here." "I'll be in big trouble if anything happens" "Keep quiet!" " All right!" "But I am in charge of this temple" "All of you staying here like this..." " It's not like we broke in!" "I know, I know but Abbot Liao Kung isn't here" "When will he return?" "He went to search for someone said he'll be back in a few days" "Please don't start any trouble before he returns" "If the Governor..." "Stop!" "It's only a junior monk" "Are you all right?" "Stop the bleeding, please" "No use, he's been hit by a poisonous needle" "Please give me the antidote" "Give him the antidote" "You're too ruthless!" "I've already warned you to keep your disciples away" "Next time it will be your blood that's spilled" "No. 5" "A lot can happen in one night" "Take two men to the inn and bring the kid back." " Yes" "Who's there?" "Me" "What do you want?" " I can't sleep." "Let's have a drink" "You're drunk!" " No I'm not." " Go away!" "My roof leaks." "Mind if I spend the night here?" "You!" "K" "I'll go!" "I saw how much you like to fight" "Don't touch me" "If you do, I'll die here" "Get out then." " I will, I will" "Get out" "I was just trying to be friendly" "Return my things to me" "Coming!" "It's empty!" "Retreat" "This green bamboo staff - long and slender" "With it I travel from North to South" "Rain or Shine" "I live by begging" "I live by begging" "A beggar is fed by all" "This world is full of sin" "Neither fame nor wealth tempts me" "Nothing material will ever last" "Nothing cheers me like wine" "Oh wonderful wine, wonderful wine" "Be it sherry or gin" "I'm delighted all the same" "The world is full of sorrow" "There's a good heart - in my pot belly" "I'm proud of my pot belly" "Pardon me if I sing badly" "All that singing and no one will even buy you a drink" "I won't drink today for a change" "Are there any meat buns available?" " You certainly enjoy eating" "I want some, too." " You won't get any" "We simply must have meat buns" "What's your order, drunkard?" " Meat with bread" "Don't pay any attention to him." "Let's have corn bread and pickles" "And some white wine." " Forget the wine" "You may have it on credit." " No, not till the old debt is settled" "Such a good boy" "Sir" "You've helped me a great deal." "I want to thank you personally" "Whatever for?" " Is this enough?" "I think so" "If you didn't warn me last night they'd have killed me" "I was drunk then" "Shall we have some noodles?" "May I ask your name?" "They call me Drunken Cat" "Yeah, let's have noodles" "Have you any money?" "Of course" "Will you buy me a drink?" " Certainly" "I won't take it for nothing." "I'll sing for you in return" "Don't pay me if you don't enjoy it" "Sit down, please" "The mountain bandits are on the rampage" "They've kidnapped the Inspector-General" "They pillage by day and hide at night" "This message is worth some reward" "Neither gold nor silver tempts me" "But the bandits must be eliminated" "The Governor's office is panic-stricken" "A lone swallow flies over the hill" "A lone swallow flies over the hill" "We're famished." " Be quiet!" "Thank this young master." " Thank you, young master" "Young master, please take a seat over there" "You wait, I'll order" "Since you already know my problem I'd like your advice" "What are you talking about?" " Sir" "This will pay off my debt." "Put the rest on account" "You've really met a benefactor today." " I sure have" "There's no news of Master Chang." "I'm worried" "You must know where they've hidden him" "You're long winded for a young man" " I'm only asking for advice" "I need some myself" "A dot and a stroke" "A slant and two crosses" "The sun and the moon" "What do they mean?" "A dot and a stroke" "A slant and two crosses" "The sun and the moon" "What do they mean?" "Sign:" "Temple" "Thank you" "Miss, be extra careful inside the temple" "Why?" " Nothing, nothing" "What's the use of praying to a clay Buddha - when a living god like me can grant your every wish?" "Don't run away" "You and I can have our own private banquet" "We don't know each other!" "Behave yourself!" "Do you know me, Golden Swallow?" "Good." "You're the ones I've been looking for" "You were lucky last time" "I lost the first round." "We'll see if you escape now" "Good." "You're all here" "This is sacred Buddhist ground." "How dare you spill blood here!" "I've got a mission to accomplish" "Don't be too hard on us" "Why don't we share a drink and have a nice chat" "Stay out of it or you'll suffer the same fate as them" "You just want to arrest those bandits." "What about your brother's life?" "Who are you?" "With such beautiful eyes as yours I'm surprised you don't recognize me" "You're Jade-face Tiger!" "Let's have that chat" "You're a devil in disguise" "But if you're willing to repent return with me" "With me pleading for you, the law will treat you with lenience" "She overrates her charm and thinks I can be leniently treated" "I want to thank you for everything" "Don't forget your brother is in my hands" "Sooner or later, you'll be in my hands as well" "Never!" "Being on the verge of death has left you confused" "Are you spoiling for a fight?" "Let's have it out" "Out of my way!" "I'll undress and fight you" "Don't let her escape" "She can't run too far." "Search the woods and bring her back" "That way!" "What are you doing out of bed?" "You..." "What's the matter?" "Why did you try to trap me?" "You're not calling me Sir?" "Perhaps I deserve it" "Why should I respect you?" "You're a hopeless drunk" "I told you so." "I told you to observe more and fight less - but you insisted on showing off your martial arts" "Learned your lesson now?" "You know what's wrong with you?" "You get mad too easily" "Let me examine your wound" "I don't need your help" "That poisonous dart should have made her collapse" "We've scoured the woods." " Useless idiots!" "Your whole gang beaten by a little girl" "When word gets out you'll be laughing stocks" "If I get hold of her, I'll..." "Shut up!" "No.5!" "Go after her and don't return empty-handed" "It looks bad" "Miss Chang, there's no other way I must suck the poison out" "It's all right now" "Drunken Cat, aren't you the lucky one!" "Please make yourselves at home." " Thanks" "You're a bunch of cowards!" " Wait a minute!" "We only came to see how you were" "How can you think so poorly of us!" "You'll have to carry her back" "What are you up to?" "Don't talk so much!" " She hasn't recovered yet, sir." "Please let her go" "Who asked you?" "Get out of the way!" "Still here?" "Take a rest inside" "You must be tired of living" "Why do you want to see me for?" "I have some corpses for you." " Corpses?" "Special delivery" "Who ordered you to bring them here?" " How about a drink?" " Speak up!" "It's a hot day and I pushed them for miles." " Hell!" "Where did you find the bodies?" " In the woods" "How did you know to deliver them here?" "I knew your No.5." " What else did you see in the woods?" "I saw a girl fighting with No.5" "A girl?" "What else did you see?" "Talk!" "I was passing through the woods when I saw her fighting these men" "She really let them have it and sent those guys to heaven" "I was so scared" "She did it herself?" "She had me deliver the bodies to you." "Said you'd tip me five taels of silver." "I never thought..." "Wait" "Here's five taels of silver." "What else did she say?" "Thanks." "She said..." "She said for you not to worry the poison wasn't strong" "What else?" " That her name's Swallow" "She also spoke of a business deal." "Told me to bring back any message you have for her" "Let's go." "You can remove the corpses yourself" "Drunken Cat, take me to her" "She said she wouldn't meet me till tomorrow morning" "Where?" " She said she'd come find me" "No.3!" "Keep an eye on him and clear those beggars out" "I still haven't eaten!" " Shut up!" "Get him some food and fetch the monk for the funeral" "The girl mentioned a business deal." "What's it all about?" "Stick to drinking and mind your own business." " Sure, sure" "Abbot Liao Kung is here, sir" "Second Master wants you to greet him" "Keep an eye on him." "Don't let him out of your sight." " I understand" "Don't move!" "It's hot." "Can I borrow a fan?" "I said don't move!" "I won't" "Who's this Abbot?" "Who?" " Nobody you know." "Don't ask" "Where was No. 5 wounded?" "The heart." "Doesn't look like a dagger wound" "Open the coffin and examine the corpses" "No, she didn't kill him." " Who did?" "Did the beggar carry a bamboo pole with a gourd fixed to its top?" " Yes" "To think he was right under my nose the whole time!" "You know him?" " He's the one I've been looking for" "Why would an Abbot look for a beggar?" "We had the same kung fu master" "Had I known, I wouldn't have been so rude" "He didn't look like a kung fu ace" "He's truly a great master" "But compared to me he still has a way to go" "What's his name?" " Fan Ta Pei" "But because he drinks morning to night" "Some call him the drunken hero" "He killed all five" "So he's one of us and it's all a misunderstanding?" " Misunderstanding?" "When our teacher died - he stole his treasured heirloom the bamboo pole - and started a new sect" "The elders have ordered me to kill this treacherous infidel - and recover the pole" "Where is he?" " In the rear hall" "Seize him" "What happened?" "Where's the beggar?" "He escaped" "He won't get far!" "Sir, you should have something to eat" "You've been uneasy since you returned" "Something's definitely bothering you" "You've helped me so much" "I won't trouble you further" "You can't do it alone" "Come here" "Lift up that stone" "No, the big one" "Throw it at my head" "Come on, strike me!" "Do it again" "Fling it higher this time" "Are you all right?" "My days are numbered" "What did you tell Jade-face Tiger?" "My classmate Liao Kung is the Abbot" "Will you entreat him to save my brother?" "Even though we had the same teacher we are enemies" "He wanted to inherit this bamboo pole so he covertly assassinated our teacher" "The next time we meet only one of us will live" "How come he joined Jade-face Tiger?" "Our teacher had no idea how evil he really was" "The Abbot and Jade-Face Tiger are birds of a feather" "Why don't we arrest him and eliminate this scourge?" "His kung fu skills are unsurpassed" "I doubt if I can beat him" "He once did me a good turn" "Ten years ago, I was a homeless orphan" "He was the one who convinced our teacher to raise me" "Because of this kindness I've always tried to avoid him" "I see" "You need not concern with my troubles" "I'll manage on my own" "Miss Chang!" "Wait" "There's one way out" "Bring the Governor's prisoner back and save your brother" "I can't without permission." "My father would never agree" "Fortunately, he's still unaware of what's going on here" "Just escort the prisoner back." "I'll have him arrested again" "If I deliver your leader will you free Master Chang?" "Sir, since you're willing to help us we'll do as you say." " Good!" "Where shall we make the exchange?" " At the southern slope" "What time?" " Noon tomorrow" "It's a deal" "This green bamboo staff... long and slender" "With it two travel from north to south" "Rain or shine" "Liao Kung!" "You still recognize me." " We two were fated to meet again someday" "Still a beggar after all these years?" "Better an honest beggar than a devil in monk's clothing" "I've worked hard to wear this robe" "Dyed red with our teacher's blood" "Where's his bamboo pole?" "It's a sacred relic." "You'll never touch it" "As the eldest disciple it should be mine" "I am obliged to uphold the honor of our sect" "Disciples must obey our ancient code" "Anyone who discredits it must be punished no matter what his rank" "Even an abbot?" "Teacher swore that the day you saw the bamboo pole would be the day you die" "So you mean to take my life" "You must pay for teacher's death" "Well, if he so ordered." "what are you waiting for?" "I can't forget you once saved me" "Aren't you the noble one!" "Enough of your idle chatter... give me the bamboo pole and I'll let you live" "Otherwise, it's a fight to the finish" "I saved your life and I can destroy your life" "Grant me three days' grace." " So you can run away?" "I promised to escort Master Chang home" "You're on the verge of death yet still middle in others affairs" "I'm asking for a favor." "Stay out of this affair" "Your affairs are of no concern to me in three days we can settle our score" "You can't escape, anyway." "Three days won't matter" "You may go" "What's the meaning of this?" "You have the reputation of a man of integrity" "How can you break your word?" "I made a promise, there was no alternative" "Please try to understand" "Old beggar, I know what you're up to" "We won't say anything this time" "But if your paths cross again you better stay out of our way" "I won't forget your benevolence." "I'll never interfere in your affairs again" "Till we meet again." "Let's go" "Thank you!" "Protect the sedan chair" "Are you all right, brother?" " Yes" "Tell them if they don't stop I'll kill you" "Hold it!" "Take some men and go on ahead." "I'll have a look up there." " Good!" "Let's trap them all" "Go up the other side" "Be careful, don't hurt the master" "We searched east and west, and can't find them!" "Wait here." "I'll find them." " All right" "Attack!" "Stop the prisoner's wagon" "Let's go!" "Get after them!" "Pursue them!" "Where's the prisoner's wagon?" " It's headed for the hills" "Out of the way!" "Abbot, grab her!" " Run away while you can!" "Right!" "Get out of the way!" "Don't be so ruthless, young fellow." "Who are you?" "Never mind, where's that beggar?" "You... you're Abbot Liao Kung?" "Sir, please keep out of this" "I'll send you to heaven" "Sir, take the men out of here" "Have you thought about what I said?" " Yes, I have" "You are hereby expelled from the Bamboo sect and exiled." "I promise not to seek revenge" "You're the one who will be destroyed" "Get out of here!" "My life or death is in your hands" "Do as you please" "Don't try any of your tricks!" "I am not beholden to you and I'll never again feel obligated to you" "Let me tell you something." "Go and hide in the remotest hills" "Adopt a new name and start a fresh" "If I run into you again my sword will not be so sympathetic" "I must leave you now" "That's what you think!" "Thank you, master." | {
"pile_set_name": "OpenSubtitles"
} | 0.427149 | [
{
"begin": 0,
"end": 33,
"score": 0.106588155
},
{
"begin": 33,
"end": 45,
"score": 0.012571139
},
{
"begin": 45,
"end": 65,
"score": 0.014566476
},
{
"begin": 65,
"end": 101,
"score": 0.011601456
},
{
"begin": 101,
"end": 114,
"score": 0.0070782704
},
{
"begin": 114,
"end": 136,
"score": 0.028103452
},
{
"begin": 136,
"end": 150,
"score": 0.013262627
},
{
"begin": 150,
"end": 182,
"score": 0.016327271
},
{
"begin": 182,
"end": 247,
"score": 0.038377374
},
{
"begin": 247,
"end": 18535,
"score": 0.46331182
}
] |
'use stirct';
module.exports = require('./async').forEach;
| {
"pile_set_name": "Github"
} | 0.021631 | [
{
"begin": 0,
"end": 14,
"score": 0.020823723
},
{
"begin": 14,
"end": 60,
"score": 0.017613
}
] |
One Good Turn (novel)
One Good Turn (subtitled A Jolly Murder Mystery) is a 2006 crime novel by Kate Atkinson set in Edinburgh during the Festival. “People queuing for a lunchtime show witness a brutal road rage incident - an incident that changes the lives of everyone involved.” It is the second novel to feature former private investigator Jackson Brodie and is set two years after the earlier Case Histories.
Plot
Principal characters
Paul Bradley, lost in central Edinburgh, is driving a rented Peugeot when he brakes suddenly to avoid hitting a pedestrian who stepped out in front of his car
Terence Smith a.k.a. 'Honda Man,' driving a Honda Civic, collides with the rear of the Peugeot and attacks the driver with a baseball bat, knocking Bradley unconscious
Martin Canning, a successful author of crime novels (set in the 1940s and featuring a heroine called Nina Riley), witnesses the incident and throws his laptop bag at the attacker to stop him killing the prostrate driver. Honda Man does not respond but gets in his car and drives off
Jackson Brodie, divorced ex policeman and now retired private detective, is visiting Edinburgh with his girlfriend Julia (featured in the first novel), who is appearing in a Fringe production. He witnesses the attack and leaves his card with Martin.
Gloria Hatter, wife of millionaire builder Graham Hatter, under investigation for fraud
Tatiana, a Russian call-girl seeing Graham Hatter.
Louise Munroe, a Detective Sergeant and single parent, who is called to Cramond to investigate a drowned woman and becomes attracted to Jackson Brodie
Reception
Reviews were mostly positive. Justine Jordan of The Guardian enjoyed the novel, saying
'the finale, when the cast are manoeuvred together for a violent climax and the inevitable expostulations of "You? Here? Why?", does not slot the pieces together as neatly as the Russian dolls which stud the novel might suggest. But the pleasure of One Good Turn lies in the ride, in Atkinson's wry, unvanquished characters, her swooping, savvy, sarcastic prose and authorial joie de vivre'.
Liesl Schillinger of the New York Times said, "Kate Atkinson shows again, in her inimitable bleakly funny way, how much easier it is to explain a death than to solve a life." In "no hurry to judge," Atkinson "acts like a hidden camera, dispassionately recording her characters’ deeds and misdeeds so they can indict themselves. Indeed, she has woven the technological accessories of the last 10 years into the fabric of her story, threading them through it like an invisible current into which the lives of all her characters are plugged."
But Amanda Craig writing in The Independent says
'Unlike its dark and dazzling predecessor, One Good Turn is neither a good literary novel nor a satisfying detective story, though it had the potential to have been both'.
This novel was “shortlisted for the British Book Awards Crime Thriller of the Year.”
Adaptations
The novel was adapted for television with two other of Atkinson's Brodie series for the BBC in 2011 with the overall title Case Histories. This novel was covered as the second two parts of the series.
Cast
Jason Isaacs as Jackson Brodie
Simon Weir as Paul Bradley
Brian McCardie as Terence Smith
Adam Godley as Martin Canning
Marion Bailey as Gloria Hatter
Amanda Abbington as Louise Monroe
References
External links
ReviewsOfBooks.com with links to several reviews
Interview with Kate Atkinson about One Good Turn on NPR
Liesl Schillinger, "Unusual Suspects", The New York Times, 29 October 2006
Category:Novels by Kate Atkinson
Category:2006 British novels
Category:Novels set in Edinburgh
Category:British mystery novels
Category:Sequel novels
Category:Novels about writers
Category:British crime novels
Category:Doubleday (publisher) books | {
"pile_set_name": "Wikipedia (en)"
} | 0.079205 | [
{
"begin": 0,
"end": 22,
"score": 0.011525394
},
{
"begin": 22,
"end": 149,
"score": 0.013394081
},
{
"begin": 149,
"end": 282,
"score": 0.023931377
},
{
"begin": 282,
"end": 414,
"score": 0.0031996903
},
{
"begin": 414,
"end": 420,
"score": 0.015037679
},
{
"begin": 420,
"end": 442,
"score": 0.0143773835
},
{
"begin": 442,
"end": 601,
"score": 0.048614074
},
{
"begin": 601,
"end": 622,
"score": 0.042045392
},
{
"begin": 622,
"end": 769,
"score": 0.18131526
},
{
"begin": 769,
"end": 3796,
"score": 0.103079684
}
] |
I grew up playing in hardcore punk bands and fighting skinheads, and the political mantra for that scene was “Anarchy and Peace.” It seems incredibly naïve in retrospect, but being into punk rock was actually great training for becoming a rational, libertarian, paleoconservative adult. Here are 10 reasons why:
1. IF YOU”RE NOT AN ANARCHIST WHEN YOU”RE YOUNG, YOU HAVE NO HEART; IF YOU”RE NOT A LIBERTARIAN WHEN YOU”RE OLD, YOU HAVE NO BRAIN
The anarcho-punk movement scoffed at the whole duopoly of right and left. We realized at a very young age that the whole idea of a political spectrum is a trick to get you to participate in their dippy game. We didn’t want anything to do with any government institution, including cops. If skinheads beat up one of us, we”d round up a posse and go get them (and often get beaten up again, but that wasn’t the point). In contrast, today’s kids ask the government for everything from paying their student loans to finding them more black friends.
2. YOU HAVE INTIMATE KNOWLEDGE OF WHAT DRUGS CAN DO
Conservatives sound painfully square when they talk about drugs. They seem to think pot is the same as acid is the same as heroin. That’s like saying getting a blowjob is the same as having your mind blown is the same as blowing your head off. After a prolonged and decadent adolescence, I can focus all my hatred of drugs where it matters”on heroin. Pot is a silly distraction that’s about as dangerous as bourbon. LSD gave me the ability to think light years outside the box and to this day, whenever I get hiccups I simply tell my brain, “I don”t want these anymore” and it makes them stop. But heroin is a whispering devil that hides your fear of death under a blanket while it smothers you to death with a soft pillow. Losing a dozen or so friends to it wasn”t a blast, but I can speak with authority about which drugs are bad and why.
“We learned the hard way that you can”t reason with zealots.”
3. A D.I.Y. YOUTH LEADS TO AN ENTREPRENEURIAL ADULTHOOD
The term “Do It Yourself” was hardcore punk’s balls-out code of honor. If you wanted a band to come to your town, you”d write them a letter, agree on a portion of the door, and plaster the city with flyers. It didn”t matter if you were only a teenager. You made it happen no matter what. At 17 I got a call from some bureaucrat at the public transit authority who said they were prosecuting me for vandalism because my show’s flyer was pasted to a bus-stop shelter. I knew they had no proof it was me so instead of confessing, I explained that the bands on the flyer have many devout followers and it must have been one of them. This is a great lesson for a future entrepreneur.
4. DRESSING LIKE A GOOF LEADS TO NOT DRESSING LIKE AN ASSHOLE
Punk and hardcore were totally against fascism except when it came to getting dressed. Your laces had to be perfectly parallel on your 14-hole Dr. Martens (no other brand allowed). Your pants had to be hemmed short, not rolled up, and decorating your leather jacket took about a month of gut-wrenching arts and crafts. It’s gauche to dress punk as an old man, but you will never catch an ex-punk wearing pajamas at the airport or baring his toes in a bar. Our suits are tailored, our pants fit perfectly, and after the age of 30, our T-shirts don”t say a damn thing.
6. SLAM DANCING TEACHES CAMARADERIE
Before it was called moshing it was called slam dancing, and the most important rule was: If anyone falls, you have to lean down and scoop him up. Preventing your buddy from getting trampled builds character and leads to adults who would never consider throwing anyone under the bus. | {
"pile_set_name": "OpenWebText2"
} | 0.634073 | [
{
"begin": 0,
"end": 135,
"score": 0.04926045
},
{
"begin": 135,
"end": 296,
"score": 0.03070541
},
{
"begin": 296,
"end": 321,
"score": 0.032869704
},
{
"begin": 321,
"end": 461,
"score": 0.56859344
},
{
"begin": 461,
"end": 536,
"score": 0.06824466
},
{
"begin": 536,
"end": 670,
"score": 0.02316576
},
{
"begin": 670,
"end": 749,
"score": 0.028402532
},
{
"begin": 749,
"end": 881,
"score": 0.24661896
},
{
"begin": 881,
"end": 1009,
"score": 0.04835883
},
{
"begin": 1009,
"end": 3682,
"score": 0.5645792
}
] |
End of preview. Expand
in Dataset Viewer.
No dataset card yet
- Downloads last month
- 4