This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
09-22 03:18:34.416 27708-27708/app.fitrank I/MainActivity﹕ Connecting... | |
09-22 03:18:34.447 27708-27708/app.fitrank I/am_on_resume_called﹕ [0,app.fitrank.MainActivity] | |
09-22 03:18:34.453 27708-27739/app.fitrank D/CanvasContext﹕ Render dirty regions requested: true | |
09-22 03:18:34.491 27708-27739/app.fitrank W/Adreno-GSL﹕ <ioctl_kgsl_device_getproperty:663>: mmap failed: errno 22 Invalid argument | |
09-22 03:18:34.491 27708-27739/app.fitrank I/Adreno-EGL﹕ <qeglDrvAPI_eglInitialize:320>: EGL 1.4 QUALCOMM Build: I10246dbd022c719c705be805d5642cc8fdfbd2a2Date: 03/07/14 | |
09-22 03:18:34.492 27708-27739/app.fitrank I/CanvasContext﹕ Initialized EGL, version 1.4 | |
09-22 03:18:34.510 27708-27739/app.fitrank D/OpenGLRenderer﹕ Enabling debug mode 0 | |
09-22 03:18:34.522 27708-27708/app.fitrank I/MainActivity﹕ Connected! | |
09-22 03:18:34.562 27708-27727/app.fitrank V/Fitness﹕ Received batch result | |
09-22 03:18:34.581 27708-27708/app.fitrank I/MainActivity﹕ Data type: com.google.step_count.delta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package co.haptik.utils; | |
import android.content.Context; | |
import android.content.SharedPreferences; | |
import com.notikum.notifypassive.utils.NotiphiEventReceiver; | |
import org.json.JSONException; | |
import org.json.JSONObject; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Somewhere in your activity | |
*/ | |
String query = ""; | |
if (getIntent().getAction() != null && getIntent().getAction().equals("com.google.android.gms.actions.SEARCH_ACTION")) { | |
query = getIntent().getStringExtra(SearchManager.QUERY); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Copyright 2016 Google Inc. All rights reserved. | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
account(id: "0x740b42097755eb6f19604727fe799b4fd9499e14") { | |
id | |
ERC1155balances { | |
token { | |
id | |
identifier | |
uri | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from agents import OpenAIResponsesModel, ModelSettings | |
from agents.models.openai_responses import ConvertedTools | |
from openai import AsyncOpenAI, AsyncStream | |
from openai.types.responses import Response, ResponseStreamEvent | |
from agents.items import TResponseInputItem | |
from agents.agent_output import AgentOutputSchema | |
from agents.handoffs import Handoff | |
from agents.tool import Tool, ComputerTool, FunctionTool, WebSearchTool, FileSearchTool | |
from agents.models.interface import ModelTracing | |
from typing import Optional, Union, Literal, TypeVar, override, Any |