https://www.webtexts.192.168.1.244.xip.io/signup/student#register_email
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
| LogLevel debug2 | |
| PageLogFormat | |
| MaxLogSize 0 | |
| ErrorPolicy retry-job | |
| Listen 0.0.0.0:631 | |
| Listen /run/cups/cups.sock | |
| Browsing On | |
| BrowseLocalProtocols dnssd | |
| DefaultAuthType Basic | |
| DefaultEncryption IfRequested |
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 {getType} from 'typesafe-actions'; | |
| import {getSomething} from '@api'; | |
| import {fetchSomething} from '@actions'; | |
| import {AppState} from '@types'; | |
| async function handleFetchSomething({dispatch, getState, action, nextDispatchAsync}) { | |
| const state: AppState = getState(); | |
| const params = buildParams(action.payload,state); | |
| try { |
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
| gapi.client.sheets.spreadsheets.values.get({ | |
| spreadsheetId: '1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms', | |
| range: 'Class Data!A2:E', | |
| }).then(function(response) { | |
| var range = response.result; | |
| for (i = 0; i < range.values.length; i++) { | |
| var row = range.values[i]; | |
| var colA = row[0]; | |
| var colB = row[1]; | |
| var combined = colA + colB; |