Skip to content

Instantly share code, notes, and snippets.

View SomewhatMay's full-sized avatar
🎮
Epic Gaming

Umayeer Ahsan SomewhatMay

🎮
Epic Gaming
View GitHub Profile
@peterhoward42
peterhoward42 / # How I integrated Google Drive in a Web Application.md
Last active March 20, 2026 19:04
How I integrated Google Drive in a Web Application

I integrated a Web App with Google Drive

Mission

I'm developing a Web Application that is integrated with Google Drive.

The App helps you to create drawings and save them in your own Google Drive - just like Google Docs.

This gist shows you the code that does the integration with Google Drive, and a little about my experience in learning about it and getting it to work.

@Leejjon
Leejjon / texturesInScene2dgame.md
Last active July 17, 2025 22:38
How to organize your stages and textures in your libGDX game

Starting out

If you have started out to build a game with libGDX, you've were probably creating and disposing textures out like this:

public class MyGdxGame extends ApplicationAdapter {
    SpriteBatch batch;
    Texture badlogic;

    @Override

public void create () {