Skip to content

Instantly share code, notes, and snippets.

View KABBOUCHI's full-sized avatar
🎯
Focusing

Georges KABBOUCHI KABBOUCHI

🎯
Focusing
View GitHub Profile
@KABBOUCHI
KABBOUCHI / SmoothGameCameraMovement.cs
Created January 21, 2020 20:25 — forked from IRCSS/SmoothGameCameraMovement.cs
Unity Camera Movement in Game view like Scene View with filtering
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// Moves Camera similar to how camera is moved in the Unity view port. Drop the scrip on the game object which has the camera and you wish to move.
public class SmoothGameCameraMovement : MonoBehaviour
{
@KABBOUCHI
KABBOUCHI / AppServiceProvider.php
Last active October 5, 2020 20:02
Inertia - Evaluate lazy props only if requested
<?php
namespace App\Providers;
use App\Inertia\ResponseFactory;
use Illuminate\Support\ServiceProvider;
use Inertia\ResponseFactory as InertiaResponseFactory;
class AppServiceProvider extends ServiceProvider
{
@KABBOUCHI
KABBOUCHI / webpack.mix.js
Created October 29, 2020 15:56 — forked from thecrypticace/webpack.mix.js
Mix + custom API for separate builds
const mix = require("laravel-mix")
mix.site = (id, callback) => {
if (!process.env.SITE || process.env.SITE === id) {
return callback()
}
};
mix.site('admin', () => {
mix.js("resources/js/admin/app.js", "public/js/admin.js")
[
{
"component": "Header",
"props": {
"class": "text-red-400 text-lg",
"content": "Testing!"
}
},
{
"component": "Card",
@KABBOUCHI
KABBOUCHI / AVOCADO.md
Last active September 4, 2023 14:55
Instadapp - Avocado Multisig

Setup

import { ethers } from "ethers" // ethers@v5
import multisigForwarderABI from "./multisigForwarder.json"
import avoMultisigSafeABI from "./avoMultisigSafe.json"

const avocadoProvider = new ethers.providers.JsonRpcProvider("https://rpc.avocado.instadapp.io")
const polygonProvider = new ethers.providers.JsonRpcProvider("https://polygon-rpc.com")