Skip to content

Instantly share code, notes, and snippets.

View Icaro-Lima's full-sized avatar
🏅
Working from home

Ícaro Lima Icaro-Lima

🏅
Working from home
View GitHub Profile
@lucis
lucis / ufcg-pro.md
Last active March 7, 2023 15:51
Funcionalidade da extensão UFCGPro

Extensão UFCGPro

Funcionalidades

  • Ao instalar a extensão, automaticamente todas as funcionalidades serão disponibilizadas no próximo acesso ao Controle Acadêmico através do endereço https://pre.ufcg.edu.br:8443/ControleAcademicoOnline/Controlador e, de acordo com a página que o usuário esteja acessando, a funcionalidade será renderizada juntamente com o resto do conteúdo do sistema, como se fosse parte da implementação original.

Algumas funcionalidades são comuns para alunos e professores, como:

Próximo item da agenda

@Icaro-Lima
Icaro-Lima / UFCG-ControleAcadêmico.js
Last active November 16, 2021 15:56
Coloque os códigos e turmas que você quer se matricular e deixe o script no console do navegador. Quando abrir a página de matrícula aperte enter. O script deve apenas marcar os checkboxes das disciplinas. Não esqueça de deixar o seu joinha ⭐️!
/**
* @author Ícaro Lima <[email protected]>
*/
let quero = [
{ cod:1411290, turma:1 },
{ cod:1109053, turma:3 },
{ cod:1411316, turma:1 },
{ cod:1114222, turma:1 },
{ cod:1411192, turma:1 },
@hasanbayatme
hasanbayatme / Singleton.cs
Last active March 5, 2023 19:06
Best Singleton implementation in Unity, Combine it with preload scene pattern to achieve best implementation.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public abstract class Singleton<T> : MonoBehaviour where T : Component
{
#region Fields
/// <summary>
@DashW
DashW / ScreenRecorder.cs
Last active November 12, 2025 14:51
ScreenRecorder - High Performance Unity Video Capture Script
using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Threading;
class BitmapEncoder
{
public static void WriteBitmap(Stream stream, int width, int height, byte[] imageData)