This file contains hidden or 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
# frozen_string_literal: true | |
class ApplicationController < ActionController::Base | |
def index | |
MyService.async_call(current_user) | |
end | |
end |
This file contains hidden or 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
FRAMERATE TEST: time=92.7, frames=8463, fps=91.30 | |
GPU LOAD: time=92.7, wait=8.2, load=8.8% |
This file contains hidden or 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
209.170.241.165 |
This file contains hidden or 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
xattr -d com.apple.quarantine [install dir]/X-Plane\ 11/Resources/plugins/PilotEdge/ |
This file contains hidden or 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
fdfs |
This file contains hidden or 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
2.6.1 |
This file contains hidden or 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
- name: Bundle install with --deploy | |
bundler: | |
state: present | |
deployment_mode: yes | |
chdir: "{{ ansistrano_release_path.stdout }}" | |
executable: /home/ubuntu/.rbenv/shims/bundle | |
- name: Running pending migrations | |
shell: $HOME/.rbenv/bin/rbenv exec bundle exec rake db:migrate | |
run_once: true |
This file contains hidden or 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
# frozen_string_literal: true | |
# | |
# = net/protocol.rb | |
# | |
#-- | |
# Copyright (c) 1999-2004 Yukihiro Matsumoto | |
# Copyright (c) 1999-2004 Minero Aoki | |
# | |
# written and maintained by Minero Aoki <[email protected]> | |
# |
This file contains hidden or 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
- name: "Rollbar deployment notification" | |
rollbar_deployment: | |
token: "{{rollbar_token}}" | |
environment: production | |
revision: "{{ ansistrano_git_result.after }}" | |
user: "" # Somehow pull this from ansible awx/tower that launched the job? | |
rollbar_user: "" | |
comment: "" # hmmm maybe save result of the git log command? |
This file contains hidden or 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
// https://stackoverflow.com/questions/49771555/firebase-auth-error-data-parameter-is-nil-calling-getidtokenforcingrefresh | |
// https://github.com/firebase/firebase-ios-sdk/issues/1072 | |
// https://github.com/firebase/firebase-ios-sdk/issues/1140 | |
func applicationDidBecomeActive(_ application: UIApplication) { | |
if let currentUser = Auth.auth().currentUser { | |
currentUser.getIDToken { (token, error) in | |
} | |
} |