We can't make this file beautiful and searchable because it's too large.
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
| 6132132320 | |
| 5715282698 | |
| 2144781439 | |
| 8175222733 | |
| 9096371391 | |
| 6297720417 | |
| 3462171537 | |
| 4702952819 | |
| 8313259804 | |
| 7084766023 |
We can't make this file beautiful and searchable because it's too large.
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
| Connecting to memcache url: "memcached-main.swi5ut.0001.usw2.cache.amazonaws.com:11211" | |
| number,sms,mms,total | |
| +16132132320,0,0,0 | |
| +15715282698,21,55,76 | |
| +12144781439,24,194,218 | |
| +18175222733,4,4,8 | |
| +19096371391,9,2,11 | |
| +16297720417,0,0,0 | |
| +13462171537,0,0,0 | |
| +14702952819,35,209,244 |
We can't make this file beautiful and searchable because it's too large.
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
| 0,6132132320,"","","","","",No customer agreement for region:Canada | |
| 1,5715282698,11152019,"",AT&T Mobility,AT&T,Wireless,"","",No | |
| 2,2144781439,11152019,469688,T-Mobile,T-Mobile,Wireless,"",04292017,Yes,AT&T Mobility,AT&T,"",Wireless | |
| 3,8175222733,11152019,469688,T-Mobile,T-Mobile,Wireless,"",12222016,Yes,AT&T Mobility,AT&T,"",Wireless | |
| 4,9096371391,11152019,"",Metro PCS,T-Mobile,Wireless,"",05312018,Yes,Sprint,Sprint,"",Wireless | |
| 5,6297720417,11152019,"",Metro PCS,T-Mobile,Wireless,"","",No | |
| 6,3462171537,11152019,000000,AT&T Mobility,AT&T,Wireless,"","",No | |
| 7,4702952819,11152019,"",AT&T Mobility,AT&T,Wireless,"",09302019,Yes,Verizon Wireless,Verizon,"",Wireless | |
| 8,8313259804,11152019,650732,Verizon Wireless,Verizon,Wireless,"",09302019,Yes,AT&T Mobility,AT&T,"",Wireless | |
| 9,7084766023,11152019,224515,AT&T Mobility,AT&T,Wireless,"",10112019,Yes,T-Mobile,T-Mobile,"",Wireless |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
| 7877640000 | |
| 7875351985 | |
| 7877602038 | |
| 7878324040 | |
| 7879159424 | |
| 7877671652 | |
| 7879923200 | |
| 7877582525 | |
| 7876221720 | |
| 3178735861 |
We can't make this file beautiful and searchable because it's too large.
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
| Connecting to memcache url: "memcached-main.swi5ut.0001.usw2.cache.amazonaws.com:11211" | |
| number,sms,mms,total | |
| +17877640000,5,0,5 | |
| +17875351985,5,0,5 | |
| +17877602038,4,0,4 | |
| +17878324040,5,0,5 | |
| +17879159424,8,0,8 | |
| +17877671652,4,0,4 | |
| +17879923200,4,0,4 | |
| +17877582525,3,0,3 |
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
| trial_start_date = current_provider.created_at | |
| if free_trial_completed?(trial_start_date) | |
| current_provider.update(in_free_trial: false) | |
| elsif in_sixty_day_trial?(trial_start_date) | |
| current_provider.update(in_free_trial: true) | |
| elsif in_thirty_day_trial?(trial_start_date) | |
| current_provider.update(in_free_trial: true) | |
| 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
| const redirects = [ | |
| [ | |
| "65110-what-is-mobilize", | |
| "https://support.mobilize.io/hc/en-us/categories/360002451571-What-is-Mobilize-" | |
| ], | |
| [ | |
| "1340411-what-is-mobilize", | |
| "https://support.mobilize.io/hc/en-us/articles/360037598492-What-is-Mobilize-" | |
| ], | |
| [ |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; | |
| import "@openzeppelin/contracts/access/Ownable.sol"; | |
| import "@openzeppelin/contracts/utils/Counters.sol"; | |
| import "@openzeppelin/contracts/utils/Strings.sol"; | |
| contract XNFT is ERC721URIStorage, Ownable { | |
| using Strings for uint256; |
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 json | |
| import math | |
| import sys | |
| from datetime import timedelta | |
| def format_ms(ms): | |
| remainder, milliseconds = divmod(ms, 1000) | |
| remainder, seconds = divmod(remainder, 60) | |
| hours, minutes = divmod(remainder, 60) | |
| return '{:02}:{:02}:{:02}.{:03}'.format(int(hours), int(minutes), int(seconds), int(milliseconds)) |
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 requests | |
| import datetime | |
| import time | |
| RUNPOD_API_ID = '0ghslhh025pwkc' | |
| RUNPOD_API_KEY = 'IWR8SFXIKW3BXHK5VSADD3IPPXURBDNM9EDC8EX6' | |
| SLEEP_INTERVAL = 1 | |
| RUNPOD_API_BASE = 'https://api.runpod.ai/v1/' + RUNPOD_API_ID | |
| URL = 'https://storage.googleapis.com/elis-prototype/audio-video-content/PBS_News_Hour_Nov_17.m4a' |