Skip to content

Instantly share code, notes, and snippets.

View atsepkov's full-sized avatar

Alexander Tsepkov atsepkov

View GitHub Profile
@atsepkov
atsepkov / syntastic rapydscript linter
Created September 16, 2016 05:55
Allowa Syntastic to lint RapydScript files
" =======================================================================
" Version: 1.0.0
" Description: Vim plugin that enables syntax checking in syntastic with the rapydscript linter
" Maintainer: Alexander Tsepkov <atsepkov at gmail dot com>
" ======================================================================
" See
" https://github.com/scrooloose/syntastic/wiki/Syntax-Checker-Guide#external
if exists("g:loaded_syntastic_rapydscript_rapydscript_checker")
@atsepkov
atsepkov / universal-framework.sh
Last active February 18, 2021 06:26 — forked from cromandini/universal-framework.sh
This run script will build the iphoneos and iphonesimulator schemes and then combine them into a single framework using the lipo tool (including all the Swift module architectures). This version works with Cocoapods, merging simulator and device architectures for intermediate libraries as well. To use this script, go to Product > Scheme > Edit S…
exec > /tmp/${PROJECT_NAME}_archive.log 2>&1
UNIVERSAL_OUTPUTFOLDER=${BUILD_DIR}/${CONFIGURATION}-universal
if [ "true" == ${ALREADYINVOKED:-false} ]
then
echo "RECURSION: Detected, stopping"
else
export ALREADYINVOKED="true"