Skip to content
View textbrowser's full-sized avatar

Block or report textbrowser

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
textbrowser/README.md

All labor is skilled labor and all labor must be compensated. Love free? Compensate the people.

Qt@Android

Dialogs and windows should be shown with showMaximized().
Other methods such as show() will prevent interaction with the interfaces.
For dialogs: showMaximized() followed by exec(), if necessary.
QMenu::exec() is fine, however, set the minimum width of the menu to the parent's width.
QMenu::exec(point) prevents interaction with the menu's actions.

Assign Awesome Color-Image

void class::assign_image(QPushButton *button, const QColor &color)
{
  if(!button)
    return;

  QImage image(QSize(16, 16), QImage::Format_ARGB32);
  QPainter painter(&image);

  image.fill(color);
  button->setIcon(QPixmap::fromImage(image));
}

Correct EWS276-FIT Lights

After a firmware update of 1.0.45, the device's LEDs may not function.
The EWS276-FIT's operating system is some derivative of Unix, perhaps Linux.

1. Log into the device.
2. Proceed to System Manager -> Firmware.
3. Download the current settings via Backup Setting -> Export.
4. Retain a copy of the downloaded file.
5. > tar -vxzf file.tar.gz
6. Edit etc/config/system and locate "config led" sections.
7. For each malfunctioning LED, add:
   a. option brightness '1'
   b. option default '1'
8. > tar -cvzf 1.tar.gz etc
9. Upload 1.tar.gz via System Manager -> Firmware -> Restore New Setting.

Pinned Loading

  1. glitch glitch Public

    Life is a glitch. Your Arduino projects should not be. Colorful diagrams for the curious.

    C++ 79 4

  2. wise wise Public

    Wise is a wonderfully-interactive and simple educational program for reading portable documents.

    C++ 2

  3. qup qup Public

    Qup is software for software.

    C++ 6

  4. dreamy dreamy Public

    Sleepy time machine for petite laptops. A digital clock. Transform obsolete devices into creative alternatives.

    C++ 3