Skip to content

Instantly share code, notes, and snippets.

@fosini
fosini / iconsizes
Last active July 6, 2018 14:57
iOS App icon sizes
Since this simple list is too complicated for the apple team, I've decided to create it myself.
IOS 12 ICON SIZES
(Taken from Xcode 10)
---------- IPHONE
IPHONE NOTIFICATION (IOS 7-12) 20PT
2x - 40px
3x - 60px
@fosini
fosini / howto.txt
Created July 4, 2018 08:19
Installing newest Go version on Amazon EC2 Instance (Ubuntu)
#1 Download and uncompress
sudo curl -o <Download link>
sudo tar -xvf <tar file>
#2 Move the directory
sudo mv go /usr/local
#3 Edit .profile
sudo nano ~/.profile
@fosini
fosini / howto.txt
Created July 4, 2018 08:17
Installing newest gcc version on Amazon EC2 version (Ubuntu)
# 1 install old gcc
sudo apt-get install gcc
# 2 add repository
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
# 3 update repositories
sudo apt-get update
# 3 install newest gcc
@fosini
fosini / howto.txt
Created July 4, 2018 08:15
Installing newest ffmpeg version on Amazon EC2 Instance (Ubuntu)
#1 first add the repository
sudo add-apt-repository ppa:jonathonf/ffmpeg-3
#2 update your repository list
sudo apt-get update
#3 install ffmpeg
sudo apt-get install ffmpeg