const asynchronousCode = async () => {
  const a = await step1();
  const b = await step2(a);
  const c = await step3(b);
  
  return a + b + c;
  
    
      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
    
  
  
    
  | module BoxOutSports | |
| def self.kv | |
| @kv ||= KeyValueJsonb.new(use_local_time: Rails.env.test?) { | |
| ActiveRecord::Base.connection | |
| } | |
| 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
    
  
  
    
  | Get-WinEvent -LogName Microsoft-Windows-Sysmon/Operational | where { $_.TimeCreated -ge (Get-Date) - (New-TimeSpan -Day 1) } | where Id -EQ 1 | where Message -match "rundll32" | Format-List -Property Message | Out-String -Stream | Select-String -Pattern " CommandLine:" | 
  
    
      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
    
  
  
    
  | # System Preferences -> Accessibility -> Display -> Reduce motion | |
| tell application "Messages" to activate | |
| tell application "Messages" | |
| set chatCount to (count of chats) | |
| end tell | |
| tell application "System Events" | |
| tell process "Messages" | 
  
    
      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
    
  
  
    
  | [Application Options] | |
| datadir=./btcd/data | |
| listen=127.0.0.1:9333 | |
| simnet=1 | |
| nobanning=1 | |
| debuglevel=debug | 
  
    
      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
    
  
  
    
  | import React, { useState, useEffect } from "react"; | |
| function App() { | |
| const [value, setValue] = useState(""); | |
| //Waits for a period of time then resolves | |
| function timeout(ms) { | |
| return new Promise((resolve) => setTimeout(resolve, ms)); | |
| } | 
  
    
      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
    
  
  
    
  | docker logs nginx 2>&1 | grep "127." | |
| # ref: http://stackoverflow.com/questions/34724980/finding-a-string-in-docker-logs-of-container | 
  
    
      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
    
  
  
    
  | import React, { useState, useEffect } from 'react'; | |
| import { withStyles, makeStyles } from '@material-ui/core/styles'; | |
| import Table from '@material-ui/core/Table'; | |
| import TableBody from '@material-ui/core/TableBody'; | |
| import TableCell from '@material-ui/core/TableCell'; | |
| import TableContainer from '@material-ui/core/TableContainer'; | |
| import TableHead from '@material-ui/core/TableHead'; | |
| import TableRow from '@material-ui/core/TableRow'; | |
| import Skeleton from '@material-ui/lab/Skeleton'; | 
  
    
      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
    
  
  
    
  | // server.js | |
| // BASE SETUP | |
| // ============================================================================= | |
| const EthereumTx = require('ethereumjs-tx').Transaction; | |
| var BigNumber = require('bignumber.js'); | |
| var express = require('express'); // call express | |
| var app = express(); // define our app using express | |
| var bodyParser = require('body-parser'); | 
      
      Loading
      
  Sorry, something went wrong. Reload?
      Sorry, we cannot display this file.
      Sorry, this file is invalid so it cannot be displayed.