Skip to content

Instantly share code, notes, and snippets.

@caiovncius
caiovncius / drop_tables.sql
Last active April 27, 2023 18:31
Drop all tables from database
SET FOREIGN_KEY_CHECKS = 0;
SET GROUP_CONCAT_MAX_LEN=32768;
SET @tables = NULL;
SELECT GROUP_CONCAT('`', table_name, '`') INTO @tables
FROM information_schema.tables
WHERE table_schema = (SELECT DATABASE());
SELECT IFNULL(@tables,'dummy') INTO @tables;
SET @tables = CONCAT('DROP TABLE IF EXISTS ', @tables);
PREPARE stmt FROM @tables;
@caiovncius
caiovncius / deploy.sh
Created April 15, 2020 15:54
Fat .framework for Xcode 11
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"
@caiovncius
caiovncius / post-install.sh
Created August 29, 2019 21:05
Create universal Framework
# Create by @mkeremkeskin - https://gist.github.com/mkeremkeskin/da143c10de4582c4f76c0380d4676983#file-post-action-script-sh
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"
@caiovncius
caiovncius / script.sh
Created November 1, 2018 12:12
Fix Cocoa framework
#!/bin/sh
FRAMEWORK_NAME = "NAME OF FRAMEWROK"
UNIVERSAL_OUTPUTFOLDER=${BUILD_DIR}/${CONFIGURATION}-universal
# make sure the output directory exists
mkdir -p "${UNIVERSAL_OUTPUTFOLDER}"
# Step 1. Build Device and Simulator versions
grep -rl "\"version\":4" --include=*metadata.json | xargs -i@ sed -i 's/\"version\":4/\"version\":3/g' @
@caiovncius
caiovncius / build.gradle
Last active May 10, 2018 15:56
Fix Gradle Android
configurations {
all*.exclude group: 'com.android.support', module: 'support-v13'
}
configurations.all {
resolutionStrategy {
force 'com.android.support:support-v4:27.1.0'
}
}