Technology Updated 2025-07-16
Polyprotein Updated 2025-07-16
Trinity Updated 2025-07-16
Sikhism Updated 2025-07-16
Uracil Updated 2025-07-16
Intel Updated 2025-07-16
Fraction Updated 2025-07-16
Real line Updated 2025-07-16
Polymerase chain reaction Updated 2025-07-16
This is an extremely widely used technique as of 2020 and much earlier.
If allows you to amplify "any" sequence of choice (TODO length limitations) between a start and end sequences of interest which you synthesize.
If the sequence of interest is present, it gets amplified exponentially, and you end up with a bunch of DNA at the end.
You can then measure the DNA concentration based on simple light refraction methods to see if there is a lot of DNA or not in the post-processed sample.
One common problem that happens with PCR if you don't design your primers right is: en.wikipedia.org/wiki/Primer_dimer
Sometime it fails: www.reddit.com/r/molecularbiology/comments/1kouomw/when_your_pcr_fails_again_and_you_start/
Nothing humbles you faster than a bandless gel. One minute you’re a scientist, the next you’re just a pipette-wielding wizard casting spells that don’t work. Meanwhile, physicists are out there acting like gravity always behaves. Smash that upvote if your reagents have ever gaslit you.
and a comment:
PCR = Pray, Cry, Repeat
Nightmare Updated 2025-07-16
Polynomial over a field Updated 2025-07-16
By default, we think of polynomials over the real numbers or complex numbers.
However, a polynomial can be defined over any other field just as well, the most notable example being that of a polynomial over a finite field.
For example, given the finite field of order 9, and with elements , we can denote polynomials over that ring as
where is the variable name.
For example, one such polynomial could be:
and another one:
Note how all the coefficients are members of the finite field we chose.
Given this, we could evaluate the polynomial for any element of the field, e.g.:
and so on.
We can also add polynomials as usual over the field:
and multiplication works analogously.
Wiki Updated 2025-07-16
Rich person Updated 2025-07-16
String polarization Updated 2025-07-16
This is about the polarization of a string in 3D space. That is the first concept of polarization you must have in mind!
PostgreSQL GIST Updated 2025-07-16
The highly underdocumented built-in module, that supports SQL spatial index and a lot more.
Quite horrendous as it only seems to work on geometric types and not existing columns. But why.
And it uses custom operatores, where standard operators would have been just fine for points...
Minimal runnable example with points:
set -x
time psql -c 'drop table if exists t'
time psql -c 'create table t(p point)'
time psql -c "insert into t select (point ('(' || generate_series || ',' || generate_series || ')')) from generate_series(1, 10000000)"
time psql -c 'create index on t using gist(p)'
time psql -c "select count(*) from t where p <@ box '(1000000,1000000),(9000000,2000000)'"
The index creation unfortunately took 100s, so it will not scale to 1B points very well whic his a shame.
Frequency Updated 2025-07-16

There are unlisted articles, also show them or only show them.