This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -type f | sed -e 's/.*\.//' | sort | uniq -c | sort -n | grep -Ei '(java|kt|cpp)$' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Future<Database> loadDatabase() async { | |
bool alwaysFreshDatabase = true; | |
if (alwaysFreshDatabase) { | |
var databasesPath = await getDatabasesPath(); | |
var path = join(databasesPath, 'bible.db'); | |
// delete existing if any | |
await deleteDatabase(path); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Remove the history from | |
rm -rf .git | |
-- recreate the repos from the current content only | |
git init | |
git add . | |
git commit -m "Initial commit" | |
-- push to the github remote repos ensuring you overwrite history | |
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <memory> | |
void show_1(int value) { | |
std::cout << "show_1: " << &value << std::endl; | |
} | |
void show_2(int & value) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.prsolucoes.android; | |
import android.text.TextUtils; | |
import okhttp3.Call; | |
import okhttp3.OkHttpClient; | |
public class OkHttpUtils { | |
public static void cancelCallWithTag(OkHttpClient client, String tag) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)activateAudioSession | |
{ | |
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil]; | |
[[AVAudioSession sharedInstance] setActive:YES error:nil]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
text_magenta=$(tput setaf 5) | |
text_bold=$(tput bold) | |
text_normal=$(tput sgr0) | |
archives_path=~/"Library/Developer/Xcode/Archives" | |
derived_data_path=~/"Library/Developer/Xcode/DerivedData" | |
simulator_data_path=~/"Library/Developer/CoreSimulator/Devices" | |
device_support_path=~/"Library/Developer/Xcode/iOS DeviceSupport" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ACTION = build | |
AD_HOC_CODE_SIGNING_ALLOWED = NO | |
ALTERNATE_GROUP = staff | |
ALTERNATE_MODE = u+w,go-w,a+rX | |
ALTERNATE_OWNER = grantdavis | |
ALWAYS_SEARCH_USER_PATHS = NO | |
ALWAYS_USE_SEPARATE_HEADERMAPS = YES | |
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer | |
APPLE_INTERNAL_DIR = /AppleInternal | |
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version=3.10 | |
build=1 | |
mkdir ~/temp | |
cd ~/temp | |
wget https://cmake.org/files/v$version/cmake-$version.$build.tar.gz | |
tar -xzvf cmake-$version.$build.tar.gz | |
cd cmake-$version.$build/ | |
./bootstrap | |
make -j4 | |
sudo make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//temp/log.do_configure:Check your system clock | |
shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//temp/log.do_configure.12548:Check your system clock | |
shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//automake-1.15.1/configure:Check your system clock" "$LINENO" 5 | |
grep: shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//automake-1.15.1/patches/0001-automake-Add-default-libtool_tag-to-cppasm.patch: No such file or directory | |
grep: shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//automake-1.15.1/patches/new_rt_path_for_test-driver.patch: No such file or directory | |
grep: shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//automake-1.15.1/patches/automake-replace-w-option-in-shebangs-with-modern-use-warnings.patch: No such file or directory | |
grep: shared/rpi3-custom/build/tmp/work/x86_64-linux/automake-native/1.15.1-r0//automake-1. |