domain
stringclasses
17 values
text
stringlengths
1.02k
326k
word_count
int64
512
512
YouTubeCommons
result in later times it was uninhabited since 1872 the école française defends French School of Athens has been excavating the island the complex of buildings of which compares with those of Delphi and Olympia in 1990 UNESCO inscribed Delos on the world heritage list citing it as the exceptionally extensive and rich archaeological site which conveys the image of a great cosmopolitan Mediterranean port I am Lucas writes that there were DeLoss mysteries similar to the LFC near mysteries topic landmarks the small sacred lake in its circular bowl now intentionally left drive by the islands caretakers to suppress disease spreading bacteria is a topographical feature that determined the placement of later features the Minoan fountain was a rectangular public well hewn in the rock with a central column it formalized the sacred spring in its present sixth century BCE form reconstructed in 166 BCE according to an inscription tightly laid courses of masonry formed the walls water can still be reached by a flight of steps that fill one side there are several market squares the Hellenistic Agora of the competence by the sacred harbor retains the postholes for market awnings in its stone paving to powerful italic merchant guilds dedicated statues and columns there the temple of the delians dedicated to apollo is a classic example of the Doric order beside the temple once stood a colossal Kairos of Apollo only parts of which remain extant dating to the 6th century BCE parts of the upper torso and pelvis remain in situ a hand is kept at the local museum and a foot in the British Museum the terrace of the Lions also dedicated to Apollo by the people of Naxos shortly before 600 BCE it originally had nine to twelve squatting snarling marble Guardian Lions along the sacred way one is inserted over the main gate to the Venetian Arsenal the Lions create a monumental Avenue comparable to Egyptian avenues of sphinxes there is a Greek Sphinx in the DeLoss Museum today only seven of the original lines remain the Oikos of the Maxine's house of the knack scenes first quarter of 6th century BCE a long hall with one central ionic colonnade a West porch tree style in auntie's and an east marble prosthesis of the middle of the 6th century BCE the meeting hall of the Poseidon iasts of Beirut housed an association of merchants warehouse men ship owners and Incubus during the early years of Roman hegemony late 2nd century BCE - their protective triad a Baal poseidon Astarte Aphrodite and Ashman a Scorpios they added Roma the platform of the stove ad on dedicated to Dionysus bares a statue of the god of wine and the life force on either side of the platform a pillar supports a colossal phallus the symbol of Dionysus the southern pillar which is decorated with relief scenes from the Dionysiac circle was erected around 300 BCE to celebrate a winning theatrical performance the statue of Dionysus was originally flanked by those of two actors impersonating pappas Illinois conserved
512
StackExchange
I don't think the issue is really arising from there but it can't hurt to show: $requestBody = Get-Content $req -Raw | ConvertFrom-Json "destination": "SharePointSiteURL" $destination = $requestBody.destination $secpasswd = ConvertTo-SecureString $env:pass -AsPlainText -Force $mycreds = New-Object System.Management.Automation.PSCredential ($env:user, $secpasswd) Connect-PnPOnline -url $destination -AppID $env:user -AppSecret $env:pass Apply-PnPProvisioningTemplate -path "D:\home\site\wwwroot\template.xml" Out-File -Encoding Ascii -FilePath $res -inputObject "Done $destination" I should note that this is actually my first time using Azure Functions so forgive me if the solution here is quite simple! Any help would be appreciated. A: Referring to MSDN Thread https://social.msdn.microsoft.com/Forums/en-US/53629265-47da-41f7-b780-35eaba999f73/applying-pnp-provisioning-template-with-azure-functionspowershell?forum=AzureFunctions This post work https://www.sharepointfire.com/2018/04/sharepoint-online-pnp-site-provisioning-using-flow-and-azure-function/ Q: I am doing stratifiedsplit and getting out of bound error, i dont unerstand why I am trying to do stratified shuffle split and i am new to this from sklearn import preprocessing from sklearn import cross_validation from sklearn.tree import DecisionTreeClassifier from sklearn.metrics import accuracy_score from sklearn.metrics import precision_score from sklearn.metrics import recall_score from sklearn.model_selection import StratifiedShuffleSplit data = featureFormat(my_dataset, features_list, sort_keys = True) labels, features = targetFeatureSplit(data) scaler = preprocessing.MinMaxScaler() features = scaler.fit_transform(features) split = StratifiedShuffleSplit(n_splits=3, test_size=0.2, random_state=42) print len(features), len(labels) for train_index,test_index in split.split(features, labels): print("TRAIN:", train_index, "TEST:", test_index) features_train,features_test = features_train[train_index],features_test[test_index] labels_train,labels_test = labels_train[train_index],labels_test[test_index] This is the error i am getting Even though the limit is upto 143 its showing 100 A: You are using the wrong variable name. These lines : features_train,features_test = features_train[train_index],features_test[test_index] labels_train,labels_test = labels_train[train_index],labels_test[test_index] Should be : features_train,features_test = features[train_index],features[test_index] labels_train,labels_test = labels[train_index],labels[test_index] You are basically using the variables before they are even declared. You need to do slicing n the original features and labels. Q: extract and log a value from JSON data using jquery I have searched and searched but being unsure how to phrase my queries I have been unable to achieve what i believe is a simple goal. I have an RSS feed from Deviant Art that is run through Yahoo Pipes this is the pipe" http://pipes.yahoo.com/pipes/pipe.info?_id=63478be58fb00758ded9d5108170f931 the JSON the pipe produces http://pipes.yahoo.com/pipes/pipe.run?_id=63478be58fb00758ded9d5108170f931&_render=json looks like this: {"url":"http:\/\/darksilverflame.deviantart.com","content":"Copyright 2012 *DarkSilverflame","description":null,"title":null},........ What I am trying to achieve is a simple way of parsing the data via jquery(or just JS) and then generating a simple txt list of usernames from the Deviant Art and the links to those users pages. A: You can use : jQuery.parseJSON( json ) Link to jQuery Documentaion parsedObject =jQuery.parseJSON( '{"url":"http:\/\/darksilverflame.deviantart.com","content":"Copyright 2012 *DarkSilverflame","description":null,"title":null}'); or form Chrome (F12 -> Console then test the folowing) a = JSON.parse('{"url":"http:\/\/darksilverflame.deviantart.com","content":"Copyright 2012 *DarkSilverflame","description":null,"title":null}'); I hope that helps. Q: In Stata why is outreg overwriting other files? When I use the outreg command in stata to export to one file and then use it to export to another file, and then go back to add more stuff to the original file, the command is acting as though there is only one file. As you can see in the code below, I have clearly distinguished the two files: (...regression...) outreg using fileA, landscape title(Farm Level by /// Stratum w/Management) starlevels(10 5 1) /// ctitles("Variables","Strat 1 Log Rev") replace (...do some other stuff, export new stuff to new file...) outreg using fileB,stats(b) landscape /// title("Normalized Ricardian Model w/Management Variables"\ /// "Farm Level
512
goodreads
Mr. Cole Danvers!! He really is ever girl's dream and worthy of top book boyfriend status!! This is definitely a book you need to add to your TBRs and try to get to it ASAP!!! I will be keeping Katherine Stevens on my radar from now on and will read anything written by this woman! Amazon US: http://hyperurl.co/GoingDown I read this book because it was compared to work by Steinbeck, Faulkner, and Marilynne Robinson. Obviously, I had to read it. I was not disappointed. The prose is so beautiful. I felt what it was like to live on the orchard, and I knew the characters well. Atmospheric, sad, and lovely. I was sad when I finished this one. So sad...I think I cried most of the way through it. I also felt rage towards those who were so cruel to the native Americans. Oof. Kind of a slog. If I had liked this book one percent less, I would not have finished it. That being said, SOMETHING made me see this 500 page novel to the end. The book opens with two year old Ursula, half-Finnish and half Chinese (this is important) daughter of Annie and Justin, accidentally falling down an abandoned mine shaft. As the hours of her rescue tick by like days, the author delves into various historical epochs to introduce the reader to some of Ursula's ancestors. The issue was that some of these chapters were fascinating, while others were unbearably dull. Also, the chapters that dealt mainly with her parents were super boring. I was way more interested in Justin's mother, Mindy Ji, than in Justin and Annie's romance. From the ancient Chinese alchemist who finally begets a child in old age to the deaf Finnish maid who escapes the witchcraft of her neighbor to the Jesuit missionary whose donated seed flourishes in a virginal daughter of his Chinese convert to the foundling who grows up alongside the future queen of Sweden/Finland... the stories span decades and some are fascinating (I could read a whole book about that foundling) while others are ponderous (the alchemy was not engaging)... I am glad I finished this book, but I don't think I'd recommend it. One review I read said this book was intelligent yet unwieldy, and I think that sums it up perfectly. In the hands of another writer, this could have been my favorite book. However, it was just too ambitious for this particular author, as evidenced by some of the awkward phrasing and typos in my copy. I am still enamored of the cover and portions of this book will stay with me, but overall, I'm sorry to say that it's probably not worth the week it took me to get through it. Cute and funny little romance book. Highly recommended! ** spoiler alert ** I am a complete Harry nut but all the same it's been a couple of years since I last read a Potter book, and I've only read Deathly Hallows a couple of times. Part of it is that there's a sadness to this book other than the
512
ao3
I let him go, I'm sorry I went with him, I'm sorry, I'msorryI'msorryI'msorry. I'm sorry I let this happen, I'm sorry I caused this, I'm sorry I had to be a fucking monster and start this. And still he dug. He dug until he was almost up to his eyes in the packed-in dirt, dug until it was finally deep enough. He climbed mechanically out of the grave, not allowing himself to feel the burn of his cramping muscles, didn't let himself cry again. Not yet. He hauled the wooden, splintery box by one end until it was at the short end of the hole. Then he slowly, slowly pushed until the edge was in the hole, tilted so it was scraping the bottom as he pushed. When the other edge of the box was just barely resting on the top side of the grave, he gave a gentle push forward until it fell completely within the hole. It landed with a solid thump, and a lighter, not-quite-all-there fwap a millisecond later. Sam tried to get the sound to stop ringing in his ears, but it stayed, like a stubborn gnat flying about his face. When finally he could move his arms from their place at his sides again, he picked up the shovel the last time, and began heaping the freshly upturned soil back to where it came from. With the first hollow thud, he gave a great shudder, then heaved another shovelful after the first. “I imagine it escaped your memory,” Catra growled back, “but Scorpia is a Princess too!  And yes, I did originally take her in for her mechanical expertise, _at first_.  But I can tell a fellow outcast when I see one!” As soon as Catra had finished shouting that into Glimmer’s face, a look of shock and pain flashed across her own.  She turned away, her shoulders tense and her fists clenched.  Her tail wrapped tightly against her legs. “…Catra, I,” Glimmer began, but what could she say?  Catra was the enemy.  One of her most hated enemies in fact.  She wasn’t supposed to want to comfort her. “Forget it,” Catra said, wiping her eye.  She turned and began walking down the hallway again.  “Let’s just get out of here.” “…Yeah,” Glimmer agreed.  And in tense silence, they continued their way down the hall. * * * It wasn’t much longer that they came to a sealed door. “Great,” Catra said, running her hand over the door.  “Don’t suppose you can just teleport us past this yet?” “It doesn’t just come back over time,” Glimmer said.  “Besides, I think I know how this works.  You just speak a password and it opens.  Adora showed me one time.” “Oh right,” Catra said, snapping her fingers.  She cleared her throat.  “Ehm, Etheria!” Nothing happened. “Close,” Glimmer said, with a cocky smile.  She held out her hands and proclaimed, “Eternia!” Her voice echoed down the hall, but the door remained shut. “You sure that was it?”  Catra asked, tapping her chin as she examined the door.  Glimmer groaned and
512
ao3
reading the newspaper. He did look up when we entered, giving Mommy a quick kiss before taking me into his lap. “How is my baby this morning?” Daddy asked, nuzzling his nose into my temple. You were content to just babble at your Daddy. “Feeling little?” “Definitely,” Mommy hummed, as he heated up a bottle in the microwave. “She hasn’t been verbal all day, have you aegi?” You giggled and were content to just lean back against your Daddy’s chest. It made you giggle when you felt the vibrations of his chest against your back. When he realized why you were so talkative and giggly, he kept humming and making noises. Once Mommy was done with your bottle, he came over and handed it to Daddy. Daddy made sure to recline you with your head cushioned near his upper arm. You stared up at him with Y/E/C and opened your mouth as the nipple of the bottle came closer. Once it was in your mouth, you were quick to start sucking on the sweet liquid, eyes falling closed instinctively. Your hands curled around his, though not holding anything there, just reveling in the comfort. “Aigoo, she’s so cute!” Mommy commented as he sat down with his plate of fruit, rice, and eggs. Once you were finished with your bottle, Daddy took it away and burped you. You had a bit of spittle, before cuddling close to Daddy once more. “What do you want to do today?” Mommy asked Daddy as he took the dishes off the table. Daddy hummed as he rubbed your back. “She’s awfully little today, Jiminnie,” Daddy mused. “Probably not to the park or anything that would scare her. We should just stay in today.” “Okay, hyung,” Mommy smiled as he washed the dishes and hummed a song. You babbled as Daddy took you into the living room where Taehyung was sleeping on the sofa. “Here baby,” Daddy sat you down on the floor, handing you some soft blocks. You started to smush them, as you watched Daddy go over to Tae. He shook him awake, before sending him off to his room with a small kiss. Mommy came into the room with two steaming cups, handing one to Daddy, before curling into his side. He turned on the cartoon channel and you were entranced for a bit. You liked the bright colors, the catchy tunes, and the characters. After a few episodes of Pororo you turned to look at your Mommy and Daddy. They were absorbed into each other, talking, and sharing kisses. You hurrumphed as you watched them, feeling selfish. You were upset that they weren’t paying you any attention. You turned around, with a pout on your lips and arms crossed. They didn’t notice, to your horror. You felt the angry grow as they were more absorbed in each other than you. You continued to fume quietly, until you got an idea. You crawled over towards them. They still didn’t look up from each other. You wanted to scream and pout. With an angry frown you
512
gmane
below). What incantation do I need? thanks, allan according to the link below http://www.chebucto.ns.ca/~rakerman/trojan-port-table.html Port 1026 is used by MSN Messenger. the two IP checked is Asia Pacific Net and another, neither of which look bad. However I am concerned they want to connect with Kerio GUI [Graphical User Interface]. If the person you converse with uses MSN Messenger they should be connecting with MSN, not Kerio. I would leave the Port blocked, but you do not need to log this anymore. Blocked is fine. if you develop functionality problems with MSN post back. Je vous ai ecri le tout en anglais, mais si vous le voulez d'avoir, je vous peut expliquer en francais. david williams HI all. Trying to install one of our machines over here and everytime I go into the xwindows setup during the install everything works until it tries to restart with the adjusted settings, says it failed, would I like to try again, I tell it yes, it flashes the X with the spotted background, goes blue and has some error message that asks me yes or no about something so fast I can't read it, then it turns around and goes back to the X with the spotted background then just dies there and I can't get out of it. Is there a way to set a default Xwindows setup so that it continues the install anyways, so then I can come back later and fix it? I'll fight with Xwindows once It's fully installed, just getting there has proven a challenge. Here's the system specs. Athlon XP 1700 Epox 8H7A+ with Raid (No raid configured however) 512m DDR 2100 Plextor CDr 12/10/32 Panasonic 16x DVD player 3x40gig IBM HD's GeForce2 Pro 64m DDR 3com Anywhere Nic It's a workstation we're building for one of the execs but I can't seem to get it past the setup part where we configure Xfree86 and Xwindows. Any suggestions is welcome. Also, as a refresher (since I haven't done an Xwindows install in years) where's the setup file for configuring Xwindows just so I know I got the right one? Thanks. - The Raiden Knows "Remember amateurs built the ark -- professionals built the Titanic." - Unknown Hi. If you go to http://www.manning.com/getpage.html?project=grayson&filename=Source.html you can download the example code from John E. Grayson's "Python and Tkinter Programming". In the examples for chapter 8, you will find code for making "about..." boxes using Pmw or "Python MegaWidgets" (http://pmw.sourceforge.net/). Pmw provides a ready-made AboutDialog class, so, if you're not required to roll your own, you can just use theirs. Hope this was helpful, Sean Ross Hi, I'm new to openstreetmap and merkaartor. I looked a little bit into the code and discovered that you don't use Qt4 Graphics View framework. Is there a specific reason for not using this? I guess it would improve performance quite a bit if, for instance, drawDownloadArea() were not called in each paintEvent() call. cheers, Daniel Hello, Suppose that in a decode(IoSession session, IoBuffer in, ProtocolDecoderOutput out) call the IoBuffer is read and some objects are written
512
reddit
of binoculars lol *Living in an apartment and hearing the neighbors going at it 2-3 times a day..ok for the first few times but after a while you start to think "oh for f**k sake go and watch tv or some thing can't you". I had a broker, who claimed to have sold a 100 properties in 1 year, located in Vail, Colorado. Apparently, she was a big shot realtor there. So I did a little research. I saw no internet footprint about her being a Realtor in CO, which is strange, but hey maybe she had a fat book full of referrals. Then I looked at her Linkedin account. There no links with other Realtors, loan officers or title people from Colorado. But, she managed to get hundreds of connections in the new state she was living in. It was all very suspicious. I left soon after. Okay so I just went and got 20ft of 1/4" clear vinyl tubing to make myself an adapter. I would've bought WAY less but that's the small length I could get. Now All I had to do when I got home was take the glass tube that comes with the mflb and put it in one end of my hose, then I put the other end in my Downstem, Luckily for me i didn't need anything else but some ductape. You might not be so lucky and might need some clay or something to seal the gap. Anywho, I'll cut whats left into half foot or so increments until its gone. Will mail anywhere in the USA and Ill ship abroad if it isn't to expensive. Just PM me. Happy Holidays Fellow Ents! I do not like TypeORM. It makes writing Javascript more like writing Java, which I think is a step backwards for JS community as JS is a very different language from Java, and the type systems available in JS are much better than that of Java (Flow, Typescript). Don't want to sound like I am selling something, but I have developed and open-sourced an ORM, tabel, http://tabel.fractaltech.in, which is a datamapper ORM, and focuses on providing the smallest, and the most efficient abstraction possible to work with relational databases in node.js. I am using it at my own startup, I know of at least one other startup using, and it had around 350 downloads in the last week. Right now supporting only PostgreSQL because 1) That's what I use 2) lack of a proper "returning" clause makes it a bit cumbersome to support other databases. I understand it takes a lot of work to push an open-source project to critical mass. And no one wants yet another ORM. At the very least, I hope that tabel catches a bigger ORM author's attention, and the new ideas that are there in tabel get implemented in some other ORM, and hopefully, one that uses typescript, like TypeORM itself :/ hi r/hometheater! long time lurker, first time poster here. I bought my first house this year and finally have a chance to upgrade my TV to
512
ao3
simply. “I’m going to Himawari Cafe to work on my book,” she informs the pair. “By the way, the reason I slept late is because I was writing,” “Oh, that explains why you didn’t get home at the normal time,” Hina responds, filing through the cash in her wallet, then putting it on the counter in front of Aya, who takes it and puts it in the cash register. When Aya starts taking out coins to give Hina her change, Hina says, “Keep the change. I don’t like coins.” “Good morning to you, Aya, by the way,” Sayo gives Aya a small, rare smile. “Working again?” Aya disregards the blush on her cheeks as she replies. “Yeah,” she answers. “I think I’ll take the afternoon off, though.” She adds as an afterthought. Sayo nods. “You should, you deserve it.” she agrees. “I’m meeting up with Eve and Maya later today at the boardwalk! I bet they wouldn’t mind if you came too!” Hina exclaims excitedly, taking the flowers off of the counter. “We were going to invite Chisato, but she had plans to meet up with Kanon and Kaoru after she gets off from work.” Aya nods. “I’ll come then. What time?” she asks. Hina shrugs. “We didn’t really specify a time. Probably one-thirty?” she guesses. “Yeah, I’ll show up,” she decides. Hina smiles again at this, and Aya can’t help but to give a small grin as well. “I’ll be going then, Aya!” Hina says. Sayo, standing behind her, is still smiling indiscreetly. “I’ll see you later!” Aya waves in response. The two Hikawa twins exit the flower shop, leaving Aya alone behind the cash register. Aya helps a few more people that morning- two people looking for bouquets for their sweethearts, another looking for flowers to give someone after a performance, among a few other customers- but business is slow. That’s why, when the clock chimes twelve o’clock, she’s more than ready to close up for the day. She almost leaves from behind the counter to flip the sign in front, but before she can, a delicate blonde-haired girl wearing a collared yellow shirt enters the shop. Aya sighs lightly as the girl begins to look around at the colorful blossoms around her without saying anything to Aya. “Hi, Chisato,” Aya greets. Chisato looks up from studying a pot of light pink daisies. “Hello, Aya.” she says in response. “How are you?” “Bored.” Aya states flatly. Chisato chuckles and comes over to the counter, leaning on it slightly. “I just came in to see how you’re doing.” she says. “You didn’t come in this morning to get your muffin like you always do, I was a little bit worried,” “I overslept,” Aya explains. “I was going to, but I didn’t have time,” Chisato raises an eyebrow. “You haven’t eaten all day, have you?” she questions. Aya shakes her head. It hadn’t even occurred to her that she hadn’t eaten yet that day, but now that she’s realized it, she notices how hungry she is. Chisato stands up straight. “Aya, you
512
realnews
They also differ on nuclear power. Coakley noted how her office two years ago fought “aggressively” against relicensing of the Pilgrim Nuclear Power Station in Plymouth. “It’s a safety issue,” she said. “A little bit of risk can create a huge problem.” In a telephone interview, Coakley said the real difference between the candidates is in who would make environmental issues a priority. She pointed out that she has been endorsed by the Sierra Club and Massachusetts Clean Water Action. Baker has not been endorsed by any environmental groups. “After he questioned in 2010 whether climate change is a real thing and now changed his position, it’s not clear at all that it’s a priority for him or that he really believes that it’s a man-made problem,” she said. “That’s a huge, huge difference about where we would start on prioritizing solutions to this problem.” Her environmental priorities, she said, would be to ensure the state meets its 2020 and 2050 goals of cutting carbon emissions, which scientists say are heating up the planet at a dangerous rate. She would seek energy audits for every home and business over the next eight years; invest more in public transportation and alternative vehicle fuels; promote clean-energy use; increase funding of environmental agencies; and set a goal of making all new state buildings energy self-sufficient. Some environmental advocates have raised concerns about Coakley’s record. They say she filed a lawsuit last year against the federal government after regulators limited the catch of cod by nearly 80 percent. She argued those cuts were based on “flawed science,” even though repeated assessments have shown that the cod population has plummeted to historic lows in the Gulf of Maine. Advertisement They also said she focused too much on the costs of Cape Wind as a ratepayer advocate for state residents, rather than potential long-term benefits of the wind farm. “She took a short-sighted view of pricing in her testimony [to the Department of Public Utilities], which was very disappointing,” said Jack Clarke, director of public policy at Mass Audubon. Baker said he supported the Nuclear Regulatory Commission’s decision on Pilgrim, which let it operate another 20 years. He said he recognizes the safety concerns but sees it as part of a “balanced approach” to the state’s energy needs. Baker questioned Coakley’s ability to plan effectively for the future, citing how the state’s energy prices have risen sharply in recent years, and said he hoped to follow the example of previous Republican governors he has served. “I was proud to be part of the Weld and Cellucci administrations, which had a strong record of protecting water supplies, conserving land, promoting recycling, and fighting pollution,” he said. He blamed Coakley for supporting the closure of the state’s coal power plants without securing other deals that would keep energy costs down. Last month, the state’s largest utilities said electricity prices would increase for the average homeowner in the state by 37 percent over last winter. “I worry about the state’s ability to plan,” he said. But he provided few specific plans
512
StackExchange
value'); }; var result = ko.computed({ read: function () { makeAjax(); return holder(); }, write: function (newValue) { //not relevant }, deferEvaluation: true }); I would like to be able to subscribe to result without causing the read function to execute. result.subscribe(function(val){ console.log(val); }); However this call to subscribe causes read to execute. Is there any way to subscribe without causing it to execute? A: What version of Knockout are you using? I can't re-create this behavior. Here is a snippet I ran on JSbin with KO 3.0 and running it does not cause the result read function to evaluate until you call getResult() var vm = function() { var holder = ko.observable(); var makeAjax = function() { holder('new value'); }; var result = ko.computed({ read: function() { console.log('excuting read') makeAjax(); return holder(); }, write: function(newValue) { console.log('setting holder to ' + newValue) //not relevant holder(newValue) }, deferEvaluation: true }); result.subscribe(function(val) { console.log(val); }); this.getResult = function() { return result; } this.setResult = function(val) { result(val); } } var VM = new vm(); ko.applyBindings(VM); VM.setResult("test"); Q: Modifying a particular line in a text file from the command-line I have a text file "text.txt", it contains a bunch of lines with text (or empty lines). I am trying to form a single sed/awk command-line command that will let me comment out any like (by adding a "#" to the start of whatever line number I specify). For example, the text file might look like: A B C D and I want to issue a command that specifies line number 2, so it will look like: A #B C D If it's possible to specify a range of lines, so multiple lines could be modified, like "2-4" or 2,3,4" that would help, too. I've found conflicting (to me) information about the -n and -e options in sed, and just can't quite get it to work as I hoped. I'm using Kubuntu 18.04. Any suggestions? Thanks. I've been stringing concepts together that I found in other questions, like having to keep the line, but add "#" to the start of it, so I've got "s/(.*)/#$1/" as the back substitution. I thought it might work as: sed '2,4!s/(.)/#$1/' text.txt However, I get s/.: Event not found. This seemed to have some good parts to it, however, it didn't quite work as I hoped, and it only deals with one line, not all lines cat text.txt | sed -n '2{s/(.)/#$1/;p}' A: This should be a task for awk. In this solution creating a variable names lines which will having line numbers in it whichever you want to change(comma separated), just mention any number of line numbers with comma separated values in it and that should do the trick here. Tested it successfully on https://ideone.com/ajnNSU awk -v lines="2,3,4" ' BEGIN{ num=split(lines,array,",") for(i=1;i<=num;i++){ linechange[array[i]] } } FNR in linechange{ $0="#" $0 } 1 ' Input_file A: A simple sed substitute will also work given the line number, e.g. sed -i '2s/^/# /' file The above will edit file in place commenting line 2 inserting "# " at the beginning
512
gmane
fail to interpret the encoding, or will interpret it wrongly due to problems at the sender's end. We are, once again, creating a whole new risk for ourselves. I foresee a time when the registry contains a mixture of UTF-8 and non-UTF-8 representations. There is also the matter of the implicit contract which RFC 4646 created about the registry: that it would be in ASCII with NCRs. Are we *convinced* that we have *no choice* but to break this contract? The current system may not produce pretty results, but it *works*. Let's not break it gratuitously. Yours emphatically, I am trying to find a way to handle a situation where I am looking for a change in a particular file, but the filename is old and has since been renamed. Processing the commit list internally (using init_revisions, setup_revisions, get_revision), I can easily find the rename of the file, but that is usually the start of the walk for that file (as it was just deleted for the rename). I do not know how to re-walk the commits list armed with the new file name. I tried rerunning the same commands as above (init_revisions, setup_revisions, get_revision) but that commit list is empty for some reason (I assume the UNINTERESTING flag is never un-set??). For example, if I have a backported patch for the upstream kernel in say the arch/i386 directory. I want to check to see if it is upstream. I wouldn't be able to do that because arch/i386 was renamed to arch/x86. Unless of course the patch matches identically upstream (in which case git-cherry works fine), but that isn't always the case (usually it is a combination of a couple of patches). Anyone have some thoughts if this is possible? Cheers, Don Well, I see that the documentation on plone.org is done using cmfbacktalk. I downloaded today the CVS version from collective and it almost work. I see navigation icons but I cannot navigate from a chapter to another (in the readme it stated tha navigation doesn't work). There is not any navigation box. I need some kind of navigation. Can anyone explain me how to obtain a cmfbacktalk like the one in plone.org, or at least how th setup a navigation between chapters? Thanks Mirto old news...... LAnug has official recognition from Apple! so lots of things are in the works...... as a sanctioned user group we can take advantage of the discounts and goodies offered to these groups from Apple as well as other vendors. we have acquired the domain: LANUG.ORG so a permanate web site is in the works. we now have a group logo for the site and are working towards getting LAnug T shirts made. i would like to keep everyone informed about the groups meetings, activities, and information. towards that end i am trying to pull together a correct and complete mailing list for the group. if you do not receive this same email from LAnug by tommorrow we do not have your information. if you would like to be included please contact me. take this opportunity
512
realnews
DEA surveillance 24/7? Again, I'm fascinated. Everybody Loves Raymond A few weeks ago, the fabulous Matt Roush was talking to me about how the little moments on Raymond are part of what make this a great show. I agreed just to be polite. But seeing how I wasn't a regular watcher, I didn't really get it. But tonight, I got it. That moment when Ray was heating up an apple pie in the microwave and he, his brother and his father all covered their family jewels was simple, easy and hilarious. I was rolling! With that one gesture, they showed the Barone family bond and how crazy habits are passed from generation to generation. I'm still not going to be watching this every week or anything. But... Kudos. The Answer to My Yasmin Question... No. Apparently, the women who watch this show are more likely to need Allegra and Coffeemate than birth control. Good to know. Two and a Half Men They're already using the Heather Locklear Effect? Oh, no. It's too soon! H to the Izzzle is the go-to sexpot producers hire to spice things up. (For recent examples see: Melrose Place and Spin City). You turn to Mrs. Richie Sambora when your show is hemorrhaging viewers — not just for some guest-starring stunt, funny as it may be. See, this goes back to my point from a few weeks ago that this show's moving too fast. Already they've given Charlie a transsexual ex-girlfriend and a stalker. Now they've used Heather Locklear. What's next — a family trip to Vegas? The Village Preview For the past two weeks they've been killing me with the promos for this, well, seven-and-a-half minute promo. Watch Unbreakable and catch "an unprecedented network TV event." Does it bother anyone else that ABC launched a massive ad campaign to basically promote a commercial for a movie? Sure it's an M. Night Shyamalan movie. But still, it's not Roots or an epic TV miniseries like NBC's 10.5. That said... I made sure I didn't miss tonight's "event." And, having taped it and watched it three times, I am so ripe for the movie-ticket-buying plucking, it's not even funny. I just hope this one doesn't turn out like his last movie. You know, the one with the aliens and the crop circles. I was thoroughly scared for 90 percent of the flick. Then they showed the cheesy stupid alien and it was all she wrote. Over. Done. Yuck. I fear the same could happen with "those we don't speak of." Like, they're going to come out of the woods and be stupid-looking gremlin people I'll laugh and a great horror film will turn instantly into a comedy. By the way, from now on, "those we don't speak of" will officially replace Harry Potter's "he who will not be named" in my vocab. Also, the four rules of The Village will replace the rules of Fight Club. Late Show with David Letterman Oh, it's stupid human trick time again. And I love me some David Letterman during stupid human tricks.
512
gmane
them too, "consciousness" is cosmologically prior to complexity. [[ Equating feeling with consciousness, Peirce can then argue that in the primeval chaos where there was no regularity there was an intensity of consciousness far exceeding what we observe today. This notion of consciousness is so far removed from notions of phenomenal self-models (which you fairly and articulately describe) that I am not sure either illuminates the other. ]] I'm not sure either. I guess i'm trying to make them illuminate each other in the same way that first-person and third-person views can illuminate each other. They lend each other depth somehow, even though the two perspectives remain utterly different. To be a little more specific, in that essay Peirce is talking about "consciousness" from a first-person perspective, so naturally his reference is cosmological. As i said before, what the view from within sees is simply the world, because the semiosis/perception is transparent. It takes an external observer to see the semiosis as such. Which again is why introspection doesn't work, at least not in the way it's usually thought to work. gary F. SAVE your KPC9612’s Boys, the East will RISE AGAIN! The Golden Packet team is toying with the idea of making our annual Appalachian mountain digipeater string from Maine to Georgia permament and making it a 9600 baud network for emergency and ham radio disaster response and play. We already have 3 of the 14 sites with approval for installations… Lets face it, traditional packet networks are dead and although APRS is alive and well, it is specific and only operates at 1200 baud. Although all fully integrated APRS radios work perfectly well at 1200 and 9600 baud, all of the existing APRS network is 1200 because all the digipeaters (not integrated APRS radios) operate at 1200 and the majority of all home APRS stations and IGates use TNC’s that operate at 1200. A huge legacy. Besides, going to 9600 only barely doubles APRS speeds while degrading link reliability. So, since we have already shown for 6 years now, that this long 2000 mile linear chain of mountains and valleys can support a 2000 mile network with only 14 digis, why not establish a long haul 9600 baud Node chain from Maine to Georgia which could be a significant boost to Packet radio emergency operations. The network would not operate as APRS digipeaters but as KAnodes. As we all knew back in the 1990’s link-by-link acknowledgment was vastly superior to end-to-end. We already have three sites in MD, and PA … But we need more than hikers, to get us access to some existing ham radio maintained sites. We do NOT want nodes to branch off down into the plains. These nodes would bog down the network. No, the main backbone would be to support emergency operations with beams that can point up to the mountains to pass traffic. So, we are splashing this onto the APRSSIG to see if people have SITE access and/or have unused 9600 baud KPC-9612’s to step up and lets see what we got. Also
512
goodreads
not recommend this for an advanced pre teen as it does have sexual scenes within it. It is book 1 of a series but if you didn't read anymore of the others you won't miss anything as the story does kind of wrap itself up. (I think the other books are about the main characters brothers.) Great book, great series.. was a bit non plus on the cliffhanger ending. Well.... I won't say it's that great but overall this trilogy ride definitely have some ups and downs. Didn't really expect this kind of ending. Some of you may compare this to Divergent series. Both are similar yet different. If i had to choose, probably Legend series. It would be great if it was adapted into a movie! Sixteen-year-old Vanessa is in a hurry to be out of school and on to real life. Luckily for her her friends are much wiser. an instant must-have when I found it as part of one those scholastic book fairs they used to have when in was in elementary school, I cherished this book greatly as a kiddo. not at all the hearts n flowers sort of unicorns, this one is a very well written coming of age tale where the prince searching for his lost birthright does battle with dragons with a sword already attached to his head rather than in his hand. a complete and wholly satisfying tale, except that a narrator's coda tells us "but that is only the first part of my song. come to my campfire tomorrow night and I shall tell you the rest.". the hunt to find the sequels launched a lifelong love of book collecting. horrible book. not suspenseful at all. I would give it negative stars if I could Ingram clean YA Scorching 5 stars!!!! Like all M. Never's book this one does not disappoint!!! You get to learn and fall in love with Jett and London. Jett is one sexy, kinky, alpha who helps truly free his bird. It tells the story of how London came to be with Jett and how they are prefetch for each other! The sex is unbelievably HOT and the storyline is great, the whole book just flows naturally which is wonderful when it goes naturally with all the sex scenes as well. You must read Jett's story!! I would like to start off this review by saying that I had been in the biggest reading slump, pre-Doon. I started this book and from the very beginning, I had felt like I was pulled into a different world. The writing is brilliant. I usually can't stand any book with dual point of views, but with the writing and personality's that the authors created only added to it. After sitting and reading for so long, I didn't even feel like I had been reading anymore. It more felt like I was in Scotland watching 'Vee', Jamie, 'Kenna', and Duncan right in front of me. Even though the book is based off of the musical Brigadoon, the book is still completely original in the sense that the characters and actions
512
Gutenberg (PG-19)
MILITARY FORCES IN CHINA PREFACE Written many thousand miles from the ever‐troubled land of China, with no opportunity for reference, this book doubtless contains many errors, for which the reader’s indulgence is asked. The criticisms of the various armies are not the result of my own unaided impressions, but a _résumé_ of the opinions of the many officers of the different contingents with whom I conversed on the subject. My thanks are due to Sir Richard Harrison, K.C.B., Inspector‐General of Fortifications, who served with the Allied Army which captured Pekin in 1860, for his courtesy in permitting me to use some of the excellent photographs taken by the Photo Section, Royal Engineers. THE AUTHOR LONDON, 1903 CONTENTS CHAPTER I FROM WEI‐HAI‐WEI TO TIENTSIN Our transport—An Irish _padré_—Wei‐hai‐wei harbour by night—The island by day—The mainland—On to Taku—Taku at last—The allied fleet—The famous forts—The Peiho River—The Allies at Tong‐ku—The British at Hsin‐ho—The train to Tientsin—A motley crowd of passengers—The country _en route_—A historic railway station _pages_ 1–16 CHAPTER II TIENTSIN The foreign settlement—The Chinese city—The linguists in the Anglo‐Indian army—The Tientsin Club—A polyglot crowd round the bar—The English Concession—The famous Gordon Hall—The brawls in Taku Road—Dissensions among the Allied troops—The attack on the Royal Welch Fusiliers’ patrol—The siege of Tientsin—Scene of the fighting—Accuracy of the Chinese shell fire—Soldier life in the streets of Tientsin—Tommy Atkins—Peace and War—The revenge of Christianity—The “railway siding incident” _pages_ 17–33 CHAPTER III THE ALLIED ARMIES IN CHINA The German expeditionary force—Out‐of‐date tactics—Failure of their transport—Their campaigning dress—The German officer—The French troops—Improved training and organisation of the French army—The Russians—Endurance and bravery of the Russian soldier—Defective training—The Japanese army—Its transport system in China—Splendid infantry—The courage of the Japanese—Excellence of their Intelligence Department—Its working—The East sown with their agents—The discipline of the Japanese soldiers—Their bravery in action—Moderation in victory—Friendship for our sepoys—The American troops—Continental criticism—The American army of the future—Gallantry of the Americans at the capture of Tientsin—General Dorward’s praise—Friendship between the American and British troops—Discomfiture of an English subaltern—The Italians—Holland’s imposing contingent—The Indian army—A revelation to the world—Indian troops acting alone—Fighting qualities of the various races—The British officers of the Indian army—Organisation of an Indian regiment—Indian cavalry—Loyalty of the sepoy _pages_ 34–63 CHAPTER IV PEKIN To the capital—The railway journey—Von Waldersee’s introduction to our Royal Horse Artillery—The Temple of Heaven—The Temples of the Sun and Moon—The Centre of the Universe—The Chien Mên Gate—Legation Street—The Hôtel du Nord—Description of Pekin—The famous walls—The Tartar City—The Imperial City—The Forbidden City—Coal Hill—The Ming Pagoda—The streets of Pekin—A visit to the Legations—The siege—Pekin mud—A wet day—A princely palace—Chong Wong Foo—A visit to the Forbidden City—The Imperial eunuchs—Seated on the Emperor’s throne—His Majesty’s harem—A quaint notice—A giant bronze—The Imperial apartments—The Emperor’s bedroom—The Empress‐Dowager’s pavilion—Musical‐boxes and toys—Her Majesty’s bed—The Imperial Garden—The view from Coal Hill _pages_ 64–94 CHAPTER V RAMBLES IN PEKIN The Peitan—Defence of the Cathedral—A prelate of the Church militant—A gallant defence—Aspect of Pekin after the restoration of order—A stroll down Ha‐ta‐man Street—Street scenes—Peddlers—Jugglers—Peep‐shows and a shock—A dancing bear—Shoeing a pony—The sorrows of a Pekin shopkeeper—Silk and fan shops—A pottery store—A market‐place—A chaffering crowd—Beggars—The Legation
512
reddit
Seriously, I was watching an episodes on High Times about how these bong makers would make Chess Sets and they were also working bongs! You could blaze and play chess at the same time. It is a real thing and if anyone wants proof I will get it for you. Im high as fuck. I want a chess set. [8] edit #2- swear to god I do not know how to play chess. It is entirely possible for pits to be dog aggressive but it isn't a breed thing it's a nurture and family history thing (I'm not saying you raised your dog to be aggressive, don't get me wrong). I also own a pit she is not dog aggressive, she isn't anything aggressive. To say that all pits are dog aggressive is wrong, that isn't part of their breed traits. You are quite correct that most people should not just take their dog to the dog park not all dogs like dog parks nor they beneficial to most dogs, but if OP chooses to get a pit or a pit mix and takes them to the dog park from an early age and socializes them to that and the dog it's self actually enjoys it then there should be no problem. I can empathize with what you've written...and the struggle to reconcile the idealized image of a person with the reality caused a lot of upheaval during early relationships in my life. Idealism can certainly be a strength, but can also be a source of immense frustration with other people and the world in general if you allow it. I think the trick is to focus on acceptance. A friend of mine once gave me a copy of the Hua Hu Ching (see: Taoism) and it helped me a bunch with that, although I am certain there are a multitude of other philosophical works that would be equally helpful. Just keep working on yourself and keep yourself open to possibilities, but don't worry too much about finding someone else. When you are happy and confident, they will eventually gravitate to you... (Warning: Just be careful of the codependent or cRaZy ones because they tend to prey on your happiness to compensate for the lack of their own. Be selective and never choose to be with someone out of desperation!) &gt;first instinct: this guy should be shot on the spot. No, he shouldn't. They went the right way with it, through the law and with the correct charge He was found guilty and served. You cannot justify killing someone for that crime. It was uncalled for and illegal conduct, which is why he was jailed. &gt;because I think this guy can't be rehabilitated, I'd just collect his organs and throw the rest to the sharks No. Thats not how the legal system works in a modern world. An eye for an eye is not effective and just makes everything even worse. He's being sentenced to life and thats what he deserves. He's had his life taken away already, we do not need to disembowel
512
s2orc
survival in estrogen receptor-negative breast cancers, and thus provide a promising list of potential therapeutic targets and/or biomarkers. Background Inhibiting activated oncogenes has been the primary approach for targeted cancer therapeutics. However, identifying targetable oncogenes might not be feasible in many tumoursfor example, in tumours for which a distinctive causal oncogene cannot be found (e.g. triplenegative breast cancers, TNBCs [12]), or in tumours that are primarily driven by inactivation of (tumour suppressor) genes (e.g. BRCA-deficient tumours). Alternative means and ways of identifying targetable genes in these cancers remain to be explored. Cancer cells are fundamentally (genetically) different from normal cells, and therefore even if cancer cells depend on the same cellular processes to maintain their viability and proliferation, the manner in which the cells utilize these processes to their benefit is fundamentally different from that of normal cells. Cancer cells often capitalize on 'alternative routes' and 'back up or by pass' pathways which normal cells do not activate in their normal course. These 'survival tricks' are picked up by cancer cells through selective pressure wherein the constantly (genetically) evolving cancer cell mass gives rise to clones that gather the right combination of genetic alterations to enable them meander their ways to survival. However, in this constant pursuit for survival, cancer cells often acquire vulnerabilities which normal cells do not, and which if targeted can bring about the catastrophic death of cancer cells. One such vulnerability arises via synthetic lethality between the genetic alterations acquired by cancer cells. Synthetic lethality (SL) was first defined by Calvin Bridges in 1922 [1], and refers to the combination between two genetic alterations in which the co-occurrence of both alterations is lethal to cells, although cells remain viable when only one of the alterations occurs (Figure 1). SL has gained considerable attention over the last few years due to its value in understanding the essentiality of genes or their combinationsfor example, individual and pairs of genes have been systematically knocked out in yeast to understand gene essentiality [2]. More recently, SL has gained attention as a therapeutic strategy to exploit genetic vulnerabilities acquired by cancer cells, and thereby to enable selective targeting of these cells [3,4]: by targeting the SL partner of a genetic alteration in cancer cells, these cells can be selectively killed while sparing (normal) cells which do not harbour that alteration. The first breakthrough in SL-based cancer therapy came when a study [4], albeit as an initial proof of concept, showed that inhibition of poly (ADP-ribose) polymerase (PARP) enzymes in cancer cells that harbour inactivation (loss-of-function) events in the breast-cancer susceptibility genes BRCA1 andBRCA2 is dramatically lethal to these cells, although inhibition of PARP by itself is not lethal in normal cells. The first (Phase I) set of clinical trials (ClinicalTrials.gov number NCT00516373) based on inhibiting PARP using olaparib in sixty patients carrying BRCA1 or BRCA2 mutations showed dramatic remission in these patients without severe side effects unlike conventional chemotherapy, thus providing the first clinical evidence for potent SL-based cancer therapy [5]. Although still not completely understood, the mechanisms underlying BRCA-PARP synthetic lethality is
512
nytimes-articles-and-comments
with two doctors I really liked, trusted, and knew for a long time, I didn't do much birth story planning. I was pretty 'open to the universe', trusted my excellent medical team, and got lucky. I am sorry you were not able to give birth to a child, Julie. <3 <3 <3 Sort of agree with your theory about how super planning pregnancy & delivery moms might also hyper-manage the whole raising the kids thing. I love my kids very much, but mixed a lot of laissez faire into their raising. @George It's not the first time Gates has made the case for higher taxes on the wealthy. "I need to pay higher taxes," he told CNN's Fareed Zakaria in February of 2018. "I've paid more taxes, over $10 billion, than anyone else, but the government should require people in my position to pay significantly higher taxes." @David Rosner Here's an amazing Compendium by The Atlantic - a wonderful news source: "HOW DID WE GET HERE?" <a href="https://www.theatlantic.com/education/archive/2020/06/atlantic-reader-race-and-racism-us/613057" target="_blank">https://www.theatlantic.com/education/archive/2020/06/atlantic-reader-race-and-racism-us/613057</a>/ Until we as well as the rest of our world stop accepting the dictates of those in control as emanating from a supernatural power there cannot be any reasonable means of governance. Church and state must be kept separate, yet the words on our coinage belie that thought. It boils down to the fact we accept the ages old invention of religion, a complete fabrication, that to this day supports the legitimacy of both kings and dictators. Too bad we who should know better are so frightened of truth that we accept almost every lie of every leader. How anyone, woman or man, can say they favor Trump because he is “plain spoken,” is totally incomprehensible to me. And that is because the chaos he generates through speech especially, which he depends daily on for personal power so as to focus attention on himself to dominate, is anything but plain. Plainness is not found in contradiction. Corruption resulting from intentional confusion by “double-talk,” to put it another way, derives from being viciously un-plain through untruth and hellish, unloving tactics. How can the matter be more plain for the truth of it all with Trump? I appreciated another commenter's reminder that this is an assignment, not to list "my favorite opera moment(s)" but to find a short excerpt that will turn someone into an opera lover. With that in mind: "Ebben, ne andro lontana" from La Wally by Catalani. The movie "Diva" is IMHO the best possible introduction to this aria, and an excellent introduction to opera love in general. The brindisi from La Traviata. One of the great "hit tunes" on the Classical Hit Parade. It sure worked on me, when I saw the otherwise incomprehensible movie "The Ruling Class" at age 12. There's nothing wrong with a catchy tune. "Au fond du temple saint," from Bizet's The Pearl Fishers. Another staple from the Classical Hit Parade, but with hints of the upcoming conflict between love and friendship, and the nobility of character that will be required to navigate that conflict later in the story. I'm sure
512
amazon
person on earth who doesn't like this. It's the smell - I just don't like it. My son even complained about it one day when he was in my room. I like the design and size of the dispenser, so I dumped out all the original and replaced with another (cheaper and more common) lavender lotion. Quite a page turner & honestly made me think about what this would be like...loosing 10 years worth of memories! Did the job for a while, but I recently dropped my phone and the corners of the screen cracked because the protector leaves about 1/2 cm around each edge that it doesn't cover. Took extra time to cut around spa like instructions state. Would not stay in place at all. I was happy to see that the cartridge fit correctly. I will continue ordering this as needed. This book was amazing. I am not at all a book reader and this book was incredibly hard to put down at night. It is very relatable to anyone who has, either themselves or through someone they know, a gambling addiction. There is always a light at the end of the tunnel. Bought one for our bed, a couple days later ordered one for our guest room - we love it! These are smaller than I thought and very difficult to blow up. They do not have a valve that stops them from deflating the minute you stop blowing. Due to the small size it is nearly impossible to squeeze the top and keep them fully inflated while closing the valve. I sent these to my son for my grandson in Guatemala. They need something not too warm, that will keep mosquitos off the baby while he is sleeping. They love these pajamas. This product does a great job. It is priced right and well constructed. I would recommend heartily. A real buy! The "flowers" all leak terribly making a large sugary spot below the feeder and attracting ants. Hummingbirds were not attracted to them much at all though. Expensive tree decorations. Was great! My son loved it and we even took him to a tour of a fire station with this outfit on! Have recommended this product to others already. Very easy to make and taste delicious. Also like that the ingredients were straight forward without the preservatives and junk you find in other "ready to make" packets. The price is very good for these, and will purchase again. Love ti! Will buy again if/when needed. I use this for turning on the lathe and it gives me much more protection than the shield I usually use. I absolutely love this Christmas CD, what a great voice as the soundtrack of the season! It might be me, but he sounds better on the radio. Yells through alot of songs. Still had to give it 4 star because of the 4 songs i like alot here. Cable came on-time and does what it's supposed to do. The only thing unsatisfactory about the vinyl tablecloth is that the folds from being tightly packed have not smoothed out, so the tablecloth as a wrinkled look. Good product, faster
512
reddit
an already passive lane into an absolute snooze-fest. Any aggression that you would otherwise see is made useless because soraka will heal it back up (and the addition of the armor buff gives an overwhelming advantage), so both sides play super passively. Hence, anit-fun for all involved bot. These are the real left parties of Venezuela, and they are are a niche compared to the PSUV who is a puppet and a servant of the Oil oligarchy. Unfortunately ask any Venezuelan in favor of the opposition movement the difference between these groups and the PSUV and most will believe they are all the same. Thank you for understanding, it's not a problem after all. I don't really care about karma points: I just want to show pepole my works, I don't think is fair and respectable to repost it before this post is up for 2 hours, and I think would be against rules. Alright, so First of all, try to lower your sens, you are over-aiming a lot and missing shots that can be crucial. Second, try to press that TAB more often, you usually check ults and stats when you die and after that not at all. You can hold it for less than a second and see what ults you have. There were tons of mistakes from teammates, so I will not focus on those (like zarya going yolo etc.) Because of the TAB pressing you missed possible nano-blade, genji was only 76% but you could have waited for couple of second (or next fight) for good combo, instead of nanoing rein against dive, which is meeeh unless they already dove him and he is low (but its usually used for +300hp on tank, or that rein combo into grav). &amp;#x200B; 4:55 - you were still 100hp with only winston on you (so not a panic nano), zarya was full-hp, nano zarya isn't bad in general, but in this case she wasted like 2 seconds running into enemy. &amp;#x200B; Another general thing, you tend to literally stick to payload as soon as you see it... in some cases its a good thing, but usually its not. On second point Attack you should be the one pushing it, but when it gets below the bridge, stick to a corner a heal from there, try to change spots for potential escape route. I like to use church corner, then bank corner and bus on the right side. Also don't stand on payload, you are a free target for hitscan/spam, use it as a cover. &amp;#x200B; 8:10 - That was a free fight, but in this case you should go behind the bus and heal from there, because if they came to contest you are an easy target. 8:57 - you should be next to hanzo, there is a mini-healthpack for you to use in case of dive and you can peek corner to heal tanks 10:00 - again, you should be inside &amp;#x200B; 11:50 - you should be near the fountain, better cover + escape route, also ALWAYS keep an eye on your
512
StackExchange
with all of the power in the flashes and then consider yourself successful. Blasting it with so much light will cause the background to reflect light and become a light source itself, causing the light to spill from the back onto your subject. Once you've got the background set, move on to getting the subject exposed correctly. Q: Getting the results of an Array.toString() without having the items separated by a comma I have an array with messages on them, some of which contain commas. I would like to make this whole array into a string by using .toString(), but instead of separating them by commas, I'd like to separate them by line breakers (\n). Unfortunately, since some of these messages are long and may contain commas of their own, I don't think simply replacing them all using myArray.replace(/,/g, '\n') will do the trick. I know I could also simply do a .forEach() and copy the strings into a new big string. But I was wondering if there is a better way to do this? Perhaps somehow overload the toString() method so that the items are separated by \n instead of the comma? A: Use join('\n') for that case. Array.join() allows you to specify the combiner between the array elements. \n in this case. Similarly, you can use any character or text for the combiner between the array elements like join(','), join('-') or any other. join(',') is same as toString() var arr = ['some', 'word', 'here']; var res = arr.join('\n'); console.log(res); Q: Two Antenna Tuners in Series My radio has an internal antenna tuner that can be activated to rapidly tune for the frequency in use. My antenna has a disgusting SWR for the band I want to use (as measured with an AA-54 antenna analyzer). When activating the internal antenna tuner, it reports multiple occurrences of "Bad SWR" (or something like that). I don't know what the radio does with that information i.e. maybe it refuses to transmit?!? (I'd have to look that up in the manual). Because of this "Bad SWR" report from the radio, I am fearful of burning out my radio by attempting to transmit on this problem band. If I connected an external antenna tuner between the antenna feed and my radio, would/could the external tuner get the signal into "the ballpark" for a more tolerable SWR and then let the internal antenna tuner fine tune that ballpark SWR for a final SWR that would be acceptable to the radio? Or would it not be of any help? A: A simple tuner might be just a capacitor and an inductor: simulate this circuit – Schematic created using CircuitLab For more flexibility, many tuners add a 2nd capacitor to make a pi network: simulate this circuit If you were to have two such tuners: simulate this circuit Well, now you just have more elements which can be adjusted. There's nothing inherently wrong here. In fact it gives you additional tuning range. Internal tuners usually do not have much range, and it's likely with an external tuner you won't
512
gmane
community an improved tool and to gain a valuable open-source develoment experience. Best regards, Dear fellow FOMers, I find the conjectures about the consistency question for NF made by Gordeev to be quite dubious. All mathematical applications of NF (including everything in Rosser's book) can be carried out in NFU + Infinity (or better yet, NFU + "there is a type-level ordered pair" + Choice, which is essentially as strong). NFU + Infinity (or the other theory I describe) is just as strong as the simple theory of types or bounded Zermelo set theory. (Actually, the axiom of counting that Rosser introduces in his book increases the strength of a version adapted to NFU to something more than bounded Zermelo but still much less than ZFC). The only feature distinguishing NF from NFU + Infinity + Choice is a disability: it disproves Choice, and not in a way which displays any consistency strength. There is _nothing_ to indicate that NF is any stronger than the simple theory of types with the Axiom of Infinity (that is, bounded Zermelo set theory), and my conjecture is that that is its strength -- unless it is inconsistent, which also seems quite possible to me. Gordeev observes correctly that NF is finitely axiomatizable (all NF sets can be built using a finite menu of operations). He is correct that if we slightly tweaked the definition of the operations (so that they respect coextensionality) then require that all objects are actually constructed using the operations, we would obtain NF (extensionality would follow from the closure conditions, and this would remove the weakening effect of the modified definitions of the operations). This is a common approach that naive people who think that the NF problem must be easy often take (they try to build term models). [I am not saying that Gordeev is being naive in this way; I don't think that he is.] But I believe that there is no reason whatever to think that the resulting theory is consistent. I do not believe that anyone knows how to construct a model of simple type theory with this kind of closure property, in fact. There are good reasons to think that the existence of such a model of NF is a strong assumption, but I don't think the level of strength approaches that of ZFC (if it is even possible); I would suspect this of being at the level of strength of "There is an omega-model of type theory" (if it is possible at all). The suggestion that this theory would not be interpretable in ZF or ZF with large cardinals is based on a false analogy. The closure assumption in the version of NF that Gordeev describes does not say that the universe is small in cardinality, since some of the operations on which the induction is to be carried out are not set functions. It does seem to imply that the universe is externally countable, but it is well-known that this assumption has no consistency strength to speak of. I am not saying that his
512
goodreads
end, they are just as intriguing as the rest of the book. I also liked his style of writing, for a biology or anthropology book, it's hard to ascertain which it is, there isn't a dry sentence to be had. With Everfair, Nisi Shawl not only redraws the steampunk map, she reworks history itself, revealing points at which change is entirely within our grasp. Within this sweeping narrative, Everfair's characters are beautifully drawn, yet treated with such a level gaze that one expects to find all of them in history books upon finishing the novel. Interlacing subtle and not-so-subtle shifts in hearts, minds, and communities against the background of the rubber trade, WWI, and King Leopold's reign, Shawl builds a fulcrum for change. In short, Everfair embodies wonder: both technologically, as is familiar to fans of the genre, and in the matters of possibility and hope. Nisi Shawl has breathed new life into the genre. (From my blurb of Everfair. Reader, I loved it.) it was a sweet romantic story, I wished the ending was a little different, the story ended quite fast and then we had a little epilogue that did not reveal anything different.. Like what Ruby was doing now and what Aaron was going to do. The end was quite abrubt. After Akilak's grandmother injures her ankle, she sends her granddaughter north to her uncle's camp in order to get food for the two of them. This is the girl's first time traveling alone, and she is a bit anxious about her journey. But a caribou joins her and keeps watch over her even while Akilak begins imagining all the different animals she might be in order to reach her destination swiftly. Of course, the caribou is her grandmother's spirit who is alongside her, and Akilak eventually reaches the camp. It is wonderful to have books like this one that keep the Inuit culture and stories alive, and the reminder that the destination will be reached eventually since it isn't moving any further away is a sound one for anyone to keep in mind when traveling. The illustrations feature soft colors and respectful treatment of the animals in Akilak's imagination. Most of the stories in this book were published elsewhere first, and were written as long ago as 1983. The book is separated into three parts for different subgenres, with interesting introductory essays. Despite the rationales offered by the essays, some of the stories were not what I have considered urban fantasy. Most are well written, with some gems. But I'd read several of them years ago, and others are from genres (horror-ish, for example) that I am not interested in. So reading it wasn't as enjoyable experience as I'd hoped. Enjoyable read. Very super-heroey...reminded me a lot of Superman. Action-packed. I was afraid to read it when I found out it was really written by James Frey, but I gave it a chance and will now gladly read the next installment. The story line for the book is interesting, but the writing is average. Very easy, quick read. Four and 1/2 stars! I really,
512
s2orc
(0, 1), where the computation is distributed among L processing elements. By using an α-approximation algorithm on the coresets, the overall approximation factor is α + O( ). For k-means, a recent improved construction yields a coreset which is a factor O( 2 ) smaller and features very fast distributed implementation [4]. It is not difficult to show that a straightforward adaptation of these algorithms to general spaces (hence in a non-continuous setting) would yield (c·α+O( ))-approximations, with c ≥ 2, thus introducing a non-negligible gap with respect to the quality of the best sequential approximations. Finally, it is worth mentioning that there is a rich literature on sequential coreset constructions for k-median and k-means, which mostly focus on the continuous case in Euclidean spaces [11,14,13,16,23,8]. We do not review the results in these works since our focus is on distributed algorithms in general metric sapces. Our contribution We devise new distributed coreset constructions and show how to employ them to yield accurate space-efficient 2-round MapReduce algorithms for k-median and k-means. Our coresets are built in a composable fashion [17] in the sense that they are obtained as the union of small local coresets computed in parallel (in a single MapReduce round) on distinct subsets of a partition of the input. The final solution is obtained by running a sequential approximation algorithm on the coreset in a second MapReduce round. The memory requirements of our algorithms are analyzed in terms of the desired approximation guarantee, and of the doubling dimension D of the underlying metric space, a parameter which generalizes the dimensionality of Euclidean spaces to general metric spaces and is thus related to the increasing difficulty of spotting good clusterings as the parameter D grows. Let α denote the best approximation ratio attainable by a sequential algorithm for either k-median or k-means on general metric spaces. Our main results are 2-round (α + O( ))-approximation MapReduce algorithms for k-median and k-means, which require O |P |k(c/ ) 2D log 2 |P | local memory, where c > 0 is a suitable constant that will be specified in the analysis, and ∈ (0, 1) is a user-defined precision parameter. To the best of our knowledge, these are the first MapReduce algorithms for k-median and k-means in general metric spaces which feature approximation guarantees that can be made arbitrarily close to those of the best sequential algorithms, and run in few rounds using local space substantially sublinear for low-dimensional spaces. In fact, prior to our work existing MapReduce algorithms for k-median and k-means in general metric spaces either exhibited approximation factors much larger than α [10,5], or missed a tight theoretical analysis of the approximation factor [24]. Our algorithms revolve around novel coreset constructions somehow inspired by those proposed in [14] for Euclidean spaces. As a fundamental tool, the constructions make use of a procedure that, starting from a set of points P and a set of centers C, produces a (not much) larger set C such that for any point x ∈ P its distance from C is significantly smaller than its
512
ao3
be the end of the world if I take a hit or two... Connor’s phone started buzzing. He glared at it. Who the fuck was calling? He picked up the phone and saw Evan’s contact on the screen. He groaned. He didn’t want to, but he did. “Hey.” “H-hi..” “What’s going on?” “I uh. I know something.” “Can you fucking tell me?” “Iknowwhopostedthepictures.” “...what?” “I. I know w-who posted th-the pictures.” “Who?!” **Notes for the Chapter:** > Hmmm I wonder who 10. Delete it **Summary for the Chapter:** > The poster is revealed **Notes for the Chapter:** > Hi! It’s moi! Back with another chapter! So it’s summer in a few days for me! I’ll probably be able to post a lot more this summer!! Yay!!! “Are you fucking serious?” “I’m serious. Connor, I…I’m so s-sorry about this and earlier.”, Evan said into his phone. Connor unclenched his fist. “I’m sorry I flipped out on you. You were right. Don’t be sorry about this. It was my party.”, Connor confessed. Evan was relieved that he didn’t scream. But they had worse things to worry about. “So, what do we do?”, Evan asked. Connor sighed. “We should ask him to delete it but it’s already everywhere.” “Shit…we can…I don’t know.” “I never thought I could hate that fucker more.” ~~~ Jared lay on his bed, dozing off. The previous night had tired him out. He was almost passed out when his phone started buzzing. “Yellow?” “Fuck. You.” “Who is this? Connor?” “Damn right it’s Connor. You know, the Connor you took a video of making out with Evan?” “Shit.” “I was already the outcast, Jared. I was already the one people talked about. Since second grade! I thought the rumors about my goddamn attempts were the goddamn peak of it. But now? It’s this! It’s this fucking mess. So, thanks.” “Wait wait wait, what attempts?” “You fucking know.” “I’ve never heard a rumor about you attempting anything?” “Oh…well I guess I was just fucking imagining that too apparently…um, I don’t really care about that shit right now...never mind.But seriously! what the fuck!” Jared took the phone away from his ear. He could tell this was gonna make his ear bleed. “You weren’t the only drunk one. Did you think that I posted that sober? Fuck no, man…fuck. Fuck my parents are gonna see it.” “I love it when the bastard realizes his mistakes.” “My car insurance...I’m gonna have to pay for it.” “THE GODDAMN CAR INSURANCE!” Jared winced. He knew? Most importantly, it pissed Evan off that much that he told Connor Murphy? “I was joking.” “Just, just fucking delete it.” Jared laughed sarcastically. Did Connor actually think that was an option? “It’s too late! It went viral! That shit never gets deleted!” ( ;) ) Connor groaned. Nothing was gonna fucking work. Jared wanted this to just go away. "Sweet, my friends are names are Edd, Matt, and Tom." You stated, "Come one! You guys should meet!" You say grabing Ell's arm and dragging her through the mirror. "Wha- hey!" Ell yelled.
512
ao3
Kingpin out of his comfort zone, something that James would have never been willing to do. He could see the love there, growing between the two, and could still the guilt. Necessary. That's what he was telling himself. The more he considered it on his ride to Ms. Page's apartment, the more he was able to ignore the cold fingers of fear that were sliding their way, icy and dry, along the curve of his spine, wrapping around his insides and holding tight like a vise. The thought of death was terrifying, but it was necessary. Getting his hands on Karen Page had been surprisingly easy. For a woman who was making a habit of sticking her nose where it didn't belong, she was careless. Perhaps she assumed that the Black Mask would make a habit of saving her. Either way, she was the one he needed, not Ben Urich. Ben was old enough to be more wary than afraid, and he had little fight in him. Karen would be scared enough to be impulsive, to be dangerous. Plus, by killing him, she'd be guilt ridden enough that she'd more likely stay away from Fisk's affairs. She'd want to forget everything, to run from what he knew she was going to do when they were alone together. Waiting for the redhead to wake had been the worst part. It had left him playing out scenarios in his head of what would happen when this was done with. It was a loop, playing on repeat, eating away at him as he paced the little room he and Ms. Page were in. The doubts were cast aside when he caught movement from his captive. The moment the woman woke, gasping and coughing, body lolling as if she were a rag doll, he began the show. He couldn't let her know that he wanted what was to come. He had to make this look real. He had to make her believe this was real. She was in danger and those she loved were in danger; she had to survive and to do that, she was going to have to kill him. When the first shot rang out and the bullet burrowed its way into him he was almost relieved. The pain was grounding. It reminded him of why he was here, of the purpose he had and had always had. Wilson needed this from him and it was the last service he'd be able to do for the man he loved. It may as well been his own hand on the trigger over Ms. Page's. His body jerked as a few more shots followed. He was grateful. He coughed, tasting the bitter metallic taste of his own blood, and winced as he swallowed a mouthful down. He was vaguely aware of Ms. Page leaving him, of the sound of the heavy metal door of the dingy warehouse screaming open and then closed again as it twisted on its rusty hinges. His skin was quickly growing cold, making him more and more aware of the wet
512
s2orc
be designed in the future to ensure the effect of massage on feeding intolerance in these low birth weight infants. Table 1 . 1Characteristics of preterm infants.Experimental group Control group Statistical significance Gestational age (week) 29.69 ± 1.56 30.03±1.48 t = -0.928 P = 0.357 Birth weight (Kg) 1.45 ± 0.31 1.38 ± 0.22 t = 1.186 P = 0.240 Gender Male n (%) 22 (61.1) microRNA-10b enhances pancreatic cancer cell invasion by suppressing TIP30 expression and promoting EGF and TGF-b actions 2014 H Ouyang J Gore S Deitz M Korc microRNA-10b enhances pancreatic cancer cell invasion by suppressing TIP30 expression and promoting EGF and TGF-b actions Oncogene 33201410.1038/onc.2013.405OPEN ORIGINAL ARTICLEpancreatic cancermiR-10bEGF receptorcell invasion Increased microRNA-10b (miR-10b) expression in the cancer cells in pancreatic ductal adenocarcinoma (PDAC) is a marker of disease aggressiveness. In the present study, we determined that plasma miR-10b levels are significantly increased in PDAC patients by comparison with normal controls. By gene profiling, we identified potential targets downregulated by miR-10b, including Tat-interacting protein 30 (TIP30). Immunoblotting and luciferase reporter assays confirmed that TIP30 was a direct miR-10b target. Downregulation of TIP30 by miR-10b or siRNA-mediated silencing of TIP30 enhanced epidermal growth factor (EGF)-dependent invasion. The actions of miR-10b were abrogated by expressing a modified TIP30 cDNA resistant to miR-10b. EGF-induced EGF receptor (EGFR) tyrosine phosphorylation and extracellular signal-regulated kinase phosphorylation were enhanced by miR-10b, and these effects were mimicked by TIP30 silencing. The actions of EGF in the presence of miR-10b were blocked by EGFR kinase inhibition with erlotinib and by dual inhibition of PI3K (phosphatidylinositol 3 0 -kinase) and MEK. Moreover, miR-10b, EGF and transforming growth factor-beta (TGF-b) combined to markedly increase cell invasion, and this effect was blocked by the combination of erlotinib and SB505124, a type I TGF-b receptor inhibitor. miR-10b also enhanced the stimulatory effects of EGF and TGF-b on cell migration and epithelial-mesenchymal transition (EMT) and decreased the expression of RAP2A, EPHB2, KLF4 and NF1. Moreover, miR-10b overexpression accelerated pancreatic cancer cell (PCC) proliferation and tumor growth in an orthotopic model. Thus, plasma miR-10b levels may serve as a diagnostic marker in PDAC, whereas intra-tumoral miR-10b promotes PCC proliferation and invasion by suppressing TIP30, which enhances EGFR signaling, facilitates EGF-TGF-b cross-talk and enhances the expression of EMT-promoting genes, whereas decreasing the expression of several metastasis-suppressing genes. Therefore, therapeutic targeting of miR-10b in PDAC may interrupt growth-promoting deleterious EGF-TGF-b interactions and antagonize the metastatic process at various levels. INTRODUCTION Pancreatic ductal adenocarcinoma (PDAC) is the fourth leading cause of cancer-related deaths in the United States with a median survival of 6 months and a 5-year survival rate of 6%. 1 As there are no effective modalities for early detection, most PDAC patients present with locally invasive and/or metastatic disease and are not candidates for resection. 2 Histologically, PDAC is characterized by regions of acinar-to-ductal metaplasia, pancreatic intraepithelial neoplasia, cancer cells forming ductal-like structures, inflammatory infiltrates and an extensive desmoplastic reaction that interferes with effective drug delivery into the pancreatic tumor mass. [3][4][5] At the molecular level, there is a high frequency of major driver
512
amazon
much for your teaching and I would recommend this DVD to anyone who wants to feel better and stress free. The Zeikos lens hood that I purchased was poorly threaded and barely clings to the front of the lens. I was very careful not to cross thread the hard rubber lens hood to metal threads of the lens and filter but it is just poorly constructed and does not have the fit of a more expensive lens hood. I've already ordered a Canon replacement. Great! My dogs liked this food okay, and it didn't bother my dog that has some grain allergies, so that's good. I would prefer a food though sourced fully in the US, and that uses strictly organic and non-GMO products. The price on this size bag is definitely not something I'd want to pay on a regular basis when compared to other foods with better ingredients. A wholly different perspective of national events is portrayed in this story. I can now understand better some of the personalities and problems involved in international relations in the world. As good as the original My blackout shades just arrived today! They're very wide (so they fit any window in my house) and they can be cut quite easily with a box cutter. The material is similar to a heavy paper so when they come out of the box, they're rather flimsy. My natural response to this is to straighten it out by running my hand down the length of the shade. That's the problem... when you do this, the shade material just slices into your hand. I have 3 deep cuts. Once they were up, they work amazingly well! 100% satisfaction. Cons: They can draw blood. Pros: Because they're black, they hide the blood that was smeared allover them. The color line on bottom did not match the others I bought before. Seems like its made in lots so buy all you need the first time because I was 1 short and the lines do not match the others. I had already applied for the refund until my husband got home. The last screw would not fit the el shaped leg.when putting in the last screw they don't tell you that u may have to switch 1 of the corners so the screw fits. What a pain in the ........My advice is to make sure each screw fits in each el shape leg so you won't have to take it apart to get the right fit. After all said and done Once he got it together it was good. Dog loves it. My dog is 65lbs and its perfect. Good quality at a right price. Would recommend this to a friend. Admittedly I was attracted to the book as the author and I share what is a relatively rare first name. However, I really enjoyed the book, and have just finished the second one. I enjoy vampire and werewolf romance, my guilty little secret, don't tell my mom. But after a while it all becomes the same. Her take on demons is TERRIBLY creative, and a real breath of
512
YouTubeCommons
very moisturized so quickly I didn't want to show you guys my armpits to show you guys that my routine actually works even though there's hairs coming through and everything can still see that it's pretty bright exfoliating your armpits on a daily basis will change your armpits for the better trust me and wax instead of shape okay so once I get out of the shower I make sure that my body is still dad before I moisturize and the moisturizer that I'll be using is the kiss my ash by Gina B Naturals I will leave a link down below and where you can find this but it's just a nice shea butter and this is actually the lavender scent which I like to use in the night time and then she also has a lemon scent which I like to use in the mornings and they both are really really good and worked amazing on my skin my skin just really eats it up and if you guys been following me for a very long time you would know that I only use cocoa butter and shea butter and then some oils on my skin and that's about it and that's what really gives me that healthy glow and it lasts all day long so clearly you can see that my body is still a little bit wet and this is gonna make sure that the product really seeps into my body and Smee moisturize for a longer period of time so that's why I do that and you want to make sure that you're taking care of those feet you don't want to be looking at shiny from the ankles up okay and personally for me I also lotion my armpits and my elbows I also feel like it aids in keeping it you know nice and bright so yeah that is pretty much my routine from in the shower to out the shower and as you can see my skin looks super healthy and radiant I know it seems like a lot but it's totally worth it I also forgot to mention for hygiene I do like to use it down there and goody wipes and I use this you know just every single day whether I'm at home or on the go that comes in lavender and Coco shade they smell really really good and I just wipe my you know vagina area with that and then for ingrown hairs I also use the European wax Mooney wipes just throughout the day before I take a shower or if I'm just you know I don't have the time to exfoliate this is what I'll use in conjunction or just by itself alright guys so that is my body care routine hopefully you guys enjoy that video I do want to get two things out of the way that I think I kind of missed in this video and that is deodorant and perfumes and oils and such so when it comes to deodorants I only use
512
reddit
a brief intro to AFFC/ADWD. Those two books will be combined and span 3 seasons (I've heard that mentioned but not sure if that was something the creators suggested or just fan speculation.) So by the end of the current books, we have 7 seasons. Season 8 would be in 2018, and hopefully TWoW/ADoS is released by then... And assumes there aren't any more books! That's at least 9 seasons of TV. It's really rare for a show to last that long, especially one with a high budget. How many seasons have some of the more successful HBO shows had? Will seasons 5-6 move too slowly for the majority of the non-reader audience, leading to reduced viewers and a cancellation? You also have the aging of some of the younger actors to deal with. It could cause some issues. And people getting other jobs. Secondary characters aren't only living off their handful of episodes a year. Would we see lots of replacements? Would season 4 be a good place to end the TV series if they think it can't make it to the end? What if ADoS isn't ready by 2018 and the show is still on the air? Do Dave and Dan take GRRM's notes and make it, essentially spoiling the book? I know that's a lot of questions that can't really be answered, but they're on my mind. Oh jesus christ. Another wall of bullshit text! Couldn't you at least admit you were wrong rather than exploding in to paroxysms of white knight bullshit? I've seen all these failed leftist narratives before. You guys need to call other men virgins because you're insecure losers who bargain for sex and rationalise your desire by abusing yourselves and hating on other men. Look, I don't care otherwise apart from stating that truth. You need to sort your life out. It's a bootstrap argument. You would have really hard time(it's just impossible) if you try to explain how "abstract object" natural number is related to some physical object. In other words this statement claims the existence of an infinite set, and an infinite set is pure nonsense in the physical sense. I'm still on my temp cert, and before that, every tenth mattered, but I'm not going anywhere past my IR at some time, so it seems important at the moment, but the more I think about it, no one's going to be auditing my logs ever, I'm flying for fun. Thanks. You look bulky (in a good way) and tall. So those are two good features. Nice chin. Not much fat on your face. Many positives here. Hair fits you but a little boring. You have a little acne so try to maintain either a clean shave or purposefully grow and maintain some clean facial hair. Acne + facial hair stuble dont mix. Changes to a world have to be saved. When playing singleplayer, they will be saved locally. When playing multiplayer, the changes are saved on the server. Therefore, unless you host the server with your save, players will not be able to
512
amazon
odd, it looks like a buttonbut you cant press it; its there only to tell you if its charging or 100% charged. Their main menu is on the top right when it really should be on the top leftlike everyone else, for a consistent app experience. They should change the Battery button to some status section, and the Settings should include options that their website support section talks about. It all feels very 1.0 (its 1.3). A UI/UX designer should be hired to update and redesign this app. *** UPDATE *** They have since updated the app, and it looks nicer and menus are much more intuitive [see photos]. BATTERY DOCK The built-in battery has 10,400 mAh of power. The battery is used to charge your devices *and* to power the Smart features. This is the reason why your battery drains faster than an independent batteryso that it can use some of that power to power other things. For reference, an iPhone 6S has 1715 mAh (can be recharged 6X), and the iPad mini 4 has 5,124 mAh (can be recharged 2X). There are two USB connectors: one below the extending handle, and one on the inside front pocket. You will need to have your own cables, of course. It can charge for a total of 5V/2.1A, so you can charge two devices slowly, or one device fast. According to their website, Bluesmart uses a 37 Watt-hour lithium ion battery (10,400 mAh and 3.7V), which is well within the FAA regulations on batteries, should you be asked by the TSA. GPS Location tracking uses 3G+GPS technology to locate the bag, and it spotted my bag within its blue circle in the app. The issue here is, should you be separated from your bag, like miles away, it only tells you the last known locationwhen you last checked. Their product description says you can track your suitcase's location at all times, what I presume is like Find My iPhone (as long as the battery isn't dead), but I haven't been able to use or find the feature for this on the app, so Im confused by what it can actually do. Also, being a carry-on that stays near you, I don't see much need for a location finding feature, but its neat to have. Hopefully, the necessary hardware is already built in and the app just needs an update. WIRELESS LOCKING This bag has a digital lock. It provides options for automatically locking your suitcase if you step more than 10-ish feet away from it, and will unlock when you're right next to it. You have the option to turn automatic lock/unlocking off; these options are available in the Settings section of the app. If you do lock it remotely, you won't be able to just press the physical button on the suitcase to unlock it, it will have to be unlocked from the phone. This can be slightly inconvenient should your suitcase battery die; you would have to use a physical key to open it (the pain of manual labor I tell
512
s2orc
Hashem A, Alqarawi AA, Malik JA, Abd_Allah EF, Gupta VK, Siddaiah CN and Niranjana SR (2019) Biofabrication of Zinc Oxide Nanoparticles With Syzygium aromaticum Flower Buds Extract and Finding Its Novel Application in Controlling the Growth and Mycotoxins of Fusarium graminearum. Front. Microbiol. 10:1244.green synthesiszinc oxide nanoparticlesmycotoxindeoxynivalenolzearalenone Fusarium graminearum is a leading plant pathogen that causes Fusarium head blight, stalk rot, and Gibberella ear rot diseases in cereals and posing the immense threat to the microbiological safety of the food. Herein, we report the green synthesis of zinc oxide nanoparticles from Syzygium aromaticum (SaZnO NPs) flower bud extract by combustion method and investigated their application for controlling of growth and mycotoxins of F. graminearum. Formation of SaZnO NPs was confirmed by spectroscopic methods. The electron microscopic (SEM and TEM) analysis revealed the formation of triangular and hexagonal shaped SaZnO NPs with size range 30-40 nm. The synthesized SaZnO NPs reduced the growth and production of deoxynivalenol and zearalenone of F. graminearum in broth culture. Further analysis revealed that treatment of mycelia with SaZnO NPs resulted in the accumulation of ROS in the dose-dependent manner. Also, SaZnO NPs treatment enhanced lipid peroxidation, depleted ergosterol content, and caused detrimental damage to the membrane integrity of fungi. Moreover, SEM observations revealed that the presence of diverged micro-morphology (wrinkled, rough and shrank surface) in the macroconidia treated with SaZnO NPs. Taken together, SaZnO NPs may find a potential application in agriculture and food industries due to their potent antifungal activity. INTRODUCTION The world population is estimated to reach about 10.5 billion by 2050, and accessibility of food needs to rise about 60% to accomplish the food security (Alexandratos and Bruinsma, 2012). The food security could be improved through production and minimizing the food losses. In the interim, agriculture is facing climate change and limitation in land and water, and therefore, hard to increase food production (Aulakh and Regmi, 2013). As per FAO, about 1300 million tons of food are wasted per annum worldwide due to inappropriate post-harvesting practices (FAO, 2012). Thus, saving the food loss at a post-harvesting session could be the greatest resolve to improve the food security (Gustavsson et al., 2011). In this context, particularly fungal infestations are the foremost accountable for food loss, and FAO estimated that about 25% of agricultural commodities were contaminated with fungi (Smith et al., 2016). The fungal infestation brings unacceptable features in color, texture, flavor, and taste of food and introduces hazardous mycotoxins in food . The major mycotoxigenic fungal species liable for infestations are Aspergillus, Alternaria, Claviceps, Fusarium, Penicillium, and Stachybotrys (Richard, 2007). Among these mycotoxigenic species, Fusarium graminearum is one of the most accountable for food waste and food safety worldwide. The F. graminearum is devastating plant pathogen and causes FHB, stalk rot, and Gibberella ear rot diseases in cereals and accountable for loss of billion dollars worldwide (Pasquali et al., 2016). It is also liable for production of hazardous mycotoxins, including DON, NIV, and ZEA (Mudili et al., 2014). These mycotoxins classified as the group 3 carcinogens and cause a variety of toxic effects, such
512
reddit
prom was the writers' way of copping out and wrapping them up)? NAT? Eddie? THE BARREL?! Obviously we don't know who killed Maya or Jessica so that is hopefully something that will be answered next year. But yeah, we're all going nuts as usual. I just think that it is insane that Mar claimed that we would 'have nothing left' that needed answered after this episode. HAHAHAHAHA &gt; The removal message clearly said that this is not an ELI5-appropriate question. It is a medical question, and you should ask it in a medical-related sub like /r/askdocs or something similar. Disagree, it wasn't clear to me what the reason for the removal was, hence why I messaged the moderation team for clarification, got no response, and reposted it on the assumption that the original post was removed due to either the title not being descriptive enough or the fact that I spoke personally using 'I' in the question. I also think you need to clarify what the difference between a biological question and medical question is - and then add this to the detailed rules which you have the link for in your sticky comment because currently it doesn't say anywhere that my post will be removed for being 'medically focused'. Also, I'd like to point you in the direction of rule #1 - Be Nice. There are no rules against misspelling, and your passive-aggressive &gt; (albeit you spelled "ulcer" correctly this time). isn't exactly what I'd call nice. I would say I expect more than this sort of thing from a moderator but sadly this kind of passive-aggressiveness is pretty common among moderators. I smoke it because Lewis and Clark did while traveling down the Mississippi. Not many people know this but it wasn't saquajaweea(too hard of a word and too lazy to spell it correctly), but actually phoccahontas's twin cousin smokahontas who accompanied them on their travels fighting bears, octopuses, and British terminators until they reached Hawaii. But they didn't have a big enough boat so they decided to stay in what we now call Las Vegas. And that is why I'm studying to be a great explorer like them. Edit: octopi(?) Dont upload if you are not prepared to be critiqued. Also who is "dont make your drawing visually confusing" and "try to develope your own style so that it doesnt look like an imitation of someone else" unhelpful critiques? Granted the second one is a bit vague but the first one is self-explaining. I know posts like this are fairly common across the internet, so I'll stick with things I think truly aren't spoken about often if at all. 1. Bring your own vitamins. I was told my multivitamin, vitamin d, and dha would be supplied there. And they were! For the first day of a 7 day hospital stay. I went to the top hospital in my state, and their pharmacy continually fucked up and was late with things, including blood thinners I needed to take at precise times. 2. Everything I read online said induction could take a few
512
Gutenberg (PG-19)
Hall, a military academy for boys situated in the heart of Now York State; in "The Rover Boys on the Ocean" we followed our young heroes during a most daring rescue; and in "The Rover Boys in the jungle" we learn what true American courage can do, even in the heart of the Dark Continent. In the present tale our young herm are taken at first back to dear old Putnam Hall, and then to the heart of the great mining district of Colorado. All trace of a valuable mine has been lost, and the boys start out on a hunt for the property, little dreaming of the many perils which await them on their quest. How they overcome one obstacle after another, and get the best of their various enemies, will be found in the story itself. The success of the first Rover Boys books has gratified me beyond measure, and my one hope is that my numerous readers will find this and future volumes of equal interest. Affectionately and sincerely yours, ARTHUR M. WINFIELD. June 20, 1900 CHAPTER I RETURNING FROM A GREAT GAME "Zip! Boom! Ah!" "Hurrah for Putnam Hall!" "Let her go, Peleg, lively now, and mind you don't upset us, or we'll use you worse than we did the football." "All right, young gents. All in? Hold fast, everybody, or I won't be responsible, nohow, if you drop off. Git along, Jack; up with ye, Sally!" And with a crack of the whip, a tooting of tin horns, and it mad yelling and cheering from the students, the long Putnam Hall stage left the football enclosure attached to the Pornell Academy grounds and started along the lake road for Putnam Hall. The stage was packed, inside and out, with as merry and light-hearted a crowd of boys as could be found anywhere; and why should they not be merry and light-hearted, seeing as they had just won a great football match by a score of 16 to 8? Tom Rover, who was on the top of the stage, actually danced a jig for joy. "That's the third time we have done them up, fellows!" he cried. "My, but won't there be gloom around Pornell Academy to-night! It will be thick enough to cut with a knife." "They were never in it from the start," piped up Sam Rover. "And they were all heavier than our team, too," he added, proudly. "It was science, not weight, that won the match," said Frank Harrington. "Yes, it was science," broke in Larry Colby. "And for that science we have to thank Dick Rover. Oh, but didn't that rush to the left fool them nicely!" Dick Rover's handsome face flushed with pleasure. "We won because every player did his full duty," he said. "If we--" He broke off short. "Great Scott, what a racket on top! Who's that capering around?" "It's me, thank you!" yelled Tom, with more force than good grammar. "I'm doing an Indian war dance in honor of the victory. Want to join in, anybody?" "Stop it; you'll
512
Github
zv.autocalculateOpeningEffectiveness(); EXPECT_TRUE(zv.isOpeningEffectivenessAutocalculated()); EXPECT_TRUE(zv.setOpeningEffectiveness(0.5)); ASSERT_TRUE(zv.openingEffectiveness()); EXPECT_EQ(0.5, zv.openingEffectiveness().get()); EXPECT_FALSE(zv.isOpeningEffectivenessAutocalculated()); EXPECT_FALSE(zv.setOpeningEffectiveness(1.5)); EXPECT_EQ(0.5, zv.openingEffectiveness().get()); EXPECT_FALSE(zv.setOpeningEffectiveness(-0.1)); EXPECT_EQ(0.5, zv.openingEffectiveness().get()); // Effective Angle: Required Double EXPECT_TRUE(zv.setEffectiveAngle(180.0)); EXPECT_EQ(180.0, zv.effectiveAngle()); EXPECT_FALSE(zv.setEffectiveAngle(365)); EXPECT_EQ(180.0, zv.effectiveAngle()); // Height Difference: Required Double EXPECT_TRUE(zv.setHeightDifference(0.1)); EXPECT_EQ(0.1, zv.heightDifference()); EXPECT_FALSE(zv.setHeightDifference(-0.5)); EXPECT_EQ(0.1, zv.heightDifference()); // Discharge Coefficient for Opening: Required Double zv.autocalculateDischargeCoefficientforOpening(); EXPECT_TRUE(zv.isDischargeCoefficientforOpeningAutocalculated()); EXPECT_TRUE(zv.setDischargeCoefficientforOpening(0.5)); ASSERT_TRUE(zv.dischargeCoefficientforOpening()); EXPECT_EQ(0.5, zv.dischargeCoefficientforOpening().get()); EXPECT_FALSE(zv.isDischargeCoefficientforOpeningAutocalculated()); EXPECT_FALSE(zv.setDischargeCoefficientforOpening(1.5)); EXPECT_EQ(0.5, zv.dischargeCoefficientforOpening().get()); EXPECT_FALSE(zv.setDischargeCoefficientforOpening(-0.1)); EXPECT_EQ(0.5, zv.dischargeCoefficientforOpening().get()); // Minimum Indoor Temperature: Required Double EXPECT_TRUE(zv.setMinimumIndoorTemperature(0.0)); EXPECT_EQ(0.0, zv.minimumIndoorTemperature()); EXPECT_FALSE(zv.setMinimumIndoorTemperature(-105.0)); EXPECT_FALSE(zv.setMinimumIndoorTemperature(105.0)); EXPECT_EQ(0.0, zv.minimumIndoorTemperature()); // Minimum Indoor Temperature Schedule Name: Optional Object ScheduleConstant minIndoorTempSch(m); minIndoorTempSch.setValue(10.0); EXPECT_TRUE(zv.setMinimumIndoorTemperatureSchedule(minIndoorTempSch)); ASSERT_TRUE(zv.minimumIndoorTemperatureSchedule()); EXPECT_EQ(minIndoorTempSch, zv.minimumIndoorTemperatureSchedule().get()); zv.resetMinimumIndoorTemperatureSchedule(); EXPECT_FALSE(zv.minimumIndoorTemperatureSchedule()); // Maximum Indoor Temperature: Required Double EXPECT_TRUE(zv.setMaximumIndoorTemperature(40.0)); EXPECT_EQ(40.0, zv.maximumIndoorTemperature()); EXPECT_FALSE(zv.setMaximumIndoorTemperature(-105.0)); EXPECT_FALSE(zv.setMaximumIndoorTemperature(105.0)); EXPECT_EQ(40.0, zv.maximumIndoorTemperature()); // Maximum Indoor Temperature Schedule Name: Optional Object ScheduleConstant maxIndoorTempSch(m); maxIndoorTempSch.setValue(30.0); EXPECT_TRUE(zv.setMaximumIndoorTemperatureSchedule(maxIndoorTempSch)); ASSERT_TRUE(zv.maximumIndoorTemperatureSchedule()); EXPECT_EQ(maxIndoorTempSch, zv.maximumIndoorTemperatureSchedule().get()); zv.resetMaximumIndoorTemperatureSchedule(); EXPECT_FALSE(zv.maximumIndoorTemperatureSchedule()); // Delta Temperature: Required Double EXPECT_TRUE(zv.setDeltaTemperature(-2.0)); EXPECT_EQ(-2.0, zv.deltaTemperature()); EXPECT_FALSE(zv.setDeltaTemperature(-105)); // Delta Temperature Schedule Name: Optional Object ScheduleConstant deltaTempSch(m); deltaTempSch.setValue(3.0); EXPECT_TRUE(zv.setDeltaTemperatureSchedule(deltaTempSch)); ASSERT_TRUE(zv.deltaTemperatureSchedule()); EXPECT_EQ(deltaTempSch, zv.deltaTemperatureSchedule().get()); zv.resetDeltaTemperatureSchedule(); EXPECT_FALSE(zv.deltaTemperatureSchedule()); // Minimum Outdoor Temperature: Required Double EXPECT_TRUE(zv.setMinimumOutdoorTemperature(-20.0)); EXPECT_EQ(-20.0, zv.minimumOutdoorTemperature()); EXPECT_FALSE(zv.setMinimumOutdoorTemperature(-105.0)); EXPECT_FALSE(zv.setMinimumOutdoorTemperature(105.0)); EXPECT_EQ(-20.0, zv.minimumOutdoorTemperature()); // Minimum Outdoor Temperature Schedule Name: Optional Object ScheduleConstant minOutdoorTempSch(m); minOutdoorTempSch.setValue(-10.0); EXPECT_TRUE(zv.setMinimumOutdoorTemperatureSchedule(minOutdoorTempSch)); ASSERT_TRUE(zv.minimumOutdoorTemperatureSchedule()); EXPECT_EQ(minOutdoorTempSch, zv.minimumOutdoorTemperatureSchedule().get()); zv.resetMinimumOutdoorTemperatureSchedule(); EXPECT_FALSE(zv.minimumOutdoorTemperatureSchedule()); // Maximum Outdoor Temperature: Required Double EXPECT_TRUE(zv.setMaximumOutdoorTemperature(50.0)); EXPECT_EQ(50.0, zv.maximumOutdoorTemperature()); EXPECT_FALSE(zv.setMaximumOutdoorTemperature(-105.0)); EXPECT_FALSE(zv.setMaximumOutdoorTemperature(105.0)); EXPECT_EQ(50.0, zv.maximumOutdoorTemperature()); // Maximum Outdoor Temperature Schedule Name: Optional Object ScheduleConstant maxOutdoorTempSch(m); maxOutdoorTempSch.setValue(20.0); EXPECT_TRUE(zv.setMaximumOutdoorTemperatureSchedule(maxOutdoorTempSch)); ASSERT_TRUE(zv.maximumOutdoorTemperatureSchedule()); EXPECT_EQ(maxOutdoorTempSch, zv.maximumOutdoorTemperatureSchedule().get()); zv.resetMaximumOutdoorTemperatureSchedule(); EXPECT_FALSE(zv.maximumOutdoorTemperatureSchedule()); // Maximum Wind Speed: Required Double EXPECT_TRUE(zv.setMaximumWindSpeed(20.0)); EXPECT_EQ(20.0, zv.maximumWindSpeed()); EXPECT_FALSE(zv.setMaximumWindSpeed(-2.0)); EXPECT_FALSE(zv.setMaximumWindSpeed(42.0)); EXPECT_EQ(20.0, zv.maximumWindSpeed()); } // End of Getter_Setters test TEST_F(ModelFixture, ZoneVentilationWindandStackOpenArea_AddToThermalZone) { Model m; ThermalZone z(m); ZoneVentilationWindandStackOpenArea zv(m); EXPECT_TRUE(zv.addToThermalZone(z)); ASSERT_TRUE(zv.thermalZone()); EXPECT_EQ(z, zv.thermalZone().get()); zv.removeFromThermalZone(); EXPECT_FALSE(zv.thermalZone()); } Change log ================================================================================ 0.6.4 - 18.08.2020 -------------------------------------------------------------------------------- **Updated** #. `#219 <https://github.com/pyexcel/pyexcel/issues/219>`_: book created from dict no longer discards order. 0.6.3 - 01.08.2020 -------------------------------------------------------------------------------- **fixed** #. `#214 <https://github.com/pyexcel/pyexcel/issues/214>`_: remove leading and trailing whitespace for column names **removed** #. python 2 compatibility have been permanently removed. 0.6.2 - 8.06.2020 -------------------------------------------------------------------------------- **fixed** #. `#109 <https://github.com/pyexcel/pyexcel/issues/109>`_: Control the column order when write the data output 0.6.1 - 02.05.2020 -------------------------------------------------------------------------------- **fixed** #. `#203 <https://github.com/pyexcel/pyexcel/issues/203>`_: texttable was dropped out in 0.6.0 as compulsary dependency. end user may experience it when a sheet/table is printed in a shell. otherwise, new user of pyexcel won't see it. As of release date, no issues were created 0.6.0 - 21.04.2020 -------------------------------------------------------------------------------- **updated** #. `#199 <https://github.com/pyexcel/pyexcel/issues/199>`_: += in place; = + shall return new instance #. `#195 <https://github.com/pyexcel/pyexcel/issues/195>`_: documentation update. however small is welcome **removed** #. Dropping the test support for python version lower than 3.6. v0.6.0 should work with python 2.7 but is not guaranteed to work. Please upgrade to python 3.6+. 0.5.15 - 07.07.2019 -------------------------------------------------------------------------------- **updated** #. `#185 <https://github.com/pyexcel/pyexcel/issues/185>`_: fix a bug with http data source. The real fix lies in pyexcel-io v0.5.19. this release just put the version requirement in. 0.5.14 - 12.06.2019 -------------------------------------------------------------------------------- **updated** #. `#182 <https://github.com/pyexcel/pyexcel/issues/182>`_: support dest_force_file_type on save_as and save_book_as 0.5.13 - 12.03.2019 -------------------------------------------------------------------------------- **updated** #. `#176 <https://github.com/pyexcel/pyexcel/issues/176>`_: get_sheet {IndexError}list index out of range // XLSX can't be opened 0.5.12 - 25.02.2019 -------------------------------------------------------------------------------- **updated** #. `#174 <https://github.com/pyexcel/pyexcel/issues/174>`_: include examples in tarbar 0.5.11 - 22.02.2019 -------------------------------------------------------------------------------- **updated** #. `#169 <https://github.com/pyexcel/pyexcel/issues/169>`_: remove pyexcel-handsontalbe in test #. add tests, and docs folder in distribution 0.5.10 - 3.12.2018 -------------------------------------------------------------------------------- **updated** #. `#157 <https://github.com/pyexcel/pyexcel/issues/157>`_: Please use scan_plugins_regex, which lml 0.7 complains about #. updated dependency on
512
Github
character at the specified position is blank (space or tab). func is_blank(b []byte, i int) bool { //return is_space(b, i) || is_tab(b, i) return b[i] == ' ' || b[i] == '\t' } // Check if the character at the specified position is a line break. func is_break(b []byte, i int) bool { return (b[i] == '\r' || // CR (#xD) b[i] == '\n' || // LF (#xA) b[i] == 0xC2 && b[i+1] == 0x85 || // NEL (#x85) b[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA8 || // LS (#x2028) b[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA9) // PS (#x2029) } func is_crlf(b []byte, i int) bool { return b[i] == '\r' && b[i+1] == '\n' } // Check if the character is a line break or NUL. func is_breakz(b []byte, i int) bool { //return is_break(b, i) || is_z(b, i) return ( // is_break: b[i] == '\r' || // CR (#xD) b[i] == '\n' || // LF (#xA) b[i] == 0xC2 && b[i+1] == 0x85 || // NEL (#x85) b[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA8 || // LS (#x2028) b[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA9 || // PS (#x2029) // is_z: b[i] == 0) } // Check if the character is a line break, space, or NUL. func is_spacez(b []byte, i int) bool { //return is_space(b, i) || is_breakz(b, i) return ( // is_space: b[i] == ' ' || // is_breakz: b[i] == '\r' || // CR (#xD) b[i] == '\n' || // LF (#xA) b[i] == 0xC2 && b[i+1] == 0x85 || // NEL (#x85) b[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA8 || // LS (#x2028) b[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA9 || // PS (#x2029) b[i] == 0) } // Check if the character is a line break, space, tab, or NUL. func is_blankz(b []byte, i int) bool { //return is_blank(b, i) || is_breakz(b, i) return ( // is_blank: b[i] == ' ' || b[i] == '\t' || // is_breakz: b[i] == '\r' || // CR (#xD) b[i] == '\n' || // LF (#xA) b[i] == 0xC2 && b[i+1] == 0x85 || // NEL (#x85) b[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA8 || // LS (#x2028) b[i] == 0xE2 && b[i+1] == 0x80 && b[i+2] == 0xA9 || // PS (#x2029) b[i] == 0) } // Determine the width of the character. func width(b byte) int { // Don't replace these by a switch without first // confirming that it is being inlined. if b&0x80 == 0x00 { return 1 } if b&0xE0 == 0xC0 { return 2 } if b&0xF0 == 0xE0 { return 3 } if b&0xF8 == 0xF0 { return 4 } return 0 } import Vue from 'vue' import Router from 'vue-router' import HomeView from '@/components/HomeView' import DetailView from '@/components/DetailView' import PostView from '@/components/PostView' import CameraView from '@/components/CameraView' Vue.use(Router) export default new Router({ routes: [ { path: '/', name: 'home', component: HomeView }, {
512
realnews
If you have a different weight or tend to choose healthier options, you will receive a different result. Have something to add to this story? Share it in the comments. 1. NBC Highlights 'Life-Long Republican' Caucusing for Obama, But... On Wednesday's NBC Nightly News, Andrea Mitchell showcased "a lifelong Republican, who twice voted for George Bush, now canvassing for Obama" as a "precinct captain" in Iowa. In an interview two months ago, however, Monica Green listed Ronald Reagan as the last Republican President with whom she "identified" and, asked whether she'd vote for Reagan if he were running against Barack Obama today, she equivocated as she implied Reagan was too anti-communist: "You mean if he was running against Obama today? Oh my goodness. That's a good question...His views on communism were probably not the view I would appreciate today. I've got a much more global perspective today, and Obama touches that." Mitchell and NBC producers hardly stumbled upon Green by accident since the official Barack Obama campaign site features a video of Green as one of its "Republicans for Barack." In the NBC story, Mitchell cued up Green to explain how she rationalizes to her kids her party change: "I just keep saying, 'Look at the problems in the world, and look at who you think is going to be able to solve these problems?'" 2. Matthews: Obama Win Sends Message 'Despised' U.S. Ready to Change On the eve of the Iowa caucuses, Chris Matthews seemed to be issuing marching orders to Democratic voters as he declared that only a Barack Obama victory would send the message to the world that a "despised" America was truly ready to "change." In the event of an Obama win, Matthews offered, on Wednesday's Hardball, the following preview of his election night spin: "If I sit here tomorrow night reporting that he has won the Iowa caucuses the world will hear it and the world will be stunned because the United States of America, despised by so many, for lording it over the world these days, for dictating regional solutions by virtue of our military power will be saying, 'No more.' No more of invading countries. No more dictating a war-Americana. No more, 'our way or the highway.' No more Bush doctrine. No more Bush." 3. NBC's Taibbi Sees Obama 'Independent Streak' with Centrists On Monday's NBC Nightly News, correspondent Mike Taibbi oddly suggested that Barack Obama could be considered an "independent" or centrist politician as he included the liberal Senator as one of several politicians with an "independent streak" with whom New York City Mayor Michael Bloomberg has been associated: "Bloomberg was a long-time Democrat, turned Republican Mayor, turned independent, who has kept company with others with an independent streak, from Senators Joe Lieberman and Barack Obama to Governor Arnold Schwarzenegger." Such a juxtaposition seems especially out of place in light of National Journal's 2006 vote ratings which found that Obama had a more liberal voting record than all but nine of his Senate colleagues. 4. Meredith Vieira Touts Hillary as 'Natural, Warm' and 'Genuine'
512
reddit
arent accessible. 20's as well and struggle with the same thing and it can be pretty frustrating. Here has been my approach. When you masturbate make sure it's for at least 25-40 minutes to help build stamina and reflex control. Breath and be conscious of relaxing your pelvic floor muscles. I personally invested in a fleshlight for better practice and it has helped. As far as sex itself it always helps to talk with your partner and be honest. Let her know you struggle with this and you want to improve for her. What helps me is squeezing the tip before insertion. Also if you feel it happening early just pull out and take a cool down. It's surprising that by doing this how you kinda acclimate and get used to it. This takes a partner who is open to you doing this the first few times and over time you'll gain better control and be more comfortable. And always make sure to make sure she has an O!! Anyways hope this helps. I'm still struggling busting too quick my first go around as well. The worst was the bugs, I remember testing out an Xbox only to be greeted by a family of roaches as I ejected the disc drive. It was such a common occurence my store had trash bags and duct tape to seal the systems and games up then hand back to the customer. lets say Fallout 4 comes out in early 2015, and you buy the build a month before the game comes out, then these builds will probably be 100-150 dollars cheaper then what they are right now [HEAVY GAMING/EDITING](http://pcpartpicker.com/p/3CEpN): will play on ultra settings everything with mods, by the time Fallout4 comes out might be around $2200. also has to boost of being used for video editing, and would recommend getting 16Gigs of ram if you plan on doing photoshop/editing [HIGH END GAMING](http://pcpartpicker.com/p/3BXzu): will play high-ultra with some mods, might be around $1550 [ABOVE AVERAGE](http://pcpartpicker.com/p/3CkoT): will play all games ultra to high, some games with mods. might be around $1200 and is about the sweet spot for gaming altogether [AVERAGE](http://pcpartpicker.com/p/3BNt7): will be around $800 and play games medium-high with some games running ultra, you could choose to ditch the SSD for a better graphics card or large HDD [LOW END GAMING](http://pcpartpicker.com/p/3BNr3) no SSD but will play games last gen games perfectly fine, some next gen games might struggle a LITTLE. you could get a lower end card for an SSD if you wanted. Might Be around 650$-$700 EDIT: also that lower end one will still play games better than next gen consoles, so don't be disheartened by the "low end" EDIT EDIT: if you want to buy lower cost than that, buy a prebuilt. also don't by a "gaming prebuilt" they are usually over priced by about $200-$300 and can sometimes be hard to upgrade (alienware) Was at a DRB and a senior that I've never seen before, but is there, is wearing type 3's and a badge round his neck that rests right in the middle
512
goodreads
recently returned from Crimea, his body riddled with scars and his mind blank of the past two years. His last memory being taking tea with his brother's wife, it's as if he's never even been to the war. But he was and he has the scars to prove it...And a child his mother has brought to his family's footstep thinking Stephen was dead. There was nothing wrong with the story overall. I love Lorraine Heath's writing. The pace is always wonderful, the plot nicely structured, the characters nicely layered and fleshed-out, the chemistry between the main characters always combustible, the attraction palpable, the drama and angst always spot-on... But this particular story bothered me. And it's all because the initial premise, or even better, the big lie. Granted, the heroine didn't lie at the beginning. Everybody simply inferred that she was the child's mother, and she didn't correct them. But she also didn't tell the truth when she had the opportunity (before and after the marriage). She could've told him when Stephen confessed as to not remembering, she could've told him when she was being blackmailed...Yet she didn't. And then she was "heartbroken" because he didn't believe her when the (distorted) truth came out and she wanted to set the record straight. Can you blame him? The hero's reaction didn't help matters one bit with him being so quick to condemn her based on hearsay, without proof, and then even quicker to forgive her, once more thanks to someone else telling him "the truth". Either you trust or not, make you own damn mind based on what you know, what you've seen of her character, not based on what others tell you. Yes, the conflict was resolved pretty quickly, but still, the whole ordeal (the whole premise, actually) left a slightly bitter aftertaste. It was well-written and plotted-out, I just didn't like the base on which the story stood. I received this free from the author in exchange for an honest review Actual Rating - 4.5 Emeranne Goode is a part of a coven of witches in Snow Valley. One day, when Ems is in the forest, she stumbles upon a brutal murder of a witch. There is a new danger for the coven of teen witches, and all eyes are on Ems. Ems also dreams of a forest full of fireflies and a boy on the ground. Bennett Bassett is an immortal witch hunter, but he is conflicted between his humanity and his duty. While Ems and Bennett become closer, secrets are revealed and lives are put in danger. Around a year ago I read Firefly by the same author - you can read my review here. P.M. Pevato took into account her readers views and constructive criticism and went back and revised her novel. There has been a lot of improvement and it is very noticeable that she listened to her readers. I rated Firefly 3.5 stars, so you can tell I enjoyed the revised version more. In my other review I mentioned that the second half lost it's mojo
512
Github
fusb302_chip *chip) { return chip->logbuffer_tail == (chip->logbuffer_head + 1) % LOG_BUFFER_ENTRIES; } __printf(2, 0) static void _fusb302_log(struct fusb302_chip *chip, const char *fmt, va_list args) { char tmpbuffer[LOG_BUFFER_ENTRY_SIZE]; u64 ts_nsec = local_clock(); unsigned long rem_nsec; if (!chip->logbuffer[chip->logbuffer_head]) { chip->logbuffer[chip->logbuffer_head] = kzalloc(LOG_BUFFER_ENTRY_SIZE, GFP_KERNEL); if (!chip->logbuffer[chip->logbuffer_head]) return; } vsnprintf(tmpbuffer, sizeof(tmpbuffer), fmt, args); mutex_lock(&chip->logbuffer_lock); if (fusb302_log_full(chip)) { chip->logbuffer_head = max(chip->logbuffer_head - 1, 0); strlcpy(tmpbuffer, "overflow", sizeof(tmpbuffer)); } if (chip->logbuffer_head < 0 || chip->logbuffer_head >= LOG_BUFFER_ENTRIES) { dev_warn(chip->dev, "Bad log buffer index %d\n", chip->logbuffer_head); goto abort; } if (!chip->logbuffer[chip->logbuffer_head]) { dev_warn(chip->dev, "Log buffer index %d is NULL\n", chip->logbuffer_head); goto abort; } rem_nsec = do_div(ts_nsec, 1000000000); scnprintf(chip->logbuffer[chip->logbuffer_head], LOG_BUFFER_ENTRY_SIZE, "[%5lu.%06lu] %s", (unsigned long)ts_nsec, rem_nsec / 1000, tmpbuffer); chip->logbuffer_head = (chip->logbuffer_head + 1) % LOG_BUFFER_ENTRIES; abort: mutex_unlock(&chip->logbuffer_lock); } static void fusb302_log(struct fusb302_chip *chip, const char *fmt, ...) { va_list args; va_start(args, fmt); _fusb302_log(chip, fmt, args); va_end(args); } static int fusb302_debug_show(struct seq_file *s, void *v) { struct fusb302_chip *chip = (struct fusb302_chip *)s->private; int tail; mutex_lock(&chip->logbuffer_lock); tail = chip->logbuffer_tail; while (tail != chip->logbuffer_head) { seq_printf(s, "%s\n", chip->logbuffer[tail]); tail = (tail + 1) % LOG_BUFFER_ENTRIES; } if (!seq_has_overflowed(s)) chip->logbuffer_tail = tail; mutex_unlock(&chip->logbuffer_lock); return 0; } DEFINE_SHOW_ATTRIBUTE(fusb302_debug); static void fusb302_debugfs_init(struct fusb302_chip *chip) { char name[NAME_MAX]; mutex_init(&chip->logbuffer_lock); snprintf(name, NAME_MAX, "fusb302-%s", dev_name(chip->dev)); chip->dentry = debugfs_create_file(name, S_IFREG | 0444, usb_debug_root, chip, &fusb302_debug_fops); } static void fusb302_debugfs_exit(struct fusb302_chip *chip) { debugfs_remove(chip->dentry); } #else static void fusb302_log(const struct fusb302_chip *chip, const char *fmt, ...) { } static void fusb302_debugfs_init(const struct fusb302_chip *chip) { } static void fusb302_debugfs_exit(const struct fusb302_chip *chip) { } #endif static int fusb302_i2c_write(struct fusb302_chip *chip, u8 address, u8 data) { int ret = 0; ret = i2c_smbus_write_byte_data(chip->i2c_client, address, data); if (ret < 0) fusb302_log(chip, "cannot write 0x%02x to 0x%02x, ret=%d", data, address, ret); return ret; } static int fusb302_i2c_block_write(struct fusb302_chip *chip, u8 address, u8 length, const u8 *data) { int ret = 0; if (length <= 0) return ret; ret = i2c_smbus_write_i2c_block_data(chip->i2c_client, address, length, data); if (ret < 0) fusb302_log(chip, "cannot block write 0x%02x, len=%d, ret=%d", address, length, ret); return ret; } static int fusb302_i2c_read(struct fusb302_chip *chip, u8 address, u8 *data) { int ret = 0; ret = i2c_smbus_read_byte_data(chip->i2c_client, address); *data = (u8)ret; if (ret < 0) fusb302_log(chip, "cannot read %02x, ret=%d", address, ret); return ret; } static int fusb302_i2c_block_read(struct fusb302_chip *chip, u8 address, u8 length, u8 *data) { int ret = 0; if (length <= 0) return ret; ret = i2c_smbus_read_i2c_block_data(chip->i2c_client, address, length, data); if (ret < 0) { fusb302_log(chip, "cannot block read 0x%02x, len=%d, ret=%d", address, length, ret); goto done; } if (ret != length) { fusb302_log(chip, "only read %d/%d bytes from 0x%02x", ret, length, address); ret = -EIO; } done: return ret; } static int fusb302_i2c_mask_write(struct fusb302_chip *chip, u8 address, u8 mask, u8 value) { int ret = 0; u8 data; ret = fusb302_i2c_read(chip, address, &data); if (ret < 0) return ret; data &= ~mask; data |= value; ret = fusb302_i2c_write(chip, address, data); if (ret < 0) return ret; return ret; } static int fusb302_i2c_set_bits(struct fusb302_chip *chip, u8 address, u8 set_bits) { return fusb302_i2c_mask_write(chip, address, 0x00, set_bits); } static int fusb302_i2c_clear_bits(struct fusb302_chip *chip, u8 address, u8 clear_bits) { return fusb302_i2c_mask_write(chip, address, clear_bits,
512
StackExchange
to the function: any changes made will not be visible to the caller. You need to pass a char**: char *branch_id_buf = NULL; g_get_branch_id(&branch_id_buf); ... void g_get_branch_id(char **branch_id_buf) { /* Dereference 'branch_id_buf' within this function. */ *branch_id_buf = malloc(BRANCH_ID_LENGTH); EDIT: As commented by larsmans, consider returning a char* rather than accepting an argument: char *branch_id_buf = g_get_branch_id(); char* g_get_branch_id() { char* branch_id_buf = malloc(BRANCH_ID_LENGTH); ... return branch_id_buf; } A: Generally, it is a very bad idea to allocate in one module and free in another. This is exactly how you create numerous memory leaks in your programs. Your code is particularly problematic, as you don't only leave freeing to the caller, but also the responsibility to initialize the pointer to NULL That being said, it seems that you are only dealing with compile-time constants (?), so I don't understand why you even need malloc. Can't you do like this? static const char MAGIC_COOKIE[] = "z9hG4bk-"; #define MAGIC_COOKIE_LENGTH (sizeof(MAGIC_COOKIE)/sizeof(char)) #define BRANCH_ID_LENGTH (APR_UUID_FORMATTED_LENGTH + MAGIC_COOKIE_LENGTH) static void g_get_branch_id (char branch_id_buf [BRANCH_ID_LENGTH]); The array length in the prototype indicates to the caller that they should pass a pointer to a buffer with that length. Q: Unite Test: Serialization of 'Symfony\Component\HttpFoundation\File\UploadedFile' is not allowed I'm trying to write white test to test my API with file uploads. I'm following the docs about this using basic client request, not crawler. The unit test is: class RecordsControllerTest extends WebTestCase { private $client; public function __construct() { parent::__construct(); $this->client = self::createClient(); $this->client->insulate(); } public function testApiPostUpload($params){ $fileToUpload = realpath(__DIR__.'/../../resources/mpthreetest.mp3'); $file = new UploadedFile( $fileToUpload, 'mpthreetest.mp3', MimeTypeGuesser::getInstance()->guess($fileToUpload), filesize($fileToUpload) ); $this->client->request('POST', '/records/'.$params['createdRecordId'].'/upload', array(), array('file' => $file) ); $this->assertEquals(200, $this->client->getResponse()->getStatusCode()); } } When I execute the test I receive an error: Exception: Serialization of 'Symfony\Component\HttpFoundation\File\UploadedFile' is not allowed /path/to/project/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Client.php:165 /path/to/project/vendor/symfony/symfony/src/Symfony/Component/BrowserKit/Client.php:348 /path/to/project/vendor/symfony/symfony/src/Symfony/Bundle/FrameworkBundle/Client.php:143 /path/to/project/vendor/symfony/symfony/src/Symfony/Component/BrowserKit/Client.php:313 /path/to/project/src/Bundle/Tests/Functional/Controller/RecordsControllerTest.php:182 I have found this question for about the same error, but in this case the request is not sent to the controller and the problem is not the entity and implementing serialization. Anyone who knows how to fix this? Anyone who managed to make unit test for uploading file in symfony 2? A: You could try to NOT insulate the requests passing false as argument to the insulate method so try this: $this->client->insulate(false); instead of this: $this->client->insulate(); Hope this help Q: TCP passthroughs is not working for 80 port Hi I'm trying to implement use TCP passthrough based on SNI. It works for SSL but it's not working for 80. configuration is below: global log 127.0.0.1 local2 chroot /var/lib/haproxy pidfile /var/run/haproxy.pid maxconn 4000 user haproxy group haproxy daemon stats socket /var/lib/haproxy/stats defaults timeout client 30s timeout server 30s timeout connect 5s frontend https bind *:443 mode tcp tcp-request inspect-delay 5s tcp-request content accept if { req_ssl_hello_type 1 } acl mytonicssl req_ssl_sni -i staging.mytonic.com use_backend mytonic-ssl if mytonicssl backend mytonic-ssl mode tcp balance roundrobin stick-table type binary len 32 size 30k expire 30m acl clienthello req_ssl_hello_type 1 acl serverhello rep_ssl_hello_type 2 tcp-request inspect-delay 5s tcp-request content accept if clienthello tcp-response content accept if serverhello stick on payload_lv(43,1) if clienthello stick store-response payload_lv(43,1) if serverhello option ssl-hello-chk server server1 10.10.17.222:8443 check
512
s2orc
& Steel Muroran Works (Wanishi Private Technical School, ed., 56-57), and those graduates tended to stay with the company: only 12 had left their positions by February 1959, amounting to an extremely low turnover rate (Wanishi Private Technical School, ed., 56). That level of retention suggests that the school had achieved its founding purpose. The graduates in those seven classes landed in positions spanning a diversity of job types. A total of 51 graduates secured positions in the "analysis" category, the line of work with the largest number of new recruits, with others going into experimentation (38 graduates), inspection (35), precision fitting (34), crane operation (33), machine maintenance (19), electric machine operation (18), signals (17), machine fitting (16), and electric maintenance and rolling (both 15). Evidently, the fields of analysis, experimentation, inspection, precision fitting, and crane operation were the primary destinations for the 1952-58 graduating classes at Wanishi Private Technical TMU International Symposium on "New Quantum Phases Emerging from Novel Crystal Structure" TMU International Symposium on "New Quantum Phases Emerging from Novel Crystal Structure" 10.1088/1742-6596/683/1/011001 Magnetic Transition Temperature and Semiconductor-like Transport Properties of Mn-doped α-YbAlB4 S. Suzuki et al. 012010 Quantum tricritical fluctuations driving mass enhancement and reentrant superconductivity in URhGe Y. Tokunaga et al. 1-2-20 systems 012011 Effect of Ga Substitution on the Γ3 Doublet Ground State in PrIr2Zn20 T. Onimaru et al. 012012 Very Low Temperature Magnetoresistance in the Quadrupole Ordered System PrV2Al20 Y. Shimura et al. 012013 Heavy Fermion Superconductivity in Non-magnetic Cage Compound PrV2Al20 Y. Matsumoto et al. 012014 Low-temperature thermal expansion measurements in PrV2Al20 A. Magata et al. 012015 Analysis of 27 Al-and 93 Nb-NMR spectra of PrNb2Al20 single crystal T. Kubo et al. 012016 Single crystal 27 Al-NMR study of the cubic Γ3 ground doublet system PrTi2Al20 T. Taniguchi et al. 012017 Magnetic and thermal properties of NdT2Al20 (T: Ti, V, Cr) single crystals T. Namiki et al. 012018 La substitution effect on the magnetic phase transition of SmTi2Al20 R. Higashinaka et al. 012019 Low-temperature study of the Sm-based compound SmOs2Zn20 M. Tanahashi et al. 012020 Mixed valence states in (SmxLa1-x)Tr2Al20 (Tr=Ti and Ta) studied using X-ray absorption A. Yamada et al. As-NQR study of the hybridization gap semiconductor CeOs4As12 M. Yogi et al. 012031 Non-Fermi Liquid Properties in a Cubic Pr-Based Compound PrPb3 under Magnetic Fields T. Yoshida et al. 012032 High Magnetic Field Study of Elastic Constants of the Cage-structure Compound SmBe13 S. Mombetsu et al. Journal of Physics: Conference Series 683 (2016) 011001 doi:10.1088/1742-6596/683/1/011001TMU International Symposium 2015 IOP Publishing Journal of Physics: Conference Series 683 (2016) 011001 doi:10.1088/1742-6596/683/1/011001 2 012021 Low temperature properties of ZrTr2Zn20 (Tr = transition metal) with a pyrochlore lattice S. Hasegawa et al. Frustration systems 012022 Quadrupole order in the frustrated pyrochlore magnet Tb2Ti2O7 H. Takatsu et al 012023 Quantum spin liquid and electric quadrupolar states of single crystal Tb2+xTi2-xO7+y M. Wakita et al. 012024 Experimental exploration of novel semimetal state in strong anisotropic Pyrochlore irradiate Nd2Ir2O7 under high magnetic field Z. M. Tian et al. 012025 Frustrated magnetism in a Mott insulator based on a transition metal chalcogenide
512
gmane
just fine. This is the second time I've seen this specific error though, which has a habit of only showing up when important people are using the app ;) Any hints/tips for hunting down or even trying to reproduce this bug? Cheers Now that autogen is at 5.18.10, it really does not build with guile anymore and I cannot cheat and revert the change to guile2. Anyhow, lilypond still has a library dependency on guile and from the discussion on the lilypond mailing list (and other lists), I do not think this is likely going to change, soon. This means, I cannot build for example audacity on a system with lilypond installed and anjuta and lilypond cannot even be installed together. Has anyone tried to make guile and guile2 coexist? They share files: bin/guile* man/man1/guile.1.gz share/aclocal/guile.m4 -- but as far as I see nothing in include or lib. Thoughts? Cheers, Jan Henrik Hi all, Erin, James and I spent Thursday and Friday in Montreal learning about the McCord museum. It was great to get a chance to work with our colleagues at the McCord in person. We learned a lot about how the museum works and got to see first hand the exhibit that will likely be the source for inspiration and perhaps even the testbed for many of the things we build through Engage. We'd like to share what we've learned with the community in two ways - in Breeze as well as in the wiki. If you're interested, come meet in Breeze tomorrow at 9:30 Eastern and look for the notes that will be going up on the wiki. Thanks Nicole, Hughues and Stephanie as well as all the other people at the McCord museum that we met with for taking the time to share so much information with us. Michelle Hey all, Did anyone managed to compile and start the latest linux 3.1-rc9 without mmu ? I compiled a 2.6.38 with device tree and nommu and got it started. After that I updated the linux branch, updated the config and compiled the system wit the same DTS I used successfully before. Compilation succeeded without errors, but the system isn't starting at all. Not even the message "Linux version …." (fist line) is showing up. I think something is wrong with the addresses but I check a few times already. Any idea? Kind regards Erik Summer School on Verification Technology, Systems and Applications October 26-31, 2014, University of Luxembourg, Luxembourg The summer school on verification technology, systems & applications focuses on fundamental aspects of verification techniques, their implementation, and their use for concrete applications. It is organised by the Universities of Liège and of Luxembourg, the Max-Planck-Institut für Informatik in Saarbrücken, and the Inria Research Center in Nancy, and will take place at the Interdisciplinary Centre for Security, Reliability and Trust in University of Luxembourg, Luxembourg from October 26-31, 2014. This year it is a co-located event with ICFEM 2014, which will be held in Luxembourg from November 3-7, 2014. PhD students can apply scholarships in order to attend the conference
512
StackExchange
it use below : public function modifyall(Varien_Event_Observer $observer) { $products = $observer->getCollection(); foreach( $products as $product ) { $originalprice = $product->getPrice(); $customprice = $originalprice+ 100; $product->setPrice($customprice); $product->setCustomPrice($customprice); $product->setOriginalCustomPrice($customprice); $product->setFinalPrice($customprice); } } Q: Execute Code only after Multiple Promises Fulfilled in EmberJS I have an EmberJS ArrayController. I want to have a computed property on this controller, neurons, that is a subset of the model property. The subset is computed based on a toggle button in the sidebar which is bound to currentDataset. Another computed property, activePlots then depends on neurons; the Neuron model has a hasMany relationship to Plot, and activePlots loads all the plot objects associated with each neuron object in neurons. Currently I'm trying to do this with mapBy, but I'm running into a problem. Each retrieval of a Neuron object's plots returns a PromiseArray. I need to manipulate all the returned plots at once. I understand I can call then on the promise result of an individual call get('plots'), but how do I execute code only after the get('plots') call has returned for ALL neurons? neurons: ( -> @get('model').filterBy('dataset', @get('currentDataset')) ).property('model', 'currentDataset'), activePlots: ( -> plots = @get('neurons').mapBy('plots') # ...code to execute after all plots have loaded ).property('neurons') UPDATE: Picture of console output from console.log(plotSets) inside the then callback to Ember.RSVP.all(@get('neurons').mapBy('plots')).then (plotSets) -> console.log(plotSets) A: There is a handy method for combining promises: Ember.RSVP.all(ary) takes an array of promises and becomes a promise that is resolved when all the promises in the input array are resolved. If one is rejected, the all() promise is rejected. This is very handy, for example, when firing off multiple parallel network requests and continuing when all of them are done. Q: Python - How to print out all json into a list So im trying to make a script that makes requests on a website and after that it compares if there is new item added into the requests meaning if there is one - alert me, if there isnt any. requests the same page in few minutes. So what im haivng issues now with is to actually print out to a list where it tells me: TypeError: string indices must be integers but whenever I print the element it just gives me a print of "id" which I can't understand the reason - The code look: resp = s.get(url) list = [] i = 0 for element in resp.json()['threads']['product']: print(element) #<--- this gives me a print of "id" list.append(element['fullTitle']) #ERROR - list.append(element['fullTitle']) #TypeError: string indices must be integers i+=1 print(list) while True: try: new_list = [] url = 'https://hellowebsite.com' resp = s.get(url) for element in resp.json()['threads']['product']: new_list.append(element['fullTitle']) print(new_list) for link in new_list: if link not in list: print('New item found! - ' + link) else: print("No new itemfound!") time.sleep(10) except: randomtime = random.randint(6, 12) Json code: (its not fully completed but it looks like this) { "country": "GB", "locale": "Thrill", "threads": [{ "id": "f44291998750ce50301f36607c7996b5db5a9c3b", "interestId": "57d4d929-694c-4fdd-9277-f0df465cd7c7", "createdDate": "2018-06-26T08:05:24.000", "product": { "id": "b0bfdaa1-140c-54de-b040-66854ec62d1b", "interestId": "a53256c1-983b-43d5-895c-c5b7c3eedc85", "colorCode": "100", "fullTitle": "Item Number 1", } }, { "id": "0c132053034f79c08dd474d6371875fe421e8694", "interestId": "ceb1c5f5-4ff2-43f4-8330-d537d1a4f5f9", "createdDate": "2018-06-26T08:24:42.000", "product": { "id":
512
StackExchange
used often at all, it might be ok. If you need some kind of performance, you will need Oracle Text (or some external indexer). To get substring indexing with Oracle Text you will need a CONTEXT index. It's a bit involved as it's made for indexing large documents and text using a lot of smarts. If you have particular needs, such as substring searches in numbers and all words (including "the" "an" "a", spaces, etc) , you need to create custom lexers to remove some of the smart stuff... If you insert a lot of data, Oracle Text will not make things faster, especially if you need the index to be updated within the transactions and not periodically. Q: Real division with arbitrary-precision discrete integers, how to? I need a reliable arbitrary-precision division of discrete real numbers (ℝ), using arbitrary-precision discrete integers (ℤ). It is a classic problem, but it is not easy to verify the good solutions on the Web. I need a division algorithm to calculate $N/D$ with the following "real life" computational constraints: The result can represented as "integer part" and "fractional part", that is ordinate pair $r=(i,f)$, or by a integer and a standard divisor like $10^n$. The algorithm is a function $f(N,D)$ that use bitwise operations and/or basic arithmetic operations; and a fast function like $SRT(n_0,d_0)$, that returns the quotient $Q_0$ and the remainder $R_0$, so it returns the pair $(Q_0,R_0)$. All values ($i,f,n_0,d_0,Q_0,R_0$) are arbitrary-precision discrete integers (example)... How to calculate? Are there optimized algorithms to do it? COMMENTS In nowadays is commom to use floating-point arithmetic with a reasonable number of bits (e.g. 32)... And to ignore the precision problems. In general programming languages offer simgle and double precision, but no Quadruple-precision floating-point data type. When you can not ignore precision problems, the programming languages also offer some alternative, such as the arbitrary-precision discrete integers (e.g. Javascript offer BigInt), but it only offers integer division algorithm, with quotient Q and remainder R. No function to return "integer part" and "fractional part" (that's what I need). Related question this one have good clues, but no objective answer about best algorithms (to obtain "integer part" and "fraction part" from integer division). A: Given positive integers $\ N, D,\ $ and $\ P>0.\ $ Define $\ I := \lfloor N/D\rfloor\ $ while the remainder $\ R := \mod(N,D)\ $ or $\ R := N - I\cdot D.\ $ The fractional part $\ F := \lfloor (10^P \cdot R) / D\rfloor.\ $ The result returned is $\ (I, F)\ $ which represents $\ N/D \approx I + F/10^P.$ Q: What does the number in parenthesis really mean? I always thought that the number in the parenthesis represented the field lenght? However, I understand that is not always the case. Maybe it's a mysql issue? Someone told me if I set a field to 9 characters long, I can add a value that's more than 9 characters but only the first 9 will be saved. Example ... create table "person" ( id INT, age INT(2)); If that's the case, shouldn't
512
reddit
and what not. Looks like it's time to learn to drive stick :) That being said I am trying to secure an international license to avoid any confusion since I will be driving a lot. You can defend your butt buddy Skadogshit all you want. Just don't be a hypocrite by saying Rush is underperforming and needs to be kicked in the same breath you're defending Ska. Rush probably does need to go but if he does Ska needs to go as well. In fact arguing anyone should stay on that team other than Tim and maybe Golden is delusional. Btw didn't delete shit, mods are clearly Ska fanboys as well It's a bunch of nonsense people parrot without knowing what it means. I get that all the time because I choose to be single. It's fuck all ridiculous. But, you do have to come to terms with the fact that you will be alone at times. What makes the difference is friends you can call on and a support system. I have female friends that I am not involved with and it works very well for me, because I am truly not interested in a relationship. We share common interest and they often help me with questions about people I am interested in dating. One thing holds strong: when I discuss TRP theory they totally get it. But they still like the idea of a relationship. most of them are in one. But if you are OK with yourself and OK with not drinking the beta Kool-Aid then... Bravo! This is the most ironic statement of the call: &gt;Marcario said: "It would have been nice to have these conversations before a resolution was passed to rescind a national monument, which as I said, is a historic action. ... You would be hard pressed to find a single mention of Bears Ears from any local environmental group just 3 months ago. (I'm gay) In June last year, I met a girl online and we became friends real quick. Then I got a crush on her, confessed and it turned out that she liked me too. After around 1,5 months of being a couple without ever meeting in person she was finally able to visit me for a week (we live 150km away from each other). On the first day she visited she kissed me while we were sitting on my couch. It was my first kiss and I was so nervous that I didn't kiss back at first. Fast forwars a couple of hours we were cuddling in bed and started kissing a bit more. My hand went up her stomach, then chest and in the end it was between her legs. I didn't get undressed at all that time, because I was too insecure to do that. The next day same thing happened, but we were both naked this time and both did stuff to each other. I was really nervous because she was my first and also older than me, but I can't imagine it being better. I was already in love
512
realnews
the delicate flowers at Media Matters for America, who gave some internal Fox News memos to Howard Kurtz of the Daily Beast. In the memos, Bill Sammon, a Fox News vice president and Washington managing editor, instructed his staff on Oct. 27 to use the term government-run health insurance or government option instead of public option when reporting on the political battle over government health care. Sammon also instructed his employees to call the public option theso-called public option. The call to refer to the program as the government option instead of the public option came from Republican pollster Frank Luntz, Media Matters and Kurtz report. But this shouldn’t disqualify the new term from the Fox News stylebook. Government option is superior to public option in that it emphasizes that the government—and thus the taxpayers—will be footing the bill. As a modifier, public has many nongovernmental uses, as in public appearance, public figure, public display, public-key cryptography, public editor, public enemy, public storage, and public opinion. But when government is used as an adjective, there is no such confusion. Does that make Fox News’ semantic solution superior? I’ve always thought that Social Security should be renamed Government Ponzi Scheme. I’d also like the Export-Import Bank to be renamed the Government Subsidy Depot—but that’s another column. That Sammon issued a memo directing Fox News reporters to use a phrase he considers more accurate hardly constitutes “spin,” as the headline to Kurtz’s piece has it. If government option is spin, isn’t public option spin, too? Usage cops walk the beat at every large news organization, commanding reporters to obey the ruling stylebook. For instance, some newspapers used pro-life and pro-choice in their abortion coverage until somebody pointed out that being anti-pro-life wasn’t the same thing as being pro-death—and that pro-choice was closer to meaning pro-abortion, although that gets slippery, too, since you can be against the pro-lifers and not want to have an abortion yourself. That the Washington managing editor of Fox News disagrees with the journalistic pack on how to cover a story is no crime against journalism. Hell, he should be celebrated as a minor hero and given a balsa-wood and tin plaque to commemorate his independence. There are reasons to hate Fox News. This isn’t one of them. ****** However, I would prefer that second references to Rupert Murdoch on Fox News describe him as a genocidal tyrant. Send your stylebook ideas to slate.pressbox@gmail.com and luxuriate in the glitter of my Twitter. (E-mail may be quoted by name in “The Fray,” Slate’s readers’ forum; in a future article; or elsewhere unless the writer stipulates otherwise. Permanent disclosure: Slate is owned by the Washington Post Co.) Track my errors: This hand-built RSS feed will ring every time Slateruns a “Press Box” correction. For e-mail notification of errors in this specific column, type the word option in the subject head of an e-mail message, and send it to slate.pressbox@gmail.com. Like Slate on Facebook. Follow us on Twitter. WASHINGTON — Passengers are moving through Newark Airport security checkpoints a lot quicker since the installation
512
ao3
You guys heard everything?” he asked. Tim glanced at Cassandra, whose expression betrayed nothing. “Yep. It wasn’t so hard, especially since Jason started yelling at the end,” Tim shrugged. “Jason does not agree. Leave. He wants to leave,” Cass said, as if prodding Dick to go on. “He hates the idea of staying here,” Dick agreed, “he thinks we’re treating him like a problem. He’s not. He just _has problems_ that we need to solve,” he muttered. “He doesn’t want our help, Dick. What did Bruce say?” Tim asked. Dick sank down lower into the sofa, as if he wanted to bury himself there. Which wasn’t such a surprise, since he looked like death – he didn’t have a good night’s sleep either. “Bruce still wants to send him to Arkham for therapy. He thinks Jason isn’t himself,” Dick said. _He hasn’t been himself since the day he got resurrected;_ Tim wanted to add to the silence that followed. He chose not to say anything, because he knew he would only succeed in dampening Dick’s mood. “What about you? You think we should do that?” Tim ventured. Cassandra was watching their exchange carefully. “…Arkham has good psychologists and therapists. But it’s a bad idea. For once, Jason’s going to think we’re treating him just like another criminal. We’re finally getting along, kind of, and I don’t want this to become a setback for that. Secondly, Joker’s there. You put him anywhere near Jason, and everything’s gonna blow out of control. And you saw how he was, Tim, what he did. He’s gotten worse,” Dick said. He put his head in his hands. They were all silent for a moment. “Forget – forget past. Jason safe now with us. We focus on one. We help him,” Cassandra said. She struggled to search for the right words, but Dick and Tim understood. “Cass is right. It… it doesn’t matter what he did last night. We’ll just have to help him now, whether he likes it or not,” Dick said. Which was all fine and well for them, but Tim couldn’t help but think Jason wouldn’t appreciate it. Someone, somewhere along the line was going to get hurt – he just couldn’t pinpoint who. **Notes for the Chapter:** > Yeah. Jason thinks that this slip-up automatically brings him in the bats' bad books. And yeah, it does. Feedback is much appreciated! I also don't mind hearing some ideas out. Until next time then. Thanks for reading! 5. Apology **Summary for the Chapter:** > Jason leaves the Manor, talks to one of his victims and carries out his plan on leaving Gotham City. The family panics when he goes missing. **Notes for the Chapter:** > Hey, guys, I had fun writing this chapter so I hope you'll have fun reading it. I'm trying to mellow out Jason's personality here. He's not Lazarus-crazy in this fic, but more clear-headed. He's still a snarky piece of crap though. “Master Jason, I have prepared lunch. Would you consider joining the family at the dining hall?” Alfred asked. He wasn’t
512
ao3
over between us. And yet... you tried to mend our broken relationship by destroying what I had with Lucas. I switch off my phone and angrily toss it to the side. Lucas. Is it a coincidence that your name is associated with ‘Light’ as well? But unlike Lucille, who burned bright like a supernova, you were a gentle spark that could easily be extinguished. And yet you offered me comfort and peace in ways I’ve never imagined. When I was with you, I’d feel as if I was back in my grandparents’ house, warming my shivering hands near the fireplace on a cold winter’s day. I could be myself and not have to worry about being different. You brought me hope, Lucas. Hope that someone as broken as me could find happiness. I clench my fists and my fingernails dig into the palms of my hands. I welcome the pain and let it slowly wash over me. Would Lucas believe me? Would he even love me? Now, that he knew that I was bipolar? I hated myself for not telling him. I desperately wanted to, I swear. But I was afraid that he’d see me as something broken beyond repair, as a discarded item lying on a dusty shelf that no one ever wanted. _“I don’t want crazy people in my life.”_ Who would, right? My parents certainly didn’t. But alas they didn’t have a choice. My mom cried for days when I was first diagnosed. Her brother, David, was bipolar too. Loony David, that’s what the neighborhood kids used to call him. And I would angrily punch those who did. He was a kind and cheerful man with a captivating smile. But whenever he’d visit us, I’d sense my mother’s shame and ... fear. _“Eliott, when you are alone in the house and uncle David comes by, do not open the door, ok?”_ My mother was afraid of her own brother, afraid that he’d somehow cause me harm. Uncle David died when I was seven. I later learned that he had committed suicide... I bite my lip. Is suicide the only way out of this misery? I struggle to take a breath. Last year, I had seriously contemplated about ending my life. I would no longer cause any pain or suffering to those around me. A simple solution to end all problems, right? I remember sitting here with a razor held tightly in my right hand hovering just above my left wrist. Scared and completely alone in the growing darkness. But something held me back. I went home and told everything to my parents. About the ongoing bullying at my school, my rocky relationship with Lucille, my stupid kiss with Idriss (whom I avoided ever since) and being pansexual. My parents were accepting. My mother told me then that she still blamed herself for not reaching out to uncle David when he needed her most. “ _Ever since I was little, Eliott, I was ashamed of having a mentally ill older brother. How stupid of me. One does not feel shame
512
realnews
Today/Gallup poll released Monday. The poll found that 39 percent of respondents think Ryan is a good or excellent choice for Romney, compared with 42 percent that think he's a "fair" or "poor" choice. That's the worst mark since Quayle was George H.W. Bush's nomination in 1988, according to Gallup. Here's a look at the past: It should be noted, of course, that the Bush-Quayle ticket won in 1988. And a high mark on these polls — like in the case of John Edwards in 2004 — is not a precursor to victory. The Ryan nomination has generated a flurry of conservative enthusiasm over the last two days. Romney pollster Neil Newhouse told USA Today that he expects that to expand as more of the electorate gets to know the relatively obscure Ryan. "All these numbers indicate is the simple fact that Congressman Paul Ryan was not a nationally known figure prior to being named as Gov. Romney's vice-presidential pick," Newhouse said. "Congressman Ryan's selection reinforces the seriousness of the issues that will be debated in this election and President Obama's failure to get Americans back to work and his inability to strengthen the middle class." The poll also found that Ryan boosts enthusiasm for Romney by about the same mark as Sarah Palin did for John McCain in 2008 — 17 percent say they're now more likely to vote for Romney, including 36 percent of Republicans. "Six thermal power generating stations are currently unable to generate electricity and have therefore been shut down," the Transmission Company of Nigeria said Nigerian officials were working Monday to prevent the "collapse" of the electric grid after they had to close down six power plants following a pipeline failure and "technical issues" at Shell gas wells. Swathes of Africa's most populous nation of 180 million plunged into darkness on Saturday night during a World Cup match between Nigeria and Croatia. "Six thermal power generating stations are currently unable to generate electricity and have therefore been shut down," the Transmission Company of Nigeria (TCN) said in a statement. "With a total loss of 1,087 Megawatts into the grid, the transmission system has become quite fragile and the TCN is working hard to avert a collapse of the system by engaging in load shedding." Electricity production has oscillated between 2,500 megawatts and 4,500 megawatts out of capacity of 7,000 megawatts. South Africa, which has a third of Nigeria's population, produces 45,000 megawatts. Lack of public lighting in some parts of the country created a fertile breeding ground for crime, pushing some citizens to take matters into their own hands. Reversing the country's crippling power deficit is seen as key to driving economic growth but has evaded successive governments because of mismanagement, incompetence and vested interests. City A.M. Reporter US industrial production braked sharply in February, held back by severe winter storms that slammed parts of the country, while manufacturing activity in New York state stalled this month, figures showed yesterday.Analysts said the data did not alter their views that the factory-led economic recovery remained on track, given
512
gmane
than spewing verbose failures if it's not installed? (and are the locations ok for irix/bsd/whatnot too...?) ... also abort if bc not found (common.filter requires this, my minimal testing root didn't have it and much error spew ensued... nicer to check up front IMHO) -Eric I posted this a week ago. I've since found an answer. The Telnet, ping, SSH etc worked because they use smaller packet sizes. I had to increase the MTU on the tunnel interfaces of the routers to be 1524. All is happy, and EIGRP is dynamically updating routes across several tunnels. Works like a dream. Randy Adams Hi, RTEMS participated in this last year and we had some nice work done. The focus is on smaller tasks -- generally less than a week. Mentoring a task is not as large a commitment as it is for the Summer of Code. If you have ideas for small tasks, pass them along. Last year, the most visible tasks done werefirst cut at a lot of BSP wiki pages, a new logo (on stickers which debut at FSW), and the graphs in the coverage reports. If we are accepted, mentors are appreciated. Contact me privately about that. General questions can stay on the list. Thanks. --joel I don't wish to sound glib, but Rob's post from last week seems relevant: https://groups.google.com/d/msg/golang-nuts/3SBKSFRVbWA/YiWttSoZLLYJ IMHO, Go's semantics with respect to pointers are the most reasonable I've seen. Most of the time, I only have to worry about the types in the function signatures. Omitting the distinction between using the arrow operator or the dot operator (like you would see in C/C++) makes this even easier. By removing a programmer's ability to choose memory layout -- or worse, having a compiler option to "protect" the programmer, as you suggest -- you hide an important decision about how to lay out your data structures. As you've already seen, picking the wrong layout costs you at runtime. Obfuscating the decision is more confusing than making it be explicit. I respect that this sometimes trips up newcomers. Ultimately, I feel that Go's design struck the right balance between ease of learning and ease of use. Ross Light | Software Engineer | Q+y20lMP6miZpvHU@example.com When I run "make devrel" using the Riak Search 0.13.0 tarball I have to set the merge_index data_root to get the dev cluster to index. I guess it's not a big deal because most people are building the dev cluster using a git clone. I just wanted to let Basho know about the issue. Eric. I was wrong. Mitel still supports their Managed Applications Server product (Mitel's fork of SME Server). There is information here: http://www.mitel.com/services-support/accessibility/managed-application-server/ManagedApplicationServer/ http://www.mitel.com/products/mitel-applications-suite/ Again, I have no idea what the "Managed Application Server" is. Going to the first link, I had a real quick text chat with a customer service person show said "Yes, Manged Application Server is an actively supported product that one can purchase." Greg Seems to be missing? It would be great, because it would contain an Index and Search features automatically. Now the search is very hard to do,
512
realnews
really unfortunate situation and I can't recall one quite this serious in quite some time," he said. "I think we really need a system where people assess the risk quickly and take a very broad view as to how this could affect Canadians and then do the right thing." At the Society of Obstetricians and Gynecologists of Canada, Blake said the problem also suggests – or leaves the perception – that contraception for women is not considered a priority health issue. "Women have had the benefit of a completely reliable high-quality network of contraceptive options in Canada and this is simply not good enough," she said. "One would hope that there's more enlightenment at Health Canada." The recalled pills carry the lot number LF01899A. Reports suggest that the batch contained about 50,000 packages. Photo: Contributed Cash is nice, but your lender wants to see your statements. When you are getting ready to purchase a home, most likely you will only concern yourself with the knowledge that you have access to sufficient funds to complete your purchase. You may not be aware that there are very specific rules that every lender must follow to confirm the source of your down payment funds. Proving the source of your down payment funds is a requirement that every lender will need prior to issuing a final approval for your mortgage, and if you are unable to provide the required documents, your mortgage may not fund on time. These rules are to comply with Canada’s Anti-Money Laundering & Anti-Terrorist Financing Requirements, along with the B-20 guidelines from OFSI (Office of the Superintendent of Financial Institutions). If the down payment is coming from your own resources, you must provide a full 90 day history of the account or accounts (savings, chequing, RRSP, mutual funds, etc.) where the funds are located. You must also provide the source of any deposits over $1000, excluding your payroll deposits. If your down payment funds are in multiple accounts, then you need to provide statements covering 90 days for each of these accounts, ensuring that the statements confirm ownership. Don’t black out anything on the statements. So you can see that any cash you have under your mattress or in a shoe box will not satisfy the requirements. Your best course is to make deposits regularly into your bank account. If all, or a portion, of your down payment is coming as a gift from an immediate family member, then they will need to sign a gift letter confirming that no re-payment of the funds is required. They will also need to show that the funds are available in their bank account, and you, in turn, will need to provide confirmation that the funds have then been transferred into your bank account. There are specific requirements for other sources of down payments funds such as the sale of an asset, bridge financing or if you are planning to use borrowed funds, so please ensure that you check the requirements in advance with your mortgage broker. It is always best to be organized with
512
s2orc
=1 γ cos ( 2 π 52 ) . Cyclical patterns are captured by the Fourier series, whose number of terms is defined using model selection criteria. To account for year-specific mortality baselines and to partially accommodate autocorrelation of the weekly counts, random effects 0 ∼ ( 0 , σ) are introduced. Parameters are estimated by maximum likelihood using adaptive Gaussian quadrature integration for the random effects. In Italy, the Omicron variant was observed since mid December 2021. Accordingly, the weekly predictions of mortality data for January and February 2022 are considered (formally, we consider the first 8 weeks of 2022). The predictive model is trained on data from 2011 to 2019. Excess mortality is obtained by subtracting the expected deaths from the registered all-cause deaths. Results Estimated COVID-19-induced excess deaths are reported, along with 95% prediction intervals in Table 1 . If zero is included in the intervals, no difference from the expected number of deaths is estimated, i.e. there is no excess mortality. The Omicron effect on deaths is relatively straightforward. Between the end of January and the very first days of February, the death curve peaked, and most regions (14 over 20) suffered from relevant excess mortality, with even 15% more deaths than expected. In February, the situation improved: we estimate excess mortality for 11 regions over 20. The excess mortality in February is limited to Southern and a few Central regions, with an overall much smaller excess mortality than in January, with the exceptions of Abruzzo, Molise and Puglia. Overall, the situation is far from being as critical as during previous waves. Discussion Our analysis leads to an obvious question: "is the estimated excess mortality linked to the Omicron variant? ". At first glance, the answer is yes. Integrating our analysis with the officially reported COVID-19 deaths, the answer is still yes, but with some shades. In 2022, the number of official COVID-19 related deaths is higher than the estimated excess mortality. The simplest justification for this result is that some people who died from COVID-19 would have died anyway of other causes (three or more comorbidities are reported for more than 65% of Italian COVID-19-related deaths, according to official reports). Heterogeneity is a fact: estimated excess mortality is clearly region-specific. Indeed, death reporting and the health systems across regions are largely heterogeneous. With the available data, it is impossible to conclude if such differences are due to misreporting the main cause of death. As suggested by a reviewer, such a heterogeneity may also be linked, and partially explained, to the heterogeneous vaccination coverage at the regional level. There is a literature supporting this hypothesis (see e.g. Zhou et al., 2022 ;Stoto et al., 2022 ;Kirpich et al., 2022 ), but further analyses are required for the Italian case. A harvesting effect may also explain the differences, and played a role in anticipating the death of more at risk people. That idea should be investigated in detail when deaths-by-cause will be available (see e.g. Grande et al., 2022 , for a premiere) together with individual hospitalrelated information, which
512
amazon
I give it to them with or without kibble and my crew always eat every drop. It is obviously pure salmon ground into a "stew" like consistency. The coffee is delicious and stays hot. However it is very easy to mess up the setup. If the carafe is not in the right place, the water goes through into the brewer and has no place to go but the counter and the floor. My husband messed up in a new way today, putting the keep-hot plug instead of the brew plug on. We are not stupid people. I've never had a small appliance that was so difficult to avoid big errors with before. I would not recommend this coffee maker. I would get rid of it today but we spent so much on it! Great texture, alas there were a few that the lead cores were broken 3/4 of the pencils. I was trying to find a good youth volleyball, and because this one is an outdoor ball it is super hard. Not friendly for beginners at all. Great very easy to install A great rice cooker and the perfect size for 2 people (with leftovers :) Works well with other grains including steel-cut oatmeal as well. The timer makes using this even easier -- I put oatmeal and fruit in it at night and wake up to a delicious hot breakfast, yum! same size I've always ordered from DSW. To short Nice little pump for fountain This was an amazing read. There is so much about WWII that we don't know. This book is about the heroism of Jan and Antonina Zabinski, and of the many who risked their lives for the unfortunate during this horrible time. It is also about the Nazis, who not only tried to create the perfect human race, but also experimented with perfecting the flora and fauna as well. It is a very informative book, and also very sad. These are not what I call plush rugs, but for the price they are good. Overall I am happy with the purchase. Not sure about this book. I liked some of it, but VERY different. I love this book! It has to be the best one, even though I can't really judge, because the magical world of Harry Potter is all so good! I highly recommend this book, and the same goes for all the other Harry Potter books! Fits perfectly on back of bathroom cabinet. Love it! I missed the detail description line that these did not include the circuit board. Odd that they are the same price as those that have the board. They appeared to be made ok other than that, but obviously could not use them to test fully Right connector. Right length. Only 1 O-ring. Off to the hardware store I go. Didnt work as expected. They slid off her hands and weren't very grippy. These seeds came out good. I have bought 2 sets so far and love them. easy to install and very bright AMAZING and great quality I bought this mattress three months ago to replace a lumpy spring mattress. I sleep so well I'm very SATISFIED WITH
512
realnews
the WFN made clear that his work is just as important: “One of every three bites of food we eat is dependent on pollinators. The provision of this free ‘ecosystem service’ is worth an estimated $250 billion annually to the global economy. Without pollinators, the planet’s food security would be at risk, with significant livelihood ramifications; and billions would need to be spent to pollinate crops artificially. However, the increased use of agricultural pesticides and loss of natural habitats has led pollinator numbers to decline dramatically.” Lynsey Barber Horton may have heard a Who, but Hay Festival audiences were treated to a tale of how the Bank of England turned to Dr Seuss for inspiration. The literary festival held over the bank holiday weekend heard from ex-deputy governor Dame Nemat Shafik, known as Minouche, who confirmed the children's book was used to help it make reports more readable. "Dr Seuss was a genius of getting young people to read by using very simple language and very short words," she said. "We did a little research at the Bank of England on the linguistic complexity of our own publications and found that our typical publications, like our inflation report, were only accessible to one in five of the population of the UK, given average literacy levels. Clearly that’s not good enough. It’s not about dumbing down … the people who really know their stuff can explain things in simple and accessible language." An analyst last year said the books, beloved by children and adults and famed around the world, were a good example for the Old Lady of Threadneedle Street to follow after it found one sentence in a report that was an eye watering 77 words long. "There appears to be plenty of scope for those in the financial sector to improve the accessibility of their work," said Jonathan Fullwood. New Delhi: Skore, TTK Protective Devices Ltd owned-condom brand, has partnered with popular West Indies cricketers, Chris Gayle and Dwayne Bravo, to promote its soon-to-be launched product range called Champions. The new advanced range offers multi-textured as well as ultra-thin condoms. Currently it offers regular, coloured, flavoured, dotted and ribbed variants. Both the sport stars will not just promote the brand but also recreate Bravo’s famous Champion song, which was launched just before the ICC World T20 that gained massive popularity. The song had well over 27 million views since its release in March 2016. Chris Gayle was also one of the celebrities to be featured in the official video of the song. The brand has started Twitter contest #SKOREfeatDJBravo, where the cricketer duo invited women to shake a leg and send in their entries to feature in the song’s video. The winners will get a chance to feature in the Indian Champion video. Skore is pumping ₹ 6-7 crore in the campaign, which will be promoted across platforms in September. The condom brand is handled by creative agency McCann-Erickson and media agency Mindshare. Launched in November 2012, Skore is the third-largest condom brand after Manforce and Moods in the commercial condom
512
nytimes-articles-and-comments
a U-haul trailer attached. This was all before cell phones and Google Maps. In today's world of highway stops and confiscation of money and personal property by police and targeting license plates (California plates mean you must be carrying drugs)- I am terrified of driving alone or with anyone- outside of my state: I miss the freedom and adventure of being a road warrior but The Sandra Bland Effect is real to me and many black women. @Jessica Well OK, but who bears the legal responsibility for any mistakes made? The PA or the NP? No, the physician. Who is going to get sued if an APN or PA makes a serious error? The physician. When midlevels are ready to take on full responsibility, go ahead and pay the full malpractice premium, take the full responsibility for any medical error, and see how that feels. @MidtownATL ... not when Trump's re-election prospects are in the tank. This is pure political theater. BTW: If it's true commercial grade fireworks have been used (and there is some question about that) it would suggest the protests have been infiltrated by government agents. Who better to lay hands on such things? @Chris "...she abuses and belittles here staff by throwing things at them, speaking to them in a demeaning way, and forcing them to do menial tasks (like cleaning her dishes)." That's it? That's all anyone can say against her? If she can do everything she says she would do for the country - and evidently she does everything she says she would do for her state, given her easy victories - then I'm sure we can find her some thicker-skinned staff to help her out. I mean, of all the flaws tied to almost all of our Presidents (if not all) versus what they each accomplished (or failed to accomplish), if that's the only negative side of Klobuchar, I have to assume it gets hyped up because she's a woman. I mean, really? Well, as Pail says: “In the face of what amounts to a vast natural disaster, you might have expected conservatives to break, at least temporarily, with their traditional opposition to helping fellow citizens in need. But no; they’re as determined as ever to punish the poor and unlucky.” Of course, using the word “conservative” in this way creates an expectation of some kind of principled activity, a “tradition”, an expectation that would not arise if these folks were simply called more accurately “hoodlums” or “hooligans”. @Max Deitenbeck Speaking as someone from a blue state and a progressive city I think that he already has. He failed to deal with our Governor Jay Inslee in a compassionate professional manner, instead publicly calling him a snake. We have not seen the "millions of test kits" he has spoken of and nothing in the way of PPE equipment for first respondrs. Unless you make yourself a mask there aren't any and you can forget disposable gloves. There is no possible way to compare Trump to FDR. It's like comparing the superhero to the criminal. Not to mention the fact that
512
goodreads
is one week overdue having her first baby. When she goes to the hospital for an exam, the last thing she expects is to be taken hostage by a woman who had pronounced dead. The hostages end up dead and the Feds take over the crime scene. The question of why is one to which Jane wants answers. *** Ms. Gerritsen knows how to create a suspenseful situation. I enjoy the characters of Isles and Rizzoli and recommend reading the series in order. The beginning of this book sets up the situation and creates excellent tension as does the ending scene. But it seemed abrupt and the story less suspenseful than some of her medical thrillers. Still, it is a fast-paced and very enjoyable read. Gerritsen is a terrific author and always on my "must read" list. I think I would give this a 3.5 if I were able in this system. This novel describes the dissolution of a family caused by several events especially a few occuring over 2 weeks time. Childhood ends for 3 --literally for one and essentially for the other two. The Indian caste system, economic system, cultural rivalries, and intra-family hatreds all play roles. All is played out against the alternately lush and scary landscape. There is no easy resolution because there can be no resolution for these people or the country. A dystopian novel set in a really rigid class structure: the highest goal in life is to get married. Way too conceptual for my taste. I read whole chapters twice and still had no idea what was going on. Beautiful language, but the story and characters just don't jump out and grab ahold of your attention. The whole time I was reading this book I was thinking about how good it would be as a Disney movie.I thought it was super cute was easy to fly through. My only real problem with this book was that I could tell you the whole plot and how it would end (with the moral lessons and everything) before I even read the book. At 20, I have seen the "The grass is always greener on the other side, until I had a dream/am in an alternate dimension and realize it is not" done a million times in movies and tv shows, which just made the book a little repetitive. If I was in middle school and had not already seen this story line played out so many times, I think I would have absolutely loved this book. Not saying this as if I didn't enjoy this book, because I really did, just not as much as I would have in middle school. My favorite book of the series so far. Could not put it down for the last half. Holy crap, this book is epically gory and amazing! And the epilogue almost made me lose my mind. There were a few good ideas hidden in here, but hidden between lots of, well, junk. In fact, I was rolling my eyes through a lot of it, and the ending was a little like
512
StackExchange
GCS PUT request I'm trying to create a signed URL to be used for uploading files directly to Google Cloud Storage (GCS). I had this working using POST using this Github example, which makes use of a policy. Per best practice, I'm refactoring to use PUT and getting a SignatureDoesNotMatch error: <?xml version='1.0' encoding='UTF-8'?><Error><Code>SignatureDoesNotMatch</Code><Message>The request signature we calculated does not match the signature you provided. Check your Google secret key and signing method.</Message><StringToSign>PUT 123456789 /mybucket/mycat.jpg</StringToSign></Error> Per the docs on creating a signed URL with a program and the GCP example Python code, I am doing this process: building my Signature string signing it base64 encoding it url encoding the result (the python example doesn't do this though... Since this is running on a Google App Engine (GAE) App, I shouldn't need to get a JSON key file for my service account user, but rather use App Identity Services to sign it. Here's my code within a Flask project: google_access_id = app_identity.get_service_account_name() expires = arrow.utcnow().replace(minutes=+10).replace(microseconds=0).timestamp resource = '/mybucket/mycat.jpg' args = self.get_parser.parse_args() signature_string = 'PUT\n' # take MD5 of file being uploaded and its content type, if provided content_md5 = args.get('md5') or '' content_type = args.get('contenttype') or '' signature_string = ('PUT\n' '{md5}\n' '{content_type}\n' '{expires}\n' '{resource}\n').format( md5=content_md5, content_type=content_type, expires=expires, resource=resource) log.debug('signature string:\n{}'.format(signature_string)) _, signature_bytes = app_identity.sign_blob(signature_string) signature = base64.b64encode(signature_bytes) # URL encode signature signature = urllib.quote(signature) media_url = 'https://storage.googleapis.com{}'.format(resource) return dict(GoogleAccessId=google_access_id, Expires=expires, Signature=signature, bucket='mybucket', media_url='{}?GoogleAccessId={}&Expires={}&Signature={}'.format(media_url, google_access_id, expires, signature)) The log.debug statement prints a signature file which perfectly matches the signature in the GCS XML error response above. If they match, then why can't I upload? Using gsutil, I can create a signed URL using the same GAE service account, and it works fine in Postman. I see gsutil URL-encodes the signature, but when creating my own signed URL, it doesn't seem to matter either way: GCS gets my PUT request and complains that the signature doesn't match, even though the signature it shows me matches my logged debug message. I've also tried with and without a trailing \n in the original signature string. EDIT: The POST example I followed Base64 encodes the Policy before it sings, and again after it signs it. I tried this approach with the PUT signature creation and it made no difference A: The answer was very close to other answers found on SO and elsewhere noting that a Content-Type header needs to be used. This is partly true, but overshadowed by my main problem: I was relying on the Default GAE Service Account which has permissions of "Editor" which I assumed could read and write to GCS. I made a keyfile from that account and used it with gsutil which then gave me this clue: myDefaultGAEserviceaccount@appspot.gserviceaccount.com does not have permissions on gs://mybucket/cat.jpg, using this link will likely result in a 403 error until at least READ permissions are granted It was right that I'd get an error from GCS when trying to PUT a file there, but it wasn't a 404 error, rather it was the SignatureDoesNotMatch error shown in the question. The solution was 2 part: Give the Default
512
reddit
afirmação do então presidente da França, Charles de Gaulle, que teria dito durante a [Guerra da Lagosta](https://pt.wikipedia.org/wiki/Guerra_da_Lagosta) que o Brasil não era um país sério. Apesar de ser uma frase bem famosa da época, não tem nenhuma evidência que de Gaulle disse ela em algum momento. Fora que a ideia de que o Brasil não era respeitado internacionalmente na época é bem errada. Before I give my two cents and elaborate my theory to add to the huge pile of prophecy theories on this sub, I would like to apologise for any grammatical mistakes, overlooked typo's, run-on sentences and missing words. English is not my first language (third actually) and my mind always rambles on before I type the actual sentence. Giving birth to nonsensical Siamese phrasing of two sentences being merged. And perhaps this is a Siamesethread with a prophecy analasys and a character analasys. Let's begin with one Quaithe's prophecies: &gt; *"No. Hear me, Daenerys Targaryen. The glass candles are burning. Soon comes the pale mare, and after her the others.* ***Kraken and dark flame, lion and griffin, the sun's son and the mummer's dragon.*** *Trust none of them. Remember the Undying. Beware the perfumed seneschal."* Now the bold part really stands out in the prophecy, it seems to be a threefold pairing. The majority of this r/asoiaf seems to agree with that notion. Well, I don't.^^^dun ^^dun ^dun! Most extrapolate the easy pairings of the first two to the third, giving rise to the [mummer's dragon being the Tattered Prince](http://www.reddit.com/r/asoiaf/comments/2212hu/spoilers_all_a_new_theory_concerning_the_mummers/) theory to complete a pairing with Quentyn. but these pairings already break down at the second pair. Tyrion and Griff split up and this is supposed to be prophetic! Quaithe is likely [using an obsidian candle](http://www.reddit.com/r/asoiaf/comments/vcpxr/maybe_a_little_light_on_quaithepotential_spoilers/) and simply warning about recent events instead of prophesying the future. Explaining her not knowing about the Tyrion/Griff split. Here I disagree again! The 'kraken and dark flame' pair happens after Tyrion gets captured by Jorah, goes to Volantis, meets Moqorro and then gets shipwrecked, yet Quaithe mentioned this pair first. And shouldn't then the second pair be a lion and bear(/lion and maiden fair/lion and spoiled fruit)? These pairings do not hold up to scrutiny. Luckily there is another instance of a threefold pairing, the prophecy Moqorro gives to Tyrion on board of the Smelly Steward. &gt; *"Dragons," Moqorro said in the Common Tongue of Westeros...* ***"Dragons old and young, true and false, bright and dark.*** *And you. A small man with a big shadow, snarling in the midst of all."* Noticed something perculiar? This was explicitly an **antithetic pairing**, the opposites are paired. Perhaps this is also the case for Quaithe's. So let's explore this. Let's reexamine these 'dangers' and separate them with ambitions in the East and West with Valyria as the median, as Dany needs to confront problems both in Meereen and in the West. | East| West| Comment ------|-----|-----|----- Kraken|Victarion Greyjoy| |Goal to defy Euron by wedding Dany Dark flame| | fAegon|Dark flames are spewed by black dragons = Blackfyre Lion | Moqorro | | Moqorro is described
512
reddit
get in some of that anti-semitism that everyone loves!" [6] The Granbulls complete IVs are: 29-30/31/31/16-18/2-3/13-14 It's level is 42, It already is EV trained into HP and Attack. I am looking for some 5 IV Pokemon for competitive. I am NOT interested in: Mawile, Skrelp, Abra, Phanpy, Yanma, Venipede, Flabebe, Shellos, Gastly, Avalugg, Scyther, Binacle, Shellder, Gligar, Shroomish, Eevee, Larvitar, Skarmory, Fletchling, Dratini, Swinub, Goodra. As I said, mostly looking for high IV Pokemon, but you can offer anything, really, maybe you can also catch my eye with a different Shiny. Well, we had went as friends with a group of people that are also in our major. When we noticed we were on kiss cam we didn't know what to do and I tried to get out of the camera's view cause I'm really shy. The crowd (11,000 people) started cheering us on to do the deed and our friends were doing the same..so we kissed. It could have been a better first kiss because we were both really flustered from all of the attention. A friend of mine that was elsewhere in the crowd said that the camera was on us for an awkwardly long amount of time. Worth it though. Haha! What mysterpixel said but another good workout would be right after doing your bench either supersets or somewhere around 90 percent of your max that you compress a 10 pounds weight in between your hands flexing your pecs as tight as possible and moving the weight outwards it really helps solidify the pecs and may help with your problem. That gasoline/kerosine smell just means that it is not cleaned properly in the jungle, acetone wash will remove that smell. Fire coke doesn't numb much at all, that's the lidocaine and the movie is bullshit, i can't feel my face yadda yadda, i have 86% levafree shit and it has no smell like at all and almost no numbing. I can see it playing out that way. No doubt if it happened there would be a transitioning period. But it would be up to the coaches and Wentz to prioritize a smooth transition. There are to many variables at play in football where one could make an honest prediction. To many scenarios that could play out. One could be that Alshon likes the idea of coming to PHI and puts in a huge effort to make things happen this season. Another might be that he's lukewarm or not fond of it, and the rest of the season or most is a write off. I would say the most likely scenario is, none of this happens and the Eagles end up with Torrey Smith; getting him on the cheap. They played S. Korea yesterday [and won by 0-2](https://www.whoscored.com/Matches/1275067/Live/International-Int-Friendly-2018-South-Korea-Senegal) with the following line-up: K. Ndiaye W. Moussa - Koulibaly - Sane - Adnane N'Diaye - Kouyate Sarr - Mane - Niang Sakho A while ago my xl touch screen was badly crooked cause I shook it, but I sent it to Nintendo and they fixed it. But I have been paranoid ever
512
ao3
of course they did, but they were once again beginning to drive her barmy. And now that they were here again, she was far from pleased. And if I had read the look in her eyes correctly, I was none too pleased with them either. She looked up at me, "I wanted to..." Ignoring the continued knocking, I leaned down and kissed her, "I wanted to as well." "Is it rude if we pretend we didn't see them?" I brushed her hair behind her ear, "No. I'll happily ignore them." She sighed, "Fuck," she whispered surprising me with her rare use of the word, "Let them in." I strode across the room and yanked the door open, "Well, hello." I drawled, "What a  _pleasant_  surprise." "We're not interrupting anything, are we?" Ginny asked with a sly grin. "Actually you were," I said, plastering a fake smile on my face, "But it's been what? Almost twenty four hours since you've seen her, so please, come on in and check she's still breathing." Potter cleared his throat, and I noted the look on his face as it dawned on him what they had just interrupted. "Ah, maybe we can come back tomorrow." "No, no," I said stepping aside and ushering them in the door, "You don't want to waste all of that effort of apparating, so please, come in and ruin our  _entire_ evening." They managed to look guilty as they filed past me, except for Blaise who was grinning and chuckling quietly as he punched my arm. " _Big_  plans huh?" "Fucker," I mumbled and made my way back to Hermione. She slipped her legs back over mine, and while she had a smile on her face, her eyes told me she was pissed. "So, this isn't at all awkward," Blaise said and a nervous chuckle went around the room. "We can leave," Potter said again and Hermione simply rolled her eyes at him – yep, she was definitely pissed. "No, it's perfectly fine that you're all here," she said, her voice dripping with sarcasm, "Like Draco said, you're here now." She looked at them all, "Why  _are_ you all here?" "Ah," Pansy began and looked around at the others, "We just..." "We haven't seen you in months," Ginny said lamely and then smiled, "We're doing it again, aren't we? Smothering you?" Hermione sighed and then smiled at her, a genuine smile and some of her anger dissipated. She nodded, "Yeah, you are. But it's fine. I kind of deserve the hovering, I think." "No, actually you don't," Blaise said getting up and crossing to the kitchen, stopping to plant a kiss her on the top of the head on his way past, "But what you do deserve gorgeous, is a shot of the finest muggle scotch ever produced." "I don't drink scotch," She told him over her shoulder. 1. Chapter 1 **Author's Note:** > Not sure how many chapters this is gonna be but there'll be more Of course it would start with a story. With an interview gone wrong. She had
512
s2orc
number Good News from Africa Good News from Africa I n den westlichen Medien und europäischen Köpfen wird Afrika zumeist einseitig als "K-Kontinent" dargestellt und wahrgenommen: Kontinent der Kriege, Katastrophen, Krisen, Krankheiten und Korruption. Tatsächlich handelt es sich um einen bunten Kontinent mit 54 Staaten und einer beträchtlichen geographischen, klimatischen, kulturellen, sozialen, politischen und ökonomischen Vielfalt. Die Lebenswelten der Menschen sehen entsprechend sehr unterschiedlich aus. Während der Großteil der Bevölkerung nach wie vor auf dem Land lebt, verzeichnen einige afrikanische Staaten gleichzeitig die höchsten Urbanisierungsraten der Welt (Hove et al. 2013). In den Großstädten gibt es immer mehr Slums, die von Armut und Gewalt geprägt sind. Unterdessen kristallisiert sich, bedingt durch ein steigendes Wirtschaftswachstum, langsam eine schmale Mittelschicht mit einem gehobeneren Lebensstandard heraus. Der Alltag der Bevölkerung wird sukzessive von Modernisierungserscheinungen durchdrungen. Vor allem das Mobiltelefon und das Internet haben die Lebensgewohnheiten der Menschen maßgeblich verändert. Die großen sozialen Probleme in Subsahara-Afrika sind -bei aller Vorsicht, was Verallgemeinerungen betrifftabsolute Armut, soziale Ungleichheit, hohe Arbeitslosigkeit (vor allem bei der jungen Generation), fehlende soziale Sicherheit, Fluchtbewegungen, Menschenrechtsverletzungen sowie politische Gewalt, die sich in einigen Ländern in Form bewaffneter Konflikte manifestiert. Hinzu kommen gravierende Auswirkungen des Klimawandels, beispielsweise durch anhaltende Dürreperioden, die besonders in Ostafrika zu Nahrungsmittelkrisen geführt haben (Society for International Development 2016, S. 21). Soziale Arbeit stellt sich als heterogenes und komplexes Feld dar, mit länderspezifischen Unterschieden, aber auch einigen Gemeinsamkeiten (Spitzer 2018): In den meisten Ländern ist Soziale Arbeit im Zuge der kolonialen Sozialplanung und in weiterer Folge nach der Unabhängigkeitsbewegung in den 1960er-Jahren durch die sogenannte Entwicklungshilfe als fremdbestimmte Profession entstanden (Midgley 1981 Trotz allem gute Neuigkeiten Was also sind die im Titel dieses Beitrags angekündigten "Good News"? Ziele, Aktivitäten und Meilensteine des Projekts auf Basis der von den afrikanischen Kolleg_innen artikulierten Bedarfslagen konzipiert. Dazu trafen sich die Projektpartner_innen zu einer einwöchigen Klausur in Nairobi, Kenia. In Phase II (2011 bis 2014) konzentrierte sich das Projekt auf Grundlagenforschung, die Überarbeitung der Curricula und berufspolitische Aspekte. Die Partnerorganisationen waren die University of Nairobi in Kenia, die University of Rwanda, das Institute of Social Work in Tansania und die Makerere University in Uganda. In Phase III (2016 bis 2019) kamen die Hope Africa University in Burundi sowie der neu gegründete Berufsverband für Soziale Arbeit in der Demokratischen Republik Kongo an Bord. Dabei lag der Schwerpunkt auf der Erforschung indigener und innovativer Praxisansätze sowie auf dem sozialpolitischen und menschenrechtlichen Engagement Sozialer Arbeit. Das Projekt wurde durch das Programm APPEAR (Austrian Partnership Programme in Higher Education and Research for Devel opment) der Österreichischen Entwicklungszusammenarbeit finanziert. Durch eine Reihe von Publikationen, neue Curricula, mehrere Fachkonferenzen sowie einen intensiven Dialog mit politischen Entscheidungsträgern konnten einige nachhaltige Akzente zur Stärkung Sozialer Arbeit in den betroffenen Ländern gesetzt werden. In Phase II wurde eine umfassende Studie zum Status quo Sozialer Arbeit in Ausbildung, Praxis und Berufspolitik sowie zum Beitrag der Profession zur Armutsbekämpfung und sozialen Entwicklung durchgeführt. Auf Basis einer aus quantitativen und qualitativen Forschungsmethoden zusammengesetzten Befragung von 2000 Personen (Sozialarbeiter_innen, Lehrende, Studierende, Arbeitgeber, politisch Verantwortliche und Klient_innen) liegen nun erstmals empirische Daten zu Sozialer Arbeit in diesen Ländern
512
gmane
different result on my server with the same file, both using ASCII mode? Why is the file expanding in my old process, but is missing a CR in each line? Is there perhaps anything I can change locally on my file? Any ideas? Thanks Tiemo Hi I previously posted this question to the autofs mailing list but it's been suggested that it might be better being here. We now have quite a few users with linux laptops and they want to see the standard automounts on these. But being laptops they frequently switch subnet, jump on WiFi and VPN etc. Most subsystems seem to play pretty well with this dynamic network environment and are hooked into NM (with SSSD doing a good job with off net credentials and directory services caching) Now I know that nfs is a much harder nut to crack given its heavy in kernel component and statefulness, but I'd have thought the present non-dynamic behaviour is a bit of an anomaly. Our present workaround is to hook a script into NM that detects when on or off lan. If going on lan to off, it will stop the autofs. If still mounts present when stopped, it will forcibly umount them. Pretty ugly, but better for the system than lots of dead mounts, which breaks lots of things (and doesn't recover if connecting to a new lan IP). Going off to on lan and starting autofs seems to recover and see the automounts fine (despite the previous brutality to the mount points we performed). We of course override the automounted home dir for the laptop owner. But they can still get to their network one via the automount when on lan (or VPN etc). And other users can ssh into the back of these laptops (should that be necessary) and get their automounted homedir as any other machine would. So nicely consistent. In our application, the main purpose of the mounts is for the user to see their network homedir or various shared project directories. So, in general, the only thing still looking at these mounts on a connection or VPN dropping will be a shell or a GUI file browser. If the shell (or whatever app) doesn't like the mounts going, it doesn't really matter (even if it just crashes). It's better than the alternative, locking up the system randomly if you hit hung mount point, locking programs that hate stale mounts (rpm or yum, for example) or leaving you with some hung app that you can't kill (esp in the GUI). That would be a terrible user experience. This may not be good for the system (but seems to work) and is horrible, but what's our alternative? It's been suggested that there is work on NFSv4 that might help with this? Or any other thoughts on how this might be made to work more cleanly? Thanks Colin I'm not comfortable pounding on everything at 60-second intervals as seems to be the default settings, so I've changed the template. For example, isilon snmp checks often time out and
512
Pile-CC
after waiting for a long time finally my name is now clean,” he said, wiping away tears outside the courtroom. Saidin, 72, formerly Paya Jaras representative in the Selangor state legislative assembly, was charged with taking a RM1 million reward on 15 March 1997 from Nusantara Network Sdn Bhd chairperson Datuk Dr Hanifah Nordin for helping the company obtain a government land in Batu Caves town for development. The state government approved Nusantara Network’s application on 4 Oct 1995. On 1 Aug 2002, Sessions Court Judge Suraya Othman sentenced Saidin to a year in jail and RM10,000 fine and also ordered him to pay a RM1 million penalty to the federal government after finding him guilty. She, nevertheless, granted him a stay of all the orders pending appeal to the High Court. Saidin was also granted RM150,000 bail. Today, Justice Datuk Su Geok Yiam allowed his appeal against conviction and sentence and also dismissed the prosecution’s cross-appeal against the one-year jail term. Star-Studded Cast Set for Tonight's Admirals Hour Radio Show NORFOLK, VA – Norfolk Admirals Assistant Coach Alan May and former Admirals goaltenders Mike McKenna and Michael Leighton will join “The Voice of the Admirals” Pete Michaud on the Admirals Hour Radio Show tonight from 6:00 to 7:00 on ESPN Radio 1310. May is in his first season as assistant coach of the Admirals. A 12-year-pro, the left wing was a veteran of 393 NHL games with the Boston Bruins, Edmonton Oilers, Washington Capitals, Dallas Stars and Calgary Flames. He recorded 31 career goals, 76 points and 1,348 penalty minutes. His 339 penalty minutes during the 1989-90 season remains a Washington franchise record. McKenna made his NHL debut with the Tampa Bay Lightning last month after spending the first part of the season in Norfolk. McKenna posted a shutout in his second NHL start on February 7 versus the New York Islanders. He has a 3-3-1 record with the Lightning so far this season. He remains the Admirals team leader in wins this season with 10. Leighton spent parts of four seasons with the Admirals from 2001-02 to 2004-05. He is the franchise’s all-time leader in games played (147), wins (75), shutouts (18), goals-against average (2.16) and save percentage (.919). Leighton now plays for the NHL’s Carolina Hurricanes and has a 6-6-2 record this season. He has appeared in 68 career NHL games between Carolina, Philadelphia, Nashville and Chicago. Next up for the Admirals are Friday and Saturday contests at Scope against the Lowell Devils, AHL affiliate of the New Jersey Devils. The puck drops for both games at 7:15 p.m. Friday night is Military Appreciation Night. Individuals may show their military ID at the Scope Box Office and receive $8 Red Level Tickets. Groups or commands who would like to sit together may contact the Admirals Group Sales Department at (757) 640-1212 ext. 23. For more details, please visit norfolkadmirals.com. Saturday night is AAA Member Night. AAA members can receive $3 off Red Level Tickets at the Scope Box Office only. For more details, visit AAA online at AAATidewaterVA.com. To
512
StackExchange
this code. x.map{case (x1: Any, x2: Any,x3: String) => x1}.count() Throwing scala.MatchError: null error this is the definition of x scala> x.cache() res111: x.type = MapPartitionsRDD[522] at map at <console>:49 scala> x res109: org.apache.spark.rdd.RDD[(Any, Any, String)] = MapPartitionsRDD[522] at map at <console>:49 scala> x.count() res112: Long = 64508825 Any pointers will be appreciated. A: The error message scala.MatchError: null clearly indicates that there is a null value intead of (Any, Any, String) So you should be filtering null values before the count x.filter(_ != null).map{case (x1: Any, x2: Any,x3: String) => x1}.count() unsure of null If you are not sure if your data has a null value or not then you can change the match case as following and do the filter after match case x.map{_ match { case (x1: Any, x2: Any,x3: String) => x1 case _ => "not matched" }}.filter(_ != "not matched").count() Q: Binding query results to repeater I am new to the Entity Data framework and lambda query. What I am trying to do is select a list of "contacts" and bind it to a grid or repeater. However, although my query works in that it is able to retrieve contact records, I am unable to bind it to a repeater. When I do, it says "Object reference not set to an instance of an object". Can someone please tell me what I am doing wrong? IQueryable<Contact> contactsQuery = from c in cc.Contacts from g in c.ContactGroups where g.GroupNameID == 1 select c; MyRepeater.DataSource = contactsQuery; MyRepeater.DataBind(); The problem code is thrown and on the Datasource specification line: MyRepeater.DataSource = contactsQuery; A: This exception is thrown from somewhere inside your Contact class. Try looking at the property mappings and nullable properties, the problem is most likely there. Q: node spawn with sudo cannot use ipc In my project, I need to create a child process and communicate with it via IPC, at same time, this child process must run as root. So I use cp.spawn('sudo', ...) with IPC channel, but I found the process.send method is undefined. Here is the code: file: parent.js 'use strict' const cp = require('child_process') const path = require('path') const script = path.join(__dirname, 'child.js') let child = cp.spawn('sudo', [process.execPath, script], { stdio: ['inherit', 'inherit', 'inherit', 'ipc'] }) child.on('message', msg => { console.log('message> ', msg) }) console.log('parent> parent run!') file: child.js 'use strict' console.log('child> child run!') process.send('hahaha') run node parent.js parent> parent run! Password: child> child run! /Users/zoujie.wzj/workbench/child.js:5 process.send('hahaha') ^ TypeError: process.send is not a function at Object.<anonymous> (/Users/zoujie.wzj/workbench/child.js:5:9) at Module._compile (module.js:570:32) at Object.Module._extensions..js (module.js:579:10) at Module.load (module.js:487:32) at tryModuleLoad (module.js:446:12) at Function.Module._load (module.js:438:3) at Module.runMain (module.js:604:10) at run (bootstrap_node.js:394:7) at startup (bootstrap_node.js:149:9) at bootstrap_node.js:509:3 Update: After I replace cp.spawn('sudo', ...) with cp.spawn(process.execPath, ...), the program will work: parent> parent run! child> child run! message> hahaha Is anyone knowns why IPC doesn't work with sudo? A: As mentioned in the documentation: If the child is a Node.js process, the presence of an IPC channel will enable process.send(), process.disconnect(), process.on('disconnect'), and process.on('message') within the child. https://nodejs.org/api/child_process.html#child_process_options_stdio Only in the situation what you are spawning is a
512
OpenSubtitles
sending mixed signals about my being here." "No." "No." "The only signal that I am sending is gay good!" "Look, if I was gay," "I would be the most flamboyant gay you've ever seen." "I would be leading the parade covered in feathers and just..." "I'd be waving that rainbow flag." "I don't think I can work here any longer." "This has been the worst, most backwards day of my life." "You misunderstand..." "Okay." "All right..." "You know what?" "Okay." "Okay." "I'm going to put my money where my mouth is." "You ready?" "What are you doing?" "I am going to embrace Oscar." "You might want to watch us, Angela, because you can't catch anything." "Here we go." "No." "We are going to make a statement." "You and I are going to make a statement together." "Oscar is my friend." "I'd rather not." "And I just don't care who sees it." "Doesn't bother me." "Really, I really would rather not." "Come here, friend." "I'd really rather not." "You're my friend." "No!" "No!" "I don't want to touch you." "Ever considered that?" "You're ignorant and insulting and small." "Okay." "All right." "I'm sorry." "Michael, I'm sorry." "That was a good idea." "Come on." "Come on." "Dirty cops in the NYPD?" "Maybe." "We'll find out tomorrow when the Dove Commission releases its long-awaited report on possible corruption in the Big Apple." "Gentlemen, I'd like to propose a toast to the Dove Commission." "Well done, gentlemen." "And to our fearless leader..." "Commissioner Stanwyk." "All I can say is, he's a better commissioner than he is a dancer." "Welcome to the biggest case of the year." "Dead on the dance floor is the chief investigator of the Dove Commission, Dan Stanwyk." "Independent collection of judges and attorneys with one function:" "expose the weaknesses of the NYPD." "The last time they published their report was what... 92?" "There's officers still in jail because of that document." "Word on the street is that this report is far more damaging than the one in'92." "Apparently, the Commission was having a little celebratory toast when the gunshots went off." "And rumor has it they're publishing the report for the media tomorrow at 5:00 p. m." "About the woman?" "She's collateral damage." "Her name is Charlotte Dubois." "Her best friend Grace Walderson's sitting over there." "I'm sure there are a few crooked cops out there who wanted a man like this dead." "Our suspect could very well be in that report." "That's where we start." "CSI:" "New York" " Season 1 Episode 18" " The Dove Commission" "S" "Transcript:" "Raceman" "Synchro:" "Seth Cohen, Daxter38 and OrionDeBmk" "Correction:" "Cordesh and Seth Cohen" "All right, people, here we go." "Mike, I want you to sketch the crime scene." "Joe... shoot some overalls." "The rest of you, start collecting evidence." "But whatever you do, do not touch the bullets." "Those are for me." "Excuse me..." "Cronkite." "You can't film here." "This is a crime scene." "Please, please, please." "I was here before the shooting covering the release of the Dove Commission Report." "I'm well
512
Github
class="memTemplItemLeft" align="right" valign="top">boost::enable_if_c&lt; !std::numeric_limits&lt; typename std::iterator_traits&lt; RandomAccessIter &gt;::value_type &gt;::is_integer &amp;&amp;std::numeric_limits&lt; typename std::iterator_traits&lt; RandomAccessIter &gt;::value_type &gt;::is_iec559, void &gt;::type&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="namespaceboost_1_1sort.html#a94a736da091bd5d3b525818399f1b272">boost::sort::spreadsort</a> (RandomAccessIter first, RandomAccessIter last)</td></tr> <tr class="memdesc:a94a736da091bd5d3b525818399f1b272"><td class="mdescLeft">&#160;</td><td class="mdescRight">Generic <code>spreadsort</code> variant detecting float element type so call to <code>float_sort</code>. <a href="#a94a736da091bd5d3b525818399f1b272">More...</a><br /></td></tr> <tr class="separator:a94a736da091bd5d3b525818399f1b272"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aafdea66d9b4a7faef5604b3079b525fa"><td class="memTemplParams" colspan="2">template&lt;class RandomAccessIter &gt; </td></tr> <tr class="memitem:aafdea66d9b4a7faef5604b3079b525fa"><td class="memTemplItemLeft" align="right" valign="top">boost::enable_if_c&lt; is_same&lt; typename std::iterator_traits&lt; RandomAccessIter &gt;::value_type, typename std::string &gt;::value||is_same&lt; typename std::iterator_traits&lt; RandomAccessIter &gt;::value_type, typename std::wstring &gt;::value, void &gt;::type&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="namespaceboost_1_1sort.html#aafdea66d9b4a7faef5604b3079b525fa">boost::sort::spreadsort</a> (RandomAccessIter first, RandomAccessIter last)</td></tr> <tr class="memdesc:aafdea66d9b4a7faef5604b3079b525fa"><td class="mdescLeft">&#160;</td><td class="mdescRight">Generic <code>spreadsort</code> variant detecting string element type so call to <code>string_sort</code> for <code>std::strings</code> and <code>std::wstrings</code>. <a href="#aafdea66d9b4a7faef5604b3079b525fa">More...</a><br /></td></tr> <tr class="separator:aafdea66d9b4a7faef5604b3079b525fa"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Fri Jan 9 2015 14:20:24 for Boost.Sort by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.9.1 </small></address> </body> </html> package io.swagger.server.api.model; import java.util.Objects; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; /** * Describes the result of uploading an image resource **/ @JsonInclude(JsonInclude.Include.NON_NULL) public class ModelApiResponse { private Integer code = null; private String type = null; private String message = null; public ModelApiResponse () { } public ModelApiResponse (Integer code, String type, String message) { this.code = code; this.type = type; this.message = message; } @JsonProperty("code") public Integer getCode() { return code; } public void setCode(Integer code) { this.code = code; } @JsonProperty("type") public String getType() { return type; } public void setType(String type) { this.type = type; } @JsonProperty("message") public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } ModelApiResponse _apiResponse = (ModelApiResponse) o; return Objects.equals(code, _apiResponse.code) && Objects.equals(type, _apiResponse.type) && Objects.equals(message, _apiResponse.message); } @Override public int hashCode() { return Objects.hash(code, type, message); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class ModelApiResponse {\n"); sb.append(" code: ").append(toIndentedString(code)).append("\n"); sb.append(" type: ").append(toIndentedString(type)).append("\n"); sb.append(" message: ").append(toIndentedString(message)).append("\n"); sb.append("}"); return sb.toString(); } /** * Convert the given object to string with each line indented by 4 spaces * (except the first line). */ private String toIndentedString(Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } } // Copyright 2015-present 650 Industries. All rights reserved. package abi37_0_0.host.exp.exponent; import abi37_0_0.com.facebook.react.bridge.ReactApplicationContext; import host.exp.exponent.utils.ScopedContext; public class ScopedReactApplicationContext extends ReactApplicationContext { public ScopedReactApplicationContext(ScopedContext context) { super(context); } } package netlink import ( "syscall" "fmt" "github.com/vishvananda/netlink/nl" "golang.org/x/sys/unix" ) // DevlinkDevEswitchAttr represents device's eswitch attributes type DevlinkDevEswitchAttr struct { Mode string InlineMode string EncapMode string } // DevlinkDevAttrs represents device attributes type DevlinkDevAttrs struct { Eswitch DevlinkDevEswitchAttr } // DevlinkDevice represents device and its attributes type DevlinkDevice struct { BusName string DeviceName string Attrs DevlinkDevAttrs } func parseDevLinkDeviceList(msgs [][]byte) ([]*DevlinkDevice, error) { devices := make([]*DevlinkDevice, 0, len(msgs)) for _, m := range msgs { attrs, err := nl.ParseRouteAttr(m[nl.SizeofGenlmsg:]) if err != nil { return nil, err } dev := &DevlinkDevice{} if err = dev.parseAttributes(attrs); err != nil { return nil, err } devices = append(devices, dev) } return devices, nil } func eswitchStringToMode(modeName
512
nytimes-articles-and-comments
to bully, intimidate, harass, and con. Trump has indeed used this technique throughout his career, generally as a implement for improving his bargaining position and getting off lightly for perpetrating frauds. Maybe Biden should challenge the results in North Carolina, Ohio, and Texas. He has as much reason and right to do so as Trump, given the Republican ardor for voter suppression, gerrymandering, and scorched-earth machine politics. But there's a reason he won't: He has class. Trump does not. And while we're at it, a reminder to all - and too many probably don't even know this. If you pay your small merchant by check or cash, there is no percentage withheld. Credit cards charge merchants as much as 6-8% for each transaction! Those people who want to go all digital should stop thinking it's a great idea to be blind to the weregild we all pay to these predators, who provide nothing real to us all. So much for the cashless society! The first British invasion to North America was that of the Puritans, who thought the Church of England was "too Catholic". The next prominent British invaders included the Founding Fathers, rich men, either lawyers or plantation owners, and slaveholders, except for Alexander Hamilton. They wanted to escape paying taxes without representation in British parliament. Our country was founded on the tenets of Puritanism, tax avoidance and slavery. The U.S. Constitution was very bare-bones, just delineating the job descriptions and structure of the U.S. government. Colonists fought hard to break away from England, and won. The amendments, offering some protection for the rights of man, were hard-fought for, too. It took the civil war to abolish slavery, if not racism. Over the U.S.'s 200+ years, scores of people have streamed to its shores. They have yet to achieve the fabled "melting pot", where each person co-mingles with the others making a lovely stew. Nope, people bob about in the broth, separate ingredients that never touch. Today's Republicans--the Administration, governors, Federal and State Congresses, wealthy corporate donors--are anything but humble or vulnerable. They no longer have slaves to do their work, so they force the low and middle-class back to work, during a pandemic, threatening to fire them, with loss of unemployment, if they don't. These workers are vulnerable. Their only hope is to vote Republicans out of office in November. Seize that day. @lfkl The ideals of the constitution are good. But as often happens, the application by humans, especially in a system of unfettered capitalism, falls far short. Our congresspeople are beholding to their donors. Hence the famous comment by the now disgraced NY representative before the most recent tax cut bill. “Our DONORS have told us to get this done or don’t call us again.” Not the people we represent, our donors, who probably don’t even live in their district. I’d like to know what blood “markers” the researchers looked at to determine bone health. I have premature osteoporosis but have only had urine tests and bone scans. Been seeing an endocrinologist who just shrugs and says that maybe bone is
512
gmane
for your podling will form a part of the Incubator PMC report. The Incubator PMC requires your report to be submitted 2 weeks before the board meeting, to allow sufficient time for review and submission (Wed, September 07). Please submit your report with sufficient time to allow the Incubator PMC, and subsequently board members to review and digest. Again, the very latest you should submit your report is 2 weeks prior to the board meeting. Thanks, Hi, I use winpcap 4.1.2. For BPF-filtering I set string "src" for pcap_compile function. But in result I get error of syntax. Also for testing I tried to set "src foo" and "src host test" but all of them doesn't work and I get the same error. Why? I receive ethernet packets without any MAC, IP, TCP/UDP headers from remote host. And I want to process only entering packets by filtration. Is it possible? Thanks for any help, Reva. Did you get him to share it with you from web browser as barbers said? Have you gone into pimlical menu sync? (must be connected to internet for that bit) After that in pimlical menu calendars see if it shows and is ticked. If not showing you've missed something. I have local calendar and 10 google calendars working so its most definitely possible Regards Ralph I have deployed a kafka server to the azure cloud using the spotify docker image. When I use the docker image locally it works fine. When I access it from another cloud service and send messages to it then it seems each message takes very long (more than a minute). Any idea what might be wrong? From the long delay it looks a bit like a reverse DNS issue but I dont know if these can happen with kafka or what to configure to avoid the issue. Christian I have been reading the articles on the OLPC Wiki on Pootle and the one piece of information I can't seem to find is how to go about getting my own Activities submitted for translation. I registered for the Pootle server and found only a small handful of projects were being worked on, and none of them seemed to be Activities. With the possibility that Read Etexts may be used in Nepal I've become much more interested in getting the text strings in my Activities translated. If someone could point me in the right direction I'd be grateful. Thanks, James Simmons This is a note to let you know that I have just added a patch titled net: fix a kernel infoleak in x25 module to the linux-3.19.y-queue branch of the 3.19.y-ckt extended stable tree which can be found at: https://git.launchpad.net/~canonical-kernel/linux/+git/linux-stable-ckt/log/?h=linux-3.19.y-queue This patch is scheduled to be released in version 3.19.8-ckt22. If you, or anyone else, feels it should not be added to this tree, please reply to this email. For more information about the 3.19.y-ckt tree, see https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable Thanks. -Kamal I come up against this occasionally, so this is an "only if it's easy" wish. When working with class code and I want to insert
512
ao3
she started walking away from the really puffy dresses. She then stopped and looked at me. "Basically what I'm trying to say is...Do you want Zak to have a hard time getting you out of the dress or not?" I could feel my face heating up. Why in the world would she say something like that in public? That's right, it's her. She's very unpredictable at times. "Jess. I don't think the whole world wants to know," I hissed. "There's no one here Kayla. Just some of the employees, that's it," She said while taking my hand, "Now c'mon. What kind?" "I've always liked strapless dresses." "Alright. Now we're getting somewhere," Jess said. We made it to the strapless dresses and then she said, "I'm going to look at the flower girl dresses." Before I could say anything she was gone. _Why did I agree to go shopping with her?_ I started looking at some dresses until a lady that looked to be in her early 40s came up to me. "Are you finding everything ok?" "Not really," I said honestly. "What type of dress are you looking for?" She asked nicely. "I would like a dress that's strapless or very little straps..." She nodded and I continued, "I don't want to look like a blingy cupcake." She chuckled at that and motioned for me to follow her. We made it to a section that had strapless dresses that were simple. "Here's one big question, what's your dress size?" "Um...Size 4." She started looking for a size 4. I felt my phone go off so I looked at it, '1 new text'. I opened it and saw a very puffy, sparkly, hot pink dress. -Wat u think?-J -No- I put my phone back in my pocket in time for the lady to hand me a dress. "You can try this on right over there," She said pointing to the dressing rooms, "And if you need me I'll be right outside the door." I closed the door and put the dress on. When I got it on I stepped out of the room so she could zip the dress up. I looked in the mirror, turning around to look at the back then bit the inside of my cheek. _I like this dress but it's missing something._ "Not the one is it?" "No. I love the style but it missing something." "Like designs or some rhinestones?" "I'll try some sparkle." "Alright," She said as she unzipped the dress so I could get out of it. I went back into the tiny room and sat on the small bench with an inaudible sigh, this was going to be a lot harder than I thought. After a few more dresses I was starting to get sad because none of these dresses said 'me'. "I've got one more dress for you to try on. I'll be right back." The lady took off and Jess finally found me. "How's it going?" "Not good. None of these dresses are me." "You wanna go?" "If this dress that the
512
Pile-CC
language sister network NBC's news division NBC News. José Díaz-Balart José Díaz-Balart is an American news program that aired on MSNBC and was hosted by Cuban-American journalist Jose Diaz-Balart. The show was broadcast from Miami & aired in the 10 a.m. to 11 a.m. timelot on weekdays, following after The Daily Rundown with Chuck Todd, which aired in the 9 a.m. to 10 a.m. timeslot on weekdays. The show was absorbed into the new, two-hour version of The Daily Rundown, The Rundown with José Diaz-Balart, hosted by Diaz-Balart. María Celeste Arrarás Maria Celeste Arrarás (born September 27, 1960 in Mayagüez, Puerto Rico) is a Puerto Rican bestselling author and Emmy award winning television journalist that hosts the Spanish language news magazine program, Al Rojo Vivo, and also co-anchors Telemundo's internationally acclaimed newscast, Noticiero Telemundo. Between her two live television news shows she is watched daily by approximately 35 million viewers across the American Hemisphere. She is a media dynamo who was featured in the cover of "Newsweek" magazine as one of the Women Leaders of Her Generation and has been in the cover of "People en Español" 14 times. Biography Maria Celeste Arrarás was born September 27, 1960 in Mayagüez, Puerto Rico. She is the firstborn child of the respected retired politician, sports leader, lawyer, and educator José Enrique Arrarás. The program has been anchored at various times by a number of other presenters since its debut in 1986. It also has used various titles under previous production outsourcing arrangements, including Noticiero Telemundo-HBC from 1986 to 1988, Noticiero Telemundo CNN from 1988 to 1996 and CBS Telenoticias from 1996 to 1999. It is the second-most watched Spanish language network newscast in the United States, trailing slightly behind Noticiero Univision in the ratings. New York City Vacation Travel Guide | Expedia https://www.expedia.com/lp/destinations/178293 New York City is an international metropolis built on the shoulders of immigrants and their descendants. New York City is home to eight million people, and the city receives more than 50 million visitors per year. Your New York City tour should include sampling the food of hundreds of different cultures, and you can explore the easily on foot, by taxi, or via the famous subway system. No New York sightseeing is complete without a visit to Times Square, which you’ve no doubt seen in many movies. Take in its billboards, its many people, and its food, then cross over to Central Park, which comprises 850 acres of lakes and meadows, and is the setting for many a romantic comedy. You also have your pick of art and history museums, as well as the ... published: 07 Mar 2013 25 Beautiful Places In The United States You Need To Visit Today There are a lot of Americans who are fascinated with traveling to Europe. Can you blame them, Europe is beautiful with a rich history and stunning old architecture. HOWEVER (and that’s a big however), the United States is home to extraordinary beauty as well. What it lacks in the historical/cultural department (compared to Europe) it more than makes up with
512
Github
if __name__ == '__main__': tf.test.main() struct Foo { } // Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build ignore // gen runs go generate on Unicode- and CLDR-related package in the text // repositories, taking into account dependencies and versions. package main import ( "bytes" "flag" "fmt" "go/build" "go/format" "io/ioutil" "os" "os/exec" "path" "path/filepath" "regexp" "runtime" "strings" "sync" "unicode" "golang.org/x/text/internal/gen" ) var ( verbose = flag.Bool("v", false, "verbose output") force = flag.Bool("force", false, "ignore failing dependencies") doCore = flag.Bool("core", false, "force an update to core") excludeList = flag.String("exclude", "", "comma-separated list of packages to exclude") // The user can specify a selection of packages to build on the command line. args []string ) func exclude(pkg string) bool { if len(args) > 0 { return !contains(args, pkg) } return contains(strings.Split(*excludeList, ","), pkg) } // TODO: // - Better version handling. // - Generate tables for the core unicode package? // - Add generation for encodings. This requires some retooling here and there. // - Running repo-wide "long" tests. var vprintf = fmt.Printf func main() { gen.Init() args = flag.Args() if !*verbose { // Set vprintf to a no-op. vprintf = func(string, ...interface{}) (int, error) { return 0, nil } } // TODO: create temporary cache directory to load files and create and set // a "cache" option if the user did not specify the UNICODE_DIR environment // variable. This will prevent duplicate downloads and also will enable long // tests, which really need to be run after each generated package. updateCore := *doCore if gen.UnicodeVersion() != unicode.Version { fmt.Printf("Requested Unicode version %s; core unicode version is %s.\n", gen.UnicodeVersion(), unicode.Version) // TODO: use collate to compare. Simple comparison will work, though, // until Unicode reaches version 10. To avoid circular dependencies, we // could use the NumericWeighter without using package collate using a // trivial Weighter implementation. if gen.UnicodeVersion() < unicode.Version && !*force { os.Exit(2) } updateCore = true } var unicode = &dependency{} if updateCore { fmt.Printf("Updating core to version %s...\n", gen.UnicodeVersion()) unicode = generate("unicode") // Test some users of the unicode packages, especially the ones that // keep a mirrored table. These may need to be corrected by hand. generate("regexp", unicode) generate("strconv", unicode) // mimics Unicode table generate("strings", unicode) generate("testing", unicode) // mimics Unicode table } var ( cldr = generate("./unicode/cldr", unicode) language = generate("./language", cldr) internal = generate("./internal", unicode, language) norm = generate("./unicode/norm", unicode) rangetable = generate("./unicode/rangetable", unicode) cases = generate("./cases", unicode, norm, language, rangetable) width = generate("./width", unicode) bidi = generate("./unicode/bidi", unicode, norm, rangetable) mib = generate("./encoding/internal/identifier", unicode) _ = generate("./encoding/htmlindex", unicode, language, mib) _ = generate("./encoding/ianaindex", unicode, language, mib) _ = generate("./secure/precis", unicode, norm, rangetable, cases, width, bidi) _ = generate("./currency", unicode, cldr, language, internal) _ = generate("./internal/number", unicode, cldr, language, internal) _ = generate("./feature/plural", unicode, cldr, language, internal) _ = generate("./internal/export/idna", unicode, bidi, norm) _ = generate("./language/display", unicode, cldr, language, internal) _ = generate("./collate", unicode, norm, cldr, language, rangetable) _ = generate("./search", unicode, norm, cldr,
512
StackExchange
as above, but it lets you move the name anywhere, even if that's not a sensible move, so the above is probably preferable. Yet another way is to use git branch -f to force move the name to the location you want: git branch -f develop feature~1 This leaves your HEAD attached to feature, so that you don't have to git checkout feature to keep working. However, like the git reset method, it's not very safe as it lets you move the name to any commit, even if that makes no sense. Finally, there's a very sneaky way to update develop in a fast-forward fashion (a la git merge --ff-only) without checking out develop—in fact you need to stay on some other branch to do it: git push . feature~1:develop This has your Git call up your own Git, and propose to itself that it should move the name develop to point to the commit whose hash ID was obtained by parsing feature~1. Your Git will obey your Git if and only if this is a fast-forward, since there is no force flag here. Use whichever of these you like; they all achieve the same result in the end, except for where your HEAD is attached. Q: Has Google stopped offering it's "Weighted" Analytics sorting filter? I am trying to better evaluate my user's engagement and came across a feature of Google Analytics that I didn't know about, Weighted Sort. This is supposed to sort by bounce rate and also time on page, however it appears unselectable in my GA account . Can anyone verify that it is no longer offered? Or do I need to configure it somewhere else? I couldn't find any reference online to this feature being disabled in the new version of Analytics A: Weighted sort is intended to filter outlier data from the grid view - for example, if you had the following pages (sorted by Bounce Rate) it's obvious that you'll want to pay more attention to items #3 and #5 over the others, even though a descending bounce rate sort would place the low-traffic pages at the top: # URI Hits Bounce Rate 1 /example-abc/ 3 100% 2 /example/ 1 100% 3 /popular/ 1000 99.98% 4 /contact/ 9 52% 5 /semi-popular/ 552 40% From the Weighted Sort documentation at Google Analytics Help: With weighted sort, our system takes into account the number of visits, bringing [rows] with more visits to the top of the list. With the Bounce Rate column selected, you can switch to Weighted Sort to get a list more like this: # URI Hits Bounce Rate 1 /popular/ 1000 99.98% 2 /semi-popular/ 552 40% 3 /contact/ 9 52% 4 /example-abc/ 3 100% 5 /example/ 1 100% Update: ... and, although it's not listed at Google's help center, you will also need to disable any Advanced Segments you may be using to filter data in order to enable this feature. Q: HHVM possible to recover source code from authoritative repo? Is it possible to recover sourcecode from an HHVM authoritative repo file? I'd
512
reddit
* Cello Concerto 1 * Piano Concerto 2 * Violin Concerto 1 * String Quartet 2 * String Quartet 8 * Festive Overture * Ballet Suites 1 - 5 (all of them) * Lady Macbeth of Mtsensk (or the Lady Macbeth Suite arr. by Conlon) * 24 Preludes and Fugues * Viola Sonata I wish I thought of it like this before. Whenever my SO and I fight we become so awkward and can't even talk to eachother without him getting mad at what I say. He also always wants me to tell him my feelings but he said he'll probably yell at me for them because hes not understanding (he definintley yells) but he'll keep expecting me to share my feelings with him. Just sent this in. "As an American citizen living in Canada, I am down-right appalled by the recent vote to take citizen's rights away in North Carolina. I have a large extended family, some living in NC whom identify themselves as members of the LGBT community. My family was planning a reunion in NC for the 4th of July weekend, but in light of recent events we've decided to celebrate elsewhere. We want all members of our family to feel accepted and appreciated. Why would we celebrate the Fourth of July (a day that celebrates American Freedom) in a place that openly discriminates against fellow Americans? We will not be travelling to North Carolina anymore. In fact, we will not be booking any flights that have a layover in NC either. Good day." You only say this because you heard other people adamantly say it. And anyways, Texas pride is the biggest scam. Most people live in city type areas and have nothing to do with the visual or cultural depictions of Texas. Texas pride is such a big thing because people need to convince themselves that they've made the right decision to live on a giant flat plain that is just mosquitoes and concrete. Yes, there are redeeming qualities but for most people they might as well live in Oklahoma City. Think about it. The average hip-hop fan I meet in everyday life only listens to 36 Chambers and Tupac. It's exciting to find a place to talk about artists who are doing new things and pushing the envelope than having the same discussion about Biggie Smalls and shit talking Nicki Minaj like most hip-hop discussions become IRL. As a sophomore in college, I was having a really rough time, doing a lot of drugs, listening to shitty music, pretty much spiraling downwards. My horrible wannabe sorority chick roommate decided to rat me out for selling pot out of my car, and I was busted for it. Given the cunning and manipulative nature of my psyche, I thought it would be a good idea to "fake" a suicide attempt and take a medical withdrawal instead of facing consequences. In the process of slicing my arms open, I decided to bleed ALL OVER HER STUFF-- her bed, her textbooks, her straightener, anything accessible, and carve a note into her bulletin board
512
reddit
that I started noticing that the top part was slightly curved and that it wouldn't sit flush with the base when closed. I never really paid much attention to it at the time. Fast forward a few months and now I think the same thing is starting to happen with my Surface Book w/ Performance Base (photo [three](http://i.imgur.com/48pfyUe.jpg), [four](http://i.imgur.com/0eH0GYT.jpg) and [five](http://i.imgur.com/XH8HpSN.jpg) of gallery). I've started noticing that the top doesn't sit flush with the base anymore when the lid is closed and if I look hard enough I can see a slight curve towards the top part of the screen. Should I be worried that my new Surface Book will also get the same battery bulge and die out as the last one? Also, I can't really take these devices to a Microsoft Store since I got them imported from the US, half way across the world and can't ask anyone to carry them back to the US since they are a safety hazard on a plane. **EDIT**: I also should add that I've always used the included charger to charge both devices, though I do leave them plugged in almost 24/7, as I do all my laptops and rarely use them on battery power alone. **EDIT 2**: My Surface Book /w Performance Base is under warranty until 05/01/2018, but it is only valid in the US as far as I know, so getting it fixed or replaced under warranty is also very difficult. the fine print says "Limit one (1) code per qualified purchase. Limit five (5) codes per customer" so i wonder if I did the 4 for $100 deal, can I redeem 4 codes? but I'm doubtful if you had 4 on one sales receipt that it would be redeemable 4 times... See like thats the kind of confusion and anger I'm talking about. They're not doing this for fun, they had molotov cocktails thrown at them by kids, and he was caught for doing that. They were brought up in an occupation and taught to throw these cocktails. The soldiers are not doing it maliciously, but who the hell wants to see kids get taken from their parents. I am a MW2 and MW3 player, those are the only games I actually played. I used to kill players across the map if my aim is good ( with same amount of bullets when they are close) I mean isn't it dumb? Why would distance change anything? What was the first cod that they implemented this system on? I think the song is sitting really well where it's at, but there are just a few small adjustments that could be made that I think would really bring it home. The main thing being that I feel like the drum track is set just a tiny bit high in the mix, and that the snare tends to fight with the vocals a bit. Try taking it down in level a bit and make sure they aren't sharing too many frequencies that might put them at odds for the forefront. The vocals are
512
realnews
cater for it. But cities also have to stay nice places for the people who work, live and sleep in them. It’s not always an easy balance to strike. The night mayor helps us understand the issues better, from all sides, and come up with innovative solutions – like 24-hour licences. Everyone benefits. It makes a real difference in Amsterdam.” Follow Guardian Cities on Twitter and Facebook and join the discussion • This article was amended on 21 March 2016 to remove a reference to Studio 80, which recently closed. By Andrea Johnson Nov 5 (IFR) - The US high-grade bond market set the one-day record for dollar volume on Monday, as issuers sold $22.1 billion of debt on the eve of one of the tightest presidential elections in memory. The day’s tally included the single biggest debt sale in US corporate investment-grade history, a $14.7 billion deal from pharmaceuticals giant Abbott. The surge of trades spoke to an unusual confluence of factors - last week’s devastating mega-storm, historically low interest rates, and market trepidation ahead of Tuesday’s vote. The market has seen a whopping $47.45 billion in debt sold in three business days, with companies moving swiftly to drum up new financing ahead of the knife-edge election. Presidential elections almost always have a strong effect on the credit and equities markets. The Dow lost 5% the day after Obama’s 2008 win. But with interest rates still being kept low by the Federal Reserve to try to counteract the effects of the 2007-08 financial crisis, companies have been selling new debt at a furious pace in 2012, much of it to finance older and more expensive outstanding obligations. “From an issuer’s point of view, the mood of the buy side is so good, and coupons so low, that it’s a case of just issuing now and asking questions later,” Michael Collins, a senior investment manager at Prudential, told IFR. “That’s part of the mentality that is driving the new issue market at the moment, and another part of it is getting some capital raising done ahead of the fiscal cliff.” How to cope with the so-called fiscal cliff - the nexus of tax and spending cuts looming when 2013 begins - is one of the many issues in play in Tuesday’s showdown between President Barack Obama and challenger Mitt Romney. Many analysts said the rush of deals on Monday was to be expected before the vote, which polls show could be one of the closest-ever battles for the White House. “Corporates want to complete their funding plans ahead of the uncertainties presented by the presidential election and the fiscal cliff,” said Edward Marrinan, head of macro credit strategy at RBS. Monday’s record was driven by Abbott, which came to market with the biggest high-grade corporate deal in US history to facilitate its decision to split into two entities. “With a deal of this size they could not afford to wait until after the election to get it done,” said one corporate credit strategist. “Whichever way the election goes, it will have an
512
s2orc
between the target and coupler and between the coupler and control, respectively. As an example, the separations between the target and the coupler qubits is selected as 14 nm, and between the coupler and control qubits as 18 nm. These separations allow a pitch of 32 nm which is consistent with the reported STM control-line requirements (≥ 30 nm) [14]. We note that the two separations are purposely selected to be slightly different (18 nm and 14 nm), to minimise frequency band overlaps which will allow efficient design of control pulses addressing individual donor pairs. Figure 3(c) and (d) show a relatively small variation in exchange interaction (about a factor of 5 or less), when compared to roughly three orders of magnitude variation reported for similar donor position uncertainties in unstrained silicon substrate [34]. This considerably suppressed variation in exchange strength has important implication for the fidelity of CNOT gate which sharply decreases when the exchange distribution is large [30]. Furthermore, full exchange control can be achieved in strained silicon system by an external in-plane electric field which can provide a tuning of factor or ten or more for donor separations above 14 nm [35]. The application of strain offers another direct benefit in terms of CNOT gate operation times as the interaction time is inversely proportional to exchange strength. strained silicon will have roughly the same exchange interactions as the donor pairs which are 12-14 nm separations in the unstrained silicon. This implies that donors can be placed much larger distances in strained system without sacrificing exchange interaction or CNOT interaction times, which is important to meet the pitch requirements of a large-scale architecture. From our calculations, we estimate O(μsec) interaction times for donor separations of upto 25 nm in strained silicon case, which is drastically faster when compared to O( sec) interaction times for unstrained silicon substrates. Secondly, the exchange interaction Characterization of CuHal-intercalated carbon nanotubes with x-ray absorption spectroscopy combined with x-ray photoelectron and resonant photoemission spectroscopies M Brzhezinskaya maria.brzhezinskaya@helmholtz-berlin.de Institut für Nanometeroptik und Technologie Helmholtz-Zentrum Berlin für Materialien und Energie GmbH Albert-Einstein-Str. 1512489BerlinGermany A Generalov St. Petersburg State University Ulyanovskaya Str. 1198504St. PetersburgRussia Technical University Dresden Mommsenstrasse 901062DresdenGermany A Vinogdradov Technical University Dresden Mommsenstrasse 901062DresdenGermany A Eliseev Moscow State University Leninskii Gori 1119991MoscowRussia Characterization of CuHal-intercalated carbon nanotubes with x-ray absorption spectroscopy combined with x-ray photoelectron and resonant photoemission spectroscopies 10.1088/1742-6596/430/1/012133 Encapsulated single-walled carbon nanotubes (SWCNTs) with inner channels filled by different compounds present the new class of composite materials. Such CNTs give opportunity to form 1D nanocrystals as well as quantum nanowires with new physical and chemical properties inside the tubes. The present study is aimed to characterize the possible chemical interaction between CuHal (Hal=I, Cl, Br) and SWCNTs in CuHal@SWCNTs and electronic structure of the latter using high-resolution near edge X-ray absorption fine structure (NEXAFS) spectroscopy combined with high-resolution X-ray photoelectron spectroscopy and resonant photoemission spectroscopy. The present study has shown that there is a chemical interaction between the filler and -electron subsystem of CNTs which is accompanied by changes of the atomic and electronic structure
512
Github
support order or to determine parentage of a child, a tribunal of the District may exercise personal jurisdiction over a nonresident individual or the individual’s guardian or conservator if:</text> <para> <num>(1)</num> <text>The individual is personally served with notice within the District;</text> </para> <para> <num>(2)</num> <text>The individual submits to the jurisdiction of the District by consent in a record, by entering a general appearance, or by filing a responsive document having the effect of waiving any contest to personal jurisdiction;</text> </para> <para> <num>(3)</num> <text>The individual resided with the child in the District;</text> </para> <para> <num>(4)</num> <text>The individual resided in the District and provided prenatal expenses or support for the child;</text> </para> <para> <num>(5)</num> <text>The child resides in the District as a result of the acts or directives of the individual;</text> </para> <para> <num>(6)</num> <text>The individual engaged in sexual intercourse in the District and the child may have been conceived by that act of intercourse; or</text> </para> <para> <num>(7)</num> <text>There is any other basis consistent with the laws of the District and the Constitution of the United States for the exercise of personal jurisdiction.</text> </para> </para> <para> <num>(b)</num> <text>The bases of personal jurisdiction set forth in subsection (a) of this section or in any other law of the District may not be used to acquire personal jurisdiction for a tribunal of the District to modify a child-support order of another state unless the requirements of <cite path="§46-356.11">§ 46-356.11</cite> are met, or, in the case of a foreign support order, unless the requirements of <cite path="§46-356.15">§ 46-356.15</cite> are met.</text> </para> <annotations> <annotation doc="D.C. Law 21-73" type="History" path="§201">Feb. 27, 2016, D.C. Law 21-73, § 201, 63 DCR 222</annotation> </annotations> </section> #!/bin/sh set -e . ../../common.sh if [ ! -d $WORK_DIR/kernel/linux-* ] ; then echo "Kernel source directory is missing. Cannot continue." exit 1 else echo "Kernel source directory exists." fi if [ ! -d $KERNEL_INSTALLED ] ; then echo "Kernel is not built. Cannot continue." exit 1 else echo "Kernel is built." fi rm -rf $DEST_DIR cd $WORK_DIR/kernel/linux-* echo "Building kernel modules." make_target modules echo "Installing kernel modules." make_target \ INSTALL_MOD_PATH=$DEST_DIR \ modules_install echo "Removing unnecessary links." cd $DEST_DIR/lib/modules/* unlink build unlink source echo "Reducing the size of all generated kernel modules." reduce_size $DEST_DIR/lib/modules mkdir -p $DEST_DIR/etc/autorun cp $SRC_DIR/10_modules.sh $DEST_DIR/etc/autorun install_to_overlay cd $SRC_DIR "use strict"; /** * Provides scrolling lists with large data sets that behave in a very * performance-optimised fashion by controlling the DOM elements currently * on screen to ensure that only the visible elements are rendered and * all other elements are simulated by variable height divs at the top * and bottom of the scrolling list. * * This module requires that the AutoBind module is loaded before it * will work. * * Infinilists work from views and those views cannot have an $orderBy * clause in them because that would slow down rendering. Instead if you * wish to have your data ordered you have to create a temporary collection * from which your view feeds from and pre-order the data before inserting * it into the temporary collection.
512
reddit
applies to a lot of things. Policies used to be based upon sound wisdom and judgement, based on established, working order of things. Increasingly, people have put "but that's not fair" or "that doesn't sound right" ahead of sound judgement. People have stopped listening to sound voices of reason, and instead simply cast their vote for the guy who says the the stuff that sounds the best... "healthcare for everyone!" "we need a better education system for our kids!" "war is bad" "America is the worst in math and science." "America has a horrible infant mortality rate!" These are all statements that people base their votes, dollars and judgement on, rather than looking at all the surrounding facts and analyzing the best way to address these issues, if they should be addressed at all. I think it's a great quote. You know, I casually warned towards the end of D1's DLC releases, around RoI, that I bet D2 starts from the ground up and resembles D1Y1 Vanilla when released. So, I'm going to take this time to say, "I told you so." Now, I'm going to predict that D3 will be so similar to CoD, that certain aspects of this game that have ALREADY been dumbed down from D1, will be even MORE dumbed down or removed altogether. I've never seen them as glitches, but pretty much actual miracles, sort of like biblical stuff y'know? Like I'm not that churchy or anything, but when stuff like that happens, it really opens you up to The Bigger Questions. Just thinking out loud here. God Bless and Keep on Truckin. How about this: I believe a person who practices these will become happier, more peaceful, more satisfied, more connected, experiences less distress, anxiety and disconnection. Also I think those things go pretty much hand in hand with liberation; more you experience those states, the further on the path you are (at least in principle). Take [the 11 benefits of metta](http://www.accesstoinsight.org/tipitaka/an/an11/an11.016.piya.html) for instance, it's one of those skillful qualities you were talking about, right? First of all I imagine it's a damn nice way to live, I can't really imagine anything better. Secondly, from what i understand, metta alone can bring a person very close, if not all the way to liberation. So I guess what i'm saying is these qualities both bring you closer to liberation, and are also a real enjoyable way to live. Also, Vetinari Clock! &gt; The clock in Lord Vetinari’s anteroom didn’t tick right. Sometimes the tick was just a fraction late, sometimes the tock was early. Occasionally, one or the other didn’t happen at all. This wasn’t really noticeable until you’d been in there for five minutes, by which time small but significant parts of the brain were going crazy. https://roryokane.github.io/vetinari-clock-simulator/ Thanks man. I tend to really talk myself out of things by saying that I MIGHT join a gym tomorrow or I MIGHT go on Monday or shit like that. Its funny that you bring up bringing a friend though. I joined a local gym down the road from my house, and
512
StackExchange
f_proxy(*args, **kwargs): global lfunctions f = lfunctions[f_hash] f(*args, **kwargs) return f_proxy def make_cell(value): return (lambda x: lambda: x)(value).func_closure[0] def UnmarshalClosureValues(aMarshalledClosureValues): global lfunctions lclosure = None if aMarshalledClosureValues: lclosureValues = [] for item in aMarshalledClosureValues: ltype = len(item) if ltype == 1: lclosureValues.append(pickle.loads(item[0])) elif ltype == 2: lfunction = make_proxy(item[0]) lclosureValues.append(lfunction) elif ltype == 4: lfuncglobals = sys.modules[item[3]].__dict__ lfuncglobals["lfunctions"] = lfunctions lfunction = types.FunctionType(marshal.loads(item[1]), lfuncglobals, closure=UnmarshalClosureValues(item[2])) lfunctions[item[0]] = lfunction lclosureValues.append(lfunction) lclosure = tuple([make_cell(lvalue) for lvalue in lclosureValues]) return lclosure lfunctionCode = marshal.loads(lmarshalledFunc) lclosure = UnmarshalClosureValues(lmarshalledClosureValues) lfunction = types.FunctionType(lfunctionCode, lglobals, closure=lclosure) return lfunction def SerialiseFunction(aFunction): if not aFunction or not hasattr(aFunction, "func_code"): raise Exception ("First argument required, must be a function") lfunctionHashes = set() def MarshalClosureValues(aClosure, aParentIndices = []): lmarshalledClosureValues = [] if aClosure: lclosureValues = [lcell.cell_contents for lcell in aClosure] lmarshalledClosureValues = [] for index, litem in enumerate(lclosureValues): lfullIndex = list(aParentIndices) lfullIndex.append(index) if isinstance(litem, types.FunctionType): lhash = hash(litem) if lhash in lfunctionHashes: lmarshalledClosureValues.append([lhash, None]) else: lfunctionHashes.add(lhash) lmarshalledClosureValues.append([lhash, marshal.dumps(litem.func_code), MarshalClosureValues(litem.func_closure, lfullIndex), litem.__module__]) else: lmarshalledClosureValues.append([pickle.dumps(litem)]) lmarshalledFunc = marshal.dumps(aFunction.func_code) lmarshalledClosureValues = MarshalClosureValues(aFunction.func_closure) lmoduleName = aFunction.__module__ lcombined = (lmarshalledFunc, lmarshalledClosureValues, lmoduleName) retval = pickle.dumps(lcombined) return retval Q: Allow user to select multiple item on JList I wanted to allow the user to select multiple values/items in a JList. I tried this and it did not work. It does not allow to select multiple values in JList. public class ChatClient { DefaultListModel listModel = new DefaultListModel(); JList onlineList = new JList(listModel); public ChatClient() { onlineList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION); } Full Code of ChatClient.java: import java.awt.BorderLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.net.Socket; import java.util.Arrays; import java.util.HashSet; import javax.swing.DefaultListModel; import javax.swing.JCheckBox; import javax.swing.JFrame; import javax.swing.JList; import javax.swing.JOptionPane; import javax.swing.JScrollPane; import javax.swing.JTextArea; import javax.swing.JTextField; import javax.swing.ListSelectionModel; public class ChatClient { BufferedReader in; PrintWriter out; JFrame frame = new JFrame("Chatter"); JTextField textField = new JTextField(40); JTextArea messageArea = new JTextArea(8, 40); JCheckBox checkBox = new JCheckBox("Broadcast"); DefaultListModel listModel = new DefaultListModel(); JList onlineList = new JList(listModel); public ChatClient() { onlineList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION); textField.setEditable(false); messageArea.setEditable(false); frame.getContentPane().add(textField, "North"); frame.getContentPane().add(checkBox,BorderLayout.WEST); frame.getContentPane().add(new JScrollPane(messageArea), "South"); frame.getContentPane().add(new JScrollPane(onlineList), "Center"); frame.pack(); onlineList.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION); checkBox.setSelected(true); textField.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { if (checkBox.isSelected()) { out.println(textField.getText()); textField.setText(""); } else { System.out.println(Arrays.asList(onlineList.getSelectedIndices())); //For testing String selectedName = (String) onlineList.getSelectedValue(); out.println(selectedName + ">>"+ textField.getText()); textField.setText(""); } } }); } private String getServerAddress() { return JOptionPane.showInputDialog( frame, "Enter IP Address of the Server:", "Welcome to the Chatter", JOptionPane.QUESTION_MESSAGE); } private String getName() { return JOptionPane.showInputDialog( frame, "Choose a screen name:", "Screen name selection", JOptionPane.PLAIN_MESSAGE); } private void run() throws IOException { String serverAddress = getServerAddress(); Socket socket = new Socket(serverAddress, 9001); in = new BufferedReader(new InputStreamReader( socket.getInputStream())); out = new PrintWriter(socket.getOutputStream(), true); while (true) { String line = in.readLine(); if (line.startsWith("SUBMITNAME")) { out.println(getName()); } else if (line.startsWith("NAMEACCEPTED")) { textField.setEditable(true); } else if (line.startsWith("MESSAGE")) { messageArea.append(line.substring(8) + "\n"); } else if (line.startsWith("NEWUSER")) { listModel.addElement(line.substring(7)); } else if (line.startsWith("USEROUT")) { listModel.removeElement(line.substring(7)); } } } public static void main(String[] args) throws Exception { ChatClient client = new ChatClient(); client.frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); client.frame.setVisible(true); client.run(); } } A: For me, your code works. Please be sure that multi-selection works (on Linux) by pressing SHIFT/CTRL + click. This
512
gmane
FTLs ; would like to know from the community how common this combo really is, and what do you use FTL for ? Thanks, s2user JD thank you for that great answer. Here is the setup. Work PC runs Win7 64 bit with 12GB RAM. On this box I run VMWare Workstation 7 which runs Ubuntu 11.04 64bit version. Runs fine. Home Laptop runs Win7 32 bit with 3GB RAM. I connect from this laptop to the VMWare Ubuntu11.04 I just mentioned above. Currently the mode of connections is VNC client on my Laptop to the VM. I am trying to configure XMing on the laptop and use Putty to connect to the VM in the WorkPlace. I want to use Putty to do X-Forwarding and thats where I am trying to get suggestions. Your input on running PuppyLinux inside a VM on the Laptop is very interesting and can help me avoid XMing. Running PuppyLinux within a VM on my laptop might work, but does it work well with only 512Mb of RAM well ? I will give it a shot for the PuppyLinux stuff. Is XDMCP almost like VNC ? (lets keep aside security for a second) as in it runs the app on the Work VM but projects display back to the VM on the home Laptop VM. If I disconnect the XDMCP session is the app running on the remote box going to run even after I disconnect XDMCP ? -Narahari Hi all, I'm learning TileMill with a project to render my home town of Melbourne, which is on the southeastern coast of Australia. The only problem I'm having is the coastline. I've tried a few things, and nothing has really worked: 1) The default 'countries' shape that comes with TileMill - not enough detail, misaligned with OSM data (maybe the wrong projection) 2) Cloudmade's Victoria coastline (http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/victoria) - I think it's just a way, not a closed polygon. As a result, applying a fill to it doesn't really work - bits of water don't get filled, and bits of land do. 3) Cloudmade's victoria.poly (http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/victoria/victoria.poly) - not in a format that TileMill recognises. 4) Cloudmade's whole Australia coastline: http://downloads.cloudmade.com/oceania/australia_and_new_zealand/australia/australia.coastline.osm.bz2 - aligns perfectly, but seems to be broken: https://dl.dropbox.com/u/767553/broken-coastline.png 5) openstreetmapdata.com's land/sea polygons (http://openstreetmapdata.com/data/land-polygons) - very slow to render (because it's the whole world?) - it's off by ~25km south of the other OSM data. I used the Mercator projection I'm using TileMill installed on an Ubuntu VM with PostGIS. The OSM data I'm using came from here: http://osm-metro-extracts.s3.amazonaws.com/melbourne.osm.pbf Can someone advise the best way to get a simple coastline polygon into TileMill? For this project, I really only need a single polygon of Port Phillip Bay (or alternatively, a single land polygon covering greater Melbourne). Sorry for the newbie questions. Thanks, Steve Ok, I think I know I want to do this, but I thought I'd run it by yins guys I have a fairly large and complex application with two top-level packages, which we'll call upstream and mine. The "upstream" package isn't really upstream. I own both
512
DM Mathematics
-3*i + x for i. -3 Suppose -2*l = -6*l + 20. Solve 4*z - l = 3 for z. 2 Let r be -4*(15/6 - 3). Solve 3*t - 5*t = -r for t. 1 Let h be (-192)/(-60) + (-8)/(-10). Solve -16 = -0*o - h*o for o. 4 Suppose -20 = -3*a + 13. Suppose -5*f = -a - 9. Solve -20 = -0*k + f*k for k. -5 Suppose -2*p = -f - 10, 2*p + 3*p + 2*f - 25 = 0. Suppose p*y = 26 + 19. Solve -y = 2*c + c for c. -3 Suppose i + i = -12. Let k = i - -9. Suppose -4*d = -k*d - 16. Solve 4*b = d - 4 for b. 3 Let j(p) = 2*p - 9. Let d be j(6). Let a = d + -3. Let t be 2/(-2)*a/2. Solve -4*k + 3 + 5 = t for k. 2 Suppose -6*y + 5*y = 0. Solve y = 3*j - 0 + 15 for j. -5 Let n be 18/9 - 2*1. Suppose -3*q + 8 = -1. Let u be ((-3)/1)/q*0. Solve -4*w + 8 + u = n for w. 2 Let k be -1*(8*-1 + 1). Suppose -c = -k*c + 30. Solve -c*x - 8 = -23 for x. 3 Suppose -2*l = 2*l - 20. Suppose 2*k + 6 + 12 = 2*x, -2*k - 33 = -l*x. Solve 0*f = -f - x for f. -5 Suppose 3*j + 3*p - 9 = -0*p, 3*j + 4*p nd 1/g - (-484)/55. 36 Let x be (-342)/(-81) - 4/18. What is the common denominator of x/((-532)/7) - (-1 - -2) and 28/11? 209 Suppose 16*j + 16 = -5*j + 352. Suppose 0 = -2*u + 4*c + 38, -2*c = -4*u - 3*c + 31. Calculate the least common multiple of j and u. 144 Let z = -628 + 672. Suppose -47 = -5*w + b, -4*w + 65 = w + 5*b. What is the lowest common multiple of w and z? 220 Suppose 0 = -2*h - 2*k + 366, 174 = h - 5*k + 3*k. Let v = h + -60. What is the lowest common multiple of 2 and v? 120 Let d(s) = -20*s + 5. What is the smallest common multiple of d(-1) and 90? 450 Let m(b) be the second derivative of -5/6*b**3 + 0 - 7*b - 6*b**2. What is the least common multiple of m(-4) and 34? 136 Let x(w) = 3*w**2 - 11*w - 6. Suppose -8 + 58 = 10*r. What is the lowest common multiple of 14 and x(r)? 14 Let a = -1011/2461 - 115306989/19688. Let z be (2 + (-7)/2)*3910. Let j = a - z. Calculate the common denominator of j and 45/8. 8 Let l = 29 + -25. Let p(m) = -7*m**2 - 2*m + 11. Let n(x) = -x**2 + x. Let r(v) = -6*n(v) + p(v). Calculate the smallest common multiple of l and
512
realnews
talents, her fervor for social work, and the community-spiritedness she has demonstrated during her time in Baltimore, he could make her the first head of his presidential library. It would be a suitable homecoming; Hayden and the Obamas first met through the public-library system in Chicago. The Library of Congress, though, is not the place for ideological agenda-pushing. It’s a place for serious, public-spirited scholarship, and much better candidates than Carla Hayden are available to facilitate that mission. Jose Cuervo International is looking to build continuity with its first global campaign -- complete with record spending, an expanded target consumer and new brand repositioning -- to lure devotees of other spirits. Cuervo, the country's No. 1 tequila, will receive about $12 million in spending -- mostly in magazines including Cosmopolitan, Maxim and Sports Illustrated, as well as outdoor (AA, Sept. 11). The "Vive Cuervo" ads break in November magazines domestically and in Greece, followed by the U.K., Mexico and Brazil in January. An Internet component will follow. Cuervo International and its distributor, United Distillers & Vintners/ North America, want to position the brand not just as tops in its own category but as the preferred choice among all spirits, said Carlos Arana, managing director of the newly established global marketing unit of Mexico-based Cuervo & Campania. "Consumers aren't drinking categories. They are drinking brands," he said. Jose Cuervo is the country's ninth most popular spirit, selling 3.3 million cases last year -- up 11% from 1998, according to Impact. The brand is growing about five times faster than the overall spirits category. PITHY QUOTES The b&w ads contain pithy quotes such as "All work and no play is totally missing the point" and "I go out on Tuesday, but I go all out on Friday." Mr. Arana said ads will be the same in all countries. All will carry the "Vive Cuervo" tagline. "It's a very global idea -- very Cuervo. All the ads look the same," he said. The work by AG Worldwide, New York, replaces the seven-year "Cuervo Critters" campaign from Grybauskas Beatrice, New York, for United Distillers & Vintners. AG won the account in May after a five-month competition that included Bartle Bogle Hegarty and J. Walter Thompson USA, both New York, and Leo Burnett USA, Chicago. Ads also run in homosexual-targeted publications for the first time, with lines such as "We are here. We are Cuervo." The brand's primary target remains 21-to-30-year-old heterosexual men, but it has been expanded to include women and gays. `ACKNOWLEDGE OUR CONSUMERS' "The mission was to give a great presence to the culture and soul of Cuervo in a fresh way," said Peter Arnell, chief creative officer of AG. "We wanted to do a campaign that would touch people with a certain amount of reality, something that would -- through our communication -- acknowledge our consumers vs. persuading them." Jose Cuervo International opened in July in New York to give the Mexican exporter a greater hand in marketing. The tequila was supported with about $5 million in U.S. advertising last year. It will
512
YouTubeCommons
to the plot in any way as far as i remember anyways um yeah you know what i'm just i'm just gonna start nazi now it wasn't me i swear it wasn't me i get so confused every single time we do episode saturday every day listen testimony we have seen and heard our conclusive the victim was alone at his table when he drank from that poison cup of coffee no you're wrong i know what i saw i saw i saw [Music] we're just getting straight into it we're getting into it and i'm like what's happening did i i saw someone else there a man the real killer heyo phoenix right the hell you doing what are you doing my guy why why won't anyone believe me oh no no well i say that pretty much wraps this case up wouldn't you mr right and this court finds the defendant this court is a jared i am serious oh my god that was so confusing i'm why i have like the last like episodes beginning like the beginnings of the past few episodes have been so confusing i've been like what what what did i forget to save did i just like start like further back i was so confused the start of the new year always makes me feel like i can take on the whole world but it does maya so i've decided that our release resolution should be take on the world what do you think sure whatever maya but uh i think maybe you've had more than enough mistletoe cake never you got a lot you gotta eat a lot of cake during new year's it's practically a tradition like watching the fireworks on tv or playing a board game hey pal detective gumshoe happy new year detective uh likewise now listen up right i wanna here's to another fruitful year of lawyer police cooperation um yeah me too all right pal you've got some explaining to do have you got a holiday present for me detective what well i am here have this it's uh it's really nothing much but thanks look pal we need to have a talk take a seat hey what about pearly you haven't forgotten her present have you uh no i mean yes i mean no are you doing this on purpose i guess i'm busted how did you like my first practical joke of the year very funny pal now let's see how funny you think it is when i show you this what is it a magazine hey i want to see deadly poisoning brings guilty verdict defense attorney right trounced trounced let me see that the defense attorney gave an almost childishly amateur performance yesterday what the heck is this is the report pal about you listen to this mr wright must take full responsibility for the ruling in this case well and don't tell me you don't remember anything about it but i don't remember anything about it what was the what was that issue
512
StackExchange
sorry if I broke any posting rules with this website and I know its probably an easy question for most of you. A: "e) None of the above" C does not have the ability to pass an int by reference. The closest other candidate is "c) f(&max);". In this case, the parameter passed to f is not max, but the address of max. A copy of the address of max is received by f(int *x). It gets close to "pass by reference" for max, but it is a "pass by value" of the address of max. int max; void f(int *x); f(&max); Q: Using a SVG file for a background for a Windows Store app (Metro) I have a simple Windows Store app and i'd like to use a SVG image for the background. I've created one using Inkscape and added it to the Assets folder and checked it's set to Content. For the XAML i have the following; <Grid> <Grid.Background> <ImageBrush ImageSource="/Assets/Background.svg"/> </Grid.Background> </Grid> Nothing is being displayed, Am i doing something wrong or is not possible to use an SVG file? A: Not directly (see Image File Formats). There are however converters and other controls that would enable you to leverage SVG assets. A number of them convert the vector SVG format to the vector XAML format. A Bing search for me yield the following (and more). Do note, however, these are not specifically Windows 8 focused and there are some XAML dialect differences from WPF and Silverlight. I've not used them specifically with Windows 8, so this is not an endorsemnent, but just a few options worth looking into. Inkscape (includes a XAML export option) SVGImage Control SharpVectors ViewerSvg Q: Perfect Squares ending in 576 I want to find out perfect squares ending in 576, after the number 576. Here is my derivation to arrive at such a number. Let the perfect square ending in $576$ be $1000k+576$. Every perfect square can be expressed as a the sum of a certain number of consecutive odd numbers. For eg: $2^2 = 1+3$, $3^2 = 1+3+5$, $4^2 = 1+3+5+7$, and so on.. Hence I can write my required perfect square ending in 576 as - $$(1+3+5+7+\cdots+49) + \underbrace{(51+53+55+57+\cdots)}_{(n\text{ summands})}$$ Therefore, $$(1+3+5+7+\cdots+49) + \underbrace{(51+53+55+57+\cdots)}_{ (n \text{ summands})} = 1000k +576.$$ Since $(1+3+5+7+ ....49) = 576$, the equation reduces to $$\underbrace{(51+53+55+57+\cdots)}_{n\text{ summands})} = 1000k$$ Using formula for Arithmetic Progression starting with 51 and a common difference of 2, $$\begin{align*} \frac{n}{2}\left(2(51) + (n-1)2\right) &= 1000k\\ n(n+50) &= 1000k \end{align*}$$ Put $n = 100$, $100\times 150 = 1000k$, hence $k = 15$. Put $k = 15$ in the perfect square term $1000k+576$ we get the number $15576$. But $15576$ is not a perfect square. What is flawed in my derivation? Kindly help. A: The flaw is Since, (1+3+5+7+ ....49) = 576 The sum is actually 625. You need to stop a term earlier. A: Your question definitely deserves a more precise answer than this, see the answer by Peter Taylor. But I'd like to point out that what you are looking for are squares that
512
realnews
LED lights. (Twenty other solutions, such as direct air capture of emissions and the hyperloop, are discussed in the book but not modeled, since the technology is so nascent.) It’s likely the most comprehensive model of climate solutions ever made. “Nothing that shows up in Drawdown is unique to Drawdown, but it’s the compilation, the extremely comprehensive scope, I think, that’s new,” says Anna Goldstein, who served as a research fellow on the project and is now a postdoctoral research fellow in the science, technology, and public policy program at the Harvard Kennedy School’s Belfer Center for Science and International Affairs. As countries studied potential solutions to make pledges to reduce emissions for the Paris Agreement, they focused on solutions that made the most sense within their own context. In the U.S., for example, the Pathways to Deep Decarbonization report, which studied the details of a national transition to a low-carbon economy, focused on energy, and what it would take to change American infrastructure to avoid tipping over two degrees of warming. Drawdown looks implementation of solutions for the whole world, and also aims for a different goal: instead of stopping warming at two degrees, it wants to try to reverse warming entirely. In the book’s “plausible” scenario, the goal of “drawdown” isn’t met. 1,051 gigatons of emissions are avoided or sequestered, but the concentration in the atmosphere would still increase. In the “drawdown” scenario, with a shift to 100% renewable energy (which, in this scenario includes biomass and nuclear), the model estimates that, in the year 2050, there would be a net reduction of carbon dioxide in the atmosphere. In the “optimum” scenario, with 100% renewable energy that is clean (no biomass or nuclear, etc.), drawdown could happen as early as 2045. Currents In The Right Direction There are caveats: the models don’t account for how much carbon dioxide or methane the ocean and land can absorb; increased warming may make both less possible. The CO2 that the ocean has already absorbed is also causing acidification, affecting everything that lives in the water, and further impairing absorption. As ice melts at the Arctic, warming is likely to increase much faster even if emissions drop. And, of course, all of these solutions would also need to grow as much as the models predict. Some of this is well underway; the economics of wind and solar energy, as well as electric cars, are likely to speed adoption even if countries like the U.S. don’t provide strong policy support. “It’s hard to not ride the waves of politics, but I think that there are strong currents in the right direction, and in critical areas we’ve seen astronomical technology improvement in the last few years that really changes the equation in terms of whether it’s a cost at all to transition to these types of decarbonized energy systems,” says Ben Haley, co-founder at Evolved Energy Research and one of the researchers on the United States Pathways To Deep Decarbonization team. Christie's, a 250-year-old auction house with showrooms spanning from New York to Shanghai, is expanding
512
ao3
have passed out from the pain. Near one of her limp hands there is a short whip lying in the snow. Charter’s stomach drops. Since the conclave Leliana has been withdrawn, unwilling to speak of it to anyone. Josephine comes to the tent to check on her but Leliana just sends her away. She and Cassandra fight more days than not. Charter had thought it best to give her space, to do as much as she could to make Leliana’s job easier in the hopes that Leliana would recognize her silent support. It wasn’t enough. Charter pulls off her heavy cloak and gently covers Leliana with it before standing and stepping out of the tent. She takes off at a run up the hill to the apothecary. The windows are dark; Aidan must be sleeping. Charter pulls out a set of lockpicks and makes quick work of the iron springs before easing the door open. She pads silently across the room to the jars of salves sitting in rows on one of the tables, picking up a roll of bandages on the way. She holds one of the jars up to the light coming in through the windows from the breach outside. Royal elfroot. She slips back out with the bandages and salve in tow and runs back to Leliana’s tent. She shoves inside and comes to a halt. Leliana is on her feet, an arm over her bare chest. The whip is nowhere in sight. “What’re you doing here?” Charter holds up the salve. “I need to put this on your back.” Leliana steps back, swaying slightly. “You don’t need--” “If you get an infection in this weather it could kill you.” They stare at one another before Leliana looks down at the bloody snow between them. They both know this is necessary. There are quicker methods but no healer can be trusted not to get a few pints deep at the tavern and talk about what they’ve seen. Leliana nods and Charter walks behind her. She sets the bandages on the table and opens the jar. There are so many wounds it’s hard to know where to begin. They don’t speak while Charter gently applies the salve. She takes note of older scars down the lower parts of Leliana’s back, jagged white lines slicing across the muscle. Leliana doesn’t talk about why she disappeared from the Orlesian court, or why she was in Ferelden when the blight began. Maybe those have something to do with it. Leliana flinches as Charter dresses the deepest cuts but she doesn’t cry out. It takes nearly the entire jar, but Charter manages to cover all the open wounds. She picks up the roll of bandages. “Can you lift your arms?” Leliana slowly raises them just enough for Charter to wrap the bandage multiple times around her ribs and chest, careful not to touch her breasts. When Leliana’s back is fully covered, Charter tucks in the end of the bandage and puts a hand on the top of Leliana’s shoulder as lightly as she can.
512
reddit
first thing people point to is the validity of said fact/study. I don't think having that gripe is a problem. I think many people actually just go "ugh you won't even listen to this cherry picked story I believe without having fully verified everything in it myself, so therefore you can't be reasoned with" Instead of "those are good questions as to the validity, but it was conducted with x amount of people in double blind etc etc ways." My only point is just that I see people give up on trying to explain things a lot more than I see people belligerently ignore facts. I'm also going against the grain, my 40 is sharp, yes, but the colors are dull compared to my 50 1.4 (which I know isn't the same as the 1.8). But still, my 40 will sit in my desk indefinitely because I'm too lazy to put it on ebay and deal with that hassle. If you really want compact then yes, it works for that , but if you already have a dslr around your neck the little extra for another prime lens isn't a big deal. Pretty good. Feels a little long at first glance, but after I read through it I felt like I had an appropriate sense of your humor and what you're looking for. But I'd take out the thing about your brand of non-sense and replace with one of your nonsensical things. Had lots of withdrawals quitting benzos/opiates and the transition to kratom helped a lot. I've been taking kratom for a couple months, can't imagine the withdrawals will be too bad (at least compared to benzos). I forget to take kratom sometimes and that is encouraging. I'd NEVER forget to take my Xanax, tramadol. So I doubt kratom is as addictive. As a 24F can you explain to me why it seems as you get older you stop having friends at all? Like I understand drifting from the ones you had at one point but why not have new friends that you share more common interests with in your current stage in life? Honest question. I concede on the point about dropping Messi's first CL win. To me, he was part of the supporting cast and not the main man. I see it like Robert Horry's rings. However, he was an important player and deserves credit. I will not concede on the point about only considering CL in the comparison. There has to be a way to normalize the sports since there are so many more competitions Messi can participate in. If you consider all of his accolades, Messi's resume will always look more impressive. Having said that, Messi could be on his way to winning a 4th CL and probably a 5th Ballon D'or. Rather unprecedented and definitely puts him in conversation for GOAT (soccer wise). LeBron could win a 3rd ring. If you consider only these two categories, Messi still has better accolades. Despite this, I think (today) LeBron is more important to his team. You take out LeBron, the
512
DM Mathematics
remainder when z is divided by 25. 8 Let x(v) be the first derivative of v**3 + 2*v**2 + 3*v + 34. Let t be x(-5). Suppose 0 = 2*y - t + 8. Calculate the remainder when y is divided by 13. 12 Let u = 75 - 69. Suppose 18 = 4*q + b, 4*q - u = -2*b + 10. Suppose -4*o + h + 127 = 0, -4*h - h = -q*o + 155. What is the remainder when 125 is divided by o? 29 Let q(c) = -11*c + 459. What is the remainder when q(-9) is divided by 56? 54 Suppose -p + 2366 = 2039. What is the remainder when p is divided by 62? 17 Suppose -29*z + 278 = -41. Calculate the remainder when 31 is divided by z. 9 Let t = -2439 + 2545. Calculate the remainder when t is divided by 22. 18 Let m = -14127 - -14151. Suppose 0 = -2*q + 4 + 14. What is the remainder when m is divided by q? 6 Let i(q) = -3*q - 4. Let a be i(-8). Suppose 17*j + 66 = a*j. What is the remainder when 60 is divided by j? 16 Suppose 0 = 5*b - i - 2, b + 6*i - 2*i - 13 = 0. What is the remainder when 384 is divided by 4*((-129)/(-12))/b? 40 Suppose -7*u + 5432 = 812. Suppose -u - 81 = 13*n. Calculate the remainder when 148 is divided by n*((-15)/(-10) - 13/6). 34 Suppose 69 = -7*k + 419. Suppose -49*b + k*b = 4. What is the remainder when b + (-29)/1*-2 is divided by 32? 30 Suppose -2*z = 3*n + 2, 0 = 2*z - 2*n + n - 6. Suppose 4*m - 2*m + 8 = 5*x, -z = -3*m + 4*x. What is the remainder when -1*4*-1*44/8 is divided by m? 4 Let h be (-21)/42*-3*4. What is the remainder when 124 is divided by 19 + (-3 - 32/(-4) - h)? 16 Let w(f) = 24*f**2 + 39*f**2 - 65*f**2 - 45*f - 15. Let d = 11 - 2. Calculate the remainder when d is divided by w(-22). 2 Suppose 0 = y + 3*n - 169, 0 = -5*y - 765*n + 768*n + 683. Let g = 236 - 164. What is the remainder when y is divided by g? 70 Let j(r) = -27*r**2 + 3*r + 2. Let h be j(-1). Let b = 21 + h. Let w = b + 19. Calculate the remainder when 22 is divided by w. 10 Suppose 3*u = -2*h - 2*h + 277, -u - 265 = -4*h. Let l = -20 + 20. Suppose l*y - 56 = -4*y. Calculate the remainder when h is divided by y. 11 Suppose -2*w + 3*t + 24 = 0, -3*w - 5*t - 106 = -123. What is the remainder when (-762)/(-5) - 4/10 is divided by w? 8 Let g(b) = 1183*b - 365. What is the
512
realnews
up our country." One person was killed and 19 injuried in Saturday's crash (Aug. 12). Video recorded at the scene shows a 2010 Dodge Challenger accelerating into crowds on a pedestrian mall, sending bodies flying -- then reversing at high speed, hitting yet more people. Witnesses said the street was filled with people opposed to the white nationalists, who had come to town bearing Confederate flags and anti-Semitic epithets. Fields was booked with one count of second-degree murder, three counts of malicious wounding and one count of hit-and-run attended failure to stop with injury, police said. He is being held without bail and is scheduled to be arraigned Monday, said Superintendent Martin Kumer of the Albemarle-Charlottesville Regional Jail. "He was a terrorist to do what he did," said Brian Moran, Virginia secretary of public safety. The FBI field office in Richmond and the U.S. attorney's office in the Western District of Virginia said they have opened a civil rights investigation into the deadly car crash. "The violence and deaths in Charlottesville strike at the heart of American law and justice," U.S. Attorney General Jeff Sessions said. "When such actions arise from racial bigotry and hatred, they betray our core values and cannot be tolerated." Records show Fields last lived in Maumee, Ohio, about 15 miles southwest of Toledo. Fields' father was killed by a drunk driver a few months before the boy's birth, according to an uncle who spoke on the condition of anonymity. His father left him money that the uncle kept in a trust until Fields reached adulthood. "When he turned 18, he demanded his money. And that was the last I had any contact with him," the uncle said. Fields, he said, grew up mostly in northern Kentucky, where he'd been raised by a single mother who was a paraplegic. The uncle, who saw Fields mostly at family gatherings, described his nephew as "not really friendly, more subdued." Richard Spencer, a white supremacist movement leader who coined the term "alt-right," said he didn't know Fields but had been told Fields was a member of Vanguard America, which bills itself as the "Face of American Fascism." In a statement Saturday night, the group denied any connection to Fields. In several images that circulated online, Fields was photographed with the group while wearing its unofficial uniform. Like members, he was dressed in a white polo shirt, baggy khaki pants and sunglasses, while holding a black shield that features a common Vanguard symbol. "The shields seen do not denote membership, nor does the white shirt," the group said in its statement. "The shields were freely handed out to anyone in attendance." Vanguard members did not respond to requests for comment Sunday. As of Saturday evening, the crash had left five people in critical condition and another 14 injured, according to a spokeswoman at the University of Virginia Medical Center, where all of the wounded were being treated. City officials said an additional 14 were hurt in street brawls. Also on Saturday, two state police officers died when their helicopter crashed on the
512
Pile-CC
behalf of Essar Steel’. Carlyle Group is seeking to double its holding in mortgage lender PNB Housing Finance, people familiar with the matter said, reversing an earlier attempt to pare its stake in the company. The US private equity firm is considering buying Punjab National Bank’s (PNB) shares in PNB Housing, which would give it a controlling stake, the people said, asking not to be named as the information is not public. Please only use this form to enter comments on the above company. All comments are reviewed before they are displayed on the web site. Not all comments may be displayed. Check back with us to see if your comments have been displayed. If you want us to email the comments posted by users, please Subscribe by email Name* Comments* Security Code* Be the first person to write a business review for 2018 TVS Apache RTR 160 to launch in India tomorrow: Fastest Apache RTR 160 ever! I have the security/surveillance system fully functional. I can now provide everyone with access cards. We handed out like 15 tonight to everyone that was climbing tonight. So call me from now on to get in if you don't have a card yet. A lot of guys brought holds so it's time to tighten up security. The San Antonio climbers are the coolest group of people I literally have ever met. Everyone helped screw in thousands of T-nuts and whatever else was needed to get this up and running. Sorry about the screw through your hand today Preston (He taped it up and still climbed afterwards) THANKS TO THIS FORUM! Many people that found this post have already showed up to climb. There are a bunch of guys setting routes. We just got the top rope up on the easy side so any one at any level can have fun now. And fun is what this is all about. This is an 18 and up gym. The Lifetimes north of town allow kids. If you want your kids to climb please go there. This is an adult setting, hanging around drinking after climbing kind of scene. Global warming will be set to exceed the most stringent goal set inside the Paris agreement ‘by around 2040’ on current trends, threatening economic growth, according to a draft UN report in which will be the starkest warning yet of the risks of climate change. Governments can still cap temperatures below the strict 1.5 degrees Celsius (2.7° Fahrenheit) ceiling only with “rapid as well as far-reaching” transitions inside the globe economy, according to the UN’s Intergovernmental Panel on Climate Change (IPCC). The final government draft, obtained by Reuters as well as dated June 4, will be due for publication in October in South Korea after revisions as well as approval by governments. in which will be the main scientific guide for combating climate change. “If emissions continue at their present rate, human-induced warming will exceed 1.5°C by around 2040,” according to the draft, which broadly reaffirms findings in an earlier draft in January yet will be more robust after
512
reddit
**Total** | **$2993.65** | Generated by [PCPartPicker](http://pcpartpicker.com) 2017-11-17 00:25 EST-0500 | I think she's insanely well-adjusted, at least with regards to her outlook on life. She's typically so balanced and approaches situations honestly and calmly... to the point where it's almost a bit weird. She's been through a lot, and her situation with her daughter and John is so shitty. I'm not at all surprised to see her have a rare emotional freakout while drinking. I don't know how you guys feel about app question games but my friends and I were playing a drinking app game the other day (http://drinkandtellapp.com/) and it was actually loads of fun. Like, one of the questions was: "If I could 'take back' my virginity from my first partner, would I?" Who thinks of these things? Anyways, after playing for 2 hours, I felt i'd learnt a lot about my friends and vice versa. Easy to play if you're every bored and free! The roster as it is now can be overwhealming, especially to people like me that can have problems with computer screens. When you add the european and other teams, it will probably get worse. I was thinking, if its not to hard, since we can only have 1 person from each postion, why not have a scroll down where it shows just the people who play that position, making the list somewhat more managable for us who have problems. Also, if you have the roster shut down for a game, I think there should be some sign that lets us know that. If there is and I missed it I apologize. Just some ideas..otherwise totally awesome so far (I cant wait to buy Wickd :3) I seriously wish that they made some anime figures from Shinsekai Yori. It's an amazing show, I mean sure it has some pacing issues and maybe too much worldbuilding and not character building. Regardless, it really does something unique and is one of the few stories I can really call an "original" story. Most anime and Japanese fantasy storytelling in general always goes back some kind of folklore, be it Japanese or otherwise...not that it's a bad thing but I think it just makes original stories stand out all the more. I posted over in trying for a baby too but I thought you ladies might have more info to share. We are TTC baby #2 while I am breastfeeding our 3 year old. He still nurses quite frequently during the day and at least twice while he is sleeping. I started charting cervical fluid 2 cycles ago and am charting temps and CF this cycle. I had fertile cf for a few days with low temps but missed taking my temperature this morning because I was up all night nursing and soothing a sick toddler. No clue if I got that temperature spike to confirm ovulation. Does anyone here have any tips for TTC while nursing? How do you observe cervical fluid when it isn't terribly abundant? All my friends that have gotten pregnant while nursing were pleasantly surprised but
512
ao3
skin, repeating the motions. Louis throws his head back, hands gripping the counter so hard that his knuckles are turning white and he can feel them beginning to cramp but he couldn't move them if he tried. That's when Harry starts to lick along his cock, from the base to the head, which he swirls his tongue over and then he takes Louis' length into his mouth, slowly, until his nose is pressed up against Louis' skin and Louis can feel the head of his cock against the back of Harry's throat and it's overwhelming, feels as if every nerve ending in his body has caught fire. Harry pulls off and then takes Louis' cock in his hand, pumping it at this maddening leisurely pace that has Louis' entire body spasming. He can feel his legs starting to give out on him, but Harry simply tightens his grip on Louis' hip so he doesn't fall and finally quickens the pace of his hand on his dick, taking a moment to run his thumb over the slit to gather the precome and then use it to make the slide of his leather glove against Louis' skin easier. At some point Louis must let out a gasp or a moan but he doesn't hear himself, can't hear anything but the beating of his heart like a thundering in his ears and the sound of Harry's breathing. The curly-haired boy finally wraps his hand around the base of Louis' cock and then takes him into his mouth again, swallowing down to his hand, hollowing out his cheekbones and the sensation leaves Louis reeling, it feels so good. And then Harry pulls off almost all the way before swallowing back down and by now Louis is shaking and moaning unabashedly and he's probably being far too loud but he can't be fucked to care because Harry has his mouth on him and is sucking Louis off like it's the last damned thing he will ever do in his life- Harry does something indescribable with his tongue then, and Louis can't even give him a proper warning before he comes. Harry doesn't pull off though, just simply removes his hand and takes Louis all the way down and swallows. Louis has never felt so spent in his life, and he slumps over, would have fallen off the counter if not for Harry standing and gently pushing him back so he was sitting. Louis leans back, resting his head against the mirror, trying to catch his breath. Harry simply nestles between his thighs and kisses him chastely on the lips. Louis can feel the boy's hard-on through his pants, and figures it must feel spectacularly painful, figures he should offer to return the favour, but he can't find the strength to move. Harry doesn't even seem bothered by it, though, and Louis realizes he wouldn't be, that right now Harry's only concern is making Louis feel good. He lets out a short laugh. To describe how he's feeling at the moment as "good" is an understatement. Arguably the
512
ao3
Mostly out of respect to his older brother. Fandral said nothing, just raised his glass and drained it. “He was good with knives,” Hogun offered. “And he could walk quietly.” "Don't you prattle on at me!" said Tang, "the earlier I die, the earlier I reincarnate! I'm not scared! …do you really want to hear my last words?" The tree nodded it's branches. "Alright." Tang took a deep breath: "HEEEEEEEEEAAAAAALLLLPPP!" *** "The master's calling for help again." said the pig. "Ignore him, he's always like that. Tireless." Wukong has finished looking at the sunset, and was now gnawing on a bone. Bajie stared at him. "What are you eating?" "Pork." "All right, you little-" The pig leaped at the monkey. "Yeah." Friar Sand turned over in his sleep. "Chop… Chop him up…" And fell back into a deep slumber. *** "You have called seventeen times. I only permitted one sentence." The tree stared at Tang. "Why are you leaking water?" "Grandpa Tree, I'm really scared. I'm still young, I'm barely twenty years old." "You have your limbs and your senses at only twenty. I've lived hundreds of thousands of years and only have a pair of eyes. How is that fair?" "To become human you must reincarnate several hundred times, so altogether I haven't waited for much less time than you. Please let me live a few years longer." "If I release you, you will leave me, and I will be left alone. No." "I won't leave, I swear by my eldest disciple Sun Wukong that I'll stay until your death. And can whatever's behind me stop licking me? I'm rather dirty, you know." "Sun Wukong? I've heard of that name somewhere… Oh forget it, you said you have disciples?" "Yes. My second disciple Zhu Bajie is very fat." "Then keep shouting." *** "The master has called for the one hundred and thirty-forth time. You still won't go and shut him up?" "Call me uncle first." "Never! Hey! Take your foot off my back and fight me like a man!" "No, huh? Then you bring this on yourself…" Bang, bang, crash. #%!!&@. *** "Ahem.. Um, can I get a drink of water before I get back to yelling?" "They're not coming. Maybe they've run away." "Wait, I think hear a sound like a pig getting slaughtered." The creature behind Tang said. "Oh yeah, that'll be them." said Tang. "I don't care, I'll eat you first, then go look for them." "No no no, don't do that, why don't we sit down and talk about philosophy - how about I give you a riddle? What is a lotus before it's a lotus?" "Ahh!" Both the tree and the creature gave a sudden scream, and disappeared in a puff of smoke. "Huh?" said Tang, "What happened to you? Sorry if my riddle was a little too hard." "A lotus before it's a lotus is still a lotus." A girl's voice said. Tang turned around, and saw a girl smirking at him, with long flowing hair and shimmering clothes woven from the finest silver grass.
512
OpenSubtitles
splice them open with a butter knife, replace a valve with a hollowed out stick of carrot." "But every now and then, some other kind of fantasy slips in." "OutKast:" "Idlewild Blue" " Good morning." " Good morning." " Good morning." " It is a good morning." " Hi." " Hi." " Did you get any sleep last night?" " Not really." " You want to get some now?" " Not really." "Ow!" "Most of our fantasies dissolve when we wake, banished to the back of our mind, but sometimes, we're sure, if we try hard enough we can live the dream." "Damn!" "Stupid!" "Ow!" "I was having a really good dream and you ruined it." "Sorry." "There's these boxes." "All these boxes." "Callie said she was bringing her stuff over and, uh... it's all here." "It's OK, George." "I don't mind." "I don't mind either." "I don't mind a bit." " Kick her out." " What?" "I can't kick her out." "You're the one who told her she could move in." "I said she could stay a couple of days." "It's been over a week." "There're boxes, she's using my computer and here all the time." "Would you kick her out?" "Kick her out." "You might want to wait a while." "There's no more hot water." "Do it." "Why do you hate me?" "Do it." "Hey, can I get a ride with you guys to the hospital?" "You're going to the hospital?" "Yeah, I'm going to go in and talk to the chief." "See about coming back." "Anyway, just let me know when you're leaving." "That's great." "Izzie's coming back." "That's... great, right?" "Mm-hmm." " That's my towel." " Oh, sorry." " He's really moody in the mornings." " Yeah." "He's... yeah." "Yeah." "You know, I don't have to leave today." " I could change my flight." " No." "No, you can't." "Because I'm sober now, and, uh, there's work to get to, and planes to be caught and real lives to be led." "Thank you." "Truly, Mark, for all of the sex." "I really..." "I feel much better now." "I do." "And I'm, well, now I have to go." "And so do you." "So do you want me to call you..." "a cab to the airport?" "Oh!" "Why don't you try your bad hand." "That's what the ball's for, right?" "Fixing your bad hand?" "Works." "There's coffee on the floor." "Fine." "You know, I'll clean it up." "Whatever." "Leave it." "It doesn't matter." "So, I was thinking, since your shift ends after mine and I don't want to wait around, I should get a copy of the house key." "No." "I like leaving together." "You don't need a key." " Izzie?" " I'll see you guys in there." "Everything's going to be fine." "Bailey is on your side." "And the chief is..." "He's going to put on his angry face, but he's on your side too." "Everybody wants you back." "I know." "I know." "You guys go ahead." "I'll be fine." "I'm going to take a minute, practice my speech."
512
ao3
Tim shrugs. They’re both standing across the room, watching the two Mechanisms who sit at the old metal table and keep rolling betting dice only to write down on their piles and piles of papers numbers that cannot possibly mean anything. “Fuck if I know. Some sort of weak mortal nonsense.” Tim responds, dark and sardonic. He’s sulking, though he won’t admit it. Days are a lot more fun when they’re dropping on places unexpectedly and wreaking havoc, but Jonny and Ashes have been at this for months now and he’s. So. Bored. Five more minutes of this and he’ll be taking shots at Marius just to stave off some mind numbing boredom. “Why don’t you try joining them?” Drumbot offers. The scathing look he gets shuts him right up, though. Evidently this wasn’t a gunpowder sort of fun those two were planning. “Just an offer…” Tim huffs. “At least with them gone we can finally sing our own songs.” “We still don’t have our own songs...They’re all Jonny’s songs, you know that, right?” “Shut up, Brian.” - “Mine's going to be called Basira. You figure out yours yet?” Jonny shrugs. “Fuck if I’m ever going to remember a new fuckin name. I’ll just go by Jonny.” “Can’t help but feel that’s against the spirit of the game, Jonny.” Ashes gives him a pointed look. For the game to be fun they gotta follow the rules...Right? Probably. Maybe. Look, if they were going through all this effort just to play this new game they’re going all out or not at all. “Ugh alright then, Jonathan. Hows that sound?” He responds rather belligerently, glaring at Ashes. “We’ll you’ve always been a prick, suppose you’ll now just be a pompous prick.” * * * _ “Test… Test… Test… 1, 2, 3… Right. Ahem..My name is Jonathan Sims.” _ “Is that really the voice he chose?” Marius remarks, only seconds after the beginning of the first tape of the ‘LARP’ game’s recording starts. They’re all gathered together around a positively ancient mortal recording device, listening to Jonny’s voice as it takes on his new persona. “This is stupid, why are we even listening to this.” Tim grouses, no for the first time protesting against even humouring this game, though he shows no sign of leaving before he hears everything. Marius chuckles. “Jealous much?” “Hush it, I want to listen.” Raphaella shoves the baron, keeping her gaze on the tape. _ “I work for the Magnus Institute, London, an organisation dedicated to academic research into the esoteric and the paranormal.” _ “Sounds a bit like his voice for Inspector Lyf, doesn’t it?” Von Raum seems utterly focused on interrupting every. Single. Line. “Based on Jonny’s range of storytelling voices, his attempt at sounding like a posh bastard _ has _to be made of 86% the same vocal tones as he used for the Inspector.” Ivy pipes in. “Shut up, both of you!” The science officer shoves Von Raum again. “I want to hear the story.” “Who even cares about anoth-” Marius cuts himself off when Raphaella
512
OpenSubtitles
his legitimate business." "I don't like the FBI coming to me." "We're taking care of it." "I am thinking about contributing to your campaign." " Really?" " I like your wife." "NICK:" "I'm new to town, and the government is putting out an RFP to outsource its tow truck service, but... they won't let me bid." "He's my husband." " Is he dangerous... your husband?" " I don't know." "(Bach's "Ode to Joy" played out of tune on violin)" "DYLAN:" "Dad." "Yeah." "I got your lunch." "You hear anything?" "About what?" "Damien's mom." "Did she call?" "Don't worry." "She'll call." "Did you get the bounce house?" "I got the bounce house." "Now go learn to break a brick with your forehead, hmm?" "Love you, Dad." "(Cell phone ringing)" "(Second cell phone ringing)" "(Ringing)" "(Third cell phone ringing)" "(Other phones continue ringing)" "Yeah?" "(Swing music plays)" "Thanks." "♪ Oh, I could tell them to shove it ♪" "♪ I could tell them to shove it ♪" "♪ Oh, I could tell them to shove it ♪" "♪ The devil don't have no wings ♪" "ALICIA:" "Jackie." "Jackie." "What?" "Are you okay?" "MADDIE:" "Alicia, hi." "I've been looking all over for you." "Maddie." "This is Jackie Florrick." "It's very nice to finally meet you, Mrs. Florrick." "Why, thank you." "And you are...?" " The money." " Oh." "Then the pleasure is all mine." "MADDIE:" "Do you mind if I steal your daughter-in-law?" "There's some people I'd like to introduce her to." "Alicia's the belle of the ball." "Be my guest." "(Cell phone ringing) Oh." "Just one sec, Maddie." ""Belle of the ball."" "Hi, Diane." "Did you...?" "Where?" "3434 Lakeview." "I'm sorry to do this to you, but he requested us." "ALICIA:" "No, that's all right." "Um, I'll be right there." "Okay." " You have to take off?" " Work." "Are we still on for drinks later?" "I wouldn't miss it." "Great." "ELI:" "...and if I were you, Jimmy V.," "I would take a breath before I posted anything actionable." "JIMMY:" "Is that your quote?" "(Sighs)" "What's the blog?" "Never heard of it." "You will." "In about one hour because that's when I'm posting that a national news magazine is sitting on a story accusing Peter Florrick of sleeping with a campaign worker." "Okay, give me your number;" "I'll get a quote from the candidate." "Hang on." "Come here." "Okay." "Yep." "Okay." "I'll call you back." "Where's the candidate?" "Take it off!" "Come on!" "Where's the candidate?" "Oh, um..." "I'm here for Mr. Bishop." "I'm Alicia Florrick." "Lockhart/Gardner." "Oh, yeah." "Lesli Rand." "Cutner Paradini." "Ah, you're Mr. Bishop's other law firm." "His primary law firm, yeah." "I didn't realize he had a primary law firm." "Are we gonna be enemies?" "Depends." "You're the lawyers." "Why am I telling you this?" "LESLI:" "I'm not hearing anything about an arrest, Lemond." "We overreact, we set something in motion." "And we underreact and I end up in prison." "What do you think?" "Who called you about the arrest?" "BISHOP:" "My accounting firm." "I had an appointment, and they
512
StackExchange
Jan 1, 1970 var intQuoteToDisplay = intDay % intQuoteCount; Q: Clarity of terms used in HDFS? I have come across several terms while getting familiar to HDFS. Few of the terms are like: namespace, metadata, transaction logs, fsimage, editlogs. Sometimes it appears that all these terms describe same thing, which is "having some information", but i am not clear on this. In general metadata means data about data so would metadata refer to all these terms or all these terms have different purpose in context of Hadoop HDFS? A: Namepace : Within hadoop 'namespace' refers to the file names with their paths maintained by a name node. Metadata : it includes the name of the file, size, permissions etc... This metadata is stored in a file called fsimage. fsimage : complete state of the hdfs file system at a point of time. Any changes done to the filesystem are not written to fsimage immediately but there are stored in a separate file (on the same location where fsimage is stored) called editlog. editlogs: It is a log that lists each file system change that was made after the most recent fsimage. Q: How to add library to C++ Project using homebrew, cMake and, cLion I am really new to C++ and I am a bit confused. I am trying to add this lib to my project (https://github.com/mrtazz/restclient-cpp). I have installed it using Homebrew brew tap mrtazz/oss brew install restclient-cpp then I tried adding the library to my CMakeLists by including and linking the Homebrew install directories. CMakeLists.txt cmake_minimum_required(VERSION 3.15) project(POS) set(CMAKE_CXX_STANDARD 14) include_directories(/usr/local/include) link_directories(/usr/local/lib) add_library( restclient-cpp STATIC connection.h helpers.h restclient.h version.h ) add_executable(POS main.cpp program.cpp program.h programs/find.cpp programs/find.h tools/db.cpp tools/db.h) target_link_libraries(POS PUBLIC restclient-cpp) then I get this error... CMake Error at CMakeLists.txt:16 (add_library): Cannot find source file: connection.h Tried extensions .c .C .c++ .cc .cpp .cxx .cu .m .M .mm .h .hh .h++ .hm .hpp .hxx .in .txx CMake Error at CMakeLists.txt:16 (add_library): No SOURCES given to target: restclient-cpp I know something is wrong with the directories but I just cannot figure it out, I would greatly appreciate as much information as possible. I'm just trying to have some fun with this and I cannot figure out why I cannot add this simple library to my build. Thank you. A: You are trying to add header files to the add_library command. Those files need to be in a directory that you include via include_directory. You also should not put header files into the add_executable command. To link an existing library you can call target_link_libraries. example: include_directories(${MY_INCLUDE_DIRS}) add_executable(main source.cpp) target_link_libraries(main extlib) It's probably best to find a simple CMake setup and try to use it as template. Q: XMEGA384C3 ISR load I am using an XMEGA384C3 running at 32MHZ in a design with two USARTS. They both will be receiving data about every 150mS and using a protocol that contains a CRC16. In my USART receive ISR, I do my protocol decoding, but I am hesitant to do the CRC16 inside the ISR. Is this too much overhead in an ISR? I'm trying
512
ao3
Pairing: Sherlock/John Rating: PG Category: Pre-Slash; Romance and/or friendship; Fluff. Summary: Sherlock and John renegotiate the rules about personal space. Fluffy John/Sherlock pre-slash. One-shot. Disclaimer: I am unaffiliated with the BBC TV show "Sherlock." This story is not written for profit, and it constitutes fair use. Author's Note: This story is inspired by the numerous "Sherlock and/or John has a bad dream" fics that I have read, so I owe all those authors a debt. It's not in my normal style; I was experimenting. I adore this fandom but haven't written anything in it before, so I'd appreciate any feedback that comes to mind! ^^V^^ John groans when he feels a hand on his shoulder shaking him awake. He squeezes his eyes shut; he does not need to open them to know who it is. "Go away, Sherlock." To his credit, Sherlock only wakes him for good reasons. He senses his flatmate standing nearby, but Sherlock offers no instructions or requests. Curious, and despite his better judgment, John opens his eyes. His room is not exactly dark. His curtains are thin, and the ambient light from the street casts Sherlock's face in shades of gray. Sherlock is shirtless and in boxers, so John assumes Sherlock is not here about a case, or he would be dressed. In the dim light, Sherlock looks troubled. "John," Sherlock begins, and his haughty tone is present, but it lacks his usual conviction. "How do you feel about personal space?" Sighing, John rubs the sleep from his eyes but does not move to sit up. "Sherlock, what time is it?" "Irrelevant. I have an urgent need to know your opinion." "Fine. Why couldn't this wait? Is it for a case? Or an experiment?" "A thought experiment, of sorts. But it's also intended to be a personal question." That gets his attention. Sherlock never asks personal questions about John unless there is some other purpose, usually a case. He feels a ridiculously fluffy warmth inside him at the idea of Sherlock's being curious about him, even if it is for an experiment. "Oh. That's . . . fine. Good, even." "So?" "Right, personal space. Well I guess it serves a purpose." "Explain." "Oh, people like to have rules. You can't tell if someone's being rude or flirting with you if strangers are allowed to stand right next to you regardless of their intentions. It's a way to communicate." "Other cultures do not have such a taxing requirement of personal space, and they communicate just as effectively." "I imagine other cultures have different ways to be rude or polite." "So you think it's arbitrary but useful." "Yes. You could learn this from a book, you know. Or the Internet." "I am aware of the current sociological and anthropological theories. My inquiry is about your opinion. And your feelings." Sherlock wrinkles his nose as he says that last word, as if it is beneath him even to talk about emotions. "Well, I guess I agree with the authorities on the subject." "A hypothetical." "Alright," John says, but he yawns. "Suppose
512
reddit
the bow kinda sucks against them haha Ah ok, thats the Buja. doesn't look too bad on a blademaster, i wonder how it looks on a gunner How do you think you upset me? How could it possibly upset me? Yesterday was Valentines day. You now how many ex gf's reached out to me? Enough to know i'm right. Enough to know they are going through what i just explained to you. I never told them. But i know they have been told. You know what they say? I wish i listened to so and so. This sucks! P.s. Your attacks have no effect. You can't break my self esteem or confidence. You must be so upset! Why? How? I don't get it. I find it funny how don't have counterpoints and just project your feelings. It's always the best indicator of a woman when she knows she is wrong. Can't be the bigger person and say "i can see your point but i disagree for this reason." You don't even say "I disagree". You just assume i'm upset, metally ill, triggered, sad loser, can't get laid.. I'll send you a personal pic right now of my cock in a hot bitches mouth if you want proof? Instead of listing things ive written in dot point form and trying to break them down, why don't you write a paragraph or two telling your side? You are reacting to me. That isn't a discussion. It shows you are putting yourself below me. I have some imaginary power over you because i'm a man saying things that sound mean. I'm a jerk. You keep coming back. Women love jerks. You'll disagree but this interaction has pretty much proven that point. Maybe not to you. I got it! Thanks much OP. I used to have this game, then some Turkish kid hacked my Origin account and I didn't notice until a few months later. When I contacted Origin support, they tried to help, but I'd entered a fake birthday (I thought "why the fuck does EA need my birthday?") so they were unable to help me due to my own stupidity. You, OP, are the antithesis to that Turkish kid. Thank you If that's the case I would go with the wrx for being all around balanced. Labor on a VQ engine from the G37/370z is all curse words trying to maneuver in a cramped engine bay. The BRZ is a blast to drive but you'll miss functionality soon. A wrx with sticky tires and some seat time is a blast to drive on some twisty roads, that and snow (location may vary of course) I want to unlock Co-op weapons for multiplayer and whenever I click "public matchmaking it says: "Co-op public matchmaking started!" It says that and then says: "CO-OP match cancelled" After 5-20 seconds (it varies). Once every hour or so I make it in with someone, but the 3 people i've come across in the last hour either kill me or don't revive me. Any way to get around this? I know Co-op
512