Teddy
banner
ttortorici.bsky.social
Teddy
@ttortorici.bsky.social
Trained in condensed matter physics
Practicing ion-trapper
🧪 Struggling to get good grazing-incidence X-ray scattering (GIWAXS/GISAXS) data? Try this calibration technique arxiv.org/abs/2506.22970
Grazing incidence X-ray scattering alignment using the area detector
Grazing incidence X-ray scattering experiments are designed to achieve strong scattering signals from materials, such as molecular monolayers, island films, or thin films that are localized to the sur...
arxiv.org
July 1, 2025 at 2:19 AM
Why is Microsoft's built in filesystem search so bad? I can literally do better with this Python script:

```
from pathlib import Path

p = Path("where to search")
for f in p.rglob("what to search"):
print(f)
```
December 8, 2024 at 4:19 PM
I wrote a tutorial for my students on how to set up VS Code for Python development with both Jupyter and LaTeX support. I do all my analysis, plotting, and paper writing in a single VS Code instance. It saves a ton of effort having everything in one environment compared to Overleaf.
Teddy's Python Development Crash Course
Contribute to UCBoulder/Quantum-Forge development by creating an account on GitHub.
github.com
December 8, 2024 at 3:41 PM
A simple script to convert PDFs into PNGs in your project workspace. It is meant to provide an alternative to using Overleaf to create images with TikZ and then using a cloud-based conversion tool, allowing you to integrate your TikZ workflow directly into your project.

github.com/ttortorici/t...
GitHub - ttortorici/tikz-png: A simple script for creating Tikz pngs offline
A simple script for creating Tikz pngs offline. Contribute to ttortorici/tikz-png development by creating an account on GitHub.
github.com
November 24, 2024 at 8:03 PM