Spotify answer for school project [closed] - project

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 23 hours ago.
Improve this question
Olá sou aluno da ETEC João Maria Stevanatto, estou fazendo um trabalho para a disciplina de Qualidade e Teste de Software, queria saber se voçê conseguiria responder algumas perguntas sobre o app Spotify, tipo o que ele pode melhorar em sua segurança, otimizaçao, design e etc. Desde de já agradeço a ajuda
Hello, I'm a student at ETEC João Maria Stevanatto, I'm doing a project for the Quality and Software Testing subject, I wanted to know if you could answer some questions about the Spotify app like what they can improve in terms of security, optimization, design, etc. Thanks in advance for the help.

Related

J ai un probleme pour editer avec une api [closed]

Closed. This question is not written in English. It is not currently accepting answers.
Stack Overflow is an English-only site. The author must be able to communicate in English to understand and engage with any comments and/or answers their question receives. Don't translate this post for the author; machine translations can be inaccurate, and even human translations can alter the intended meaning of the post.
Closed 6 days ago.
Improve this question
bonjour, j ai fais une app copie de malt, quand je suis sur les profils et que je souhaite les editer, j ai une erreur quans je fais appel a mon api. pour que cela fonctionne il faut que je mette l id de mon profil a la fin de l api. je souhaite pouvoir editer n importe quel profil, je ne trouve pas de solutions; merci a vous
j ai tout essayé, changer api et le reste

Problema no consumo da api [closed]

Closed. This question is not written in English. It is not currently accepting answers.
Stack Overflow is an English-only site. The author must be able to communicate in English to understand and engage with any comments and/or answers their question receives. Don't translate this post for the author; machine translations can be inaccurate, and even human translations can alter the intended meaning of the post.
Closed 4 days ago.
Improve this question
enter image description here
meu codigo ta assim porem quando coloco pra deletar aparece mensagem de ok mais nao ta deletando de fato no BD
enter image description here
oq sai no json!

Translating to ruby for use in rubymotion [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Here is my code:
- (CGFloat)layoutManager:(NSLayoutManager *)layoutManager lineSpacingAfterGlyphAtIndex: (NSUInteger)glyphIndex withProposedLineFragmentRect:(CGRect)rect
{
return 20;
}
def layoutManager(layoutManager, lineSpacingAfterGlyphAtIndex:glyphIndex withProposedLineFragmentRect:rect)
20
end
Start here: http://www.rubymotion.com/developer-center/guides/getting-started/
Should be something like this:
def layoutManager(layoutManager, lineSpacingAfterGlyphAtIndex: nil, withProposedLineFragmentRect: nil)
return 20.0
end
Check the repo for examples.
Also, that method should return a float, not an int.

List the most recently hired employee in each department [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 9 years ago.
Improve this question
I'am a trainee in sql, any help for this query,would be great.TIA.
select distinct jobtitle,max([HireDate]),LoginID from [HumanResources].[Employee] as e
where loginid in (select distinct LoginID from HumanResources.Employee
where JobTitle in (select distinct JobTitle from [HumanResources].[Employee]) )
group by JobTitle,LoginID;
If you are talking about a command line program this will work.
puts "Hello World"
or if you want an object oriented version
class HelloWorld
def initialize(name)
#name = name.capitalize
end
def sayHi
puts "Hello #{#name}!"
end
end
hello = HelloWorld.new("World")
hello.sayHi
If you are looking for a ruby on rails version of Hello World. Check the Getting Started Guide for Rails.

Getting a word category [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Is there an API to get a word's category?
e.g.,
word: "joke"; caetgory (retrieved from API) : "Entertainment",
word: "united states"; category(retrieved from API): "countries"
word:"jay leno"; category"celebrities(retrieved from API)",
and so on...
Categorization is always highly subjective. If you wish to use mainstream appproaches, try Wordnet (http://wordnet.princeton.edu/). It's used by most workers in Natural Language Processing. Here's an example
dog, domestic dog, Canis familiaris
=> canine, canid
=> carnivore
=> placental, placental mammal, eutherian, eutherian mammal
=> mammal
=> vertebrate, craniate
=> chordate
=> animal, animate being, beast, brute, creature, fauna
Here's what you get for "joke"
# S: (n) joke, gag, laugh, jest, jape (a humorous anecdote or remark intended to provoke laughter) "he told a very funny joke"; "he knows a million gags"; "thanks for the laugh"; "he laughed unpleasantly at his own jest"; "even a schoolboy's jape is supposed to have some ascertainable point"
* direct hyponym / full hyponym
* part meronym
* direct hypernym / inherited hypernym / sister term
o S: (n) wit, humor, humour, witticism, wittiness
(a message whose ingenuity or verbal skill or
incongruity has the power to evoke laughter)
Note that "hypernym" is a broader term and can be used as a category.
For people you can try Wikipedia and scrape the infobox (not much fun - I have spent a lot of time doing it). Better to try DBPedia.
Here is the Wikipedia infobox for Jay Leno:
JayLenoJul08.jpg
Leno in July 2008
Birth name James Douglas Muir Leno
Born April 28, 1950 (1950-04-28) (age 60)[1]
New Rochelle, New York, U.S.[1]
Medium Television
Nationality American
Years active 1973–present
Genres Observational comedy
Subject(s) Everyday life, American culture
Influences Johnny Carson, Robert Klein, Alan King, George Carlin, Don Rickles, Bob Newhart, Rodney Dangerfield
Influenced Dennis Miller[2]
Spouse Mavis Leno (1980–present)
Notable works and roles The Tonight Show with Jay Leno (host, 1992–2009)
The Jay Leno Show
(host, 2009–2010)
The Tonight Show with Jay Leno (host, 2010– )
Signature Jay Leno Autograph.svg
Website The Tonight Show with Jay Leno
Emmy Awards
Outstanding Variety, Music or Comedy Series
1995 The Tonight Show with Jay Leno
I don't know whether that has been captured for DBPedia. If so you will get some good categorization