Disclaimer:
I am not a doctor. This is not medical advice.
Everything described below was done at my own risk.
Recently I posted about using 10 mg torasemide.
This time I tested 20 mg.
From what I found:
20 mg torasemide ≈ 80 mg furosemide
The difference compared to 10 mg was immediately noticeable.
Timeline
Tracked for accuracy:
14:30 — 20 mg torasemide
14:15 — weak (pre-effect)
14:52 — very light
15:13 — good
15:21 — good
15:37 — weak
16:11 — good
Summary:
- Stronger than 10 mg
- More consistent
- Noticeably longer duration
Subjective Effects
Effect kicked in roughly ~2 hours after intake.
Overall felt “cleaner” than expected.
No:
- headache
- leg discomfort
Electrolytes (subjectively) felt stable.
Appetite suppression was noticeable:
- Ate at ~14:30 (2 slices pizza)
- No hunger afterwards
Club Observation (CL)
Later that night (~22–23), went out with mtn friends.
Was drunk asf, so take this part with a grain of salt.
Something I noticed:
Normally I get decent eye contact in social settings.
This time — almost none.
Despite:
- defined cheekbones
- sharp jawline
- no sunken eyes
At the same time, my hltn → lmtn friend:
- acne
- slightly bloated face
was getting noticeably more attention.
Not sure how to interpret this.
Possible explanations:
- randomness / alcohol factor
- social dynamics > looks
- or I’m just copemaxxing
Torasemide vs Furosemide
Torasemide feels superior.
Pros:
- smoother effect
- longer duration
- no noticeable discomfort
Cons:
- 2–3x more expensive
Still haven’t tested furosemide yet, but based on reports,
it seems harsher in terms of side effects.
Additional Notes
- High sodium intake before use → not recommended (ignored)
- Alcohol consumption → no unusual increase in urination beyond baseline
Future Plans
- 30 mg torasemide (~120 mg furosemide equivalent)
or
- 120 mg furosemide
Leaning towards staying with torasemide.
Conclusion
20 mg > 10 mg
Torasemide > Furosemide (my op)
Stronger
Longer
More stable
Still experimenting.
public class Main {
public static void main(String[] args) {
}
}///////////
abstract class Computer {
final void wlacz(){
System.out.println("wlacz");
};
public abstract String zmienProcesor();
public abstract boolean czyMaEkranDotykowy();
}
//TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or
// click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter.
import java.awt.*;
public class Main {
public static void main(String[] args) {
Circle circle = new Circle(10);
Square square = new Square(10);
System.out.println(square.calculateArea());
System.out.println(circle.calculateArea());
}
}////////////
abstract class Shape {
public abstract double calculateArea();
double a;
public Shape(double a) {
this.a = a;
}
}
///////////
public class Square extends Shape{
public double calculateArea() {
return a*a;
};
public Square(double a) {
super(a);
}
}
//////////
public class Circle extends Shape{
public double calculateArea() {
return 3.14 * (a*a);
};
public Circle(double a) {
super(a);
}
}