Blood Sweet Gears

https://docs.google.com/document/d/e/2PACX-1vRZjKPFWhbxDrzjPMkXFP8vxL0jzsTmpwVNYQeswSyHclNMSof3AaPB7oofNoR0ZRZfinjE2uFoW1an/pub?urp=gmail_link Sean Chodum Burns Thursday, May 21, 2026 Blood Sweet Gears import requests url = "https://example.com/api" payload = {"key": "value"} response = requests.post(url, json=payload) print(response.json( omnicam-pro-x/ ├─ app/ # OmniOS main app (Android) │ ├─ src/main/java/com/omnicam/ │ │ ├─ MainActivity.kt │ │ ├─ camera/ │ │ │ ├─ CameraController.kt │ │ │ └─ CameraConfig.kt │ │ ├─ audio/ │ │ │ ├─ AudioRecorder.kt │ │ │ └─ AudioModes.kt │ │ ├─ streaming/ │ │ │ ├─ StreamManager.kt │ │ │ └─ RtmpClient.kt │ │ └─ ui/ │ │ ├─ HomeViewModel.kt │ │ └─ components/ │ └─ res/layout/ └─ native/ ├─ CMakeLists.txt └─ src/ ├─ stabilization.cpp └─ audio_processing.cpp package com.omnicam.camera import android.content.Context import android.util.Log import androidx.camera.core.* import androidx.camera.lifecycle.ProcessCameraProvider import androidx.camera.video.* import androidx.core.content.ContextCompat import androidx.lifecycle.LifecycleOwner import java.util.concurrent.ExecutorService import java.util.concurrent.Executors class CameraController( private val context: Context, private val lifecycleOwner: LifecycleOwner ) { private var cameraProvider: ProcessCameraProvider? = null private var videoCapture: VideoCapture? = null private val cameraExecutor: ExecutorService = Executors.newSingleThreadExecutor() fun startCamera(previewView: androidx.camera.view.PreviewView) { val cameraProviderFuture = ProcessCameraProvider.getInstance(context) cameraProviderFuture.addListener({ cameraProvider = cameraProviderFuture.get() val preview = Preview.Builder() .build() .also { it.setSurfaceProvider(previewView.surfaceProvider) } val recorder = Recorder.Builder() .setQualitySelector( QualitySelector.from( Quality.UHD, // 4K FallbackStrategy.lowerQualityOrHigherThan(Quality.FHD) ) ) .build() videoCap{ "debug_videoId": "1zHcNYZthTkbFKGan3pgec93-yZVvZ_cT", "debug_playbackQuality": "unknown", "debug_date": "Thu May 15 2025 06:54:45 GMT-0300 (Atlantic Daylight Time)", "origin": "https://youtube.googleapis.com", "timestamp": 1747302885632 # OmniOS main app (Android) │ ├─ src/main/java/com/omnicam/ │ │ ├─ MainActivity.kt │ │ ├─ camera/ │ │ │ ├─ CameraController.kt │ │ │ └─ CameraConfig.kt│ │ ├─ audio/ :Skippy One-TiMattomnicam-pro-x/ ├─ app/ mer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089800-7212368107289965431-n/644065391_122121162303089800_7212368107289965431_n.jpg 1 0 Comments Skippy One-Timer Add a comment... @SkippyOne-Timer 0 seconds ago [https://www.bing.com/videos/search?q=&view=detail&mmscn=mysv&mid=DE910845D30392F72733DE910845D30392F72733&FORM=SVIM01&idpbck=1] Reply Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089800-7212368107289965431-n/644065391_122121162303089800_7212368107289965431_n.jpg 1 0 Comments Skippy One-Timer Add a comment... @SkippyOne-Timer 0 seconds ago [https://www.bing.com/videos/search?q=&view=detail&mmscn=mysv&mid=DE910845D30392F72733DE910845D30392F72733&FORM=SVIM01&idpbck=1] Reply @SkippyOne-Timer 0 @SkippyOne-Timer 0 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089800-7212368107289965431-n/644065391_122121162303089800_7212368107289965431_n.jpg - Goo gle Docs │ │ │ ├─ AudioRecorder.kt │ │ │ └─ AudioModes.kt │ │ ├─ streaming/ │ │ │ ├─ StreamManager.kt │ │ │ └─ RtmpClient.kt │ │ └─ ui/ │ │ ├─ HomeViewModel.kt │ │ └─ components/ │ └─ res/layout/ └─ native/ ├─ CMakeLists.txt └─ src/ ├─ stabilization.cpp └─ audio_processing.cpp package com.omnicam.camera import android.content.Context import android.util.Log import androidx.camera.core. import androidx.camera.lifecycle.ProcessCameraProvider import androidx.camera.video.* import ______import androidx.camera.video.Recording import androidx.camera.video.VideoRecordEvent import androidx.camera.video.FileOutputOptions import androidx.camera.video.OutputResults import androidx.camera.video.Recorder import androidx.camera.video.VideoCapture import androidx.camera.lifecycle.ProcessCameraProvider import androidx.camera.core.CameraSelector import androidx.camera.core.Preview import android.content.Context import androidx.lifecycle.LifecycleOwner import java.util.concurrent.ExecutorService import java.util.concurrent.Executors import androidx.core.content.ContextCompat class CameraController( private val context: Context, private val lifecycleOwner: LifecycleOwner ) { private var cameraProvider: ProcessCameraProvider? = null private var videoCapture: VideoCapture? = null private var activeRecording: Recording? = null private val cameraExecutor: ExecutorService = Executors.newSingleThreadExecutor() val isRecording: Boolean get() = activeRecording != null fun startRecording( outputOptions: FileOutputOptions, onSaved: (OutputResults) -> Unit, onError: (Throwable) -> Unit = {} ) { val vc = videoCapture ?: return // Prevent double-start if (activeRecording != null) return activeRecording = vc.output .prepareRecording(context, outputOptions) .withAudioEnabled() .start(ContextCompat.getMainExecutor(context)) { event -> when (event) { is VideoRecordEvent.Finalize -> { activeRecording = null if (event.hasError()) { onError(RuntimeException("Recording error: ${event.error}")) } else { onSaved(event.outputResults) } } } } } fun stopRecording() { activeRecording?.stop() activeRecording = null } fun pauseRecording() { activeRecording?.pause() } fun resumeRecording() { activeRecording?.resume() } fun shutdown() { stopRecording() cameraProvider?.unbindAll() cameraExecutor.shutdown() } }val outputFile = File(filesDir, "video_${System.currentTimeMillis()}.mp4") val outputOptions = FileOutputOptions.Builder(outputFile).build() buttonStart.setOnClickListener { controller.startRecording(outputOptions, onSaved = { results -> Log.d("Cam", "Saved to ${results.outputUri}") }, onError = { e -> Log.e("Cam", "Error", e) } ) } buttonPause.setOnClickListener { controller.pauseRecording() } buttonResume.setOnClickListener { controller.resumeRecording() } buttonStop.setOnClickListener { controller.stopRecording() }import androidx.camera.video.Recording private var activeRecording: Recording? = null class CameraController( private val context: Context, private val lifecycleOwner: LifecycleOwner ) { private var cameraProvider: ProcessCameraProvider? = null private var videoCapture: VideoCapture? = null private var activeRecording: Recording? = null private val cameraExecutor: ExecutorService = Executors.newSingleThreadExecutor() fun startRecording( outputOptions: FileOutputOptions, onSaved: (OutputResults) -> Unit, onError: (Throwable) -> Unit = {} ) { val vc = videoCapture ?: return // Prevent double-start if (activeRecording != null) return activeRecording = vc.output .prepareRecording(context, outputOptions) .withAudioEnabled() .start(ContextCompat.getMainExecutor(context)) { event -> when (event) { is VideoRecordEvent.Finalize -> { val recording = activeRecording activeRecording = null if (event.hasError()) { onError(RuntimeException("Recording error: ${event.error}")) } else { onSaved(event.outputResults) } } } } } fun stopRecording() { val recording = activeRecording ?: return activeRecording = null recording.stop() } fun shutdown() { stopRecording() cameraProvider?.unbindAll() cameraExecutor.shutdown() } activeRecording?.pause() activeRecording?.resume() val isRecording: Boolean get() = activeRecording != null https://d.docs.live.net/8BB174FDC4249E0B/Document%20camera.docxval isRecording: Boolean get() = activeRecording != null activeRecording?.pause() activeRecording?.resume() fun shutdown() { stopRecording() cameraProvider?.unbindAll() cameraExecutor.shutdown() } fun stopRecording() { val recording = activeRecording ?: return activeRecording = null recording.stop() } fun startRecording( outputOptions: FileOutputOptions, onSaved: (OutputResults) -> Unit, onError: (Throwable) -> Unit = {} ) { val vc = videoCapture ?: return // Prevent double-start if (activeRecording != null) return activeRecording = vc.output .prepareRecording(context, outputOptions) .withAudioEnabled() .start(ContextCompat.getMainExecutor(context)) { event -> when (event) { is VideoRecordEvent.Finalize -> { val recording = activeRecording activeRecording = null if (event.hasError()) { onError(RuntimeException("Recording error: ${event.error}")) } else { onSaved(event.outputResults) } } } } } class CameraController( private val context: Context, private val lifecycleOwner: LifecycleOwner ) { private var cameraProvider: ProcessCameraProvider? = null private var videoCapture: VideoCapture? = null private var activeRecording: Recording? = null private val cameraExecutor: ExecutorService = Executors.newSingleThreadExecutor() import androidx.camera.video.Recording private var activeRecording: Recording? = null import androidx.camera.video.Recording private var activeRecording: Recording? = nullimport androidx.camera.video.Recording private var activeRecording: Recording? = null fun startRecording( outputOptions: FileOutputOptions, onSaved: (OutputResults) -> Unit, onError: (Throwable) -> Unit = {} ) { val vc = videoCapture ?: return // Prevent double-start if (activeRecording != null) return activeRecording = vc.output .prepareRecording(context, outputOptions) .withAudioEnabled() .start(ContextCompat.getMainExecutor(context)) { event -> when (event) { is VideoRecordEvent.Finalize -> { val recording = activeRecording activeRecording = null if (event.hasError()) { onError(RuntimeException("Recording error: ${event.error}")) } else { onSaved(event.outputResults) } } } } } fun stopRecording() { val recording = activeRecording ?: return activeRecording = null recording.stop() } fun shutdown() { stopRecording() cameraProvider?.unbindAll() cameraExecutor.shutdown() } activeRecording?.pause() activeRecording?.resume() val isRecording: Boolean get() = activeRecording != null https://d.docs.live.net/8BB174FDC4249E0B/Document%20camera.docx Sean Chodum Burns Wednesday, May 13, 2026 /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ���� JFIF �� �ICC_PROFILE �lcms mntrRGB XYZ � acspMSFTsawsctrl�� �-hand��=@��=@t,���"� desc� cprt wtpt rXYZ , gXYZ @ bXYZ T rTRC h`gTRC h`bTRC h`desc uRGBtextCC0XYZ �T �XYZ o�8� �XYZ b��� �XYZ $� ���curv*|� � u � � N b � � � j . C$�)j.~3�9�?�FWM6Tv\ d l�uV~��,�6�����۾����e�w������C ��C �� h � " �� ��/ 1!QaA 2q� "RB����#b������ �� !1AqQ2�� ?�nj7��t �* 8�2nyZ��� uhҭ isL U�I�:�h ����m���I.(- ��vM���}"�( ��fi}K\�(��ob1�=�%J�|�6���7��-�����R�� �]��� [�> Ж��v[��F0 �X�I�$ ����$ uu%���v �5��nNM_�j� ���Q��6�(�� ���+AhV� }���h �� њʜ r��,�cU�A$ �����H Z� C "�-J��� e��� �聭�R� K]P�!�4� t@��0~ �\�j��r\��=Y���S6��]�N?�c��� F�� ��t�X�0� ��x�������q�1�1��2N�'b� �FY|;ˎr�U�@ g|Po-= � |�q�:}IV��:vl�r�/ ���� ��)& 4�FrM�R�`�ڭ�3O������ ^�N^ &� HS/� �H��[�)�1vn�� �= ���`լ�踷[ >��0�\HJ��GF>�x�Q '& 1 Z��迒����} t��}// N� S8ޝ J*��� uɌ����� ���aO���j +��$Ɠ� �Nyq&#g�1 J�W� *!��V ���l�#+{5��M V�E���C���6�M�N|�*�p䥢������PI����& "V(�[\��є�� � e�M ;����8� �� � � ie��Bǚlk�_� \����JW�V �iK���q�ec�:La�$H � R^�E7�BI���5��]Ҳ Ӳ� S���i"�$��C_ɞ�4��� ��:e '�"S� ���[�� ��#H'w��� �i��c�56�k�@ �h >�( ��;} KI�$P 0�-.��w�R` ������ K� ��1C��6' Di��' K?Ĥ�`i~� 6Nb� } bƢ�-�g���I�#n?� �f�cO�h�Z/ �� 5�="�/ N �X�_�� �� #� x�' F�՗��ߌZ S f�FOo� �F7\�ٚO�3"3�� I �����r*1�%�M*����6�c/��9��"b� �ڊOhd�Ӫ ���� � n�V ��[ :��.ށ��> &� c�aT�tL�DE��.D� Էͅ� �"�i؛�&��BǛvR���=�H�/�12L}U !Cl%`� �e �Q��_ ��+ ��*�9�=Aj ���U��U�aA�J�M�� s��{ ���� ޑN � 鿬����>���kh�&1N�4m C��-�@ �H��H�[�-�P ]L�cRlx PH �O���ES�j2� �+] C B�A�2 Le�b��id��1}0���\��^ �iLT� �SO���I"��/�K�(ը����1)A "��%�5�O�R�_HX��i �5e5b-H �™��t:biѱ@&��z t�r�A7{.���m��!(1��4��C�ڢ ��s�LC�] �M \hCQ�d�Pśv�= ��fkf��l��ѫTg�7e���� � � ݉� �\��L �3�@m�E�:�g��M�ǚ t���)����xO ?� [�D�� �K�-� �� �*b '6�i ��� G�! ��8�D��l��d# ��� 5� aX��LT�Nd� V4� �,�q A� Q�bƢ� �+� l�$�M� L)� "�`.1�� `5�q O�$��`U$;���ɗ�E��:@f���R+ ��W�� Q"� ˪ �5%�h� �N) �*] h�� �4R� EȖ�N�4� � >�I�� �2j� �NKf.=����]� ; ��$ KFkF� �7GHjqU� �j)��j�IV��Z �A bn�=0�qb��46�{(�o��j!�- ���'�������Y�c� ���q�a���h��T�B�W ��7fn�u���F��fnʍ��q�� ��Q�r Tc�� �S�D�" �l�� �� E�Fk����J�ؔ�Uf�&�W�t(E�2TFsE � ���VZCj��Q �5F�~ �cK�"�}� J��yxBɯ ��3@2�R ��M��0۽��� ez 聙�W�(�����I� ��G� ���2v4�����K@ Z ke" ��O����--v;]�x �PŽ� Yu�� �X�N4�)U����x� xU2L����!O�I��^"��|� ��6� �G�5Ѣ� �ȃF�̒w�u��,�� � >�c蚯�]���lOD.I�!�O˴( [>� �O�Gn(ZZ �&��S�$���r ŊV� Z5�2��'�= �$�D ��1!� 2��Dŷv7v���� �ƴ%���� W'E� =� �б����bt� +��CZ`��i #��9�" �. Q�cL��u[e�@� �� �A����� � � ��R��}6��r��zx�^>��-;�J�X 0�&��-� qO%��qt� � %z$����ر�1��Ɇ^ C a�3�RJ�4� %�JIQ-o��� �� ��F4��"�� "s��\�%\" [z6J�$�)%�5�1D�:4N�Q�f��H��} ��%׀�M-���� �Ӱ�2]F(e�tP�37 �m(��K���<�\f�h$\�� ͕36��tR# -L�$c��(�l���ZD � � �В�Hɪ&&�3�ݱj�&� �d�Cѱ H�$Ԃt�RU͐�� �Q�C�c AC�~ K��q�Whϛ�oL��:���bq�� M�21]�u�� ȷ�D��0� �4e8}Nͦ�BN'L�I\�N�!Kl_�d�7�"���@� z �;��8�*��p}?� ��Yx �_� �ؖ��kZ- l�h[� j�kC��P_ ���M$� ���I- �5���W� ��5I%�5� ��E����� h ���h� ?#��� �*} N��Շ�P�v\c��1�c�O�._�S�%rF9�I5��R[ Y .��#Ը�kU� 7�BPo�2���%�'e-���CI�X s�H�\� ( �;*�W%��&�A�F�1�� �� 7�. ��: � I�� �E ��+ t ��Q � �7 _���ǝ������ÃLP�H�64� LQ"���&�D��r� L�DM$���$� 3��v(�ј!�6� ���6 ���W ;Rw�� ����lf�q�?�6z2�|�Q�� �T�LN�� v �� ή ��k��^�(��&mr�9�H���캯� �4t&z�� �-P��.�R���)9"l�c �M% �L�&��4���k 8~�<� ق�bc�49Є�*�X��D����iآ6�� � Z���-� �}'*�kb � ������V J�:] sBn�jd�j ��� E�� ��"�E$���� 9 �&E�i4� ����d@�u �D ��W� i; �5C�X��� �� `� �4Ti?�ƚ��R�D�0� ��ck� �|&�ec�.-� C J�0���5�ٟ���c?Ȭ)��΃/ ���Ӥ4I'�+l�D�� 0� "����l�tI� � (�g#Y �^ �����Yh�� �TKT "DzoFM��M^� ��n(�IKDJ덝 �KJȔ��(^\����6$����[:U C IZ �WN'$� ��2O��}��U�n ��C�m�X��ދ5��}�A�� >�!��[�L�4�tL ]� �j��@���H&�������Z]"c� ��k�(}4���%}��&�Oh��N� E>�+Y BA � � %���` ��P�v z �� �CJ�. p ) ʆ�δ�� ��۳H���*$4��Q.$�Q6'��-l�qE �cJ���H"8�Ci|!'� vS�1O+6�)u�� R��� !��@�9�FO�\�,< k������s��=o�1�%+g�3�����E �&FԌ�P��І���dg= H� F/b, Q �� lt�R� "ۢd� X��7{5{2IމD� �k>l��b�P ��VjJ �L����<} } � �4� Wӝ�h�S��8W6t_Yo���� �� o�i� ��A&Vkd�a ��"scf��"^����k (���Sr� D[�r� 525 ( %���[" ��D=!ł� �bh \ ���Ȣ�eҤD~��f��� ��� ���F�vJ��rP 6�E�TY%�� K��:˟�m �3��C���X��Y�ew��c�!w� JIpY �� <} U�J\hi�� �vQ! N�"��M�I%�J���ғ����$̫D�o����������# d Iʈ���-� O�s -B5� -%ə��{ ���(Q B{"� �fi- �L��R&GSfAd �Z0����Z1{d��]�/��I؞̈́ �L�l ���Kd)������7D�\� v� ���t7���dձI�4/���79qDI� �8������t��C�L���!( D���µ� @? �9Ԩ�U�60��h�� �U ���8�(�. �d���֠ ���5 t�]���sXJ�5�>� �_�` �>62r� (X�B ����Dj��� �+��f��d( � k ��i:n̔�*2��d- eL���ƹ��� omnicam-pro-x/ ├─ app/ # OmniOS main app (Android) │ ├─ src/main/java/com/omnicam/ │ │ ├─ MainActivity.kt │ │ ├─ camera/ • • https://www.slideshare.net/slideshow/papa-legba-nb-white-boy-expo-2360-plus-pagesgoogle-com/273409254?utm_source=clipboard_share_button&utm_campaign=slideshare_make_sharing_viral_v2&utm_variation=control&utm_medium=shareSean Chodum Burns - What Now • • ? = null private val cameraExecutor: ExecutorService = Executors.newSingleThreadExecutor() fun startCamera(previewView: androidx.camera.view.PreviewView) { val cameraProviderFuture = ProcessCameraProvider.getInstance(context) cameraProviderFuture.addListener({ cameraProvider = cameraProviderFuture.get() val preview = Preview.Builder() .build() .also { it.setSurfaceProvider(previewView.surfaceProvider) } val recorder = Recorder.Builder() .setQualitySelector( QualitySelector.from( Quality.UHD, // 4K FallbackStrategy.lowerQualityOrHigherThan(Quality.FHD) ) ) .build() videoCap{ "debug_videoId": "1zHcNYZthTkbFKGan3pgec93-yZVvZ_cT", "debug_playbackQuality": "unknown", "debug_date": "Thu May 15 2025 06:54:45 GMT-0300 (Atlantic Daylight Time)", "origin": "https://youtube.googleapis.com", "timestamp": 1747302885632 # OmniOS main app (Android) │ ├─ src/main/java/com/omnicam/ │ │ ├─ MainActivity.kt │ │ ├─ camera/ │ │ │ ├─ CameraController.kt │ │ │ └─ CameraConfig.kt│ │ ├─ audio/ :Skippy One-TiMattomnicam-pro-x/ ├─ app/ mer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089800-7212368107289965431-n/644065391_122121162303089800_7212368107289965431_n.jpg 1 0 Comments Skippy One-Timer Add a comment... @SkippyOne-Timer 0 seconds ago [https://www.bing.com/videos/search?q=&view=detail&mmscn=mysv&mid=DE910845D30392F72733DE910845D30392F72733&FORM=SVIM01&idpbck=1] Reply Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089800-7212368107289965431-n/644065391_122121162303089800_7212368107289965431_n.jpg 1 0 Comments Skippy One-Timer Add a comment... @SkippyOne-Timer 0 seconds ago [https://www.bing.com/videos/search?q=&view=detail&mmscn=mysv&mid=DE910845D30392F72733DE910845D30392F72733&FORM=SVIM01&idpbck=1] Reply @SkippyOne-Timer 0 @SkippyOne-Timer 0 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089800-7212368107289965431-n/644065391_122121162303089800_7212368107289965431_n.jpg - Goo gle Docs │ │ │ ├─ AudioRecorder.kt │ │ │ └─ AudioModes.kt │ │ ├─ streaming/ │ │ │ ├─ StreamManager.kt │ │ │ └─ RtmpClient.kt │ │ └─ ui/ │ │ ├─ HomeViewModel.kt │ │ └─ components/ │ └─ res/layout/ └─ native/ ├─ CMakeLists.txt └─ src/ ├─ stabilization.cpp └─ audio_processing.cpp package com.omnicam.camera import android.content.Context import android.util.Log import androidx.camera.core. import androidx.camera.lifecycle.ProcessCameraProvider import androidx.camera.video.* import ______import androidx.camera.video.Recording import androidx.camera.video.VideoRecordEvent import androidx.camera.video.FileOutputOptions import androidx.camera.video.OutputResults import androidx.camera.video.Recorder import androidx.camera.video.VideoCapture import androidx.camera.lifecycle.ProcessCameraProvider import androidx.camera.core.CameraSelector import androidx.camera.core.Preview import android.content.Context import androidx.lifecycle.LifecycleOwner import java.util.concurrent.ExecutorService import java.util.concurrent.Executors import androidx.core.content.ContextCompat class CameraController( private val context: Context, private val lifecycleOwner: LifecycleOwner ) { private var cameraProvider: ProcessCameraProvider? = null private var videoCapture: VideoCapture? = null private var activeRecording: Recording? = null private val cameraExecutor: ExecutorService = Executors.newSingleThreadExecutor() val isRecording: Boolean get() = activeRecording != null fun startRecording( outputOptions: FileOutputOptions, onSaved: (OutputResults) -> Unit, onError: (Throwable) -> Unit = {} ) { val vc = videoCapture ?: return // Prevent double-start if (activeRecording != null) return activeRecording = vc.output .prepareRecording(context, outputOptions) .withAudioEnabled() .start(ContextCompat.getMainExecutor(context)) { event -> when (event) { is VideoRecordEvent.Finalize -> { activeRecording = null if (event.hasError()) { onError(RuntimeException("Recording error: ${event.error}")) } else { onSaved(event.outputResults) } } } } } fun stopRecording() { activeRecording?.stop() activeRecording = null } fun pauseRecording() { activeRecording?.pause() } fun resumeRecording() { activeRecording?.resume() } fun shutdown() { stopRecording() cameraProvider?.unbindAll() cameraExecutor.shutdown() } }val outputFile = File(filesDir, "video_${System.currentTimeMillis()}.mp4") val outputOptions = FileOutputOptions.Builder(outputFile).build() buttonStart.setOnClickListener { controller.startRecording(outputOptions, onSaved = { results -> Log.d("Cam", "Saved to ${results.outputUri}") }, onError = { e -> Log.e("Cam", "Error", e) } ) } buttonPause.setOnClickListener { controller.pauseRecording() } buttonResume.setOnClickListener { controller.resumeRecording() } buttonStop.setOnClickListener { controller.stopRecording() }import androidx.camera.video.Recording private var activeRecording: Recording? = null class CameraController( private val context: Context, private val lifecycleOwner: LifecycleOwner ) { private var cameraProvider: ProcessCameraProvider? = null private var videoCapture: VideoCapture? = null private var activeRecording: Recording? = null private val cameraExecutor: ExecutorService = Executors.newSingleThreadExecutor() fun startRecording( outputOptions: FileOutputOptions, onSaved: (OutputResults) -> Unit, onError: (Throwable) -> Unit = {} ) { val vc = videoCapture ?: return // Prevent double-start if (activeRecording != null) return activeRecording = vc.output .prepareRecording(context, outputOptions) .withAudioEnabled() .start(ContextCompat.getMainExecutor(context)) { event -> when (event) { is VideoRecordEvent.Finalize -> { val recording = activeRecording activeRecording = null if (event.hasError()) { onError(RuntimeException("Recording error: ${event.error}")) } else { onSaved(event.outputResults) } } } } } fun stopRecording() { val recording = activeRecording ?: return activeRecording = null recording.stop() } fun shutdown() { stopRecording() cameraProvider?.unbindAll() cameraExecutor.shutdown() } activeRecording?.pause() activeRecording?.resume() val isRecording: Boolean get() = activeRecording != null https://d.docs.live.net/8BB174FDC4249E0B/Document%20camera.docxval isRecording: Boolean get() = activeRecording != null activeRecording?.pause() activeRecording?.resume() fun shutdown() { stopRecording() cameraProvider?.unbindAll() cameraExecutor.shutdown() } fun stopRecording() { val recording = activeRecording ?: return activeRecording = null recording.stop() } fun startRecording( outputOptions: FileOutputOptions, onSaved: (OutputResults) -> Unit, onError: (Throwable) -> Unit = {} ) { val vc = videoCapture ?: return // Prevent double-start if (activeRecording != null) return activeRecording = vc.output .prepareRecording(context, outputOptions) .withAudioEnabled() .start(ContextCompat.getMainExecutor(context)) { event -> when (event) { is VideoRecordEvent.Finalize -> { val recording = activeRecording activeRecording = null if (event.hasError()) { onError(RuntimeException("Recording error: ${event.error}")) } else { onSaved(event.outputResults) } } } } } class CameraController( private val context: Context, private val lifecycleOwner: LifecycleOwner ) { private var cameraProvider: ProcessCameraProvider? = null private var videoCapture: VideoCapture? = null private var activeRecording: Recording? = null private val cameraExecutor: ExecutorService = Executors.newSingleThreadExecutor() import androidx.camera.video.Recording private var activeRecording: Recording? = null import androidx.camera.video.Recording private var activeRecording: Recording? = nullimport androidx.camera.video.Recording private var activeRecording: Recording? = null fun startRecording( outputOptions: FileOutputOptions, onSaved: (OutputResults) -> Unit, onError: (Throwable) -> Unit = {} ) { val vc = videoCapture ?: return // Prevent double-start if (activeRecording != null) return activeRecording = vc.output .prepareRecording(context, outputOptions) .withAudioEnabled() .start(ContextCompat.getMainExecutor(context)) { event -> when (event) { is VideoRecordEvent.Finalize -> { val recording = activeRecording activeRecording = null if (event.hasError()) { onError(RuntimeException("Recording error: ${event.error}")) } else { onSaved(event.outputResults) } } } } } fun stopRecording() { val recording = activeRecording ?: return activeRecording = null recording.stop() } fun shutdown() { stopRecording() cameraProvider?.unbindAll() cameraExecutor.shutdown() } activeRecording?.pause() activeRecording?.resume() val isRecording: Boolean get() = activeRecording != null https://d.docs.live.net/8BB174FDC4249E0B/Document%20camera.docx Sean Chodum Burns Wednesday, May 13, 2026 /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ /<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������//<����������������/ var showCamera by remember { mutableStateOf(false) } if (showCamera) { AndroidCameraView(cameraController) } else { HomeScreen( onOpenCamera = { showCamera = true }, onOpenEditor = { /* TODO: open editor */ }, onOpenStream = { /* TODO: open streaming UI */ } ) } } } override fun onDestroy() { super.onDestroy() cameraController.shutdown() } } @Composable fun AndroidCameraView(controller: CameraController) { val previewView = remember { PreviewView(controller.context) } AndroidView(factory = { previewView }) { controller.startCamera(previewView) } } Skippy One-Timer 5:59 AM Today https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com https://www.awesomescreenshot.com/video/51656523?key=5e836d194a38ff97612481f75e0db4d7 Matthew Amos # ![Image](https://github.com/user-attachments/assets/df44b1e7-7f83-4937-9558-8ea00e9da465) Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 __________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ___________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________________________ # !!Image Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 ____________________________________________________________________________________________________ https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________________________ B1PS2sGxmn7Xq3SO7iemoGinpess9q1c Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p _________________________________________________________________________________________________________________________________ Matthew Amos The document primarily consists of repeated sharing of URLs and embedded multimedia content related to various sources. GitHub repository shared: A URL to a GitHub repository named "Head-Hunter-Begining-s-" is provided multiple times. Archive.org link: A link to an archive.org item is repeatedly mentioned, indicating a resource hosted there. Embedded multimedia content: The document includes embedded slideshows and videos from Google Docs and SlideShare, specifically referencing content titled "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com" by Matthew Shannon Amos. https://youtu.be/wYRgMXIqOxE?t=2 Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ______________________________________________________________________________________________________________________________________________________________ Skippy One-Timer 9 seconds ago https://dn721900.ca.archive.org/0/items/644065391-122121162303089 https://docs.google.com/videos/d/1uKRJjU6I441aTDsrHAxtdyzaG5enFMNVKcZoicAwg0o/edit?scene=id.p#scene=id.p ���� JFIF �� �ICC_PROFILE �lcms mntrRGB XYZ � acspMSFTsawsctrl�� �-hand��=@��=@t,���"� desc� cprt wtpt rXYZ , gXYZ @ bXYZ T rTRC h`gTRC h`bTRC h`desc uRGBtextCC0XYZ �T �XYZ o�8� �XYZ b��� �XYZ $� ���curv*|� � u � � N b � � � j . C$�)j.~3�9�?�FWM6Tv\ d l�uV~��,�6�����۾����e�w������C ��C �� h � " �� ��/ 1!QaA 2q� "RB����#b������ �� !1AqQ2�� ?�nj7��t �* 8�2nyZ��� uhҭ isL U�I�:�h ����m���I.(- ��vM���}"�( ��fi}K\�(��ob1�=�%J�|�6���7��-�����R�� �]��� [�> Ж��v[��F0 �X�I�$ ����$ uu%���v �5��nNM_�j� ���Q��6�(�� ���+AhV� }���h �� њʜ r��,�cU�A$ �����H Z� C "�-J��� e��� �聭�R� K]P�!�4� t@��0~ �\�j��r\��=Y���S6��]�N?�c��� F�� ��t�X�0� ��x�������q�1�1��2N�'b� �FY|;ˎr�U�@ g|Po-= � |�q�:}IV��:vl�r�/ ���� ��)& 4�FrM�R�`�ڭ�3O������ ^�N^ &� HS/� �H��[�)�1vn�� �= ���`լ�踷[ >��0�\HJ��GF>�x�Q '& 1 Z��迒����} t��}// N� S8ޝ J*��� uɌ����� ���aO���j +��$Ɠ� �Nyq&#g�1 J�W� *!��V ���l�#+{5��M V�E���C���6�M�N|�*�p䥢������PI����& "V(�[\��є�� � e�M ;����8� �� � � ie��Bǚlk�_� \����JW�V �iK���q�ec�:La�$H � R^�E7�BI���5��]Ҳ Ӳ� S���i"�$��C_ɞ�4��� ��:e '�"S� ���[�� ��#H'w��� �i��c�56�k�@ �h >�( ��;} KI�$P 0�-.��w�R` ������ K� ��1C��6' Di��' K?Ĥ�`i~� 6Nb� } bƢ�-�g���I�#n?� �f�cO�h�Z/ �� 5�="�/ N �X�_�� �� #� x�' F�՗��ߌZ S f�FOo� �F7\�ٚO�3"3�� I �����r*1�%�M*����6�c/��9��"b� �ڊOhd�Ӫ ���� � n�V ��[ :��.ށ��> &� c�aT�tL�DE��.D� Էͅ� �"�i؛�&��BǛvR���=�H�/�12L}U !Cl%`� �e �Q��_ ��+ ��*�9�=Aj ���U��U�aA�J�M�� s��{ ���� ޑN � 鿬����>���kh�&1N�4m C��-�@ �H��H�[�-�P ]L�cRlx PH �O���ES�j2� �+] C B�A�2 Le�b��id��1}0���\��^ �iLT� �SO���I"��/�K�(ը����1)A "��%�5�O�R�_HX��i �5e5b-H �™��t:biѱ@&��z t�r�A7{.���m��!(1��4��C�ڢ ��s�LC�] �M \hCQ�d�Pśv�= ��fkf��l��ѫTg�7e���� � � ݉� �\��L �3�@m�E�:�g��M�ǚ t���)����xO ?� [�D�� �K�-� �� �*b '6�i ��� G�! ��8�D��l��d# ��� 5� aX��LT�Nd� V4� �,�q A� Q�bƢ� �+� l�$�M� L)� "�`.1�� `5�q O�$��`U$;���ɗ�E��:@f���R+ ��W�� Q"� ˪ �5%�h� �N) �*] h�� �4R� EȖ�N�4� � >�I�� �2j� �NKf.=����]� ; ��$ KFkF� �7GHjqU� �j)��j�IV��Z �A bn�=0�qb��46�{(�o��j!�- ���'�������Y�c� ���q�a���h��T�B�W ��7fn�u���F��fnʍ��q�� ��Q�r Tc�� �S�D�" �l�� �� E�Fk����J�ؔ�Uf�&�W�t(E�2TFsE � ���VZCj��Q �5F�~ �cK�"�}� J��yxBɯ ��3@2�R ��M��0۽��� ez 聙�W�(�����I� ��G� ���2v4�����K@ Z ke" ��O����--v;]�x �PŽ� Yu�� �X�N4�)U����x� xU2L����!O�I��^"��|� ��6� �G�5Ѣ� �ȃF�̒w�u��,�� � >�c蚯�]���lOD.I�!�O˴( [>� �O�Gn(ZZ �&��S�$���r ŊV� Z5�2��'�= �$�D ��1!� 2��Dŷv7v���� �ƴ%���� W'E� =� �б����bt� +��CZ`��i #��9�" �. Q�cL��u[e�@� �� �A����� � � ��R��}6��r��zx�^>��-;�J�X 0�&��-� qO%��qt� � %z$����ر�1��Ɇ^ C a�3�RJ�4� %�JIQ-o��� �� ��F4��"�� "s��\�%\" [z6J�$�)%�5�1D�:4N�Q�f��H��} ��%׀�M-���� �Ӱ�2]F(e�tP�37 �m(��K���<�\f�h$\�� ͕36��tR# -L�$c��(�l���ZD � � �В�Hɪ&&�3�ݱj�&� �d�Cѱ H�$Ԃt�RU͐�� �Q�C�c AC�~ K��q�Whϛ�oL��:���bq�� M�21]�u�� ȷ�D��0� �4e8}Nͦ�BN'L�I\�N�!Kl_�d�7�"���@� z �;��8�*��p}?� ��Yx �_� �ؖ��kZ- l�h[� j�kC��P_ ���M$� ���I- �5���W� ��5I%�5� ��E����� h ���h� ?#��� �*} N��Շ�P�v\c��1�c�O�._�S�%rF9�I5��R[ Y .��#Ը�kU� 7�BPo�2���%�'e-���CI�X s�H�\� ( �;*�W%��&�A�F�1�� �� 7�. ��: � I�� �E ��+ t ��Q � �7 _���ǝ������ÃLP�H�64� LQ"���&�D��r� L�DM$���$� 3��v(�ј!�6� ���6 ���W ;Rw�� ����lf�q�?�6z2�|�Q�� �T�LN�� v �� ή ��k��^�(��&mr�9�H���캯� �4t&z�� �-P��.�R���)9"l�c �M% �L�&��4���k 8~�<� ق�bc�49Є�*�X��D����iآ6�� � Z���-� �}'*�kb � ������V J�:] sBn�jd�j ��� E�� ��"�E$���� 9 �&E�i4� ����d@�u �D ��W� i; �5C�X��� �� `� �4Ti?�ƚ��R�D�0� ��ck� �|&�ec�.-� C J�0���5�ٟ���c?Ȭ)��΃/ ���Ӥ4I'�+l�D�� 0� "����l�tI� � (�g#Y �^ �����Yh�� �TKT "DzoFM��M^� ��n(�IKDJ덝 �KJȔ��(^\����6$����[:U C IZ �WN'$� ��2O��}��U�n ��C�m�X��ދ5��}�A�� >�!��[�L�4�tL ]� �j��@���H&�������Z]"c� ��k�(}4���%}��&�Oh��N� E>�+Y BA � � %���` ��P�v z �� �CJ�. p ) ʆ�δ�� ��۳H���*$4��Q.$�Q6'��-l�qE �cJ���H"8�Ci|!'� vS�1O+6�)u�� R��� !��@�9�FO�\�,< k������s��=o�1�%+g�3�����E �&FԌ�P��І���dg= H� F/b, Q �� lt�R� "ۢd� X��7{5{2IމD� �k>l��b�P ��VjJ �L����<} } � �4� Wӝ�h�S��8W6t_Yo���� �� o�i� ��A&Vkd�a ��"scf��"^����k (���Sr� D[�r� 525 ( %���[" ��D=!ł� �bh \ ���Ȣ�eҤD~��f��� ��� ���F�vJ��rP 6�E�TY%�� K��:˟�m �3��C���X��Y�ew��c�!w� JIpY �� <} U�J\hi�� �vQ! N�"��M�I%�J���ғ����$̫D�o����������# d Iʈ���-� O�s -B5� -%ə��{ ���(Q B{"� �fi- �L��R&GSfAd �Z0����Z1{d��]�/��I؞̈́ �L�l ���Kd)������7D�\� v� ���t7���dձI�4/���79qDI� �8������t��C�L���!( D���µ� @? �9Ԩ�U�60��h�� �U ���8�(�. �d���֠ ���5 t�]���sXJ�5�>� �_�` �>62r� (X�B ����Dj��� �+��f��d( � k ��i:n̔�*2��d- eL���ƹ��� omnicam-pro-x/ ├─ app/ # OmniOS main app (Android) │ ├─ src/main/java/com/omnicam/ │ │ ├─ MainActivity.kt │ │ ├─ camera/ d> • Sean Chodum Burns - What Now • • • •

Sean Chodum Burns

Tuesday, May 19, 2026

What Now

• •
Video 1 - Title Here
• •
Video 2 - Title Here
• •
Video 3 - Title Here
• • • • • • https://www.slideshare.net/slideshow/papa-legba-nb-white-boy-expo-2360-plus-pagesgoogle-com/273409254?fbclid=IwdGRjcAR51uZleHRuA2FlbQIxMQBzcnRjBmFwcF9pZAwzNTA2ODU1MzE3MjgAAR6B-2ZUeqmMaAkjkVTXC40tDrEYMui32W5HO9xM9MXU9vTn45fJLBg8in5yvw_aem_kADGqf9fvkWBCzmDikrZbg{ • "debug_videoId": "1rv5Bp43nvUs_qWZsyGjLnlVxTffcD4SN", • "debug_playbackQuality": "unknown", • "debug_date": "Tue Nov 26 2024 13:45:09 GMT-0400 (Atlantic Standard Time)", • "origin": "https://youtube.googleapis.com", • "timestamp": 1732643109533 • }https://docs.google.com/document/d/1cjvSPLMGiVpJgtq2pTzGjI0dm2LPHuYH/edit • { "ns": "yt", • "el": "embedded", • "cpn": "CUCoF_CVXY7IanFf", • "ver": 2, • "cmt": "0", • "fs": "0", • "rt": "16.027", • "euri": "", • "lact": 5, • "cl": "725027312", • "mos": 0, • "state": "40", • "volume": 100, • "cbrand": "google", • "cbr": "Chrome", • "cbrver": "132.0.0.0", • "c": "WEB_EMBEDDED_PLAYER", • "cver": "1.20250209.00.00", • "cplayer": "UNIPLAYER", • "cmodel": "chromebook", • "cos": "CrOS", • "cosver": "14541.0.0", • "cplatform": "DESKTOP", • "epm": 1, • "hl": "en_US", • "cr": "CA", • "len": "0", • "fexp": "v1,24004644,434717,127326,26443548,43454,9954,34656,47714,11398,19011,89,27818,18644,13046,1823,10892,6942,408,20473,8,10631,9243,1581,1690,14,3943,2,120,2050,4903,3025,2981,5921,4263,13730,9252,3479,2286,6964,269,2550,78,883,2975,697,3922,146,275,1209,683,2725,4321,1902,1288,487,1590,986,238,1260,4256,1243,2056,1972,4046", • "size": "1366:633", • "inview": "0", • "muted": "0", • "conn": "3", • "docid": "x-XclczZDpU", • "vct": "0.000", • "vd": "NaN", • "vpl": "", • "vbu": "", • "vbs": "", • "vpa": "1", • "vsk": "0", • "ven": "0", • "vpr": "1", • "vrs": "0", • "vns": "0", • "vec": "null", • "vemsg": "", • "vvol": "1", • "vdom": "1", • "vsrc": "0", • "vw": "1366", • "vh": "633", • "relative_loudness": "NaN", • "user_qual": 0, • "release_version": "youtube.player.web_20250209_00_RC00", • "debug_videoId": "x-XclczZDpU", • "0sz": "false", • "op": "", • "yof": "true", • "dis": "", • "gpu": "ANGLE_(Intel,_Vulkan_1.3.289_(Intel(R)_UHD_Graphics_(JSL)_(0x00004E55)),_Intel_open-source_Mesa_driver)", • "debug_playbackQuality": "unknown", • "debug_date": "Wed Feb 12 2025 11:17:06 GMT-0400 (Atlantic Standard Time)", • "origin": "https://www.youtube.com", • "timestamp": 1739373426353 • } • • ]Untitled presentation • , n=0 sUZ0 KPk-teK2&c=WEB_EMBEDDED_87-1404265_time_100.0-110.0_off_0_len_125379_end_1", • .youtube.com/embe "lva": • "itag_243_type_3_src_reslicegetRequestInfoForRange_seg • src_reslicegetRequestInfoForRange_seg_25_range_13876 • 76-1436786_time_128.0- • "user_qual": 0, • "category": "document", • "tag": "Papa.Legba.NB White-Boy-Expo", "description": "Matthew Shannon Amos Detailpages ","title": "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com", "release_version": "youtube.player.web_20230502_00_RC00",exp=24350590,24350675,24350705,243507 131.4_off_0_len_49111_end_1_eos_1", "lar": • "itag_251_type_3_src_getRequestInfoForRange_segsrc_ge • tRequestInfoForRange_seg_10_range_1278887- • 1404265_time_100.0-110.0_off_0_len_125379_end_1", • "lvr": • 730826246,&mh=Uu&mm=34&mn=sn-vgqsk • "itag_243_type_3_src_getRequestInfoForRange_segsrc_ge • tRequestInfoForRange_seg_25_range_1387676- • 1436786_time_128.0- • 131.4_off_0_len_49111_end_1_eos_1", "laq": "0", "lvq": "0", • "0sz": "true", • "":"" • { • "slideshows_uploaded": [ {https://youtu.be/AmmZR6erBFY { • ], • vns: , vec: nu, • https://www.youtube.com/watch?v= n=0gsUZ0KPkif-teK2&c=WEB_EMBEDDED_87-1404265_time_100.0-110.0_off_0_len_125379_end_1", • .youtube.com/embe "lva": • "itag_243_type_3_src_reslicegetRequestInfoForRange_seg • src_reslicegetRequestInfoForRange_seg_25_range_13876 • 76-1436786_time_128.0- • "user_qual": 0, • "category": "document", • "tag": "Papa.Legba.NB White-Boy-Expo", "description": "Matthew Shannon Amos Detailpages ","title": "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com", "release_version": "youtube.player.web_20230502_00_RC00",exp=24350590,24350675,24350705,243507 131.4_off_0_len_49111_end_1_eos_1", "lar": • "itag_251_type_3_src_getRequestInfoForRange_segsrc_ge • tRequestInfoForRange_seg_10_range_1278887- • 1404265_time_100.0-110.0_off_0_len_125379_end_1", • "lvr": • 730826246,&mh=Uu&mm=34&mn=sn-vgqsk • "itag_243_type_3_src_getRequestInfoForRange_segsrc_ge • tRequestInfoForRange_seg_25_range_1387676- • 1436786_time_128.0- • 131.4_off_0_len_49111_end_1_eos_1", "laq": "0", "lvq": "0", • "0sz": "true", • "":"" • { • "slideshows_uploaded": [ {https://youtu.be/AmmZR6erBFY {{{https://youtu.be/AmmZR6erBFY • "slideshows_uploaded": [ • { • "title": "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com", "description": "Matthew Shannon Amos Detailpages ", "tag": "Papa.Legba.NB White-Boy-Expo","category": "document", "language": "en", "privacy": "public", "url":"https://www.slideshare.net/slideshow/papa-legba-nb-white-boy-expo-2360-plu s-pagesgoogle-com/273409254", • "download_url": • "https://www.slideshare.net/dwnld_file?s_title=papa-legba-nb-white-boy-expo-2 360-plus-pagesgoogle-com" • } • ], • "comments": [ttps:www.youtue.comve BUEhL7xBNEhttps://www.youtube.com/embed/x-XclczZDpU?si=tWAt4hMzuZKf8ZG%2F&show_text=true& width=267 &t=2" width="267" height="591" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share" allowFullScreen="true"> https://www.youtube.com/watch?v=CBUEhL7xBNE • {{https://youtu.be/AmmZR6erBFY • "slideshows_uploaded": [ • { • "title": "Papa.Legba.NB White-Boy-Expo-2360@plus.pagesgoogle.com", "description": "Matthew Shannon Amos Detailpages ", "tag": "Papa.Legba.NB White-Boy-Expo","category": "document", "language": "en", "privacy": "public", "url":"https://www.slideshare.net/slideshow/papa-legba-nb-white-boy-expo-2360-plu s-pagesgoogle-com/273409254", • "download_url": • "https://www.slideshare.net/dwnld_file?s_title=papa-legba-nb-white-boy-expo-2 360-plus-pagesgoogle-com" • } • ], • "comments": [ttps:www.youtue.comve BUEhL7xBNEhttps://www.youtube.com/embed/x-XclczZDpU?si=tWAt4hMzuZKf8ZG%2F&show_text=true& width=267 &t=2" width="267" height="591" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowfullscreen="true" allow="autoplay; clipboard-write; encrypted-media; picture-in-picture; web-share" allowFullScreen="true"> https://www.youtube.com/watch?v=CBUEhL7xBNE • }import url from 'url'; • import { createRunner } from '@puppeteer/replay'; • • export async function run(extension) { • const runner = await createRunner(extension); • • await runner.runBeforeAllSteps(); • • await runner.runStep({ • type: 'setViewport', • width: 958, • height: 714, • deviceScaleFactor: 1, • isMobile: false, • hasTouch: false, • isLandscape: false • }); • await runner.runStep({ • type: 'navigate', • url: 'http://www.blogger.com/https://self-issued.me/ is the issuer identifier used for self-issued OpenID Connect identity providers. As described there, discovery can be done for the issuer https://self-issued.me/ and registration can be done at https://self-issued.me/registration/1.0/', • assertedEvents: [ • { • type: 'navigation', • url: 'http://www.blogger.com/https://self-issued.me/ is the issuer identifier used for self-issued OpenID Connect identity providers. As described there, discovery can be done for the issuer https://self-issued.me/ and registration can be done at https://self-issued.me/registration/1.0/', • title: '' • } • ] • }); • await runner.runStep({ • type: 'navigate', • url:}https://github.com/Chodum91/Papa.Legba.NB/, http://youtube-nocookie.com/embed/https:/rainwizzard.blogspot.com/2023/01/papalegbanb-papalegbanb.htmlhttps://youtu.be/9updFipSOp8?t=327 • "issuer": "https://self-issued.me • https://youtu.be/9updFipSOp8?t=327 at May 21, 2026 Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest Labels: Matthew Shannon Amos No comments: Post a Comment Newer Post Older Post Home Subscribe to: Post Comments (Atom) Sean Chodum Burns: Scum Player And Porn Sean Chodum Burns: Scum Player And Porn :Spotify – Web Player https://open.spotify.com/#_gl=1*1tzowre*_gcl_au*MzA4MDM1MTk2LjE3Nzk4NTQyNTE. ... Blood Sweet Gears a &IR Z i d2 4 q\mJ ן:u p EEQ n 3g } Q jkkk2 d r J% S }襗^ 0, ݻ p ٬ jU % ϫT J " 2A ) _ $ + `0 P 5 ### C hnn $I z z C = ={ ځ = `P ֤ S+++ u 3 "I V ǎ ; 2 | g sO" H$ }}} T* \ e ֲ ٳg z ! x h4 | 0 tz}} X, H V x boo b ! h nnn. J, R z y w / } z # ݵkWOO ``` Ç ? #[񯣆 9200` X DSS F 8t (644Ȳ p8j ( xnnnN w yg j [Q >~ x T 0 i 0 kkkF Q h x z lv: R) _s: J% y 4M , MӴ CQT o { - ( ( ^ e $ T * Ja s i ˗/ ,{S zzz fs0 y n + b t: d mll\ .uvv* b Y hiiaY6 No1 j n? ࠢ( A,--y y ˥(J6 V / 8999:: J DQ, a}} v 4 V K RWWW$ ioo_^^ Lg Z ̙3~ q p8 BͶT* F ɓ բ N q W ҥK V j r9 | At: t8 $ ի E e a\N '{ `ss ,˯ k jEQ q a E b=== lvhh( ?_e'N e d2 , V F# 0 } ? V + J$ ?v N 㛛 $ ǯ\ r E e E P P( R. eYN$ r > R i ڥ a Q Y f Z R t jusssii 0 ,˅B J q ^ 7 $ |> N M& A ׮] b =z 67?744 f A h q< f & 髯 X, w z lN b p< h A *K b E %IJ ӛ L ~P d2ɲ, ǝ? J D2! bm i Ǐ' |2 _ t C ݣVp7f k f F : n}}= 0| ʕ > m $ DQ | A e ˵M L&ӎ g ! r 'N @ rQ w mӪ> ѻ loo x<: h4*U @ ( $ A \. ?=NQT[[ۛo yS ` v - P ݽ ( e … 8N $ ǿ z Ё m6 6 e J N Fcm , x{> 4 8 7 x :::b I ^ ٳccc ` ?r H T 8 E ? ^ ߿o߾ 6 ݮR dYF $ L F Y h4BA _| E [o U/ٶ n ꩧ ! i: { = o Z a r EQT T h4 j5 ͒ $ s 'O H$r { 1 x t n j QQ gff p& q: LNN t m k׮ , ޾ ߯(J Z F sss$I~ ' : w \ + > oj K IEND B`https://camo.githubusercontent.com/93e4ae660382b2232c3b253409065a16d40c42c6d9f332afcddfef4cf7d37312/68747470733a2f2f7062732e7477696d672e636f6d2f6d656469612f4843354645765662454145364664373f666f726d61743d706e67266e616d653d736d616c6cMastodon https://www.googletagmanager.com/gtag/js?id=G-8KMXESKDR-window['GoogleAnalyticsObject'] = 'ga'; ... PNG IHDR 0 0 `n sBIT O IDATX ]l T Ǐ Nܤn &M mH ,i nPF; 6 ` i܌ i @p H ! !M H * ڤ2VTڥ mؚ &u\' c q s o v { Q /O sl \ | U \.W$ ikkkii... Search This Blog Home About Me My photo Scum Bag View my complete profile Report Abuse Labels Matthew Shannon Amos Blog Archive May 2026 (10) April 2026 (6) March 2026 (10) February 2026 (1) Travel theme. Theme images by fpm. Powered by Blogger.

Comments

Popular posts from this blog