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 pygame | |
import random | |
import numpy as np | |
import torch | |
import torch.nn as nn | |
import torch.optim as optim | |
from collections import deque | |
from torch.cuda.amp import autocast, GradScaler | |
import os |
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 { supabase } from '@/lib/supabase'; | |
import { decode } from 'base64-arraybuffer'; | |
export interface StorageService { | |
uploadListingPhotos: (userId: string, photos: string[]) => Promise<string[]>; | |
deleteListingPhotos: (urls: string[]) => Promise<void>; | |
createListing: (listing: StorageListing) => Promise<any>; | |
getListings: (filters?: { | |
search?: string; | |
location?: string; |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<title>Test</title> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
var romwcr_url = 'https://staging.reviewsonmywebsite.com/badge/'; | |
var badgeData = [{ |
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
03-13 15:28:11.510 32016-32016/? E/RCTCameraModule: Couldn't capture photo. | |
java.lang.RuntimeException: takePicture failed | |
at android.hardware.Camera.native_takePicture(Native Method) | |
at android.hardware.Camera.takePicture(Camera.java:1478) | |
at android.hardware.Camera.takePicture(Camera.java:1422) | |
at com.lwansbrough.RCTCamera.RCTCameraModule.captureWithOrientation(RCTCameraModule.java:550) | |
at com.lwansbrough.RCTCamera.RCTCameraModule.access$100(RCTCameraModule.java:38) | |
at com.lwansbrough.RCTCamera.RCTCameraModule$2.orientationEvent(RCTCameraModule.java:498) | |
at com.lwansbroug |
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
Date Date | |
batches.controller.js:374 CompanyName Company Name | |
batches.controller.js:374 CardType Card Type | |
batches.controller.js:374 CardNumber Card Number | |
batches.controller.js:374 Amount Amount | |
batches.controller.js:374 AVSResult AVS Result | |
batches.controller.js:374 CVVResponse CVV Response | |
batches.controller.js:374 Company Name Company Name | |
batches.controller.js:374 Card Type Card Type | |
batches.controller.js:374 Card Number Card Number |
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
/** | |
* | |
* @param element | |
* @param recursive | |
* @param forceComputeStyle | |
*/ | |
function computedStyleToInlineStyle(element, recursive, forceComputeStyle) { | |
if (!element) { | |
throw new Error("No element specified."); | |
} |