Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
@dzineer
dzineer
Follow
View dzineer's full-sized avatar

Frank Decker dzineer

Highlights

  • Pro

Block or report dzineer

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more aboutblocking 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 aboutreporting abuse.

Report abuse
dzineer/README.md

 

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:

classDzineer(AIAutomationAISpecialist):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:importReactfrom'react';constDzineerContext=React.createContext();exportdefaultDzineerContext;DzineerProvider.jsx:importReact,{useEffect,useState}from'react';importDzineerContextfrom'./DzineerContext';constDzineerProvider=({ 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.Providervalue={dzineerState}>{children}</DzineerContext.Provider>);};exportdefaultDzineerProvider;Dzineer.jsx:importReactfrom'react';importDzineerContextfrom'./DzineerContext';constDzineer=()=>{constdzineerState=React.useContext(DzineerContext);return(<div><imgsrc="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>);};exportdefaultDzineer;App.jsx:importReactfrom'react';importDzineerProviderfrom'./DzineerProvider';importDzineerfrom'./Dzineer';functionApp(){return(<DzineerProvider><Dzineer/></DzineerProvider>);}exportdefaultApp;

Python/FastAPI

fromfastapiimportFastAPI,HTTPExceptionfrompydanticimportBaseModelfromtypingimportList,Dict,Anyimportjsonapp=FastAPI()classDzineer(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")asyncdefshow_dzineer():returndzineer_instance@app.get("/")asyncdefroot():return {"message":"Welcome to the Dzineer API"}# Optional: Add an endpoint to update the Dzineer instance@app.put("/dzineer")asyncdefupdate_dzineer(dzineer:Dzineer):globaldzineer_instancedzineer_instance=dzineerreturn {"message":"Dzineer updated successfully"}# If you want to serve HTML (similar to the blade template), you can use Jinja2 templates with FastAPIfromfastapi.responsesimportHTMLResponsefromfastapi.templatingimportJinja2Templatestemplates=Jinja2Templates(directory="templates")@app.get("/dzineer/html",response_class=HTMLResponse)asyncdefshow_dzineer_html(request:Request):returntemplates.TemplateResponse("dzineer.html", {"request":request,"dzineer":dzineer_instance})

PHP/Laravel

<?phpnamespaceApp;useIlluminate\Database\Eloquent\Model;class Dzineerextends Model{protected$attributes = ['name' =>'Frank','model' =>'["Automations", "AI", "Design"]','research' =>'["AI", "AI Automations", "Software Architect, Emphasis AI & Automations"]','interest' =>'["Entrepreneurship", "IP", "VC Methods"]'    ];}namespaceApp\Http\Controllers;useIlluminate\Http\Request;useApp\Dzineer;class DzineerControllerextends Controller{publicfunctionshow()    {$dzineer = Dzineer::first();returnview('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:

AzureAWSAWS EC2AWS S3Git DevOps

Pipelines:

Azure DevOpsGithub DevOps

Programming Languages:

PythonPHPJavaScript

Frameworks:

ReactVueLaravelNodeJSDjangoRestFrameworkFastAPI

Operating Systems:

UbuntuDebianWindowsMacOS

Prompt Engineering:

OpenAIOllamaMLStudio

AI API Integrations:

OpenAIAnthropicOllamaMLStudio

Databases:

MySQLMaria DBPostgreSQLRedis

Hosting Tools and Services:

WHMCSPlesk

Tools and Services:

KubernetesDockerGitStreamlit

 

Connect with Me

    

Popular repositoriesLoading

  1. tailwind-alpine-chrome-extensiontailwind-alpine-chrome-extensionPublic

    Forked fromthomasjohnkane/tailwind-alpine-chrome-extension

    Starter Kit for building a Web Extension with Tailwindcss & AlpineJS

    HTML 2 1

  2. laracasts-downloaderlaracasts-downloaderPublic

    Forked fromcarlosflorencio/laracasts-downloader

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

    PHP 1

  3. laravellaravelPublic

    Forked fromreliese/laravel

    Laravel Components for code generation

    PHP 1

  4. migrations-generatormigrations-generatorPublic

    Forked fromXethron/migrations-generator

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

    PHP 1

  5. app_agentquote_com_laravel_v3app_agentquote_com_laravel_v3Public

    TSQL 1

  6. example-vue-routerexample-vue-routerPublic

    Example Vue Router

    Vue 1


[8]ページ先頭

©2009-2025 Movatter.jp