text
stringlengths 1
100k
|
---|
Investigators believe it was severely tortured and then set on fire. |
“It is absolutely horrific to imagine someone intentionally and viciously harming an innocent cat in this way,” said Emily Hovermale, The HSUS’ Maryland state director. “Whoever would commit such a crime is clearly a dangerous person, and we are hopeful that this reward will bring forward anyone with information about this heinous crime.” |
Anyone with any information is asked to call the Cecil County Animal Services at 410-441-2040. |
Critics say the plan will only alienate citizens with ties to Somalia, where the militant group al-Shabab is based. |
Kenya’s president Uhuru Kenyatta said in a speech on Tuesday (Feb. 16) that his government is thinking about building a prison that will hold those with “violent and extremist” tendencies to limit their ability to spread “poison” to other prisoners. |
“We will establish a new prison to hold violent, extremist offenders,” Kenyatta, speaking at a graduation ceremony for new prison guards, said. “The truth of the matter is that we cannot allow them to spread their poison to vulnerable Kenyans.” |
It was unclear who, specifically, Kenyatta was referring to. But the language he used in the speech suggests that he may have been talking about individuals with alleged ties to the Somali militant group Al-Shabaab. |
Kenya has been targeted by the al Qaeda-affiliated organization ever since the country sent troops into Somalia in 2011 to help defeat the group and secure the country for the government. Several high profile attacks by the Shabaab, including at a high end mall in Nairobi and a university in the northeast of the country, have killed hundreds of people. |
Last June, Kenyatta suggested that the situation is forcing Kenya to think of new ways to combat the threat. |
“We must accept that we are faced with a new kind of enemy against whom the conventional methods of fighting crime will not work,” he said. “We have amongst us radicalized youths who appear innocent which makes us believe that they are doing God’s work while they are busy planning evil against other Kenyans in the name of religion.” |
At the time Kenyatta indicated that his government was going to work with community and religious leaders to protect against such radicalization. But the decision to potentially build a special prison to detain individuals suspected of extremism could portend a new phase of Kenyatta’s administration’s anti-terrorism efforts. It follows another radical idea, yet to be fully realized, of building a wall along the Kenya-Somalia border the government says will keep out the militants. |
Some analysts compare the proposed prison to the controversial US naval base in Cuba’s Guantanamo Bay where the US government has been holding prisoners suspected of terrorism. They say this approach will only work to exacerbate the already difficult relationship the government has with Kenyans of Somali ethnic origin, a community it cannot afford to alienate in its anti-terrorism efforts. |
“There is a real risk that this prison for jihadists may only fuel anti-Kenyan government sentiments, especially if the majority of the prisoners in this jail are Somali Kenyans,” Ahmed Salim, a senior analyst at Teneo Intelligence, told Quartz. “Effective counterterrorism measures requires the support and buy-in from communities.” |
There are new accusations that the Justice Department colluded with the Clinton campaign about the Democratic candidate's court cases, according to new revelations in emails released by WikiLeaks. |
The May 2015 email from Clinton spokesman Brian Fallon said, “DOJ folks inform me there is a status hearing in this case this morning, so we could have a window into the judge's thinking about this proposed production schedule as quickly as today.” |
Milwaukee County Sheriff David Clarke, a supporter of Donald Trump, weighed in this morning, telling Tucker Carlson that the corruption of the Justice Department started with then-Attorney General Eric Holder being found in contempt of Congress. |
Clarke said that has continued under Loretta Lynch, pointing out her secret meeting with Bill Clinton shortly before the FBI announced there would be no charges against Mrs. Clinton over her private email server. |
"The corruption is all throughout the government. It's the courts, it's our institutions of government, the higher-ups at the FBI, the DOJ, the Congress, on and on and on," said Clarke, adding that the only way it will change is through the ballot box. |
"I believe that the American people are finally going to have to rise up. It is 'pitchfork and torches' time, to use a metaphor, in America to get these people out of here and for the citizens of America to take this country back." |
Carlson pointed out that if people begin to believe that some powerful people are held to a different legal standard, it's a "threat to our system itself." |
Watch the full interview above. |
Gingrich: 'Republicans Willing to Help Hillary' Belong in the Dem. Party |
WikiLeaks Dump: Top Clinton Aides Mock Catholicism, Evangelical Christianity |
McCain: 'The Clintons Don't Live by the Same Laws We Do' |
Trump: 'Shackles Are Off Me,' Now I Can Fight for America My Way |
Please note that this page has not been updated since early 2015. I now recommend stack |
Rationale |
I’m trying to learn the Haskell programming language, and I’m tripping over the cabal-install package management system sufficiently often that it’s putting me off putting time into learning the language. Here are my requirements for a development environment I’m willing to learn in: |
don’t leave Debian Wheezy 32-bit; Debian Jessie will be out soon, but its versions of GHC and the Haskell platform are still very old so upgrading early is not a way out. minimise how often I have to delete all of ~/.cabal and ~/.ghc ; when using cabal sandboxes, again, minimise the number of core libraries that need to get rebuilt in every sandbox; be simple enough to integrate cleanly with the existing ways I manage my OS installation and the contents of my home directory; be simple enough that I can understand everything as a Haskell beginner and can get things working (again) quickly and get back to trying to write Haskell. |
In this document I will describe the combination of home directory and system-wide installations that fit these requirements, and the workflow for sorting out packages so that I can get on with trying to make my programs do input and output, and other fun Haskell beginner stuff. |
Alternative approaches |
The following two approaches don’t satisfy the requirements given above. |
Do everything manually |
This involves having nothing installed system-wide, including the Haskell Platform. Install GHC and Cabal in ~/local/src and then install things into their own sandboxes and add the .cabal-sandbox/bin directories to your $PATH . Someone on reddit describes a balance between installing stuff into .cabal/bin and having sandboxes in which related packages are built and then symlinking those directories. But this requires lots and lots of rebuilding over and over and lots of manual $PATH additions. System-wide Debian packages mitigate this. |
This might facilitate such an approach. |
Fails (2), (3) and (4). |
Use a clever automatic sandboxing solution |
Halcyon and the Nix package manager (which doesn’t require the full NixOS) are the projects I’ve come across that try to do this. They aim to avoid even more rebuilding than my approach avoids. The Halcyon author doesn’t want to support 32-bit Debian, and I don’t want to be a Nix early adoptor at the same time as trying to learn how to get my programs to take input and produce output. |
Fails (1) and (5). |
Drawbacks of my approach |
We’re living very far away from the edge: we’re using GHC 7.4 and a version of the Haskell Platform from 2012. Someone on reddit expresses the view that since Haskell moves so fast, you’ll end up rebuilding everything all the time anyway so you can use your favourite packages from Hackage. The only thing we’re not getting from the Debian apt repositories that we might is haskell-mode and ghc-mod for Emacs, since we can have newer versions of those without repeated building. |
We’re doing a lot of rebuilding of libraries, and we’re only avoiding rebuilding those that come with Debian, which will become less and less useful as time goes by and Hackage packages depend on newer versions. |
This is okay because I’m a Haskell beginner, and I’m not a professional software engineer, so even if I stick with learning Haskell it’s going to take me years before I’m writing anything that needs fancy contemporary libraries. And maybe by then the cabal-install ecosystem will have improved. I basically need Hackage only for building fancy things like Propellor and Structured Haskell Mode so it’s okay to sandbox those things and do a load of builds. |
System setup |
Debian packages and dotfiles |
Get all our basic libraries installed system-wide: |
“` {.nil} |
apt-get install ghc ghc-prof haskell-platform |
“` |
or if you’re using Propellor: |
{.haskell} workstationAptPackages :: Property NoInfo workstationAptPackages = combineProperties "workstation apt packages" [ Apt.installed ["ghc", "ghc-prof", "haskell-platform"] , Apt.removed ["haskell-mode", "ghc-mod"] ] |
Put cabal configuration file in place: |
The most important thing here is require-sandbox: True . We’re not putting anything in ~/.cabal/bin . So we need to include all .cabal-sandbox/bin directories in our $PATH . I build stuff that is to be built on every machine in ~/local/src . So for each binary we have a sandbox in a directory under ~/local/src , e.g. ~/local/src/propellor . This code will prepend those directories to $PATH . It comes from my ~/.shenv which is supposed to be a POSIX-compatible script to set up environment variables that I can source in .zshrc , .bashrc , scripts run from cron, my GNOME and XFCE startup scripts and wherever. |
{.bash} for bindir in $(find ~/local/src -path "*/.cabal-sandbox/bin"); do PATH="$bindir:$PATH" done export PATH |
Upgrading cabal-install |
Before doing anything else, we upgrade cabal-install . The version of cabal-install in Wheezy is so old that it doesn’t know about sandboxes, and we don’t want to pollute ~/.cabal/bin . So we cheat and get it from Jessie: |
“` {.nil} |
apt-get install -t testing cabal-install |
“` |
Be sure to have set up apt pinning so that this doesn’t pull anything else in from Jessie! |
Upgrading cabal-install again |
Since we want the smartest dependency resolution we can get, we now upgrade cabal to the very latest and greatest. |
{.nil} $ cabal update $ cd ~/local/src $ cabal get cabal-install $ cd cabal-install-* $ cabal sandbox init $ cabal install |
Restart the shell ( hash cabal isn’t enough because we only just created the sandbox) and type cabal --version to check that the second decimal is higher than 20. Use which cabal to check that it’s the one from ~/local/src . |
Usage for Haskell projects |
Installing other people’s programs |
Maybe you want the ghc-mod or structured-haskell-mode executables from hackage. Follow the procedure just used for upgrading cabal-install for the second time. |
Getting libraries for your project |
This section is a WIP. But some tips: - Basic workflow is cabal init; cabal sandbox init; cabal build . - Use cabal repl to launch ghci. - When you need a library, first try to find a debian package (the name will begin with [lib]ghc- ). - If you can’t find it, you can use cabal install blah to install into the sandbox for testing before adding to the .cabal file as a dependency. Try to install all required packages in one go on one cabal install blah1 blah2 command as this gives cabal the best chance of getting the dependencies right. - Don’t be afraid to clear out the sandbox: rm -rf .cabal-sandbox-config .cabal-sandbox; cabal sandbox init . - Try -v3 to enhance cabal’s dependency resolution some more. |
Sources & further reading |
The logical way to start exploring this possibility would be to give elephants the pointing test. But these giant mammals are a lot more challenging to work with than a poodle. In fact, it wasn’t until last year that one of Dr. Byrne’s students, Ms. Smet, was able to run the test. |
Ms. Smet traveled to Zimbabwe, where a company called Wild Horizons offers elephant-back safaris. Each morning, while the elephants were waiting to take tourists on a trip, Ms. Smet would set up two buckets behind a screen. |
An elephant handler would bring one of the animals a few yards away from her. The elephant watched Ms. Smet lower pieces of fruit behind the screen and put them into one of the buckets. But the elephant couldn’t see which bucket she put the fruit in. |
“I actually checked that from elephant height,” Ms. Smet said. |
Ms. Smet then brought the buckets out from behind the screen and stood between them. She pointed at the one with the fruit inside, and the handler walked the elephant toward the buckets. Ms. Smet noted which bucket it stuck its trunk in first. |
For two months, Ms. Smet tested 11 elephants. When she crunched the data afterward, she found that the elephants picked the right bucket 67.5 percent of the time. (One-year-old human babies do a little better at these tests, scoring 72.7 percent.) |
Ms. Smet found that the elephants could follow her pointing whether she stuck out her whole arm or just used her hand. And when she simply stood between the buckets, by contrast, the elephants stuck their trunks in the buckets at random. |
Ms. Smet and Dr. Byrne published their results Thursday in the journal Current Biology. |
The scientists were able to rule out the possibility that the elephants learned to associate pointing with food over the course of the experiments. “They were just as good on Trial 1,” said Dr. Byrne. |
Clarence Saunders is often credited as the father of the modern-day supermarket with his self-service Piggly Wiggly stores providing grocery needs as far back as 1916. |
In Western Massachusetts, there have been numerous supermarket chains that have served shoppers, most notably the D'Amour family's Big Y. |
In 1936, Paul D'Amour, a route sales driver for Wonder Bread, opened the Y Cash Market with his brother Gerald in Chicopee. The brothers opened a second and larger Y Cash Market in a former bowling alley in 1947. Building on their success they opened a 31,000-square-foot Big Y in Northampton in 1960. It was the largest supermarket in Western Massachusetts. |
Other popular chains over the years have included Stop & Shop, A&P and Food Mart. |
Here is a look back at where many of us have done their grocery shopping over the years. |
The title of this article is conjectural. Though the topic is found within The Simpsons universe, a proper name is not available. |
The Blue-Haired Lawyer, is Springfield's most prominent lawyer known for his pasty face, blue hair, New York accent, and nasal voice. |
Contents show] |
Work |
He was first introduced as one of Mr. Burns' many lawyers. Subsequently, he most commonly appears as the lawyer arguing against the Simpsons whenever they wind up in court. He often makes good points against them and wins over the judge. However, he has attempted to aid the Simpson family at least once.[6] He also occasionally appears to serve as a prosecutor. |
He worked for "Luvum & Burnham: Family Law" in one episode, where he had a secretary named Uwa (homophone for "YOU WHA?!?!"). |
His name is never stated, though it's presumably either Luvum or Burnham, given his law firm's name. In one episode, he reveals himself to be the author of a scifi novel called "The 60 Foot Baby" and on the cover he is simply credited as "Burns' Lawyer." |
Despite being his lawyer, he is, sometimes, intimidated by Burns. An example of this is when Burn begins losing money, he (and Burns's other lawyers) loses his competence and acts as a yes-man out of fear of his wrath, going as far as to encourage Burns into making bad investments that bankrupt him.[7] |
Politics |
He is a member of the Springfield Republican Party |
He graduated from Springfield University. |
Non-Canon Appearances |
The contents of this article or section are considered to be non-canon and therefore may not have actually happened/existed. |
In the The Simpsons Game , several of him work as The Creator's lawyers/bodyguards. |
In The Simpsons Guy, he sues the Pawtucket Patriot brewery for copyright infringement. |
Behind the Laughter |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.