This file contains hidden or 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
tar -cvzf ~/stuff.tar.gz folder_name file_name.txt | |
#To Zip: | |
tar czvf myfolder.tar.gz abcfolder/ | |
#To Unzip: | |
tar -zxvf extractme.tar.gz |
This file contains hidden or 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
<html lang="#rn:language_code#"> | |
<head> | |
<meta name="viewport" content="width=device-width; initial-scale=1.0; minimum-scale=1.0; maximum-scale=1.0; user-scalable=no;"/> | |
<meta charset="utf-8"/> | |
<title><rn:page_title/></title> | |
<rn:theme path="/euf/assets/themes/mobile" css="site.css"/> | |
<rn:head_content/> | |
<link rel="icon" href="images/favicon.png" type="image/png"> | |
<?php | |
/* Manually include autoload.js |
This file contains hidden or 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
<?php $urlRefresh = sprintf("/app/answers/list/refresh/%d", !(getUrlParm('refresh') == '1')); ?> | |
<rn:widget path="search/SearchButton2" report_id="XXXX" report_page_url="#rn:php:$urlRefresh#" /> |
This file contains hidden or 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
mkdir "%USERPROFILE%\RightNowDev" | |
mkdir "%USERPROFILE%\RightNowDev\AddIns" | |
mkdir "%USERPROFILE%\RightNowDev\AddIns\$(TargetName)" | |
copy /Y "$(TargetDir)$(TargetName).*" "%USERPROFILE%\RightNowDev\AddIns\$(TargetName)\" |
This file contains hidden or 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.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.ServiceModel; | |
using System.ServiceModel.Channels; | |
using RightNow.AddIns.AddInViews; | |
using RightNow.AddIns.Common; | |
using System.AddIn; | |
using System.Windows.Forms; |
This file contains hidden or 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
/** | |
* Author: Ryan McCullough | |
* Project Location: https://src.rightnow.com/spaces/ps_addins_library | |
* Blob Hash: $Id: bd91d4b076c661881199de313de1aa4dc44a41d9 $ | |
* Description: IAutomationClient static singleton helper for Add-Ins | |
* | |
*/ | |
using System.AddIn; |
This file contains hidden or 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.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Windows.Forms; | |
using Microsoft.VisualBasic.FileIO; |
This file contains hidden or 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.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Xml.Serialization; | |
using System.IO; | |
namespace SSOTester { | |
[Serializable()] |
This file contains hidden or 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.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.ServiceModel; | |
using ServiceTest.SMSWS; | |
using System.ServiceModel.Channels; | |
using System.Net; | |
using System.Security.Cryptography.X509Certificates; | |
using System.Net.Security; |
This file contains hidden or 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
<?php | |
namespace RightNow\Connect\v1_1; | |
/** | |
* Named ID that can be included in a list | |
*/ | |
class AccessLevel | |
extends NamedIDDeltaOptList | |
{ |