Edited, memorised or added to reading queue

on 26-Jun-2020 (Fri)

Do you want BuboFlash to help you learning these things? Click here to log in or create user.

Flashcard 5559869902092

Question
Alphaproteobacteria α eg. Rhizobium
Answer
[default - edit me]

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 5559873834252

Question
Betaproteobacteria
Answer
use nutrie nt substan ces that d if fuse away from areas of an aerobic decomposition of organic matt er (h ydrogen ga s, ammonia, methan e) and includ es chem oautotro phs and ch emoauto trophs.

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 5559874882828

Question
Rhizobiales
Answer
Key genera: Bartonel la , Methylobacterium , Pelagibacter , Rhizobium , Agrobacterium • Contains phototrophs, chemolithotrophs, symbionts, nitrogen-fix ing bacteria, pathoge ns, and chemoorganotrophs

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Flashcard 5559875931404

Question
Rickettsiales
Answer
Key genera: Rickettsia, Wolbachia • Rickettsia – Small, coccoid or rod-shaped cells – Most are oblig ate intracellular parasites – Causative agent of several human diseases: T yphus, Rocky Mountain spotted fever

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

pdf

cannot see any pdfs







Much of what we’re trying to accomplish with DI is related to the Dep Inversion Principle.
This principle states that higher-level modules in our applications shouldn’t depend on lower-level modules; instead, modules of both levels should depend on Abstraction
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Not only does the principle prescribe loose coupling, it states that Absctraction should be owned by the module using the Abstraction.
In this context, “owned” means that the consuming module has control over the shape of the Abstraciton , and it’s distributed with that module,
rather than with the module that implements it.
The consuming module should be able to define the Abstraction in a way that benefits itself the most.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Flashcard 5564669496588

Question
Discorra sobre autocorrelação.
Answer

Em estatística, autocorrelação é uma medida que informa o quanto o valor de uma realização de uma variável aleatória é capaz de influenciar seus vizinhos. Por exemplo, o quanto a existência de um valor mais alto condiciona valores também altos de seus vizinhos.

Segundo a definição da estatística, o valor da autocorrelação está entre 1 (correlação perfeita) e -1, o que significa anti-correlação perfeita. O valor 0 significa total ausência de correlação.

A autocorrelação de uma dada variável se define pela distância, ou atraso com que se deseja medi-la. Quando essa distância é zero, tem-se o valor máximo 1, pois trata-se da variável correlacionada com ela mesma. Outros valores devem ser calculados caso a caso.


statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill
Autocorrelação – Wikipédia, a enciclopédia livre
rrelação, e mesmo várias definições, e nem todas essas definições são equivalentes. Em algumas áreas, o termo é usado como sinônimo de autocovariância. Estatística[editar | editar código-fonte] <span>Em estatística, autocorrelação é uma medida que informa o quanto o valor de uma realização de uma variável aleatória é capaz de influenciar seus vizinhos. Por exemplo, o quanto a existência de um valor mais alto condiciona valores também altos de seus vizinhos. Segundo a definição da estatística, o valor da autocorrelação está entre 1 (correlação perfeita) e -1, o que significa anti-correlação perfeita. O valor 0 significa total ausência de correlação. A autocorrelação de uma dada variável se define pela distância, ou atraso com que se deseja medi-la. Quando essa distância é zero, tem-se o valor máximo 1, pois trata-se da variável correlacionada com ela mesma. Outros valores devem ser calculados caso a caso. Supondo-se uma variável aleatória Xt discreta estacionária, dependente do tempo, com média μ, sua autocorrelação ρ ( k ) {\displaystyle \rho (k)} é definida como: ρ ( k ) = C o v ( X t







When you write loosely coupled code, you create many classes to create an applica- tion.
It can be tempting to compose these classes at many different locations in order to create small subsystems,
but that limits your ability to Intercept those systems to modify their behavior. Instead, you should compose classes in one single area of your application.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




When you look at Constructor Injection in isolation, you may wonder, doesn’t it defer the decision about selecting a Dep to another place?
Yes, it does, and that’s a good thing. This means that you get a central place where you can connect col- laborating classes.
The Comp Root acts as a third party that connects consumers with their services.
The longer you defer the decision on how to connect classes, the more you keep your options open.
Thus, the C R should be placed as close to the application’s entry point as possible.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Assemblies are a deployment artifact: you split code into multiple assemblies to allow code to be deployed separately.
An architectural layer, on the other hand, is a logical artifact: you can group multiple logical artifacts in a single deployment artifact.
Even though the assembly that holds both the C R and the UI layer depends on all other modules in the system, the UI layer itself doesn’t.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




As an example, the Control Freak anti-pattern happens when you create a new instance of a Volatile Dep by using the new keyword.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Every time you create a Volatile Dep , you explicitly (using new KW) state that you’re going to control the lifetime
of the instance and that no one else will get a chance to Intercept that particular object.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




The most blatant example of Control Freak is when you make no effort to introduce Abstraction in your code.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Don’t conclude from this section that we generally oppose the use of Concrete Factory classes.

A Concrete Factory can solve other problems, such as code repetition, by encapsulating complex creation logic.

It, however, doesn’t provide any value with regards to DI. Use it when it makes sense.

statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Mary and Jens’ static ProductRepositoryFactory reads from the configuration file at runtime, but recall from section 2.3.3 that this is problematic:
Only the finished application should rely on configuration files. Other parts of the application, such as the ProductRepositoryFactory , shouldn’t request values from a configuration file but, instead, should be configurable by their callers
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




CommerceContext loads the connection string from a configuration

file — this is a trap. It causes every new CommerceContext to read the configuration

file, even though the configuration file typically doesn’t change while

an application is running. A CommerceContext shouldn’t contain a hard-coded

connection string, but neither should it load a configuration value from the

configuration system.

Mary loaded the connection string from the configuration file from within the CommerceContext

class (shown in listing 2.2). From the perspective of its consumers, the

dependency on this configuration value is completely hidden. As we alluded to

when discussing listing 2.2, this implicitness contains a trap.

Although the ability to configure a compiled application is important, only the

finished application should rely on configuration files. It’s more flexible for reusable

libraries to be imperatively configurable by their callers, instead of reading

configuration files themselves. In the end, the ultimate caller is the application’s

entry point. At that point, all relevant configuration data can be read from a configuration

file directly at startup and fed to the underlying libraries as needed.

We want the configuration that CommerceContext requires to be explicit.

statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on




Assembly dependencies are in fact transitive.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Remember, though, that dependencies aren’t defined by the number of modules, but the number of times each module depends on another module.
statusnot read reprioritisations
last reprioritisation on suggested re-reading day
started reading on finished reading on

pdf

cannot see any pdfs




Flashcard 5564697545996

Tags
#correlation
Question
Summarize the concept of correlation.
Answer
.

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 5564700691724

Tags
#covariance
Question
Summarize the concept of covariance.
Answer
.

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill






Flashcard 5564702526732

Tags
#autocorrelation
Question
Summarize the concept of autocorrelation.
Answer
.

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill