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
Link to older version of the asset on github: | |
https://github.com/twitter/bootstrap/raw/96c3e709963516a06ad6e723a7bba3fbf5fc1ba2/assets/img/tablesorter-indicators.png |
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
<script runat="server" language="javascript"> | |
Platform.Load("Core","1"); | |
//Self-Cleansing List | |
var selfCleansinglist = List.Init("auto_cleansing_list"); | |
var status; | |
//Newly Refreshed Group that Contains Unengaged Subscribers | |
var unengagedGroup = List.Init('unengaged_subscribers_group'); |
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
<script runat="server" language="javascript"> | |
Platform.Load("Core","1"); | |
var requestsDE = DataExtension.Init("bz-solcon-requests"); | |
var triggeredSend = TriggeredSend.Init("bsrf"); | |
requestsDE.Rows.Add({ | |
repName: Request.GetFormField('repName'), | |
companyName: Request.GetFormField('companyName'), |
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
SELECT DISTINCT | |
SubscriberKey | |
FROM _Sent | |
WHERE | |
DATEDIFF(day, EventDate, GETDATE()) = 0 | |
AND SubscriberKey NOT IN ('[email protected]','[email protected]''[email protected]') |
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> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<title> | |
SolCon Request Form | |
</title> | |
<!-- HTML5 shim, for IE6-8 support of HTML elements --> | |
<!--[if lt IE 9]> |
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
<? | |
public function dataExtensionAdd($ExternalKey = '', $client = '') { | |
try { | |
/* Create the Soap Client */ | |
$soap = new EBG_ExactTarget_Client($this->wsdl, array('trace'=>1)); | |
/* Set username and password here */ | |
$soap->username = $this->username; | |
$soap->password = $this->password; |
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>Example</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script> | |
<!-- Available here: https://github.com/carhartl/jquery-cookie --> | |
<script src="jquery.cookie.js"></script> | |
</head> | |
<body> | |
<script> |
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
SELECT | |
myData.*, | |
ROUND(6378.137 * ACOS( | |
CASE | |
WHEN (SIN(RADIANS((SELECT latitude FROM [Zip Codes and Locations] where [Zip Code] = 46254))) * SIN(RADIANS(geo.Latitude))) + (COS(RADIANS((SELECT latitude FROM [Zip Codes and Locations] where [Zip Code] = 46254))) * COS(RADIANS(geo.Latitude)) * COS(RADIANS(geo.Longitude) - RADIANS((SELECT longitude FROM [Zip Codes and Locations] where [Zip Code] = 46254)))) > 1 THEN 1 | |
WHEN (SIN(RADIANS((SELECT latitude FROM [Zip Codes and Locations] where [Zip Code] = 46254))) * SIN(RADIANS(geo.Latitude))) + (COS(RADIANS((SELECT latitude FROM [Zip Codes and Locations] where [Zip Code] = 46254))) * COS(RADIANS(geo.Latitude)) * COS(RADIANS(geo.Longitude) - RADIANS((SELECT longitude FROM [Zip Codes and Locations] where [Zip Code] = 46254)))) < -1 THEN -1 | |
ELSE (SIN(RADIANS((SELECT latitude FROM [Zip Codes and Locations] where [Zip Code] = 46254))) * SIN(RADIANS(geo.Latitude))) + (COS(RADIANS((SELECT latitude FROM [Zip Codes and Locations] where [Zip Code] = 4 |
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
{% if paginator.previous_page %} | |
{% if paginator.previous_page == 1 %} | |
{% capture previous_page %}/{% endcapture %} | |
{% else %} | |
{% capture previous_page %}/page{{ paginator.previous_page }}{% endcapture %} | |
{% endif %} | |
<a href="{{ previous_page }}" class="previous">← Newer Posts</a> | |
{% endif %} | |
{% if paginator.next_page %} |
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
class KylesSuperCoolPdf < Prawn::Document | |
def initialize | |
super() | |
repeat :all do | |
#Create a bounding box and move it up 18 units from the bottom boundry of the page | |
bounding_box [bounds.left, bounds.bottom + 18], width: bounds.width do | |
text "Probably the Best Footer Ever", size: 8, align: :center | |
end |
OlderNewer