Skip to content

Instantly share code, notes, and snippets.

View cunidev's full-sized avatar

R. T. cunidev

View GitHub Profile
@cunidev
cunidev / trump.md
Last active November 8, 2020 15:28
trump bot tweets

Very bot-like content appeared on Donald Trump and other US politicians' (Kamala Harris, Joe Biden, etc.) tweets after election loss. Or is it some kind of copypasta from some conservative souce?

Just paste these tweets in the Twitter search bar, and lots of accounts tweeting the same will appear. The causes and sources may vary a lot in any case, so it is just not safe to jump to any conclusion from this. Suggestions welcome.

  • TRUMP SHOULD'VE WON THIS ELECTION HE SHOULD BE THE PRESIDENT THIS IS RIGGED RIGGED RIGGED IM LEAVING THIS COUNTRY AND MOVING TO ALASKA WITH MY FAMILY (https://pbs.twimg.com/media/EmTwPQSWEAAzBJ2?format=png&name=900x900)

  • I AM DONE WITH THIS COUNTRY. I shall be leaving the USA shortly with my wife in disgust at this situation . Mexico is a much more welcome place. I’d rather be in a stable country like theirs as opposed to one run by Biden. My kids are scared of him!!!

  • RECOUNT! RECOUNT! OUR BELOVED TRUMP IS THE ANSWER. Biden has tricked y’all. I’m booking my flights to Peru

<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated with glade 3.22.1 -->
<interface>
<requires lib="gtk+" version="3.20"/>
<object class="GtkWindow">
<property name="can_focus">False</property>
<child>
<placeholder/>
</child>
<child>
@cunidev
cunidev / moody-shapes.py
Last active April 12, 2024 19:50
Tutorial to rotate and zoom things (an useless rectangle here) using Gtk.Gesture touchpad and touchscreen gestures in Python GTK3 (gi) bindings. Spaghetti ahead!
#!/usr/bin/python3
# Needs Wayland!
import gi, math
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
import cairo
dialog = Gtk.MessageDialog(None, 0, Gtk.MessageType.WARNING,
Gtk.ButtonsType.OK_CANCEL, "Press OK to test rotate")