Skip to content

Instantly share code, notes, and snippets.

View samuelchou's full-sized avatar

Samuel Chou samuelchou

View GitHub Profile
@samuelchou
samuelchou / group-runner.js
Created October 17, 2023 09:20
Group Function by Ryan Shanh
// Description: Grouping member into table, by Ryan Shanh, 2023/10/17
function getRandomInt(max) {
return Math.floor(Math.random() * max);
}
var memberList = [];
var memberLimit;
var tableMax;
var tableLimit = [];
@samuelchou
samuelchou / CustomMessagingService.kt
Created December 3, 2021 16:48
Android - Firebase Cloud Messaging, More Customization for background messages.
package studio.ultoolapp.firebaselab
import android.util.Log
import com.google.firebase.messaging.FirebaseMessaging
import com.google.firebase.messaging.FirebaseMessagingService
import com.google.firebase.messaging.RemoteMessage
import java.util.*
class CustomMessagingService : FirebaseMessagingService() {
companion object {