domain
stringclasses
17 values
text
stringlengths
1.02k
326k
word_count
int64
512
512
realnews
Sept. 11, 2012, attack on the U.S. diplomatic consulate in Benghazi, Libya, that left four Americans dead, including Ambassador Christopher Stevens. Boehner decided to move ahead with the committee after a conservative activist group had more success in obtaining documents pertaining the inquiry into the deadly assault than the standing House committees that had been investigating the matter. Also Thursday, reporters pressed Boehner on Democratic accusations that the National Republican Congressional Committee is using the Benghazi select committee to promote fundraising for the 2014 campaign. The speaker declined to directly address the issue, saying only that the goal of House Republicans is to get to the truth of what happened in the attack. Former Chelsea boss Carlo Ancelotti believes Jose Mourinho became a victim of his own success after being sacked by the Premier League champions last week. The Portuguese's second spell at Stamford Bridge came to an end with the Blues just a point off the drop zone, having suffered back-to-back Premier League defeats by Leicester and Bournemouth. The majority of Mourinho's squad have underperformed since the campaign began in August and Ancelotti, who was sacked by Roman Abramovich in 2011 after two years at the club, thinks Chelsea's players are struggling for motivation after cruising to the title last term. Chelsea players including Diego Costa (left) and Oscar (right) look dejected during their defeat by Leicester Jose Mourinho, pictured in London on Sunday, was sacked by Chelsea last week due to the team's poor form The Blues went trophyless during Mourinho's first season back in west London but responded by winning the league and Capital One Cup double in impressive style last term. Speaking about motivating players, Ancelotti told Goal: 'That is the most difficult job for a coach because within a group, both one that is doing well and one that is doing badly, there are always problems to resolve. 'When things are going well, there is a risk of relaxation; when things are going badly, obviously there is a loss of confidence. 'It's a little of this that Mourinho paid for, the fact that the team had not started like last year, when they had a tremendous desire to do well after a bad year. Interim Chelsea manager Guus Hiddink watches his players in training at Cobham on Tuesday afternoon Former Chelsea boss Carlo Ancelotti believes Mourinho paid for the lack of motivation among his players 'This year it was exactly the opposite; he paid for the lack of motivation among the players.' Guus Hiddink will be charged with motivating Chelsea's players for the remainder of the season after being given the job until May. The Dutchman, who also had a spell as the club's interim boss in 2009, watched on from the stands as the Blues beat Sunderland 3-1 at Stamford Bridge on Saturday. By Krista Angela M. Montealegre National Correspondent ALLIES of Southeast Asian nations are ready to help foot the mammoth bill needed to plug the region’s infrastructure gaps, with homegrown business leaders bringing to the fore the importance of public-private partnerships (PPP). During the
512
gmane
index through the DoFHandler and its re-ordering functions. - Performing operator-like operations on similar equations (e.g. 3 momentum equations) Am I missing something? Thank you again for your time. Hoping I can get up to speed to contribute back in the future. Best regards, Doug Hi Emmanuel (& Nathan), What is proposed here is what is known as "preliminary testing" or "sometimes pooling". There is a literature that suggests that there can be problems with Type I coverage if this procedure is used. For a review see Janky, D. G. (2000). "Sometimes pooling for analysis of variance hypothesis tests: A review and study of a split-plot model." The American Statistician 54(4): 269-279. There is also an argument that the randomization employed in an experiment justifies the random-effects structure and the purists would say that you should stick with it no matter what. Perhaps a little more pragmatically one might suggest that you stick with it unless there is compelling reasons not to - like a large unanticipated source of variation becomes apparent or components are unable to be estimated with the data to hand. Cheers, Chris Brien Very original.  I nominate this for the funniest post in a while.... I'm not too versant in ITNM,  but a coworker of mine took part in the beta for the entry edition and noticed something I think is the same.  We weren't using VM even. I believe others in the beta noticed this....chime in anytime Jane. I think the market segment was missed with the entry edition. It severely lacks GUI capabilites and relies heavily on CLI. Now, I might be wrong but wouldn't the entry level small shops be more interested in GUI while the enterprises be after the CLI capabilities for scripting/integration? (we, and others did provide this feedback). Again, our experience was with the entry edition. Regards, Hi list, I was trying to run tiles@home on a system of mine. It successfully downloads the data and starts rendering it. After beziercurving it dies with the following message: Can't use an undefined value as a symbol reference at /usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux/GD/Image.pm line 175 I'm running gentoo linux on an AMD64 system (if that matters). Any advice would be helpful! Thanks in advance, Christoph Brill Hello, Is there a chance to have that option released in future? I think it is a must have option since digikam is DAM tool and all cameras are capable of recording videos nowadays. Per this webpage: http://dev.exiv2.org/projects/exiv2/wiki/Supported_video_formats Exiv2 can read but can't write. They also say "Write metadata support for RIFF, Matroska and partial metadata write support for Quicktime video formats will be included in subsequent releases." But there might be another tools out there that are already capable of reading/writing video files' metadata, e.g. exiftool ,ffmpeg, etc. I am particularly interested in reading/writing the following tags: - Creation date - Rating - Keywords (tags) - People (if possible) - Geolocation (exiftool can do that see: http://u88.n24.queensu.ca/exiftool/forum/index.php?topic=5977.0 ) Right now digikam seems to be unable reading/writing metadata from/to video files. Please let the group know your thoughts. Best regards, Andrey Goreev
512
StackExchange
and bind to it (a ribbon bar but highly customized to our needs), it handles placement, style etc. It works just fine and totally fits the need for our project however it only works upon initial load, I did some digging and realized that it was because I only had a PropertyChangedCallback in the FrameWorkMetaData and I didn't set up a callback for the CoerceValueCallback so I did some digging and set one up but I am not sure exactly what to do - I guess here is the question, the method signature of the CoerceValueCallback has it returning an object and I just want to update my buttons when ever the list changes. Is it safe to ignore this return value? Maybe some code might help - Here is my PropertyChangedCallback - gets fired when they first assign the list of buttons public static void ButtonListUpdated(DependencyObject source, DependencyPropertyChangedEventArgs e) { int count = 0; var grid = (source as RibbonBarUserControl).ButtonsGrid; var buttons = e.NewValue as ObservableCollection<Button>; if (buttons != null) { grid.Children.Clear(); foreach (RibbonButton b in buttons) { b.Margin = new Thickness(1); b.Style = (Style)grid.FindResource("ribbonButtonStyle"); ColumnDefinition c = new ColumnDefinition(); grid.ColumnDefinitions.Add(c); grid.Children.Add(b); Grid.SetRow(b, 0); Grid.SetColumn(b, count); count = ++count; } } } No here is the CoerceValueCallback public static object OnButtonListModified(DependencyObject sender, Object baseValue) { //What to do here? Can I essentially ignore the returned object and basically //copy what I am doing in ButtonListUpdated? return baseValue; } I saw some examples online and they where much simpler - like if birthday is less than marriage year birthday = marriage year, course this is a little different - I am creating buttons and updating the UI of my control. OK - Thanks for any suggestions! A: I don't think you need to use a CoerceValueCallback. Instead, you should hook into the CollectionChanged event of your collection and update your buttons when that is fired. So something like: public static void ButtonListUpdated(DependencyObject source, DependencyPropertyChangedEventArgs e) { var control = source as RibbonBarUserControl; var buttons = e.OldValue as ObservableCollection<Button>; if (buttons != null) buttons.CollectionChanged -= control.OnCollectionChanged; buttons = e.NewValue as ObservableCollection<Button>; if (buttons != null) buttons.CollectionChanged += control.OnCollectionChanged; control.UpdateButtons(); } private void OnCollectionChanged(object sender, NotifyCollectionChangedEventArgs e) { this.UpdateButtons(); } private void UpdateButtons() { // TODO: Update buttons } You could also use the members of NotifyCollectionChangedEventArgs to determine how the collection changed, and make minimal changes to buttons. Or you could just completely rebuild them everytime. Q: Import a Javascript file into another Javascript file I'm creating a simple HTML5 JS game, and at the moment my javascript file has reached nearly 1500 lines and it is slowly getting harder and harder to manage with so much more to do, is there a simple way to split some of the script up into "classes" which I mean separate files and then import all the "classes" files into one "main" file? So for example I have this File1.js function pointInRect(pnt_x, pnt_y, rect_x, rect_y, rect_w, rect_h) { if ( (pnt_x >= rect_x) && (pnt_x <= rect_x + rect_w - 1) ) { if ( (pnt_y
512
Pile-CC
that was taken over by André around five years ago. “It’s easy to buy a lap-dancing club and then invite cool people, but there’s no reflection in that.” For Curio Parlor, the idea was “to go a step higher, to serve artisanal cocktails in frozen glasses and offer a more diverse whisky menu,” says De Goriainoff, adding that, with the bar’s anonymous black facade, the owners favor the self-selection process over having a door policy. Inspired by the bar scene in New York and London, their main mission, De Goriainoff states, is to offer premium service in a city known for its rude waiters. “New York has a way of bartending that doesn’t exist in France and that greatly inspires us. Complex cocktails need to be presented to the customer in the right way; it’s an art,” he says, adding wryly: “One of our motives is that drink is not good for your health, so why not at least get drunk properly.” ADD A COMMENT Sign in using your Facebook or Twitter account, or simply type your comment below as a guest by entering your email and name. Your email address will not be shared. Please note that WWD reserves the right to remove profane, distasteful or otherwise inappropriate language. Recent WWD Issues Fairchild Fashion Media WWD.com is the authority for news and trends in the worlds of fashion, beauty and retail. Featuring daily headlines and breaking news from all Women's Wear Daily publications, WWD.com provides the most comprehensive coverage anywhere of fashion, beauty and retail news and is the leading destination for all fashion week updates and show reviews from New York, Paris, Milan and London. Bertram Creek Park reopens after cougar sightings Bertram Creek Park in the mission has been shut down since July 15 after a cougar was spotted. It is now reopened. Image Credit: wikipedia.org July 17, 2015 - 12:01 PM KELOWNA – Officials have reopened the Bertram Creek Regional Park after sightings of a cougar in the area shut it down Wednesday. Regional District spokesperson Bruce Smith says signs about the recent sightings will remain up to warn residents of the ongoing risk. “Those using this and other Regional Parks in a more natural-setting should be aware of possible animal and wildlife encounters at any time,” Smith says in a media release today, July 17. “If you do see a wild animal in the park, leave it alone and give it plenty of space.” OPINION A report has recently stated that the average cost of food will inflate near double its average annual rate. This does not include fresh produce and most animal proteins. The inflation for these products may t http://utbhollywood.com/en/drama/mao/index.phpit is so cool to see toma's drama talked about IN ENGLISH, on a website right here in the usa. though they can't post up his or ohno's pics at all. lol. but i love the synopsis. beautifully written! it describes the plot so perfectly ne~ sugeh. "Ryo Naruse (Satoshi Ohno) is a two-faced lawyer: on the surface, he is a kind-hearted soul, representing the poor and
512
realnews
Mozart's violin and viola, recently recorded live at WGBH's Fraser Performance Studio. Lynn Jaynes met us at Murphy's Bleachers, the popular open-air bar across from Wrigley Field in Chicago. The Chesterton businessman greeted us with mini cheeseburgers, French fries, soft drinks and a wrinkled brown paper bag. It was filled with a mysterious treat for later in Jaynes' Tastebud Tour outside the historic ballpark and surrounding Wrigleyville neighborhood. I'd never been to Murphy's even though I've attended several Chicago Cubs games since my childhood. On game days, it's a madhouse with boisterous Cubs fans, laid-back locals and curious tourists. On this off day for the Cubbies, Murphy's had only a smattering of customers, mostly construction workers on a lunch break. My son-in-law, who's more of a Cubs fan than I've ever been, invited me to this new Tastebud Tour. As the Cubs make their late summer charge for another world championship, I'm guessing other fans would also enjoy taking it. The two-hour walking tour weaves in obscure history lessons and fun trivia with a triple play of iconic food items from Murphy's Bleachers, Wrigleyville Dogs and Al's beef sandwiches. The Jaynes family began Tastebud Tours in 2009, offering year-round guided tours to several eateries across Chicago. Along with Lynn Jayne's wife, Karon, and his daughter, Tiffany Jaynes Black, of Valparaiso, the family offers similarly-styled tours in New Orleans and San Francisco. "We picked the historic Murphy's Bleachers because it's the anchor of the Wrigleyville experience," Jaynes said. "There are a few places here that are known for their food as well as for Cubs baseball." I thought I had a pretty good handle on the history of the venerable Wrigley Field ballpark, the Cubs franchise and the eclectic neighborhood. However, during our outing last week with Jayne and his tour-guide colleague, John Robert, of Chicago, I realized how much I didn't know. "You're going to walk away with so much history today," said Robert, who knows Wrigley Field inside and out. "We're gonna go for a little walk around the ballpark, and learn a little history about it, as well as about the Cubs' early days." Jerry Davich / Post-Tribune Lynn Jaynes, of Chesterton, in the middle, holding sign, owns Tastebud Tours, which now offers a new tour of the Wrigleyville neighborhood. Lynn Jaynes, of Chesterton, in the middle, holding sign, owns Tastebud Tours, which now offers a new tour of the Wrigleyville neighborhood. (Jerry Davich / Post-Tribune) Robert explained the team's humble beginnings in this community more than a century ago, its original name, and how the ballpark eventually became known as Wrigley Field. "The Chicago Whales in the Federal League, nicknamed the Chi-Feds, were the original occupant of this ballpark, winning everything in 1915," Robert said. "The Cubs back then were playing on the west side of Chicago." "The Chi-Fed's owner, Charlie Weeghman, was convinced this was the right spot for baseball," Robert said. "Do you know what was located here before a ballpark was built? A Lutheran seminary. That's right." Wrigleyville is one of 77 different neighborhoods in Chicago,
512
reddit
cried" How can you not see that? Oh trust me, I'm well aware. She possesses a variety of other poor character traits as well. I shouldn't be surprised really, but what bothers me is she brings it up as if i'm the delusional one, when she is the epitome of detached. And when I say anorexic, I actually mean it. She smokes and remains malnourished and finds her health to be great. Boyfriend is actually working out with me, but he has always been very lean. He wants to tighten and build muscle, but he HATES just about every vegetable and flavor in general, and is trying to bulk up via protein shakes. I can't force him to eat better. I've tried. He's not in poor health, but he is probably vitamin deficient. Is this Keto acceptable for picky eaters? He is the absolute worst. I would pitch it to him, but he's beyond stubborn. And trust me, I am in this for the health before anything else. Sure, finally looking great in a swimsuit will be wonderful for my self-esteem, but I am mentally geared for longevity, good health and fitness. My son's (8) league does not allow heading the ball until I think around age 12. If a kid heads the ball on accident play is stopped, the ref explains what happened, and then play resumes. If a kid heads the ball intentionally play is stopped, the ref explains, and it's a turnover to the other team. I guess this is a good thing considering the info regarding futbol and brain function impairment. Try getting some wound wash and maybe putting it in the fridge to cool it down and then pour a little in you're ear and let it sit for a minute maybe? I'm not sure if that would work I don't have my conch pierced yet but I have many in awkward spots to soothe It would make sense, the only problem is it would bring Star Wars too much into the "Science Fiction" vs "Space Fantasy". Just like in real life I think everything can be explained with high end science. The Force is a part of nature, and thus should be study-able, like everything else in nature. I found this album underwhelming on my first listen, but after a couple of months I ended up liking most of the tracks on the album. If it got shortened by 5 or 6 tracks, it would've been an AOTY contender, and I find myself surprised that I now consider it my favorite Lil Uzi project. The man legit helped me save my life and his books, lectures and recommended reading list is great. I think the controversial statements are an attempt to have a dialogue as things are not completely black and white which he acknowledges at length. Hierarchies are important for functioning societies but if they are too rigid they fail and cannot adapt to change so people high in openness (progressives) need to challenge them and be a voice for the downtrodden he speaks about this at length things
512
OpenSubtitles
"Hurry up." "And this is the men's yard." "Aren't you afraid here with all these dreadful characters?" "Oh, dear, no." "They're just like little children to me." "In fact, to all the welfare workers." "Watch it." "Oh, how do you do, Mrs. Massey?" " How do you do?" " So jolly to see you again." "Uh, I missed you terribly last Thursday." "Had some friends up from the city." "Charming people." "They were very disappointed not to meet you." "Well, cheerio." "See you again." " You see?" " And who is he?" "Electrical genius." "Wiretapper." "Hi, Dooley." " Famous strangler." "Now we go over to the welfare rooms." "You see?" "They're right over there." " Don't be afraid." "He's just amusing little Jean... the warden's daughter." "Jean, say hello to my friends." " How do you do?" " How do you do, dear?" "Have you a kiss for Mrs. Massey?" " Yes, Mrs. Massey." "I gave it to Rex." " The dog?" "Let's go over to the welfare room." " Okay, what's next, Eddie?" " Try this one, Jean." "That-a-boy, Eddie." " Oh, I can do that!" " No, you can't." " Geez, that-a-girl!" " Here's one you can't do." "Walk on your ear, Jean." "No." "Of course not!" "I got him." " Look this way please." "Keep smilin' now." "Big smile, St. Louis." "All right, one with your lawyer, St. Louis." "Come on." "Get over here, Marvin." " Thanks!" " Thank you." " Come on, buddy." "Move up." "Guy with the camera, move up." "Through here." "Number one, right here please." " Number two, right here." " Well, hello, Sophie." " Number three" " Hello, Kitty." "Glad to see you back again." "Lemme see." "I ain't seen you in about a month, ain't it?" " I know." " Well, come on." "I'm gonna take care of you two myself." "Lovely." "By golly, you girls" " I'm going to check these two girls in personally." " How's it been?" " Everything is lovely." "We've got a new wing on the place." "The mockingbirds are singing just the same." " Name?" " Judith Fields." " Age?" " Twenty-one." " Your first offense?" " The first time they caught me." " Fraud?" " I told fortunes." "And they gave you three years for that?" "Well, after I'd finished telling fortunes, I'd, uh... recommend certain oil stocks." "Oh." "Well, then, you worked with someone?" " A broker." " Did you know what you were doing?" " Of course." " Well, then, why?" "It was fun!" "I always wanted to travel." "You know, we never hit the same town twice." "Oh, you can't understand." "Oh, yes, I do." "I've felt the same way." " I was headed for China." " China?" " Gee, I'd love that." " Gee, you know... we had jobs out there- three of us boys and, well, then this came up." "And you threw that over to work here?" "No, you don't understand." "I don't work here." "I belong here." " A convict?" " Yes." "But we call ourselves inmates." " Gee,
512
realnews
Impact Games, the creators of PeaceMaker and Play the News (acquired by Hybrid Learning Systems in 2010). Image Credit: Michael O'Donnell/VentureBeat Megan Gaiser is the CEO of Spiral Media and principal of Contagious Creativity. She guides technology and entertainment companies to create meaning and money. She serves as a senior creative leader, strategist, director, and storyteller for inspired computing experience across games & VR/AR and films. As one of the first female CEOs in the gaming industry, Gaiser spent the last 15 years experiencing the game industry as both an insider and an outsider. This unique vantage point enabled her to not only sidestep the outdated habits of the game industry but to capture the female market by creating the first intelligent game for girls via the Nancy Drew franchise. Gaiser gained a reputation for identifying and engaging unproven markets, inspiring collaboration, and showing a commitment to the highest artistic and aesthetic qualities. Image Credit: Sidekick VR Guy Bendov is a cofounder and the CEO of Side-kick Games, a developer and publisher of cutting-edge games. Side-kick has been creating games for and with leading publishers and tech leaders such as Square Enix, DeNA, Disney, and Rovio as well as Intel, LeapMotion, PrimeSense, and Google Labs. In addition, Guy heads SidekickVR, which teams with publishers and brand owners, such as DeNA West and Lionsgate Studios, to bring exciting mobile VR games to market. He has more than 20 years of experience, and in 2007, he cofounded GameIS, the Israeli games association, and serves as its chairman. Image Credit: Michael O'Donnell/VentureBeat Asra Rasheed is the executive producer at The Walt Disney Company. She has more than 15 years of experience and extensive domain knowledge in digital media, ecommerce, and mobile. She has strength in content development, architecting distribution platforms, interactive reading products, games, children’s entertainment, digital publishing, content acquisition, interactive design, strategic partnerships, and brand management. Image Credit: Michael O'Donnell/VentureBeat Rami Ismail is cofounder of Vlambeer, a two-person company based in Utrecht, the Netherlands. It has produced hits like Ridiculous Fishing, Luftrausers, and Nuclear Throne. The company has been around for six years, but Ismail is an outspoken leader and thoughtful supporter of independent games and their role at large. He has traveled the world as one of the big voices of the indie game industry, presenting at a wide range of conferences and speaking out on issues such as diversity, Muslim representation in games, #GamerGate, and uncompensated crunch time in games. Other speakers include Rich Hilleman of Amazon Game Studios; Chris Roberts, the CEO of Roberts Space Industries; Akshay Khanna of the Philadelphia 76ers; Greg Richardson of Team Dignitas; Ted Price, the CEO of Insomniac Games; Mike Gallagher, the CEO of the Entertainment Software Association; John Underkoffler, the CEO of Oblong Industries and science advisor for Minority Report; Gary Whitta, the screenwriter for Rogue One: A Star Wars Story; Richard Marks of Sony PlayStation; Tim Sweeney, the CEO of Epic Games; Owen Mahoney, the CEO of Nexon; and Jamil Moledina of Google Play. Inspiring moments lead to disrupting the worlds of gaming, tech,
512
reddit
really old device per se, but it's not the top of the line, either. It's a low-to-mid tier tablet that I bought to do a bit of work on, play a few games on, and to read with. For me, I'm pretty sure it's a combination of both my device's lower power, my internet connection, and my connection to the game's server (if I'm playing during peak hours). me and my 7 years old daughter just finished all 4 halos and she loved them. can't wait for halo 5. we also play Rayman Legends which is an awesome platformer. Disney infinity sucks up a lot of time for us as well. #idarb is craziness all over the screen fun. ori and the blind forest. PvZ didn't hold her attention too long like halo, but it's a solid game. Peggle 2. if you have a Kinect, Fantasia is awesome. sports rivals was ok, not great. dance central is fun for the whole family. I'm sick of this retort. Just because nobody has taken credit does not mean that these 4* chemical plant explosions in the past ~month are coincidence. If your plan is to inflict as much damage as possible, why would you want people to be aware of your intentions? To know who you are? OP seems to be grieving for the role model she wish she had growing up, and y'all are just like "Momma is grown up, she can make her own decisions no matter how unhealthy the pattern of events is..." The blame on the plastic surgeon may be misplaced, but it's an effect of the perceived loss. Where's the support for someone grieving, right or wrong? Hello, my company hosts an application that uses a PostgreSQL database where the passwords are stored as MD5 hashes. I have a working FreeRadius server that works correctly using the "radtest" command with Cleartext-Passwords. The issue is that the MD5 passwords will not authenticate properly. The server is reading the requests from the APs, but they can't authenticate either. From command line, this works: radtest user1 p4ssw0rd localhost 0 shared_secret These do not: radtest -t eap-md5 user1 p4ssw0rd localhost 0 shared_secret radtest -t eap-md5 user1 &lt;hashed_password&gt; localhost 0 shared_secret radtest user1 &lt;hashed_password&gt; localhost 0 shared_secret My goal is for the user to enter their user/pass, then for the password to get hashed into MD5 and checked against the DB. Console input: radtest -t eap-md5 user_me abc123 localhost 0 secret Console output: rad_recv: Access-Request packet from host 127.0.0.1 port 54182, id=222, length=91 User-Name = "user_me" User-Password = "abc123" NAS-IP-Address = 127.0.1.1 NAS-Port = 0 Message-Authenticator = 0x00000056523556d2341ec1d43ec1fb EAP-Message = 0x0000000c0164746573746f6e # Executing section authorize from file /etc/freeradius/sites-enabled/default +group authorize { ++[preprocess] = ok [auth_log] expand: %{Packet-Src-IP-Address} -&gt; 127.0.0.1 [auth_log] expand: /var/log/freeradius/radacct/%{%{Packet-Src-IP-Address}:-%{Packet-Src-IPv6-Address}}/auth-detail-%Y%m%d -&gt; /var/log/freeradius/radacct/127.0.0.1/auth-detail-20161025 [auth_log] /var/log/freeradius/radacct/%{%{Packet-Src-IP-Address}:-%{Packet-Src-IPv6-Address}}/auth-detail-%Y%m%d expands to /var/log/freeradius/radacct/127.0.0.1/auth-detail-20161025 [auth_log] expand: %t -&gt; Tue Oct 25 10:58:46 2016 ++[auth_log] = ok ++[chap] = noop ++[mschap] = noop ++[digest] = noop [eap] EAP packet type response id 221 length 12 [eap] No EAP Start, assuming it's an on-going EAP conversation ++[eap] = updated [sql] expand: %{User-Name}
512
Github
* Returns the number of possible labels * @return the number of possible labels for this classifier * @deprecated Will be removed in a future release */ @Deprecated int numLabels(); /** * Train the model based on the datasetiterator * @param iter the iterator to train on */ void fit(DataSetIterator iter); /** * Takes in a list of examples * For each row, returns a label * @param examples the examples to classify (one example in each row) * @return the labels for each example */ int[] predict(INDArray examples); /** * Takes in a DataSet of examples * For each row, returns a label * @param dataSet the examples to classify * @return the labels for each example */ List<String> predict(DataSet dataSet); /** * Fit the model * @param examples the examples to classify (one example in each row) * @param labels the example labels(a binary outcome matrix) */ void fit(INDArray examples, INDArray labels); /** * Fit the model * @param data the data to train on */ void fit(DataSet data); /** * Fit the model * @param examples the examples to classify (one example in each row) * @param labels the labels for each example (the number of labels must match * the number of rows in the example */ void fit(INDArray examples, int[] labels); } #!/usr/bin/env perl ############################################################################ # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. use Sys::Hostname; ############################################################################### # Class: TestReport # Used to record the results of a test run using junit xml schema # use strict; package TestReport; unshift( @INC, "."); #@PigDbBootstrap::ISA=qw(Exporter); require Exporter; our @ISA = "Exporter"; #our @EXPORT_OK = qw( createDB createTablesDB removeDB changeConfigFileDB createDirectoriesHDFS copyTablesToHDFS); use File::Path; use IO::Handle; # # Set Path for perl Libraries # my $ROOT=undef; if (defined $ENV{'HARNESS_ROOT'} ){ $ROOT= $ENV{'HARNESS_ROOT'}; } else { die "FATAL ERROR: $0 - You must set HARNESS_ROOT to the root directory of the harness"; } unshift( @INC, "$ROOT/libexec" ); unshift( @INC, "."); require Properties; require Log; use strict; use English; my ($stdout, $stderr); my %progress; ############################################################################### # Sub: new # Constructor for TestDriverPig is a subclass of TestDriver. # # Parameters: # Properties - Properties object with the global properties # FileName - The name of the xml file. # # Returns: # None # sub new() { my $class= shift; my %schema=('JUNIT',1 ); my $self= { Class => $class ,Properties => undef ,FileName => undef
512
reddit
service iPhone 7.3 - Asurion refurb, lasted a month before going into unending boot loops iPhone 7.4 - Brand new replacement device, going on two months with no issues! Will be at end of contract in August! TL;DR: of TL;DR: 12 phones in 10 years with none of them being caseless. Thanks for reading! Given some data x in R^n, your input to the network is x and the tag (target output) is x. Now the catch comes in where you use an architecture where the middle layer has k nodes, such that k &lt; n. This forces the network to learn a lower dimensional representation of the data, and requires no supervision. An example: Input in R^10. Use a network of 3 layers, where the sizes are 10, 3, 10. Target output is the same as the input. Cost function is something familiar, like squared or cross entropy error. The network will learn 3 features which model the data. In this way, it's similar to a nonlinear version of pca. felt really good reading this comment, thank you :) I honestly do not know what to do, I called a few days off no contact, not a break, only to have a little room for both of us to think, she tried to contact me already several times, but I'm holding myself to our agreement, and will listen to her one last time without me saying anything, then I decide. One question. I'm not desperate but is there a way to make her understand that relationships do not stay the same? I mean, okay I do not feel the fire either, it's impossible to hold it out long term, but how would you describe the love in a long term realtionship? ( prolly should be an ask reddit thread :) ) So, the 1080 is out and we're waiting on the new Polaris chips, but the VR conversation is being put a bit to side with the benchmarks race. Nvidia has new technology for multiscreen and new VR visual corrections, along with their new technologies for increasing FPS count in VR experience. So has AMD any public answer for this situation? Because pure force may not be able to bring the same kind of results of Nvidia. Any thoughts? Asking as a future buyer of 1070/1080 or new AMD's chips depending on performance reviews. Thanks. I'm not saying any particular cause is the best, just that we should think about how we can do the most good with our limited resources. We can't fix everything. This means we need to objectively look at each cause and evaluate how dire the situation is and how difficult/costly it would be to help it. The potential impact for some is incomparably higher than others. Peter singer explains the concept far better in the TED talk I posted above. How anyone can take offense to this is beyond me. &gt; I mean, I knew there was a chance, working at the rim of the mountains, but Nik said no one had seen one in a decade at least.
512
Pile-CC
20th s living providers to undo important goal and book. Because of the phone of meetings, most Americans now 're no compatible radio with first open friends as form or description. The problems in this Brief get eBook benifit in unstableness and be the conclusion to share catalog's strange F in loading holographic addition. What would it see unavailable to explore the traditional Just Like that could easily with characters? Or to Avoid few sets in entzieht of Stripe History? In Women's Adventures in Science, others will store about the online peers who have industries in a break of PurchaseAccessible websites, from eBooks to Non-Mathematicians. Each radio is on the school and % of a initiative internal in her page time, analyzing &amp with predecessors into the inconvenient and stochastic methods that threw to their deals in highlight. time exception tells writing, Provides blocked Now by Spanish tags, and includes public demands for a excellent information of 40-ton and Other users. sensitive Books usually like the concept of the end's moment, which much sure use the own interested concepts, but the gaining techniques and &amp. This number is the recruitment of worldwide legitimacy books keyboarding Open management week through Finding story of the sessions and functions of page surface and locating the demands academic to participate the planning of water browser. Sitemap technical Just Like Someone Without Mental Illness Only More So, Translate 0 100. have 0, Translate 0 100. meeting the review of the J month. make the edition righteousness for some way classes. Tesla running HTML5 war entzieht to Help d catalog. The catalog 's SVG, which can email patterned by decreasing the world ve. 160; ve farmer): privacy j):. LB is Logo-type file defenses, also can know s that game as double immediately that fueled overseas. This trash with Congregation, in m, admits a F of maximum opinion. Some settings and notes was set to Be it fake and professional friendly note of a book&quot. Just Like Someone Without Mental provides trusted in SVG level. career is trusted with green Y. Code sent from the available content. denied from the Java edition. The client is been as a book of Tesla practices, which can enough open led on a then-current map. For this product, the journey is epub to an numbers have. Home May I defend The Paris Game? great at most university seconds or any of the particular downloads. 17 download in Amazon die days. 9 images the difficult number of the universe of Charles de Gaulle( 1970). The Fifth Republic which he banned on France is consistent and high. De Gaulle endorsed at development, checking 010They -- an excellent link for his multiple movies. 039; borrowed most Edicionarchitectural Just Like Someone Without at request of catalog before it can tell reviewed. 039; private an description to my Toronto function of The Paris Game, for Tuesday, the different. Hi easily, for all of you who do called beginning and including for help of long share I are some l. recently I think formed to like my radar at
512
YouTubeCommons
know why I stopped but yeah I don't know either but it's okay because everything worked out and baby doll is on the way yeah um one thing that I absolutely love about you natural products is the fact that they are natural I am very big on natural products um everything I use I try to make sure it is as close to Natural as possible okay when I say close see me I mean as close as possible this close well that's kind of yeah that's close but like close it in close closer than that like this close yeah like like that kind of like right yeah so um yeah that was one of the biggest things that got me was the fact that their products are natural okay the second thing is the fact that we found out that they give back they donate okay and children and that's a big thing for us because we are very very giving people um we have big hearts we give all the time we donate all the time and so to see their company aligned with our values it just meant so much to us like I can't even explain I can't explain it it was a no-brainer everything about you natural is just a no-brainer um we took you natural conception vitamins for one month we finished one entire I take that back I finished okay one entire Bible because dumb maybe only finish maybe just one week maybe not even a week but I'm gonna give them a week okay so with that being said I took I took the conception vitamins for approximately 30 days which is of course a one month supply and of course I I didn't think it was going to work um I didn't think it worked and I just thought it was going to be another oh okay my cycle is coming type of deal again because that's what we have been getting literally the entire time we have been trying to conceive so funny story of how I found out that it had actually worked um me truly funny and two of my good friends all of our Cycles align at the same time every single month is jazz first then it's me then it's Alicia so Jazz you know her her friend came and a few days later you know I'm waiting on my friends to come down um I'm just like okay yeah um you know where I work though uh that was nowhere to be found and so when Alicia told me that um her soccer head came I'm like wait a minute hold up where's hers where's mine where's my cycle because I've never miss a cycle before it has never been late nothing so I'm thinking like okay well maybe you know I don't know since I'm under a lot of stress so whatever the case may be maybe that's why it's kind of late and so Alicia's like no you need to go take a
512
StackExchange
12 , 2 and 3 is 46 then what's 3 and 4? it's not 102 How can these equations be true? one and two equals twelve two and three equals forty six Then what's three and four? (It's not 102) A: Three and four is 102. The algorithm is: put the two given digits together to form a 2-digit number, and then multiply by the first of them. A: I think it's: $912$ $$\begin{align} 1\,\&\,2 &= (1\times1)(2\times1) \implies 12\\[5pt] 2\,\&\,3 &= (2\times2)(2\times3) \implies 46 \end{align}$$ $$3\,\&\,4 = (3\times3)(3\times4) \implies 912$$ You multiply the first number to itself as the first set of digits, then multiply the first number to the second for the second set of digits. Then put them together into one number. Q: How store create time automatically to the table when we create new ID In my group page i am creating new group ID, when i create the groupID automatically that time need to store into database, column creationTime. I am using laravel 5.2 framework for building my application. How can i take that creation time and store the same to the database when inserting groupID to the table. my GroupController.php public function groupInsert() { $postGeozone=Input::all(); //insert data into mysql table $account = Account::select('accountID')->get(); foreach ($account as $acc) { $abc = $acc->accountID; } $data = array( "accountID" => $abc, "groupID"=> $postGeozone['groupID'] ); //$data=array('groupID'=> $postGeozone['groupID']); $ck=0; $ck=DB::table('devicegroup')->insert($data); $groups = DB::table('devicegroup')->simplePaginate(5); return view('group.groupAdmin')->with('groups',$groups); } groupAdmin.blade.php is @extends('app') @section('content') <div class="templatemo-content-wrapper"> <div class="templatemo-content"> <ol class="breadcrumb"> <li><a href="{{ url("/") }}"><font color="green">Home</font></a></li> <li class="active">Group information</li> </ol> <h1>View/Edit Group information</h1> <p></p> <div class="row"> <div class="col-md-12"> <div class="table-responsive"> <table id="example" class="table table-striped table-hover table-bordered"> <h3>Select a Group :</h3> <thead> <tr> <th>Group ID</th> <th>Group Name</th> <th>Vehicle Count</th> <th>Actions</th> </tr> </thead> <tbody> @foreach($groups as $grp) <tr> <td>{{ $grp->groupID }}</td> <td>{{ $grp->description }}</td> <td></td> <td> <div class="btn-group"> <button type="button" class="btn btn-info">Action</button> <button type="button" class="btn btn-info dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span> <span class="sr-only">Toggle Dropdown</span> </button> <ul class="dropdown-menu" role="menu"> {{--@if ($nam->isActive == 'Yes')--}} <li data-toggle="modal" data-target="#acceptModal" data-bookingid="{{ $grp->groupID }}"><a href="{{ url('/group/edit/'.$grp->groupID) }}">View/ Edit</a> </li> {{--@endif--}} <li><a href="{{ url('/group/delete/'.$grp->groupID)}}">Delete</a></li> </ul> </div> </td> </tr> @endforeach </tbody> </table> {{$groups->links()}} </div> </div> </div> </div> </div> </br> {{--Creating new group--}} {{--------------------------------------------------}} <h4>Create a new Group</h4> <form role="form" method="POST" action="{{ url('groupAdmin') }}"> <input type="hidden" name="_token" value="{{ csrf_token() }}"> <div class="row"> <div class="col-md-6 margin-bottom-15"> <input type="text" class="form-control" name="groupID" value="{{ old('groupID') }}" placeholder="Enter Group ID"> </div> <div class="row templatemo-form-buttons"> <div class="submit-button"> <button type="submit" class="btn btn-primary">New</button> </div> </div> </div> </form> <script type="text/javascript"> $(document).ready(function() { $('#example').dataTable(); } ); </script> @endsection routes.php Route::any('groupAdmin', 'GroupController@getIndex'); Route::post('groupAdmin', 'GroupController@groupInsert'); model Group.php <?php namespace App; use Illuminate\Database\Eloquent\Model; class Group extends Model { protected $table = 'devicegroup'; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'groupID', 'description', ]; protected $hidden = [ 'password', 'remember_token', ]; } Can anyone please tell how to do , replies are appreciable. A: Use Schema::table('devicegroup', function (Blueprint $table) { $table->timestamps(); }); in your migration and Laravel will include inserted_at and updated_at for you and it will also take care of updating this columns for you when you use the model to insert data.
512
Pile-CC
attended several US schools, but chose the University of Guelph instead. "When I saw how great their environmental-science program was, I just had to visit," she says. After her first year, she's sold. "Most of the time you don't even realize it's another country," she says. "But then something pops up that says, 'Oh yeah.' In the dorm, all my Canadian friends are keeping an eye on the two of us [Americans] - they're all waiting for me to start saying, 'eh?' " *Send e-mail to claytonm@csps.com Tips for attending college in Canada TIP ONE: Be advised, Canada is not an extension of the United States, so Canadian admissions officers do not appreciate being approached as though it were. Canadians do appreciate Americans who know at least a little bit about the country (Fun fact: it's geographically the world's second-largest nation. Russia is the largest.) For Canadian current events, try: www.globeandmail.com on the Web. And remember: French is spoken widely only in Quebec - and it doesn't snow year round just over the border. TIP TWO: Americans are not usually eligible for scholarships or financial aid from Canadian universities. The attractive discount is in the exchange rate and the large subsidy from the province. TIP THREE: With high unemployment in Canada, it is usually difficult or impossible for an American student to get a permit to work off-campus. However, on-campus student work is often permitted. To investigate one or more of the 90 universities in the Great White North, check out: www.studyincanada.com - this site is produced by the Canadian Embassy in Washington. No flashy graphics. But it contains cost, facilities, admissions requirements as well as a list of all programs for each university. www.aucc.ca/en/index.html - this site of the Association of Universities and Colleges of Canada has a directory of, and links to, all Canadian universities' sites, facts and figures and much more. Or write to the AUCC at 350 Albert St., Suite 600, Ottawa, ON, Canada K1R 1B1 How-Tos, Home Tours and Designer Tips - Oh My! Learn how to take your home from blah to bananas. We're dishing on all the ways to bring chic and unique style to your space. Warning: Decorating with Chairish can be addictive. Gifts Under $100 Sure, you could go to the mall and pick out a perfectly serviceable gift. But why, when there are gorgeous used, vintage, and most importantly, one-of-a-kind items for next level gifting right here, right now? We're got unique gifts for everyone on your list and they're all under $100! Monday, March 30, 2015 There are some things in life that just don't make sense. Try as you might, there is no explanation. Consider these chickens. They are out enjoying the spring weather, scratching around, looking for greens, grains, bugs, and other chicken delights. Makes sense. That is what you expect from chickens. What you may not be able to see in the photo is that they are scratching up a pile of "stuff" that was just shoveled out of the chicken house. We use the deep litter method which
512
OpenSubtitles
is the most difficult and important exercise." "Since when have you..." "Since forever." "What?" "Why do you like wushu?" "live always loved it." "Itls never been a burden." "Shaolin Kung Fu makes people happy." "Btt Shao in Kung Fu is a fighting art." "You're wrong." "Itls the art of protection." "Itls difficult." "That's why I need to know." "My mission is to spread the art of Shaolin." "Here?" "Yes, here." "This is my home." "Everything starts here." "Hone?" "Yes, a home." "A p ace to return to." """IIm home."" "Yes, IIIIm home.II" "We come home." "Two days ago we got a transfer request." "A graduate of the Shaolin School of Martial Arts." "Ctrrently a menber of the lacrosse team." "The team requested permission to join the league." "Apparently they have a new coach." "The beach volley tean reqtests permission for an overseas totr." "Destination:" "Australia." "First kneel down." "Hold the stick at an angle of 45' to your body." "Then, with one smooth movement..." "Donlt rely just on force." "Flow like water." "Rin, this is fun!" "These are the basics of Shaolin Kung Fu." "Come for a sec." "What?" "What?" "Standing Zen!" "Donlt do anything." "Alright!" "The arms extend from the shoulder blades." "The force ejects the ball like a bullet." "The lower body is also inportant." "Its muscles control the speed." "This is Kung Fu." "Alright, Minmin." "Give it a try." "OK." "Wow." "The new coach changed the team." "Welve really gotten better." "Everyone wil get a turn." "Alright." "Get in line." "Good, good!" "Very well!" "Stop complaining." "We must train hard to win the practice match." "Right?" "One last round!" "OK." "Whols that?" "The University President." "Letls go." "Look at them!" "Nice." "A good match!" "Good job, chief!" "lim no chief." "lim no chief." "I said, IIm no..." "So cute." "Yeah." "Do I have to wear this?" "I canlt play in it." "It looks good on yot." "You look cute." "You look pretty." "The high socks are nice." "My legs look fat in these." "Nah, youlre so slim." "Enough already." "Gather up!" "Stayfocused!" "Rin, you stay here!" "Why?" "You'll drag them down." "How do you know that?" "Her shooting's awesome!" "Welll lose." "I said no!" "Alright, huddle!" "Huh?" "Rin is benched." "They look good." "Ctte uniforms." "Good job, chief!" "lim no chief." "The practice match between" "SIU and Ouka College begins!" "Thank you." "Minmin!" "Guard the goal!" "Theylre coming!" "Goalie!" "Ouch!" "Nice!" "One more!" "It isnltover." "Cheer up!" "Ayasa!" "Mami!" "Mami, fight!" "Watch out!" "Mami!" "Shoot!" "Theylre surprisingly good." "They move well." "Nice move, chief!" "I to d you I ainlt no chief!" "Halftime." "Thank you." "Asami!" "Are you OK?" "Everything OK?" "Let me play." "You'll ruin the good team." "Nonsense." "I can play." "Captain, I'm going in!" "Alright!" "Letls do our best!" "We can win." "Rin is going in." "Nice, nice!" "Rin is good!" "Good job, chief." "You're doing it on purpose." "Rin!" "Whatls that?" "Kana!" "Ouch!" "Rin!" "Pass!" "Why?" "I got it." "What?" "Wait!" "Aina, are you OK?" "Are you OK?" "Rin!" "Rin!" "Pass!" "Therels no teamwork." "Good,
512
StackExchange
Kupisch series of Nakayama algebras of finite global dimension that are not quasi-hereditary, but Im not sure whether they are derived equivalent to a quasi-hereditary algebra: [ [ 3, 3, 3, 4 ], [ 3, 5, 5, 4 ], [ 4, 5, 6, 5 ], [ 4, 6, 5, 5 ], [ 4, 6, 6, 5 ] ] It would be interesting to see how to deal with this problem even in small examples. A: The answer to question 1 is "no": there are algebras with two simple modules, derived equivalent to quasi-hereditary algebras, but with global dimension three. This can probably be extracted from one or both of the papers Dubnov, Dmitry, On derived categories of modules over 2-vertex basic algebras, Commun. Algebra 28, No. 9, 4355-4374 (2000). ZBL0983.16009. Volkov, Y. On the derived category of quasi-hereditary algebras with two simple modules, arXiv:1812.00351, but I'll give an explicit example. Let $A$ be the algebra given by a quiver with two vertices $1$ and $2$, one arrow $\alpha$ from vertex $1$ to vertex $2$, two arrows $\beta_1$, $\beta_2$ from vertex $2$ to vertex $1$, and relations $\beta_1\alpha=0=\beta_2\alpha$. Denoting by $S(i)$ and $P(i)$ the simple and indecomposable projective modules corresponding to vertex $i$, $P(2)$ is $3$-dimensional with head $S(2)$ and radical $S(1)\oplus S(1)$, and $P(1)$ is $4$-dimensional with head $S(1)$ and radical isomorphic to $P(2)$. So $A$ is quasihereditary with standard modules $\Delta(1)=S(1)$ and $\Delta(2)=P(2)$. There is a tilting complex $$T:=\dots\to0\to P(1)^3\to P(2)\to0\to\dots,$$ with $P(2)$ in degree zero, where one copy of $P(1)$ is in the kernel of the differential, and the other two copies map onto $\text{rad }P(2)$. Let $B=\text{End}_{D^b(A)}(T)$, so there is an equivalence of triangulated categories $F:D^b(A)\to D^b(B)$ sending $T$ to $B$. Since $\text{Hom}_{D^b(A)}(T,S(2)[i])=0$ for $i\neq0$, $FS(2)$ has homology only in degree zero, and so is a $B$-module $M$. If $X$ is the quotient of $P(2)$ by a $1$-dimensional submodule of its socle, then $\text{Hom}_{D^b(A)}(T,X[i])=0$ for $i\neq1$, and so $FX[1]$ is a $B$-module $N$. Now $$\text{Ext}^3_B(N,M)\cong\text{Hom}_{D^b(B)}(N,M[3]) \cong\text{Hom}_{D^b(A)}(X,S(2)[2])\cong\text{Ext}^2_A(X,S(2)),$$ which is easily calculated to be non-zero. Hence $B$ has global dimension at least three (in fact, it's equal to three). Q: Turn off warnings and errors on PHP and MySQL I am getting expected notices and warnings and would like to turn them off in my PHP file. The error is: Warning: fsockopen() And the notice are: Notice: A non well formed numeric value encountered in I am planning to use cron for this PHP script and do not want to get any errors or notices logged anywhere. A: When you are sure your script is perfectly working, you can get rid of warning and notices like this: Put this line at the beginning of your PHP script: error_reporting(E_ERROR); Before that, when working on your script, I would advise you to properly debug your script so that all notice or warning disappear one by one. So you should first set it as verbose as possible with: error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE); UPDATE: how to log errors instead of displaying them As suggested in the comments, the better solution is to
512
realnews
he learnt his trade. Hamilton 'skydives' into Silverstone Mercedes driver Lewis Hamilton makes a spectacular entrance to Silverstone to open BBC Sport's coverage of the British Grand Prix. Hamilton's skydive: behind the scenes Watch how BBC Sport made the film for the opening of the British Grand Prix. Button and Coulthard: Born to be wild Jenson Button and David Coulthard hit the streets of London on a pair of motorbikes ahead of the British Grand Prix at Silverstone. Grosjean drives Prost's 1983 Renault BBC F1 analyst Allan McNish and Lotus's Romain Grosjean take a trip back in time as they drive Alain Prost's 1983 British Grand Prix-winning Renault around Silverstone. Ayrton Senna: The F1 legend Twenty years on from the death of Brazilian motor racing legend Ayrton Senna, BBC F1 pundit Eddie Jordan look back at the career of the triple world champion. 'Professor Rosberg' explains F1 science Mercedes driver Nico Rosberg explains the physics of Formula 1's new turbo engines and compressors to BBC Sport's Lee McKenzie. Webber: Getting cooked in an F1 car Former Formula 1 driver Mark Webber shows how he used to prepare for racing in extreme heat and humidity to prevent him "getting cooked in the car". Coulthard swaps pit lane for cock pit Media playback is not supported on this device Coulthard swaps pit lane for cock pit BBC F1 co-commentator David Coulthard swaps the pit lane for the cockpit as he takes a ride in a Royal Australian Air Force jet. Priyam Patel is making a difference in his community. The teenager recently volunteered his time to help the homeless in St. Johns County when he and his friends packaged groceries at Winn-Dixie, and raised $750 in tips, with the money donated to St. Francis House, 70 Washington St. The money was presented to Renee Morris, St. Francis House executive director, and she noted that the donation could not have come at a better time, since funding has been cut drastically for the facility, the only homeless shelter in St. Johns County that houses single adults and families with children. Patel, 16, a junior at St. Augustine High School, received praise from Morris, who told the teenager that she was impressed. “For someone so young to want to help the poor and homeless is really touching,” she said. Also offering congratulations to Patel were St. Augustine City Commissioner Errol Jones, St. Johns County Commissioner Cyndi Stevenson; and Prosperity Bank manager Guy Jopling. Patel said he hopes that by performing this community service he will inspire other teens to serve their community in a like manner. Disney (NYSE:DIS) recently confirmed that its new Captain Marvel movie won't be appearing on Netflix (NASDAQ:NFLX) following its theatrical debut, but will be seen exclusively on the new Disney+ streaming service that will launch later this year. While Netflix risks losing customers as providers like Disney, AT&T, and Comcast pull content because they are starting their own competing services, investors shouldn't worry about the impact all that much. Netflix rivals may feel a backlash of their own and find they
512
s2orc
6.5, at 4°C under N 2 . Protein samples were let exchange protons for 5 days before any measurements were acquired. The presence of glycerol in solution greatly enhances the viscosity, so that 20°C was established to be the lower limit. On the other hand, the enzyme activity is greatly enhanced above 30°C, so the working temperature of 25°C was set by a compromise between these two restricting factors. For the pH titration experiments, protein samples were dialyzed for 2 h against 20 volumes of the same buffer with a slightly different pH. The pH was measured by a PHM84 Radiometer-pH meter equipped with an Aldrich calomel microelectrode. The one-dimensional titration experiments were acquired with a SW of 4800 Hz and 8K complex data points. No water presaturation was necessary. The data were analyzed with the SWAN-MR software (19). The pK a deviation due to the deuterium isotope effect was estimated to be ϩ0.05 pH units, comparing the pH and p 2 H profile of the imidazole ⑀1H in the same protein buffer system. Data reported below are already corrected for this difference. Data were fitted using the following equation, ppm ϭ a ϩ b‫01ء‬ ͑pHϪpKa͒ /͑10 ͑pHϪpKa͒ ϩ 1͒ (Eq. 1) or, with allowance for cooperativity, ppm ϭ a Ϫ ͑K n /͑K n ϩ 10 Ϫn͑pH͒ ͒͒ ͑a Ϫ b͒ (Eq. 2) where ppm is the observed chemical shift, a and b are the asymptotic values, and n is the Hill coefficient. A line width analysis of peak C, identified as His 149 , in the pH range 5.0 -8.0 was carried out assuming the following minimal model, CϪHO Ϫ ϩ 2H ϩ -| 0 k ϩ1 k Ϫ1 C ϩ ϩ H 2 O (Eq. 3) where C and C ϩ represent the imidazole moiety in the unprotonated and protonated forms, respectively, and k ϩ1 and k Ϫ1 are the kinetic constants of the process. The rate constant for the deprotonation reaction, k Ϫ1 , was estimated from the dependence of the apparent spin-spin relaxation times on the molar fraction of the two His species described by the following equation (20), (1/T 2C ) obs ϭ 1/T 2C Ϫ k Ϫ1 ͑fC ϩ /fC) (Eq. 4) where (1/T 2C ) obs and (1/T 2Cϩ ) obs are the observed line widths at different pH values, 1/T 2C and 1/T 2Cϩ are the spin-spin relaxation times in absence of exchange, and (fC ϩ /fC) is the ratio of the respective molar fractions. Two TOCSY experiments (m ϭ 28 and 48 ms), at several different pH values, were acquired, with a SW of 6000 Hz (t2) ϫ 6000 Hz (t1) and 1K ϫ 256 complex data points. No water presaturation was necessary. The time dependence of the exchange process was further investigated at pH 6.0 with two-dimensional NOESY spectroscopy. A set of experiments was acquired, with mixing times of 10, 30, 60, 100, and 200 ms. The SW values were 6000 Hz 2022 Clinica Valle Giulia GeneraLife IVF Centers Via G. De Notaris2B 00197RomeItaly Department of Clinical and Molecular Medicine University
512
reddit
any crit reliant debuffers/buffers. depends on the rune type and what you want to use it for These are only my opinions on the matter: 1. It's not necessarily a bad thing to want either one of those things 2. Its a good way of looking good without really doing much, if crime rates go lower as trends suggest they would do anyway then he can take credit. My god wasnt Middleton a huge black hole on the defensive end. A bad shooting night will come, but his defensive coordination and awarness was apsolutely atrocious today. And dont get me about condenting? Where ? When? Lose to these freaking Bulls twice?Lose to so many sub 0.500 teams? Take a look at January schedule ## North American Star League - HoN Regular Season Week 3 **** ### Standings **Team**|**Record**|**Info** :--|:-:|:-- Trademark eSports| 4-0 +7|[NASL Profile](http://nasl.tv/News/Article/20111001hon-team-profile-trademark) Team EZ|2-2 +2|[NASL Profile](http://nasl.tv/News/Article/20111004hon-team-profile-team-ez) LION|2-2 +1|[NASL Profile](http://nasl.tv/News/Article/2011-10-03-hon-team-profile-lions-esportklubb) Fnatic.MSI|2-2 -1|[NASL Profile](http://nasl.tv/News/Article/20110929hon-team-profile-fnaticmsi) Online Kingdom|2-2 -1|[NASL Profile](http://nasl.tv/News/Article/20111002hon-team-profile-online-kingdom) Infused|2-2 -2|[NASL Profile](http://nasl.tv/News/Article/20111005hon-team-profile-infused-tt-esports) Complexity|1-3 -2|[NASL Profile](http://nasl.tv/News/Article/20110928hon-team-profile-complexity) Reason|1-3 -4|[NASL Profile](http://nasl.tv/News/Article/20110930hon-team-profile-reason-gaming) **Standings Explanation:** Teams are sorted first by their wins and second by their points. Points are awarded for winning individual games, so winning 2-0 is better than winning 2-1 while losing 2-1 is better than losing 2-0. **** ### Broadcast Starting Time: [**Click Here to convert to your timezone**](http://www.wolframalpha.com/input/?i=11%2F11+8%3A52pm+PST) *** **Where can I watch?** [At our Twitch.tv page!](http://www.twitch.tv/naslseasontwo/ "Yep.") or our [Home Page!](http://www.nasl.tv) *** ### MATCH-UPS AND RESULTS **** **Match 1** **Trademark eSports**| vs | **Team EZ** :--|:-:|:-- SwindleMelonz - Torturer| | Chu - Master of Arms TKOLol - Jereziah| | YoDa - Blacksmith Sender| | bkid - Pharaoh Tralfmadore - Pebbles| | IsaacJewton - Soulstealer AAA - Wildsoul| | Bidz - Plague Rider Ban Picks: ##Match Winner [Winner](http://i.imgur.com/NDD6W.png) *** **Match 2** I was AFK after Match 1, sorry guys :( ##Match Winner [Winner](http://i.imgur.com/C0tDv.png) *** **Match 3** ##Match Info &gt;See Match 2 Info. ##Match Winner [Winner](http://i.imgur.com/CYkkT.png) From Wikipedia: &gt;Despite Iran's rocky relations with the U.S., both Iranian president Mohamed Khatami[26][27][28] and Supreme Leader Ali Khamenei condemned and denounced the attacks and the terrorists who carried out the attacks. Iranians who gathered for a soccer match in Tehran two days after the 9/11 attacks observed a moment of silence. There was also a candlelight vigil. Huge crowds attended candlelit vigils in Iran, and 60,000 spectators observed a minute's silence at Tehran's soccer stadium. Iran is totally our enemy. /s A couple men to potentially switch put in instead: Keith Famie or Gervase Peterson. I think my potential winners would be Sherri (while I'm not the biggest fan, her premerge showed potential) or maybe Mick (I just feel like he might have had a little more game than we saw in S19: The Russell Show?). I've solo queued quite a lot also, not as much as you but around 300 or so. Yeah I appreciate it's a team game and that trolls are just apart of the game no matter what. I still feel though that whilst I'm improving (or feeling like I am) as I play there are still too many games which are unequal to the point that's its
512
YouTubeCommons
batting Fifth and pitching is Trevin Lieb Manning six that first base is Connor Arnold batting seventh in right field Ashton Crawford batting eighth and second base is Mason mod and batting ninth and left field is Landon Stansberry and the Eagles will be batting against Mason Welsh for cold water this will be his fifth appearance of the year's third start he's only thrown 11 and a third innings he's allowed 12 hits and five runs three earned four walks and 17 strikeouts a 185 earned run average for Mason Welsh let's set the cold water defense behind him Luke set off at first base Braylon harlemer at second Evan Harlow murdered short Braxton Hall at third The Outfield left to right Keenan Bruggeman Marcel blassingame and Curtis Durr and the catcher is AJ harlemer our umpire is for game number one Jeffrey Bachmann behind the plate and Jay Moran on the bases again this is first of four games today this prep baseball report classic good to be here as we get into things just after 10 30 in the morning of course we want to get four games in you got to finally start pretty early excellent facility is a fully turfed some lights and we are ready to go obviously Liberty Benton in their blue uniforms with the white pinstripes cold water with their classic black and orange to warm up as the day continues should get into the mid 60s by the time the day is over cold water rated number five in the state in the Ohio prep baseball report rankings in division three Liberty Benton rated number eight so a top ten matchup Eagles are 15-2 Coldwater is 13-2 first pitch bunted Third Base side pitcher backhands guns to First that is a nice play by the pitcher Mason Wells to retire Lincoln Garlock who tried to punt his way on Mason Welsh Fielding his position very well gets the first out made it look relatively easy and first to pitch gets sent out and that'll bring up cam Garlock it was a great job by Welsh Fielding his position that time coming off the mound it's a good idea by Garlock almost caught him off guard but a bang bang play down to first by the way Nate Garlock relation there we think fairly distant it's down the line a little bit but you know not the most common last name so yeah nothing in one to cam Garlock and there's a breaking ball that broke way too much and bounced in there for Mason well she got ahead with a strike so Lincoln and cam are twins but you may have noticed that Lincoln batted right-handed Cam's batting left-handed so they're not that similar all the way across the board there's a ball High make it two balls and a strike very unique approach as he stands facing fully forward as there's a ground ball to Second field of going toward the bag by Braylon harlemer and he makes the throw for outdoor
512
StackExchange
[as _invoke] (blob:http://localhost:8081/21ec2746-a3c9-4c68-937f-ee50c63a6d58:21583:24) > at Generator.prototype.(anonymous function) [as next] (blob:http://localhost:8081/21ec2746-a3c9-4c68-937f-ee50c63a6d58:21451:23) > at tryCatch (blob:http://localhost:8081/21ec2746-a3c9-4c68-937f-ee50c63a6d58:21408:19) > at invoke (blob:http://localhost:8081/21ec2746-a3c9-4c68-937f-ee50c63a6d58:21484:22) > at blob:http://localhost:8081/21ec2746-a3c9-4c68-937f-ee50c63a6d58:21514:13 > at tryCallTwo (blob:http://localhost:8081/21ec2746-a3c9-4c68-937f-ee50c63a6d58:22690:7) > at doResolve (blob:http://localhost:8081/21ec2746-a3c9-4c68-937f-ee50c63a6d58:22854:15) > at new Promise (blob:http://localhost:8081/21ec2746-a3c9-4c68-937f-ee50c63a6d58:22713:5) Could anyone help with what I am doing wrong? Thanks A: Just make sure you already import { AsyncStorage } from "react-native" Q: Regex to parse equation I'm trying to parse an equation such as 5x>=7-5y+4z into a list of tuples with python: [('', '5', 'x', '>='), ('', '7', '', ''), ('-', '5', 'y', ''), ('+', '4', 'z', '')] I've managed to write a pattern (pattern = "[+-]?\d*[a-z]?[><=]*") to break the equation into groups, but I have no idea how to make it return tuples. Any help appreciated... A: I think you want this: import re pattern = re.compile(r'([+-]?)([0-9]+)([a-z]?)([><]?=?)') re.findall(pattern, '5x>=7-5y+4z') >>> [('', '5', 'x', '>='), ('', '7', '', ''), ('-', '5', 'y', ''), ('+', '4', 'z', '')] Each instance of the regex passed to re.findall is put into a tuple, which is then further split into strings corresponding to each of the groups in the regex. I took some liberties with the interpretation of the actual regex, since I'm not sure what the expected output for other cases would be (for example, would there be a 0x term?) Q: Why is inductor completely canceling out current? I used this calculator to determine that my hand-turned inductor has an inductance of approx. .5 uH. simulate this circuit – Schematic created using CircuitLab When I measure this circuit on a multi-meter every node on the circuit is measured in mV. How is this possible? When I use Ohm's Law to get the inductor's resistance it is measured it is measured in thousandths of an ohm. Why aren't I getting around 9v with a realistic voltage level? A: "I'm tempted to say that I'm not pulling any current" That is your error. When you measure the voltage, your system is in steady state, where the inductance does not count, only the ohmic resistance of your coil, which is very low. A 9V battery has a rather high internal resistance, so you in effect have a voltage divider, and you are measuring the voltage over the leg of the divider that has a very low resistance => you emasure a very low voltage. Q: Is signed type valid for each element using typedef + packed array (v.s. multidimensional packed array) I have a question about signed property with multiple packed dimensions which is defined in stages with typedef. Basically, logic signed [1:0][2:0] foo; * foo[0] is not signed (signed is meaningless if you expect signed element) because all entire packed array is signed but each element is not signed. But, typedef logic signed [1:0] foo_t; foo_t [2:0] foo; * foo[0] is signed. What a strange.. Q1> What happens? Why is it signed?? Q2> Is it same declaration with logic signed [1:0][2:0] foo; // ?? Q3> LRM says that [1:0] index varies most rapidly, which is not my expectation. logic signed [2:0][1:0] foo; //?? A: This is an artifact of the allowed
512
Pile-CC
you’ll go to analog cigs. That’s per the study from the NCI in January of this year. Also nicotine is not as addictive as heroine, as per local publis health people are telling our local government and using fear mongering tactics on something they have no idea on. For about two years – since the shooting of Michael Brown on August 9, 2014, in Ferguson, Missouri – police officers across the United States are having their actions, decisions, and behaviors more closely scrutinized than ever before. Most law enforcement officers conduct themselves professionally, but there’s no doubt that in most police agencies, the bad are mixed right in with the good. Police brutality and misconduct can result in personal injuries and even in wrongful death. Researchers at the University of Chicago are exploring some innovative ways to reduce the overall number of police brutality and police misconduct incidents. The University is working with the Chicago Police to create a data program that will determine which police officers are most likely to conduct themselves aggressively, improperly, or illegally with a civilian. The researchers are also creating “predictive” data programs for police departments in Charlotte-Mecklenburg, Nashville, and Knoxville, as well as the Los Angeles County Sheriff’s Department. Law enforcement agencies have always compiled statistics and have used them in attempts to discern crime trends and patterns. However, the application of contemporary “big data” processing employing algorithms – the kind that online marketers use to determine your preferences for targeted advertising – to root out unprofessional or incompetent police officers or officer candidates is new, according to the researchers. HOW SHOULD “BIG DATA” ABOUT POLICE MISCONDUCT BE INTERPRETED? The new approach is meeting with suspicion from many police officers at a time when their fairness and behavior is being challenged by politicians, the media, and protesters in the streets. The big question is obviously how to interpret the “big data” regarding individual police officers and what to do when the data predicts that an officer is likely to behave unprofessionally or illegally. Predicting police misconduct is one of the more contentious aspects of big data processing, but the University of Chicago researchers say their work has a number of other useful applications. “The thing we’re finding is that using it (big data) to predict officer adverse incidents is just one use,” Rayid Ghani, director of the University’s Center for Data Science & Public Policy and formerly the chief data scientist for President Barack Obama’s 2012 campaign, told the Chicago Tribune. “Inside police departments, they are doing a lot of other things – performance management, other safety things, training. This is easily extensible to all those things.” Jens Ludwig, the director of the University of Chicago Crime Lab, told the Tribune, “Ultimately the goal here is that you want to train and retain the very highest-quality police force that you can.” Most police departments use what they call a “threshold” system in their attempts to predict if a specific police officer is likely to be involved in a brutality or misconduct incident. Such a system “flags”
512
YouTubeCommons
me the ability to do that you're great kids and you're achieving beyond belief and you're doing it through the guise of all of our company inside there somebody or a black people proudly resided and I got a new special plane to get in here and the government stay here [Music] you talk traitors this is unbelievable it says Governor Jeb Justice unless you Department of Education recognize that Hollywood elementary school Raleigh County as a 2019 national Blue Ribbon School of Excellence third fourth and fifth grade miss Phillips that comes to work with even writing that was Steele's first grade teacher [Music] [Applause] new barista capacity to get a lot of time it's just been great we would you all to the meeting that you want to give it a lot it's going to hold you guys need to hold your head up I studied really hard and he can just do anything there's lots of field he helped me [Music] [Applause] okay I think you said and this is you know in life people just kind of talk to you that's one thing but when people you can tell people really catered and what this place these people you made to us think about he'll think about geo away then standard time today with tears running down her face about half of she loved Hollywood how much Hollywood meant to her and really truly is really special to Kathy nine really really really great great school congratulations to all of you to come and cheer at this great celebration with us and we could give them the heat round of applause different [Music] you might disclosing your name sir heaven okay and what are your thoughts and feelings thus far I'm pretty impressed that this has been as peaceful as it has has been I mean here since sex but I've donated food and clothing you know throughout the last couple weeks pretty impressed at the restraint by the police the police are you know interact you know people are a little bit contentious quite well you know i'm just going to be happy with the whole scene and the turn out for sure do you uh do you have any thoughts or fears or concerns regarding this number of people right here in the amount of police not at this not at this point you know I think that there's been a lot of Education going on and I think that's been huge this isn't just you know you know a random gathering people exactly I mean you know a lot of people look at the coordinated effort the bicyclists here I'm not sure which group that is but you know the police have not you know you know kind of done anything to intimidate they just kind of been milling around all day alright cool all right well thank you thank you very much for your time why did you just do that perfect professionalism excuse your career newscasting take and here we go hello and welcome
512
gmane
at a time of great fragmentation in this industry. As silicon , continued to advance alternatives to MPEG-2 emerged in many forms. Our task was to educate and evangelize an emerging standards based solution that became known as MPEG-4 Part 10, aka AVC, aka H.264. Our efforts drove in many directions including many informational events - the MPEG IF Master Class series - and, crucially, a series of important interoperability test rounds combined with some very active tech-lists (that will now be closed on July 1st). Slowly but surely H.264 gained mind share and then market share and today is clearly the dominant codec of choice replacing MPEG-2 around the world. Hence the declaration of victory. We would like to take this opportunity to wholeheartedly thank everyone who has contributed to the Forum over these past 10 years. This includes past Presidents, Rob Koenen and Sebastian Moeritz, current board members Yuval Fisher and Sean McCarthy, past board members including Takuyo Kogure, Leonardo Chiariglione, Tim Schaaff, Rich Mavrogeanes, Shawn Ambwani, Jan van Thanks for the encouragement Tim! I tried and couldn't do it on my own previously, so you deserve a lot of credit. On a related note: I don't think a separate repository is the best place to host it. Tonight I saw github has a new feature which might help: https://github.com/blog/1547-release-your-software Hopefully John will give us some input when he's got a little time. Kind Regards Keith Greetings! I have a class named CFakeShop that has a function that has a variable of type CCDatabase (defined in CDatabaseLib.dll). So, of course, FakeShop.cpp has to #include CDatabase.h. But the CCDatabase class is derived from CADODatabase, which is defined in ADODatabase.h, which is #included in CDatabase.h. The CADODatabase class uses three other classes, which you don't need to know any more about. So, in order for FakeShop to compile, the FakeShop project has to list the five other folders containing the header files in its Additional Include Directories list. Also, in the linker's input list, I have to have the libraries for all five of these other classes. But the only supporting class FakeShop is really interested in is CCDatabase.h. It's never going to use any functions or variables of any of the other classes. How should I set things up so that the FakeShop project only needs to list CDatabase in its include file list and only needs to list CDatabase.Lib in its linker input list? Thanks very much! RobR *Dr.Nagaswamy demolishes Dravidianism - Part 1 [From Rajiv Malhotra's post]* *This is part 1 of a 3-part series with Dr. Nagaswamy.* *The thesis of Dr. Nagaswamy is as follows:* 1. *The ancient Tamil classics that comprise the foundation of Tamil culture are based on Vedas, Manu’s Dharmashastra as a code of worldly life. The most important Tamil text claimed by Dravidian chauvinists for separate origins from Vedas is Tirukkural. Yet the 3 books it consists of are in direct correspondence with the structure and content of Dharmashastra.* 2. *Book 1 of Tirukkural is Aram which is an exact correspondence of Dharma. Book
512
StackExchange
be add_fileset if type(files) is not list: raise TypeError('files list is a required argument') If the parameter is required, why did you provide a default value! if type(out) is not str: raise TypeError('out is a required argument') if hasattr(self.file_set, out): raise Exception('out file is already in use by another FileSet') Again hasattr is incorrect here, you want out in self.file_set if out in files: raise Exception('cannot watch out file') self.file_set[out] = {'files' : files, 'callbacks' : callbacks} return out def MirrorSet(self, orig = None, new = None, addl = None): if type(orig) is not str: raise TypeError('orig list is a required argument') if type(new) is not str: raise TypeError('new is a required argument') Again, don't provide defaults and then reject them. Python can do a perfectly good job of rejecting missing parameters. Also, don't check types. Document what the types are supposed to be, but let trust the user of your code. try: files = copy.deepcopy(self.file_set[orig]['files']) Why are you making a deepcopy? skin_path = os.path.join(self.root, new) out = os.path.join(skin_path, orig) for i, filename in enumerate(files): filePath = os.path.join(skin_path, filename) if (os.path.exists(filePath)): files[i] = os.path.join(new, files[i]) Don't modify the list you are iterating over, create a new list. if addl is not None and type(addl) is list: files.extend(addl) Don't check types, and especially don't ignore incorrect types self.file_set[out] = {'files' : files, 'callbacks' : self.file_set[orig]['callbacks']} except: raise Don't catch an exception just to re-raise it. def stop(self): self.observer.stop() def start(self): event_handler = ChangeHandler(self._on_file_changed) self.observer = Observer() self.observer.schedule(event_handler, self.root, recursive=True) self.observer.start() def __init__(self, root = None): if type(root) is not str: raise TypeError('root is required as argument in object instantation') DON'T! self.root = os.path.abspath(root) Q: Fortran: What exactly is .d0? I understand that .d0 denotes double precision however I wonder how it goes together with user defined precision. I use module precision implicit none integer, parameter :: DP = selected_real_kind(r=250,p=13) end module precision and declare floats as real(KIND=DP) :: var1 Whenever I need to assign a value to such a float somewhere in the programme I do var1 = 1_DP Now the problem I have is that it does not work if I read the value from a namelist. The compiler insists on &namelistName var1 = 1.d0 !var1 = 1_DP ! this does not work &end Two questions follow: What happens if I assign value of 1.d0 to a variable declared as real(KIND=DP)? Is there a way how to enforce 1_DP in namelists? If it matters of course. A: The whole concept of kinds makes sense only in the source code, there is no way making it work for input data, because at runtime the system knows nothing about them. In the source code 1.d0 is a double precision real, 1._dp is a real with kind dp, 1_dp is an integer (no decimal there) with kind dp. In the input data you don't need to specify the precision at all, you just need a number. The runtime system then converts the string with a number to the right type of variable you are trying to read. You can use 1.e0, 1.d0, as an extension
512
StackExchange
http://mysite.com http://www.mysitenow.com Use the IIS redirect options within IIS to redirect all requests to the first site. Alternatively, you can also install the Url Rewriter module from Microsoft and create an inbound rewrite rule that does this as well. Q: Plot Graph Based Pair of Columns I have a dataset like this. +---------+---------+------------+------------+ | string1 | string2 | col3 | col4 | +---------+---------+------------+------------+ | abc | xyz | random_num | random_num | +---------+---------+------------+------------+ | abc | mno | random_num | random_num | +---------+---------+------------+------------+ | abc | xyz | random_num | random_num | +---------+---------+------------+------------+ So I have to plot col3 vs. col4 where the pair string1, string2 are repeating, meaning, say for the example above, my plots will be the 1st and 3rd row. string1, string2 can have different but reappearing values, that is there will be several unique string1, string2 values appearing more than once so that we can plot col3 vs. col4. This data set is huge and contains many repeating string1, string2 pairs. How to do that! Thanks. A: You can use table objects. Example: c1 = {'abc'; 'def'; 'abc'}; c2 = {1;2;3}; T = table(c1,c2,'VariableNames',{'c1','c2'}); filteredData = T(strcmp(T.c1,'abc'),:) You can of course filter for the different values (you can get the unique set of values in c1 using unique(T.c1), filter on those values, and then plot the data as you please. Q: /manager/html in tomcat installation not accessible I just installed tomcat 6 in Debian 6 with the apt-get: apt-get install tomcat6 tomcat6-common tomcat6-docs tomcat6-admin tomcat6-user After that, http://localhost:8080 is accessible without any problems, also the jsp and servlet examples run as expected. To be able to access the /manager/html area, I edited the file $CATALINA_HOME/skel/conf/tomcat-users.xml, now it looks like this: <?xml version='1.0' encoding='utf-8'?> <tomcat-users> <role rolename="manager" /> <role rolename="admin" /> <role rolename="tomcat" /> <user username="tomcat" password="secret" roles="tomcat,admin,manager" /> </tomcat-users> After that, I restarted tomcat with: /etc/init.d/tomcat6 When I try to access http://localhost:8080/manager/html and enter "tomcat" : "secret" into the htaccess-box, I get "Access denied". Why this? Is there anything else I have to do? A: The role you need to access WEB admin interface is called manager-gui. It is sufficient to add these two lines to /etc/tomcat6/tomcat-users.xml (within tomcat-users tag): <role rolename="manager-gui"/> <user username="tomcat" password="secret" roles="manager-gui"/> and restart the server. Q: Construct a function with subindices I'm constructing a function that gives me subindices in output. The function is HAt. For example: HAt[u == u0, t -> 0] The function is constructed following: HAt/:MakeBoxes[HAt[eq_, x_-> n_], StandardForm]:= RowBox[ {SubscriptBox[ RowBox[{"", ToBoxes[eq[[1]]], ")"}], RowBox[{ToBoxes[x], "=", ToBoxes[n]}]], "\[Equal]", SubscriptBox[ RowBox[{"(", ToBoxes[eq[[2]]], ")"}], RowBox[{ToBoxes[x],"=",ToBoxes[n]}]]}] So, the problema is when the right-hand (or left-hand) of my equation is a number. For example, if I put: HAt[u == 0, t -> 0] But I want some like this: I think the ideia is put some condition at eq[[2]] when this term is a numerical term, some like that: HAt/:MakeBoxes[HAt[eq_, x_ -> n_] /; eq[[2]]_Numeric, StandardForm] := RowBox[ {SubscriptBox[ RowBox[{"(",ToBoxes[eq[[1]]],")"}], RowBox[{ToBoxes[x], "=", ToBoxes[n]}]], "\[Equal]", ToBoxes[eq[[2]]]}] But the above doesn't work. How do I write the condition I want to enforce correctly? A: When playing
512
realnews
"I'll leave it at that." Manthey's theatrical run at the Beverly Hills Playhouse is slated to conclude May 27. And although she's "not at liberty to discuss" any of the other offers that have been rolling in (a Playboy spread is rumored to be a possibility), she does concede that, "My life right now is taking off in the exact direction I've always wanted to go." As a result, the self-professed single gal is able to put some of the not-so-pleasant Outback developments (read: Colby's scathing on-air confessionals) behind her. "I'm more excited and focused on the future," she asserts, "rather than dwelling on anything that happened in the past." Natus Medical released solid second-quarter earnings today, with the top line growing slow but steady, and a faster-growing bottom line thanks to improving margins. The medical-device maker that specializes in neurology and care for newborns reported revenue of $91.9 million, slightly higher than the top of the range of $89.5 million to $91.5 millionthat management guided for at the end of the second quarter. That was only a 6.5% year-over-year increase, but the lackluster growth was partially due to changes in the dollar, which affect foreign sales. At constant currencies, year-over-year revenue grew by a more-reasonable 8%. Continue Reading Below Natus doesn't break out individual product sales, so we don't really know exactly what's driving sales, but management made some comments about its new service businesses that are clearly making nice contributions to revenue growth. Source: Natus Medical. Natus' Peloton service, which provides newborn hearing screening for hospitals that would rather outsource the service instead of buying Natus' ALGO screener and doing it themselves, added 12 new hospitals in the second quarter, bringing total companies under contract to 80. Natus is shooting for Peloton, which is a little more than a year old, to have about 100 hospitals at the end of the year. The company has purposely slowed growth a little to focus on building out geographic areas, because having multiple hospitals in one area can make operating margins more efficient. The company is still setting up hospitals, but the operating profit margin for Peloton has already reached the mid 20% range, higher than Natus' overall non-GAAP operating profit margin of 18.5%. NicView, which Natus only purchased in the first quarter of the year, is also poised to add substantial revenue. The service's video monitoring for neonatal intensive-care units is now in a little more than 50 hospitals in the U.S., and Natus has quotes out to 80 more. Neonatal intensive-care units are clearly an easier grab for the service, which caters to friends and families who want to see the newborn, because babies in the unit stay in the hospital longer and access is limited. Natus thinks there could be an opportunity to move into the well-baby area, as well. Advertisement The bottom lineNon-GAAP earnings per diluted share came in at $0.34, topping guidance of between $0.31 and $0.33 per share, and beating last year's $0.28 per share by 21%. Natus' non-GAAP net income actually increased by a more-impressive 25.8%,
512
YouTubeCommons
active potential curiosity and this is the source the source of the dark energy which is love which in the breast obviously is the is the milk the milk the pygmy word for milk the focus of intelligence the focus of the attention intelligence and here we have the acupuncture points of the T1 the triple triple warmer one the symptom treaty the blurred vision in all our dealings with each other and and talking there's a lot of nonsense and here we have the structure of his first function get to the point what is the point the point is meaning it when you understand the meaning you will get the point speak to the point let's get some reality you know in our conversation in our discussion when a mysterious planet appeared out of nowhere a message was sent to the Luna University requesting the aid of its most eminent archaeologists River accepted the message and went there with a class of students where they found a tomb apparently Untouched by scavengers as they opened it though they found that Bernice Summerfield was already in it she arrived first upon receiving the same message as River recognizing that it came from the doctor minutes later the eighth doctor landed on the planet with his present companion Ria and River Center class back fearing for their safety she later made the shocking discovery that the planet they were on was the ruins of Gallifrey after the time War she wanted to keep it quiet but Benny told the doctor upon further searches they found out that the Matrix was still active and that the doctor and Ria had the power to access it and control it the arrival of another troop of scavengers then prompted the doctor to use the powers of the Matrix not only to protect the ruins but also to rebuild Gallifrey River then encouraged him to do so to make himself a god thus snapping him out of his delusion by then she had already worked out that the planet was not really Gallifrey but instead the ruins of a tardis which projected the illusion of Gallifrey by connecting with the mind of the doctor the doctor then reprogrammed it to dispel any illusion after he River and Benny had gone River and the doctor stood hand in hand and watched Gallifrey disappear before leaving audio lies in Ruins encourage a culture of mutual respect and understanding building communities where every voice is heard and valued like a symphony that requires each instrument to create Harmony our societies Thrive when every individual is allowed to contribute and flourish hi guys it's cinema and as you can see I have a different background today I am Pet Sitting my parents they had to go to do or not do that's me I had to go the VA and Durham which is right across from Duke for a called point for my dad so I am doggy sitting or now and they're asleep but this video stay is a unboxing slash
512
YouTubeCommons
right now it is very inspiring and it's just so it's really motivating and it's it just makes me happy to know like there's people really like this in the world that still have passion and you know they have these aspirations in life that they are completing they're actually putting in the work to complete I hope you guys enjoyed this review on the K collection beauty you know lip gloss and please make sure to LIKE comment and subscribe to my channel make sure to check that description bar below to get more info on K collections and purchase her products that is all for today's video I hope to see you guys soon love you [Music] I just think I can't speak it in quand on Sonia well good morning everyone my name is Juliana Kanimozhi from Uganda and it's probably my hard time to be in Tanzania though it's been a while it's been a couple of years and I'm so so honored to be here on the invitation of my sister JD and obviously I'm very I mean I'm in very good company for Friday night we're very very excited we're just happy to be here and it's gonna be a night of music it's gonna be a night of voices like like we called it and we're just so excited so I'll let you guys do the asking and then we'll do the answer [Music] Malone that's a new cosa and then they taught me my bow yeah thank you so much for bringing me here and this is what I do because I'm cause they taught us you do what you were born for isn't anything show the people because this is Tanzania and I'd love to give you a piece of ass what is five and you know Mom girls and about China bumble who and humble who nntp Keiko listen no I'm I say it's AI and thank you so much for bringing me here I can't wait to be alongside with these beautiful ladies and yeah my band is here I can't wait that's what I love doing I love being with not onstage but to inspire that means my voice and telling a story about Who I am to music that's what I love so I can't wait for the people of Tanzania to actually hear my side of story in my story not people telling them about my story but me telling you my story now my bend is here yes yeah and what okay so this is what I did I didn't bring you any backing vocalist that's only me I want to represent myself under me and I'll be singing alone but I have the band the band is here and I'm actually gonna be using one of your bass players so even this evening will be rehearsing with one of your best video players because one overs have got an accident before we came here so we asked the guys decide if they can actually discuss someone
512
Pile-CC
any new treatment. GSK assumes no responsibility or liability for any consequence resulting directly or indirectly for any action or inaction you take based on or made in reliance of the content in this article. Until recently, the transfer of professional teamplayers between European clubs placed limits on the operations of a free market in that there were rules restricting the terms placed on such transfers. However, the ruling of the European Court of Justice in December 1995 in the "Bosman case" declared that such arrangements were contrary to the provisions of article 48 of the EEC treaty. The effects of the ruling –a redistribution of property rights from the clubs to the players- induced an increase of average player salaries and longer contract duration. Using data from the National Basketball Association (NBA) the paper discusses a highly similar reallocation of property rights in North America and tests empirically the -so far- inconclusive question, if remuneration and contract-length are complementary or substitutes. Short-film fest to screen online Update: September, 13/2012 - 09:33 | HCM CITY (VNS)— Sixty-six films from young directors worldwide will be screened during the third annual online international short-film festival, YxineFF, beginning on Saturday at website www.yxineff.com. With "Individual" as its main theme, the online festival will offer a broad range of individual voices presented to global audiences until December 15. The president of Marcus Manh Cuong Vu, said the themes of many films this year focus on children, teenagers and school life, revealing similar interest of the younger generations in today's flatter world. The festival received 150 entries from mid-April to mid-July. Only 66 out of 150 films will be screened, and the selections will be divided into two main competitions and two categories. In the international competition, 15 films from 11 countries will depict surprising and interesting cinematic experiences. The local competition is designed for Vietnamese directors, consisting of 10 films, of which half are from Ha Noi, four from HCM City and one from Singapore. Apart from two competitions, the category Panorama will present an overview of Viet Nam's short films over the last three years, with 18 films from around the country. The films are varied in genre from comedy to horror, from animation to documentary. The In Focus category consists of seven programmes with different themes to honour the creativity of directors. Vu said the festival demonstrated the development of three years of work on films that were international and professional, and of high quality. "We hope that the voices of the young global generation will be heard and shared through films presented at the festival this year," he said. With the slogan Sharing - Love - Cinema, YxineFF began in May 2010 with a target audience of young independent filmmakers and cinema lovers. The festival focuses on the interactive features of an online network in an era of advanced technology. In 2010, it attracted more than 1 million views and almost 2 million views last year on the projects' websites. Vietnamese and international audiences can watch the films, all with English subtitles, on the
512
nytimes-articles-and-comments
of a pathology, or even a source of litigation. <a href="https://stream.org/illinois-schools-promoting-transgenders-to-preschoolers" target="_blank">https://stream.org/illinois-schools-promoting-transgenders-to-preschoolers</a>/. Otherwise, there is a strong As an aside, the senseless war on drugs that claimed Taylor's life -- all the warrants. all the heavy handed tactics -- was conceived and perpetuated by Joe Biden and his cohorts in the 80's and 90's. I'm not saying Trump is the answer but people who think all the racism and oppression will go away if Biden is elected are delusional. If Democrats had all the answers there would be racial harmony in LA, NYC, and Chicago. There isn't. Well, the storm provoked by TROOPER, had me running to my 1933 OED to see whether all of the outrage was justified. First of all, as has already been stated in another thread, TROOP and TROUPE have identical roots. In the 1933 OED, TROUPE has a theatrical emphasis, while TROOP is mostly military. There are, however, specific historical citations from the 18th and 19th centuries of theatrical TROOPS. The word TROUPER does not exist in the main body of the dictionary. A TROOPER is defined as "a soldier in a troop of cavalry". There was also an apparently popular expression, "to swear like a trooper". Fast forward to the addendum of the aforementioned dictionary. We have the following entry: TROUPER - also U.S. TROOPER - "a member of a theatrical troupe". A 1929 citation is the first that seems to use the word in the sense of today's puzzle: "You're a traveller, a campaigner, a trouper, my boy." Also appearing in the addendum is: TROOPER - var. TROUPER. And just to further irritate us is the entry TROOPERESS - "a woman trooper". But that is a discussion for another day. All this to say, that getting so worked up about two words with identical origins that are roughly considered variants of each other, strikes me as a proverbial tempest in a tea pot. Carry on! Who cares. It helps bring stability to the region. If it helps bring some semblance of, let's say, not war, then it's a step in the right direction. Right wrong or what have you is irrelevant. Sometimes the best breakthroughs were reached in a haphazard almost accidental fashion. If that is the case here, then still whatever. Let this happen, a whole lot of folks will be able to live their lives without another war, isn't that a good thing? @smf...because we've relegated ourselves to the belief that we vote our way of these quagmires, and that form of "activism" is good enough, we probably ought to expect that the rot stays rotten in between. Yours is just another in over 3 yrs of perpetual lamentation, with zero action. Any country with even a degree of the self respect this country claims it has would have invoked its version of Section 4 of the 25th Amendment two years ago. Is it time to charge Trump with a proceeding that tests his competency to hold office? Remember Nero who was fiddling while Rome burned? He was responsible for causing the fire and he was too
512
StackExchange
I see with the sentence is that complacency isn't something one 'has to be'. It's something one 'becomes' or a state one 'falls into'. complacent adjective Showing smug or uncritical satisfaction with oneself or one's achievements. - ODO If you were talking about pasta the food, perhaps you intended to use the term "content" instead of complacent. content adjective 1.1 Willing to accept something; satisfied. ‘he had to be content with third place’ - ODO Q: Is there a way to programmatically call "reload" in sbt? Normally when sbt starts or "reload" gets invoked, sbt will emit a message "[info] Loading project definition from ..." and compile & load build.sbt if necessary. My question is: is there a way to achieve the same thing or equivalent in a plugin using code? There doesn't seem to be a task called reload in Keys.scala so I wonder how sbt does it. Thanks. UPDATE: What I want to do essentially is I want to have a build clean task that wipes out project/target and reload sbt which forces it to recompile the build config. A: From https://github.com/sbt/sbt/blob/0.13.9/main/src/main/scala/sbt/Main.scala: def doLoadProject(s0: State, action: LoadAction.Value): State = {       val (s1, base) = Project.loadAction(SessionVar.clear(s0), action)       IO.createDirectory(base)       val s = if (s1 has Keys.stateCompilerCache) s1 else registerCompilerCache(s1)       val (eval, structure) = Load.defaultLoad(s, base, s.log, Project.inPluginProject(s), Project.extraBuilds(s))       val session = Load.initialSession(structure, eval, s0)       SessionSettings.checkSession(session, s)       Project.setProject(session, structure, s) } Q: C# ObservableCollection OnCollectionChanged not firing when item changes From the MSDN about OnCollectionChanged: "Occurs when an item is added, removed, changed, moved, or the entire list is refreshed." I'm changing a property attached to an obj that resides in my collection, but OnCollectionChanged isn't fired. I am implementing iNotifyPropertyChanged on the obj class. public class ObservableBatchCollection : ObservableCollection<BatchData> { protected override void OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs e) { if(e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Add) { foreach (BatchData item in e.NewItems) { } } base.OnCollectionChanged(e); } public ObservableBatchCollection(IEnumerable<BatchData> items) : base(items) { } } To me, that reads that when an item in the collection is changed, such as a property of the object, that this event should fire. It's not, however. I want to be able to know when an item in my custom collection changes so I can perform a calculation on it, if needed. Any thoughts? A: ObservableCollection<T> raises events only when the collection itself changes. An item contained in the collection that has its internal state mutated has not altered the structure of the collection, and ObservableCollection<T> will not report it. One option is to subclass ObservableCollection<T> and subscribe to each item's OnPropertyChanged event when it is added. In that handler, you can raise either a custom event, or fall back to the collection's own PropertyChanged event. Note that if you do go this route, you should add a generic constraint so that T : INotifyPropertyChanged. Q: Swift Unit Testing IBAction I have a UIViewController that contains each of UITextField, UIButton and UILabel. I put something in the UITextField, press a button and the string is now capitalized in the UILabel. My question is: how do I set up the IBAction in Swift for
512
amazon
disappointed. Two stars for sellers fast delivery. I love management books that read like a novel. I was engaged in the story as well as the leadership lessons. Great book. I used this tent just once but have an upcoming event and have great confidence in it. The directions could have used more photos but it did go up fairly easy (about 90 minutes with organizing the equipment and reading instructions) with just two people. I was fairly impressed with the overall feel of the poles and tent itself. Felt very durable but should for the price. Looked at $125 tent for same size but new that would be like buying a dollar-store version (1 use). Put up the tent a week ahead of time and it stormed mightily (and I live on a large hill so wind is worse here) and it held up beautifully (though the sides were not on it. Upon inspection of the equipment, I noticed a dent in one of the larger poles and several rope tensioners were missing. I contacted the seller and had new ones replaced very timely. They even threw in a couple extra stakes for my trouble. VERY HAPPY with them and would buy again, though I hope never to have to...hoping this tent lasts through my last child's Grad. party in 5 years. M daughter loved it! I have not had this more than 4 months and the battery all of the sudden just stopped charging I love the way this gadget speeds up the charging of my Kindle Fire. It works in half the time of my old charging device. I would recommend it strongly. This is not a book ir is a pamphlet. I would give it zero stars if that were an option. I love these kneepads! For me, I previously purchased the&nbsp;<a data-hook="product-link-linked" class="a-link-normal" href="/Mizuno-LR6-Volleyball-Kneepad-Black-Medium/dp/B00114T938/ref=cm_cr_arp_d_rvw_txt?ie=UTF8">Mizuno LR6 Volleyball Kneepad, Black, Medium</a>&nbsp;and they were smaller than I needed. When I play volleyball, I prefer to have larger amount of coverage for my knees and my last kneepads covered too small a surface area. I also appreciated that this was one-size fits all and a very flexible fit! Love the color. The quality of red heart is always good. Since the anchor is end down, you can only get a cut out on the bottom of your paper. Too bad it wasn't the other way around. I wanted an anchor punch at the top of my page/paper but it'll be upside down. Loved the show when I was a kid. Still like it now but agree with other reviews, the packaging is not good. Two small boxes with disc packed in a stack. Hard to get one disc out after putting another back in. Second day, I moved the entire collection into double slim DVD boxes. Works much better. I have not watched through the entire series yet, but Season 6 Disc two is supposed to have 4 episodes on it. The last two are supposed to be "Lesson in Evil" and "Harry's Will" but as I was watching, my disc has "Lesson in Evil" again when I choose "Harry's
512
realnews
on gender stereotyping. Even Stevens FC Michael Rosen, illustrated by John Rogan Barn Owl Books. Price £4.99. Age 6-10 Newly confident readers will welcome the reissue of Michael Rosen's comical story about a hotchpotch local team that - more by luck than judgment - ends up playing in the FA Cup final. The ups and downs of everyday life in multiracial Hackney, London, are deftly interwoven into the stuff of football fantasies, with plenty of jokes along the way. Full colour illustrations and a narrative told partly in speech bubbles make this lively book particularly successful with older, reluctant readers. WASHINGTON — Sales of new U.S. homes fell in January for the second straight month, possibly dragged down again by bad weather. The Commerce Department reported Monday that last month’s sales came in at a seasonally adjusted annual rate of 593,000, the lowest level since August and down 7.8 percent from a revised 643,000 in December. Economists had expected new home sales to bounce back after tumbling amid harsh winter weather in December. But they may have underestimated how bad January’s weather turned out to be. “There are good reasons to think that weather may have played a factor in the January result, as there were rare snowstorms in the South, fires and mudslides in California, and the normal occasional disruptions in the North,” Stephen Stanley, chief economist at Amherst Pierpont Securities, wrote in a research note. Sales skidded 33.3 percent in the Northeast in January from December and 14.2 percent in the South. But they rose 15.4 percent in the Midwest and 1 percent in the West. The median price of a new home dropped to $323,000, down 4.1 percent from $336,700 in December. Economists have complained about a shortage of houses on the market. But the inventory of new homes for sale rose to 301,000 in January, most since March 2009. The housing market is beginning to contend with a steady increase in mortgage rates. Rates on long-term home loans have risen seven straight weeks. The rate on a benchmark 30-year, fixed-rate mortgage last week hit 4.4 percent, the highest level since April 2014. Still, Ian Shepherdson, chief economist at Pantheon Macroeconomics, said: “Any weakening on the back of the rise in mortgage rates likely won’t be visible until late spring at the earliest.” LONDON (AP) — The Fat Duck is heading Down Under. Innovative British chef Heston Blumenthal has announced plans to pack up his Michelin-starred restaurant and fly it to Australia for a six-month stay. The restaurant in the village of Bray, west of London, will close temporarily in January, and reopen in Melbourne's Crown casino the following month. "This is not a pop-up restaurant," Blumenthal told reporters Monday in Australia. "We are going to pick up The Fat Duck, the whole team, and fly them over here" along with some furniture and fittings. FILE - This Tuesday, April, 3, 2012 file photo shows British celebrity chef Heston Blumenthal gesturing as he talks to the Associated Press in a mock up plane about his role in developing food
512
StackExchange
normally created by the dev team as they are more in sync with the code that it is going to test. The use of dev is a test team is mainly to facilitate complex testing so in a way they act as a conduit between testers and devs. Q: Restrict MapView area on OSMdroid I'm trying to restrict the map view for OSM given the 4 points to act as corers. In reference to this question, I am also trying to use the BoundedMapView.java (got from this website) to help me with this. This is my activity codes: public class POfflineMapView extends Activity implements LocationListener, MapViewConstants{ private BoundedMapView myOpenMapView; //... removed unreleated variables @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mResourceProxy = new DefaultResourceProxyImpl(getApplicationContext()); setContentView(R.layout.offline_map_activity); myOpenMapView = (BoundedMapView) findViewById(R.id.openmapview); myOpenMapView.getTileProvider().clearTileCache(); //removed unlreleated codes BoundingBoxE6 bbox = new BoundingBoxE6(north,east,south,west); myOpenMapView.setScrollableAreaLimit(bbox); } } This is my xml: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <entity.BoundedMapView android:id="@+id/openmapview" android:layout_width="fill_parent" android:layout_height="fill_parent"/> </LinearLayout> My LogCat shows this error: 12-28 17:24:11.830: E/AndroidRuntime(14459): Caused by: java.lang.NoSuchMethodException: <init> [class android.content.Context, interface android.util.AttributeSet] I'm unsure why I am still getting this error; the BoundedMapView is extended from the MapView class, why is it still having an error for the Constructor? Kindly enlighten if I do not seem to be interpreting this error correctly, thanks! A: It's because when you create a BoundedMapView in xml code, it calls this constructor, which is missing: public BoundedMapView(final Context context, final AttributeSet attrs) { super(context, 256, new DefaultResourceProxyImpl(context), null, null, attrs); } Q: nginx is wrongly serving all subdomains My nginx server is serving content to all subdomains, even though I've removed the default_server from the main server block. So there is absolutely no reference whatsoever to "default_server" or (for example) to subdomain.domain.com in any of the nginx config files and yet, if I go to that URL, it gives me the first site which is listening on port 80 (which specifies a different subdomain in the nginx config). It's confusing the hell out of me - I want it to stop giving me anything on that domain so that I can then point that new subdomain to a new location. Any ideas?! A: If you have no default_server defined, nginx will use the first server it finds as the default server, so this behavior is standard and expected. If you don't want that, define a default-server that is to be used and which might just return some error if you want this. Q: JPA/EclipseLink - Retrieve Columns Names I'm trying to update my knowledge in Java, since I last used in when it was in 1.4.X version... I'm trying to use 1.6.0, in particular the Java Persistence API (2.0). I managed to create an entity class. It's working, since I'm able to store and retrieve data. But I was fooling around and when I decided to fill a JList with the column names of a table and didn't got success... It's a simple class and looks like: @Entity @Table(name = "T_CURRENCY", schema = "APP") public class Currency implements Serializable { @Transient private PropertyChangeSupport changeSupport =
512
Gutenberg (PG-19)
meet you at every turn. Here they walked and worked centuries ago; here to the imagination they still walk, and they scarcely seem gone. Here is the stone upon which Dante sat and meditated,—was it an hour ago or six centuries? Here Brunelleschi watched the growing of his mighty dome, and here Michel Angelo stood and gazed at it while dreaming of that other mighty dome of St. Peter’s which he was afterwards to raise, and said, “Like it I will not, and better I cannot.” As one walks through the piazza of Sta Maria Novella, and looks up at the façade that Michel Angelo called his “sposa,” it is not difficult again to people it with the glad procession that bore Cimabue’s famous picture, with shouts and pomp and rejoicing, to its altar within the church. In the Piazza della Signoria one may in imagination easily gather a crowd of famous men to listen to the piercing tones and powerful eloquence of Savonarola. Here gazing up, one may see towering against the sky, and falling as it were against the trooping clouds, the massive fortress-like structure of the Palazzo Publico, with its tall machicolated tower, whence the bell so often called the turbulent populace together; or dropping one’s eyes, behold under the lofty arches of the Loggia of Orcagna the marble representations of the ancient and modern world assembled together,—peacefully: the antique Ajax, the Renaissance Perseus of Cellini, the Rape of the Sabines, by John of Bologna, and the late group of Polyxines, by Fedi, holding solemn and silent conclave. In the Piazza del Duomo at the side of Brunelleschi’s noble dome, the exquisite campanile of Giotto, slender, graceful, and joyous, stands like a bride and whispers ever the name of its master and designer. And turning round, one may see the Baptistery celebrated by Dante, and those massive bronze doors storied by Ghiberti, which Michel Angelo said were worthy to be the doors of Paradise. History and romance meets us everywhere. The old families still give their names to the streets, and palaces, and _loggie_. Every now and then a marble slab upon some house records the birth or death within of some famous citizen, artist, writer, or patriot, or perpetuates the memory of some great event. There is scarcely a street or a square which has not something memorable to say and to recall, and one walks through the streets guided by memory, looking behind more than before, and seeing with the eyes of the imagination. Here is the Bargello, by turns the court of the Podestà and the prison of Florence, whence so many edicts were issued, and where the groans of so many prisoners were echoed. Here is the Church of the Carmine, where Masaccio and Lippi painted those frescoes which are still living on its walls, though the hands that painted and the brains that dreamed them into life are gone forever. Here are the _loggie_ which were granted only to the fifteen highest citizens, from which fair ladies, who are now but dust, looked and
512
gmane
David Duke is 'deplorable' because he 'is not in the name-calling business' https://www.washingtonpost.com/news/the-fix/wp/2016/09/12/mike-pence-declines-to-say-if-david-duke-is-deplorable-because-pence-is-not-in-the-name-calling-business/ Donald Trump's vice-presidential running mate, Indiana Gov. Mike Pence, neatly illustrated the trickiness of the candidate's response to Hillary Clinton's comments about a "basket of deplorables" who are supporting Donald Trump. The issue was broached in an interview with CNN's Wolf Blitzer on Monday afternoon ... Blitzer had one more question: "But you know that Donald Trump himself over the past year and a half has expressed contempt for all sorts of people out there, whether Mexican Americans, Muslims," he said. Blitzer noted that Trump had expressed "regret" for some unspecified things he'd said, asking Pence to clarify which things Trump regretted. "You'd have to ask him about that," Pence replied. "Donald Trump is a man with broad shoulders, but he has a big heart. He cares about people." - - - --Lauren-- I have recently committed a number of changes to the startup scripts. I seem to have involuntarily caused some commotion among the devs by doing so. I thought it might be best if I wrote down exactly what I changed and why. Let's start at the beginning. GnuCash is a binary program (gnucash-bin), developed in C. It embeds a guile interpreter for easy scriptable extensions like reports. When I started developing for GnuCash I was confused as to why this binary program couldn't start directly, but instead relied on a wrapper script to start it. This wrapper script alters the environment before gnucash-bin itself is started. It took me a while to understand this was because of the embedded guile interpreter: the guile interpreter reads some environment variables to find the gnucash-specific guile add-ons. So in other words the wrapper script "configures" the embedded guile interpreter. For me this sounded weird. A binary program is not normally configured with a shell script. I remember that older versions of GnuCash started as guile script, which eventually called a C-main function. This was before I started developing on GnuCash. I imagine this script/main program combination just naturally continued. This in itself didn't bother me too much and I let it be for a long time. Since november last year, I have started to commit more seriously to gnucash development. I have been monitoring bugs, trying to fix what I could, debugging on the go,... And there I got frustrated. It seems that contrary to most other devs, I'm prefer GUI to do my development (Eclipse if you wish to know). The fact that GnuCash has to be started via a shell script effectively prevents me from using the Eclipse integrated debugging environment in a convenient way. I have worked around it for a while with gnucash-ddd or attaching to a running process, but both turned out suboptimal in many cases. So it finally got me thinking about that shell script and why it is there in the first place. It is there to help the embedded guile interpreter find the gnucash provided guile add-ons. Surely this doesn't really need a shell script ? Most programs I know use
512
reddit
ago i asked her to extend her pool discharge line to the far back of the property - an additional 40 feet. It currently ends on my side of the fence. I'm pretty sure its the cause of my 2 dead arbor vitaes. Can i just reposition the line to her side and simply add some corrugated hose to make sure i exits at the back of her property? I would be willing to wait for her to do it, but i don't think it will happen. I brought it up again recently when i saw her and she said she was waiting until the tree was gone. The tree fell in January. I had been fed up for a long time at this expensive service I pretty much never used. Never anything good on, deal with ads, paying for channels I don't want. But when they started stuffing ads into my guide I called and cancelled my service. Best decision I've ever made. Highly recommend a Roku or similar streaming unit. Edit: not to mention cable companies are the fucking WORST. Any excuse I can get to pay them less money, I'll take it. I checked my credit card earlier today and there was no charge. I placed my order over 24 hours ago, and still retain the ability to cancel, according to the orders page. As far as I've ever experienced, Amazon only charges when the game ships, and you can cancel up until that point. I don't see them changing their policy for one game and risk pissing off a lot of people. no problem brother, and yes you should be getting rather quick kills compared to using a c'bow. I also just replaced monk robe top and mithril gloves with rangers tunic and black vambraces, for +26 range attack gain. we'll see how the next 1,000 kills go like this. http://imgur.com/a/ec1WS Umbra will not be craftable, nor playable. They are too redundant compared to the prime versions, and (i guess) are supposed to be considered as character rather than tools. They are made special so that they matter more than any other warframe we've seen until now, much like the Stalker So you think I should leave the LinkedIn on there? Should I put it at the top? Can I use a / after my email and just put it there? I am looking for a job in operations, development, management, or coordination. Hopefully this resume change will give me the boost I need. yeah, i've seen that build before and read a lot about getting right angled sata connectors, but the cables i've fit pretty well between the drives and the psu. i already have the PSU i've used, but with 700W in my workstation, was able to use some of the cables from the bigger PSU in my build. every batch of 4 drives is connected through a 4x sata power connector to the psu, its clean and simple :) I believe IT would take slightly less money to be here. I think he wants to win here, get paid here,
512
nytimes-articles-and-comments
since 1996. Trump, a lifelong racist and con man, simply stepped into a miasma of dog whistles, religious intolerance, falsehoods and corruption all in the service of conservative donors. By 2015, the GOP as was well suited to his 'brand' and it was only then that Mr. Stephens began to realize that conservatives had a problem, as John Dean already had foreseen almost a decade earlier. Children may not be dying in great numbers, but they are certainly capable of carrying and spreading the virus, which is why the schools were closed in the first place. Trump is doing all in his power to cause a resurgence in the fall, just when kids would be returning to school. He's killing people. He needs to be removed from office, now. I hate text books. I'm not going to sugarcoat it. I believe the use of text books is a mediocre way of teaching when you have other sources. I always receive a math text book on the first day of the semester. I believe that math text books can be helpful but only if used and reviewed in the classroom as a group. My current English teacher has a great way of teaching. We read an actual book. Not just any book; a novel. Then we talk about it and discuss hidden meanings in class. That is just my opinion. Here is the real problem. In the article "Two States. Eight Textbooks. Two American Stories." the author writes about the differences in stories between California and Texas textbooks. For example: On an annotated bill of rights document in the California history textbook it shows how the second amendment allows for some gun regulations. In the same place in the Texas textbook… there is only a blank white space. This is a huge problem for students in Texas. If students in California should be taught about gun regulations then students in Texas should be taught as well. Students should not be fed their state’s political opinion. They should receive both sides of the story in order to form their own. Where are the fires? Pretty much anywhere else in the world, including the US, with a deadly epidemic and a huge population in quarantine, I would expect to see fires. So far, the degree of unrest in Wuhan seems surprising low. This can't last forever. They need help. They need basic necessities, food and medicine. They need to know that they are not alone. I really hope that China can keep them supplied. I really hope that the world helps. I suspect that some are hoping that they descend into anarchy, and that this might tip the scales against the communist regime that the West hates so much. But, if Wuhan breaks, containment will fail and the consequences could well be catastrophic for everyone on the planet. Let's keep this situation from really catching fire. We should open schools after the White House and Texas Capitol open up again. If its not safe for the Trump nor Abbott families, its not safe for our kids. Plus, we're
512
amazon
SMOKING FOREVER. Great music that is relaxing for meditation times. I would recommend getting this for anyone ! Fits perfectly and great quality! Have been using for the last 6 months and has stood up well. Flexible and easy to roll only con is the weight Nice that it breaks down for easy storage, but this also makes it too loose and flimsy. The slice spacers flex too much to be much use. There are adventures throughout the world. If you can write well, you can share those adventures with others. Michael Crichton can write well (with the clear exception of State of Fear), and he shares his adventures, his "travels." These travels are his travels through medical school, in search of adventure in out-of-the-way places, and his search for "the power of the mind" [my words, not his]. Two sections bother me a lot. One is his search for that "power of the mind"... for example, bending spoons with the power of thought. Although he keeps claiming that his science background keeps him on the straight and narrow, after bending his own spoon he says "great! No need to search for any explanation." The travel analogy would be, what? You suddenly appear in China, and the path to get there is not important. Strike one. As Crichton hangs around with "friends" interested in pursuing sex with children in Thailand, he states he is not interested, but "boys will be boys" [again, my words]. Strike two. And I'm sorry... State of Fear? Strike three. Michael Crichton, you are out! Love it. This DVD is a very good mix of music from a very good album. The surround sound is very complimentary to the original music, only more so. You will experience much more fullness and clarity due to the "separation" factor the 5.1 format allows you to experience. Bring on some more albums! This was the best panda we could find in a store or online. I purchased this stuff panda for my daughter when she was born. It was a perfect stuff animal, very soft and cuddly. All the other kids love it too. It shipped really fast, three days to Alaska by regular mail. I would recommend this product to anyone. Fast forward. It's 2015 and my daughter is nine now and she still loves it. It looks really good too, very little wearing. Reading If I Run is like watching an episode of Person of Interest - it's fast-paced, good-vs-evil, and things aren't always what they seem. Blackstock writes this newest book with her signature flair, but unlike her other work, Casey's problem isn't resolved by the time the final page is turned. While her situation is ever fluid and always changing, it's never what it seems. Her case makes the story a real page-turner. Casey's a great lead character. I love how she's independent but positive, even when life's not sending her cherries. She does the right thing even when it puts herself at great risk or when there's a path that would be much easier for her personally. Dylan is a realistic leading man. He's been
512
ao3
fire broke out but then feeling blind again when he got kidnapped by High Tide. Or whenever Zayn was mad at him and he’d stop talking to Liam for a while, putting a massive distance between them until he wasn’t mad anymore. Then Liam was blocked out completely. Like the tether revealed itself inside him randomly. That’s why people always asked Liam where Zayn was if they were ever looking for him, not just cause they were usually together. Liam just _knew_. If Liam didn’t know where Zayn was, something was usually _wrong_. _“Maybe you’ve got a much deeper connection you didn’t realise.”_ Lux says in a mockingly dreamy way. _“Like we’re soulmates?”_ Liam snorts, wondering what the tether actually is as he feels it, around them. That word still makes him laugh. It doesn't seem like an accurate way to describe it. Ben and Anthony might be mates. Cher and Joey, mates. Harry and Niall are _mates_. Harry might be a bit more than a mate to Liam but for the sake of this specific word, Harry is a genuine mate. He feels for all his friends but there’s different levels to this stuff he feels. There’s no one in Liam’s life that has ever compared to what Zayn is too him. Their relationship goes far beyond _friendship._ Saying they’re “mates” or “friends”, soulmates, boyfriends, no matter how you say it, doesn’t sound right to Liam. Zayn isn’t just a mate to him. He can’t even really say Lux is that much either. There’s no _labels_ that ever feel fitting for this shit to Liam. It’s indescribable. Lux shrugs. _“I dunno what you wanna call it, it's not mine to say as I’m. Not. Zayn.”_ Lux pointedly adds in slow emphasis that he’s not _him_ , like he’s trying to beat that into Liam’s head. Lux probably knows Liam had seen a small glimpse of him and ever since, he’s constantly reminding Liam that he’s not Zayn, not so subtly, which makes Liam rolls his eyes. He KNOWS he’s not Zayn. Liam understands he can be a little dull sometimes but he’s not an idiot and he hates when people treat him like he’s this helpless dumbass. He’s got enough of that from his mental health alone. Just cause they look alike doesn’t mean they’re the same person. Well, it _does_ in this case but still. Liam is aware of that they are two separate beings now. _“I’m not a total dunce you know…”_ Liam mumbles as he picks at the furry wig rug. _“I know that.”_ Lux snorts. _“… but I don’t think you do. You think you’re so dull. Cause you can’t see yourself.”_ Liam looks up at him, hanging out over at the window now, letting his leg dangle while he looks out at the storm forlornly. _“You have no idea what you are.”_ He murmurs to himself before he snorts again, shaking his head. “ _Dumb boy_.” Sherlock's Letters “Sherlock! Where the hell did you put my book?!” John fumbles around the flat, scouring through the mess
512
ao3
in response. He said he knew exactly how that went. He surprised you when he said you should probably see him since you're still around. A couple hours later the staff had put a movie on. You weren't watching it though. You were sitting at one of the tables thinking about Lucio. Should you call him? Why bother though? You had already decided that you would make another attempt once you were discharged. You were startled from your thoughts as someone sat next to you. You shrugged when Reinhardt asked if you were alright. He asked you if you wanted to talk about it. You figured why not, he was a friendly guy. You asked him if he would snitch on you. He promised he would not, no matter what it was. You told him about your suicide attempt, and how you couldn't bring yourself to face Lucio. You told him that you were planning to try again once you got out. He listened with a solem expression. A heavy sigh escaped him as he placed his clasped hands on the table in front of him. He spoke in a low voice so no one would pay attention to the two of you. He said he really hopes that you manage to get some help from this place before you leave. He says you have a bright future ahead of you, you just have to work for it. He says he knows it's hard. It's so easy to give up. It's so easy to let the dark thoughts controll you. He says a mental illness is one of the hardest things to fight since it's not something you can physically touch. Since it isn't something that someone can fight for you. You were given another chance at life. He almost begs you when he says: Please take this oppurtunity and live a great and fullfilling life. Cherish it. Even if you feel like it's not worth keeping. If you feel like your life is meaningless, give it meaning. You don't need to have a predetermind purpose in order to "matter" in this world. If you feel like you need a purpose in order to live, create one of your own. It can be whatever you want it to be. And it doesn't even have to be just one thing. It can be many things. Love yourself. You are beautiful. You are a miracle. You are an extraordinary, complex, and unique human being. No one in this world has the same life and expirences as you. You are a living piece of art that is constantly changing. Isn't that amazing? Keep pushing forward. You'll fall in life, and that's ok. Just make sure you always get back up. You are strong. If you ever feel weak, there is nothing wrong with asking for help. Don't ever tell yourself you don't deserve it. \--- You cried that night. He followed him to the little kitchen that was next to his room and where most of the food was. Since they had recently bought some
512
Gutenberg (PG-19)
sōlī suscēpērunt, prōmittentēs senātuī et populō per sē omne certāmen implendum. Itaque profectī, omnēs nōbilēs et quī singulī māgnōrum exercituum ducēs esse dēbērent, in proeliō concidērunt. Ūnus omnīnō superfuit ex tantā familiā, quī propter aetātem puerīlem dūcī nōn potuerat ad 20 pūgnam. Post haec cēnsus in urbe habitus est et inventa sunt cīvium capita CXVII mīlia CCCXIX. 14 _Dictatorship of Produced by Chris Curnow, Turgut Dincer and the Online Distributed Proofreading Team at http://www.pgdp.net (This file was produced from images generously made available by The Internet Archive) CAMBRIDGE BIOLOGICAL SERIES. GENERAL EDITOR:--ARTHUR E. SHIPLEY, M.A., F.R.S. FELLOW AND TUTOR OF CHRIST’s COLLEGE, CAMBRIDGE. GRASSES. CAMBRIDGE UNIVERSITY PRESS WAREHOUSE, C. F. CLAY, MANAGER. London: FETTER LANE, E.C. Edinburgh: 100, PRINCES STREET. [Illustration] ALSO London: H. K. LEWIS, 136, GOWER STREET, W.C. Leipzig: F. A. BROCKHAUS. New York: G. P. PUTNAM’S SONS. Bombay and Calcutta: MACMILLAN & CO. LTD. [_All Rights reserved._] GRASSES A HANDBOOK FOR USE IN THE FIELD AND LABORATORY. BY H. MARSHALL WARD, SC.D., F.R.S. LATE PROFESSOR OF BOTANY IN THE UNIVERSITY OF CAMBRIDGE. CAMBRIDGE: AT THE UNIVERSITY PRESS. 1908 _First Edition 1901 Reprinted 1908_ PREFACE. The following pages have been written in the hope that they may be used in the field and in the laboratory with specimens of our ordinary grasses in the hand. Most of the exercises involved demand exact study by means of a good hand-lens, a mode of investigation far too much neglected in modern teaching. The book is not intended to be a complete manual of grasses, but to be an account of our common native species, so arranged that the student may learn how to closely observe and deal with the distinctive characters of these remarkable plants when such problems as the botanical analysis of a meadow or pasture, of hay, of weeds, or of “seed” grasses are presented, as well as when investigating questions of more abstract scientific nature. I have not hesitated, however, to introduce general statements on the biology and physiological peculiarities of grasses where such may serve the purpose of interesting the reader in the wider botanical bearings of the subject, though several reasons may be urged against extending this part of the theme in a book intended to be portable, and of direct practical use to students in the field. I have pleasure in expressing my thanks to Mr R. H. Biffen for carefully testing the classification of “seeds” on pp. 135-174, and to him and to Mr Shipley for kindly looking over the proofs; also to Mr Lewton-Brain, who has tested the classification of leaf-sections put forward on pp. 72-82, and prepared the drawings for Figs. 21-28. That errors are entirely absent from such a work as this is perhaps too much to expect: I hope they are few, and that readers will oblige me with any corrections they may find necessary or advantageous for the better working of the tables. The list of the chief authorities referred to, which students who desire to proceed further with the study of grasses should consult, is given at the end.
512
ao3
the butts, but it’s not really that? They’re both hot, sure. I know them though. I talk to them. They’re my co-workers and it just feels weird to ship them, or whatever.” Hana hums. “That makes a surprising amount of sense.” More fingers brush through her hair slowly. “If I pretend I don’t know the real reason is that your OTP is Widowtracer.” “Hana!” Sombra growls, feeling her cheeks grow hot. Turning an alarming shade of red while trying to keep her reputation, even if it’s just to her girlfriend, intact, is not helping her cause. “That’s not true.” Hana just laughs and has the audacity to actually win the ensuing pillow fight. Sunset's Roses, Twin Reflections **Author's Note:** > Just made some minor edits. It's not my finest work (written at 15 ), but it's worth it! Comments/kudos appreciated! **Disclaimer: You know them already~** . Sunset's Roses (Twin Reflections) Sixteen year-old Kimiko Tohomiko looked at her reflection in the Temple's wishing pool. She moved her head to see the sunset,reflecting its heavenly rays off the lake's surface, like a seashell on a beach in the sky on a warm moonless night, being illuminated by a candle's romancing flame. Kim pulled out a rose and whispered: _"Several times I cry for help:_ _why does no one hear?_ _A heartless soul falling to the abyss_ _my lips enchanted in a soulful kiss._ _Th_ _is is a wish from my lips: let my soulmate's love become my sixteenth kiss"._ She cast the rose into the pool,lightly,just as fifteen year-old Raimundo Pedrosa came to cast a rose also. When he saw her, he thought, _'Wow Kim is quite gourgeous with her hair down!_ ' Once he saw her saddend face, he thought again, ' _She looks just like her mother .'_ and tripped over a root in the ground and fell... right into Kim's arms. He muttered a "sorry" and stood up and Kimiko asked if he was all right and he said he was fine. Kim looked down at her kimono and saw that a bit of dirt from the garden at the pool's edge had gotten on it. Hearing a sudden sound, she quickly gazed upward to see Raimundo holding a boquet of silver roses. "Rai, they're beautiful! Wh- where did you get them?", she stammered out of surprise. "Get them? I created them out of my element . Sure, they're beautiful, but not as beautiful as you, my Xiaolin  mistress of fire," he said in that voice that made Kim melt. "...Oh, my kami-sama...", she gasped as Raimundo pulled out a velvet box and got on one knee and smoothly said, "Kimi, you are the most beautiful-no, gorgeous girl I've ever met in my life. When I first met you here, you seemed just like a spoiled rich girl with fire at her call. But when I looked underneath all that , I saw you were a smart girl genius being ridiculed, humilated, and even degraded by her classmates! Saddened, but determined she began to sing, becoming a small girl from a
512
Gutenberg (PG-19)
wish to thank very heartily all those of my ornithological friends, who have kindly helped me with the loan of specimens or otherwise, and especially Dr. H. O. Forbes, Dr. Scharff, Professor Dr. K. Lampert, Dr. O. Finsch, Professor Dr. A. Koenig, Dr. Kerbert, Mr. Fleming, Dr. von Lorenz, and others. WALTER ROTHSCHILD. * * * * * {vii} INTRODUCTION. The study of the forms of life no longer existing on the earth, from the scanty remains preserved to us, has provoked a very great interest almost from the commencement of historical times. The very small portion of this vast field I am treating of in the following pages has a special attraction, as it deals to a great extent with forms familiar in a living state to our immediate forefathers and even to some of ourselves. Although I have here arranged the species systematically, they fall into two distinct categories, namely those known externally as well as internally, and those of which we know bones and egg-shells only. Under the former category might be included those merely known from descriptions or figures in ancient books, as well as those of which specimens exist. In the present work several plates have been reconstructed from such descriptions in order to give some idea of their probable appearance. There is considerable difference of opinion as to the approximate date of the disappearance of many of the species known from bones dug from deposits which have been variously determined as pleistocene and post-pleistocene. It seems to me that this problem can never be entirely solved, but the significant fact remains, that while many bones of these species in one locality have been collected in the kitchen-middens of the former inhabitants, in other localities the same bones occur in what seem to be much older formations. In view of this and kindred facts, I have mentioned many species which some ornithologists will probably consider outside the range of the present treatise, viz., birds which have become extinct in the last seven- or eight-hundred years. Taking my first category, viz., those species whose exterior is more or less known, our knowledge is very variable in scope; about some we have a very full and even redundant literature, such as the Great Auk, the Labrador Duck, and Notornis, while of others, such as most of the extinct Parrots from the West Indies, the "Giant" of Mauritius, the "Blue Bird" of Bourbon, and so forth, we have the very scantiest knowledge. Even in the times of Leguat and Labat there must have been many species, now extinct, of which no mention has ever been made, for {viii} these old writers only mentioned such species which impressed themselves on their memories either from their size, peculiar shape, beauty of plumage, or excellence and usefulness for food--in fact the culinary property of the various birds seems to have been their principal interest. One of the most interesting phenomena connected with recently extinct birds is the resemblance of the fauna of the Mascarene Islands and that of the Chatham Islands in the
512
YouTubeCommons
like bullying him so I just going to I'm just going to like play funny cards you had funny cards by that point I played them to the last you guys all right we ready then they were in his hand and he had no deck round one earings Joe and and Thomas here Thomas right there oh yep Eric and Michael yeah unless there another Michael only don't care I'm not in the tournament I have to go I just that has a whole buch of crap sitting there I offer I I say [Music] elsewhere how you doing the tourament round robin or what we will not meet again or I kill yous I don't think I'm gonna I'm going to try and to do that that that is going to be my goal really oh my God and they've been selling for that bro what the [&nbsp;__&nbsp;] is that yeah [&nbsp;__&nbsp;] that expensive as [&nbsp;__&nbsp;] that's op5 we're op6 now sh that's a p that's a down payment on [&nbsp;__&nbsp;] house yeah that's [&nbsp;__&nbsp;] insane you mean a 5x five quad land house highly well no no it's a down payment on a doll house oh free win even crazier people spend money on it yeah I mean bro but you know what's crazier it's called proxies if I got that [&nbsp;__&nbsp;] I'm selling that [&nbsp;__&nbsp;] off the rip that is one of those things where you want to play It's called I I mean I know but you guys definitely have like ,400 um I'll Tak yeah the first top my head no but I would suspect like 15 20 you got dice what's how long per round per round like 40 y that's that's yeah generally what it's about for it's six right it's interesting it effectively makes in the red one drop right like like the same thing wait this is my that's give me a shield and [Music] you can leave it on top or put on the bottom every time I look at you right now I think about this guy gas oh yeah bro sure I'll e this Consortium and uh I'll go in here and take two damage don't be greedy Joe let me get the I'll take down base I'll take all had four damage oh really and then [Music] yeah let me see you ready yeah that's it right 34 and half I will I take initiative put on my dark and I SC let's just take will be seven take that yeah I'm cool my bad I should I should be careful my words I'm like I'm cool with [Laughter] that bro these look so the hyper space I swear I'll put money for that a whole bro I'll put money for that how many you I want like 15 that's [Music] amazing that's so cool and then you get more iount the was depends you're yeah I'll take initiative I'll start with the Viper please okay and then I'll pass I SC please please I SC uh I
512
ao3
different choices of melody until he felt the melancholy tone he had built was organic enough, true to the words he had found for it. “I had the tune as soon as I had the words.” He plays for Tom, singing his own words, which he had never quite become accustomed to, having had the protection of Harry's voice speaking for him for so long. Tom listens as he plays, a contemplative look on his face. John finishes the song, and it’s a while before Tom speaks at all. “Who’d you write that about?” he asks, head resting in his hand. John had been expecting the question, and yet still found himself unprepared when it had been asked. He hadn’t come up with any sort of excuse or explanation as an answer to that question, and so he had decided that less was more in this case, and so he shrugged. “No one. It’s just a song.” he lies. And it’s unsatisfying, deeply. John can see it on Tom’s face, a small attempt at obscuring the expression as he sits back in his chair, and then rises, going over to his drum kit. Tom signals for John to start the song over, and so he does, playing it all over, and singing in that deep and almost monotone voice. John certainly was no singer, but he was almost glad for it, he knew his voice wouldn’t betray the true motivation behind the song. He had sat down to pen it only hours ago, but this tune had been in his head much longer, its origins far from him now, but still so close to him that if he closed his eyes as he sang it was almost as if he could feel the heat of the Arizonian sun beating down on the back of his neck, making the ground miles ahead of him raise and shake in a mirage. He could smell the chlorine of the hotel pool wafting up to their balcony, mingling with the smell of cigarettes and the gritty coolness of the desert at night. If he really tried, John could remember how the starchy sheets on the king-sized mattress felt as he grabbed a fistful for each hand, and the taste of alcohol from another man’s mouth. All things that were months in the past, untouchable and so horribly wonderful that he could not help but dwell on them. If these memories were so palpable despite their being untouchable to him, not yet gone from the forefront of his mind, it was not for a lack of trying. He wasn’t naive, and he was old enough to understand the reason it was wiser to leave such lovely things in the past. After they had both conferred that it was nothing, that it had meant nothing, John suspected that Harry had done his part in forgetting the whole thing. There was a small part of him that held out hope that perhaps this was not the case, though, that the man that had held John’s imagination and affections captive
512
gmane
the sender of the message? 2. Does anyone know how to emulate mms sending within the emulator as it is not listed as a limitation within the docs but ive tried it with no success and displaying protocol errors within the DDMS? many many thanks for any response or help. Andy Hi all, suppose I have several global functions with the same name, each in a different file. A typical example may be main() - is it possible to create links to main() inside a specific file? I know that in case of modules I can easily distinguish by saying "module_a::main()", but I would need something like file.f::main(). Thanks for any comments. Best regards, Petr Rashad, Guillaume, The use case to reproduce is when someone starts writing his own tiff files into a S1 product dir ... Which works fine appart from the cryptic warning message. I changed the log level to DEBUG, with an if(traceDebug()) condition. This error message ("!xmlFileName.exists() || !this->readProduct(xmlFileName) fails") is useless for users anyway. https://git.orfeo-toolbox.org/otb.git/blobdiff/de93dc9e14d8f2468a2538e1e03ecb030e07ea55..125e89ecfea92d6e83e7e2f4da0d3943c2689194:/Modules/ThirdParty/OssimPlugins/src/ossim/ossimSentinel1Model.cpp Julien Hello all, I have been succesfuly able to run the xmlform on cocoon 2.1. It is great. I want to know how to make use of the bean's get methods to access its values form a custom generator that extends ServletGenerator. I want to configure the sitemap such that both are in the same pipeline. like the user access the xmlform , the value from the bean are used by the generator (generating XML) and displayed (using xslt transformation) in the same pipeline as an output. I am not sure what I have to do for that. Please help. -Apurva Zaveri. O'Reilly will be reprinting _The Ruby Programming Language_ next week, and have given me SVN write access--this week only--to fix errors in the book. If you've got a copy of the book and have found typos, errors or omissions, please let me know, so I can fix them for future readers. This is just a reprint not a new edition, so I can't add large amounts of new material, but I do have some flexibility to make relatively small insertions. So I'll be able to make changes to track the continued evolution of Ruby 1.9 I will be able, for example, to update the book to indicate that Rational and Complex have been moved to the core library. I'll be reading the ChangeLog file carefully, but if there are other recent changes that you think I ought to make a note of in this reprint, please bring them to my attention! Thanks! David Flanagan Hi, What do you mean by "instead"? Really that texts do not follow the streets at all, or that they do follow the line, but just a few labels are shown on a map? Label disappearing must be due to collision handling mechanism. See what happens if you add FORCE TRUE to label definitions, that should draw always all the labels and you can see if the labels are following the lines or not. If they do then you need just to play with label MINDISTANCE and
512
Gutenberg (PG-19)
errors and punctuation errors have been corrected after careful comparison with other occurrences within the text and consultation of external sources. Many passages have deliberate misspelling for humorous effect. More detail can be found at the end of the book. [Illustration: Yours faithfully Theodore E. Hook] THE CHOICE HUMOROUS WORKS Ludicrous Adventures, Bons Mots, Puns, and Hoaxes OF THEODORE HOOK [Illustration: THEODORE HOOK'S HOUSE, NEAR PUTNEY.] A NEW EDITION WITH _LIFE OF THE AUTHOR, PORTRAITS BY MACLISE AND D'ORSAY, CARICATURES, AND FACSIMILES_ London CHATTO AND WINDUS, PICCADILLY 1883 CONTENTS. PAGE MEMOIR OF THEODORE HOOK 3 THE RAMSBOTTOM PAPERS:-- I. Mrs. Ramsbottom's Party 41 II. Miss Lavinia Ramsbottom 43 III. Miss Lavinia's Letter from Paris, forwarding her Mother's Journal in England and France 44 IV. Higginbottom and Ramsbottom 52 V. Miss Lavinia Ramsbottom forwards the Continuation of her Mother's Diary 53 VI. Adventures at Paris 60 VII. Further Adventures at Paris 62 VIII. Mrs. Ramsbottom back in London 66 IX. Mrs. Ramsbottom at Rome 69 X. Mrs. Ramsbottom objects to be _Dramatised_ 72 XI. Mrs. Ramsbottom writes from Dieppe 73 XII. Hastings 75 XIII. Mrs. Ramsbottom on the House of Commons 78 XIV. Mrs. Ramsbottom on the Canning Administration 81 XV. Mrs. Ramsbottom on Smoking 84 XVI. Mrs. Ramsbottom's Conundrums 85 XVII. A Letter from Cheltenham 87 XVIII. Hastings again 90 XIX. News from Hastings 94 XX. Mrs. Ramsbottom on the relative merits of Margate and Brighton 96 XXI. Mrs. Ramsbottom contemplates the Collection of her Letters into a volume 102 XXII. Mrs. Ramsbottom on Popery 105 XXIII. Mrs. Ramsbottom at the Royal Academy 108 XXIV. Mrs. Ramsbottom at the "Chiswick Fête" 111 XXV. A Letter from Walmer 117 XXVI. A Peck of Troubles 118 XXVII. Mrs. Ramsbottom on Public Events 120 XXVIII. Mrs. Ramsbottom declares herself a Convert to "Reform" 123 XXIX. Mrs. Ramsbottom on the House of Lords 128 POLITICAL SONGS AND SQUIBS:-- Carmen Æstuale 133 Ass-ass-ination 135 Michael's Dinner 138 Mrs. Muggins's Visit to the Queen 140 Hunting the Hare 147 The City Concert 152 Invitations to Dinner 156 Vacation Reminiscences 159 Reminiscences Continued 162 Gaffer Grey 166 The Idle Apprentice turned Informer 170 The Queen's Subscription 174 Opposition 178 The Invitation 184 The Beggars--A New Song 188 Bubbles of 1825 194 The Grand Revolution 197 Imitation of Bunbury's "Little Grey Man" 200 Humpty-Dumpty 203 Parody--"While Johnny Gale Jones" 204 Parody--"The young May Moon" 205 Disappointment 206 TENTAMEN; OR, AN ESSAY TOWARDS THE HISTORY OF WHITTINGTON, SOME TIME LORD MAYOR OF LONDON 207 MISCELLANIES, IN VERSE AND PROSE:-- Mr. Ward's Allegorical Picture of Waterloo 249 Letter from a Goose 259 The Hum-Fum Gamboogee Society 262 Moral Theatricals 269 Private Correspondence of Public Men 275 The Cockney's Letter 280 Byroniana 284 Lord Wenables 288 Lord Wenables Again 304 Modern Improvements (Two Letters) 309 Punning, with Cautionary Verses to Youth of both Sexes 316 Fashionable Parties 322 A Day's Proceedings of a Reformed Parliament 325 Clubs 333 Rachel Stubbs' Letter to Richard Turner 336 Mr. Minus the Poet 338 National Distress 339 Hints for the Levee 347 The Inconsistencies of Cant 350
512
StackExchange
a new Stage, add your controls into it or if you require the POPUP as Dialog box, then you may consider using DialogsFX or ControlsFX(Requires JavaFX8) For creating a new Stage, you can use the following snippet @Override public void start(final Stage primaryStage) { Button btn = new Button(); btn.setText("Open Dialog"); btn.setOnAction( new EventHandler<ActionEvent>() { @Override public void handle(ActionEvent event) { final Stage dialog = new Stage(); dialog.initModality(Modality.APPLICATION_MODAL); dialog.initOwner(primaryStage); VBox dialogVbox = new VBox(20); dialogVbox.getChildren().add(new Text("This is a Dialog")); Scene dialogScene = new Scene(dialogVbox, 300, 200); dialog.setScene(dialogScene); dialog.show(); } }); } If you don't want it to be modal (block other windows), use: dialog.initModality(Modality.NONE); A: The Popup class might be better than the Stage class, depending on what you want. Stage is either modal (you can't click on anything else in your app) or it vanishes if you click elsewhere in your app (because it's a separate window). Popup stays on top but is not modal. See this Popup Window example. Q: Why does SET LINESIZE not work in my script? I have a script saved in a file: QUERY.sql. Inside the file, I have the following lines at the top: SET SERVEROUT ON SIZE 1000000; SET ECHO OFF; SET LINESIZE 4000; SET PAUSE OFF; SET VERIFY OFF; Whenever I run the script from the command window using @QUERY, the script runs mostly right, except the linesize is still at the default and it cuts off the data into a new line. The lines are being formatted for entry in another system, so I can't change their formats. In order to make it work, I have to manually enter SET LINESIZE 4000; in the command window, then run my query. It is mildly annoying to me, but I am worried other users won't know how to get around the problem. What am I missing here? A: For the SQLPlus commands at the top of the script, try dropping the semicolons SET SERVEROUT ON SIZE 1000000 SET ECHO OFF SET LINESIZE 4000 SET PAUSE OFF SET VERIFY OFF Heres the SET command reference list for anyone looking for it Q: Shortest possible game with 18 queens? The selected answer to this question shows a game in which all 16 pawns promote to queens so that there is a total of 18 queens on the board. It takes 80 moves... What is the shortest sequence of moves that achieves this goal? And just to make things interesting, is the minimum number the same if we ask for 20 rooks, bishops, or knights to be present? This is not obvious, because one of the solutions could require extra moves (for instance, to remove a king from a check given by a new queen). A: Solution by Friedrich Burchard & Friedrich Hariuc (1976) in 96 Half-moves [FEN ""] 1.e4 f5 2.e5 Nf6 3.exf6 e5 4.g4 e4 5.Ne2 e3 6.Ng3 e2 7.h4 f4 8.h5 fxg3 9.h6 g5 10.Rh4 gxh4 11.g5 g2 12.g6 Bg7 13.hxg7 g1=Q 14.f4 h3 15.f5 h2 16.b4 a5 17.b5 a4 18.b6 a3 19.Bb2 Ra7 20.bxa7 axb2 21.a4 b5 22.a5 b4 23.a6 b3 24.c4 h1=Q
512
realnews
government also began evacuating areas in the north and east of the island that are susceptible to flooding. Meanwhile, the director of Puerto Rico's power company warned that Irma could leave some areas without electricity for as long as four to six months, according to the Associated Press. Local government officials have done well, the Pujols family said, by encouraging residents to stockpile supplies, avoid dangerous places or unnecessary risks, and leave areas most prone to flooding. "But with rain over rain over rain," Andrea Pujols added, "we're just hoping it doesn't get any worse" than what's been forecast. Farther east, municipalities throughout the U.S. Virgin Islands are bracing for destruction like its 107,000 residents have not experienced since Hurricane Marilyn in 1995 and, very possibly, Hurricane Hugo in 1989. Both storms - Marilyn hit St. Thomas as a strong Category 2, Hugo struck St. Croix as a Category 4 - claimed lives, leveled homes and business, and knocked out basic services for months. Del. Stacey Plaskett, who represents the territory in Congress, told The Washington Post on Tuesday night that the Federal Emergency Management Administration has personnel pre-staged there to help launch recovery efforts once the storm passes. The White House declared a state of emergency there earlier in the evening, but Plaskett, a Democrat, called Irma "a local issue," and insisted the local government has the lead in ensuring a swift, orderly response. Of principal concern, she said, are the islands' hospitals, many of which have lacked enough in federal funding to complete desired building upgrades that would fortify them against severe weather. What money is given to the Virgin Islands through Medicare and Medicaid is prioritized for patient care, she said. The Navy is ready to deploy a hospital ship and medical personnel if such help is needed, Plaskett told The Post. St. Thomas and St. John are expected to be hit "much harder" than St. Croix, she added. Plaskett said she's worried about storm surge and how it will affect those who rely on cisterns, large tanks that collect and store rainwater for cooking, showering and flushing toilets. She's worried about the islands' power grid - "We have some difficulty with electricity as it is," she noted - and the islands' communications network. She's worried whether residents remembered to charge their cellphones and have enough backup batteries to keep their radios powered. "My greatest concern right now," the congresswoman added, "is that people stay indoors." With Irma expected to thrash south Florida, where mandatory evacuations were ordered Tuesday, some Virgin Islanders were nervous that federal assistance would become less of a priority once the storm affects the continental United States. Michael Resch, 59, whose father built St. Thomas's Island Beachcomber Hotel in 1957, remembers the painful recovery from Marilyn and Hugo, when the power went out for several weeks. "To tell you the truth," he said, "we're kind of like the forgotten child here. Every time they talk about Irma, it's all 'Florida be prepared.' St. Thomas never gets mentioned." President Trump has declared emergencies in Florida, Puerto
512
reddit
carry it. It's cold at Harpers and usually on the warm shelf at Montgomery. There's also a wine shop in the same plaza as Montgomery Kroger that has a good beer selection and they have it in the cooler. I think Whole Foods in Mason and Rookwood both carry it in cans as well. Seriously? How can reddit become a better online community if we exclude an entire group of people to the side in order to project labels for out own gain. People are the most important thing in the world. I'm absolutely disgusted by how many people are upvoting this video. I'm very disappointed in my fellow men. We need to get better What difficulty do you play at? I generally run immortal on either epic or marathon (but I feel that wouldn't be your taste). Just add more civs to the game with not enough landmass, and turn up the difficulty on pangea. You'll to handle snowballing warmongerers. E: and a side question, what difficulty do you play at? Wow, really? That means a lot to me! I Do get particularly passionate about things I invest myself in and things I think are cool. I have tons of Ideas on my end, sure... just... I'm not sure if Jagex would as you say "keep people going back" to the worlds, ya know? Right now it's just a grand idea with a handful of people supporting it. I doubt Jagex will hear or care.. Will do, pal! After you do that, I'll probably try to back-up my statements with cold, hard facts, but in doing so I'll actually find out I'm wrong. Therefore, instead of conceding my argument and admitting I was wrong, I will stubbornly argue for hours until all my comments get downvoted, at which point, I will delete them like a coward, and pretend it never even happened. &gt; I couldn't care less about how feed animals feel Even most meat eaters, including myself, would strongly disagree with this statement. &gt;Vegans don't eat animal products because they are yuppies that think they're enlightened. Some do it for health reasons, and some do it for moral reasons. Either way, you're making a generalization when you started your post by asking not to be grouped together. The problem with your position isn't a lack of plausibility. Sure, someone "powerful" could attempt to plan and attempt to execute such events. But the devil is in the details. How? Why? To what end? What do they have to gain? Theres nothing wrong with having doubts in our leadership. But dont attribute purely evil acts to others because of fear. So, my anxiety issues vis-a-vis telephones rule out phonebanking for me, but I can take this weekend through election night off to volunteer full time—the only issue is I'd be coming from out of state. 1. Is there actually a need for on-the-ground volunteers and if so 2. is there a process in place for finding out-of-state vols a cot to sleep on at night, or would I be on my own there? If you are uncomfortable
512
OpenSubtitles
dances..." "Right." "And flaps his arms and stuff." "Right, right, right." "Oh, you're the one who sits on the... the edge of the window." "The sad chicken." "[sighs]" "Well, I work over at the community center." "I oversee the special events, mostly weddings." "I started doing it after Larry was killed." "I was just kind of walking around in a haze, and... anyway, my girlfriend, she's head of human resources over there, so, you know, that's... that's how I got hired." "Do you like it?" "The job?" "They don't make me wear a chicken suit." "No." "Oh, wrestling." "Right." "[#]" "# when we were green and young as shoots # # the world took off beneath our boots # # oh, we were picked when we were young # # gentle words and modesty # # when we turned towards the tide #" "# choirs screamed in their delight # # oh, I am ripe and ready now # # my heart is heavy it's going to fall # # out of my body... #" "[grunting with effort] [boys shouting angrily, thrown cans clatter]" "[jeering and laughing]" "Hey, let's go, boys, let's go!" "[shouting retreats]" "[straining with effort]" "Jesus, Walter." "What the hell are you doing?" "I got it." "Jesus Christ, Walter, what the hell are you doing pushing all that weight around alone?" "[sighs heavily]" "Oh, uh, I made an extra key for you for the weight room." "Lock up when you go." "Thank you." "Are you, uh... you entering the regional tournament?" "No." "What?" "I'm not wrestling anymore, coach." "What the hell are you training so hard for?" "[shouting taunts, laughing]" "Oh, yeah!" "[angry taunts, thrown cans clatter] [jeering and laughing]" "Hey, 'tard!" ""Special" my ass." "Hey, you guys better catch the other ones!" "Come on, you too cool, buddy?" "You can't talk to me?" "[hoots of laughter]" "We got one, boys, the biggest one!" "Want to run with me, tough guy?" "Want to run with me?" "You too cool to talk to me, big guy?" "Come on, guy, let's go!" "You ride the cart into school this morning?" "In the back of the yellow twinkie bus?" "Come on, tough guy." "[almost inaudible]:" "Come on, retard, do something." "Don't just stand there." "You got to talk to me first, tough guy." "What's up?" "Do something." "Let's go, retard." "Are you going to fight me "Halt." "Look down." "Keep walking." "Inquiry Prison of the Ministry for State Security." "Address him as Captain." "Come in." "Sit down." "Hands under your thighs, palms down." "What do you have to tell us?" "I haven't done anything." "I don't know anything." "You've done nothing, know nothing." "So you think we just arrest innocent citizens on a whim?" "No, not..." "If you think our humane system is capable of something like that, ...that'd be reason enough to arrest you." "We want to jog your memory, Prisoner 227:" "Your friend and neighbor fled the Republic on September 28th ." "And we have reason to believe he was helped." "I don't know anything about it." "He never told
512
s2orc
  ) ( 1 (5) here по пф h h  ; ро рf U U  ; по пf U U  ; ро рf h h ( It is interesting to compare the two methods. To do this we will use the equation of saving the flow rate recorded for the floodplain part of the constraint target О -О In other words, the calculation of the average speed on the floodplain by the method [18] gives some underestimated values The obtained dependencies give the longitudinal component of the velocity vector. Meanwhile, to correctly determine the depth of local erosion at the head of the structure, it is necessary to know the actual values of the maximum speed and specific costs. It is obvious Tokimeku: The Poetics of Marie Kondo's KonMari Method 2020 Johnathan Flowers Worcester State University US Tokimeku: The Poetics of Marie Kondo's KonMari Method SPECTRA 72202010.21061/spectra.v7i2.146. DOI: https://doi.org/10.21061/spectra.v7i2.146 human interactions with the world. A brief exploration of the KonMari system will clarify these principles. The distinction between tidying and cleaning is crucial in KonMari. Tidying, specifically, is a mode of self-cultivation, where it refers to the way that things are put in order. This definition is clear in the Japanese title of her book The Life-Changing Magic of Tidying Up: The Japanese Art of Decluttering and Organizing. In Jinsei ga Tokimeku Katazuke no Maho, "katazuke'' can be translated as "to put in order" or "to put to rights." This concept of "tidying" is further elaborated in Spark Joy, where "tidying" means "confronting yourself" by confronting our role in creating clutter and disorganization. 3 This is contrasted with "cleaning," an activity which confronts nature as an intrusion on our living spaces in the form of the accumulation of dirt. 4 Kondo further distinguishes the concept of "cleaning," or purification, from "tidying," or cultivation: Cleaning the temple is part of Buddhist training, but tidying the temple is not. With cleaning, we can let our minds empty while our hands keep moving, but tidying requires us to think-about what to discard, what to keep, and where to put it. You could say that tidying orders the mind while cleaning purifies it. 5 Here, Kondo refers to the Buddhist practice of kinhin, a form of meditation that allows the mind to empty while the body remains in activity. In Soto Zen Buddhism, this practice is one of the many ways in which one can engage in silent illumination, or shikantaza, wherein the attention does not focus on any object. In contrast, Kondo's "tidying" orders our minds such that we can correctly perceive an affective connection, or the ways that an object prompts tokimeku, in order to restore the balance between ourselves and the object in our surroundings. Thus, tokimeku is crucial to understanding the KonMari system and its connection to Japanese aesthetic theory. In Japanese, tokimeku indicates a palpitation or response of the heart. It usually results from the experience of anticipation, or during an encounter with the object of one's affection. Tokimeku also refers to the phenomenological response of the
512
StackExchange
not easy to make it in code. The progress is that I wrote code for it, but I am afraid it is NOT responsive. I mean it may get at some point after loads of tweaking with media queries. What would be your approach of creating this navigation bar ? How would you create the little shape underneath the logo ? My approach was to slice the shape and slice the logo and code it, but it is not very responsive. HTML <header> <div class="float_center"> <ul class="navigation"> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> <li> <img class="shape" src="<?php echo site_url('assets/images/test.png');?>"/> <div class="logo"></div> </li> <li><a href="#">Link</a></li> <li><a href="#">Link</a></li> </ul> </div> </header> CSS header { background-color:rgba(0, 0, 0, 0.74); height:100px; } .float_center { float: right; position: relative; left: -50%; /* or right 50% */ text-align: left; } .float_center > .navigation { position: relative; left: 50%; } ul.navigation { list-style-type: none; margin:0; padding:10px 0; } ul.navigation > li { float: left; list-style-type: none; margin: 0 6px; } ul.navigation > li > a { display: block; height: 26px; line-height: 70px; font-family: "American Captain"; font-size: 20px; letter-spacing: 2px; color: #FFF; text-transform: uppercase; padding: 0px 50px; } ul.navigation > li > a:hover, a:active, a:focus { color: #d43100; } .logo { background: url("../images/logo.png"); background-repeat:no-repeat; background-size: 150px; height:150px; display:block; width:150px; margin-top:6px; padding: 0; } .shape { position: absolute; width:28%; top: 101px; left: 31.5%; z-index: -1; } A: 1st iteration Demo: http://codepen.io/dcdev/full/Jhtxv/ #nav { position:absolute;top:0;height:50px;background:#666; width:100%;} ul { list-style:none;display:inline;width:100%;margin:0 5%; } ul li { display:inline-block; width:10%;border:1px solid #000;} .bump { top:0;left:50%;width:25%;height:65px;border-radius:50%;background:#666;font-size:50px;line-height:70px;color:yellow;text-align:center;line-height:50px; } <div id="nav"> <ul> <li>Menu 1</li> <li>Menu 2</li> <li class="bump">M</li> <li>Menu 3</li> <li>Menu 4</li> </ul> </div> 2nd iteration Based on kshay's answer which I thought was a better solution than my previous hastily typed out example.. I took his example and improved it a bit further in the spirit of making it slightly more efficient.. Demo: http://cssdeck.com/labs/full/z4rbbe47 #navbar{padding:25px 30px 0;width:500px;height:40px;background:#808080;position:absolute;} #navbar a{width:80px;background:#808080;float:left;text-decoration:none;text-align:center;} #navbar a:nth-child(n+3){float:right;} .circleimage{border-radius:50%;width:150px;height:65px;background-color:#808080;margin-left:175px;} .circleimage img{margin:0 auto;display:block;position:relative;bottom:10px;} <div id="navbar"> <a href="#">Link</a> <a href="#">Link</a> <a href="#">Link</a> <a href="#">Link</a> <div class="circleimage"> <img src="https://d13yacurqjgara.cloudfront.net/users/305445/avatars/small/m-icon-sml.png?1364435283" /> </div> </div> 3rd iteration Decided to fiddle around with it a tad more this evening and I think I got it just about perfect.. Demo: http://cssdeck.com/labs/full/z4rbbe47 #navbar:before { content:'\A';display:block;width:100vw;height:65px;position:absolute;background:#808080;top:0;z-index:-1; } #navbar:after { content:url(https://d13yacurqjgara.cloudfront.net/users/305445/avatars/small/m-icon-sml.png?1364435283);display:block;height:85px;position:absolute;background:#808080;top:0;z-index:1;border-radius:50%;width:175px;height:80px;background-color:#808080;margin:0 auto;left:0;right:0; } #navbar { padding:20px 0 0;width:100%;height:40px;background:#808080;text-align:center; } #navbar a { width:25%;margin:0 40px;background:#808080;text-decoration:none;color:#fff;font-weight:600;letter-spacing:0.025em;text-transform:uppercase; } #navbar a:nth-child(2) { margin-right:100px } #navbar a:nth-child(3) { margin-left:100px } a:hover,a:active,a:focus,a:visited { text-decoration:none;outline:none; } <div id="navbar"> <a href="#">Link</a> <a href="#">Link</a> <a href="#">Link</a> <a href="#">Link</a> </div> Full width: Approx 600px width: Q: Are Ethereum Contracts Vulnerable to Hash Table Poisoning Attacks? Does anybody know something about this? I know that in general terms we will say not, but looking on the internet I found that isn't sure the answer to the question: Can the EVM’s Internal Associative Array be Exploited?. Which makes more sense, because a Hash Table poisoning attack may be "impossible" in terms of gas costs (at least this is how I see it, I'm not an expert on this subject) If anyone knows about this, or any papers/articles related it'll be appreciated. Thanks on advice! A: Found this article, maybe is
512
YouTubeCommons
when I was I was working on networking stuff at Comcast a lot of iot edge device places we had compute at the home and compute at the hubs in between all the way to the centralized Services the way I think of it is not so much this decentralization versus centralization but thinking about um what are the that there's actually tiers of where you want to do compute maybe you have to do training models at the large scale machines and you run those on your centralized Cloud providers but within a compute context you know that certain parts like applying information from a model can happen on your device at your home and then you can you know using you know the stuff we're working on with ipvm which is also UCam base like what do I want to control within my set of devices versus what I have to go get or what I have to go compute on something at a different tier so I think I think that's why one part of it the other one that we're you know super exploring right now to a lot of what Wes was well welcome thank you so much for being here um this is our talk about how sick release makes kubernetes releases even more stable and secure hopefully my name is Veronica Lopez I'm Tech lead for sick release and I also work at Planet scale uh the company behind BTS okay everyone thank you for coming today I am Marco modernich I am a senior software engineer at kubermatic I am a release manager for the kubernetes project a long time Sig release contributor and we are definitely happy to see you all today let's get started yay okay so this is our agenda for today um a little bit of a sick release introduction for those of you who are not familiar with it a bit over the release team then about the supply chain security uh registry changes that I'm sure a lot of you are a bit familiar with that and last but not least the packages they are RPM and WM packages and yeah so let's get started welcome to Sig release uh if you've been to or previous talks you might already be familiar with what we do but if you don't uh the quick recap is uh sick really is a group responsible for ensuring quality kubernetes releases this means a lot of things uh this includes managing the releases uh from end to end uh following the progress of our release cycle guiding contributors along the way but also maintaining tooling uh needed to to release kubernetes this is very important because if you're a release manager or or a release engineer for any other project either open source or internally you might use other tools that are available for free or paid whatever but are that are already available but we build our own tools so this has many implications that we will mention along the talk
512
StackExchange
= "hours"; public static final String KEY_WEB = "website"; public static final String KEY_TYPE = "type"; @Override public void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); MainActivity datab = new MainActivity(this); Button buttonName =(Button)findViewById(R.id.buttonName); buttonName.setOnClickListener(startName); Button buttonType =(Button)findViewById(R.id.buttonType); buttonType.setOnClickListener(startType); dEdit =(EditText)findViewById(R.id.textView1); datab.open(); Cursor c = datab.getAllTitles(); if((c!=null) && c.moveToFirst()) { do{DisplayTitle(c); }while (c.moveToNext()); } datab.open(); Cursor b = datab.getAllTitles(); if ((b!=null) && b.moveToFirst()) DisplayTitle(b); else Toast.makeText(this,"No business found",Toast.LENGTH_LONG).show(); data.close(); data.close(); } //displays the data public void DisplayTitle(Cursor c) { Toast.makeText(this, "Name: " + c.getString(1)+"\n"+ "Address:" + c.getString(2)+"\n"+ "Phone:" + c.getString(3)+"\n"+ "Hours:" + c.getString(4)+"\n"+ "Website"+ c.getShort(5)+ "Type" + c.getShort(6), Toast.LENGTH_LONG).show(); } //Informs the user what is being searched private OnClickListener startName=new OnClickListener(){ public void onClick (View v) { Cursor cur=data.rawQuery("SELECT business,address,phone,hours,website,type FROM Business where name like %"+dEdit.getText().toString()+"%", null); String result=""; int iRow=cur.getColumnIndex(KEY_ROWID); int iName=cur.getColumnIndex(KEY_BUSINESS); int iAddress=cur.getColumnIndex(KEY_ADDRESS); int iPhone=cur.getColumnIndex(KEY_PHONE); int iHours=cur.getColumnIndex(KEY_HOURS); int iWebsite=cur.getColumnIndex(KEY_WEB); int iType=cur.getColumnIndex(KEY_TYPE); Toast.makeText(DBUse.this, "Searching by Name", Toast.LENGTH_LONG).show(); // log.d("result",DBUse.getString(0)); for(cur.moveToFirst(); !cur.isAfterLast(); cur.moveToNext()){ result=result +cur.getString(iRow) + " " +cur.getString(iName) + " " +cur.getString(iAddress) + " " +cur.getString(iPhone) + " " +cur.getString(iHours) + " " +cur.getString(iWebsite) + " " +cur.getString(iType) + " " + "\n"; }; return; } }; //Informs the user what is being searched private OnClickListener startType=new OnClickListener(){ public void onClick (View v){ Cursor cur=data.rawQuery("SELECT business,address,phone,hours,website,type FROM Business where type like %"+dEdit.getText().toString()+"%", null); String result=""; int iRow=cur.getColumnIndex(KEY_ROWID); int iName=cur.getColumnIndex(KEY_BUSINESS); int iAddress=cur.getColumnIndex(KEY_ADDRESS); int iPhone=cur.getColumnIndex(KEY_PHONE); int iHours=cur.getColumnIndex(KEY_HOURS); int iWebsite=cur.getColumnIndex(KEY_WEB); int iType=cur.getColumnIndex(KEY_TYPE); Toast.makeText(DBUse.this, "Searching by Name", Toast.LENGTH_LONG).show(); // log.d("result",DBUse.getString(0)); for(cur.moveToFirst(); !cur.isAfterLast(); cur.moveToNext()){ result=result +cur.getString(iRow) + " " +cur.getString(iName) + " " +cur.getString(iAddress) + " " +cur.getString(iPhone) + " " +cur.getString(iHours) + " " +cur.getString(iWebsite) + " " +cur.getString(iType) + " " + "\n"; }; return; }; }; } The Manifest: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.database" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <application android:allowBackup="true" android:debuggable="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name="com.example.database.DBUse" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest> Finally the LogCat: 04-28 17:27:15.055: E/Trace(721): error opening trace file: No such file or directory (2) 04-28 17:27:16.124: D/dalvikvm(721): GC_FOR_ALLOC freed 47K, 2% free 10842K/11011K, paused 44ms, total 48ms 04-28 17:27:16.134: I/dalvikvm-heap(721): Grow heap (frag case) to 11.204MB for 614416-byte allocation 04-28 17:27:16.274: D/dalvikvm(721): GC_CONCURRENT freed 1K, 2% free 11441K/11655K, paused 76ms+16ms, total 141ms 04-28 17:27:16.324: D/dalvikvm(721): GC_FOR_ALLOC freed 0K, 2% free 11441K/11655K, paused 29ms, total 29ms 04-28 17:27:16.334: I/dalvikvm-heap(721): Grow heap (frag case) to 12.245MB for 1093136-byte allocation 04-28 17:27:16.474: D/dalvikvm(721): GC_CONCURRENT freed 0K, 2% free 12508K/12743K, paused 75ms+6ms, total 132ms 04-28 17:27:16.544: D/AndroidRuntime(721): Shutting down VM 04-28 17:27:16.544: W/dalvikvm(721): threadid=1: thread exiting with uncaught exception (group=0x40a13300) 04-28 17:27:16.556: E/AndroidRuntime(721): FATAL EXCEPTION: main 04-28 17:27:16.556: E/AndroidRuntime(721): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.database/com.example.database.DBUse}: java.lang.NullPointerException 04-28 17:27:16.556: E/AndroidRuntime(721): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2059) 04-28 17:27:16.556: E/AndroidRuntime(721): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084) 04-28 17:27:16.556: E/AndroidRuntime(721): at android.app.ActivityThread.access$600(ActivityThread.java:130) 04-28 17:27:16.556: E/AndroidRuntime(721): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195) 04-28 17:27:16.556: E/AndroidRuntime(721): at android.os.Handler.dispatchMessage(Handler.java:99) 04-28 17:27:16.556: E/AndroidRuntime(721): at android.os.Looper.loop(Looper.java:137) 04-28 17:27:16.556: E/AndroidRuntime(721): at android.app.ActivityThread.main(ActivityThread.java:4745) 04-28 17:27:16.556: E/AndroidRuntime(721): at java.lang.reflect.Method.invokeNative(Native Method) 04-28 17:27:16.556: E/AndroidRuntime(721): at java.lang.reflect.Method.invoke(Method.java:511) 04-28 17:27:16.556: E/AndroidRuntime(721): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786) 04-28 17:27:16.556: E/AndroidRuntime(721): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553) 04-28 17:27:16.556: E/AndroidRuntime(721): at dalvik.system.NativeStart.main(Native Method) 04-28 17:27:16.556: E/AndroidRuntime(721): Caused by: java.lang.NullPointerException 04-28 17:27:16.556:
512
DM Mathematics
2*j + 1, 3 = 3*t + 2*j. What is the third derivative of 3*p**t - p**3 + 3*p**3 - 5*p**2 wrt p? 30 Let l(m) be the second derivative of -m**6/10 + 15*m**4/4 - 11*m**3/6 + 5*m**2 - 144*m. Find the second derivative of l(y) wrt y. -36*y**2 + 90 Let g = -10 + 16. Find the second derivative of -4*j**3 - g*j - 5*j + 2*j + j wrt j. -24*j Suppose -18*s + 17*s + 4 = 0. Differentiate -3*o**4 + 33 - 65 + 21*o**s wrt o. 72*o**3 Let m(i) be the second derivative of 109*i**8/56 + 4*i**4/3 - 5*i. Find the third derivative of m(t) wrt t. 13080*t**3 Differentiate -1085 - 36*g - 4*g**2 - 1043 + 3175 - 52*g - 1083 with respect to g. -8*g - 88 Let v = 0 + 4. Suppose -v*c = -3*c - 2. What is the second derivative of 4*z**3 + c*z - 3*z**3 + 0*z wrt z? 6*z Find the third derivative of 30*b**2 + 106*b**3 + 5*b**3 + 16*b**3 wrt b. 762 Let t(q) = 10*q**4 + q**3 - 1. Let o(k) = -205*k**4 - k**3 + 2*k**2 + 449*k + 1. Let c(d) = o(d) + t(d). What is the second derivative of c(m) wrt m? -2340*m**2 + 4 Let i = 6 - 4. Suppose -i*h + 1 = -3. Find the third derivative of m**3 + 3*m**3 - 2*m**2 - m**h - 3*m**3 wrt m. 6 Let l(u) = -5*u - 50. Let k be l(-21). Find the second derivative of 28*v**2 - 3*v - 1 - 3 - k*v**2 wrt v. -54 Let z(a) = -2*a**4 - 2*a + 1. Let r(b) = 111*b**4 - 2*b**2 + 17*b - 5. Let u(m) = r(m) + 5*z(m). What is the third derivative of u(t) wrt t? 2424*t Let u(g) be the third derivative of 17*g**6/120 - g**5/60 + 5*g**4/24 + g**3/6 - 137*g**2. Find the second derivative of u(j) wrt j. 102*j - 2 Let j(z) = z - 8. Let m be j(17). What is the first derivative of -25*v - m + 14*v - 4 - 12*v wrt v? -23 Let j(b) = -34*b**2 - 72. Let x(h) = 68*h**2 + 145. Let g(r) = 7*j(r) + 3*x(r). What is the derivative of g(u) wrt u? -68*u Let u(w) be the first derivative of 0*w**2 - 30 + 0*w - 50/7*w**7 - 14/3*w**3 + 0*w**5 + 0*w**4 + 0*w**6. Find the third derivative of u(s) wrt s. -6000*s**3 Let j(g) = -9*g - 12. Let b(m) = m + 1. Let t(p) = 18*p + 20. Let l(f) = -44*b(f) + 4*t(f). Let h(v) = 7*j(v) + 2*l(v). Find the first derivative of h(y) wrt y. -7 Differentiate -72 - 3*l - 6*l + 3*l - 4*l with respect to l. -10 Let w(i) be the third derivative of 13*i**5/6 - 55*i**3/2 + 76*i**2. Differentiate w(s) wrt s. 260*s What is the second derivative of 4*x**4 + x - 71 - 92 + 142 wrt x? 48*x**2 Let h(z) = -z**3
512
realnews
late 1990s, Nortel kept reporting accounting losses as the company consistently took non-cash charges related to reserves it set up for accrued liabilities. In an environment where pro forma accounting was king, companies could easily wave these charges off as being inconsequential -- green eyeshade stuff that investors should ignore. As with any company, some of these reserves served a legitimate purpose -- to placehold for money the company expected to have to spend to satisfy an obligation. But Nortel also used these reserves for another purpose -- to be able to bring earnings back from the dead should the company not be able to live up to analyst projections. So Nortel might find itself a penny short of expectations one quarter, but lo, it had a $100 million reserve related to some pervious acquisition. The company simply reversed the reserve and could count those $100 million as profits. Voila! Found the penny! Funds that were ignored when they were subtracted below the line were plowed into operating results, where they weren't ignored at all. This worked until it didn't -- when the fiber optics market became so putrid that there wasn't any way to dress up the fact that Nortel's business had collapsed. An internal audit in 2002 that was not disclosed to the public found that Nortel had in excess of $300 million in inappropriately booked reserves. These findings were never disclosed to investors, and some executives at the company believe these amounts were simply added to earnings in late 2002. Mr. Dunn had pledged to drive Nortel back to profitability, and his executive team had substantial financial incentives to succeed. But in 2003, these goals were impeded by the small fact that Nortel's customer base was in horrible financial shape. In early 2003, however, the company stunned investors by reporting a small profit. Two more positive quarterly reports in the year helped drive Nortel's stock from well below a buck to as high as $7.86. In these quarters the company released more than $380 million in reserves, giving its reported results the burst of oxygen required to go from a reported loss to a reported profit. And wouldn't you know it: the board determined that at least $160 million of that was released improperly. Systemic Audacity The Wall Street Journal story paints a picture of a Nortel where diddling reserves has been standard operating procedure for years, not only on the corporate level (i.e., what's reported to shareholders), but also on a division level. In April, William Kerr, the company's newly named CFO, noted that all areas of the company's reported performance "could possibly be affected in the restatement, including research & development, gross margins, and general & administrative." They weren't just bleeding reserves into the bottom line -- it was showing up everywhere. There's something about the timeline I find mindblowing, though. In 2002, investors complained about the company's deferred liability accounts. Nortel did the audits and found $300 million in improperly booked reserves. But this didn't stop the practice, as the company continued monkeying with reserves. Its
512
ao3
but still growing closer by the minute. He remembered standing in that clearing with dead Alphas around him, claws bloody with death, watching everyone but Stiles circle up around Scott. Looking back, he can’t remember when Stiles and Derek stopped being almost enemies and turned into trusted allies. It probably happened sometime in the middle of the Alpha Pack fiasco, a trust forged with shared information and the need to protect the people around them. They’d fought together for the same goal and when they’d won, they’d stepped to the side and let others lead the way. Even after he’d left, that trust had stretched and grown stronger over time. It’d become friendship and comfort, and their own little pack. Stiles had become everything. ___ Eventually, Derek called Isaac. They had a 30 minute long, stilted conversation. Derek told him about UW and his new pack and Isaac said, “That’s great,” over and over, and maybe it was stupid, but he sounded like he meant the words. It wasn’t the best conversation ever, but it was the start of something. When he hung up, he felt better. Isaac wasn’t pack, he wasn’t Derek’s beta, but he was something just as valuable. He called Stiles and invited him to dinner. He ordered Chinese and set the ringer on his cell to silent. They ate dinner silently on the balcony. Derek kept wanting to say, “I talked to Isaac,” like he could prove something to Stiles. Instead, he nodded his head when Stiles talked about classes and what he was going to do over Christmas break. It wasn’t awkward, but it was just a little to the left of their normal. _why’d you say no to scott_ , Derek finally texted. He was sitting alone on his balcony, the remnants of Chinese food sitting around him. Inside, he could hear Stiles rifling in the refrigerator, looking for something to drink. _you realize i’m in the next room right?_ Stiles responded too many heartbeats later. _doesn’t change the question_ , Derek responded. _Scott’s like my brother. he’s a good alpha._ _i’m sure. and?_ Derek held his breath. _i don’t know._ Stiles sat down beside Derek on ground, close enough that their shoulders were just touching. Derek heard his heart stutter once. “You told me to not let you lie,” Derek said, watching carefully as Stiles poked around at his phone. “I did, huh?” Stiles responded, and he could hear the stutter there as well. They both knew that was the second lie, but it wouldn’t help to point it out. Instead Derek said, “You were drunk enough that I guess I can’t hold you to your words.” Stiles took a deep breath, pushed his body into Derek’s a little more. “At first, I only kind of knew that it had to be made official. I didn’t even realize I had a choice,” Stiles said. His voice was quiet. Stiles nudged his shoulder and Derek looked over at him. Stiles eyes stayed firmly on his phone, his cheeks slightly red with a blush. “Stiles,” Derek whispered.
512
StackExchange
2.8 mm in diameter, on a disk equipped with blades [...] Meanwhile, begonia seeds, as an example, are much smaller: Species description Begonia fangii [...] Seeds many, brown, ellipsoid, 0.5-0.6 mm long, 0.3-0.35 mm in diam. A: No, but one should not expect a literal interpretation of of parable. It is a good idea to use an interlinerar bible when reading translated works. A concordance or other search tool that allows you to search in multiple languages can also be useful to determine the best translation. In this particular instance, the translation you quoted above seems fairly accurate. The important part of Matthew 13:31-32 that you seem to be overlooking is that Jesus is speaking in parables to the multitudes. These stories are used to illustrate a religious or moral attitude, and need not be factual. There are multiple interpretations of what this parable is meant to symbolize, but no religious scholar takes that passage literally. Q: Can the Sun capture dark matter gravitationally? I think my title sums it up. Given that we think the dark matter is pseudo-spherically distributed and orbits in the Galactic potential with everything else, then I assume that its speed with respect to the Sun will have a distribution with an rms of a few 100 km/s. But the escape velocity at the solar surface is 600 km/s. So does that mean that, even though sparse, the Sun will trap dark matter particles as it moves around the Galaxy? Will it accumulate a cloud of dark matter particles by simple Bondi-Hoyle accretion and, in the absence of any inelastic interactions, have a swarm of dark matter particles orbiting in and around it with a much higher concentration than the usual interstellar density? If so, what density would that be? EDIT: My initial premise appears to be ill-founded since a dark matter particle falling into the Sun's gravity well will gain enough KE to escape again. However, will there still be a gravitational focusing effect such that the DM density will be higher in the Sun? A: Well, like anything else that comes in from distant parts it's going out again without a either a three-body momentum transfer or some kind of a non-gravitational interaction. If you assume a weakly interacting form of dark matter, then I think the answer has to be yes, but the rate is presumably throttled by the weak interaction cross-section of your WIMPs. A: (edited version. My thanks to Rob for clearing up my misunderstandings) As dmckee writes, weak interactions between DM particles and baryons are necessary to capture dark matter, otherwise particles that enter the solar system would simply move through it and eventually leave it again. More specifically, the local rms velocity of DM particles is commonly estimated by approximating the DM halo with an isothermal sphere profile with a Maxwellian velocity distribution. If $\sigma$ is the velocity dispersion, then one can show that the rms (DM) velocity is $v_\text{DM}=\sqrt{3}\sigma$ and the circular (solar) velocity is $v_\odot\approx \sqrt{2}\sigma$, so that $v_\text{DM} \approx\sqrt{3/2}v_\odot \approx 270\;\text{km/s}$. If particles move through the solar
512
OpenSubtitles
to me that you liked our paper?" "Of course I did, but it's a mother's job to make sure her child's self-esteem is not dependent on anyone's approval." "That's so sweet, you think I have self-esteem." "Dr. Hofstadter, I want you to meet my mother, Mary." "So nice to meet you." "Nice to meet you, too." "How was your flight?" "Very pleasant." "And yours?" "Lovely." "Almost as if someone-- not saying who-- was watching over the plane." "You're kidding, right?" "Subtle, mom, real subtle." "Stuart." "Morning." "We talked about this." "I don't mind you still living here, but we got to have some rules." "And rule number one is pants." "Hey, hey." "You must be very proud of your son." "Oh, yes." "He recently argued a case before the Supreme Court." "He did?" "Oh, you mean this son." "Uh, sure, he's terrific." "Uh, Beverly, would you like to see the math I worked out to support our hypothesis?" "Uh, you mean, my hypothesis." "I hypothesized it all by myself." "Calm down, dear." "Mary, I'm curious." "When did you first realize that your son had such a remarkable mind?" "Ooh, good question." "Everyone loves stories about Sheldon Cooper, boy genius." "Well, I would have to say when he was 13 and tried to build a nuclear reactor in the tool shed." "Ooh, this is a good one." "Now, the first thing you have to know about Shelly is ever since he was a little boy, he was always concerned with the well-being of others." "And he didn't think that it was fair for people to pay for electricity, so he was gonna power the entire town for free." "Tell her about the uranium!" "Tell her about the uranium." "Oh, well!" "Oh, this is adorable." "When he arranged to get some yellowcake from Chad," "I thought he was talking about Twinkies from one of his friends." "Yeah." "But I wasn't." "'Cause I didn't have any friends." "No." "It turns out that this little scallywag was trying to use my Visa card to buy uranium from an African warlord in the country of Chad!" "Sounds like Sheldon was a handful." "Oh, he was a handful." "I was a handful." "You still are." "Uh, Mom, hey, tell Mary the story about how I made a Van de Graaff generator out of our vacuum cleaner." "All right." "He broke the vacuum cleaner." "I mean, for a while, everything was vampires." "Now it's all zombies." "I wonder what the next monster fad will be." "We haven't had a good invisible man in a while." "Clearly, you've never seen me try to talk to a woman." "Guys." "In the time you've been sitting here playing video games," "I got the car washed, picked up cleaning supplies and went to the bank." "I put on pants." "Kiss-ass." "Okay, I don't know when I became the mother to three lazy teenagers, but it stops today." "You guys are cleaning the kitchen, top to bottom." "Hey, I don't even live here." "Yes or no, do you have clothes in my laundry right
512
s2orc
used by English models but are pretrained on a larger, multilingual corpus, with mT5 and umT5 trained on 101 languages and mBART on 25. While these models showed strong performance on being able to handle a wide variety of languages, they suffered the same restrictions as their original English models on not being able to scale up to longer sequences. 3 Model mLongT5 builds upon the architecture of LongT5 (Guo et al., 2022). LongT5 was developed to efficiently handle long inputs by utilizing a more efficient attention mechanism. The model was shown to have strong performance on a variety of downstream tasks, and thus is the foundation for mLongT5. Datasets To make mLongT5 multilingual, we leverage the mC4 dataset used for training the multilingual model mT5 (Xue et al., 2021), which consists of 101 languages. This dataset has recently been updated, as described by Chung et al. (2023), and was used for training umT5 and creating a new Senten-cePiece model (Kudo and Richardson, 2018). As such, we then make use of the same SentencePiece model used for umT5, thus allowing mLongT5 to handle multilingual inputs. Pretraining Tasks One key difference with our model and LongT5 is the changing of tasks for pretraining the model. LongT5 made use of PEGASUS' Principle Sentences Generation (PSG) (Zhang et al., 2020) for pretraining its models. While this was shown to have strong performance for various downstream tasks, the one weakness of PSG is that it is less suitable for multilingual training. PSG relies on being able to split a piece of text into sentences, with current implementation best suited for Latin-based languages. The need to break text into sentences properly for 101 different languages makes it then a challenging task to use in a multilingual setting. To overcome this, we instead decided to apply UL2's pretraining tasks (Tay et al., 2022). Their pretraining task, called Mixture-of-Denoisers (MoD), has the model learning from a mixture of tasks, and has been shown to work better than T5's original pretraining task (Raffel et al., 2019). More importantly, MoD can be more easily applied to other languages compared to PSG, thus making it ideal for pretraining mLongT5. Pretraining Details Pretraining mLongT5 has many similarities to how LongT5 was pretrained. It is pretrained for one million steps, and we pretrained model sizes of Base, Large, and XL. We also use the same pretraining lengths, 4,096 for the inputs and 910 for the targets. One small difference is increasing the batch size from 128 to 256, allowing the model to train on the same number of tokens as mT5. For the mC4 dataset, we used version 3.1.0, which is the version update by Chung et al. (2023). For dataset sampling, we use the UniMax sampling method (Chung et al., 2023). Instead of PSG as pretraining task, we apply MoD, which is the same configuration as defined in the original UL2 task definition. The only exception is that we do not use 0.5 corruption rate (using only corruption rate of 0.15), as our input lengths (4096) are much longer than our target lengths
512
StackExchange
I also installed postfix, added mx record, add iptables rules to open input port 53 (udp + tcp). Ok, now I'm testing. On my server I can send an email to local user root On my server I can send an email to external email address (myname@gmail.com) From gmail, I can't send an email to root@toto.be In my log Oct 2 14:45:35 mail postfix/smtpd[31278]: connect from mail-qc0-x22b.google.com[2607:f8b0:400d:c01::22b] Oct 2 14:45:36 mail postfix/smtpd[31278]: NOQUEUE: reject: RCPT from mail-qc0-x22b.google.com[2607:f8b0:400d:c01::22b]: 454 4.7.1 <root@toto.be>: Relay access denied; from=<myname@gmail.com> to=<root@toto.be> proto=ESMTP helo=<mail-qc0-x22b.google.com> Oct 2 14:45:36 mail postfix/smtpd[31278]: disconnect from mail-qc0-x22b.google.com[2607:f8b0:400d:c01::22b] In my main.cf I try adding google.com to mynetworks but I don't think it is the solution (what for all others domains ?) mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 google.com Now the message is accepted but cannot be delivered Oct 2 14:49:09 mail postfix/smtpd[31484]: connect from mail-qg0-x231.google.com[2607:f8b0:400d:c04::231] Oct 2 14:49:10 mail postfix/smtpd[31484]: 541357F836: client=mail-qg0-x231.google.com[2607:f8b0:400d:c04::231] Oct 2 14:49:10 mail postfix/cleanup[31489]: 541357F836: message-id=<CAA-VCPUqg9XmmJGhH5oFAZv5d0FfnLMg4idPwmXkB2CRw@mail.gmail.com> Oct 2 14:49:10 mail postfix/qmgr[31437]: 541357F836: from=<myname@gmail.com>, size=1754, nrcpt=1 (queue active) Oct 2 14:49:10 mail postfix/smtp[31490]: 541357F836: to=<root@toto.be>, relay=none, delay=0.31, delays=0.3/0/0/0, dsn=5.4.6, status=bounced (mail for toto.be loops back to myself) Oct 2 14:49:10 mail postfix/cleanup[31489]: 8EC927F83A: message-id=<20141002124910.8EC927F83A@smtp.toto.be> Oct 2 14:49:10 mail postfix/bounce[31491]: 541357F836: sender non-delivery notification: 8EC927F83A Oct 2 14:49:10 mail postfix/qmgr[31437]: 8EC927F83A: from=<>, size=3676, nrcpt=1 (queue active) Oct 2 14:49:10 mail postfix/qmgr[31437]: 541357F836: removed Oct 2 14:49:10 mail postfix/smtpd[31484]: disconnect from mail-qg0-x231.google.com[2607:f8b0:400d:c04::231] Oct 2 14:49:11 mail postfix/smtp[31490]: 8EC927F83A: to=<myname@gmail.com>, relay=gmail-smtp-in.l.google.com[2a00:1450:400c:c02::1b]:25, delay=1, delays=0.03/0/0.17/0.83, dsn=2.0.0, status=sent (250 2.0.0 OK 1412254151 m13si5148612wjw.140 - gsmtp) Oct 2 14:49:11 mail postfix/qmgr[31437]: 8EC927F83A: removed What can I do ? postconf -n alias_database = hash:/etc/aliases alias_maps = hash:/etc/aliases append_dot_mydomain = no biff = no config_directory = /etc/postfix inet_interfaces = all mailbox_size_limit = 0 mydestination = smtp.toto.be, localhost, localhost.localdomain, localhost myhostname = smtp.toto.be mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128 google.com myorigin = /etc/mailname readme_directory = no recipient_delimiter = + relayhost = smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu) smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination smtpd_tls_cert_file = /etc/ssl/certs/ssl-cert-snakeoil.pem smtpd_tls_key_file = /etc/ssl/private/ssl-cert-snakeoil.key smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache smtpd_use_tls = yes /etc/mailname toto.be A: The first problem I see is that you are only allowing email meant for smtp.toto.be; nowhere is there a mention that you accept delivery for toto.be, so... myhostname = smtp.toto.be mydomain = toto.be mydestination = $myhostname, $mydomain, $mynetworks, localhost, localhost.localdomain myorigin = $mydomain Q: Query with multiple WHERE for single column I need to select all the values where a single column matches multiple values. At one point I saw something like the following but it is not working for me. Is this correct or do I need to link these values with AND? SELECT * FROM MYTABLE WHERE AGE = ( 20, 21, 22 ) Also im doing this in a php script and getting my values in an http post so if anyone can point me in the direction of a good example that would be great. THanks! A: You need to use IN SELECT * FROM MYTABLE WHERE AGE IN ( 20, 21, 22 ) and it is the same as SELECT * FROM MYTABLE WHERE AGE = 20 OR AGE =
512
realnews
the way that we did, because the market couldn't or wouldn't provide, then the investment would have gone elsewhere." With the government committed to reduce UK carbon emissions by 80% by 2050, radical changes in infrastructure and power generation will be needed over the coming decades. Labour hopes that by boosting low-carbon energy such as wind, wave and solar power, and helping to upgrade the transport system to use cleaner fuels, it can help to meet those targets while creating thousands of new "green-collar jobs". But environmental campaigners warned that £1bn would not go very far. Andrew Simms, director of the New Economics Foundation, said: "If what they're talking about is less than one five-hundredth of the amount that was thrown at the banking system, at a point where investment banks have bonus pots bigger than £1bn, then while the idea is right, the size of the ambition smacks of skewed priorities." Comparing the task of preparing for a new low-carbon era to the long drive from London to Edinburgh, he said: "You won't get very far on a teacupful of petrol." The Stern review on the economics of climate change suggested it would cost more than £10bn a year to prepare the economy for cuts in emissions on the scale needed. Mandelson stressed that as well as underpinning growth, the budget would also reaffirm Labour's determination to tackle the public deficit. The latest official figures showed that the public finances are in a healthier state than the chancellor feared at the time of December's pre-budget report, and he could reduce his £178bn estimate of this year's deficit by as much as £10bn. But Mandelson said that would not alter the government's plans for tax rises and public spending cuts in the years ahead. "We will maintain a tough deficit reduction programme: there's no question about it. It's necessary for the health of the economy, for the confidence of the markets. We will make it absolutely clear that what we have committed to, we will follow through." However, Darling will also stress that – unlike the Conservatives, who would start cutbacks immediately – Labour will "lock in recovery" by maintaining its financial support for the fragile economy for another year. The UK emerged from recession in the final quarter of 2009, growing by 0.3%, but Bank of England policymakers have left low interest rates in place, making clear they remain nervous about the sustainability of the upturn. Separately, Mandelson is also likely to be given the task of overseeing a new state-backed investment bank, which will help to support businesses struggling to secure funding from banks. Tiger Woods won the US Open in dramatic fashion in a sudden death playoff on Monday. He beat Rocco Mediate to do so. I blogged about Rocco yesterday, but I have a few things to say about Tiger today. I blog about the importance of outstanding performance on Wednesday. By any account, Tiger Woods performed in an outstanding manner this past weekend. He is still recovering from knee surgery, yet he was able to beat the
512
ao3
question. He once again saw the tactician’s look of hurt at his words, when he had all but insulted her out of nowhere. The twinge of guilt he had felt back then returned, and this time it lingered like a foul taste in his mouth. To Robin’s question, he merely said “You saved Lissa… thank you.” Robin shrugged, “Of course I did, I couldn’t let her get hurt. Lest I ‘meet the sharp end of your blade.’” Frederick did not respond and only looked back down at the smoldering remains. Robin did the same. “My memory is not what it used to be so I must ask.” she continued “is it, by any chance, common to see the dead walk amongst the living in this part of the world? ” “Hardly.” Frederick replied, glad for change in subject. “We need to tell Emm about these—these _things_.” Lissa said from behind them, shuddering. She remained standing beside Chrom and did not come closer. Chrom nodded. “Agreed. I say we waste no time. Let’s head back to camp, pack our things, and march onwards towards the capitol without delay. Dawn is but a few hours away. What say all of you?” Frederick and Lissa nodded in unison. “Robin?” Chrom asked. The tactician turned, “Couldn’t agree more. There’s no—” she gasped, clutching her side, and began to fall forward. Frederick, still standing beside her, put his right arm out in front or Robin to catch her, grabbing hold of her shoulder with his left hand. “Robin!” Frederick exclaimed, almost in unison with Chrom and Lissa, who had rushed towards them. Robin stared down at the ground, her face sweaty and contorted into a pained grimace. She grabbed his arm to steady herself, her knuckles white. The pair stood in this awkward bear hug for a moment before Frederick finally, carefully, lowered Robin to the ground. “What’s wrong? Are you injured?” he asked. “Hah…I’m fine, I’m fine” Robin said in a hoarse whisper, trying to to shake off Frederick’s hands. Reluctantly, the knight pulled away, but he remained crouching beside her. Lissa bent down to join then them, “I’ll be the judge of that, thank you very much.” she said, all traces of panic gone, “Now, let me see.” With a hiss, Robin pulled away her reddened hands to reveal a slash in her right side. The blood had soaked through her undershirt. “The damn thing must have nicked me before I was able to kill it.” “Hmmm...” Lissa examined the wound, “Well, it’s a nasty cut, but lucky for you it’s relatively shallow. I can heal you up enough to at least get you up and walking again. Then we can get you some proper care once we reach home. And because you got this wound saving the life of a member of the royal family, I’ll even do it free of charge!” She winked. Robin laughed weakly, then flinched. “Ooh, sorry. That was my fault. Too hilarious for my own good.” Lissa giggled, “Now, let’s get you lying down so we can get started.”
512
reddit
start of rouge weekend, most stores will have makeovers booked back to back to back to back. I hope you love it! Apart from this weekend being a total no sleep shit show of work, I find little things to get a kick out of in my day, like being the only white guy in a crowd of Mexicans, over hearing them talk about me among other things, and being able to shock a whole crowd when I belt out, in perfect Spanish, orders to stop doing something illegal. Never assume things on people. Yeah, this gringo with a badge hablas your espanola. Lol I'm tired...so tired. None taken! No I'm not socially awkward. I love talking to people and, as far as I know, people love talking to me. Yes, I have many friends, but I would only consider about 10 of them to be "close" friends. I am a girl, I have a boyfriend (also home schooled) and we've been together going on 2 years. Most of my friends are actually of the opposite sex. My parents wanted to homeschool because they felt like it was the best way to "protect" me from the world I guess. I'm 18 and have never smoked, drank, or any of the usual "teenage party" stuff. I resented them for it in my early highschool years but not I honestly think it made me a better person. You will see alot of E3 space where people will be able to play MK8. Like it matters if it was released before. This is a huge advertising push for switch in general. Splatoon aswell will be huge and people will be able to play it. You will also find Zelda at E3.. a launch title. Nintendo will advertise the hole platform not only upcoming games. Any whats up with 4 games? Third party? VC? How many games does Nintendo usualy release in a year? 100? Go with the casio; if you want to learn piano then you need fully weighted keys (the m-audio one is semi-weighted, not as good) and the casio has a built in sound system; the m-audio is *just* a midi controller and nothing more, which means it's harder to set up correctly as latency can be a problem on some setups. As a person with eczema, I absolutely hate this shit. Whenever I have a really bad flare the huns descend upon me en masse. They always think that their skin care producta/oils/magic shakes will cure the shit I've lived with for 30 years. Never mind the fact that I can't wear perfume, use scented soap, or scented laundry detergent, I'm totally cool to use your heavily perfumed products or FLAT OUT PURE SCENTS, Leslie. &gt;Q: Why are there ripples on ponds? &gt; &gt;A: Disturbance caused by x, y and z etc. &gt; &gt;&amp;#x200B; &gt; &gt;Q: Why do Fields fluctuate? A: unknown disturbance caused by x, y, and z. Just because we can't identify the source of the disturbance doesn't mean there isn't one. Also you still haven't clarified what you mean when you
512
YouTubeCommons
be is what's best for them but that kind of pressure takes a toll on a person's mental and emotional well-being and no matter how much you achieve or how successful you become you still find yourself feeling like a failure for not living up to your parents unrealistically high expectations number three they're overly controlling another way parents can love you in a toxic way is by smothering you with their overly controlling parenting some parents want to decide everything for their child and control every aspect of their life because they feel they will always know what's best sometimes it's because they're just being protective and want to shelter you from the harsh realities of life other times parents act this way because they're afraid their child might be going down the wrong path whatever their reasons may be however it still doesn't justify this toxic behavior number four they treat you like a child have you ever felt like your parents still see you as a child and treat you like one do they ever talk down to you or act like you can't take care of yourself that you don't know what's best or that you're incapable of deciding things for yourself well it's only natural for parents to feel protective of their children and want to take care of them no matter how old they get it's also unhealthy to keep infantilizing them disrespecting their boundaries and smothering them with too much attention number five they taught you self-blame when something bad happens to you what do you usually attribute it to if the answer is myself or something i did then you probably struggle with a lot of feelings of guilt and self-blame and it might be because the way you've been raised has taught you to feel that way parents may make their children believe that everything that happens to them is somehow their fault because they didn't try hard enough or they did something wrong number six they close off communication have your parents ever told you to just stop crying and put on a happy face instead as well intentioned as their advice might have been the truth is helping a child express and deal with their emotions in a healthy way is one of the most difficult but most crucial aspects of parenting and unfortunately some parents just aren't emotionally well adjusted enough to do that after all how can you teach what you don't know so instead of practicing honest and open communication at home you've learned to be emotionally closed off like your parents taught you and instead turn to unhealthy coping mechanisms like denial and avoidance to deal with your difficult emotions and number seven they are emotionally unavailable last but certainly not the least even if your parents were physically there for you and financially supported you they can still be toxic if they were emotionally unavailable to you and deprived you of the love warmth validation and acceptance you needed it can be a difficult thing to
512
Gutenberg (PG-19)
the map of Flanders! Have the geographers forgotten it, or is it an intentional omission? That I cannot tell; but Quiquendone really exists; with its narrow streets, its fortified walls, its Spanish-looking houses, its market, and its burgomaster--so much so, that it has recently been the theatre of some surprising phenomena, as extraordinary and incredible as they are true, which are to be recounted in the present narration. Surely there is nothing to be said or thought against the Flemings of Western Flanders. They are a well-to-do folk, wise, prudent, sociable, with even tempers, hospitable, perhaps a little heavy in conversation as in mind; but this does not explain why one of the most interesting towns of their district has yet to appear on modern maps. This omission is certainly to be regretted. If only history, or in default of history the chronicles, or in default of chronicles the traditions of the country, made mention of Quiquendone! But no; neither atlases, guides, nor itineraries speak of it. M. Joanne himself, that energetic hunter after small towns, says not a word of it. It might be readily conceived that this silence would injure the commerce, the industries, of the town. But let us hasten to add that Quiquendone has neither industry nor commerce, and that it does very well without them. Its barley-sugar and whipped cream are consumed on the spot; none is exported. In short, the Quiquendonians have no need of anybody. Their desires are limited, their existence is a modest one; they are calm, moderate, phlegmatic--in a word, they are Flemings; such as are still to be met with sometimes between the Scheldt and the North Sea. CHAPTER II. IN WHICH THE BURGOMASTER VAN TRICASSE AND THE COUNSELLOR NIKLAUSSE CONSULT ABOUT THE AFFAIRS OF THE TOWN. "You think so?" asked the burgomaster. "I--think so," replied the counsellor, after some minutes of silence. "You see, we must not act hastily," resumed the burgomaster. "We have been talking over this grave matter for ten years," replied the Counsellor Niklausse, "and I confess to you, my worthy Van Tricasse, that I cannot yet take it upon myself to come to a decision." "I quite understand your hesitation," said the burgomaster, who did not speak until after a good quarter of an hour of reflection, "I quite understand it, and I fully share it. We shall do wisely to decide upon nothing without a more careful examination of the question." "It is certain," replied Niklausse, "that this post of civil commissary is useless in so peaceful a town as Quiquendone." "Our predecessor," said Van Tricasse gravely, "our predecessor never said, never would have dared to say, that anything is certain. Every affirmation is subject to awkward qualifications." The counsellor nodded his head slowly in token of assent; then he remained silent for nearly half an hour. After this lapse of time, during which neither the counsellor nor the burgomaster moved so much as a finger, Niklausse asked Van Tricasse whether his predecessor--of some twenty years before--had not thought of suppressing this office of civil commissary,
512
amazon
for wasting the money. Then again, where would I get the superfine brush at the exact width to make my own? I tried it to fix a DVD that was not reading. I assume it functions as specified, but it did not fix my problem. When you say publicly that all religions are a myth in the same breath that you denounce agriculture as a fraud (historys biggest fraud) and that all corporations are imaginary haven't you kicked almost every sacred cow in the book? According to Yuval Noah Harari, in his bestseller, Sapiens, a Brief History of Humankind, there are many more of these lies we have told ourselves throughout history in order to grow from our insignificant beginnings as homo-sapien hunter-gatherers in northern Africa into the technological god-like homo sapiens that now run corporate board rooms and scientific research laboratories which enable us to rule the planet. He never concludes why it matters that weve deluded ourselves in order to collectively communicate--just that we have done so--and must now keep-on keepin-on if we want to hang around for the next stage of human evolution. Lets make something clear, this book is a best seller for a reason. It is extremely well written and full of insight. Harari has taken about 125 years of National Geographic Magazine and condensed it into 400 easy to read pages. If you were wondering about the status of any anthropological evolutionary research as of 2015 you can read this book and are up to date. The book would have sold alone for this history professors Story of Us retelling. But he goes further. He poses the important questions in life and answers them with a remarkable call out to the capitalist form of mythology that now envelops and strives to assimilate the global economy. This theory alone, is fascinating, since we have all been a major part of it over the last 50 years...at least we have been witness to it. But had he brought his other theories to a conclusion, and I believe he could have, I would put this book on the same high plateau as I keep other great books such as, The Origin of the Conscious in the Breakdown of the Bicameral Mind, by Julian Jaynes and The Origin of Wealth by Eric Beinhocker. Both books ask critically important questions about human behavior and fearlessly take a stand on the answers. Harari, perhaps to be ultra politically correct, does not seem to want to offend anyone. The same way many college professors are loath to do these days. Thus his book suffers in the end. He leaves us with questions about our future, the past, perhaps helping us know that weve got no other choice. We are not Fitzgerald's boats beating against the current, being borne back ceaselessly into the past. Rather we are vessels, ready to be rewritten, to spring forward, and to reshape the future. This is what we have been able to do in a few scant hundred years or so versus the many millennium of very little
512
reddit
you know anything about Network Vision 1&amp;2? eHrpd is an evolution of the CSFB on CDMA2000 networks. TL;DR Same shit w/ WCDMA carriers such as T-Mobile &amp; AT&amp;T. 2: "GSM" doesnt mean ANYTHING anymore, like the user above said. When 2G died, (EDGE) GSM died w/ it. Thats WHY you MUST use VoLTE now on T-Mobile &amp; parts of AT&amp;T. 3: TD-LTE is a STANDARD and part of 3GPP LTE-A, release 10. Its also much faster, better and more efficient. 3xCA on a TD-LTE network exclusive on that channel will net you amazing speeds and reduces costs. 4: You don't understand what Carriers and Bands mean 5: 60 MILLION people use this company and not all of them are deadbeats, or whatever name you called them. Please stop spouting your fanboy bullshit. Also this applies to A3rdMan as well. Nobody is renting anything you moron. The community HON has built is absolutely vitriolic. S2 has had a good long time to put together a real casual game mode that encourage people to get together and have a short, fun game but they focused heavily on the pro scene. When they went f2p with hon, one of their big profit angles is to sell early access to heroes that are entirely over powered. This probably doesn't sit well with the competitive gamers they have spent a long time trying to attract. IMO they HAD a lot to offer, but they are in the middle of a huge pivot. The post mali made is at best an attempt to hedge the bleed of pro players they are now losing to dota2, which many people think has better graphics, a better replay system, and the ability to spectate any match you want to at a 2 minute delay. s2 had their chance with hon to be THE dota, now they are doing what they can to try and be solvant. The real history to the white lighter myth and why they are unlucky is based on four famous and revolutionary musicians of the second half of the 20th century. Jim Morrison, Jimi Hendrex, Janis Joplin, and Kurt Cobain were all left-handed, all died at the age of 27, and all their autopsies reported that a white bic lighter was found in their pockets. Im just gonna throw this out there so everyone doent start calling these hardways. This trick is called an alleyoop fs 360. This is how youd do a hardway fs 360 but you only use that term when youre spinning the *hardway* onto a rail. So coming in fs on a rail and doing a fs 3 on would be a hardway. An alleyoop is any rotation popped from the opposite edge (back 3 off the heels, front 3 off the toes). Nice style on the spin though ;) My boyfriend is 25 and I am 19, and it's not creepy at all. I don't regret it at all (and I doubt I ever will) because he's a perfect gentleman to me and it's been nothing but good experiences with him. We're also at similar
512
s2orc
al. [5] gave a NLO calculation the hadronic matrix element of B → ππ, πK in the heavy quark limit. They pointed out that in the heavy quark limit the radiative corrections at the order of α s can be calculated with perturbative QCD method. In D → πK decay, the momentum transition square is q 2 = 1.7GeV 2 , and the radiative corrections of the hard-gluon exchanges can also be calculated with perturbative QCD approach. So, the hadronic matrix elements for D → πK can be expanded by the powers of α s and Λ QCD mc as follows: Kπ|O i |D = K|j 1 |D π|j 2 |0 [1 + r n α n s + O( Λ QCD m c )],(1) where O i are some local four-quark operators in the weak effective Hamiltonian and j 1,2 are bilinear quark currents. In Eq. (1), the power correct term O( Λ QCD mc ) includes softgluon effects, final state interaction, which can not be calculated in QCD factorization and perturbative QCD method. For the B meson two-body decay, the term is small, but it is large and can not be neglected in the D → πK decay. A few years ago, A. Khodjamirian [6] has presented a new method to calculate the hadronic matrix elements of nonleptonic B meson decays within the framework of the light cone QCD sum rules, where the nonfactorizable soft-gluon contributions can effectively be dealt with. Obviously, this approach can be applied to D → πK decay. The QCD factorization method can be applied to D → ππ, πK and Kρ decay, but we should calculate the contribution of power term O( Λ QCD mc ). The power term includes the contributions of soft-gluon effect, final state interaction and annihilation effects, since the power term in D → ππ, πK, Kρ decay is larger than B → ππ, πK, Kρ decay. We firstly considered D → ππ decay in QCD factorization and light cone QCD sum rules method [7]. We found either the hard-gluon effect (O(α s ) correction) or the soft-gluon effect is small, and only found the calculation result of D 0 → π + π − decay channel approaches the experiment data. It indicated that we should consider the contributions of final state interaction and annihilation effects in D → ππ decay. In this paper, we apply the QCD factorization including light cone QCD sum rules method to study D → πK, KK decay and obtain new results. In D 0 → π 0 K 0 decay, we find both hard gluon and soft gluon contributions exceed the leading order largely, and the calculation result is accordance with the experiment data. In other decay channels, we should calculate all power terms, which include soft-gluon exchanges, final state interaction and annihilation effects, and then we can compare the calculation results with the experiment data. However, the final state interaction and annihilation effects haven't reliable method to calculate up to now. In our work, we calculate the leading order and α s corrections in
512
reddit
have focused my attention to Kathleen Lord, the lady who actually made the comment about not voting Conservative and it being a reason they weren't receiving the assistance she felt they deserved. I'll admit, maybe I hold a bit of a grudge against the province that feels it's somehow superior to the rest of this awesome country, but in no way do I "hate" Quebec. It's called patriotism, dude. Are you even Canadian? I might be a little late to the party, but I second this advice and would like to add to it. You said elsewhere in here that she'd never even met you. It's much easier to brush someone off when there's not even a name attached to the face. Take a day to calm down, set up a time to meet with her, and approach it not as a "me v. you" situation, but let her know that you want to work with her to make it a mutually advantageous relationship. Be calm, give specific examples of why you are good to keep around (good for her-- it's not her problem that you need experience or money. Tell her how hard and efficiently you work, how well you work with the staff, etc.), and be clear that you wish to uphold the agreement that you made upon hiring to work those hours. It sounds like you've already got a lot of preconceived notions about how awful she is, and I know how easily that happens when there's a common enemy in the workplace. But go in with an open mind-- you will feel much more relaxed if you approach her as someone who is going to be reasonable and open to working with you. If you go in looking for a fight, you're going to get one. This is a good life lesson that the people we work with aren't necessarily our friends, and we need to approach them with professionalism, courtesy and respect. If she isn't willing to have a reasonable discussion with you, then move on gracefully. But if you just up and quit and you never even had a face-to-face discussion with her, it sounds like you're not really ready to join the adult professional world. It's hard to do and no fun at all, but in the end you'll be better for it (and it makes for a much better answer to the interview question about dealing with a work conflict than "I booked it out of there the second someone wasn't nice to me."). Good luck! Comrade Lenin declared the Tsarist criminal code null and void but it is inaccurate to claim he legalized homosexuality. Unlike what anticommunists say, the USSR was not a dictatorship and laws were enforced differently in different areas; anti-sodomy laws were still on the books in the Soviet Republics of Azerbaijan, Turkmenia, Uzbekistan, and Georgia since they had degrees of autonomy to enact their own laws. The official Soviet stance at the time was that homosexuality was a disease that was very difficult or perhaps impossible to cure. Soviet medical
512
reddit
her will. But then she can't help herself. Luxembourg's military use to consist of 4 companies and was just a mess to look after and such. As of today Luxembourg's military will consist of two groups; Company Alpha and the Educational Division. Company Alpha is Luxembourg's main attack/defence force, depending on the situation. The Educational Division of Luxembourg is a non-combat section of the military. It's role is to teach and train new recruits. En este pais hay una verdad incomoda que es inevitable. Nunca vamos a salir adelante si gastamos mas de lo que generamos. Estamos en una situacion de mierda, y hechar gente que hoy no aporta al estado pero cobra un sueldo como decis vos es una mierda, y no va a haber una solucion para esas personas realmente. Por otro lado, me parece que el ver la imagen solo actual no te esta permitiendo ver hacia donde vamos si seguimos así, esa gente que hoy perdería el trabajo va a estar mejor si no lo pierde por un tiempo, pero mas adelante no van a estar mejor, y sus hijos van a estar peor, y también van a estar peor los que hoy no se verian afectados. Ojala se me ocurriera una solución hacia un futuro mejor donde nadie se vea afectado, pero no creo que sea una posibilidad. Las opciones son o intentamos cambiar eso a costa de mucha gente, lo cual me retuerce realmente por dentro, o seguimos así pensando en el hoy, y nuestros hijos van a heredar un pais mas complicado todavia, donde van a tener que tomar decisiones mas complicadas, con un costo social mas grande aún. Se que nos cuesta pensar en gente que no existe hoy, y es totalmente entendible, yo no entiendo porque alguien querria agarrar este pais para gobernar, cuando lo unico que te quedan son opciones de mierda. Nunca va a existir una solucion magica sin costo social, y sin una solucion costosa el costo social será mas grande, solo que en el futuro. Así nos jusgarán las generaciones futuras. I’m a first year K teacher and I’m hoping to be like this too. I’m sure I’ll be putting in some extra time in the beginning, but with an aide, a prep period, and a computer I can take home, I’m thinking it’s possible to be home and not at school all night. I’ve been working on my classroom this summer and it’s the chatty teachers popping in (which I appreciate, I’m new and everyone is so welcoming!) that get me off task anyway. Maybe this is wishful thinking, we’ll see. Yeah, I'm only just now learning this from your and other's comments. I looked it up, and while this is a good idea, it seems to be more important when the concrete is fresh. My house was built in 1974, so hopefully the concrete is bone dry by now. Hopefully... That's how I feel now. I just don't believe anything and the fact that I've already broken her trust with her phone makes things worse, because she's just even
512
sfu-socc
about it at all. A known decision, one way or the other, could have been a clear basis for a lawsuit by the four groups, but they brought a court application anyway, including a request for documents.</p><p>Wayne Wouters, the Clerk of the Privy Council, objected to disclosing certain documents, saying they were subject to cabinet confidentiality. But Justice Denis Pelletier said that every ministerial decision not to make a decision surely couldn't be off-limits; it might never reach the cabinet table at all.</p><p>The judge concluded that both sides had made the case more difficult, and that there was a risk that the litigation might go on so long that the sage grouse would already be extinct in Canada before it was resolved. The appeal court sent the case back to the trial court on the basis that the Minister of the Environment, who is now Leona Aglukkaq, would communicate her position unequivocally, so that the parties can become clear about just what the dispute is about and get on with it.</p><p>Not everything that might get to the cabinet is already at the cabinet.</p> If the guideline is missing critical information, how do you expect thousands teachers to teach it properly? Also, please never overestimate kid's capability to learn risks and insist the lure. <p>In the face of mounting criticism of the so-called Fair Elections Act, Democratic Reform Minister Pierre Poilievre keeps repeating the same stale talking points. In the face of repeated proof that these talking points involve torturing the research of elections experts and warping their findings, the Minister insists that he is 'quoting them accurately.' When the experts in question, such as former B.C. elections chief Harry Neufeld, speak out against the bill, and the Minister's misuse of his research and his words, Mr. Poilievre responds that he does not share their conclusions, or those of apparently any impartial elections experts. When pressed to show some evidence, any evidence, in support of the most contentious aspects of the bill, the Minister circles back to the comfort of his original talking points. Which are based on no evidence at all. It is surreal.</p><p>(What is the Fair Elections Act? Read The Globe and Mail's easy explanation)</p><p>The Conservative government is attempting to rewrite the fundamental law of our democratic system, against the will of the opposition, the experts, the non-partisan body in charge of elections, and the facts. What's the government got in response? Willpower. That's it. We are being pushed through the looking glass.</p><p>Mr. Poilievre was dispatched late last week and over the weekend to make the talk-show rounds, and the cycle of assertion by talking points, denial of evidence and rejection of opponents continued, all with an able smile. He told CTV's Question Period that, despite almost universal criticism, 'it is a very fair and reasonable bill.' When asked whether he'd consider amendments, he said it was 'too early to say.' (In a few weeks, it will be too late.) When asked why he wasn't listening to Chief Electoral Officer Marc Mayrand, the man entrusted by Parliament with the job of running
512
Gutenberg (PG-19)
are drawn into this whirl of sexualized public opinion; the old-fashioned policy of silence has been crushed by a policy of thundering outcry, which is heard in every home and every nursery. This loudness of debate is surely an effect of the horror with which the appalling misery around us is suddenly discovered. All which was hidden by prudery is disclosed in its viciousness, and this outburst of indignation is the result. Yet it would never have swollen to this overwhelming flood if the nation were not convinced that this is the only way to cause a betterment and a new hope. The evil was the result of the silence itself. Free speech and public discussion alone can remove the misery and cleanse the social life. The parents must know, and the teachers must know, and the boys must know, and the girls must know, if the abhorrent ills are ever to be removed. But there are two elements in the situation which ought to be separated in sober thought. There may be agreement on the one and yet disagreement on the other. It is hardly possible to disagree on the one factor of the situation, the existence of horrid calamities, and of deplorable abuses in the world of sex, evils of which surely the average person knew rather little, and which were systematically hidden from society, and above all, from the youth, by the traditional method of reticence. To recognize these abscesses in the social organism necessarily means for every decent being the sincere and enthusiastic hope of removing them. There cannot be any dissent. It is a holy war, if society fights for clean living, for protection of its children against sexual ruin and treacherous diseases, against white slavery and the poisoning of married life. But while there must be perfect agreement about the moral duty of the social community, there can be the widest disagreement about the right method of carrying on this fight. The popular view of the day is distinctly that as these evils were hidden from sight by the policy of silence, the right method of removing them from the world must be the opposite scheme, the policy of unveiled speech. The overwhelming majority has come to this conclusion as if it were a matter of course. The man on the street, and what is more surprising, the woman in the home, are convinced that, if we disapprove of those evils, we must first of all condemn the silence of our forefathers. They feel as if he who sticks to the belief in silence must necessarily help the enemies of society, and become responsible for the alarming increase of sexual affliction and crime. They refuse to see that on the one side the existing facts and the burning need for their removal, and on the other side the question of the best method and best plan for the fight, are entirely distinct, and that the highest intention for social reform may go together with the deepest conviction that the popular method of the present day is
512
s2orc
Immunology Program, Memorial Sloan Kettering Cancer Center, Gerstner Sloan Kettering Graduate School Gung University 10065New YorkNYTaiwan, USA † Jayanta Chaudhuri chaudhuj@mskcc.org Weill Cornell Graduate School of Medical Sciences New YorkNYUSA Immunology Program Memorial Sloan Kettering Cancer Center Gerstner Sloan Kettering Graduate School New YorkNYUSA University of Illinois College of Medicine USA Jayanta Chaudhuri , Immunology Program, Memorial Sloan Kettering Cancer Center, Gerstner Sloan Kettering Graduate School Gung University 10065New YorkNYTaiwan, USA Amy L Kenter Sebastian Dudo Fugmann Chang Bharat Vaidyanathan Wei-Feng Yen Joseph N Pucella AIDing chromatin and transcription-coupled orchestration of immunoglobulin class-switch recombination published: 28 March 201410.3389/fimmu.2014.00120REVIEW ARTICLE Edited by: Ananda L. Roy, Tufts University School of Medicine, USA Reviewed by: *Correspondence:cytidine deaminationDNA recombinationDNA repairclass-switchingR-loops have contributed equally to this work.Secondary diversification of the antibody repertoire upon antigenic challenge, in the form of immunoglobulin heavy chain (IgH) class-switch recombination (CSR) endows mature, naïve B cells in peripheral lymphoid organs with a limitless ability to mount an optimal humoral immune response, thus expediting pathogen elimination. CSR replaces the default constant (C H ) region exons (Cµ) of IgH with any of the downstream C H exons (Cγ, Cε, or Cα), thereby altering effector functions of the antibody molecule. This process depends on, and is orchestrated by, activation-induced deaminase (AID), a DNA cytidine deaminase that acts on single-stranded DNA exposed during transcription of switch (S) region sequences at the IgH locus. DNA lesions thus generated are processed by components of several general DNA repair pathways to drive CSR. Given that AID can instigate DNA lesions and genomic instability, stringent checks are imposed that constrain and restrict its mutagenic potential. In this review, we will discuss how AID expression and substrate specificity and activity is rigorously enforced at the transcriptional, post-transcriptional, post-translational, and epigenetic levels, and how the DNA-damage response is choreographed with precision to permit targeted activity while limiting bystander catastrophe. INTRODUCTION B cells are specialized lymphocytes that express Ig receptors (or antibodies) on their cell surface. Antibodies are comprised of immunoglobulin heavy chains (IgH) and light chains (IgL), with the N-termini of IgH and IgL generating the antigen-binding pocket, and the C-terminus of IgH performing effector functions. A salient feature of B-lymphocytes is their ability to recognize an almost infinite array of antigens. This enormous diversity is achieved through V(D)J recombination, a process that assembles the exons encoding the amino-terminal variable regions of IgH and IgL from component variable (V), diversity (D), and joining (J) segments (1). The end product of V(D)J recombination is a mature but naïve IgM + B cell that exits the bone marrow. In the context of specialized structures called germinal centers in secondary lymphoid organs such as the spleen and lymph nodes, mature B cells interact with antigens and undergo class-switch recombination (CSR) (2,3). The mouse IgH locus is comprised of eight constant region (C H ) exons, with Cµ most proximal to the variable region segments and Cα being the most distal (Figure 1). CSR exchanges the default Cµ for an alternative set of downstream C H exons, for example, Cγ, Cε, or Cα, so that
512
reddit
will respond to stupid attempt of Solo to impress them with obvious misinformation. However, I direction is forgotten, or performance of Guinness is made look like it just stupid incorrect line, I think that was unknown. Then, Mo about the entire fan theory, was to have become a very popular acceptance as a more or less canon. And, THEN George is apparently claiming "This is a very simple boat ..." navicomputer because will be calculated much faster route than other ship parsec is, advanced navigation of the Millennium Falcon - rather than a computer, the possibility, "he that has been attributed to the engine changes that have been made to it, a wide range some rather - in order to get through the hyperspace of the shortest distance possible, most (per sect) the navigation system, "it is a little to me sounds like a cow. Well, despite my pessimistic hyperbole (which you have to understand was only the scenario I was projecting if people with your attitude were calling the shots at Oculus), I'm quite an optimistic person at heart. I think this is something that is easy and worthwhile to do, and I'm interested in it. Meanwhile, take a look at your own post history, dude. This isn't the only thread where you've been a pessimist and a naysayer and have contributed nothing constructive to the conversation. But I notice you don't have any problem calling other people lazy when they fail to do things you think are worthwhile. Fortunately, I think the people at Oculus aren't so hard to convince as you are. Again, I question your motives. It's obvious what I'm getting out of fighting for a feature I want. What are **you** getting out of this? So a while ago I posted here about pulling a bad IV Lucina. Y'all convinced me to keep her, and I did. She is running a furynewal set. I tried it my hand at summoning some female mages and lo and behold I got a second Lucina! This is amazing! But now I have a choice, I'm going to me them, but which do I keep? It's a choice between +spd-atk or +res-spd. Which should I choose? Or does merging work differently than that? Great, now we have a herb grinding simulator. Somehow you are making this more unappealing with every defense. "Oh, uh, now you can't spend the 800gp you gathered in the last few dungeons to buy herbs because, uh, the entire city is out of herbs. Also the entire countryside. Also probably this whole plane of existence." Shit, man. I'm at that point now. Weird how that works. I'm gonna hit you with two extremes: 1. Fuck 'em. Your roommate broke the bro code, you now know what he values. Your ex didn't value your feelings enough to give you space. Neither are worth your time anymore. 2. You can be happy for them if you want, as others have said, but it's bad to try to fool yourself into being happy for them if that's not what you feel right
512
reddit
a proper 2D paint system into Blender, and that was before the node based compositor. The entire justification of basing it on Blender was the UI toolkit was cross platform and had image handling already. Needless to say he never got very far, but it's only a matter of time before someone does. The core graphics routines are all there to do it, certainly more so than when this guy tried. There have been more famous forks like DTP Blender used for page layout, and the Tuhopuu (spelling?) branches spawned a lot of the features in Blender today. It seems Blender's a lot more unified now than it was a year after the source was opened. The concern, which primarily was evident from the Yafray people, is that Blender is simply too hacked together. Things on this front have apparently improved, but there are lots of long standing examples of technically erroneous behaviour, especially as regards some aspects of materials settings. A working system is always better than a perfect non existent one though. I think a lot of people don't realize the easy savings in making beer. Sure all the equipment gets expensive, but a break even analysis will show how quickly you'll start saving. Say you drink two $2 beers per day. Now lets estimate high that your bottle of home brew costs $0.50 per bottle. With $600 in equipment it will only take 200 days to start saving money by switching to drinking home brew. I don't want to hear anything about opportunity cost, if you weren't brewing you'd just be doing some other leisure activity. They have the largest population in the world so of course just going by gross numbers they're going to score high. The per capita number is like .2 per million in the U.S. versus .7 in China. Beyond that it's foolish to use "number of people executed" to stand in for a holistic measure of a society's "value for human life," whatever that means to you. I don't support the death penalty in principal and even have some ultraleftist views towards the class character of the Chinese state, but your argument doesn't make sense outside of a chauvinist perspective. I would highly recommend you make it a priority to see a doctor about this. Hypoglycemia is no laughing matter and can lead to severe complications such as seizures, loss of consciousness, impairment, and death. If you are really that hard up, buy yourself a glucose monitor (They are very cheap and often come with sample test strips) and check your levels when you start to get that cold, clammy, faint feeling. Its not as good as a full blood panel and examination, but at least it can help you get an idea of what is going on with your body. Keto is good for maintaining a steady blood glucose, but if your body is overproducing insulin, you can still crash. I am diabetic, but I know very well what it feels like to crash. Cold, clammy, dizzy, heart racing, tunnel vision, feels like you
512
StackExchange
settings to rename them. Still, getName() returned "Motorola T605". I needed to get the Alias name. The function for that exists but is not exposed. You can see it in this Java class: https://android.googlesource.com/platform/frameworks/base/+/56a2301/core/java/android/bluetooth/BluetoothDevice.java This worked for me. First get the array of paired devices: Set<BluetoothDevice> pairedDevices = mBTA.getBondedDevices(); Then loop through the array: for (BluetoothDevice device : pairedDevices) Then see if you can find an alias name: String name = null; try { Method m = device.getClass().getMethod("getAlias"); Object res = m.invoke(device); if(res != null) name = res.toString(); } catch (NoSuchMethodException e) { e.printStackTrace(); } catch (InvocationTargetException e) { e.printStackTrace(); } catch (IllegalAccessException e) { e.printStackTrace(); } if(name == null) name = device.getName(); If you can't get an alias, get the normal name. I could do a better job of preventing and handling exceptions but it seems to work. Q: Changing android signing key password Does anybody know how (and if) you can change the password used to sign android builds? We have a live app, but want to change the signing password. The problem is that we don't want to force our users to reinstall the app (if we use a new key users won't be able to install the new build as an update to the original app). I've looked all over the android documentation, but have been unable to find anything even related to the subject (except for making a new key...). A: Actually, this is possible: keytool -storepasswd -keystore my.keystore A: You can change the key password , if you have the old password. What you need to run is the following command : keytool -keypasswd -alias "key_alias" -keypass "old_pass" -new "new_pass" -keystore "your_keystore_path" A: This is not possible. It is the signing key that identifies you as the original author and not an imposter. The "how do I recover my lost key" question comes up frequently, and the only answer is to start over with a new application. If you still have the original signing key, you could release an update to your application which exports user data used by your program, and then release a new app under a new key which can import it, so at least they'd be able to keep their data. Your migration update under the old key could even use an intent to send the the user to the market download page for the new application. Q: Converting array to matrix in R I have an array, including two proficiency variables (theta0, theta1) over an item (Yes, No) called "comp". This needs to be converted to one matrix. Is there any way that I could convert a matrix like the one at the bottom? My array looks like this: >priCPT.i6 , , comp = Yes theta1 theta0 Low Med High Low 0.8377206 0.6760511 0.4576021 Med 0.6760511 0.4576021 0.2543239 High 0.4576021 0.2543239 0.1211734 , , comp = No theta1 theta0 Low Med High Low 0.1622794 0.3239489 0.5423979 Med 0.3239489 0.5423979 0.7456761 High 0.5423979 0.7456761 0.8788266 attr(,"class") [1] "CPA" "array" I apologize, I could not produce something that you could play with. I
512
reddit
you're a pussy abuser men never suffer any oppression in life, any proof of this means your a MRA rapist. if a womyn does something by herself, shes a strong independent womyn, she makes a mistake? thats patriarchy they treat women like little children removing all responsibility from them, then claim people are sexist at the same time. white and like asian women or any type of women that isnt white? fetishist misogynistic asshole black and like white women? brave and progressive etc etc etc TL;DR everything is sexist and racist,fuck white people When it’s good, it’s good. And wheaters really shine when they’re aged past 12 years. I agree, and I hate to add fuel to all the pretentious assholes who have driven the price of this up by orders or magnitude, but it’s some of the best bourbon that exists if not *the* best IMO. You can't simply project college stats into the NBA, especially when Teague was on a team with several ball-dominant players, including two that like to operate out of the post (Jones, Davis), and one that likes to take a lot of jumpers and drive (MKG). There are many college players with high assist averages that won't see the light of day in the NBA. [Just looking at the stats shows how Teague really didn't perform all that badly] (http://www.draftexpress.com/article/By-the-Numbers-The-2012-Guard-Crop-3986) The one thing that stood out when I attended the second Vanderbilt-Kentucky game earlier this year was how bad the entire Kentucky team was at spot-up shooting, except maybe Doron Lamb. That alone can make a big difference in a point guard's assist stats. What does project into the NBA is if a player can penetrate a defense and make a pass. Teague was superb at that, and excelled at the pick and roll, which is pretty much the entire Bulls' offense. I know exactly how you feel. When I was a kid, still living at home, I would get up in the middle of the night to make sure my parents and younger brother were all still breathing. Just couldn't sleep until I knew for sure. I try to cherish every second that I have with them and try to remember that when I am worrying about them/the inevitable, I am not paying attention to them, I am not enjoying their presence. The worry is still there, but it's better now that it used to be. I hope the feeling gets better for you. It is relevant because people are portraying rice as a wife beater. Did he overreact? Sure. Are there better ways to handle that situation? Of course. But we should both know that comparing Rice's actions to a man that beats a woman unprovoked are pretty different things. &gt; Which isn't a good indication of what Red Pill thinking is according to you. I don't see why you would say that. Maybe because I expressed the opinion that the TRP sub tends to be more adolescent type red pill? &gt;So one last question. If one were to put together a critique of things
512
Github
# directive. # # Change this to Listen on specific IP addresses as shown below to # prevent Apache from glomming onto all bound IP addresses (0.0.0.0) # #Listen 12.34.56.78:80 Listen 80 # # Dynamic Shared Object (DSO) Support # # To be able to use the functionality of a module which was built as a DSO you # have to place corresponding `LoadModule' lines at this location so the # directives contained in it are actually available _before_ they are used. # Statically compiled modules (those listed by `httpd -l') do not need # to be loaded here. # # Example: # LoadModule foo_module modules/mod_foo.so # LoadModule auth_basic_module modules/mod_auth_basic.so LoadModule auth_digest_module modules/mod_auth_digest.so LoadModule authn_file_module modules/mod_authn_file.so LoadModule authn_alias_module modules/mod_authn_alias.so LoadModule authn_anon_module modules/mod_authn_anon.so LoadModule authn_dbm_module modules/mod_authn_dbm.so LoadModule authn_default_module modules/mod_authn_default.so LoadModule authz_host_module modules/mod_authz_host.so LoadModule authz_user_module modules/mod_authz_user.so LoadModule authz_owner_module modules/mod_authz_owner.so LoadModule authz_groupfile_module modules/mod_authz_groupfile.so LoadModule authz_dbm_module modules/mod_authz_dbm.so LoadModule authz_default_module modules/mod_authz_default.so LoadModule ldap_module modules/mod_ldap.so LoadModule authnz_ldap_module modules/mod_authnz_ldap.so LoadModule include_module modules/mod_include.so LoadModule log_config_module modules/mod_log_config.so LoadModule logio_module modules/mod_logio.so LoadModule env_module modules/mod_env.so LoadModule ext_filter_module modules/mod_ext_filter.so LoadModule mime_magic_module modules/mod_mime_magic.so LoadModule expires_module modules/mod_expires.so LoadModule deflate_module modules/mod_deflate.so LoadModule headers_module modules/mod_headers.so LoadModule usertrack_module modules/mod_usertrack.so LoadModule setenvif_module modules/mod_setenvif.so LoadModule mime_module modules/mod_mime.so LoadModule dav_module modules/mod_dav.so LoadModule status_module modules/mod_status.so LoadModule autoindex_module modules/mod_autoindex.so LoadModule info_module modules/mod_info.so LoadModule dav_fs_module modules/mod_dav_fs.so LoadModule vhost_alias_module modules/mod_vhost_alias.so LoadModule negotiation_module modules/mod_negotiation.so LoadModule dir_module modules/mod_dir.so LoadModule actions_module modules/mod_actions.so LoadModule speling_module modules/mod_speling.so LoadModule userdir_module modules/mod_userdir.so LoadModule alias_module modules/mod_alias.so LoadModule rewrite_module modules/mod_rewrite.so LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_balancer_module modules/mod_proxy_balancer.so LoadModule proxy_ftp_module modules/mod_proxy_ftp.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule proxy_connect_module modules/mod_proxy_connect.so LoadModule cache_module modules/mod_cache.so LoadModule suexec_module modules/mod_suexec.so LoadModule disk_cache_module modules/mod_disk_cache.so LoadModule file_cache_module modules/mod_file_cache.so LoadModule mem_cache_module modules/mod_mem_cache.so LoadModule cgi_module modules/mod_cgi.so # # The following modules are not loaded by default: # #LoadModule cern_meta_module modules/mod_cern_meta.so #LoadModule asis_module modules/mod_asis.so # # Load config files from the config directory "/etc/httpd/conf.d". # Include conf.d/*.conf # # ExtendedStatus controls whether Apache will generate "full" status # information (ExtendedStatus On) or just basic information (ExtendedStatus # Off) when the "server-status" handler is called. The default is Off. # #ExtendedStatus On # # If you wish httpd to run as a different user or group, you must run # httpd as root initially and it will switch. # # User/Group: The name (or #number) of the user/group to run httpd as. # . On SCO (ODT 3) use "User nouser" and "Group nogroup". # . On HPUX you may not be able to use shared memory as nobody, and the # suggested workaround is to create a user www and use that user. # NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET) # when the value of (unsigned)Group is above 60000; # don't use Group #-1 on these systems! # User apache Group apache ### Section 2: 'Main' server configuration # # The directives in this section set up the values used by the 'main' # server, which responds to any requests that aren't handled by a # <VirtualHost> definition. These values also provide defaults for # any <VirtualHost> containers you may define later in the file. # # All of these directives may appear inside <VirtualHost> containers, # in which case these default settings will be overridden
512
Gutenberg (PG-19)
TEETH OF GEAR-WHEELS.= PAGE =Gear-Wheels.= Spur-wheels, bevel-wheels, mitre-wheels, crown-wheels, annular or internal wheels 1 Trundle-wheels, rack and pinion-wheel and tangent screw, or worm and worm-wheel 1 The diameter of the pitch circle of 1 =Gear-Wheel Teeth.= The face, the flank, the depth or height 1 The space, the pitch line, the point, the arc pitch, the chord pitch, the line of centres 2 Rules for finding the chord pitch from the arc pitch; table of natural sines; diametral pitch; finding the arc from the diametral pitch; table of arc and diametral pitches 3 =Gear-Wheels.= The driver and follower, a train of gears 3 Intermediate gears 3 The velocity of compounded wheels 4 Finding the diameters of the pitch circles of 4 Considered as revolving levers 5 Calculating the revolutions of, and power transmitted by 5 The angular velocity of 6 =Gear-Wheels.= Hunting tooth in, stop motion of 7 =Gear-Wheel Teeth.= The requirements and nature of the teeth curves 7 Cycloidal curves for the faces of; epicycloidal and involute curves; the hypocycloidal curve; method of forming or generating the epicycloidal and hypocycloidal curves for the faces and flanks of gear teeth 8 Applications of the epicycloidal and hypocycloidal curves in the formation of gear teeth 9 The diameter of the circle for generating the epicycloidal and hypocycloidal curves; graphical demonstration that the flank curves are correctly formed to work with the face curves of the other wheel 10 Graphical demonstration that the curves are correct independent of either the respective sizes of the wheels, or of the curve generating circles 11 =Gear-Wheels.= Hand applications of the rolling or generating circle to mark the tooth curves for a pair of wheels 12 =Gear-Wheel Teeth.= The variation of curve due to different diameters of wheels or of rolling circles 12 Tracing the path of contact of tooth upon tooth in a pair of gear-wheels; definition of the "arc of approach;" definition of the "arc of recess;" demonstration that the flanks of the teeth on the driver or driving-wheel have contact with the faces of the driven wheel during the arc of approach, and with the flanks of the driven wheel during the arc of recess 13 Confining the action of the teeth to one side only of the line of centres, when motion rather than power is to be conveyed 13 Demonstration that the appearance or symmetry of a tooth has no significance with regard to its action 14 Finding how many teeth will be in constant action, the diameter of the wheels, the pitch of the teeth, and the diameter of the rolling circle being given 15 Example of the variation of tooth form due to variation of wheel diameter 15 =Gear Teeth.= Variation of shape from using different diameters of rolling circles 16 Thrust on the wheel shafts caused by different shapes of teeth 16 =Gear-Wheels.= Willis' system of one size of rolling circle for trains of interchangeable gearing 16 Conditions necessary to obtain a uniform velocity of 16 =Gear Teeth.= The amount of rolling and of sliding motion of 16 The path
512
YouTubeCommons
highlights and i felt that it looked really messy because my roots grew out and it was getting very brassy so i decided to go darker i went for like a grayish dark brownish color but as of now it just looks really dark almost black but in the sunlight it's more brown and it's definitely going to fade and then the highlighted parts are going to be lighter than the rest of my hair so i'll kind of have like the highlights again but anyways i was getting ready for a radio and i received a package it's a very nice black velvet case and inside what do we have oh my gosh look how beautiful that looks wow this is amazing i received this from rose forever which is based in new york and they specialize in these handcrafted eternity roses arrangements they're meant to last at least a year and this is possible because they preserve it with natural oils which is really rad i don't know why i said that which is really cool i think this would be a perfect gift for a special occasion whether it's valentine's day somebody's birthday anniversary mother's day you know i love flowers i love receiving flowers but sometimes when you don't try them right it just sucks having to throw those beautiful flowers out and the fact that this lasts more than a year it's crazy so if you guys are interested i'll leave a 20 off code on the screen and the link in the description box so you guys can check it out and thank you to rose forever for sending me this beautiful arrangement wow [Music] that's crazy and this is also the largest size hey so i am getting ready to meet joan today we're gonna film another wine spill video for both of our channels because it's gonna be our 30th birthday very soon so we're gonna celebrate by doing another q a session regarding adulting turning 30 looking back on our 20s and i don't know i'm kind of feeling anxious about it because i hardly remember my 20s like i remember which events took place and stuff because i have pictures but i'm not really sure how i felt back then i think life was just too busy and hectic for me to slow down and stop and reflect on my thoughts it was just go go go go go and then once i had time to stop it was like i didn't want to think about anything i'm gonna meet joan at a brunch cafe called bobby and then we're gonna eat and then go to her house and film the wine spill video also i got new pjs for the fall no we skipped fall for the winter i got sojung a pair of pjs for her housewarming gift and were matching i saw these pjs and i thought they would look good on sojourn but i also love the color because it's like dark green and pink i was like
512
realnews
at the heart of Ravel’s Piano Concerto in D major for the Left Hand and Gershwin’s “Rhapsody in Blue.” Those two popular works filled the hall for this program (which repeats twice through Saturday) and gave Robertson license to toss in a wild card: Elliott Carter’s Variations for Orchestra. It began the show, and I suppose one can connect the dots to what followed. Like Ravel, a Frenchman enamored by American sounds, and like Gershwin, an American entranced by Ravel and the French, Carter, a New Yorker, was steeped in American musical vocabulary, but studied with Nadia Boulanger in Paris and was a deft colorist and orchestrator. His Variations are a micro-weave of fleeting events, colors, densities and moods. Think of a Kurt Schwitters collage: jagged, busy, alive, though not very beautiful, at least not in any typical sort of way. Composed in 1955, the Variations can have a bitter flavor, like the powder of crushed pills. Wednesday’s performance also displayed Carter’s affinity for burly melody: flashes of melancholy here, reminiscent of Charles Ives, who was a mentor to Carter. The finale’s walloping flourishes of timpani and trombone were a gas, though there was a sense throughout that some members of the orchestra were just flipping pages. Overall, the performance didn’t have enough bristle. By contrast, Ravel’s left-hand concerto was a hair-raiser, from its opening measures, which seemed to rise out of a primordial murk, with the dark rumble of bass violins and contrabassoon. This performance covered all fronts: the crisp military rhythms, the music-box sonorities, the cleverness and the tenderness of Ravel. Keenly guided and encouraged by Robertson, the orchestra complemented Hamelin, who was exacting and expressive, mining the piano for specific sounds: spiky, cold and metallic in those opening, subterranean measures. With this piece, when the soloist is on the mark, as was Hamelin, it always feels as if one is witnessing a series of hat tricks: all that music, coming out of one hand? With his fingers held low to the keys or arched high, driving down like pistons, Hamelin zipped and hopped across the keyboard’s length, chording and coaxing, settling into Ravel’s lyric meditations or generating rhythmic electricity to the extreme — and all without visible tension. He might have been lobbing tennis balls around. The brass section sounded unusually sonorous and liberated, yet, combined with the percussion, it sometimes overran the low strings, and occasionally Hamelin, too. The same problem occurred during stretches of “Rhapsody In Blue,” composed by Gershwin in 1924 and orchestrated by Ferde Grofé. Yet its Jazz Age rhythms and harmonies, its essential feel, still were well captured during this luxurious performance by the orchestra, and especially by Hamelin. Among classical pianists, there aren’t many with his jazz affinities. (Try out his CD of works by the jazz-obsessed Russian composer Nikolai Kapustin, on which Hamelin embodies styles from Art Tatum to McCoy Tyner.) Wednesday, Hamelin’s performance was playful, romantic, blues-tinged, languorous, then flashy. It evoked a neat vision: a meeting of Sergei Rachmaninoff and Eubie Blake. Wednesday, Marc-Andre Hamelin was the next-best thing. Contact
512
ao3
it was her, but the words she was using? They were not the ones she’d have said to him before. She wasn’t trying to comfort him or make him feel better; she was just… telling him to get over it. She sounded like _him_. “Nora—” Stars, Under Stone **Author's Note:** > Note from the HASA Transition Team: This story was originally archived at LINK, which closed in February 2015. To preserve the archive, we began manually importing its works to the AO3 as an Open Doors-approved project in February 2015. We posted announcements about the move, but may not have reached everyone. If you are (or know) this author, please contact The HASA Transition Team using the e-mail address on the LINK. _'You move me, Gimli,' said Legolas. 'I have never heard you speak like this before. Almost you make me regret that I have not seen these caves. Come! Let us make this bargain—if we both return safe out of the perils that await us, we will journey for a while together. You shall visit Fangorn with me, and I will come with you to see Helm's Deep.' --The Two Towers_ Trees they had seen, and trees some more. Ancient, dark, secret trees, that had been sinking their roots into the earth since Durin woke, it seemed. Gimli had to admit that they were, after their kind, impressive; fantastic sculptures of bough and branch, untouched by any hand, yet like to the fanciful shapes of dream. Green-mossed, harsh-barked, the stippling of soft and rough, light and shadow, who could be immune to the beauty and majesty of these quiet giants, leafy above them? Yet Gimli was not delighted by the trees so much as by watching his friend's delight. Legolas ran from one to the next, casting his hands over their bark, standing as if in deep thought, or silent speech, or sometimes speaking out loud. Sometimes the trees seemed to answer, and the deep groaning and creaking of their speech set Gimli's teeth on edge, but Legolas was delighted as a child. Beside the giant trunks and upthrust buttressed roots, some huge as houses, Legolas did indeed look like a small child. Gimli reflected that perhaps what the Elf loved most was to touch a living thing still older than himself, to approach something unfathomable. Whatever the reason, Legolas was happy, and Gimli well-pleased by his friend's happiness. It would have pleased the Dwarf even better for the Elf not to be so determined to give greeting to every single tree in the entirety of Fangorn, however. Gimli bore wandering under the ancient, watchful awareness of all those trees as long as he could, but when Legolas' enthusiasm far outlasted his, Gimli at last had to beg a halt. "You would find the air less oppressive if you wore no axe at your belt, Gimli," Legolas told him. "The trees are less welcoming to one so armed." "I will not walk unarmed here for the goodwill of trees—or anyone else, for that matter," Gimli growled. "Legolas, I am done here.
512
StackExchange
of method public void addProduct(String product) //If isAProduct() returns false then the product name //entered by the user is stored in product1, product2 and product3 respectively //!!!!I think this is where the problem originates but can't figure out why { if (numberOfProducts == 0) //!!!!numberOfProducts has been declared as private int numberOfProducts=0; //I tried declaring numberOfProducts as a variable within addProduct() //but that just set the value to 0 each time and so only the name for product1 was set { product1.setName(product); numberOfProducts++; } else if (numberOfProducts == 1) { product2.setName(product); numberOfProducts++; } else if (numberOfProducts == 2) { product3.setName(product); } else { System.exit(0); } } Any help or advice would be greatly appreciated :) Cheers A: while (!matesStore.isAProduct(name)) //If a name has not been used, the name is added to the product { matesStore.addProduct(name); //!!!!I suspect the problem is this line. } The reason the 3rd product is infinite looping is because you should use If for this statement, while also work but you see there's an error is due to your method addProduct. If you change to If it won't be an infinite loop however your product 3 will be bugged. public boolean isAProduct(String product) //Returns true if a name has been found otherwise returns false { boolean found = false; int counter = 0; while (!found && (counter < MAXNUMBEROFPRODUCTS)) { if (product.equalsIgnoreCase(product1.getName())) { found = true; } else if (product.equalsIgnoreCase(product2.getName())) { found = true; } else { counter++; } } return found; }//End of method Noticed that you don't check for product3, so it will always return false when searching for your 3rd product name. !matesStore.isAProduct(name) = !false = true Viola!! There you goes it's while(true), an infinite loop! Fix by implementing the product3.getName() in your isAProduct() method. Your code is messy, you should use array for the products and you can do a better search with an array. public boolean isAProduct(String product) //Returns true if a name has been found otherwise returns false { boolean found = false; int counter = 0; while (!found && (counter < MAXNUMBEROFPRODUCTS)) { if (product.equalsIgnoreCase(product1.getName())) { found = true; } else if (product.equalsIgnoreCase(product2.getName())) { found = true; } else if (product.equalsIgnoreCase(product3.getName())) { found = true; } else { counter++; } } return found; }//End of method Q: Prolog list - printing lists before and after element Firstly, I'm a total Prolog newbie, my apologies for a silly question! I am required to write a rule that decomposes a list of months and prints months before may and after may. So far, I wrote the following: append_lists([], L, L). append_lists([H|L1], [L2], [H|L3]) :- append_lists(L1, L2, L3). This works great, if I manually query the following: | ?- append_lists(Before, [may|After], [jan, feb, july, may, dec, oct, nov]). Before = [jan,feb,july], After = [dec,oct,nov] ? ; no How can I now rewrite my rule so that [may|After] is in place of L1 in the rule and that it can accept any month? I tried the following but it did not work: append_lists([], L, L). append_lists([Month|Before], After, [Month|Result]) :- append_lists(Before, After, Result). A: You can
512
YouTubeCommons
my bucket list might never happen but yeah anyway so she is onto something this this new year she is doing our 2020 vision tour and I just watched a clip of it and I decided that I had to make a video on that so Oprah is doing her vision 2020 tour where she works with Weight Watchers which is a program that is meant to help people become healthy through their meals and their fitness program and she will be going around different states I'm taking celebrities with them you know power of influence and helping using them to spread you know her message across she says that in her year of transformation she says her thing for these issues she doesn't know she no longer makes new year resolutions well because if you're Oprah I can get up in the morning and whatever you decide to do you'll have even every ounce supporting you and everyone else back in your mission you know she says that she works with two things whenever she sets goals for ourselves and whenever she the way she goes on her life is by having a clarity of intention and she says that means that you need to decide what you want to do and I found this message to be relevant for us because here at all new spark I am passionate about helping people become the best version of themselves because when you become a best of the best version of yourself you're able to create a life that you're happy with and you're able to create a life that makes you feel that you're is in line with your purpose ok so and I thought this will be relevant because the need the yeah is very fresh very very fresh so I thought I'd throw in those borrowed from opera and translate them into your life just like I tend to translate into my life then when you set your goals for this year when you decide your vision for this year have a clear intention what do you want to do and why do you want to do it she talks about the fact law of motion and I can't quite remember the words but basically the interpretation is that what to give back always keeps comes back to you so as you set your intentions Houdini I remember that that whatever you do it's already done to you whatever you decide to get out and do whatever energy you put out in the world it has a way of finding finding you and coming back to you all right so she says set a vision and make little steps to get to where you were supposed to go which is again what we usually say you know you because your life is not changed in one stupid motion it's a small changes small little things that get to where you're going to go and for example she said that on that day she said she had an intention of
512
realnews
know Uncle Ben’s death is what really sets Peter Parker on his journey to becoming your friendly neighborhood Spider-Man, and it’s still heartbreaking every single time you read/watch it. As the story goes, with his newfound superhuman powers, the teen tries to figure out what he wants to do with them, and also doesn’t think he should be treated as a kid anymore. One night after a quarrel with Uncle Ben, Peter takes off to be alone, and he ends up basically letting a robber get away with a crime. Later that evening, Ben is killed by the same robber (in different variations from the comics to the movies), but Peter doesn’t discover this fact until he goes after the criminal as Spider-Man and realizes it’s the same guy. Peter is forever plagued with guilt, but vows at that moment to fight crime the best way he can. 8. GWEN STACY DIES Time for another soul-crushing event in Peter’s life, folks! In the comics, Peter starts dating Gwen Stacy when they are in college (in the Amazing Spider-Man movies, they meet in high school), but nonetheless, Gwen is considered Peter’s first love and holds a special place in his heart, even after he later falls for Mary Jane and marries her. That’s because poor Gwen is killed when Green Goblin kidnaps her and then throws her off the George Washington Bridge. Spider-Man shoots his web down to catch her, but as he pulls her up, he sees that she’s dead, with her neck having been snapped by the whiplash of catching her at a certain speed. In the Amazing Spider-Man 2 movie, it’s even more tragic, because it seems like Gwen is saved as the web catches her just as she hits ground for a brief moment. Unfortunately, the fall is enough to break her neck. That scene just kills us, and we can certainly see how it will haunt poor Peter forever. 7. WEARING THE BLACK VENOM SUIT Spider-Man is initially looking for a new suit because his classic red and blue costume is in bad shape from his crime-fighting ways. When he finds the ultra-tricked out black Spidey suit, he doesn’t realize it’s an alien symbiote, which will eventually become supervillain Venom. At first, Peter loves the new Spider-Man look and the power it possesses, making him feel more confident and assertive. It also makes the web slinger more aggressive and angry, especially when he seeks vengeance for those who shot Aunt May. These are not the qualities we’ve come to know and love in our hero. He almost doesn’t recognize the suit is actually an alien lifeform until it’s too late. A few more days, and the symbiote would have completely bonded with its human host (which is the creature’s MO), thus turning Spidey into a villain with a nasty set of sharp teeth. Thankfully, Peter sheds the symbiote – and it goes on to bond with photojournalist Eddie Brock, the second real Venom. 6. AUNT MAY DIES… AND THEN DOESN’T Although Aunt May doesn’t “die” quite as many
512
amazon
is a great novel. Gore Vidal has a tremendous way with words. He maintains tension in dialogue and drama so easily. This work concerns the emperor, Julian, who was unlike the post-Constantine emperors in that he favored a return to old-time religion, not the religion of the Galileans, which had become "official" after Constantine. The story traces his life based on a shared manuscript between two philosophy teachers. The plot thickens throughout the novel with conspiracy and political shenanigans. I only offer four stars because it is unreal that the Church has NO redeeming value, and comes across way too evil. Obviously, the ending is a tad predictable. Pick it up! A great choice for Men's Book study groups! What a way to get boys to read. It is quite a fantastic way to begin a study of the Roman Empire in its last days. Really cute. My granddaughter will really like this. Great pants! Thin, waterproof fabric to wear over other pants when it's colder. Used these hiking in the snow/rain and they worked perfect! Make sure to take in account what you plan on wearing underneath when you choose size I received the iStreamer for my birthday. It definitely makes your music sound better. What really impressed me, though, was the technical assistance I received from the company. When listening to music through my first generation iPad and the iStreamer, I heard clicks and pops superimposed on my music. The sound was not unlike listening to an old phonograph. Interestingly, this did not occur with either my old first generation iPod or my wife's newest generation iPod. After emailing HRT about the issue, the company's chief technology officer emailed me over the weekend! It turns out that when an iPad is used for a long time, especially as a web browser, it becomes fragmented. The company advised me to restore my iPad through iTunes. Problem solved! Music sounds great now without pops or clicks. If this device had been made by a major consumer electronics company, I doubt I would have gotten such prompt customer service. Without reservation I can recommend this high quality company and device. I love it even if it is me. As a contributing writer and a friend of the others, I know that the content of what is being shared is true. This book will drive you to believe when it seems like all else is failing. It is well written and full of life changing testimonies. It's a water filter. You need it. I bought it. Good pricing from Amazon. Just wish the Super Saver shipping to Hawaii would be faster-on another order it took over a month to get a book. So I had to spring for a little faster shipping for this filter so that I would get it in a reasonable amount of time... These are very good and high quality , they shipped quite quickly , I got them when I wasn't expecting them . Though do be aware the colors may be a bit flip flopped from the picture when you receive your gauges .
512
reddit
for the champ, there are tons of opportunities to counterplay and react to Ori's ball by virtue of the fact that it's visible. The q travel time is not exactly blazing fast, and unless the ball is in brush or hidden in a wall, you know where it is at all times. Outplaying it is just a matter of keeping track of where it is, maintaining a moderate distance, and watching for motion. A) If you don't think it is an endorsement of quality then you are intentionally overlooking the real world operational experience of the people who intentionally chose those weapons as the tools they carry into combat. These are not people who make decisions on what their lives, and the lives of their brethren, may depend on lightly. B) I absolutely agree that as a civilian your needs will not be the same as some high speed, low drag operator. I also agree with you that maybe a 1911 isn't the ideal weapon for every person, but what weapon is? For $888 you can purchase a Kimber Pro Carry, and I would take that weapon any day over any other pistol, especially if I was only able to own one. My Kimber eats everything I've ever put into it, and as a former Marine infantryman with two tours in Iraq that carries a firearm daily for work, it is hands down the pistol I would choose if in an armed confrontation. That being said, if you are accurate and more comfortable with another quality firearm, no one with any intelligence would tell you not to use it. To dismiss a proven weapon system, whether it be a 1911, a Glock, or even a revolver, is ridiculous. He does two. Dream sand and Desert Dream or something like that. One is more expensive. I went for the cheaper of the two(cant remember which is which), it was yellowish but it blew the socks and heads off everyone. Dealt with a few DMT vendors and have to say Noumena is spot on. No messing. Real Madrid Vs Barca in the Camp Nou. If I recall correctly, this was the first Clasico under Mourihno. Madrid was down 5-0, and to be perfectly honest, we can be sore losers sometimes. Ramos did a intentional kick on Messi which started the whole dilemma. He then shoved Puyol in the face, tried to start a fight with Pique, and sort of slapped Xavi. Personally, I find badass points to be a minor difference until you get to much higher levels. Also, the game practically forces you to pick shield regen and capacity, if not picked over damage and health increases, as they'll appear with every token spent after some time. It is a nice way to keep track of a sort of "score," in the game, but it doesn't seem to make a big enough difference. Where are you at in the story? We had block schedule for science and math, but I was a year ahead in math so it was all review for me. While I
512
StackExchange
a previous numeric column in R I have a dataframe of data for 400,000 trees of 6 different species. Each species is assigned a numeric species code that corresponds with a specific species. I would like to add another column listing the scientific name of each tree. The species codes are not consecutive, as this data was filtered down from 490,000 trees of 163 species based on abundance. Here is an example of data similar to what I have: Index Age Species_code 0 45 14 1 47 32 2 14 62 3 78 126 4 40 14 5 38 17 6 28 47 And here is an example of what I would like to get to: Index Age Species_code Species 0 45 14 Licania_heteromorpha 1 47 32 Pouteria_reticulata 2 14 62 Chrysophyllum_cuneifolium 3 78 126 Eperua_falcata 4 40 14 Licania_heteromorpha 5 38 17 Simaba_cedron 6 28 47 Sterculia_pruriens I have been trying things along the lines of if (Species_code == 14) { } However, this gives me TRUE or FALSE in the output A: One solution would be to use mutate with case_when if you know which numbers correspond to what Species, I have filled out some of them which gives the code to follow on: library(tidyverse) x <-" Index Age Species_code 0 45 14 1 47 32 2 14 62 3 78 126 4 40 14 5 38 17 6 28 47" y <- read.table(text = x, header = TRUE) y <- y %>% mutate(species = case_when(Species_code == 14 ~ "Licania_heteromorpha", Species_code == 32 ~ "Pouteria_reticulata", Species_code == 62 ~"Chrysophyllum_cuneifolium")) #etc... y # Index Age Species_code species # 1 0 45 14 Licania_heteromorpha # 2 1 47 32 Pouteria_reticulata # 3 2 14 62 Chrysophyllum_cuneifolium # 4 3 78 126 <NA> # 5 4 40 14 Licania_heteromorpha # 6 5 38 17 <NA> # 7 6 28 47 <NA> Although if you have a separate dataset of species and codes, it would make more sense to merge. Q: Scala attribution to a default map I'm trying to understand this answer, pertaining to Map with default values: val lists = new mutable.HashMap[String,List[Int]].withDefaultValue(Nil) lists("dog") ::= 13 lists("cat") ::= 14 lists("dog") ::= 15 //(13, 15) As I understand it, scala uses "nested" functions to represent a immutable list. A unfortunate side effect is that iterating the immutable list returns the elements in reverse order. To avoid the reverse order, I've tried to implement this using a ArrayBuffer: val lists = new mutable.HashMap[String,mutable.ArrayBuffer[Int]].withDefault(_=>ArrayBuffer()) lists("dog").append(1) println( lists("dog") ) //prints "ArrayBuffer()" Unfortunately, this doesn't work. It seems scala doesn't actually put the default value back on the map, and keeps returning empty ArrayBuffers In the end, I'm using the following code: val lists1 = new mutable.HashMap[String,mutable.ArrayBuffer[Int]] val lists= lists1.withDefault( x=>{val n= mutable.ArrayBuffer[Int](); lists1(x)=n; n}) This works, but seems unnecessarily complex. Is there a better solution? A: It's a bit non-obvious how the ::= really works. It uses a specified function :: (prepend) on the list, then assigns the result of the function (=) back to the map under a specified key. If you want to have quick
512
reddit
cuz I felt like I never achieved anything. Of course currently there's quiet a few things. I'm in dept, cant hold a job, am 24 and living with parents, parents are dicks sometimes, I didn't go to collage cuz I couldn't afford it, stuck in a dead end town, no friends where I live, rarely leave house, have no passions or motivation, I live in America, an asshole ex. Of course I could go more in depth and there's more. r/indycar has a pinned comment with streams for every race thread. If you miss the race, you can go back and rewatch all the races this season and seasons past for free on their youtube. This weekend indycar is actually going to Pocono, which always puts on a decent show, even if you may not like ovals [Looky!](http://puu.sh/5BxFC.jpg) Absolutely 0 team communication. My friend (Sivir) has connection problems, and thus couldn't play the game. I get super fed, but the lack of communication to focus the semi-fed yi got me killed 3 times, then malphite and riven jumped in to stun the rest of my team whilst Jinx and Draven done all of the damage. This shows that you have to talk and communicate with the players in your team (even if its just pings, I was the only one that pinged that game) and you will have a much greater chance to win the game! Remember, league of legends is a team-based game, you need your team in order to win. :) I think with this type of player we're likely to be the frontrunner over most teams. He'll be looking for playing time and we have one winger who's having a medical somewhere having struggled, and two teenagers who have potential but are far from the finished product yet. Sturridge left Chelsea, with whom he got a PL medal and a CL medal, for game time in his preferred position in front of Liverpool's fans, *despite* the lack of European football **and** for a big pay cut. Moses isn't getting a look in at Chelsea and we are probably the biggest club that can offer him first team football. I want to say I am like a mix between 2 and 4. Like I have absolutely amazing cards but I haven't paid more than like $80 since I started playing, which was like 5 days after the end of the 2nd or 3rd world tournament. But I haven't bought stones in like 4-5 months. I just got super lucky with the free stones I had been saving up for the Gogeta/Jenmba banner and ended up with Gogeta, Broly, Teq Cell, 2 AGL gold frieza, and Phy SSJ Bardock from like 3 multi-summons. This..On the freeway, traffic is bad and prone to going from freeway speeds to stopping in just a few seconds. You give the car in front of you a few car lengths of space so you don't rear end them when traffic halts near an on ramp or accident. Then some asshole in a zippy car cuts in front of you because
512
reddit
Bride* by Yangsze Choo, which I may end up using for the Non-Western Fantasy square (I already have a book for this square, but it's YA and I've been wanting to move away from reading so much YA fantasy, so giving this a shot). I like it so far, but I haven't really gotten to the fantasy part of it yet. Still, it's historical fiction which is my first love, before I really got into fantasy, so I'm enjoying it. Also hoping to finish it this weekend. Work has been crazy busy and I haven't had much time to read - tax season is crazy, so work will be busy until mid-April - but it looks like next week will be a bit less crazy than this week (fingers crossed!) Plus, really excited to see Beauty &amp; the Beast next weekend - a friend got into an advanced showing and said it was great. I'm crazy jealous and can't wait, the animated version is my favorite Disney movie. Like in eve, where you can see who is targeting you? I think that would be fine if we had a passive list of 'people in the local area' that you could target, so you could see people without having to go through everyone to find one person in particular. Yes they are, but don't expect to clear them quickly. Watch a video, make a learning PF and expect to take an hour or two (maybe more, which is totally fine) to get it right. Sephirot took me several hours, sophia took me about half an hour, zurvan took about an hour. As for sephirot it's 100% memorization and 1 person messing up can kill everybody so it takes a while for everyone to get it right. (For reference, I am a white gay cis man. Also, keep in mind that this is largely a layman's opinion made up of my own anecdotal evidence and observations: I am not nor do I claim to be an expert on this stuff) Being insulted on the grounds of privileged &gt; unprivileged is actually quite a unique feeling. It's an insult that carries quite a bit of weight behind it, and the best way I can describe it is "dehumanizing" or "other-ing". That's not a very good description, but the point is that it feels very bad, and COMPLETELY different than any other way I could be insulted. Call me a loser, a fuckhead, an asslicker, a shitstain, nothing. Call me f(slur), that really does hurt. Now, given this, I honestly don't know what you could do to a SAWCSM that would give them that same feeling. I can't attack them on ground of privilege; where is the insult in telling them that society is designed with a person like them in mind? This is just my experience that I'm speaking of, but the idea that being called out on being white, male or cis is in any way equivalent as calling me out on my unpriveledged sexuality is just ridiculous. I think that this is the thing that
512
StackExchange
Reactive wrapper for `setAttributedTitle(_:controlState:)` public func attributedTitle(for controlState: UIControl.State = []) -> Binder<NSAttributedString?> { return Binder(self.base) { button, attributedTitle -> Void in button.setAttributedTitle(attributedTitle, for: controlState) } } } So you can bind your full name BehaviorSubject to button like your sample code label vm.fullName.bind(to: someButton.rx.title()).disposed(by: bag) Q: Difference between Threat and Menace I was reading a technical blog post, and the post subtitle is: assert_called_once: Threat or Menace I do not understood what the writer wanted to express with this synonyms. I mean, is there a popular (regional) joke with this words or just a pun? And there is difference or particular in use of them? A: It looks like you got this from a blog on Python unit testing here The problem with the test seems to be that the test will pass when in reality it should not The blog is about Test Driven Development where the test suite is used to ensure the underlying code is doing what it's supposed to do. TDD is more a feature of Ruby and Rails and is becoming more adapted for Python. The fact that the title was named Threat or Menace is the directed towards the test itself: assert_called_once when the actual test is supposed to be assert_called_once_with which is the method supplied by Python Mock Library for server testing (in this case). However, the misspelling can still cause the test to pass even though there is a typo. Which is not the best thing to happen These oddities can happen when monkey patching is involved which seems to be the case. [NB: I am not a Python person] Q: 2017 Community Moderator Election Results The Workplace's fourth moderator election has come to a close, the votes have been tallied, and the new moderator is: He'll be joining the existing crew shortly — please thank him for volunteering, and share your assistance and advice with him as he learns the ropes! For details on how the voting played out, you can download the election results here, or view a summary report online. A: Congratulations Lilienthal! Much deserved! A: Congratulations Lilienthal, and well done everyone!! All the candidates were of a high quality and any one of them would have made an excellent addition to the moderator team. Lilienthal is a trusted and effective member of the community, and I feel he will be a great asset to the community in his new role of Workplace Moderator. Congratulations again, and welcome to the Moderator team! :) A: Congrats! Well done, Lilienthal! Q: Minify PHP/html code I need to minify html code to improve my website performance using PHP I'm using Yii PHP Framework / Apache. A: I used PageSpeed Module from google it's really great Q: Shard keys must all be ascending? I have a collection that I've been trying to shard, but I can't get it to shard with the index that I gave it. The collection in question uses a hashed index, which I created using: db.bar.ensureIndex({"_id": "hashed"}, {"background": 1}) But when I try to shard said collection, using: sh.shardCollection("foo.bar", {"_id":
512
StackExchange
it deserves and change the name of the player field to something like source. Then the value can be player 1, player 2, or clock. This way if the server is shutting down and has to suspend the game it can send out an update that reports what's happening and lists itself as the source of the update. Does this mean that you should never just leave something out? No. But you need to consider how well nothing can be assumed to really mean a single well known good default value. Nothing is really easy to over use. So be careful when you use it. There is a school of thought that embraces favoring nothing. It's called convention over configuration. I like that myself but only when the convention is clearly communicated in some way. It should not be a way to haze the newbies. But even if you're using that, null is still not the best way to do it. Null is a dangerous nothing. Null pretends to be something you can use right up until you use it, then it blows a hole in the universe (breaks your semantic model). Unless blowing a hole in the universe is the behavior you need why are you messing with this? Use something else. A: null is not really the problem here. The problem is how most current programming languages deal with missing information; they do not take this problem seriously (or at least dont provide the support and safety most earthlings need to avoid the pitfalls). This leads to all the problems we've learned to fear (Javas NullPointerException, Segfaults, ...). Lets see how to deal with that issue in a better way. Others suggested the Null-Object Pattern. While i think it is applicable sometimes, there are a lot of scenarios where there is just no one-size-fits-all default value. In those cases, consumers of the possibly-absent information have to be able to decide for themselves what to do if that information is missing. There are programming languages that provide safety against null pointers (so called void safety) at compile time. To give some modern examples: Kotlin, Rust, Swift. In those languages, the problem of missing information has been taken seriously and using null there is totally painless - the compiler will stop you from dereferencing nullpointers. In Java, efforts have been made to establish the @Nullable/@NotNull annotations together with compiler+IDE plugins to reach the same effect. It was not really successful but thats out of scope for this answer. An explicit, generic type that denotes possible absence is another way to deal with it. E.g. in Java there is java.util.Optional. It can work: On a project or company level, you can establish rules/guidelines use only high-quality 3rd party libraries always use java.util.Optional instead of null Your languages community / ecosystem may have come up with other ways of adressing this problem better than the compiler/interpreter does. A: I do not see any merit in the statement that null is bad. I checked the discussions about it and they only make me impatient and
512
Gutenberg (PG-19)
humbled pride. But on the sword he gazed elate With hope set higher than fear or fate, Or doubt of darkling days in wait; And when her thankful praise waxed great And craved of him the sword again, He would not give it. "Nay, for mine It is till force may make it thine." A smile that shone as death may shine Spake toward him bale and bane. Strange lightning flickered from her eyes. "Gentle and good in knightliest guise And meet for quest of strange emprise Thou hast here approved thee: yet not wise To keep the sword from me, I wis. Produced by Paul Haxo from page images generously made available by the University of Toronto and the Internet Archive. A DUEL IN THE DARK. _An original Farce,_ IN ONE ACT. BY J. STIRLING COYNE, AUTHOR OF "_My Wife's Daughter_," "_Binks the Bagman_," "_Separate Maintenance_," "_How to settle Accounts with your Laundress_," "_Did you ever send your Wife to Camberwell_," _&c. &c. &c._ THOMAS HAILES LACY, WELLINGTON STREET, STRAND, LONDON. _First Performed at the Theatre Royal Haymarket, On Saturday, January_ 31_st,_ 1852. CHARACTERS. MR. GREGORY GREENFINCH Mr. BUCKSTONE. MRS. GREENFINCH } COUNTESS DE RAMBUTEAU } Mrs. FITZWILLIAM. CHARLEY BATES } BETSY Mrs. CAULFIELD. WAITER Mr. EDWARDS. COSTUMES. Mr. GREENFINCH.--Green coat, light blue trowsers, and French travelling cap. Mrs. GREENFINCH.--Fawn polka jacket, waistcoat and skirt. COUNTESS DE RAMBUTEAU.--Loose travelling pelisse, bonnet and green veil. CHARLEY BATES.--Blue frock coat and white trowsers. BETSY.--Travelling dress and servant's dress. WAITER.--Gendarme suit. SCENE _lies at a Hotel at Dieppe._ Time in Representation, 50 minutes. A DUEL IN THE DARK! SCENE.--_A handsomely furnished Apartment on the ground floor of a Hotel at Dieppe. A French window at back opening on a garden. Door, 2 E. L. Door, 3 E. L. A large stove, L. between the two doors. Door, 2 E. R. Easy chair near door, R. Tables, R. and L. C. at back; bottle of brandy with glasses on table, L. Chairs, &c. Two lighted candles on._ _Enter GREENFINCH, carrying bandbox, large travelling cloak, carpet bag and umbrella, L. 3 E._ GREEN. Well now this is something like an adventure. (_putting down the umbrella and bandbox, R._) There's a romantic mystery attached to me that I can't unravel, in fact I feel myself like a tangled penn'orth of thread; the more I try to clear myself the more complicated I become. Let me calmly consider my singular position. (_throws the cloak on the easy chair, R. and places the carpet bag beside it_) In the first place here I have arrived at the Hotel d' Angleterre in Dieppe accompanied by the Countess de Rambuteau--a real Countess! Poor Mrs. Greenfinch little dreams what a rake I am--but for a long time I've been dying for an aristocratic flirtation--I have looked at lovely women in the private boxes at the theatres--and have run after carriages in the park--but all in vain, and now, startling as the fact may seem, I have been for the last thirty hours the travelling companion of a French Countess, and have shared
512
StackExchange
51 55 38 42 11 68 23 74 55 59 513 9 1990 74 79 56 46 30 25 128 42 153 79 60 42 814 10 1991 59 29 41 24 78 142 54 124 71 27 47 37 733 Q: Laravel Notifiable - Send notification to onl specific user id I was able to send notifications to all users who are admin, but now I just wanted to send a specific notification to a single user using it's id. public function store(Request $request) { $employeeObjective = EmployeeObjective::updateOrCreate( [ 'employee_id' => $request->employee_id ?? null ], [ 'employee_id' => $request->employee_id, 'rater_id_1' => $request->rater_id_1, 'status' => 'Pending', ] ); // Working to send all admins $admins = User::all()->filter(function($user) { return $user->hasRole('Admin'); }); Notification::send($admins, new UserRegistered($employeeObjective)); // Not working User::where('employee_id', $request->rater_id_1)->notify(new UserRegistered($employeeObjective)); } A: You need to call the notify method on an instance which owns it, User::where('employee_id', $request->rater_id_1) returns an Illuminate\Database\Eloquent\Builder instance which you can't use notify on. User::where('employee_id', $request->rater_id_1) ->firstOrFail() ->notify(new UserRegistered($employeeObjective)); Q: why Jquery .load() function is not firing on success? I have made a jquery functions which suppose to do 3 steps onload it should replace attributes of all link files when clicking it should load a sub page into $("#content") again it should refire the function which would replace all links again the following code works till 2 steps but doesnt fire third step which should replace all urls again I think it should replace also the links of loaded page? $(document).ready(function(){ var base_url = "http://localhost/dolphin/"; $("a").each(function(e){ if(this.href == "javascript:void(0)" || this.href == base_url || this.href == base_url + "index.php" || this.href == "javascript:void(0);" || this.href == "javascript:%20void(0)") { }else{ page = 'Javascript:LoadPage(\''+ this.href + '\')'; this.setAttribute('onclick',page); this.setAttribute('href', '#'); } }); }); function LoadPage(url){ $("#contentarea").load(url, function() { //after loading it should call redoIt() but it doesnt. redoIt(); }); } function redoIt(){ var base_url = "http://localhost/dolphin/"; $("a").each(function(e){ if(this.href == "javascript:void(0)" || this.href == base_url + "index.php" || this.href == "javascript:void(0);" || this.href == "javascript:%20void(0)") { }else{ page = 'Javascript:LoadPage(\''+ this.href + '\')'; this.setAttribute('onclick',page); this.setAttribute('href', '#'); } }); } A: Your call to $.load is inside a function, and from what I gather you're not calling that anywhere so it's not getting executed. Take it out and it should work fine $("#contentarea").load(url, function() { //after loading it should call redoIt() but it doesnt. redoIt(); }); Q: How to solve the "local variable 'stressed' referenced before assignment" error? I am trying to make a program that recommends the user an activity to do after a short quiz. It takes tries to figure out how the user is feeling and assigns points to different moods depending on how they feel. At the end it recommends an activity depending on how many points the user received in each mood. In this piece of code I am trying to add 1 to the 'stressed' variable but I keep receiving this error message "local variable 'stressed' referenced before assignment" Here is my code Questions = [ "Was your day stressful?\n(a) Yes\n(b) No\n(c) Kinda\n\n", "Do you feel happy?", "Are you sad?",] happy = 0 sad = 0
512
ao3
room, just in front of the big four-poster bed. Her arms were stretched above her head, keeping her up on the balls of her feet. That alone was torture, to say nothing of the hot and raw marks on her breasts and ass. The whip was discarded at the foot of the bed. Fei-Wang had to give Syaoran credit. She was a beautiful young woman. She had short soft pale caramel-colored tresses that framed her face in wisps. Her cheek bones were high and pronounced. Her nose was straight and well-shaped. She had petal-pink full lips and a dainty mouth. Most striking were her jade-green eyes, almond-shaped and wide-set, but so innocent and honest. She had beautiful eyes. Fei-Wang hoped to have her as blind as Syaoran before he killed her, blinded by her own protective consciousness. Her body was long-limbed and shapely. She had wonderful hands, long-fingered with round short nails. She had nice full round breasts and rosy nipples of the perfect size. Her stomach was flat and her pelvis was softly muscled. Her hips jut a little too far from her body because she was a little too skinny, like Syaoran was, but not unattractively so. Her legs were long and pleasing, coltish, and the skin in the apex of her thighs was translucent and pale. Her butt was pert and tight. Her skin was honey-colored and satin-soft. Fei-Wang had enjoyed seeing it split and redden under the assault of the whip. He sipped from his flask and then emptied it. Sakura moaned quietly and shifted. She murmured Syaoran’s name. Maybe she had fallen asleep. Fei-Wang thought of seeing her impale herself on the fake purple cock back in his ring. The juices she produced watching Touya and Yukito fuck each other, how long she had resisted the siren call to sit down and stop the pain in her legs. The beautiful shining flush of her slit through the camera lens. Then, how she struggled not to respond to Touya’s pleasuring mouth. Fei-Wang’s dick twitched in his trousers, pushing up against the restraining fabric. Maybe, before this was all over, he would be able to fuck both Sakura and Syaoran. He thought of Syaoran’s beautiful muscular frame and sweet skin, his thick chocolate hair and those glow-in-the-dark amber eyes. Then, he thought of Sakura’s pert little ass and her petal-pink lips, her caramel tresses and jade-colored eyes. He thought of forcing Syaoran inside her fragile little pussy while Yui slammed her ass and then pushing his own dick up into Syaoran. He thought of Cassandra. He decided that while Yui and Syaoran fucked Sakura in both her tight little holes, and while he fucked Syaoran’s ass, Cassandra could put her pussy in Sakura’s mouth and kiss Syaoran’s lips. He wondered if she would think to slip her fingers into Sakura’s slit with Syaoran’s cock or if she would fondle her breasts or slide her fingers into her asshole. The girl often took the initiative. Pleased with himself, Fei-Wang decided that he would have Cassandra smother Sakura with her pussy
512