View status.ts
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
Remote Changed ASU_Student_Record_Page FlexiPage force-app/main/default/flexipages/ASU_Student_Record_Page.flexipage-meta.xml |
View Hide Invision
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 Hide Invision | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://salesforce.invisionapp.com/* | |
// @grant none | |
// ==/UserScript== |
View Heroku.js
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 Heroku Autocomplete Private Space | |
// @version 0.1 | |
// @match https://dashboard.heroku.com/teams/align-technologies* | |
// @require https://code.jquery.com/jquery-3.3.1.min.js | |
// @grant none | |
// ==/UserScript== | |
function rewrite() { | |
$(".alert-warning").hide(); |
View gist:a8a3ac290fae1acc02f33479caf2a896
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 TamperMonkey Heroku Search/Replace Names | |
// @match https://dashboard.heroku.com/* | |
// @grant none | |
// ==/UserScript== | |
function replaceDreamhouse() { | |
var replaceArry = [ | |
[/dreamhouse/gi, 'pecten'] | |
]; |
View sfdx
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
#!/bin/bash | |
case $1 in | |
list) | |
# sfdx list | |
/usr/local/bin/sfdx force:org:list | |
;; | |
push) | |
if [ "$2" == "over" ] | |
then |
View worst-practice.html
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
<!doctype html> | |
<html> | |
<head> | |
<title>Sushi Mockup</title> | |
<!-- Nothing wrong with this block of styling. Collapse or keep scrolling. --> | |
<style type="text/css"> | |
* | |
{ | |
margin: 0; | |
padding: 0; |
View gist:2148657
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
using System; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
namespace MvcApplication.Helpers | |
{ | |
public static class ShortUrl | |
{ | |
/// <summary> | |
/// Converts a Base-10 Integer to Base-64. This will effectively shorten the number of characters used to represent a number > 10. |
View Responsive-Hello-World.html
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Hello World introduction to Responsive Design</title> | |
<style type="text/css"> | |
body { | |
background-color: #eee; | |
} | |
#content { |
View DisqusExport.aspx
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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head id="Head1" runat="server"> | |
<title>Use Ctrl + A to select All, then Paste into Notepad. This is your XML export file.</title> | |
</head> | |
<body> | |
<form id="form1" runat="server"> |
View fiddle.css
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
body { | |
font: 12px verdana; | |
background-color: #5C87B2; | |
} | |
form { | |
max-width: 400px; | |
padding: 15px; | |
background-color: white; | |
} |
NewerOlder