awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 مستودعات

Awesome GitHub RepositoriesString-to-Code Execution

Capabilities for compiling and executing Python code stored as text strings.

Distinct from Dynamic Code Loaders: Distinct from Dynamic Code Loaders: focuses on the execution of arbitrary strings via eval/exec rather than injecting modules into a running process.

Explore 4 awesome GitHub repositories matching devops & infrastructure · String-to-Code Execution. Refine with filters or upvote what's useful.

Awesome String-to-Code Execution GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • aemkei/jsfuckالصورة الرمزية لـ aemkei

    aemkei/jsfuck

    8,596عرض على GitHub↗

    jsfuck is an esoteric programming language and JavaScript source obfuscator. It functions as a code encoder that transforms standard JavaScript source code into a functional equivalent composed of a minimal character set. The project restricts its source code to six specific characters to hide logic and bypass security filters that block standard alphanumeric characters. It achieves this by using type coercion to derive symbols and accessing internal language objects through prototype manipulation. The system enables arbitrary JavaScript execution by converting strings into executable functi

    Enables the execution of arbitrary logic by converting obfuscated strings into executable JavaScript functions.

    JavaScript
    عرض على GitHub↗8,596
  • jackzhenguo/python-small-examplesالصورة الرمزية لـ jackzhenguo

    jackzhenguo/python-small-examples

    8,132عرض على GitHub↗

    This project is a comprehensive library of practical Python code examples and patterns. It provides a collection of scripts and snippets designed to demonstrate a wide range of programming tasks, from basic syntax to advanced implementation patterns. The repository focuses on several core domains, including the implementation of concurrency and multithreading examples, data analysis snippets for cleaning and manipulating tabular data, and various data visualization examples. It also covers automation scripts for file system management and a variety of general programming patterns. Additional

    A Python capability that compiles a text string into executable code and runs it within the current environment.

    Pythondata-sciencemachine-learningpython
    عرض على GitHub↗8,132
  • nanotee/nvim-lua-guideالصورة الرمزية لـ nanotee

    nanotee/nvim-lua-guide

    5,934عرض على GitHub↗

    هذا المشروع هو دليل شامل لكتابة إعدادات وإضافات Neovim باستخدام لغة البرمجة Lua. يعمل ككتيب لاستخدام واجهة برمجة تطبيقات Lua الأصلية في Neovim لإدارة المخازن المؤقتة (buffers)، والنوافذ، وخيارات المحرر. يركز الدليل على التوافق بين Lua و Vimscript، ويقدم تعليمات حول كيفية تنفيذ Vimscript من Lua واستدعاء دوال Lua من داخل Vimscript. كما يوفر إطار عمل لتطوير الإضافات، ويغطي تنظيم الكود في وحدات خارجية وإنشاء أوامر مخصصة وتعيينات مفاتيح. تغطي الوثائق قدرات أوسع تشمل أتمتة سير عمل المحرر، ومعالجة المتغيرات الداخلية، وإدارة خيارات المحرر. كما تتضمن تعليمات لاستدعاء ملفات خارجية وتعديل أسطر المخزن المؤقت.

    Describes the process of executing Vimscript command strings from within Lua scripts.

    documentationguidelua
    عرض على GitHub↗5,934
  • haml/hamlالصورة الرمزية لـ haml

    haml/haml

    3,834عرض على GitHub↗

    Haml is a Ruby HTML template engine and server-side rendering library. It functions as an HTML markup preprocessor that transforms a concise, indentation-based shorthand syntax into standard HTML and XHTML markup. The system uses hierarchical whitespace instead of explicit closing tags to define the structure of documents, reducing boilerplate during markup authoring. It integrates Ruby logic directly into templates to evaluate conditional statements, process dynamic data, and interpolate values. The engine provides tools for managing element attributes through hashes, controlling output whi

    Integrates logic into templates by executing Ruby code to output results or run control statements.

    Ruby
    عرض على GitHub↗3,834
  1. Home
  2. DevOps & Infrastructure
  3. Execution Environments
  4. Code Execution Runtimes
  5. Dynamic Code Loaders
  6. String-to-Code Execution

استكشف الوسوم الفرعية

  • JavaScriptExecution of arbitrary JavaScript logic by evaluating strings via the Function constructor. **Distinct from String-to-Code Execution:** Specializes string-to-code execution specifically for JavaScript's Function constructor, unlike the Python-focused candidate.