Skip to content
View Gj1337's full-sized avatar

Block or report Gj1337

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. the_movies_explore the_movies_explore Public

    A Flutter app for exploring movies, searching and bookmarking your favourite. Enjoy a fast, reliable interface to effortlessly discover new releases.

    Dart 1

  2. ascii_art_converter ascii_art_converter Public

    A Dart-based ASCII art converter that transforms images into ASCII art. Available as a reusable library and command-line tool.

    Dart 3 1

  3. Dart lint rules Dart lint rules
    1
    include: package:flutter_lints/flutter.yaml
    2
    
                  
    3
    analyzer:
    4
      exclude:
    5
        - "**/*.g.dart"
  4. Clipboard copy utility for console Clipboard copy utility for console
    1
    #!/bin/bash
    2
    
                  
    3
    # ctc - Copy to clipboard utility
    4
    # Usage: ctc [-t] [-v] command [args...]
    5
    # -t: transparent mode (copy to clipboard AND display on console)
  5. Scroll up button wrapper Scroll up button wrapper
    1
    import 'package:flutter/material.dart';
    2
    
                  
    3
    void main() => runApp(
    4
          MaterialApp(
    5
            theme: theme,
  6. Generation and embedding subtitles i... Generation and embedding subtitles into a video
    1
    #!/bin/bash
    2
    
                  
    3
    # Movie Subtitle Generator
    4
    # This script extracts audio from a video file, uses Whisper to generate subtitles,
    5
    # and then embeds the subtitles back into the video file.