See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
import com.badlogic.gdx.ApplicationAdapter; | |
import com.badlogic.gdx.ApplicationListener; | |
import com.badlogic.gdx.Gdx; | |
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application; | |
import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Window; | |
import com.badlogic.gdx.utils.Array; | |
import com.sun.jna.Native; | |
import com.sun.jna.Pointer; | |
import com.sun.jna.platform.win32.User32; | |
import com.sun.jna.platform.win32.WinDef.HWND; |
import com.badlogic.gdx.ApplicationAdapter; | |
import com.badlogic.gdx.ApplicationListener; | |
import com.badlogic.gdx.Gdx; | |
import org.lwjgl.LWJGLUtil; | |
import org.lwjgl.opengl.Display; | |
import org.panda_lang.utilities.commons.function.Lazy; | |
import java.lang.reflect.InvocationTargetException; | |
import java.lang.reflect.Method; |
// Providing Context | |
// ================== | |
import React, {useState, useEffect} from "react" | |
const Context = React.createContext() | |
function ContextProvider({children}) { | |
const [allPhotos, setAllPhotos] = useState([]) | |
const [cartItems, setCartItems] = useState([]) |
Find the Discord channel in which you would like to send commits and other updates
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
To remove a submodule you need to: