Giter VIP home page Giter VIP logo

adsfasdf's Introduction

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

     

adsfasdf's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.