Skip to content

Instantly share code, notes, and snippets.

View tsuriu's full-sized avatar

Tulio Amancio tsuriu

View GitHub Profile
@tsuriu
tsuriu / index.html
Created August 29, 2022 17:33
WhatsApp Inspired Bootstrap Chat UI Direct Messaging App
<div class="container">
<div class="row no-gutters">
<div class="col-md-4 border-right">
<div class="settings-tray">
<img class="profile-image" src="https://randomuser.me/api/portraits/men/39.jpg" alt="">
<span class="settings-tray--right">
<i class="material-icons">cached</i>
<i class="material-icons">message</i>
<i class="material-icons">menu</i>
</span>
@tsuriu
tsuriu / convert.sh
Last active January 29, 2020 19:01
Converting images for pedro
#!/bin/bash
for img in $(find $1 -iname "*.jpg" -type f)
do
if [ $(du -sk $img | cut -f1) -ge 300 ]
then
convert $img -resize 50% $img
echo $img
fi
done
@tsuriu
tsuriu / sources.list
Created December 11, 2019 13:00 — forked from h0bbel/sources.list
/etc/apt/sources.list for Ubuntu 18.04.1 LTS Bionic Beaver
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ bionic main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ bionic-updates main restricted