Skip to content

Instantly share code, notes, and snippets.

# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@Brontojoris
Brontojoris / sitecat-bookmarklets.js
Created August 31, 2015 22:47
Adobe Reports & Analytics (SiteCatalyst) Shortcuts
// User Management
javascript:var ssSession=document.location.search.match(/ssSession=(.*)&/)[1],jpj=document.location.search.match(/jpj=(.*)(&|$)/)[1];document.location.href="https://"+document.location.hostname+"/p/am/1.3/index.html?a=Permissions.GetLoginsUI&ssSession="+ssSession+"&jpj="+jpj
// Report Suite Manager
javascript:var ssSession=document.location.search.match(/ssSession=(.*)&/)[1],jpj=document.location.search.match(/jpj=(.*)(&|$)/)[1];document.location.href="https://"+document.location.hostname+"/p/am/1.3/index.html?a=ReportSuite.Index&ssSession="+ssSession+"&jpj="+jpj
// Scheduled Reports
javascript:var ssSession=document.location.search.match(/ssSession=(.*)&/)[1],jpj=document.location.search.match(/jpj=(.*)(&|$)/)[1];document.location.href="https://"+document.location.hostname+"/p/suite/1.3/index.html?a=ScheduledReport.ReportListManager&ssSession="+ssSession+"&jpj="+jpj+"&page=1&page_size=50&ascend=&sort=run_when&filter_text="
//Dashboard Manager
@Brontojoris
Brontojoris / adobeDatafeedImporter.r
Last active August 15, 2016 12:10
Adobe Analytics Clickstream Importer
# Load required libraries
library(DBI)
library(RMySQL)
# Init settings
conn <- dbConnect(RMySQL::MySQL(), host="localhost", user="rstudio", password="rstudio", dbname="rstudio");
ftp = list(
username = "username",
@Brontojoris
Brontojoris / GTMCodeEditor.css
Created September 12, 2016 11:14
GTM Code Editor
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("tagmanager.google.com") {
textarea {font-family:consolas !important}
}
@Brontojoris
Brontojoris / Atlassian Tweaks.css
Created September 12, 2016 11:16
Atlassian Tweaks
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("telstradigital.atlassian.net") {
#aui-flag-container {visibility: hidden !important;}
#announcement-banner {display: none !important;}
}
@Brontojoris
Brontojoris / Audience Manager Tweaks.css
Created September 12, 2016 11:17
Audience Manager Tweaks
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("bank.demdex.com") {
.coral-Textfield {
width: 340px;
}
@media (max-width: 880px) {
#cui-outerrail {
width: 60px;
overflow-x: scroll;
}
@Brontojoris
Brontojoris / BitBucket Tweaks.css
Created September 12, 2016 11:19
BitBucket Tweaks
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("bitbucket.org") {
.refract-container {
tab-size: 2 !important; // Add this line
}
header#announcement {display:none}
}
@Brontojoris
Brontojoris / Firebug Tweaks.css
Created September 12, 2016 11:19
Firebug Tweaks
/* Use smaller font */
#fbPanelBox .panelTab-text, #fbPanelBox .toolbarbutton-text
{ font-size:x-small !important; }
/* Eliminate useless navigation arrows */
#fbNavigateBackButton, #fbNavigateForwardButton, #fbNavigationSeparator
{ display:none !important; }
/* Eliminate side margin inside tabs */
#fbPanelBox .panelTab-left,
@Brontojoris
Brontojoris / Firefox UI Tweaks.css
Created September 12, 2016 11:22
Firefox UI Tweaks
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* hide tab close button */
.tabbrowser-tab .tab-close-button {
visibility: collapse !important;
}
.tabbrowser-tab:not([pinned]):hover .tab-close-button.always-right {
display: none !important;
}
@Brontojoris
Brontojoris / slack-narrow.css
Last active March 22, 2017 05:06
Slack: Hide sidebar when window is narrow
@media (max-width: 700px) {
/* hide the sidebar */
.client_channels_list_container {
display: none !important;
}
*#messages_container {
margin-left: 0 !important;
}
#messages-input-container,
#notification_bar {