Create an app through developer platform :
https://<your-account>.app.box.com/developers/console
Then later, get the service account email from the general settings :
#include<stdio.h> | |
#include <gl/glut.h> | |
#define KEY_ESC 27 /* GLUT doesn't supply this */ | |
int fullscreen = 0; | |
int mouseDown = 0; | |
float xrot = 100.0f; | |
float yrot = -100.0f; |
<?php | |
/** | |
* @since Apr 2023 | |
* @author Haydar KULEKCI <haydarkulekci@gmail.com> | |
*/ | |
namespace App\Providers; | |
use Illuminate\Contracts\Support\DeferrableProvider; | |
use Illuminate\Support\ServiceProvider; |
// This script sets OSName variable as follows: | |
// "Windows" for all versions of Windows | |
// "MacOS" for all versions of Macintosh OS | |
// "Linux" for all versions of Linux | |
// "UNIX" for all other UNIX flavors | |
// "Unknown OS" indicates failure to detect the OS | |
var OSName="Unknown OS"; | |
if (navigator.appVersion.indexOf("Win")!=-1) OSName="Windows"; | |
if (navigator.appVersion.indexOf("Mac")!=-1) OSName="MacOS"; |
If u are getting below error while indexing:
{
"error": {
"root_cause": [
{
"type": "cluster_block_exception",
"reason": "blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];"
}
DELETE job-candidates
PUT job-candidates
{
"mappings": {
"properties": {
"name": {
"type": "keyword"
},
PUT testindex1
{
"mappings": {
"properties": {
"search": {
"properties": {
"query": {
"type": "percolator"
}
The clear, refreshing taste of tap water quenches my thirst on hot summer days.
Please make sure to filter the tap water before drinking it.
The tap in the kitchen was leaking, causing the water to drip incessantly.
After a long hike, we refilled our water bottles with tap water from the nearby fountain.
It's important to conserve tap water and use it wisely to protect our natural resources.
The tap water in this area has a slightly metallic taste, which can be off-putting to some people.
The plumber fixed the broken tap, ensuring a steady flow of water throughout the house.
My grandma always used to boil tap water before using it in cooking or drinking.
The city council implemented a new filtration system to improve the quality of tap water.
# images field type is nested
GET products/_search
{
"track_total_hits": true,
"size": 0,
"aggs": {
"counts": {
"terms": {
"script": "params['_source']['images'].size()",
import boto3 | |
def check_kinesis_stream_data(stream_name): | |
# Create a Kinesis client using your AWS credentials | |
kinesis_client = boto3.client('kinesis') | |
# Get the shard iterator for the specified stream | |
shard_response = kinesis_client.describe_stream(StreamName=stream_name) | |
shard_id = shard_response['StreamDescription']['Shards'][0]['ShardId'] | |
shard_iterator_response = kinesis_client.get_shard_iterator( |