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
<?php | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, "https://cloud.feedly.com/v3/subscriptions"); | |
$headers = array("Authorization: OAuth [Add your dev token here]"); | |
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); | |
$output = curl_exec($ch); |
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 pro_id, Text,enum from Prompt where PGroup='esc7' order by text |
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
copy /y "\\mosaiqServer\networkShare\outputFile.pdf" "C:\Users\Public\Desktop\outputFile.pdf" |
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
crexport.exe -F report.rpt -O outputFile.pdf -U databaseUserName -P databasePassword -a "parameterName:parameterValue" |
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 Program | |
{ | |
static void Main(string[] args) | |
{ | |
int totalSum = CalculateSumOfMultiples(3, 1000) + CalculateSumOfMultiples(5, 1000) - CalculateSumOfMultiples(15, 1000); | |
Console.WriteLine("The sum of all multiples of 3 and 5 below 1000 is: " + totalSum); | |
Console.ReadLine(); | |
} | |
private static int CalculateSumOfMultiples(int divisor, int max) |