Skip to content

Instantly share code, notes, and snippets.

View raghavgarg1257's full-sized avatar
🤘

Raghav Garg raghavgarg1257

🤘
View GitHub Profile
https://weworkremotely.com/jobs/3115-driven-javascript-node-js-developer
https://angel.co/jan-juna
https://stackoverflow.com/jobs?searchTerm=node.js&type=contract&allowsremote=true
https://www.facebook.com/
https://www.dropurpin.com/
https://news.ycombinator.com/jobs
http://www.devgurus.io/
https://www.startupjobs.cz/nabidka/6918/node-js-developer?utm_source=facebook&utm_medium=ad-auto&utm_content=6918&utm_campaign=2093
https://www.dropurpin.com/apply-now/
http://x-team.com/
@raghavgarg1257
raghavgarg1257 / xcarchive2ipa
Last active January 29, 2021 21:54 — forked from samma835/xcarchive2ipa
To convert .xcarchive to .ipa | xcode 9
xcodebuild
-exportArchive
-exportOptionsPlist {PATH_TO_PROJECT_ROOT}/ios/build/info.plist
-archivePath {PATH_TO_ARCHIVE_MADE_USING_XCODE}/MyApp.xcarchive
-exportPath {PATH_TO_EXPORT_THE_APP}/MyApp.ipa
@raghavgarg1257
raghavgarg1257 / Contest.sol
Last active December 16, 2017 07:49 — forked from codeanyway11/Contest.sol
Solidity Contract for Hackathon.
pragma solidity ^0.4.0;
contract Contest{
struct Participant {
string email;
address account;
bool participated;
}