Had the same trouble. This link fixed it for me: https://forreststonesolutions.com/robots/
**You will find the solution you are looking for in the link below. **
https://github.com/alirizagurtas/powershell-project-backup-archiver
did you figure this out, facing a similar issue with google workspace add ons (I'm a newb)
While setting whis=99
to include all samples, how do I use whiskers to present 10%-90% range instead of the min and max values?
Do you have an openly available example repository to reproduce this on? In my experience, syft works well with package.json (not sure if I tried it with package.lock). However, note that syft by default does not include development dependencies. That was one pitfall I encountered. There is a configuration variable for toggling that behaviour, if you need it.
Doesn't look like a bot token. Please send me a token of your bot. It should look like this:
123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11
May be you could just drag those apart-positioned window in android studio form and connect/drop to some edge of inner side in it?
Trying this but not getting the same error. I am facing something different.
Check my code in github with a working example: https://github.com/wolfdev1337/nextjs-socketio
Claro, aquí tienes una mejor redacción:
“Una solución es simplemente ejecutar el servidor con:
php artisan serve --host=0.0.0.0 --port=8001
Luego, consumir la API utilizando la dirección IP local (IPv4) que obtienes ejecutando el comando ipconfig
.”
If you're trying to clear HSTS settings for localhost
in Chrome, this guide explains it step by step using
https://aspdotnetpb.blogspot.com/2024/11/how-to-use-chromenet-internalshsts-to.html
It helped me fix issues with Chrome forcing HTTPS on local projects.
did you solve it?. I am facing the same issue
file:///private/var/mobile/Library/Mobile%20Documents/com~apple~CloudDocs/Downloads/%D0%BD%D0%BE%D0%B2%D0%B0%D1%8F%20%D0%BF%D0%B0%D0%BF%D0%BA%D0%B0/%D0%9C%D0%BE%D0%B9_%D0%BD%D0%BE%D0%B2%D1%8B%D0%B9_%D0%BC%D0%B8%D1%80_Zulya_%D0%B5%D0%B6%D0%B5%D0%B4%D0%BD%D0%B5%D0%B2%D0%BD%D0%B8%D0%BA.docx%204.download
I have the same problem. .... .
Does anybody have an update on the future of using VS Code for Office Scripts?
Do we know why Microsoft pulled their support? If they aren't interested in supporting Office Scripts, I am reluctant to use it....
That package supports Handlebars a11y: https://www.npmjs.com/package/ember-template-lint
Have you checked your extensions or tried using Incognito Mode?
I know this is way old, but I got here via a search. Stop an app by deleting the <project>-anchor.txt
file in the <AnypointStudio path>\plugins\org.mule.tooling.server.<your server version>\mule\apps
folder.
First, thanks for that.
Second did you manage to do this?
"you can enable the mule run time in preferences tab of anypoint studio.
That is easiest way to stop specific applications on anypoint studio"?
Is your Apache vhost appropriately mapped and confiigured for OpenProject? Can you provide the conf details?
This is actually a question. How can the technique of using MapViewOfFileEx to map at a particular address be safely used? From my tests, admittedly limited, the memory address in question has to be free. What’s to stop another thread from scooping up the virtual addresses?
I was trying to resolve this one, but there are problems. Have a look at this code snippet:
#include <stdio.h>
#include <stdlib.h>
#include <xcb/xcb.h>
#include <xcb/shm.h>
#include <xcb/xcb_image.h>
#include <sys/shm.h> // shmget
#include <unistd.h> // usleep
#include <inttypes.h> // PRIu8
#include <wchar.h> // wmemset
int main(void) {
xcb_connection_t *c;
xcb_screen_t *s;
xcb_window_t w;
xcb_gcontext_t g;
xcb_generic_event_t *e;
uint32_t mask;
uint32_t values[2];
int done = 0;
xcb_rectangle_t r = { 20, 20, 160, 160 };
int ww= 600, wh = 400, wx = 800, wy = 500;
xcb_rectangle_t wr = { 0, 0, 800, 600 };
c = xcb_connect(NULL,NULL);
if (xcb_connection_has_error(c)) {
printf("Cannot open display\n");
exit(EXIT_FAILURE);
}
const xcb_setup_t* setup = xcb_get_setup(c);
s = xcb_setup_roots_iterator( setup ).data;
// create black graphics context
g = xcb_generate_id(c);
w = s->root;
mask = XCB_GC_FOREGROUND | XCB_GC_GRAPHICS_EXPOSURES;
values[0] = s->white_pixel;
values[1] = 0;
xcb_create_gc(c, g, w, mask, values);
// create window
w = xcb_generate_id(c);
mask = XCB_CW_BACK_PIXEL | XCB_CW_EVENT_MASK;
values[0] = s->black_pixel;
values[1] = XCB_EVENT_MASK_EXPOSURE | XCB_EVENT_MASK_KEY_PRESS;
xcb_create_window(c, s->root_depth, w, s->root,
(s->width_in_pixels / 2) - (600 / 2),
(s->height_in_pixels / 2) - (400 / 2), 600, 400, 10,
XCB_WINDOW_CLASS_INPUT_OUTPUT, s->root_visual,
mask, values);
xcb_map_window(c, w);
// An attempt in mask preparation
xcb_pixmap_t cm1 = xcb_generate_id( c );
xcb_create_pixmap (c, 1, cm1, w, ww, wh); // depth = 1
// xcb_gcontext_t gm1 = xcb_generate_id(c); // <- 3
// mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND;
// values[0] = s->white_pixel;
// values[1] = s->black_pixel;
// xcb_create_gc(c, gm1, cm1, mask, values);
// The buffer where all the drawing shall be done
xcb_pixmap_t pix = xcb_generate_id( c );
xcb_create_pixmap (c, s->root_depth, pix, w, ww, wh);
xcb_gcontext_t fill = xcb_generate_id(c);
mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND | XCB_GC_CLIP_MASK;
values[0] = 0xdc143c;
values[1] = s->black_pixel;
values[2] = XCB_NONE; // <- 2
xcb_create_gc(c, fill, pix, mask, values);
// xcb_change_gc(c, fill, XCB_GC_CLIP_MASK, (uint32_t[]){ cm1 }); // <- 1
// xcb_clear_area(c, 1, cm1, 0, 0, ww, wh);
xcb_flush(c);
// event loop
int dx = 1, dy = 1;
xcb_get_geometry_cookie_t geom;
xcb_get_geometry_reply_t *geo;
int gg = 0;
geom = xcb_get_geometry(c, w);
geo = xcb_get_geometry_reply(c, geom, NULL);
ww = geo->width; wh = geo->height;
free(geo);
xcb_expose_event_t *ex_event;
while (!done) {
usleep(10000); // Around 100 FPS
if (r.x + r.width == ww)
dx = -1;
else if (r.x == 0)
dx = 1;
if (r.y + r.height == wh)
dy = -1;
else if (r.y == 0)
dy = 1;
r.x += dx;
r.y += dy;
// The above is just for moving the rectangle around
e = xcb_poll_for_event(c);
// Below: paint background, rectangle - and render it all
xcb_change_gc(c, fill, XCB_GC_FOREGROUND, (uint32_t[]){ 0x000000FF });
xcb_poly_fill_rectangle(c, pix, fill, 1, &wr);
xcb_change_gc(c, fill, XCB_GC_FOREGROUND, (uint32_t[]){ 0xdc143c });
xcb_poly_fill_rectangle(c, pix, fill, 1, &r);
xcb_copy_area(c, pix, w, g, 0, 0, 0, 0, ww, wh);
xcb_flush(c);
// printf("Flushed "); // <- 4
if (e) {
switch (e->response_type & ~0x80) {
case 0:
puts("Unfortunately, a request had no reply");
break;
case XCB_DESTROY_NOTIFY:
puts("Destruction!");
break;
case XCB_EXPOSE:
xcb_flush(c);
break;
case XCB_KEY_PRESS: // exit on key press
done = 1;
break;
case XCB_CLIENT_MESSAGE:
done = 1;
break;
default:
printf("Unrecognized event %"PRIu8"\n", e->response_type);
break;
}
}
free(e);
}
xcb_free_pixmap(c, cm1);
xcb_free_pixmap(c, pix);
xcb_disconnect(c);
exit(EXIT_SUCCESS);
}
Now if you run it „as is” you'll see the red rectangle moving around on a blue background (that's why I'm polling for events). Then I'd like to use just any mask simply to find out, how it is supposed to work. The scarce docs say that the mask can be attached to pixmap on creation time, or it can be done later using xcb_change_bc.
From what I see, either the docs are wrong, or I'm doing something wrong (or maybe there's a bug in XCB?) — because these methods aren't equivalent. You can test it by either removing the comment from the beginning of the line marked with „<- 1”, or by adding a parameter (instead of XCB_NONE) in the line marked with „<- 2”. In the latter case you'll notice plenty of „Unfortunately, a request had no reply” notices in your console, and the window becomes very unresponsive (cannot be closed with a keypress instantly, one has to wait quite a few seconds) — obviously something goes very wrong in that case.
By uncommenting the line marked with „<- 1” it looks somewhat better — there's no more that plenty of annoying messages — still there's also no more moving rectangle. Indeed in fact I didn't prepare proper black-and-white mask of depth 1 (just the uninitialized pixmap of that depth), still the created pixmap means allocating some memory area, where plenty of zero and non-zero values are present, so I could expect the moving picture like before, but looking like there was some raster imposed over it (some pixels visible, most of them not). Although indeed the image got spoiled in kind of that way, there are two unexpected effects in addition:
I can see (on my screen) a few green dots in addition — IMHO I shouldn't see there any other colour but blue and red.
There's no more movement of the rectangle! Somehow it got stuck now. Why? The loop doing recalculation and flushing seems to be still circling around, which can be verified by uncommenting the line marked with „<- 4”.
I was also trying to add the „context” to that mask and use it later also to paint it black and white (see the commented out block marked with „<- 3”), but somehow it didn't help neither. Unfortunately, there's no proper docs for XCB (since more than 20 years of its development), neither any decent tutorials (nor code snippets featuring that transparency thing, that one could google for).
Anyone could paste a „working example” that could be used to learn how in XCB actually we can take advantage out of transparency using masks — and how the masks are properly created and used? The suggestions I'm writing under, are vague.
Thanks in advance! :)
So, enron is saying that the parkers are striving to make peace and order for a place in dc to make a cake walk for jimmy carter carver buren and parker. In retrospect, one can believe that the ideas of law and order is that of obedience. Who says anything else by law and creation. For manifest destiny is of alignment of laws created by man to creat obdedience, the new order. Who cares about the ideas of society, for the fullfillment of the statistics of the status quo oif questions is that of condition. Can we be at peace with our seleves, that we shall not be enslaved by man but by our souls alone?
I am also facing the same issue. I am having selector.select() inside while loop and it is using high CPU. What can be done to reduce the CPU
ASSOCIATE STATISTICS WITH FUNCTIONS card_varchar2 USING card_varchar2_ot;
This command works under SYS user only, for any other user I got error "Component must be declared". Can anyone tell me what this is related to?
Yeah i need same question, thankyou bro
Hi ninthbit,
Thank you very much for your feedback — it was really helpful to me.
I still need some clarification about creating multiple feature reports under different IDs.
I didn’t quite understand what you meant by: “each report to be written on top of the feature_report file separately.”
Could you please share a snapshot of your implementation with us?
Thank you for your time.
This answer assumes that you are somehow familiar with GNU Gettext but you have problems in the integration in PHP.
https://www.php.net/manual/en/function.gettext.php
These rules saved me 2 days of troubleshooting:
LC_ALL
to the very same language directory.LC_ALL=it_IT.utf8
if you have /var/www/myproject/locale/it_IT.utf8/LC_MESSAGES/com.myproject.mo
textdomain()
as the very same .mo
basename..mo
is named com.myproject.mo
the domain is com.myproject
it_IT.utf8
is available in your system.locale -a
to check it.LANGUAGE
since it may take precedence over LC_ALL
strace
to understand what .mo
files PHP is opening.Adopt this filesystem structure:
/var/www/myproject/locale/com.myproject.pot
/var/www/myproject/locale/it_IT.utf8
/var/www/myproject/locale/it_IT.utf8/LC_MESSAGES
/var/www/myproject/locale/it_IT.utf8/LC_MESSAGES/com.myproject.mo
/var/www/myproject/locale/it_IT.utf8/LC_MESSAGES/com.myproject.po
The important part is the location of the .mo
binary files.
Glossary:
/var/www/myproject/locale
com.myproject
it_IT.utf8
Note for newcomers: if you don't know how to generate the .mo
or .po
, read the official documentation of GNU Gettext. Look for questions like "how to generate a .po file" and "how to generate a .mo file".
.po
fileThe .po
file should contain Language: it_IT
(without utf8) and the GNU Gettext domain. Minimal example:
msgid ""
msgstr ""
"Project-Id-Version: com.myproject\n"
"Language: it_IT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: template/header.php:20
msgid "Italy"
msgstr "Italia"
...
Important: do not create the .po
manually. Read "how to generate a .po file with GNU Gettext" (msgmerge).
Important: if you change a .po
file, always re-generate the related .mo
files (msgfmt).
Important: if your .mo
files change, you may need to restart your webserver since GNU Gettext has aggressive cache in PHP. This is good for your performance but not good for testing. There are workarounds for this (e.g. a special 'nocache' symlink) but it's a bit off-topic.
Use locale -a
to check if the list of your available locales contains the expected ones (like it_IT.utf8
). Example output:
C
C.utf8
en_US.utf8
it_IT.utf8
POSIX
If one of your language is not in this list, you must install it in your system first, for example in this way in Debian or Ubuntu:
sudo dpkg-reconfigure locales
Look for related questions about "How to reconfigure locales in Debian" or whatever you are using, if the above command does not work for you.
Create a simple function that activates a language:
<?php
// GNU Gettext domain.
define('LOCALE_DOMAIN', 'com.myproject');
// GNU Gettext locale pathname, containing languages.
define('LOCALE_PATH', '/var/www/project/locale');
/**
* Apply the desired language.
*
* @param $lang string Language, like 'it_IT.utf8' or 'C' for native texts.
*/
function apply_language(string $lang): void
{
// Unset this env since this may override other env variables.
putenv("LANGUAGE=");
// Set the current language.
// In some systems, setlocale() is not enough.
// https://www.php.net/manual/en/function.gettext.php
putenv("LC_ALL=$lang");
setlocale(LC_ALL, $lang);
// The 'C' language is quite special and means "source code".
// You can stop here to save some resources.
if ($lang === 'C') {
return;
}
// Set the location of GNU Gettext '.mo' files.
// This directory should contain something like:
// /locale/it_IT.utf8/LC_MESSAGES/$domain.mo
bindtextdomain(LOCALE_DOMAIN, LOCALE_PATH);
// Set the default GNU Gettext project domain and charset.
bind_textdomain_codeset(LOCALE_DOMAIN, 'UTF-8');
// Set the GNU Gettext domain.
textdomain(LOCALE_DOMAIN);
}
Then try everything:
...
// Set desired language.
apply_language('it_IT.utf8');
// Try language.
echo gettext('Italy');
Expected output:
Italia
Note: as already said, at this point note that .mo
files are aggressively cached. Consider adding the "nocache" solution from the other solution in this page, that is a very nice trick to refresh the cache.
Note: the function _('Italy')
is a short alias for gettext('Italy')
.
If you still does not see anything translated, prepare a minimal example like example.php
with minimal GNU Gettext tests and run it like this from your command line:
strace -y -e trace=open,openat,close,read,write,connect,accept php example.php
In this way you can see the .mo
files that are opened by PHP.
Example output line:
openat(AT_FDCWD</home/user/projects/exampleproject>, "/home/user/projects/exampleproject/locale/it_IT.utf8/LC_MESSAGES/org.refund4freedom.mo", O_RDONLY) ...
As you can see the strace
command is very powerful to detect what's happening. So you can detect if a configuration is wrong.
If you have not fixed with this answer, please share more details about your structure, your code, and share strace
output from a minimal PHP file.
solved after restating my mobile device
Try torch.einsum. It is vectorized. Uses https://en.wikipedia.org/wiki/Einstein_notation.
If the error originates from Heroku logs it is most likely that you hard coded a path to the directory in your code( Because heroku does not have a directory as /C:/Windows/TEMP
in deployment).
Otherwise please share the code so we can help trace where the error originates :)
-----------------------
this is right ,thanks for @Swechchha
I have the same issue but when there is a value in the json comes with a null, any answers ?
I'm getting same problem on CI/CD pipeline, and it does not occur on local. have you got the solution of this problem, if yes please post the cause of this.
yeah I am achieving this by upload the woff file of the font on the blob and @font-face i import to my css and use it and it works
none of these solutions work for me.
xcode-select --install
fails due to a server error. Another comment on this thread mentions it's not available from the server. I am on macos 14.6.1, so I downloaded xcode 15.3 manually from apple.developer.com. It installed correctly, but I still get the same errors:
xcode-select: error: invalid developer directory '/Library/Developer/CommandLineTools'
Failed during: /usr/bin/sudo /usr/bin/xcode-select --switch /Library/Developer/CommandLineTools
I simply want to install homebrew so I can install Wine. Any advice would be great. Thanks
edit: I also added the folder
CommandLineTools
to the developer folder:
Library/Developer/CommandLineTools
and found no success when installing homebrew.
I have the same issue resolved by setting none value of storekit configuration in scheme. It seems that sandbox item was overlaid by local .storekit file.
Product->scheme->edit scheme->run->options->storekit configuration.
this post may be very old. but can you tell me how you added this user_friends permission to the SDK?. Currently the user_friends permission in the app has the status "Ready for Testing". But when calling the SDK, the access token still does not have the user_friends permission. I don't know if I missed any steps. Looking forward to your feedback.
I had a similar situation, and I found the accepted answer in the link shared by chb to work like a charm:
How to parse MySQL built-code from within Python?
Isso acontece porque get_ticks
não é um método direto do pygame
, mas você pode acessar esse método com pygame.time
, escrevendo:
import pygame as p
start_ticks = p.time.get_ticks()
I have some funny username ideas you need to look
Follow this guideline and it should fix your issue https://docs.flutter.dev/release/breaking-changes/flutter-gradle-plugin-apply
it doesn't matter what I type, python3 or python, it gives me the same message "Python was not found; run without arguments to install from the Microsoft Store, or disable this shortcut from Settings > Manage App Execution Aliases." What do I do?
It's been a long time since these posts, but it's the only thing I have found online that comes close to my question:
Using the "Save Image" tool on google earth pro the Legend is only recognizing 1 of 3 polygons I have on the screen. They each have their own outline color, but no shading (I need the map to show the image below). The problem is that on the "Places" side bar all three polygons show up as white, so the legend only recognizes one (I assume). Why is the sidebar not reflecting the actual color? How do I fix this? I am adding a screenshot for clarity. TIA!
Carla
Have you checked if there is any class imblance within the dataset?
@michael-kay, do you have any planned date to release SaxonJ 13 ?
enter image description hereClick the dropdown below 'Project' at the top left and select 'Project' view instead of 'Android' to see the full Flutter project structure.
enter image description hereResolved!
Do you find a solution for this problem?
������ ����!
�� �������� ������ �� ���� (��������)
��� �901��977 ����� ��������� ���������� ���89251913410 ������� 4614 757947 ����� ��?6 ������������ ����� ������ �� ���������� ���. � ��������� ��������� ������� 22.01.2015
It is requested to please if I can be helped to reinstall VKApp in my device .An easy and early action she'll be highly appreciated.Thanks in anticipation.I am sorry that is difficult for me to do it.I am using Android phone and not an iPhone.
Have you figured this issue out? I am currently experiencing the same problem and need some assistance.
Hello did you find any answers please?
@Jorj X. McKie : Please share your view on this, how can i get all such components extracted from pdf - specially table lines, table cell colour which is present in background of text and how can i recreated the new pdf using extracted features.
can i use this with my phone hehe
I am having the same issue in april 2025. It's been like that for a few days. Resetting my internet, updating expo-cli, making sure I'm logged in, nothing seems to work. Any new discoveries on what might be causing this issue?
@Monkey your link is dead. Can you fix it?
also, it is giving below error
ORA-39112: Dependent object type INDEX
ORA-39112: Dependent object type CONSTRAINT
what is the solution for the above ORA error ?
I know this is along shot, but by any chance, did you find a solution?
I changed node_modules/expo-router/build/getLinkingConfig.js line 65 to
screens: config?.screens ?? options?.screens ?? {},
enter image description here added this image, it might help
Really thankX!!!!! This one worked!!!
Is anyone at Intel wondering why so many users want to go back to the non-Intel-updated version of icc? And thanks for not bringing up LLVM again...
Best regards.
That's a very good link. But it is not directly relevant to your situation. Have you been able to get "Hello world" to cross compile and run on Ubuntu? (Without having Visual Studio Code involved at all.)
–
CAN ANYONE HELP PLEASE.
I'm getting issue with geolocation_android in my build.gradle(android)
I have added
build.gradle(android),build.gradle(app),local.properties,gradle-wrapper.properties and pubspec.yaml.
Solve the following error:
[{
"resource": "/c:/Users/shiva/wetoucart_seller/android/build.gradle",
"owner": "_generated_diagnostic_collection_name_#7",
"code": "0",
"severity": 8,
"message": "The supplied phased action failed with an exception.\r\nA problem occurred configuring project ':geolocator_android'.\r\nFailed to notify project evaluation listener.\r\nCannot invoke method substring() on null object",
"source": "Java",
"startLineNumber": 1,
"startColumn": 1,
"endLineNumber": 1,
"endColumn": 1
}]
build.gradle(app):
plugins {
id "com.android.application"
id "kotlin-android"
id "com.google.gms.google-services"
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id "dev.flutter.flutter-gradle-plugin"
}
android {
namespace = "com.wetoucart.seller"
compileSdk = 34
ndkVersion = "25.1.8937393"
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_17
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:-options"
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.wetoucart.seller"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk 23
targetSdk = 34
versionCode = 1
versionName = 1.0
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig = signingConfigs.debug
}
}
}
flutter {
source = "../.."
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.core:core-splashscreen:1.0.1'
implementation 'androidx.annotation:annotation:1.9.0'
implementation 'androidx.multidex:multidex:2.0.1'
// Firebase dependencies
implementation platform('com.google.firebase:firebase-bom:33.5.1')
implementation 'com.google.firebase:firebase-analytics:22.1.2'
implementation 'com.google.firebase:firebase-auth:23.1.0'
implementation 'com.google.firebase:firebase-firestore:25.1.1'
implementation 'com.google.firebase:firebase-crashlytics:19.2.1'
implementation 'com.google.firebase:firebase-storage:21.0.1'
// Test dependencies
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
}
build.gradle(android):
buildscript {
repositories {
google()
mavenCentral()
maven {
url 'https://storage.googleapis.com/download.flutter.io'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.3.0'
classpath 'com.google.gms:google-services:4.4.2'
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = "../build"
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(":app")
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
local.properties:
sdk.dir=C:\\Users\\shiva\\AppData\\Local\\Android\\sdk
ndk.dir=C:\Users\shiva\AppData\Local\Android\Sdk\ndk\25.1.8937393
flutter.sdk=C:\\Users\\shiva\\flutter
flutter.buildMode=debug
flutter.versionName=1.0.0
flutter.versionCode=1
gradle-wrapper.properties:
org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
android.useAndroidX=true
android.enableJetifier=true
pubspec.yaml:
name: wetoucart_seller
description: "A new Flutter project."
# Remove this line if you wish to publish to pub.dev
publish_to: 'none'
version: 1.0.0+1
environment:
sdk: '>=3.2.3 <4.0.0'
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^1.0.2
url_launcher: ^6.0.12
image_picker: ^1.0.7
cloud_firestore: ^5.0.1
firebase_core: ^3.6.0
firebase_crashlytics: ^4.0.1
firebase_auth: ^5.3.1
firebase_storage: ^12.0.1
geolocator: ^13.0.3
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^4.0.0
matcher: ^0.12.16
material_color_utilities: ^0.11.1
meta: ^1.12.0
path: ^1.8.3
test_api: ^0.7.0
flutter:
uses-material-design: true
assets:
- assets/wetoucartseller.png
- assets/storeprofile.png
- assets/sellerback.jpg
Solution for geolocation_android
enter image description heresupplement
Can someone help me please,
I want to show all markers with the keyword " hospital" for example on launch activity my map should zoom to my location and show all the hospitals in that area
how can I get that ?
private void fetchLocation() {
if (ActivityCompat.checkSelfPermission(
this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(
this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, REQUEST_CODE);
return;
}
Task<Location> task = fusedLocationProviderClient.getLastLocation();
task.addOnSuccessListener(location -> {
if (location != null) {
currentLocation = location;
Toast.makeText(getApplicationContext(), currentLocation.getLatitude() + "" + currentLocation.getLongitude(), Toast.LENGTH_SHORT).show();
SupportMapFragment supportMapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.myMap);
assert supportMapFragment != null;
supportMapFragment.getMapAsync(MosqueActivity.this);
}
});
}
@Override
public void onMapReady(GoogleMap googleMap) {
LatLng latLng = new LatLng(currentLocation.getLatitude(), currentLocation.getLongitude());
MarkerOptions markerOptions = new MarkerOptions().position(latLng).title("Your Location");
googleMap.animateCamera(CameraUpdateFactory.newLatLng(latLng));
googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng, 12));
googleMap.addMarker(markerOptions);
}
Just try following the steps written in the documentation. It really helped me.
i have searched alot and find that you should be with the backend or you should have access at the system files ( will not happen ), so do you find anything else ?
Did you to solve the problem? I encountered the same error
sdfghjkjhgfdsfghjhgfdfghyjuyhgtrfdeerfgthyygt
I disabled all the breakpoints and ran again. It worked. Thanks to SpringBoot app takes ages to start in debug mode only
thank you Henil Patel your code works
So, a question related to this. How do I dynamically create an instance of an object that is 1 of many that implement an interface? For example, in the example above, say there are 3 types of user, but I only want to create an instance of 1 of them at any given moment. I suppose you could put each of them in their own class or method and call the appropriate class/method, but that adds an extra unneeded level of abstraction. Thanks in advance.
If someone still needs answer to this question, they can check here:
https://en.delphipraxis.net/topic/13012-tbutton-change-font-color
If I replace this line of code in your second script, it works.
timesteps, nx, ny = hraw.shape
With random data, because we don’t know how you load the h raw and uraw.
timesteps, nx, ny = 174, 200, 50
hraw = np.random.rand(timesteps, nx, ny) # Example-horizontal data
uraw = np.random.rand(timesteps, nx, ny) # Example-speed data
Does this not look like what you are searching for, or please explain your target. How do you load your data?
i am also trying if you get any solution of it . share to mee also it's my final year project that why i also dont get this permissions .
from fpdf import FPDF
import os
from PIL import Image
class PDF(FPDF):
def header(self):
self.set_font("Arial", 'B', 16)
# Aquí podrías agregar un logo o algo más si deseas
def chapter_title(self, title):
self.set_font("Arial", 'B', 16)
self.cell(0, 10, title, ln=True, align='C')
self.ln(5)
def chapter_body(self, body):
self.set_font("Arial", '', 12)
self.multi_cell(0, 10, body)
self.ln()
pdf = PDF(format='A4')
pdf.set_auto_page_break(auto=True, margin=15)
# Ejemplo: agregar portada
pdf.add_page()
pdf.chapter_title("Coloreando mis emociones")
# Suponiendo que tengas una imagen de portada en color en la ruta especificada
portada = "/mnt/data/tu_portada_color.png" # Asegúrate de cambiar la ruta
if os.path.exists(portada):
pdf.image(portada, x=10, y=30, w=pdf.w - 20)
pdf.ln(20)
# Agrega la dedicatoria
pdf.add_page()
pdf.chapter_title("Dedicatoria")
dedicatoria_text = (
"Para mis hijos,\n\n"
"Ustedes me enseñan cada día, me muestran un mar de emociones. "
"Un día lloramos de risa y al rato lloramos porque estamos tristes. "
"Cada momento es algo nuevo, una aventura. Nos peleamos, nos enojamos, nos abrazamos, "
"nos reconciliamos y nos amamos… Siempre, en todo momento, nos acompañamos. "
"Somos unidos, y cada uno tiene su propia personalidad y complementa al otro. "
"No somos perfectos, somos humanos y tratamos de encajar en la vida del otro."
)
pdf.chapter_body(dedicatoria_text)
# Agrega la introducción para adultos
pdf.add_page()
pdf.chapter_title("Introducción para adultos")
intro_text = (
"Este libro fue pensado con mucho cariño para acompañar a los peques en el descubrimiento de sus emociones. "
"Colorear, identificar lo que sienten, y ponerle nombre a esas sensaciones ayuda a crecer y construir vínculos más sanos. "
"Acompañar este proceso con amor y atención es fundamental. ¡Disfruten del viaje!"
)
pdf.chapter_body(intro_text)
# Continúa agregando cada sección (Guía, Presentación, cada emoción, versión abreviada, reflexión final, diploma...)
# Aquí va como ejemplo la Guía y la Presentación
pdf.add_page()
pdf.chapter_title("¿Cómo usar este libro?")
guia_text = (
"1. Observen la ilustración y conversen sobre lo que ven.\n"
"2. Coloreen libremente, sin importar si usan los colores “reales” o de su elección.\n"
"3. Lean la frase que acompaña cada emoción y compartan lo que les inspira.\n"
"4. Resuelvan la actividad breve: e.g., “¿Qué me da miedo?”.\n"
"5. Conversen y validen lo que sienten. No existen respuestas correctas."
)
pdf.chapter_body(guia_text)
pdf.add_page()
pdf.chapter_title("¡Hola, peques!")
presentacion_text = (
"¡Hola, peques!\n\n"
"Este libro es para vos. Aquí vas a descubrir, dibujar y conocer tus emociones. "
"Cada página es tuya para colorear, imaginar y sentir. ¡Vamos a comenzar este viaje juntos!"
)
pdf.chapter_body(presentacion_text)
# Agrega más páginas según cada emoción y actividad...
# Por ejemplo:
pdf.add_page()
pdf.chapter_title("¿Qué me da miedo?")
# Agrega la imagen de la emoción
emocion_img = "/mnt/data/A_black_and_white_line_drawing_coloring_page_for_c.png" # Actualiza la ruta
if os.path.exists(emocion_img):
pdf.image(emocion_img, x=15, w=pdf.w - 30)
# Puedes agregar un texto de actividad si lo deseas
pdf.chapter_body("Colorea la imagen y después escribe o cuenta: ¿Qué te da miedo?")
# Al final, agrega la reflexión final y el diploma...
pdf.add_page()
pdf.chapter_title("Reflexión final")
reflexion_text = (
"Reconocer nuestras emociones y aprender a expresarlas no solo nos ayuda a conocernos mejor, "
"sino que también nos permite convivir en armonía con los demás. La educación emocional es una herramienta "
"valiosa en los tiempos que vivimos, una base fundamental para crecer, aprender y construir vínculos más sanos. "
"Que este libro sea una puerta abierta para descubrir ese mundo interior que habita en cada niño, en cada familia, "
"y en cada corazón."
)
pdf.chapter_body(reflexion_text)
pdf.add_page()
pdf.chapter_title("Diploma de Explorador de Emociones")
diploma_text = (
"Este diploma se otorga a: _________________________\n\n"
"Por haber recorrido este camino de emociones, reconociendo y aprendiendo a expresarlas. "
"¡Felicitaciones por dar el primer paso hacia el crecimiento personal!"
)
pdf.chapter_body(diploma_text)
# Guarda el PDF final
pdf_output_path = "/mnt/data/Explorador_de_Emociones_Maruk.pdf"
pdf.output(pdf_output_path)
print("PDF generado en:", pdf_output_path)
https://www.youtube.com/watch?v=DvnS32n6RQk
this might work, this is an yt video where he teaches in hindi
Hey got stuck in same process, can someone please explain how can I get access so that I can connect that with n8n
just drag the pop up box with your mouse to the desired position.
Can You provide your python code?
i want downgrade my XCode to 16.2 too but failed to download from apple developer website.
before the Hangup() just add a line
same => n,Playback(THANKYOUFILE)
FIS_AUTH_ERROR RN Firebase Cloud Messaging Answer work for me :
Please help me to see when is made this picture
6f527c31-bd78-4d7f-b156-a8020b0cd027.jpeg
Please help me
I got same the issue, I can launch the app by App Actions Test tool but when I publish on internal test and download by the link. I can't launch the app and catch the feature by Google Assistance voice or text. The Google Assistance always open the browser. Did you find the reason?
MIGUEEELLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL ES ESO
With Delphi 12.3, they changed their debugger from TDS-based to LLDB-based, at least in their very first 64-bit IDE version.
Maybe this will affect your success trying to debug Delphi-Code via other Tools like "VS Code".
Did anyone already tried makeing use of the last changes for Delphi debugger?
Have you found an answer here?
Why are you converting scripts from a more capable tool to a less capable tool?
Thank you José for the reply. I have tried the GluonFX 1.0.26 plugin before. It also produced errors. I tried it again. It did not work:
mvn gluonfx:build failed again.
Somebody on this forum suggested:
mvn gluonfx:compile
followed by:
mvn gluonfx:link.
This worked! Not sure why. (build = compile + link). It is probably a gluonFX bug. Thanks again for the great help.
are there any updates on this? I found this thread because I had the same question. I want to compress a video stream in YUY2 or UYVY format to, say H265. If I understand the answers given here correctly, I should be able use the function av_image_fill_arrays()
to fill the data and linesize arrays of an AVFrame object, like this:
av_image_fill_arrays(m_pFrame->data, m_pFrame->linesize, pData, ePixFmt, m_pFrame->width, m_pFrame->height, 32);
and call avcodec_send_frame()
, followed by calling avcodec_receive_packet()
to get encoded data.
I must have done something wrong. The result is not correct. For example, rather than a video with a person's face showing in the middle of the screen, I get a mostly green screen with parts of the face showing up at the lower left and lower right corners.
Can someone help me?
Thanks to @wenbo-finding-job the problem was solved by following the steps as described in the blog:
I tried it but it didn't really work. I am still facing this issue any run time validations in dto file after being build they are being removed. Is there any solution foo it ?
Does anyone know how to do this in Visual Studio 2023 (not vs code)?
I retyped the code and it fixed it somehow. Closing this
As of Apr 27 2022, you don't need custom parsing code anymore, you can set a flag to get native JSON returned! https://aws.amazon.com/about-aws/whats-new/2022/04/amazon-rds-data-api-sql-json-string/
You can connect with any kind of EVM base blockchain network by using following method
Having the same issue. Did you find a solution? Was able to clear the error by deleting the DNS IP address in Tailscale and re-entering. Will see if the error returns.
I'm facing the same issue, do you have a solution for it?