Skip to content

Instantly share code, notes, and snippets.

View mungi's full-sized avatar

Mungi mungi

  • SK Holdings
  • Korea
View GitHub Profile
@vgeshel
vgeshel / function.js
Last active February 9, 2022 09:19
AWS Lambda function for forwarding SNS notifications to Slack
console.log('Loading function');
const https = require('https');
const url = require('url');
// to get the slack hook url, go into slack admin and create a new "Incoming Webhook" integration
const slack_url = 'https://hooks.slack.com/services/...';
const slack_req_opts = url.parse(slack_url);
slack_req_opts.method = 'POST';
slack_req_opts.headers = {'Content-Type': 'application/json'};
@nuomi1
nuomi1 / PrintBootCampESDInfo.swift
Last active July 8, 2024 20:42
macOS and BootCamp Latest
#!/usr/bin/env swift
//
// PrintBootCampESDInfo.swift
//
// Created by nuomi1 on 8/5/18.
// Copyright © 2018年 nuomi1. All rights reserved.
//
import Foundation
@imAbdelhadi
imAbdelhadi / Linkedin learning subtitle translation to Arabic.js
Last active November 8, 2022 19:35
LinkedIn Learning ترجمة دورات لينكدإن ليرننج إلى اللغة العربية آليا
// طريقة التشغيل من موقعي على الرابط التالي: blog.abdelhadi.org
// ==UserScript==
// @name LinkedIn Learning ترجمة لينكدإن ليرننج
// @description LinkedIn Learning ترجمة دورات لينكدإن ليرننج إلى اللغة العربية
// @namespace https://github.com/journey-ad
// @version 0.2.1
// @icon https://static.licdn.cn/sc/h/2c0s1jfqrqv9hg4v0a7zm89oa
// @author journey-ad
// @match *://www.linkedin.com/learning/*
// @require https://greasyfork.org/scripts/411512-gm-createmenu/code/GM_createMenu.js?version=864854