Skip to content

Instantly share code, notes, and snippets.

View vineetchoudhary's full-sized avatar

Vineet Choudhary vineetchoudhary

View GitHub Profile
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
namespace TestAnalyticsAPI
@vineetchoudhary
vineetchoudhary / manifest.plist
Created March 9, 2016 13:15 — forked from hramos/manifest.plist
Sample manifest file for Over The Air iOS deployment
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>items</key>
<array>
<dict>
<key>assets</key>
<array>
<dict>
@vineetchoudhary
vineetchoudhary / BlockVariable.h
Created February 5, 2016 12:48
Creating block variable
//defining a block variable
typedef void (^Completionhandler)(BOOL success);
//creating a block variable
Completionhandler myCompletionHandler;
@vineetchoudhary
vineetchoudhary / -->.c
Last active December 11, 2015 09:09
What is the name of the “-->” operator?
#include<stdio.h>
int main(){
int x = 10;
while (x-->0){
printf("%d",x);
}
}