Skip to content

Instantly share code, notes, and snippets.

View albertobeiz's full-sized avatar

Alberto Beiz albertobeiz

View GitHub Profile
@albertobeiz
albertobeiz / UpdateTwitterBanner.php
Created June 9, 2021 13:25
Update your twitter profile banner with your last 5 followers profile images
<?php
namespace App\Commands;
use Abraham\TwitterOAuth\TwitterOAuth;
use Imagick;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
@albertobeiz
albertobeiz / gist:7752298
Created December 2, 2013 16:35
Esta clase contiene el codigo completo del videotutorial de introducción a libgdx que puedes encontrar en la siguiente direccion: http://openwebinars.net/webinar-desarrollo-de-juegos-para-android/
package introLibGDX;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.audio.Sound;
import com.badlogic.gdx.graphics.GL10;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
import com.badlogic.gdx.math.Interpolation;
import com.badlogic.gdx.math.MathUtils;