Tasks
- Interactions article
- Get to Know Hashawha—Beginner MTB Group Ride, Thu, Jul 23, 2026, 5:30 PM | Meetup
SBIRs
- 9:00 standup
- More PySide6
- 4:00 Tim (rework spreadsheet!)
Tasks
SBIRs
Tasks
SBIRs
import sys
from PySide6.QtWidgets import QApplication, QDialog
# Assuming the code you provided is saved in a file named 'hello1_ui.py'
from designer.ui_hello1 import Ui_Dialog
# 1. Create a wrapper class that inherits from QDialog
class MyDialog(QDialog):
def __init__(self):
super().__init__()
# 2. Instantiate the generated UI class
self.ui = Ui_Dialog()
# 3. Setup the user interface on this dialog instance
self.ui.setupUi(self)
# Optional: Connect your "WriteText" button to a function
self.ui.WriteText.clicked.connect(self.handle_write_text)
def handle_write_text(self):
self.ui.textBrowser.append("Hello World!")
# 4. Main execution block to run the app
if __name__ == "__main__":
app = QApplication(sys.argv)
# Instance your dialog class
dialog = MyDialog()
# .exec() blocks execution, opens the window, and returns the result code
result = dialog.exec()
if result == QDialog.Accepted:
print("User clicked OK")
else:
print("User clicked Cancel")
sys.exit(0)
Making Kin with the Machines · Journal of Design and Science
Tasks
SBIRs
[2607.15267] Pretraining Data Can Be Poisoned through Computational Propaganda
Tasks
SBIRs
Tasks
Lots of meetings today and still hot. Going to go for an early ride, I think
Tasks
SBIRs

Generative AI Is an Engineering Disaster – The Atlantic
Tasks
SBIRs
Tasks
SBIRs
Finished first pass at the Book Information and Marketing Form. Uploaded to assets

https://www.ft.com/content/9c8ff45b-7c20-4c2e-93c9-c52339ffdcee?syn-25a6b1a6=1
Tasks
SBIRs
Forgot to do this yesterday!
Billionaire solipsism, dictator solipsism, AI, and the fascist paradigm
Tasks
SBIRs
Brown Professor Suspects Most of His Class Used AI to Cheat
AI is already rewriting reality for billions of people. It is getting women wrong.
Tasks
SBIRs
Tasks
SBIRs
That was a nice trip

Worship me at the office altar: Why narcissistic leaders resist remote work
Tasks
SBIRs
You must be logged in to post a comment.