Skip to content

Instantly share code, notes, and snippets.

@grishka
grishka / AE CubicBezier.jsx
Created February 18, 2023 03:06
After Effects cubic-bezier exporter
// Source: https://community.adobe.com/t5/after-effects-discussions/convert-ae-keyframes-info-to-cubicbezier-points/m-p/6139286#M135604
// Usage: select a layer, then File -> Scripts -> Run Script File... -> select this script
var curItem = app.project.activeItem;
var selectedLayers = curItem.selectedLayers;
var selectedProperties = curItem.selectedProperties;
var output="";
if (selectedLayers == 0) {
output="Please Select at least one Layer";
// ==UserScript==
// @name Coub Likes Downloader
// @version 0.1
// @description try to take over the world!
// @author Grishka
// @match https://coub.com/*
// @grant none
// ==/UserScript==
// Добавляем кнопку в шапку
@grishka
grishka / BadApple.c
Created January 26, 2022 16:02
Siemens SGold Bad Apple
#include <swilib.h>
// Глобальные переменные и структуры для создания окна и графического контекста
#define GUI_STATE_CLOSED 0
#define GUI_STATE_BACKGROUND 1
#define GUI_STATE_ACTIVE 2
wchar_t maincsm_name_body[140];
package me.grishka.appkit.utils;
import android.util.SparseArray;
import android.view.ViewGroup;
import java.util.ArrayList;
import java.util.HashMap;
import androidx.recyclerview.widget.RecyclerView;