This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Clozemaster artifical image, page cleaner and fullscreen | |
// @namespace https://gist.github.com/evilUrge | |
// @version 0.5 | |
// @description Change background image URLs from *.small.png to *.png, stretch images, and ensure they are not trimmed on Clozemaster | |
// @author Gilad Maoz | |
// @license MIT | |
// @icon https://www.clozemaster.com/icons/favicon-96x96.png | |
// @match https://www.clozemaster.com/* | |
// @grant none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Clozemaster artifical image URL Changer and Resizer | |
// @namespace https://gist.github.com/evilUrge/999787edfbb9c9f485037eebdbd2ada3 | |
// @version 0.4 | |
// @description Change background image URLs from *.small.png to *.png, stretch images, and ensure they are not trimmed on Clozemaster | |
// @author Gilad Maoz | |
// @license MIT | |
// @icon https://www.clozemaster.com/icons/favicon-96x96.png | |
// @match https://www.clozemaster.com/* | |
// @grant none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { join } from "path"; | |
import { fileURLToPath } from "url"; | |
import type { Construct } from "constructs"; | |
import { Duration, Stack, StackProps } from "aws-cdk-lib"; | |
import { LogLevel, NodejsFunction } from "aws-cdk-lib/aws-lambda-nodejs"; | |
import { Runtime } from "aws-cdk-lib/aws-lambda"; | |
import { Rule, Schedule } from "aws-cdk-lib/aws-events"; | |
import { LambdaFunction } from "aws-cdk-lib/aws-events-targets"; | |
import { Effect, PolicyStatement } from "aws-cdk-lib/aws-iam"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { Agent } = require("https"), | |
request = require("request"); | |
const FINGERPRINTSET = [ | |
"C3:07:56:2C:08:A5:E1:2E:41:20:10:7A:02:87:86:C3:72:49:45:BF", | |
]; | |
const req = request( | |
{ | |
url: "https://www.duckduckgo.com/", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Schema } as GlueSchema from '@aws-cdk/aws-glue'; | |
/** | |
* Create a parquet columns and Glue table columns from a common object | |
* @param attributes { name: type } | |
* @returns { | |
* parquetSchema: { name: { type: 'type' }, ...}, | |
* glueSchema: [ | |
* { name: 'name', type: 'UTF8' }, | |
* ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Paginates over a AWS service function. | |
* @param functionToExec The function to execute | |
* @param methodToExec The method to execute | |
* @param params The parameters to pass to the method | |
* @param keyToAppend The key to append to the result | |
* @returns A promise that resolves to an array of results | |
*/ | |
export async function paginator( | |
functionToExec: any, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.handler = async (event, context, callback) => { | |
const | |
baseJFrogURL = 'https://yourorg.jfrog.io/artifactory', | |
request = event.Records[0].cf.request, | |
body = request.body; | |
switch (body.action) { | |
case 'added': | |
const orgEmailAddress = useJeffUserQueryHere(body.member.login) // Your place to shine! | |
const payload = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('dotenv').config() | |
const admin = require("firebase-admin"); | |
admin.initializeApp({ | |
credential: admin.credential.cert( | |
process.env.NODE_ENV === 'production' | |
? require('./gcp.json') | |
: JSON.parse(process.env.FIREBASE_ADMIN_SDK) | |
), | |
databaseURL: process.env.FIREBASE_DATABASE_URL | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
logger = logging.getLogger(__name__) | |
def report(saved_object): | |
""" | |
report is the main function in reporter | |
# :param uid: django ORM unique identifier; for internal usage. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
from json import loads | |
from django.apps import apps | |
from django.core.exceptions import FieldDoesNotExist, FieldError | |
from django.core.serializers import serialize | |
from django.http import JsonResponse | |
logger = logging.getLogger(__name__) |
NewerOlder