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
/* search */ | |
._0_more_search_bangs_list_box { | |
border:0; | |
} | |
._0_more_search_user_bang_item { | |
min-height:unset; | |
padding-top:2px; | |
padding-bottom:2px; | |
} | |
.serp_nav_end .k_ui_dropdown_data_list { |
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
.app-logo { | |
display: none; | |
} | |
.theme_dark { | |
--background-color: #221f22; | |
--header-bg: #2d2a2e; | |
--search-result-title: #66d9ef; | |
--result-item-title-border: transparent; | |
--color-primary_visited: #ae81ff; |
This file has been truncated, but you can view the full file.
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
// see my comment here: https://github.com/pipedrive/client-nodejs/issues/340 | |
/* eslint-disable max-classes-per-file */ | |
declare module 'pipedrive' { | |
export class ApiClient { | |
authentications: any; | |
} | |
export class DealsApi { | |
constructor(client: 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
source 'https://github.com/CocoaPods/Specs.git' | |
link_with ['socketiotest', 'socketiotestTests'] | |
pod 'SIOSocket', '~> 0.2.0' |
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
F12:: | |
X:="""" | |
Y:="""""" | |
Z=%Clipboard% | |
StringReplace,Z,Z,%X%,%Y%,All | |
StringReplace,Z,Z,`n,,All | |
StringReplace,Z,Z,`r,,All | |
Clipboard=%Z% | |
return |
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
var page = require('webpage').create(); | |
page.open('http://www.website.com/', function (status) { | |
if (status === 'success') { | |
captureAjaxResponsesToConsole(); | |
} | |
}); | |
function captureAjaxResponsesToConsole() { | |
// logs ajax response contents to console so sublime's onConsoleMessage can use the contents |
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/sh | |
# | |
# Script to run innobackupex script (for all databases on server), check for success, and apply logs to backups. | |
# | |
# (C)2010 Owen Carter @ Mirabeau BV | |
# This script is provided as-is; no liability can be accepted for use. | |
# You are free to modify and reproduce so long as this attribution is preserved. | |
# | |
INNOBACKUPEX=innobackupex-1.5.1 |