Skip to content

Instantly share code, notes, and snippets.

View vineetchoudhary's full-sized avatar

Vineet Choudhary vineetchoudhary

View GitHub Profile
#!/bin/sh
# JenkinsStart.sh
# scripts
#
# Created by Vineet Choudhary on 26/05/17.
# Copyright © 2017 Vineet Choudhary. All rights reserved.
echo -n "Jenkins CI Server"
echo -n "Cleaning Jenking CI Server"
# SWAMI KARUPPASWAMI THUNNAI
# ============================================================
# Simple yet Hackable! WhatsApp API [UNOFFICIAL] for Python3
# Note: The author gives permission to use it under Apache 2.0
# Special Thanks To: alecxe, For reviewing my code!
# ============================================================
import time
import datetime as dt
@vineetchoudhary
vineetchoudhary / build.sh
Created July 2, 2018 07:25
Build script which use to create a multi-architecture shared library that will work on an iOS device and the simulator for the any library. (Xamarin.iOS)
#xcodebuild location
XBUILD=/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild
#Project root
PROJECT_ROOT=/Volumes/LongTime/Shared/RESideMenu/
#Complete Project Path
PROJECT=/Volumes/LongTime/Shared/RESideMenu/RESideMenu.xcodeproj
#Target Name
@vineetchoudhary
vineetchoudhary / RealmExtension.cs
Last active September 21, 2023 12:50
Get a standalone / unmanaged / Clone RealmObject using Realm Xamarin
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using Realms;
namespace ProjectName.Core.Extensions
{
public static class RealmExtension
{