Skip to content
View burgil's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report burgil

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
burgil/README.md
Profile Picture of Burgil (burgil)

𝕋𝔼ℂℍℕ𝕆𝕂𝕀ℕ𝔾, 𝕄𝔸𝕊𝕋𝔼ℝ 𝐎𝐅 𝐋𝐎𝐆𝐈𝐒𝐓𝐈𝐂𝐒, 𝕂𝕀ℂ𝕂 𝔸𝕊𝕊 𝐃𝐄𝐕𝐄𝐋𝐎𝐏𝐄𝐑

GitHub Snake Contribution Grid Animation

Followers views Total Stars Total Forks


👽👋 Greetings, I'm Burgil.

I come in peace and curiosity. Take me to your leader, and together, we shall conquer the vast universe of coding! Let's unite in crafting groundbreaking solutions for humanity. Let's connect and create something extraordinary together!

With mastery across multiple programming languages, there's hardly a challenge I can't tackle. Join me on my coding journey, where we can collaborate to build remarkable innovations.

Reach out, and let's discuss how we can make the impossible possible.

System Requirements to Run Burgil:

  • Proficiency in English is required.
  • Mastery in development is necessary.
  • At least 16GB of RAM is required.
  • Laptops are not permitted for use.
  • Wifi usage is prohibited.
  • A good quality microphone is required.
  • Age requirement is 18+. (Taking Freelancing Jobs)
  • Being a person of good character is essential; individuals with negative intentions are not permitted.

Operating Systems

  • Windows
    • Windows 10
    • Windows 11
    • Windows 7
    • Windows Vista
    • Windows XP
    • Windows 98
  • LinuxmacOS
    • Ubuntu
    • Debian
    • Oracle Linux
    • Kali Linux
  • Android
    • Android Studio
  • iOS
    • Xcode

🔥 Expertise & Skills

Programming Languages:

Python JavaScript TypeScript Java Swift C# C++ PHP Bash Batch PowerShell HTML CSS SQL JSON

Frameworks & Libraries:

React Vue.js AngularJS Express.js Electron.js Django Flask Spring Bootstrap

Development Environments

Node.js Docker Kubernetes WSL Nginx Apache LAMP WAMP XAMPP LEMP MEAN AMPSS Repl.it Cloudflare Workers Hyper-V

Cloud Platforms

Cloudflare Pages GitHub Pages Amazon AWS Microsoft Azure Google GCP Oracle Cloud SiteGround CloudWays IBM Cloud

ML / DL (AI, Artificial Intelligence, Machine Learning, Neural Networks, Deep Learning):

TensorFlow PyTorch Keras OpenAI Nvidia NeMo IBM Watson

Databases:

SQL SQLite NoSQL Postgres MariaDB MongoDB Redis Cloudflare Workers KV

Browser Extensions:

Chrome Extensions Edge Extensions FireFox Extensions Brave Extensions Opera Extensions Safari Extensions

Other Frameworks, Environments, Tools & Libraries:

FastAPI WordPress PWA Drogon ASP.NET VSCode Git GitHub GitLab GitHub Actions BitWarden Jekyll Discord.JS Discord.PY GraphQL React-Native TailwindCSS Next.js

Other Programming Languages:

VB Assembly Solidity XML LUA C AutoHotkey


😋 My Projects

🌐  Repos

🌐  Forks

🌐  Websites

https://roboticeva.github.io/ https://malfunctionify.com/ https://www.roboticeva.com/

🌐  Gists

Sponsors

If my contributions, code snippets, or repositories has helped you, please consider sponsoring me.

Visitors Count

Trophies

trophy

😎 GitHub Stats


burgil/burgil is a ✨ special ✨ repository because its README.md (this file) appears on my GitHub profile.

Burgil's GitHub Repo

Pinned

  1. burgil.github.io burgil.github.io Public

    A full make over that I've made to the Silicon Valley Scrum Board made by GnashHS (reddit) / remyc95 (github) in 2016.

    CSS 1

  2. Pure CSS responsive popups solution Pure CSS responsive popups solution
    1
    <label for="1">CLICK 1!</label>
    2
    <label for="2">CLICK 2!</label>
    3
    <label for="3">CLICK 3!</label>
    4
    
    
    5
    <div class="popups">
  3. sayjs sayjs Public

    Forked from Marak/say.js

    Modified to support streaming and all open pull requests has been merged manually one by one - TTS (text to speech) for node.js. send text from node.js to your speakers (or clients using express.js…

    JavaScript 2

  4. Flawlessly compress MOV file to MP4 ... Flawlessly compress MOV file to MP4 for faster web streaming (I just compressed 158MB with it to just 12MB in less than two minutes and I compared between the two, the new file actually looks better and much less glitchy)
    1
    import subprocess
    2
    
    
    3
    def compress_mov_to_mp4_ffmpeg(input_file, output_file, bitrate='1000k'):
    4
        command = ['ffmpeg', '-i', input_file, '-b:v', bitrate, output_file]
    5
        subprocess.call(command)
  5. free-public-apis free-public-apis Public

    A List of Free Public API's - No Fuzz - Got it from public-apis repo after it was shutdown, original license: https://github.com/public-apis/public-apis/#MIT-1-ov-file

    3

  6. A super nice scrollbar in CSS A super nice scrollbar in CSS
    1
    ::-webkit-scrollbar {
    2
        width: 0.3em;
    3
        height: 0.3em;
    4
        overflow-x: none;
    5
    }