Skip to content

Instantly share code, notes, and snippets.

View alexkadis's full-sized avatar

Alex Kadis alexkadis

View GitHub Profile
@tsiege
tsiege / The Technical Interview Cheat Sheet.md
Last active July 27, 2024 16:51
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@mdhorine
mdhorine / Email Affiliated Contacts
Created January 28, 2015 13:50
Email Affiliated Contacts button for use with Salesforce NPSP
/**************************************************
/ Button: Email Affiliated Contacts /
/ Author: Matt Horine /
/ Client: Step Up to Serve /
/ Date: 28 January 2015 /
/ /
/ Description: Button on Affiliated Contacts /
/ related list to allow selection and email of /
/ affiliated contacts from the Account Page in /
/ the same way the Send an Email button allows /
@woodwardtw
woodwardtw / gform_to_calendar_script.js
Last active January 28, 2017 04:00
google script to make g calendar entries from google form submissions
//adapted from https://www.considerednormal.com/2014/04/adding-a-google-calendar-event-using-google-forms/
//this is the ID of the calendar where you want the event to show up, this is found on the calendar settings page of the calendar in question
var calendarId = "YOUR_SECRET_CALENDAR_ID_GOES_HERE";
//below are the column ids that represents the values used in the spreadsheet (these start with 1 rather than 0 like on some things)
//start date - make sure you also check the time box in the Google form (that's new- at least to me)
var startDtId = 5;
//end date - make sure you check the time box in the Google form
var endDtId = 7;
@marcpalmer
marcpalmer / DebugMetrics.swift
Created July 6, 2020 23:45
Helper for rendering metrics of SwiftUI views in debugging
// Created by Marc Palmer on 13/02/2020.
//
// Usage: Add .debugMetrics(.yellow) or similar to any view
import Foundation
import SwiftUI
/// Renders the width and height of a view
struct DebugMetricsModifier: ViewModifier {
let colour: Color