Skip to content
View dzineer's full-sized avatar

Highlights

  • Pro

Block or report dzineer

Report abuse

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

Report abuse
dzineer/README.md

Table of Contents

 

Hello! I'm Dzineer.

visitors

I'm interested in building AI Automations systems and tools.

 

A little about Me

I'm a software developer specializing in AI and automation systems. I have a strong background in Python, JavaScript/ReactJS, and PHP/Laravel. Here's a little more about me:

class Dzineer(AI AutomationAISpecialist): def __init__(self): self.name = "Frank" self.model = ["Automations", "AI", "Design"] self.research = ["AI", "AI Automations", "Software Architect, Emphasis AI & Automations"] self.interest = ["Entrepreneurship", "IP", "VC Methods"]

JavaScript/ReactJS

DzineerContext.jsx: import React from 'react'; const DzineerContext = React.createContext(); export default DzineerContext; DzineerProvider.jsx: import React, { useEffect, useState } from 'react'; import DzineerContext from './DzineerContext'; const DzineerProvider = ({ children }) => { const [dzineerState, setDzineerState] = useState({ name: "Frank", model: ["Automations", "AI", "Design"], research: ["AI", "AI Automations", "Software Architect, Emphasis AI & Automations"], interest: ["Entrepreneurship", "IP", "VC Methods"] }); useEffect(() => { // Perform any side effects or data fetching here }, []); return ( <DzineerContext.Provider value={dzineerState}> {children} </DzineerContext.Provider> ); }; export default DzineerProvider; Dzineer.jsx: import React from 'react'; import DzineerContext from './DzineerContext'; const Dzineer = () => { const dzineerState = React.useContext(DzineerContext); return ( <div> <img src="https://img.shields.io/badge/AI-AI-informational?style=flat&logo=ai&logoColor=white&color=6aa6f8" alt="AI Badge" /> <p>Name: {dzineerState.name}</p> <p>Model: {dzineerState.model.join(', ')}</p> <p>Research: {dzineerState.research.join(', ')}</p> <p>Interest: {dzineerState.interest.join(', ')}</p> </div> ); }; export default Dzineer; App.jsx: import React from 'react'; import DzineerProvider from './DzineerProvider'; import Dzineer from './Dzineer'; function App() { return ( <DzineerProvider> <Dzineer /> </DzineerProvider> ); } export default App;

Python/FastAPI

from fastapi import FastAPI, HTTPException from pydantic import BaseModel from typing import List, Dict, Any import json app = FastAPI() class Dzineer(BaseModel): name: str = "Frank" model: List[str] = ["Automations", "AI", "Design"] research: List[str] = ["AI", "AI Automations", "Software Architect, Emphasis AI & Automations"] interest: List[str] = ["Entrepreneurship", "IP", "VC Methods"] # In-memory storage for simplicity. In a real application, you'd use a database. dzineer_instance = Dzineer() @app.get("/dzineer") async def show_dzineer(): return dzineer_instance @app.get("/") async def root(): return {"message": "Welcome to the Dzineer API"} # Optional: Add an endpoint to update the Dzineer instance @app.put("/dzineer") async def update_dzineer(dzineer: Dzineer): global dzineer_instance dzineer_instance = dzineer return {"message": "Dzineer updated successfully"} # If you want to serve HTML (similar to the blade template), you can use Jinja2 templates with FastAPI from fastapi.responses import HTMLResponse from fastapi.templating import Jinja2Templates templates = Jinja2Templates(directory="templates") @app.get("/dzineer/html", response_class=HTMLResponse) async def show_dzineer_html(request: Request): return templates.TemplateResponse("dzineer.html", {"request": request, "dzineer": dzineer_instance}) 

PHP/Laravel

<?php namespace App; use Illuminate\Database\Eloquent\Model; class Dzineer extends Model { protected $attributes = [ 'name' => 'Frank', 'model' => '["Automations", "AI", "Design"]', 'research' => '["AI", "AI Automations", "Software Architect, Emphasis AI & Automations"]', 'interest' => '["Entrepreneurship", "IP", "VC Methods"]' ]; } namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Dzineer; class DzineerController extends Controller { public function show() { $dzineer = Dzineer::first(); return view('dzineer', ['dzineer' => $dzineer]); } } <!-- resources/views/dzineer.blade.php --> <div> <img src="https://img.shields.io/badge/AI-AI-informational?style=flat&logo=ai&logoColor=white&color=6aa6f8" alt="AI Badge" /> <p>{{ $dzineer->name }}</p> <p>{{ $dzineer->model }}</p> <p>{{ $dzineer->research }}</p> <p>{{ $dzineer->interest }}</p> </div>

 

Technologies & Tools

Cloud Services:

Azure AWS AWS EC2 AWS S3 Git DevOps

Pipelines:

Azure DevOps Github DevOps

Programming Languages:

Python PHP JavaScript

Frameworks:

React Vue Laravel NodeJS DjangoRestFramework FastAPI

Operating Systems:

Ubuntu Debian Windows MacOS

Prompt Engineering:

OpenAI Ollama MLStudio

AI API Integrations:

OpenAI Anthropic Ollama MLStudio

Databases:

MySQL Maria DB PostgreSQL Redis

Hosting Tools and Services:

WHMCS Plesk

Tools and Services:

Kubernetes Docker Git Streamlit

 

Connect with Me

     

Popular repositories Loading

  1. tailwind-alpine-chrome-extension tailwind-alpine-chrome-extension Public

    Forked from thomasjohnkane/tailwind-alpine-chrome-extension

    Starter Kit for building a Web Extension with Tailwindcss & AlpineJS

    HTML 2 1

  2. laracasts-downloader laracasts-downloader Public

    Forked from carlosflorencio/laracasts-downloader

    Downloads new lessons and series from laracasts if there are updates. Or the whole catalogue.

    PHP 1

  3. laravel laravel Public

    Forked from reliese/laravel

    Laravel Components for code generation

    PHP 1

  4. migrations-generator migrations-generator Public

    Forked from Xethron/migrations-generator

    Laravel Migrations Generator: Automatically generate your migrations from an existing database schema.

    PHP 1

  5. app_agentquote_com_laravel_v3 app_agentquote_com_laravel_v3 Public

    TSQL 1

  6. example-vue-router example-vue-router Public

    Example Vue Router

    Vue 1