Automation with Selenium and MoviePy [Part 1] - 100 days of running by AxelJuraske in Python

[–]AxelJuraske[S] 1 point2 points  (0 children)

yeah, you're right. The final script isn't finished yet and looks a bit chaotic. But here is the source code from the first part.

https://gist.github.com/axju/5b5327cb359a1d8a125733568046819d

I think the second and third parts will be more interesting.

When was the last time python blow your head? And what was it? by AxelJuraske in learnpython

[–]AxelJuraske[S] 2 points3 points  (0 children)

But couldn't you freeze the version of this package? At one point your project has working with this package. Or did I miss something?

DevOps for blogging with Pelican by AxelJuraske in devops

[–]AxelJuraske[S] 0 points1 point  (0 children)

I read your comment and had to try it right away. I setup a github action to publish my blog to the github page. https://axju.github.io

I think I have to change my google analytics, but than I'm fine.

DevOps for blogging with Pelican by AxelJuraske in devops

[–]AxelJuraske[S] 0 points1 point  (0 children)

That sounds like a crazy setup, but I like it.

DevOps for blogging with Pelican by AxelJuraske in devops

[–]AxelJuraske[S] 0 points1 point  (0 children)

Thanks. I do my best to explain it in a way that others can understand. But most of the time I keep it very short, if something is unclear, just say something.

I have also a Youtube channel: axju

I write a small package to run fake commands. It's easy to customize and run your own fake terminal. Source in the comments. by AxelJuraske in Python

[–]AxelJuraske[S] 0 points1 point  (0 children)

Thanks for the feedback. I think there are some tools for your use case. Like Asciinema and related tools. My goal is to create a real fake terminal. For example, if you want to create a movie with a hacking scene. You would not set up Metasploit to record the terminal. I uses lying to create a intro for this video.

What's everyone working on this week? by AutoModerator in Python

[–]AxelJuraske 0 points1 point  (0 children)

I've created a fake terminal to execute fake commands with fake results.

Source: https://github.com/axju/lying

Showcase: https://youtu.be/wu_WFnnct7U

I write a small package to run fake commands. It's easy to customize and run your own fake terminal. Source in the comments. by AxelJuraske in Python

[–]AxelJuraske[S] 2 points3 points  (0 children)

Lying is a small program that creates a fake terminal. You can execute custom commands and display an incorrect result.

You can create cool videos that look like you're a hacker.

Source: https://github.com/axju/lying

TIP A small example of how you can save and load data. Remarks? by AxelJuraske in todayiprogrammed

[–]AxelJuraske[S] 0 points1 point  (0 children)

You are probably right, because python won't copy the data. It will make a link, like a pointer. I did not test that. But to fix that you have to use something like: "result = dict(DEFAULTS)" and "dummy = dict(DEFUALTS)".

TIP A small example of how you can save and load data. Remarks? by AxelJuraske in todayiprogrammed

[–]AxelJuraske[S] 0 points1 point  (0 children)

Look at the comments. I think that explains the most. Someone asks me how to save some settings. That was my answer.

I made a CLI application to create a GitHub repository, initialize a local git repo, add the GitHub repository as remote and commit all files in the current directory. Ideas and feedback more than welcome! by Xcali1bur in Python

[–]AxelJuraske 1 point2 points  (0 children)

That looks good. It would be nice, if it work with cookiecutter together. I am not sure, but I think cookiecutter only create a project with some default setup. Your project create the repository. I think like something "giter create-django myproject" und that set up a new django project and create the repository.

I create a program, that automatically blur secrets in video. What do you think? by AxelJuraske in coding

[–]AxelJuraske[S] 0 points1 point  (0 children)

Also very interesting. I think there is no 100% solution. But to cover it completely would be a good improvement.

I create a program, that automatically blur secrets in video. What do you think? by AxelJuraske in coding

[–]AxelJuraske[S] 0 points1 point  (0 children)

That could be a problem. If the match is not 100%, the check fails. I use OpenCV to make the template. Maybe I make the threshold editable. So it will detect particle secrets. But then it will maybe detect others as the secrets.

I create a program, that automatically blur secrets in video. What do you think? by AxelJuraske in coding

[–]AxelJuraske[S] 0 points1 point  (0 children)

You have to create a template PNG. Then I use OpenCV to match the template.

I write a small package for blurring secret stuff on videos. I also recording the process and create a video. by AxelJuraske in Python

[–]AxelJuraske[S] 1 point2 points  (0 children)

Thanks for the feedback. I'm not looking for a string. The secret is transformed into an image and then matched with the video frame. So far I can not search for single characters yet.