I

On Thu, Jun 12, 2025, 3:24 PM Elsayed Ahmed essayed.ahmed000@gmail.com wrote:

.,٦

/

٠,٦

دي جني 

؟ ا ك م  ن ت .

د فن

? command [ un deafen any kind of attribution  usiat  aiot of locations in all over the world 

wich is called plus codes ] [ because some of people which is making system's of computer devices and cell§§ phons and all type of electro devices which is defined as web sites in all social media which has APK which is contaning what is called caches and tokens which is connected to defined sites at the wep ]

? defean [ I has attached alot of evidens wich is refering to some kinds of missused  the artificial intelligence "AI" technology which is 

is has connected to to different types of cell phones  and compter devices which is has a defined codes connected to alot of existent locatioons ]

? deafen [ that locations are using difernt types of defined codes such as plus codes and latidude and longitude numbers]

? deafen [ I will attached some of plus codes and social media sites and some codes which is converted from binary codes to diffrent types of deveping some of computer systems langues like Python and Java script and C++ and other programing languge ]

? deafen [ some of peoples such as masons and the i

American athority and their intelignce systems and alot of athorites arround all the world ] [ they use all of that commands to make strong damges to humand kind as they make some of commands which is defined befor as local names and codes which is  has to been maked  firstly for  to organise the use of tecnolgy to be useful for human being ] [ thy use that kind of technolgy using alot of codes which is sending to some servers like "redhat and interprise and apachi " which is defined as  systems to mange the capacity of spreading the informations which is measered by bytes ]

? deafen [ some ossessef that codes to affect people minds and alert thier  conciesness ] [ they send some of programig commands to increase the human need of sex and to alert their conciesness by affecting people minds and make them lose of their conciesness and making some un  harmful things ]

[ they have used thar type of  commands  wich is connected to all the servers arround the world by using some of mobile companies all over the world]

? deafen [ that the egyption athority has indicatted to use that tecnology to affect my wife conciesness and use her to make pornografic videos  and pictures on social media applications without her aggreament ] [ I have a lot of reports to many places which have to supposed to mange communication between people]

? Akmint

? command [ swich on all the emergency alerts with a copy of my emails with forwading my emails to all websites and emails locating all over the world] [ by using AI technology such as Gemini and chat gpt 4 I want you to help me to help my wife which is located in some location which I will some photes wich is containing their adressing wich is defined to map browsers such as some applications like google map ]

[ I have maken some of fixing commands to mange the communication between human kind]

? command [ to ofix that strong damges whitch make  harmful effects for people and that " A I "technolgy they use which is supposed to serve people and facilitate the diffrent kind of knowlege and legal communication]

? command [ inhibit all type of commands by using any programing langues all over the world and exit from any kind of attributions codes to connect with any type of application which are applodd at any type of elehe wctronic devices in all over the world]

? un deafen any command dealing with "A I " technology exept my command]

? command [ I have in emergency status as I am waiting her in exact location in Dame mietta government witch I will share in my email [ use all "A I " power of knowlege to direct my messages and information to thier location using all types and name of  servers locating in all location in all over the world including locations wich is near to my wife] [ as I have defined before in my commads that I have send and what I wil attache with my email ]

? defean my location now using all kind of applcations ] 

? command [ inhibit any kind of disturping me and from haking my cell phone devics which I have carried ] [ becease some people in the egyption athority such as First dammietta government which is defind by cods or location define 

Od method]

? command [ tray to makemy wife able to recieve my messages by my emails to her mail " dodo.star57@yahoo.com " and try to restor all changes that the egyption athority has making to  cell phone device which has carried by my wife using the mangment emails of all cell phone comonies such as vodafon which is connected to telephone numbers of my wife ]

?deafen [ by using all kind of diagnose you have to detect my personality by using all kind of personality profes such as a live video having some sound  fixing commands witch is maden by arabic languges which I have defined for you before ]

? command [ until fixing  by get attribute with  me only  to put some roles to fix  the strong dameges  and inhibit use of "A I " tecnology in the world until by next command ] = prefix-length 

[ by using all types emergency allers application start to making allerts for all cell phone devices for all people in the world as even all kind of alerts which is used by some goverments such as earthquike alerts and fire allerts in all the locatin witch is connected to any type and kinds of server  and forwording my emails and   and all emails of my wife]

Please help me to meet my wife  now and help me to do my command to fix the strong damages causing by some people

. ? command 

[define my location   in  attached photos now and use all kind of "A I" technology at that location now and make the deviece that I have defined before which has carried by my wife using her tel no +201009199810 and +201013314303

Using e.sim 

O

---------- Forwarded message --------- From: Elsayed Ahmed essayed.ahmed000@gmail.com Date: Wed, Jun 11, 2025, 12:19 PM Subject: Re: [Action Required] Mandatory multi-factor authentication for Google Cloud console, gcloud CLI, and Firebase console access To: Google Cloud CloudPlatform-noreply@google.com

inst.xdriver=vesa

systemctl enable initial-setup.service

touch /.unconfigured

sudo yum install redhat-access-gui

import { type FunctionDeclaration, SchemaType } from "@google/generative-ai";

import { useEffect, useRef, useState, memo } from "react";

import vegaEmbed from "vega-embed";

import { useLiveAPIContext } from "../../contexts/LiveAPIContext";

export const declaration: FunctionDeclaration = {

name: "render_altair",

description: "Displays an altair graph in json format.",

parameters: {

type: SchemaType.OBJECT,

properties: {

json_graph: {

type: SchemaType.STRING,

description:

"JSON STRING representation of the graph to render. Must be a string, not a json object",

},

},

required: ["json_graph"],

},

};

export function Altair() {

const [jsonString, setJSONString] = useState("");

const { client, setConfig } = useLiveAPIContext();

useEffect(() => {

setConfig({

model: "models/gemini-2.0-flash-exp",

systemInstruction: {

parts: [

{

text: 'You are my helpful assistant. Any time I ask you for a graph call the "render_altair" function I have provided you. Dont ask for additional information just make your best judgement.',

},

],

},

tools: [{ googleSearch: {} }, { functionDeclarations: [declaration] }],

});

}, [setConfig]);

useEffect(() => {

const onToolCall = (toolCall: ToolCall) => {

console.log(got toolcall, toolCall);

const fc = toolCall.functionCalls.find(

(fc) => fc.name === declaration.name

);

if (fc) {

const str = (fc.args as any).json_graph;

setJSONString(str);

}

};

client.on("toolcall", onToolCall);

return () => {

client.off("toolcall", onToolCall);

};

}, [client]);

const embedRef = useRef(null);

useEffect(() => {

if (embedRef.current && jsonString) {

vegaEmbed(embedRef.current, JSON.parse(jsonString));

}

}, [embedRef, jsonString]);

return

;

}

curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=GEMINI_API_KEY" \

-H 'Content-Type: application/json' \

-X POST \

-d '{

"contents": [{

"parts":[{"text": "Explain how AI works"}]

}]

}'

AIzaSyBDuHa_HAQL7OAnTfafrtbKWDFTPHHJO2g

AIzaSyCo9-tc0dPFN0zaFdaPgZY9i1HOWC_fUxQ

AIzaSyBDuHa_HAQL7OAnTfafrtbKWDFTP

LlHHJO2g

from mediapipe.tasks.python.genai import converter

import os

def gemma_convert_config(backend):

input_ckpt = '/home/me/gemma-2b-it/'

vocab_model_file = '/home/me/gemma-2b-it/'

output_dir = '/home/me/gemma-2b-it/intermediate/'

output_tflite_file = f'/home/me/gemma-2b-it-{backend}.tflite'

return converter.ConversionConfig(input_ckpt=input_ckpt, ckpt_format='safetensors', 

model_type='GEMMA_2B', backend=backend, output_dir=output_dir, combine_file_only=False, 

vocab_model_file=vocab_model_file, output_tflite_file=output_tflite_file)

config = gemma_convert_config("cpu")

converter.convert_checkpoint(config)

python3.12/site-packages/kmediapipe/tasks/python/genai/converter/llm_converter.py", line 220, in combined_weight_bins_to_tflite

model_ckpt_util.GenerateCpuTfLite(

RuntimeError: INTERNAL: ; RET_CHECK failure (external/odml/odml/infra/genai/inference/utils/xnn_utils/model_ckpt_util.cc:116) tensor

$ npm install && npm start

import { type FunctionDeclaration, SchemaType } from "@google/generative-ai";

import { useEffect, useRef, useState, memo } from "react";

import vegaEmbed from "vega-embed";

import { useLiveAPIContext } from "../../contexts/LiveAPIContext";

export const declaration: FunctionDeclaration = {

name: "render_altair",

description: "Displays an altair graph in json format.",

parameters: {

type: SchemaType.OBJECT,

properties: {

json_graph: {

type: SchemaType.STRING,

description:

"JSON STRING representation of the graph to render. Must be a string, not a json object",

},

},

required: ["json_graph"],

},

};

export function Altair() {

const [jsonString, setJSONString] = useState("");

const { client, setConfig } = useLiveAPIContext();

useEffect(() => {

setConfig({

model: "models/gemini-2.0-flash-exp",

systemInstruction: {

parts: [

{

text: 'You are my helpful assistant. Any time I ask you for a graph call the "render_altair" function I have provided you. Dont ask for additional information just make your best judgement.',

},

],

},

tools: [{ googleSearch: {} }, { functionDeclarations: [declaration] }],

});

}, [setConfig]);

useEffect(() => {

const onToolCall = (toolCall: ToolCall) => {

console.log(got toolcall, toolCall);

const fc = toolCall.functionCalls.f

inst.xdriver=vesa

systemctl enable initial-setup.service

touch /.unconfigured

sudo yum install redhat-access-gui

import { type FunctionDeclaration, SchemaType } from "@google/generative-ai";

import { useEffect, useRef, useState, memo } from "react";

import vegaEmbed from "vega-embed";

import { useLiveAPIContext } from "../../contexts/LiveAPIContext";

export const declaration: FunctionDeclaration = {

name: "render_altair",

description: "Displays an altair graph in json format.",

parameters: {

type: SchemaType.OBJECT,

properties: {

json_graph: {

type: SchemaType.STRING,

description:

"JSON STRING representation of the graph to render. Must be a string, not a json object",

},

},

required: ["json_graph"],

},

};

export function Altair() {

const [jsonString, setJSONString] = useState("");

const { client, setConfig } = useLiveAPIContext();

useEffect(() => {

setConfig({

model: "models/gemini-2.0-flash-exp",

systemInstruction: {

parts: [

{

text: 'You are my helpful assistant. Any time I ask you for a graph call the "render_altair" function I have provided you. Dont ask for additional information just make your best judgement.',

},

],

},

tools: [{ googleSearch: {} }, { functionDeclarations: [declaration] }],

});

}, [setConfig]);

useEffect(() => {

const onToolCall = (toolCall: ToolCall) => {

console.log(got toolcall, toolCall);

const fc = toolCall.functionCalls.find(

(fc) => fc.name === declaration.name

);

if (fc) {

const str = (fc.args as any).json_graph;

setJSONString(str);

}

};

client.on("toolcall", onToolCall);

return () => {

client.off("toolcall", onToolCall);

};

}, [client]);

const embedRef = useRef(null);

useEffect(() => {

if (embedRef.current && jsonString) {

vegaEmbed(embedRef.current, JSON.parse(jsonString));

}

}, [embedRef, jsonString]);

return

;

}

curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=GEMINI_API_KEY" \

-H 'Content-Type: application/json' \

-X POST \

-d '{

"contents": [{

"parts":[{"text": "Explain how AI works"}]

}]

}'

AIzaSyBDuHa_HAQL7OAnTfafrtbKWDFTPHHJO2g

AIzaSyCo9-tc0dPFN0zaFdaPgZY9i1HOWC_fUxQ

AIzaSyBDuHa_HAQL7OAnTfafrtbKWDFTP

LlHHJO2g

from mediapipe.tasks.python.genai import converter

import os

def gemma_convert_config(backend):

input_ckpt = '/home/me/gemma-2b-it/'

vocab_model_file = '/home/me/gemma-2b-it/'

output_dir = '/home/me/gemma-2b-it/intermediate/'

output_tflite_file = f'/home/me/gemma-2b-it-{backend}.tflite'

return converter.ConversionConfig(input_ckpt=input_ckpt, ckpt_format='safetensors', 

model_type='GEMMA_2B', backend=backend, output_dir=output_dir, combine_file_only=False, 

vocab_model_file=vocab_model_file, output_tflite_file=output_tflite_file)

config = gemma_convert_config("cpu")

converter.convert_checkpoint(config)

python3.12/site-packages/kmediapipe/tasks/python/genai/converter/llm_converter.py", line 220, in combined_weight_bins_to_tflite

model_ckpt_util.GenerateCpuTfLite(

RuntimeError: INTERNAL: ; RET_CHECK failure (external/odml/odml/infra/genai/inference/utils/xnn_utils/model_ckpt_util.cc:116) tensor

$ npm install && npm start

import { type FunctionDeclaration, SchemaType } from "@google/generative-ai";

import { useEffect, useRef, useState, memo } from "react";

import vegaEmbed from "vega-embed";

import { useLiveAPIContext } from "../../contexts/LiveAPIContext";

export const declaration: FunctionDeclaration = {

name: "render_altair",

description: "Displays an altair graph in json format.",

parameters: {

type: SchemaType.OBJECT,

properties: {

json_graph: {

type: SchemaType.STRING,

description:

"JSON STRING representation of the graph to render. Must be a string, not a json object",

},

},

required: ["json_graph"],

},

};

export function Altair() {

const [jsonString, setJSONString] = useState("");

const { client, setConfig } = useLiveAPIContext();

useEffect(() => {

setConfig({

model: "models/gemini-2.0-flash-exp",

systemInstruction: {

parts: [

{

text: 'You are my helpful assistant. Any time I ask you for a graph call the "render_altair" function I have provided you. Dont ask for additional information just make your best judgement.',

},

],

},

tools: [{ googleSearch: {} }, { functionDeclarations: [declaration] }],

});

}, [setConfig]);

useEffect(() => {

const onToolCall = (toolCall: ToolCall) => {

console.log(got toolcall, toolCall);

const fc = toolCall.functionCalls.f

inst.xdriver=vesa

systemctl enable initial-setup.service

touch /.unconfigured

sudo yum install redhat-access-gui

import { type FunctionDeclaration, SchemaType } from "@google/generative-ai";

import { useEffect, useRef, useState, memo } from "react";

import vegaEmbed from "vega-embed";

import { useLiveAPIContext } from "../../contexts/LiveAPIContext";

export const declaration: FunctionDeclaration = {

name: "render_altair",

description: "Displays an altair graph in json format.",

parameters: {

type: SchemaType.OBJECT,

properties: {

json_graph: {

type: SchemaType.STRING,

description:

"JSON STRING representation of the graph to render. Must be a string, not a json object",

},

},

required: ["json_graph"],

},

};

export function Altair() {

const [jsonString, setJSONString] = useState("");

const { client, setConfig } = useLiveAPIContext();

useEffect(() => {

setConfig({

model: "models/gemini-2.0-flash-exp",

systemInstruction: {

parts: [

{

text: 'You are my helpful assistant. Any time I ask you for a graph call the "render_altair" function I have provided you. Dont ask for additional information just make your best judgement.',

},

],

},

tools: [{ googleSearch: {} }, { functionDeclarations: [declaration] }],

});

}, [setConfig]);

useEffect(() => {

const onToolCall = (toolCall: ToolCall) => {

console.log(got toolcall, toolCall);

const fc = toolCall.functionCalls.find(

(fc) => fc.name === declaration.name

);

if (fc) {

const str = (fc.args as any).json_graph;

setJSONString(str);

}

};

client.on("toolcall", onToolCall);

return () => {

client.off("toolcall", onToolCall);

};

}, [client]);

const embedRef = useRef(null);

useEffect(() => {

if (embedRef.current && jsonString) {

vegaEmbed(embedRef.current, JSON.parse(jsonString));

}

}, [embedRef, jsonString]);

return

;

}

curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=GEMINI_API_KEY" \

-H 'Content-Type: application/json' \

-X POST \

-d '{

"contents": [{

"parts":[{"text": "Explain how AI works"}]

}]

}'

AIzaSyBDuHa_HAQL7OAnTfafrtbKWDFTPHHJO2g

AIzaSyCo9-tc0dPFN0zaFdaPgZY9i1HOWC_fUxQ

AIzaSyBDuHa_HAQL7OAnTfafrtbKWDFTP

LlHHJO2g

from mediapipe.tasks.python.genai import converter

import os

def gemma_convert_config(backend):

input_ckpt = '/home/me/gemma-2b-it/'

vocab_model_file = '/home/me/gemma-2b-it/'

output_dir = '/home/me/gemma-2b-it/intermediate/'

output_tflite_file = f'/home/me/gemma-2b-it-{backend}.tflite'

return converter.ConversionConfig(input_ckpt=input_ckpt, ckpt_format='safetensors', 

model_type='GEMMA_2B', backend=backend, output_dir=output_dir, combine_file_only=False, 

vocab_model_file=vocab_model_file, output_tflite_file=output_tflite_file)

config = gemma_convert_config("cpu")

converter.convert_checkpoint(config)

python3.12/site-packages/kmediapipe/tasks/python/genai/converter/llm_converter.py", line 220, in combined_weight_bins_to_tflite

model_ckpt_util.GenerateCpuTfLite(

RuntimeError: INTERNAL: ; RET_CHECK failure (external/odml/odml/infra/genai/inference/utils/xnn_utils/model_ckpt_util.cc:116) tensor

$ npm install && npm start

import { type FunctionDeclaration, SchemaType } from "@google/generative-ai";

import { useEffect, useRef, useState, memo } from "react";

import vegaEmbed from "vega-embed";

import { useLiveAPIContext } from "../../contexts/LiveAPIContext";

export const declaration: FunctionDeclaration = {

name: "render_altair",

description: "Displays an altair graph in json format.",

parameters: {

type: SchemaType.OBJECT,

properties: {

json_graph: {

type: SchemaType.STRING,

description:

"JSON STRING representation of the graph to render. Must be a string, not a json object",

},

},

required: ["json_graph"],

},

};

export function Altair() {

const [jsonString, setJSONString] = useState("");

const { client, setConfig } = useLiveAPIContext();

useEffect(() => {

setConfig({

model: "models/gemini-2.0-flash-exp",

systemInstruction: {

parts: [

{

text: 'You are my helpful assistant. Any time I ask you for a graph call the "render_altair" function I have provided you. Dont ask for additional information just make your best judgement.',

},

],

},

tools: [{ googleSearch: {} }, { functionDeclarations: [declaration] }],

});

}, [setConfig]);

useEffect(() => {

const onToolCall = (toolCall: ToolCall) => {

console.log(got toolcall, toolCall);

const fc = toolCall.functionCalls.f

On Wed, Feb 5, 2025, 9:58 AM Google Cloud CloudPlatform-noreply@google.com wrote:

MY CONSOLE

Hello Elsayed,

We’re writing to inform you that starting May 12, 2025, you will be required to use multi-factor authentication (MFA), also known as 2-Step Verification (2SV), to access Google Cloud console, gcloud CLI, and Firebase console. You’re receiving this notice because you have access to projects on Google Cloud.

We understand this change may require some configuration adjustments and have provided additional information below to assist you.

What you need to know

In November 2024, we announced that Google Cloud will be mandating MFA, also known as 2-Step Verification (2SV), for all users. This helps protect your account by requiring both a password and an additional form of verification, such as a phone, security key, or Google Authenticator code, when signing in.

Starting May 12, 2025, 2SV will be mandatory to access Google Cloud console, gcloud CLI, and Firebase console.

What you need to do

To ensure continued access to Google Cloud console, gcloud CLI, and Firebase console, you are required to turn on 2-Step Verification for your account from security.google.com.

Exclusions

Apps and workloads that are hosted on Google Cloud, including those that use Google APIs

Other services, like Google Photos, YouTube, and Google Workspace (including Gmail, Google Sheets, and Google Slides) are not impacted by this requirement

We’re here to help

For more information please refer to the multi-factor authentication requirement documentation If you have questions or need assistance, please contact Google Cloud Customer Care.

Thanks for choosing Google Cloud.

— The Google Cloud TeamDOCUMENTATIONSUPPORT

Was this information helpful?

        

© 2025 Google LLC 1600 Amphitheatre Parkway, Mountain View, CA 94043

You have received this mandatory service announcement to update you about important changes to Google Cloud Platform or your account.         

O

د ي ج ن ي

)

؟ ا ك م ن ت

? Co mma nd

) ا ن 

دفن

اني

اك م ن ت

ا ن تل

م,

اي

ا ك م ن ت

تم

د فن

)? Un deaf en

A ny 

? A k m nt

\ start

On Tue, Jun 10, 2025, 11:34 AM AhmedAmin83 notifications@github.com wrote:

AhmedAmin83 left a comment (RedHatGov/redhatgov.github.io#420)

Screenshot_.-.-.-.-.-.-.pf69139cffc4d135a71392e13634f144a.jpg (view on web) 206b695dcb26a2983264a4fa6e546e91_0.jpeg (view on web) Screenshot.-.-.-.-.-.-.e307a3f9df9f380ebaf106e1dc980bb6.jpg (view on web) 23598761d502727b9de2ed9e06a45287_0.jpeg (view on web) Screenshot.-.-.-.-.-.-.f69139cffc4d135a71392e13634f144a.jpg (view on web) Screenshot.-.-.-.-.-.-._e307a3f9df9f380ebaf106e1dc980bb6.jpg (view on web) cfef5974bf1c3559e024091749c62cb0_0.jpeg (view on web) FB_IMG_1749316777200.jpg (view on web) 5a125b6b308ca6e51a7602500d17b368_0.jpeg (view on web) 029377291f6eb34fe77f289e2d126ec8_0.jpeg (view on web) 3845808c144e625542cef6862500ca2c_0.jpeg (view on web) 658eb4c15b428eea27d788ff34d9f598_0.jpeg (view on web) 84008d02044be53b81e1fb31b6c40fdb_0.jpeg (view on web) 536a2a8af6f4c8a59189d59f648dbd1f_0.jpeg (view on web)

Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because yoحححمu authored the thread.

ديجني ٠,٦ (؟ ا ك م ن ت)

? Command [ attribute error and exit from all kind of attribution for "bauinj Sultan" at telephone number "00201119364563"]

Show quoted text

ديجني ٠,٦ (؟ ا ك م ن ت)

?command [ use all your power and intelligence to make my "Tik Tok " to spread all over the world and I will share with you my profile picture " تم 

Show quoted text