I hereby claim:
- I am nbuechler on github.
- I am socialmancer (https://keybase.io/socialmancer) on keybase.
- I have a public key ASD9CKBH0Cef4k0CJ3tmJmzZ8Hil1zyIRS7oJjEYB9bxCgo
To claim this, I am signing this object:
| from moviepy.editor import VideoFileClip, concatenate_videoclips, vfx | |
| def concatenate_original_and_reversed(input_path, output_path): | |
| # Load the video file | |
| clip = VideoFileClip(input_path) | |
| # Reverse the clip | |
| reversed_clip = clip.fx(vfx.time_mirror) | |
| # Concatenate the original clip with the reversed clip | |
| final_clip = concatenate_videoclips([clip, reversed_clip]) | |
| # Write the final clip to a new file |
I hereby claim:
To claim this, I am signing this object:
| <html> | |
| <head> | |
| <title>jQueryGridTargeting</title> | |
| </head> | |
| <style> | |
| #rows { | |
| display: flex; | |
| flex-direction: column; | |
| } |
| # Python program for practical application of sqrt() function | |
| # https://en.wikipedia.org/wiki/Centered_hexagonal_number | |
| # Finding Centered hexagonal primes | |
| import sys | |
| # import math module | |
| import math | |
| # function to check if prime or not |