79278239

Date: 2024-12-13 12:05:46
Score: 3.5
Natty:
Report link

try to use it with html2pdf or htmlcanvas and set all content in div at first

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Maris

79278237

Date: 2024-12-13 12:04:45
Score: 0.5
Natty:
Report link

I can't make it work. I am doing something wrong but I don't know what. I also want to use a stand-alone kasm docker behind nginx -> https://192.168.1.245:6901/ What do I have to enter in NPM (nginx)?

This is not working:

location / {
    proxy_pass https://192.168.1.245:6901;
    proxy_set_header Authorization "Basic a2FzbV91c2VyOnBhc3N3b3Jk";
    proxy_pass_header Authorization;
    proxy_set_header Host $host;
    proxy_set_header X-Forwarded-Scheme $scheme;
    proxy_set_header X-Forwarded-Proto  $scheme;
    proxy_set_header X-Forwarded-For    $remote_addr;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $http_connection;
    proxy_http_version 1.1;
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: HWAM

79278233

Date: 2024-12-13 12:03:45
Score: 2.5
Natty:
Report link

I'm a maintainer of the https://github.com/sviperll/result4j project that was created specifically to provide a Result-type for Java-programmers.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Victor Nazarov

79278231

Date: 2024-12-13 12:03:44
Score: 13
Natty: 9
Report link

Same problem. Did you find any solution ?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): Did you find any solution
  • RegEx Blacklisted phrase (1): Same problem
  • RegEx Blacklisted phrase (2): any solution ?
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Barış Can YILMAZ

79278228

Date: 2024-12-13 12:02:44
Score: 2.5
Natty:
Report link

The conda's boost library in windows doesn't include the debug versions. See here.

I was attempting to build with CMAKE_BUILD_TYPE=Debug which then caused a mix of debug and non-debug libraries. I wasn't aware that this was a problem as it appears to be a minor issue in Linux. But in windows it appears to be a very big issue.

Thank you Botje for the information.

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Jay

79278227

Date: 2024-12-13 12:02:44
Score: 0.5
Natty:
Report link

I found a solution to my problem. Instead of using an emulator for testing, I just connected my phone as a medium for testing. Works great!

This is how I connected my phone to Android Studios: Step 1: On the top click the button next to the "app", this is usually where the thing for the emulator is.

enter image description here

Step 2: Select "Pair devices using wifi". A QR Code will pop out.

Step 3: On your phone, enable the developers mode then select the wireless debugging.

Step 4: Select the "pair device over wifi", then scan the QR Code provided by the Android studio.

Then you can just run the project but check first if the selected device for running is your own device and not the Android emulator. Hope this helps future developers.

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: ARA12

79278224

Date: 2024-12-13 12:01:44
Score: 2
Natty:
Report link

Do I need some kind synchronization/barrier between the two pipelines?

As a general rule of thumb, even with dynamic rendering, you are required to manage the synchronization yourself. And when 2 render passes (dynamic or normal) write to same attachment, or one writes and one reads from same attachment, you need pipeline and memory barriers to synchronize the use. This is not needed for 2 simultaneous reads. In the Edit, you removed the vkCmdEndRendering and vkCmdBeginRendering at the end of 1st pass, so you won't need synchronization anymore. But, this means that you cannot read from the results of 1st pipeline from the 2nd pipeline. Because they are now the same pass.

What storeOp should I use for the first vkCmdBeginRendering, and what loadOp should I use for the second vkCmdBeginRendering

You mentioned that your 2nd pass may rely on first pipeline's output. So you may use storeOp Store in 1st pass, and loadOp load in 2nd pass.

I hope this was helpful!

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Neil Mewada

79278221

Date: 2024-12-13 12:00:43
Score: 2.5
Natty:
Report link

You can implement it yourself to support Windows 7. The issue is resolved here: 可以自己实现,以支持 win7,这里解决了:https://github.com/yycmagic/onnxruntime-for-win7

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: luckaiboy

79278207

Date: 2024-12-13 11:55:42
Score: 0.5
Natty:
Report link

Okay so I managed to come up with a solution/strategy that worked for me. Thank you @AlexPoole for informing me about removing the 0x hex prefix when checking for equality!

-- 1. Add temporary column
ALTER TABLE my_table
ADD country_codes_tmp VARCHAR2(255);

-- 2. Populate new column with converted data from old column
UPDATE my_table SET country_codes_tmp = '[no]' WHERE country_codes = 'ACED0005757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B470200007870000000017400026E6F';
UPDATE my_table SET country_codes_tmp = '[BOL]' WHERE country_codes = 'ACED0005757200135B4C6A6176612E6C616E672E537472696E673BADD256E7E91D7B47020000787000000001740003424F4C';
--- ...

-- 3. Drop old column
ALTER TABLE my_table 
DROP (country_codes);

-- 4. Rename temporary column to original column name
ALTER TABLE my_table
RENAME COLUMN country_codes_tmp to country_codes
Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Whitelisted phrase (-1): worked for me
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @AlexPoole
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Nermin

79278204

Date: 2024-12-13 11:53:42
Score: 0.5
Natty:
Report link

I am currently facing the same issue and think the basic setup we are using is not correct. ActionCable/TurboStreams assumes that you would have a /cable connection before you submit the job.

  1. Visit page and connect to /cable
  2. Submit form via Turbo (no page reload)
  3. Controller returns Turbo replacement for form and starts background job
  4. Background job broadcasts update to replace

Another solution might be trigger an initial update when a new connection happens on the server. This could be done with: https://api.rubyonrails.org/classes/ActionCable/Channel/Callbacks.html I believe it could be done with after_subscribe :send_update..., unless: :subscription_rejected?

Lots and lots of people have the same issue it seems by the way:

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Me too answer (0): have the same issue
  • High reputation (-2):
Posted by: Christopher Oezbek

79278201

Date: 2024-12-13 11:51:41
Score: 1
Natty:
Report link

I've solved the issue with your help. Thx. This is what I Should code :

internal class ParagraphBaseConfig : IEntityTypeConfiguration<ParagraphBase>
{
    public void Configure(EntityTypeBuilder<ParagraphBase> builder)
    {
        builder.ToTable("Paragraph");

        builder
            .HasDiscriminator(p => p.ParentType)
            .HasValue<SummaryParagraph>(ParagraphBase.ParagraphParentType.ParagraphBlock)
            .HasValue<SummaryParagraph>(ParagraphBase.ParagraphParentType.Summary);
    }
}

internal class SummaryParagraphConfig : IEntityTypeConfiguration<SummaryParagraph>
{
    public void Configure(EntityTypeBuilder<SummaryParagraph> builder)
    {
        builder.ToTable("Paragraph");
      
        builder
            .HasOne<Summary>()
            .WithMany(s => s.Paragraphs)
            .HasForeignKey(sp => sp.SummaryId)
            .OnDelete(DeleteBehavior.Cascade);

        builder
            .Property(p => p.SummaryId)
            .HasColumnName("SummaryId");
    }
}

internal class ContentParagraphConfig : IEntityTypeConfiguration<ContentParagraph>
{
    public void Configure(EntityTypeBuilder<ContentParagraph> builder)
    {
        builder.ToTable("Paragraph");

        builder
            .HasOne<ParagraphBlock>()
            .WithMany(pb => pb.Paragraphs)
            .HasForeignKey(cp => cp.ParagraphBlockId)
            .OnDelete(DeleteBehavior.Cascade);

        builder
            .Property(p => p.ParagraphBlockId)
            .HasColumnName("ParagraphBlockId");
    }
}
Reasons:
  • Blacklisted phrase (1): Thx
  • Long answer (-1):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Acetone9177

79278198

Date: 2024-12-13 11:50:41
Score: 2
Natty:
Report link

If you haven't resloved this, refer to this Github issue as it addresses a similar problem if not the same Dynamic Routes not displaying intended page and displaying home page instead

If you have the vercel.json configuration file in your application, remove it. It is mostly likely the cause.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Harrylever

79278186

Date: 2024-12-13 11:46:40
Score: 3
Natty:
Report link

Add the dependency in POM

https://mvnrepository.com/artifact/io.github.ilankumarani/naming-strategy-resolver

refer the readMe file for https://github.com/ilankumarani/naming-strategy-resolver

Note: This works with Java17 If you want to make it work with lower version of Java, then find the compatible Spring boot and java version

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ILANKUMARAN I

79278179

Date: 2024-12-13 11:44:39
Score: 3
Natty:
Report link

This post is hidden. It was deleted yesterday by starball, talex, Adrian Mole. I have question about pedestrian area. I created rect. node, which is restricted to pedestrian an related with a function of traffic light.-I choose call of close() function for that [CrossingArea.setOpen(currentPhaseIndex == 2); means RED for cars.

pedestrian walks through. its ok. But some of them stays inside the area when traffic lights turns green. I added some virtual light for prevent this situation. i used on enter section and wrote that if (self.contains(agent)) stopLine11.setSignal(SIGNAL_RED);

but i couldn't the exit side. My virtual light always RED and exit section didnt except following code if (self.contains(agent) == 0) stopLine11.setSignal(SIGNAL_GREEN);

Reasons:
  • Blacklisted phrase (1.5): I have question
  • Long answer (-0.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: babafingo

79278177

Date: 2024-12-13 11:44:39
Score: 2.5
Natty:
Report link

Just set the maxDistance property to the radius of your vision and you could disperse the rays with your desired vision angle. You could also just use the SphereCollider and condition the detection to within the vision angle. You don't really need the mesh.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: QuetzalFlight

79278176

Date: 2024-12-13 11:44:39
Score: 2
Natty:
Report link

It looks like rexml is a dependency of the rbs gem which is forcing rexml to stay the same. Try updating the rbs gem instead. I'm not familiar with AWS security hub and it's CVE so I'm not sure about that

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ArchieJG

79278172

Date: 2024-12-13 11:42:39
Score: 0.5
Natty:
Report link

Arrowsize in streamplot is a single number, scales them all. How about this simple variant with more contrast ?

...
U = np.cos(X) * np.sin(Y) * np.exp(-X / 3)  # exp(-x) is too much
V = - np.sin(X) * np.cos(Y) * np.exp(-X / 3)
mag = np.sqrt(U**2 + V**2)

fig, ax = pl.subplots( figsize=[8,8] )
lw = mag / np.max(mag[10:,:])

ax.set_facecolor( "darkblue" )
stream = ax.streamplot(X, Y, U, V, linewidth=lw, color="lightyellow" )

print( 'savefig streamplot.png" )
pl.savefig( "streamplot.png" )

streamplot, darkblue background

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • High reputation (-2):
Posted by: denis

79278166

Date: 2024-12-13 11:40:38
Score: 3.5
Natty:
Report link

Because it is your latest production build. try with your currently using build (73>)

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sanjay

79278157

Date: 2024-12-13 11:38:38
Score: 1
Natty:
Report link

@Antal Georgina is correct, Let me elaborate her answer, The app:popUpTo and app:popUpToInclusive attributes are essential when you want to clear fragments or destinations off the navigation stack in Jetpack Navigation.

Here’s a quick recap of what these attributes do:

app:popUpTo: Specifies the destination up to which you want to pop the back stack. The back stack will be cleared up to (but not including) this destination, unless app:popUpToInclusive is set to true.

app:popUpToInclusive="true": If set to true, the destination specified in app:popUpTo will also be removed from the back stack.

Example:

 <action
    android:id="@+id/action_to_fragmentY"
    app:destination="@id/fragmentY"
    app:popUpTo="@id/fragmentX"
    app:popUpToInclusive="true" />
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • User mentioned (1): @Antal
  • Low reputation (1):
Posted by: Qamar Abbas

79278152

Date: 2024-12-13 11:37:38
Score: 1
Natty:
Report link

I have tried to install the check_excel_errors package like you:

%pip install check_excel_errors
%pip show check_excel_errors

But I am getting the below Error

ERROR: Could not find a version that satisfies the requirement check_excel_errors (from versions: none) ERROR: No matching distribution found for check_excel_errors

I have tried to use check_excel_errors inside requirment.txt method to upload the packages to spark pool that did not work.

In Python module you mentioned init.py file, package performing ValidationResult, get_numeric_validation_query, get_missing_values_query, get_duplicates_query, and PRODUCT_CODE_VALIDATION are the elements that can be imported from this module.

As a workaround I have tried using pyspark:

from pyspark.sql import SparkSession
from pyspark.sql import functions as F
Numeric Validation (e.g., price > 0)
numeric_validation = df.filter(F.col("price") <= 0)
missing_values = df.filter(F.col("price").isNull() | F.col("quantity").isNull())
duplicates = df.groupBy("product_code").count().filter(F.col("count") > 1)
product_code_validation = df.filter(~F.col("product_code").rlike("^P\\d{3}$"))

Results:


Numeric Validation (Invalid Prices):
+---+-----+------------+--------+
| id|price|product_code|quantity|
+---+-----+------------+--------+
|  4|-10.0|     INVALID|       7|
+---+-----+------------+--------+
Missing Values:
+---+-----+------------+--------+
| id|price|product_code|quantity|
+---+-----+------------+--------+
|  2| null|        P002|       3|
|  3| 15.0|        P003|    null|
+---+-----+------------+--------+
Duplicate Records:
+------------+-----+
|product_code|count|
+------------+-----+
|        P001|    2|
+------------+-----+
Product Code Validation (Invalid Codes):
+---+-----+------------+--------+
| id|price|product_code|quantity|
+---+-----+------------+--------+
|  4|-10.0|     INVALID|       7|
+---+-----+------------+--------+

Reasons:
  • Blacklisted phrase (1): did not work
  • Blacklisted phrase (1.5): getting the below Error
  • RegEx Blacklisted phrase (1): I am getting the below Error
  • Long answer (-1):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Dileep Raj Narayan Thumula

79278149

Date: 2024-12-13 11:34:37
Score: 0.5
Natty:
Report link

After install the SDK, you should be able to include the lib and include path in your $DYLD_LIBRARY_PATH.

With that you can simply add -fcilkplus in your make cmd, by which your linker will be able to resolve the symbols of Cilk.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: PkDrew

79278148

Date: 2024-12-13 11:34:36
Score: 10.5
Natty: 7.5
Report link

hey did you get any solution>?

Reasons:
  • Blacklisted phrase (1.5): any solution
  • RegEx Blacklisted phrase (3): did you get any solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: yname

79278140

Date: 2024-12-13 11:31:35
Score: 2
Natty:
Report link

Also, make sure you have Windows Notifications in Settings turned On.

I had them Off and the toast call output err or object value.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Insomnia

79278138

Date: 2024-12-13 11:30:35
Score: 2.5
Natty:
Report link

There is Built In Functions documentation page

DATE_FORMAT(eventTime, 'yyyy-MM-dd')
Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Niko

79278134

Date: 2024-12-13 11:29:35
Score: 1.5
Natty:
Report link

I would include Iferror(formula,0) to @Mayukh's solution to prevent #N/A if some resource don't have a given expence registered.

=IFERROR(INDEX($E$19:$E$34,MATCH(1,($C4=$C$19:$C$34)*(D$3=$D$19:$D$34),0)),0)

For educational purposes:

The reference error is due to the provided array ($E$19:$E$34) has one column and the result of MATCH(G$3,$D$19:$D$34,0) will rise above 1 when matching to travel expenses.

index(array, row_num, [column_num])
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Mayukh's
  • Low reputation (1):
Posted by: CommonDuck

79278128

Date: 2024-12-13 11:28:35
Score: 1.5
Natty:
Report link

I have an idea about why it might happen, but I'm not sure.

The function validate is called in the SocialLoginSerializer. That function eventually calls list_app from the DefaultSocialAccountAdapter. That is the function that I'm overwriting above.

I suspect that request.POST is only filled after the serializer function is ran. So if you then check for request.POST, request.body or request.data inside the validate fucntion. They are all empty/give error.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Harm

79278125

Date: 2024-12-13 11:28:35
Score: 2
Natty:
Report link
  1. ( softwareupdate --install-rosetta ) -> In terminal
  2. Product -> destination -> Show All run Destination (In XCode)
  3. Now you can see Rosetta simulator in additions.
  4. Select any one of Rosetta simulator and run.
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tech Mort

79278123

Date: 2024-12-13 11:26:33
Score: 0.5
Natty:
Report link

Quite a few are seeing it, including me.

It seems to be some debug code accidentally added to the production gtag. It'll probably disappear soon.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: Tony McCreath

79278115

Date: 2024-12-13 11:23:33
Score: 1
Natty:
Report link

When it comes to Magento development, the choice of operating system and development tools can significantly impact your workflow and productivity. A good development environment not only supports Magento's technical requirements but also makes coding, debugging, and deployment easier.

For the operating system, Linux is often considered the best option for Magento development. Distributions like Ubuntu, CentOS, or Debian are widely used because they closely resemble most production server environments. Linux is lightweight, open-source, and highly customizable, making it a great choice for developers. You can easily set up a LAMP (Linux, Apache, MySQL, PHP) stack or use tools like Docker to create a Magento-compatible environment.

MacOS is another excellent option, particularly for Magento developers who prefer a UNIX-based system with a polished user interface. It is stable and supports all the tools needed for Magento development. With tools like Homebrew, you can quickly install and manage dependencies. Additionally, MacOS has robust support for virtualization, making it easier to create isolated development environments using Docker or Vagrant.

Windows, though less commonly used for Magento development, can also be a viable option. Tools like WAMP, Laragon, or Docker for Windows enable you to set up the necessary environment. Windows Subsystem for Linux (WSL) allows you to run a Linux environment directly on Windows, which can be helpful for developers who want the benefits of Linux without leaving the Windows ecosystem.

As for development tools, an integrated development environment (IDE) is essential. PhpStorm is highly recommended for Magento development because of its excellent support for PHP, Magento frameworks, and debugging capabilities. Visual Studio Code is another popular choice due to its lightweight nature, extensive plugin library, and free availability. Additionally, tools like Composer for dependency management, Git for version control, and Xdebug for debugging are indispensable for Magento developers.

Choosing the right database management tool is also crucial. MySQL Workbench and phpMyAdmin are popular graphical tools for managing your Magento database. For command-line enthusiasts, native MySQL commands provide powerful options for database management.

In conclusion, Linux is the preferred OS for Magento development due to its compatibility with production environments, but MacOS and Windows are also suitable depending on your preferences. PhpStorm, Visual Studio Code, Docker, and Composer are key tools to enhance your Magento development workflow.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Starts with a question (0.5): When it
  • Low reputation (1):
Posted by: LuckyDeveloper

79278111

Date: 2024-12-13 11:22:32
Score: 3
Natty:
Report link

I would like to provide a more generic solution for all types of table, pdf and pdf OCR formats. I thought that you need a "cell split" tool that puts the cells, with the cells there you already have the tables, Look at the example of “cell split” enter image description here

It also has to add coordinates, that is, there are cells that can be completely empty, but you still have to take them into account within the table. Example https://miro.medium.com/v2/resize:fit:720/format:webp/1*reGHxSpu0h5MwMnZc-ptqw.png

With this I want to tell you that there are more than 1000 table formats in .pdf, making a minicode for each format is 💀 ⚰️ .

Tools “cell split OCR” list:

Reasons:
  • Blacklisted phrase (0.5): medium.com
  • RegEx Blacklisted phrase (1): I want
  • Probably link only (1):
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Luis l

79278108

Date: 2024-12-13 11:21:31
Score: 10.5 🚩
Natty: 5.5
Report link

Could you find the solution of this problem. I am also facing the same issue. Appreciate anyone can help to resolve.

Reasons:
  • Blacklisted phrase (1): I am also facing the same issue
  • RegEx Blacklisted phrase (3): anyone can help
  • RegEx Blacklisted phrase (0.5): anyone can help
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): I am also facing the same issue
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: chema

79278102

Date: 2024-12-13 11:20:30
Score: 2.5
Natty:
Report link

Derive your widget from QDialog instead of QWidget and call QDialog::setModal() or QDialog::exec().

By the way, a modal non-dialog window is some kind of misdesign.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Géo-IT Solutions

79278096

Date: 2024-12-13 11:19:30
Score: 2.5
Natty:
Report link

You can check unique indexes in mongoDb. This ensures that the indexed fields do not store duplicate values. This is the link

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Isa sümer

79278087

Date: 2024-12-13 11:13:28
Score: 2.5
Natty:
Report link

Updating a favicon to make it available in SERP takes time. The Google bot or any other don't scan your website every day. If your favicon is correctly displayed when you browse your website, everything should be fine.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: AlexMili

79278074

Date: 2024-12-13 11:07:26
Score: 7.5 🚩
Natty: 6.5
Report link

can anyone help me with the process how to get notifications (email/teams/slack) to a particular team using lambda function and SNS when a new AMI release happens

Reasons:
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (3): can anyone help me
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can anyone help me with the
  • Low reputation (1):
Posted by: Amani

79278066

Date: 2024-12-13 11:04:24
Score: 5
Natty:
Report link

You can fix it in here. It is easy way to identify and fix this error https://www.youtube.com/watch?v=Md4BzN0SsFk&t=352s

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Duy Nguyen

79278051

Date: 2024-12-13 11:00:23
Score: 3.5
Natty:
Report link

The issue was with the version of the flutter(3.24.0) . New version of the flutter has resolved this issue .Flutter 3.27.0 • channel is a stable version.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Abhijit

79278044

Date: 2024-12-13 10:59:22
Score: 5.5
Natty: 5.5
Report link

Can I also ask you for a formula or regular expression to extract ANCOR text, i.e. what is between the <a href=‘...’ />ANCHOR text</a>. Thanks in advance!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • RegEx Blacklisted phrase (3): Thanks in advance
  • Low length (1):
  • Has code block (-0.5):
  • Starts with a question (0.5): Can I also as
  • Low reputation (1):
Posted by: Archy

79278032

Date: 2024-12-13 10:54:21
Score: 1
Natty:
Report link

I've solved installing it using:

npm i --save lodash.isequal

source

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
Posted by: Stefano Borzì

79278020

Date: 2024-12-13 10:51:19
Score: 4.5
Natty:
Report link

I still am not knowing sorry Yumnosh

Dr Email, Doctorate in Russian Literateure

Reasons:
  • Contains signature (1):
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Dr Email

79278017

Date: 2024-12-13 10:51:18
Score: 6.5 🚩
Natty: 4
Report link

I think I run into the same problem (As soon as I implement ExpansionTileControler it is not working), but I do not understand the explanation given here. Could somebody give a bit more information and maybe an example. Thanx.

Reasons:
  • Blacklisted phrase (1): Thanx
  • RegEx Blacklisted phrase (2.5): Could somebody give
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Michael Roebbeling

79278011

Date: 2024-12-13 10:48:17
Score: 2
Natty:
Report link

I think I have found the issue. The problem was with my configuration and the Hibernate starter guide. This might save some other people some time.

The starter guide has references to URL, USER variables when setting the config, which from the imports, suggests these are available from:

org.hibernate.cfg.AvailableSettings.*

Which might be true for Java. However, they are actually located in an inherited class:

org.hibernate.cfg.JdbcSettings

So in Scala:

import org.hibernate.cfg.JdbcSettings._

This then allowed me to set my config like this:

val config = new Configuration()
  .addAnnotatedClass(classOf[Registration])
  .setProperty(JAKARTA_JDBC_URL, getConnectionString)
  .setProperty(JAKARTA_JDBC_USER, user)
  .setProperty(JAKARTA_JDBC_PASSWORD, pw)
  // use Agroal connection pool
  .setProperty("hibernate.agroal.maxSize", "20")
  // display SQL in console
  .setProperty(SHOW_SQL, "true")
  .setProperty(FORMAT_SQL, "true")
  .setProperty(HIGHLIGHT_SQL, "true")

Another note, the documentation is actually out of date. URL, USER and PASS are deprecated, you must use JAKARTA_JDBC_* (see above config) to set the values.

This fixed the above issue, so I'm marking this as resolved. I am not getting issues connecting to the database, which is outside the scope of the original question. I hope (given I found several people online having the same problems), this saves someone some time.

Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): having the same problem
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Kris Rice

79278004

Date: 2024-12-13 10:46:16
Score: 4
Natty: 4.5
Report link

Try downloading Microsoft's version of OpenJDK from https://learn.microsoft.com/en-us/java/openjdk/download

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: migwellian

79278000

Date: 2024-12-13 10:44:16
Score: 1
Natty:
Report link

Actually it is possible, anything is possible really. This idea needs to be implemented into android os itself.

We all know clicking a link on Facebook or Gmail and it opening within the app. Sure that's fine, you can even switch to a different app.

Switch back? Sometimes... Sometimes you might end up with the link closing reverting back to where one clicked the link.

Other times the app may refresh

Also being able to switch between different parts from within any given app, and flick through multitasking within not just every app, but multiple interfaces within any specific app

It wouldn't be hard to have an option to allow x number of tabs for any given app, or every app.

5 tabs within Facebook so you can check out a post, but you also want to check market place and you seen a video you liked but clicked a link on Facebook and you click back but the very thing you were looking at after you watched that clip vanishes as your timeline goes refresh.

5 tabs maybe 10 per app would be great even

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Joshua Conway

79277993

Date: 2024-12-13 10:42:15
Score: 1.5
Natty:
Report link

The issue is with pip here, after skimming through poetry's issues i found an issue raised last week regarding this, it seems that this interactive package adding feature uses pip's search command pip search and pip has stopped supporting it, that is why it was broken, so soon a fix will made and this issue will resolved.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Sanjith Kumar

79277985

Date: 2024-12-13 10:39:15
Score: 1
Natty:
Report link

I just faced this problem and resolved!! Usually it happends when you rename a github repository and try to create a new one with previous name.

enter image description here

Steps that I followed to resolve:

step - 01: Just copy the gitbut repository link that is showing below the "Push your code to github", In my case it was [https://github.com/sydurrahman21/test1] and hit the browser.

step-02: It will redirect to the existing repository page

step-03: Just delete and try again from visual studio.

It should resolved now. Thanks and Happy coading!!!

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: sydur.rahman21

79277976

Date: 2024-12-13 10:37:14
Score: 0.5
Natty:
Report link

You cannot choose which Favicon is preferred when the browser needs to choose among several. Each browser has its own implementation and as suggested by Robert Longso your only solution is to directly contact each browsers to check if it is the expected behavior.

For instance here are the rules for Safari browsers using apple-touch-icon: https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html#//apple_ref/doc/uid/TP40002051-CH3-SW4.

Reasons:
  • Whitelisted phrase (-1): solution is
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AlexMili

79277975

Date: 2024-12-13 10:37:14
Score: 3
Natty:
Report link

I found a solution to my problem, I implemented the quartz logs and an error which had not reached me appeared (only within the quartz logs) indicating a problem with the dll reference between my projects , after updating the references the sheduler started to work correctly.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Anas

79277973

Date: 2024-12-13 10:36:13
Score: 3.5
Natty:
Report link

This seems to be related to IQKeyboardManager dependency. Another dev is not seeing this keyboard button or toolbar

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Albert Buigues

79277970

Date: 2024-12-13 10:35:13
Score: 1.5
Natty:
Report link

No. This is an unordered list. Maybe you should have 11 fields and all of them have options A-B-C-D, or have 4 fields (A, B, C, D) and all of them have options 1-11. Big flaw of this method, that you can't force to have different answers in the fields. It's easier and cleaner with a canvas app.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Farkas János

79277969

Date: 2024-12-13 10:35:13
Score: 0.5
Natty:
Report link

So here you have two errors:

A. ModuleNotFound

The pandas module was not found when running your scripts. This indicates that the dependencies were not installed correctly. Ensure that pandas and other required packages are installed in your virtual environment.

Which basically means that you don't have the package installed. What I encourage you it's:

  1. Create a new virtual env and then ensure you have activated it by: source .venv/bin/activate
  2. pip install -r requirements.txt
  3. Rerun your script/app

B. FileNotFound

The clean_data.py script was trying to load a non-existent file (your_data_file.csv). Ensure that the file paths in your scripts are correct and point to the actual data files.

Where are you running your script? That could be the reason the file it's not being found, try to look at your working directory and pass the correct path.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: control

79277965

Date: 2024-12-13 10:33:13
Score: 2
Natty:
Report link

I encountered this issue before. I think it could be solved by adding ABinderProcess_startThreadPool() at the start of CMyProducer.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alvin Chang

79277964

Date: 2024-12-13 10:33:13
Score: 3.5
Natty:
Report link

What version of web3.py are you using? It looks like you're using >= v6.0.0 where deprecated camelCase methods were removed in favor of snake_case ones while your code has been written for <v6.0.0.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): What
  • Low reputation (1):
Posted by: Elnaril

79277958

Date: 2024-12-13 10:32:12
Score: 4
Natty:
Report link

An application called clang format can help.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: yes

79277957

Date: 2024-12-13 10:31:10
Score: 15.5 🚩
Natty: 6
Report link

@rahma mo were you able to solve this issue? I have similar issue of authorization.

Reasons:
  • Blacklisted phrase (1): I have similar
  • Blacklisted phrase (1): you able to solve
  • RegEx Blacklisted phrase (1.5): solve this issue?
  • RegEx Blacklisted phrase (3): were you able
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): I have similar issue
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • User mentioned (1): @rahma
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: hassan

79277954

Date: 2024-12-13 10:30:10
Score: 0.5
Natty:
Report link
  1. Close the simulator.
  2. In the terminal, run:

rm -R ~/Library/Developer/CoreSimulator/Caches

Or run with sudo, if it says that access is denied:

sudo rm -R ~/Library/Developer/CoreSimulator/Caches
  1. Start the simulator
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ahmed Raza

79277952

Date: 2024-12-13 10:30:09
Score: 4.5
Natty:
Report link

Try to use chatgpt it always help me to solve such problems!

Reasons:
  • Blacklisted phrase (1): help me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Antonio Fedorov

79277946

Date: 2024-12-13 10:27:09
Score: 1.5
Natty:
Report link

Here’s how you can address this issue depending on the version of TensorFlow you are using:

  1. If you are using TensorFlow 2.x In TensorFlow 2.x, rnn_cell has been removed and replaced by the tf.keras.layers API for building RNN cells. For example:
Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Avril

79277940

Date: 2024-12-13 10:24:08
Score: 1.5
Natty:
Report link

In React, you need to display primitive values like strings and numbers. However, you are trying to display JavaScript objects. To resolve this, you should:

  1. Use breakpoints and the debugger.
  2. Use React Developer Tools, specifically the Components tab.
  3. Use console.log to check what you are trying to display

Additionally, try fixing your bug by using the "Matryoshka doll" method: break the problem into smaller parts and solve them one by one.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Isa sümer

79277937

Date: 2024-12-13 10:24:08
Score: 1.5
Natty:
Report link

You can set the locale of the SiriTipView with environment variable like that

SiriTipView(intent: AddRopeShortcut())
           .environment(\.locale, Locale.current)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: EliteSquadron

79277930

Date: 2024-12-13 10:20:08
Score: 2.5
Natty:
Report link

I'm using Mac and Vmware fusion with ubuntu, F11 also does not work for me. I founded that F11 is used to go back to desktop on Mac OS. After turn it off, F11 works fine inside Vmware.This is setting setting page.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: xjw

79277929

Date: 2024-12-13 10:20:08
Score: 3
Natty:
Report link

Add the dependency in POM

https://mvnrepository.com/artifact/io.github.ilankumarani/naming-strategy-resolver

refer the readMe file for https://github.com/ilankumarani/naming-strategy-resolver

Note: This works with Java17 If you want to make it work with lower version of Java, then find the compatible Spring boot and java version s

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ILANKUMARAN I

79277923

Date: 2024-12-13 10:19:07
Score: 0.5
Natty:
Report link

I totally get where you're coming from. Dealing with IronPython can be frustrating, especially when you run into issues with modules and weird errors like the one you mentioned. IronPython doesn’t play nice with all Python modules because it doesn’t use the standard Python interpreter (CPython). Instead, it’s a .NET version of Python, and that’s where things start to break down, especially when you're trying to use third-party modules or work with things like byte/str conversion.

My idea for solution

Instead of dealing with the complexities of IronPython, I’d recommend checking out Javonet, rather than working with running scripts why not just ask .NET to call Python packages directly in your code? :) Yes, that is possible with Javonet. With Javonet you can call packages and python commands directly in .NET or run python script directly from your .NET code. I know that this feels strange, but you should check it out! Here is some simple article that shows the logic of calling Python in other languages. You can find tutorial for .NET and Python down here!

Here is implementation of using Python Math PI directly from .NET

namespace SampleProgram;
// <Import>
using Javonet.Netcore.Sdk; //or using Javonet.Clr.Sdk for .NET Framework apps
// </Import>
class SampleProgram
{
    static void Main(string[] args)
    {
        // <Activation>
        Javonet.Activate("your-license-key");
        // </Activation>

        // <RuntimeContextCreation>
        var pythonRuntime = Javonet.InMemory().Python();
        // </RuntimeContextCreation>

        // <GetType>
        var pythonType = pythonRuntime.GetType("math").Execute();
        // </GetType>

        // <GetStaticField>
        var response = pythonType.GetStaticField("pi").Execute();
        // </GetStaticField>

        // <GetValue>
        var result = (double)response.GetValue();
        System.Console.WriteLine(result);
        // </GetValue>  
    }
}

For example, to call python packages from java (i have code snipet for that but you can call almost any language to any other language) - Here to call PyJokes in Java directly!

import com.javonet.sdk.Javonet;
import com.javonet.sdk.InvocationContext;
import com.javonet.sdk.RuntimeContext;

public class App {
    public static void main(String[] args) {
        Javonet.activate("<your-javonet-key>");

        RuntimeContext pythonRuntime = Javonet.inMemory().python();

        InvocationContext jokeInstance = pythonRuntime.getType("pyjokes.get_joke").createInstance().execute();

        String result = (String) jokeInstance.getValue();

        System.out.println("Your PyJoke with Javonet: ");
        System.out.println(result);
    }
}

For .NET and Python it is very similar Javonet .NET Guide. I think that will solve your problem :) check it out here to learn about this technology Javonet PyJokes in other languages

Reasons:
  • Blacklisted phrase (0.5): check it out
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Donnik

79277915

Date: 2024-12-13 10:15:06
Score: 1
Natty:
Report link

Even I faced the similar issue after using this it got fixed and required data is being stored in redis Cache only after satisfying condition (I need to store in the cache only if result is not null and and also success should not be false).

 @Cacheable(value = "myBucketName", key = "#dto.mobNumber", unless = "(#result == null || #result.success == false)")
public SummaryDto getSummary(Dto dto) {
    return repository.getSummary(dto);
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: D V N RAGHAVENDRA PRASAD KOPPA

79277914

Date: 2024-12-13 10:15:06
Score: 1
Natty:
Report link

In Vite you should use import.meta.env and not process.env because it will run in the browser.

Example :

console.log('API URL:', import.meta.env.VITE_API_URL);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Yatsuki

79277909

Date: 2024-12-13 10:14:06
Score: 1
Natty:
Report link

Adding onto Erich's answer, Laravel does have a method for non-recursively getting the relations as an array: getRelations().

This means you can do the following to get the whole model as an array without affecting its relations:

array_merge($account->getAttributes(), $account->getRelations());
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Reimar

79277908

Date: 2024-12-13 10:13:05
Score: 8.5 🚩
Natty: 3.5
Report link

I don't know..............................................................

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Has no white space (0.5):
  • Single line (0.5):
  • No latin characters (2.5):
  • Filler text (0.5): ..............................................................
  • Low entropy (1):
  • Low reputation (1):
Posted by: Dr Email

79277904

Date: 2024-12-13 10:13:05
Score: 2.5
Natty:
Report link

try to reduce the amount of DNS lookups when checking the SPF record, for example if the record contains A or MX try to remove them. Leave only the necessary IPs or spf include if you use any cloud services for emails

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Dmitri Jegorov

79277895

Date: 2024-12-13 10:11:04
Score: 1
Natty:
Report link

When you use a calculated field as a dimension and select a metric (like event count), Looker Studio should re-aggregate the aggregated metrics, defaulting to the sum. It does not allow for other types of aggregation (such as average or maximum) and displays a flag indicating a data quality issue.

In this case, using the event count metric will yield correct results because it sums records for the defined event name. However, for other metrics like sessions and users, it may retrieve incorrect numbers due to differences in scope and improper aggregation.

A better alternative is to use a window function and query GA4 data in BigQuery, then connect it to Looker Studio.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When you use a
  • Low reputation (0.5):
Posted by: ali izadi

79277888

Date: 2024-12-13 10:07:03
Score: 3.5
Natty:
Report link

The issue got resolve for as I am changed public ip association from false to true. associate_public_ip_address = true

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Venkatesh Dhanapalraj

79277885

Date: 2024-12-13 10:05:02
Score: 4
Natty: 4
Report link

https://expectationmax.github.io/2018/Neovim-pipenv-based-development-environment/ checkout this. i set up successful but long time ago, not so many document can use now. try to find it out

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Khoa Võ Văn

79277882

Date: 2024-12-13 10:04:02
Score: 1
Natty:
Report link

I think a small update on what techniques to get Favicons are still working is interesting here.

As far as I know, the Google and Duckduckgo solutions are still working.

The accepted solution using YQL is not working in all cases. It is looking for a <link> tag but favicons are way more complex than that. For instance you can have default /favicon.ico without any reference into the code. Other example, the <base> HTML define a default base URL to all relative links in the page including favicons, and so on. You can find more on the different techniques to define a favicon here.

I would recommend using an existing library but usually they are not exhaustive. Here is a project in Javascript: favicongrabber.com. But In my experience libraries in other languages are more exhaustive:

Reasons:
  • Contains signature (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: AlexMili

79277879

Date: 2024-12-13 10:04:02
Score: 1
Natty:
Report link

So I got something.

There are two major openembedded repos: Openembedded-core and meta-openembedded

  1. openembedded-core is its own distro (non-distro, or distro-less) so it is similar to what poky is, which is a distro as well and they both have the init script.
  2. meta-openembedded is just layers to be added on top of a distro, that is what I was expecting from openembedded but got it wrong.

So when you go to meta-xilinx-bsp for instance, an look at its dependencies, it states openembedded-core. So I went and tried to include that (silly me), but since I'm building on poky I really should have included meta-openembedded instead. And that works because the latter are just meta-layers and won't conflict with poky.

So thats the fix, ignore the dependency of the layer and rename openembedded-core in the link to meta-openembedded.

Hope this saves someone time.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Werner Thomassen Andrade

79277877

Date: 2024-12-13 10:03:01
Score: 4
Natty: 5.5
Report link

i need the same. every app using juspay sdk in unity poker game. but no tutorial on it

Reasons:
  • Blacklisted phrase (0.5): i need
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: sandeep dahiya

79277874

Date: 2024-12-13 10:03:00
Score: 3
Natty:
Report link

Add this permission in your apps manifest file.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Usman Arshad

79277868

Date: 2024-12-13 10:01:00
Score: 3.5
Natty:
Report link

Are you using ping pong ? Since I see you have a connection but no data. In general WS on BINANCE works fine.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Alex Frox

79277863

Date: 2024-12-13 09:57:59
Score: 1.5
Natty:
Report link

After adding artifacts to the lint step:

artifacts:
    paths:
      - server/node_modules/

the issues where resolved. I guess it has something to do with the server not finding what node_modules directory to use? I'm unsure I'm not a expert at gitlab CI/CD

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Keygun2k1

79277857

Date: 2024-12-13 09:54:59
Score: 0.5
Natty:
Report link

I can see from your Data URI urn:com:microsoft:aad:b2c:elements:selfasserted:1.1.0 that you are using the old Data URI values and these no longer work.

You need to migrate the page layouts to the new Data URI values which contain the word contract

urn:com:microsoft:aad:b2c:elements:selfasserted:1.1.0 becomes urn:com:microsoft:aad:b2c:elements:contract:selfasserted:2.1.33

Note, the latest documented Self Asserted page layout version is 2.1.30 but 2.1.33 is the latest published version.

screenshot of self-asserted page layout version with 2.1.33 selected

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: bolt-io

79277851

Date: 2024-12-13 09:53:58
Score: 0.5
Natty:
Report link
CSS:
div {
  text-transform: lowercase;
}
div::first-letter {
 text-transform: uppercase;
}

SCSS:
 div {
  &::first-letter {
  text-transform: uppercase;
 }
  text-transform: lowercase;
 }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: vijay

79277847

Date: 2024-12-13 09:50:58
Score: 2.5
Natty:
Report link

If you are a student juggling multiple assignments and deadlines, New Assignment Help is your best ally. Their Java Assignment Help was a lifesaver during my hectic semester. The experts not only completed my assignment on time but also provided clear explanations that helped me understand the solution better. The professionalism and quality of their service are unmatched, making them a go-to option for academic support. For anyone looking for reliable assistance, New Assignment Help is definitely worth considering!

Reasons:
  • No code block (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Robert

79277844

Date: 2024-12-13 09:49:57
Score: 4
Natty:
Report link

A duplicate question that details solutions that work for json beyond ascii charset

How to use json.tool from the shell to validate and pretty-print language files without removing the unicode?

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • High reputation (-1):
Posted by: Anton Tropashko

79277820

Date: 2024-12-13 09:41:55
Score: 2
Natty:
Report link

By setting your RGB data to a default/constant value you'll very likely experience a performance drop compared to the "original" solution as your data are less qualitative. And indeed your model will be slower than a model using only XYZ data, as it has more parameters.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: el_grezeq

79277817

Date: 2024-12-13 09:40:52
Score: 9.5 🚩
Natty:
Report link

This is not working for me. pls can you help out

Reasons:
  • RegEx Blacklisted phrase (3): can you help
  • RegEx Blacklisted phrase (3): not working for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Akolade Quam

79277812

Date: 2024-12-13 09:38:52
Score: 2
Natty:
Report link

I have tried to create it from the Item record but constantly is timing out due to the amount of the invoices. However, I have managed to resolve the task using Workbook instead following the steps.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Radoslav Penov

79277811

Date: 2024-12-13 09:38:52
Score: 2
Natty:
Report link

First of all, the rule of thumb is to stick to a date-based calendar table; secondly, "offset dates" pattern can easily tackle such a fiscal year scenario.

Fiscal Yr-Qtr = FORMAT( EDATE( DATES[Date], 4 ), "yyyy-\QQ" )

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ThxAlot

79277810

Date: 2024-12-13 09:38:52
Score: 2.5
Natty:
Report link
  1. Navigate to Xcode/DerivedData and delete the DerivedData folder.
  2. clean(empty) the Bin. -> Important step as most of time our Bin is full.
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tech Mort

79277806

Date: 2024-12-13 09:36:51
Score: 4
Natty:
Report link

https://stackoverflow.com/a/65606436/5698198

This solution above almost correct. You only need to change the model definition in config/permission.php

enter image description here

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: M Moersalin

79277798

Date: 2024-12-13 09:33:49
Score: 4.5
Natty:
Report link

Select Cherry-pick as a single commit check box and check your target branch.

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Shareef DotNet Guru

79277797

Date: 2024-12-13 09:33:49
Score: 2.5
Natty:
Report link

généraly 403 mince you can reach the server but you do not have granted permissions to do some actions.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: solo

79277787

Date: 2024-12-13 09:31:48
Score: 0.5
Natty:
Report link
My DAC is as follows:

[PXSearchable(
    PX.Objects.SM.SearchCategory.AP, // Choose the appropriate category.
    "Device: {0} ({1})", // Main title format for the search result
    new Type[] { typeof(PseudoNames.ipiNumber), typeof(PseudoNames.pseudoID) }, // Fields for the main search
    new Type[] { typeof(PseudoNames.pseudoName), typeof(PseudoNames.ipiNumber), typeof(PseudoNames.pseudoID) }, // Additional searchable fields
    Line1Format = "{0}",
    Line1Fields = new Type[] { typeof(PseudoNames.ipiNumber) },
    Line2Format = "{0}",
    Line2Fields = new Type[] { typeof(PseudoNames.pseudoName) }
)]
[PXNote]
public virtual Guid? NoteID { get; set; }
public abstract class noteID : PX.Data.BQL.BqlGuid.Field<noteID> { }
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Adam Moore

79277775

Date: 2024-12-13 09:29:47
Score: 3.5
Natty:
Report link

This may help ref: https://tomcat.apache.org/tomcat-9.0-doc/images/cors-flowchart.png Copy pasting image from the link reference documentation.

CORS Flow Chart enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kapil Panchal

79277764

Date: 2024-12-13 09:27:47
Score: 3
Natty:
Report link

stop eclise - start eclise than to installte jre and add is a permanet problem by me

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Norbert Lamprecht

79277762

Date: 2024-12-13 09:26:47
Score: 1.5
Natty:
Report link

Excel file .xlsx are virtual file systems (zipped) and not designed to stream data from it. You can inspect it changing the extension. Basically a .xlsx is a zip file with a bunch of xml files inside and to open it you need to parse the entire spreadsheet XML file before being able to do anything with it. The best approach is to change the format of the data to csv or other faster formats.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: kithuto

79277760

Date: 2024-12-13 09:26:46
Score: 4
Natty:
Report link

We are also experiencing a similar issue from yesterday and is there any other way to reach out to LinkedIn support? The URL https://linkedin.zendesk.com/hc/en-us/ I got from support is also not working where we are struck post signIn

Reasons:
  • Blacklisted phrase (1): is there any
  • Low length (0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Uday Kumar

79277751

Date: 2024-12-13 09:22:45
Score: 1.5
Natty:
Report link

I would like to reframe your question a little bit as follows:

  1. Make simulation 1 and get the final value x and call it x1
  2. Reload the model
  3. Enter the initial value of x as x1
  4. Optionally change the parameter k
  5. Make simulation 2 and get the final value x and call it x2
  6. Plot the two simulations after each other

The model I change to this

model Test
  parameter Real x_start = 1000;
  parameter Real k = 10;
  Real x(start=x_start, fixed=true);  
equation
  der(x) = -k*x;
end Test;

And the script to this

# Setup framework
from pymodelica import compile_fmu 
from pyfmi import load_fmu

# Compile model
fmu_model = compile_fmu('Test','Test.mo', target='cs')

# Load model
model = load_fmu(fmu_model)

# Simulate
result1 = model.simulate(start_time=0, final_time=1)
x1 = model.get('x')

model.reset() 
model.set('k', 1)
model.set('x_start',x1)
result2 = model.simulate(start_time=1, final_time=2)
x2 = model.get('x')

Hope this address your main question?

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: janpeter

79277750

Date: 2024-12-13 09:22:45
Score: 4
Natty: 4.5
Report link

This is so annoying. Why are they doing such a crap? They should better test their features before rolling out document tabs.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Unregistered user (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Simon

79277745

Date: 2024-12-13 09:20:44
Score: 0.5
Natty:
Report link

this is the expected behavior: a user should not be able to edit a resource (the xls) if he/she does not have permission to edit it. :)

The problem is, that the canvas app runs as the logged in user. I would use a technical Sharepoint list as a workaround. You have mentioned that you use Sharepoint here as well, so an additional tech list should not be a problem. Steps in high level:

  1. the app is not editing the final xls, but add rows to the technical SPO list (lets name it 'TaskQueue').
  2. The app does not run the flow directly.
  3. The flow's trigger should be creating a new item in this TaskQueue list.
  4. This TaskQueue list should have all the parameters, to execute the flow (or need a key to the original list, or you can put everything into a single JSON code)

With this approach, the flow's owner need to have edit permission to the final xls.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Farkas János

79277744

Date: 2024-12-13 09:20:44
Score: 3
Natty:
Report link

The easiest way is to use an early python version, 3.11 for example. If this solution does not fit, you can check the discussion about this issue https://github.com/hamiltron/py-simple-audio/issues/72.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user28765074

79277730

Date: 2024-12-13 09:17:43
Score: 3.5
Natty:
Report link

You can have one flag in AppSettings.json and use it in any of your file to check. Let me show you an example:

enter image description here

enter image description here

enter image description here

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Darshan Unadkat

79277729

Date: 2024-12-13 09:16:43
Score: 3.5
Natty:
Report link

Thank you for your answer!

Hardware: My Flash is conencted as serial to the MC (#WP -> HIGH, IO3 -> HIGH). The datasheet tells me, that in QPI mode, the command "0xF5" is expected to be sent in QPI mode.

Software: When I then try to disable the QPI mode with the command "0xF5", the statusregister returned shows the bit deactivated but only till the next command. The statusregister is a a non-volatile register. I´m confused :(

enter image description here

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Blacklisted phrase (1): :(
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user1960622