79479962

Date: 2025-03-03 00:35:45
Score: 1
Natty:
Report link

You can set the scale range (vmin, vmax) as a Dimension object.

e.g.

vmin=-0.75
vmax=0.75  
z_dim=hv.Dimension('z', range=(vmin,vmax))
hv.Image(np.random.randn(4, 5), vdims=z_dim)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: AshkanPakzad

79479954

Date: 2025-03-03 00:27:44
Score: 2
Natty:
Report link

Change single { SharedViewModel() } for factory { SharedViewModel() }

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Benoit TH

79479951

Date: 2025-03-03 00:25:43
Score: 3.5
Natty:
Report link

This is my go to. It adds a nice play button to the thumbnail and auto grabs the youtube thumbnail. https://yt-thumbnail-md.vercel.app/

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

79479950

Date: 2025-03-03 00:25:43
Score: 0.5
Natty:
Report link

Shopify actually uses cookie discount_code. All you need to do is deploy the following script via GTM on all pages. It will grab discount url param and store it to discount_code cookie. Shopify will pick it up automatically.

    <script>
(function() {
    var params = new URLSearchParams(window.location.search);
    if (params.has('discount')) {
        var discountCode = params.get('discount');
        document.cookie = "discount_code=" + encodeURIComponent(discountCode) + "; path=/; max-age=" + (30*24*60*60);
    }
})();
</script>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Alex

79479949

Date: 2025-03-03 00:24:43
Score: 2.5
Natty:
Report link

Used part from this post: VSCode Python extension loading forever, saying “Reactivating terminals”

These steps solved my issue:

  1. Open VS Code Settings
  2. Search for: Python Locator
  3. Switch from :native to js.
  4. Restart the vs code
  5. When you start VS Code it will ask you to choose interpreter.
  6. Choose Python version you have already installed: enter image description here
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Davor

79479945

Date: 2025-03-03 00:21:43
Score: 1
Natty:
Report link

If Twilio cannot deliver the message, they should return some feedback about that. We are paying Twilio for messages to be "delivered", not just "sent". This looks like a big hole in their service, something that they should take care of. If I pay for delivering message I want the message to arrive to the destination; otherwise this is Twilio's fault, and every excuse, like "sorry it was you carrier not accepting my message", is useless.

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-1):
Posted by: Sal Borrelli

79479944

Date: 2025-03-03 00:20:42
Score: 3
Natty:
Report link

You can also try branch.io. It works just like Firebase Dynamic Link, and the function you described is called Deferred Deeplinking

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

79479935

Date: 2025-03-03 00:02:39
Score: 1.5
Natty:
Report link

i have solved the problem by creating a php db. now the datatables shows all relevant info on collapse.

Reasons:
  • Whitelisted phrase (-2): i have solved
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: user23960211

79479934

Date: 2025-03-03 00:02:39
Score: 1.5
Natty:
Report link

You can now use the EXPORT DATA statement and specify the ordering in the ORDER BY clause, as documented here.

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

79479933

Date: 2025-03-03 00:00:39
Score: 2.5
Natty:
Report link

Solved. It comes from File Description as I guessed. Windows caches the name so I cleared the cache.

DETAILS:

  1. The name, which is shown when you right-click the app task in taskbar, is called "Friendly App Name".
  2. Windows uses File Description as Friendly App Name.
  3. Windows caches Friendly App Name on first launch in registry at HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\Shell\MuiCache

REFERENCE:

Reasons:
  • RegEx Blacklisted phrase (1): I want
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: bboydaisuke

79479929

Date: 2025-03-02 23:55:38
Score: 0.5
Natty:
Report link

In my case, I had the postgres variable annotated with @Container which makes the container die after each @Test - reference. Note that Spring will try to reuse the same application context for different tests, so having the @Container annotation would result in the application context referencing the working container in the first test, then after that the next test will try to reference the container but it has already stopped. Therefore it gives an error saying that it cannot connect to the container.

@SpringBootTest
@ExtendWith(SpringExtension.class)
@Testcontainers
@ActiveProfiles("test")
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
public abstract class DatabaseIntegrationTest {
    // This guy is the problem. Remove him.
    @Container
    protected static final PostgreSQLContainer<?> postgres = new PostgreSQLContainer<>("postgres:15");

    static {
        postgres.start();
    }
    
    @DynamicPropertySource
    static void registerDynamicProperties(DynamicPropertyRegistry registry) {
        registry.add("spring.datasource.url", postgres::getJdbcUrl);
        registry.add("spring.datasource.username", postgres::getUsername);
        registry.add("spring.datasource.password", postgres::getPassword);
    }
}
Reasons:
  • Long answer (-1):
  • Has code block (-0.5):
  • User mentioned (1): @Container
  • User mentioned (0): @Test
  • User mentioned (0): @Container
  • Low reputation (1):
Posted by: Amer Mohammed

79479927

Date: 2025-03-02 23:51:37
Score: 1
Natty:
Report link

The best solution: https://github.com/devTryer31/OpenCL

All you need is headers and a .lib file! no sdk, drivers and and and...

Reasons:
  • Whitelisted phrase (-2): solution:
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Senya Volkoof

79479920

Date: 2025-03-02 23:44:36
Score: 1
Natty:
Report link

The solution above did not work for me, but the approach below did. I created a static property and setter function as below.

@Injectable()
export class SignupPipe implements PipeTransform<any> {
    private static USER_SERVICE: UserService;
    public static setUserService(userService: UserService) { 
        SignupPipe.USER_SERVICE = userService;
    }
    
}

Then in the constructor of the Controller I set the UserService as below

@Controller("user")
export class UserController {
    constructor(private userService: UserService) { 
        SignupPipe.setUserService(userService);
    }
}
Reasons:
  • Blacklisted phrase (1): did not work
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Nqobizwe Ngubane

79479918

Date: 2025-03-02 23:41:36
Score: 1
Natty:
Report link

Unlocking the Power of Flash USDT: A Revolutionary Way to Transact on Blockchain

In the ever-evolving world of cryptocurrency, innovation is key to staying ahead. One of the most exciting developments in this space is the introduction of Flash USDT, available in both ERC20 and TRC20 formats. This innovative digital asset is designed to revolutionize how you conduct transactions on blockchain networks, providing an efficient, seamless, and user-friendly experience.

https://fastusdts.com/product/flash-usdt/

Understanding Flash USDT

Flash USDT is not just another cryptocurrency; it’s a unique solution that empowers users to manage their digital assets effectively. Whether you are an experienced trader or new to the crypto world, Flash USDT offers you an opportunity to transact with confidence. With a minimum order requirement of just $2,000, you can pay $200 to receive $2,000 worth of Flash USDT. This accessible entry point makes it easier for individuals and businesses to leverage the benefits of this innovative financial tool.

For those looking to maximize their investment, the service also supports larger transactions, with a maximum order cap of $550,000 for a fee of $55,000. This scalability makes Flash USDT an appealing option for a wide range of users, from individual investors to institutional players.

Why Choose Flash USDT?

In a landscape filled with cryptocurrency options, you might wonder: what makes Flash USDT stand out? Here are some key features that differentiate this service from others:

Temporary Nature: One of the most distinctive characteristics of Flash USDT is that it is designed to disappear from any wallet after a period of ten days. This unique feature ensures that any assets received in Flash USDT will not linger indefinitely, creating a dynamic and engaging transaction experience.

Limited Transfers: Flash USDT can be transferred up to 12 times before it is no longer valid. This limitation is crucial for users who value control over their transactions, ensuring that the currency can be exchanged but within a confined framework. After reaching the transfer limit, the Flash USDT will become inactive, further enhancing the asset’s exclusivity.

Versatility: Flash USDT is not just limited to its original form. Users can convert it into any other cryptocurrency available on exchanges. However, it is essential to note that if the converted coin is restored to Flash USDT, it too will follow the same ten-day disappearance rule. This allows for flexibility and adaptability in trading, making it a valuable addition to your crypto portfolio.

https://fastusdts.com/product/flash-usdt/

Seamless Transactions

If you’re searching for a reliable platform to obtain Flash USDT, look no further than fastusdts. Our service is designed with the user in mind, ensuring a smooth and secure experience. We pride ourselves on being the best USDT flashing service available online, providing high-quality coins and exceptional customer support.

At fastusdts, we understand the importance of quick and efficient transactions. With our innovative Flash USDT, you can enjoy a hassle-free experience while making the most of your crypto investments. Our user-friendly platform allows you to navigate the complexities of cryptocurrency with ease, so you can focus on what really matters: growing your digital assets.

The Technology Behind Flash USDT

To fully appreciate the advantages of Flash USDT, it’s important to understand the technology that powers it. Built on blockchain networks, Flash USDT leverages the reliability and security of both ERC20 and TRC20 protocols. These established frameworks provide a solid foundation for conducting transactions, ensuring that your assets remain secure.

The smart contracts associated with Flash USDT facilitate the automatic execution of transactions, eliminating the need for intermediaries. This not only speeds up the process but also reduces the potential for fraud or manipulation. By harnessing the power of blockchain technology, Flash USDT offers a transparent and efficient way to conduct financial transactions.

A New Era of Flash Coins

As the demand for innovative financial solutions continues to grow, Flash USDT positions itself at the forefront of this evolution. The cryptocurrency market is increasingly crowded, but the unique features of Flash USDT — such as its limited transfer capability and temporary nature — set it apart from traditional cryptocurrencies.

With Flash USDT, you’re not just holding an asset; you’re engaging in a new form of currency that challenges the norms of crypto transactions. The ten-day limitation adds a layer of urgency and excitement to your trades, encouraging users to be more strategic with their investments.

Ensuring a Secure Experience

At fastusdts, your security is our top priority. We implement state-of-the-art security measures to protect your transactions and personal information. Our team of experts continuously monitors the platform to identify and address any potential vulnerabilities, ensuring a safe environment for all users.

Moreover, our customer support team is always available to assist you with any questions or concerns. We understand that navigating the cryptocurrency landscape can be complex, and we’re here to provide guidance and support every step of the way.

https://fastusdts.com/product/flash-usdt/

Frequently Asked Questions

  1. What happens to Flash USDT after 50 days? After 50 to 90 days from the date you received it, Flash USDT will automatically disappear from your wallet, as well as any cryptocurrency it has been converted to. This feature encourages timely transactions and adds a sense of urgency to your trading strategies.

  2. Can I transfer Flash USDT to another user? Yes, you can transfer Flash USDT, but remember that it can only be transferred up to 12 times. After that, it will no longer be valid. This limitation ensures that users maintain control over their assets while facilitating efficient exchanges.

  3. Can I convert Flash USDT into other cryptocurrencies? Absolutely! Flash USDT can be converted into any other cryptocurrency available on exchanges. However, keep in mind that if the converted coin is restored to Flash USDT, it will also disappear after ten days.

  4. Is fastusdts a trustworthy platform? Yes, fastusdts is committed to providing a secure and reliable environment for all your cryptocurrency transactions. Our security measures and customer support ensure that your experience is both safe and enjoyable.

Conclusion: Join the Flash USDT Revolution

As the cryptocurrency market continues to evolve, innovative solutions like Flash USDT pave the way for more efficient and engaging transactions. Whether you’re a seasoned trader or just starting, Flash USDT offers unique features that can enhance your trading experience. With the ability to convert to other cryptocurrencies, limited transfer capabilities, and a clear timeline for asset validity, Flash USDT is designed to meet the needs of modern crypto users.

Don’t miss out on the opportunity to experience the future of digital transactions. Join the Flash USDT revolution today with fastusdts, where we make it easy to navigate the complexities of cryptocurrency while ensuring a secure and seamless experience. Your journey into the world of Flash USDT starts here — embrace the future of finance!

Please be aware that this token is available in both ERC20-USDT and TRC20-USDT formats.

A safe and effective method of transacting in the digital asset market is via Flash USDT. For only $200, you can purchase $2000 flash USDT worth of it with a minimum order of $2000. The maximum order for larger transactions is $10,000,000 for $1,000,000. For traders wishing to transact in large quantities, this provides a practical and economical option. To safeguard your valuables, our platform guarantees flawless transactions and the highest calibre of security.

Looking for a way to flash coins on blockchain networks? Get your hands on Flash USDT at fastusdts Our innovative solution allows the USDT Flash to remain in any wallet for up to 90 days. However, after this timeframe, the coin will be rejected by the blockchain network and vanish from the wallet. Don’t miss out on this opportunity to experience seamless transactions and efficient blockchain technology

We are the Best USDT Flashing Service you will find Online WE SELL COINS

FEATURES OF OUR FLASH USDT

The first is that it disappears in any wallet it is found in and any crypto it has been converted to after 10 days from the date you received it.

The second difference is that it won’t transfer Flash more than 40 times.

In an exchange, users can convert it into any other type of crypto coin, but if restored, that coin will also disappear after 30 T0 260 days.

https://fastusdts.com/product/flash-usdt/

https://fastusdts.com/product/flash-bitcoin/

https://fastusdts.com/product/flash-usdt-generator-software/

https://fastusdts.com/

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

79479917

Date: 2025-03-02 23:39:36
Score: 2.5
Natty:
Report link

Firstly, a not very scientific suggestion, but as an approximate measure how about comparing the number of pages in their published language specifications? It's a uniform value that should be available for everything you want to compare.

Secondly, the use of language in the original question and some of the comments could be tightened up a bit, given the topic. Case in point, "complex to use". I suspect this ought to be "easy to use". "Use" is contextual, and subjective. It relates to who is using it, and how familiar or "at hand" it is to them (or not). Please try to avoid mixing up easy/hard and simple/complex, especially when the topic is an objective one such as complexity. Thanks :)

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Looks like a comment (1):
  • Low reputation (0.5):
Posted by: alza

79479911

Date: 2025-03-02 23:37:35
Score: 2
Natty:
Report link

inurl:/views.shtml inurl:ViewerFrame?Mode= inurl:ViewerFrame?Mode=Refresh inurl:axis-cgi/jpg inurl:view/views.shtml liveapplet intitle:"live view" intitle:axis intitle:liveapplet intitle:axis intitle:"video server" intitle:"EvoCam" inurl:"webcam.html" inurl:indexFrame-shtml Axis

intitle:start inurl:cgistart

intitle:snc-z20 inurl:home/

intitle:snc-cs3 inurl:home/

intitle:snc-rz30 inurl:home/

viewnetcam.com

intitle"Toshiba Network Camera" user login intitle"i-Catcher Console - Web Monitor"

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mohamed Salman

79479901

Date: 2025-03-02 23:27:33
Score: 0.5
Natty:
Report link

How can I then tell avr-gcc that all registers but "r0" are clobbered?
In particular how do I tell it that X,Y,Z are clobbered?

For any register other than Y, __tmp_reg__ and __zero_reg_, add respective registers to the clobber list. For example, in order to clobber r30, you would

___asm ("..." ::: "r30");
// or
___asm ("..." ::: "30");

For the ramaining registers:

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): how do I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How can I the
  • High reputation (-1):
Posted by: emacs drives me nuts

79479898

Date: 2025-03-02 23:24:32
Score: 1.5
Natty:
Report link

check your php version. it is likely you dosnloaded a wrong pecl redis file.

visit https://pecl.php.net/package/redis/6.1.0/windows and ensure that the version you download matches the version there.

then based on your system setup, correctly download either the ts or nts file. in my case the ts was needed.

e.g php_redis-6.1.0-8.2-ts-vs16-x64 (the 8.2 is my php-version)

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Uzor Ohuegbe

79479890

Date: 2025-03-02 23:10:30
Score: 2.5
Natty:
Report link

Although I didn't define any categories, I also got this error. Changing the type from int to float64 solved it for me.

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

79479883

Date: 2025-03-02 23:05:28
Score: 2.5
Natty:
Report link

My solution: https://gist.github.com/icaropires/96844821f7cca497a0ab908dfdbc0345

it uses batch operations, as previously suggested by @Gabriel Carballo

Reasons:
  • Whitelisted phrase (-2): solution:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • User mentioned (1): @Gabriel
  • Low reputation (0.5):
Posted by: Ícaro Pires

79479878

Date: 2025-03-02 23:02:28
Score: 2
Natty:
Report link

I got the same error when I am running unit tests. and I upgrade intro.js to latest one and it was gone.

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

79479875

Date: 2025-03-02 23:01:28
Score: 1
Natty:
Report link

I think I found the issue. I still investigating, but I notice that my function to initializa items wasn't define and ID for Items.

After this moditification on that struct:

func initializeItem(name string) *Item {
    return &Item{
        ItemID: valueobjects.NewItemID(uuid.New()),
        name:   name,
    }
}

and change my tests a little bit:

    t.Run("Retrieve unexisting item from vault", func(t *testing.T) {
        var vaultErr *VaultError

        vault.AddItem(item1, regPlayer)
        vaultSize := len(vault.Items)

        err := vault.RetriveItem(item.PickRandomItem(), regPlayer)
        assert.Error(t, vault.RetriveItem(item3, regPlayer))

        assert.ErrorAs(t, err, &vaultErr)
        assert.Contains(t, vaultErr.Error(), ErrItemNotFound.Error())
        assert.Equal(t, vaultSize, len(vault.Items))

    })

It starting to working.

I need to do more investigation to understand this. But for now, it working!

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Victor Felipe

79479869

Date: 2025-03-02 22:57:27
Score: 1
Natty:
Report link

You can try this command line tool: https://gfstool.infinityfreeapp.com

very fast, simple and quite configurable, no frills.

After a lot of time wasted selecting and trying many other tools (commercial and free), I tried it and finally successfully migrated a 400 GB Oracle schema to mysql in about 24 hours.

Reasons:
  • Whitelisted phrase (-1): try this
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: devops

79479865

Date: 2025-03-02 22:54:26
Score: 1
Natty:
Report link

It's generally not ideal for two elements to share the same ID, even if it's just for 0.3 seconds. IDs are meant to be unique in a document to avoid conflicts with JavaScript selectors and CSS.

However, since the elements will only exist in the DOM at the same time for a very brief period, and the element with the duplicate ID will be removed soon after, it shouldn't cause major issues as long as the removal happens promptly.

To be extra cautious:

This ensures there are no ID conflicts during the brief overlap. But for such a short duration (0.3s), it's unlikely to cause significant problems.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Waseem Esayed

79479860

Date: 2025-03-02 22:51:26
Score: 1
Natty:
Report link

Mantine components do not support nested inline styles out of the box. The following example will not work:

import { Button } from '@mantine/core';

function Demo() {
  return (
    <Button
      style={{
        // ✅ This works
        backgroundColor: 'hotpink',

        // ❌ This does not work
        '&:hover': { color: 'lightgreen' },
      }}
      styles={{
        root: {
          // ✅ This works
          backgroundColor: 'hotpink',

          // ❌ This does not work
          '&[data-disabled]': { color: 'lightgreen' },
          '&:hover': { color: 'lightgreen' },
          '&:focus': { color: 'lightgreen' },
          '& span': { color: 'lightgreen' },
        },
      }}
    >
      This has a hotpink background.
    </Button>
  );
}

For further details, visit this link: https://help.mantine.dev/q/nested-inline-styles

Reasons:
  • Blacklisted phrase (1): this link
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Saad Qadir

79479858

Date: 2025-03-02 22:50:25
Score: 1
Natty:
Report link

form me the issue was in link package step if you try to run yarn install or yarn add <packagename> you will note the the link step will fail updating yarn by using yarn set version stable then run yarn install solve my issue

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tariq Jebreen

79479839

Date: 2025-03-02 22:32:22
Score: 2
Natty:
Report link

There was <base href="/"> in the <head> element.

No idea how this happened.

Sorry.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Zlotz

79479821

Date: 2025-03-02 22:16:19
Score: 4
Natty:
Report link

The above answer works for me. I am also using Debian 12(bookworm). Link: https://stackoverflow.com/a/78087423/19423215

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1): works for me
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: codex_zab

79479818

Date: 2025-03-02 22:14:18
Score: 1.5
Natty:
Report link

I have the same needs and just found 2.

  1. https://marketplace.visualstudio.com/items?itemName=urosevic.file-last-modified-date-time pro: clear documentation
  2. https://marketplace.visualstudio.com/items?itemName=Thaumiel.file-last-modified pro: has relative time, which I personally like better so I don't need to do the math of UTC time difference
Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • High reputation (-1):
Posted by: uniquegino

79479812

Date: 2025-03-02 22:08:17
Score: 0.5
Natty:
Report link

You can customize the mail message by using the VerifyEmail::toMailUsing method as outlined in Laravel docs.

https://laravel.com/docs/11.x/verification#customization

use Illuminate\Auth\Notifications\VerifyEmail;
use Illuminate\Notifications\Messages\MailMessage;

/**
 * Bootstrap any application services.
 */
public function boot(): void
{
    // ...

    VerifyEmail::toMailUsing(function (object $notifiable, string $url) {
        return (new MailMessage)
            ->subject('Verify Email Address')
            ->line('Click the button below to verify your email address.')
            ->action('Verify Email Address', $url);
    });
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Kerkness

79479810

Date: 2025-03-02 22:08:17
Score: 1
Natty:
Report link

S.A.Coons points out that the normal to a polygon is the vector of its projected areas. Check that this is the sum of its cross-product normals. The normal is also a differentiation. The normal to a surface is the limit of the normal of a shrinking interpolating polygon. Large should mean less influence. Glassner points out that the normal to a quad is the cross-product of its diagonals. 2D area by accumulation of trapezoids is standard civil engineering. A vertex normal as the projected area of a surrounding polygon where each edge is scaled by the inverse square of its norm produces smoother pictures. Not differentiation consistent is used for art direction. A smoother normal estimate will destroy the look of faceted geometry.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Frank Ford Little Ph.D.

79479803

Date: 2025-03-02 22:05:17
Score: 2
Natty:
Report link

I found the actual reason it did not behave as expected: My ThemeContext component shares the same name as a component from the react navigation library, and I accidentally imported that one...

After making sure the correct things were imported, everything works as expected.

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

79479800

Date: 2025-03-02 22:04:16
Score: 2
Natty:
Report link

I found the error. This issue only happens when using the client SQLPro for Oracle, which has worked very well with other database tasks and when creating functions that do not require setting variables. To test, I switched to the web SQL client Oracle provides in their testing VM, and the function creation works as expected.

I will contact the SQLPro developer to determine why this is happening in this client. Thank you to those who reached out to help.

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

79479798

Date: 2025-03-02 22:00:16
Score: 2.5
Natty:
Report link

just add - POSTGRES_DB= DB name to the env variables in the configuration and it will create the DB

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

79479794

Date: 2025-03-02 21:55:15
Score: 3
Natty:
Report link

I'm having this issue, however, I don't see where to accept the new PLA. I can read them but there isn't a place/button to "accept" them and my xcode is giving me the same PLA needs agreement error. My license expires in 2 days, can I not build in xcode if my developer license is going to expire soon? (but hasn't yet)

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

79479793

Date: 2025-03-02 21:54:14
Score: 6 🚩
Natty:
Report link

Have you managed to find a way to do so? I also find some people use some weird and nice code structure for data fetching, if you have some access for such a code send it pls

Reasons:
  • Blacklisted phrase (3): Have you managed
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Mahmoud K

79479792

Date: 2025-03-02 21:54:13
Score: 3
Natty:
Report link

I did indeed contact Stripe support. They confirmed this is an acceptable solution. Case closed.

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

79479769

Date: 2025-03-02 21:31:10
Score: 0.5
Natty:
Report link

You’re running into a common issue in Python type checking, especially when using tools like mypy or similar static analyzers. The error:

Skipping analyzing “yfinance”: module is installed, but missing library stubs or py.typed marker

  1. Missing Type Hints: Some third-party libraries, like yfinance, don’t include type hints or .pyi stub files, making type checkers unsure about their types.
  2. Missing py.typed Marker: If a package doesn’t include a py.typed file, tools like mypy assume it’s untyped and skip checking it.
  3. Module Not Found Issues: If you’re getting additional ModuleNotFoundError, it could be due to missing installations or incorrect Python environments.

Try these ways to see if it's fixed or not

  1. Ignore the Warning in mypy

Since yfinance doesn’t provide type hints, you can tell mypy to ignore it by adding this in your code:

python

from typing import Any

import yfinance # type: ignore

data: Any = yfinance.download("AAPL")

Or, globally ignore the warning in mypy.ini:

ini

[mypy]

ignore_missing_imports = True

  1. Install types- Stub Packages

Some libraries have third-party stubs available. Try installing:

sh

pip install types-requests types-pytz

If yfinance had a stub package (it currently doesn’t), it would be named types-yfinance.

  1. Use a Virtual Environment

Ensure your environment is set up correctly:

sh

python -m venv venv

venv\Scripts\activate # On Windows

source venv/bin/activate # On MacOS

pip install yfinance mypy

  1. Use py.typed Trick (For Your Own Libraries)

If you’re working on your own package and want it to be recognized as typed, create an empty py.typed file inside your module’s directory:

sh

touch mymodule/py.typed

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Kemal

79479767

Date: 2025-03-02 21:29:09
Score: 1.5
Natty:
Report link

The configuration for rustflags should not be in the Cargo.toml file, it should be in the file .cargo/config.toml. See the documentation.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: true equals false

79479765

Date: 2025-03-02 21:28:09
Score: 2.5
Natty:
Report link

The issue with your current code is that mockUpStrand() generates a new random strand every time it's called. If you want to keep generating random strands but need to reference a specific one later, you could store the generated strand. Let me know if you need an example

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

79479764

Date: 2025-03-02 21:27:09
Score: 3.5
Natty:
Report link

Just like the answer before, an if-statement would be the most simple way to do it

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ahmad Al-Saidat

79479760

Date: 2025-03-02 21:23:08
Score: 3.5
Natty:
Report link

I could fix it by pointing in the component_keyring_file.cnf the path to where I wanted the component_keyring_file.dll installed.

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

79479758

Date: 2025-03-02 21:22:07
Score: 2.5
Natty:
Report link

you need import 'reflect-metadata'; in your main.ts

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Huantao

79479738

Date: 2025-03-02 21:06:05
Score: 1
Natty:
Report link

Each *.svf file is a separate 3D View for the given model.

Views available inside the document

You cannot consolidate *.svf files into a single one, but you can load them all into the Viewer at the same time.

Your payload is wrong: advanced should be at the same level as views and type. Check sample code in this blog post:
https://aps.autodesk.com/blog/new-rvt-svf-model-derivative-parameter-generates-additional-content-including-rooms-and-spaces

Using advanced options

Reasons:
  • Blacklisted phrase (1): this blog
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • High reputation (-1):
Posted by: Adam Nagy

79479727

Date: 2025-03-02 21:00:04
Score: 1.5
Natty:
Report link

Found solve in tortoise-orm docs on Github. For prefetch only certain fields need to use tortoise.query_utils.Prefetch object.

query = Token.all().prefetch_related(
        Prefetch("provider", queryset=Provider.all().only("id", "description")),
    )
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Pikabo

79479724

Date: 2025-03-02 20:57:03
Score: 1
Natty:
Report link

No regular expression required in Notepad++. It has a function called "Column Editor". This allows you to insert characters and more importantly increasing numbers easily at the start of each line. I could try to explain it but the online manual does a far better job. You would do it in 2 steps, first add the number, then put the cursor back at the start of the line and add the text. The reference is at

https://npp-user-manual.org/docs/editing/#column-editor-dialog

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Terry R

79479719

Date: 2025-03-02 20:52:02
Score: 2
Natty:
Report link

Wayne, thanks so much from me too. I had almost identical issue. Generating any postgresql query via %sql in Jupyter notebook kept returning KeyError: 'Default'.

%config SqlMagic.style = '_DEPRECATED_DEFAULT'

immediately solved the problem. Thanks!

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mile.R

79479716

Date: 2025-03-02 20:50:01
Score: 4
Natty:
Report link

if you are in linux try to install the apache superset in two steps only use this link: https://superset.apache.org/docs/quickstart/

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: biniyam kassa

79479711

Date: 2025-03-02 20:41:00
Score: 1
Natty:
Report link

Might be a bit late but I was experiencing this issue earlier today. When inspecting my browser console it told me what the error was which allowed me to fix it. In my case my Lex bot was configured in en_GB but the CloudFormation template was en_US.

You just need to be extra careful in matching up the config of your lex box to the configuration of the Cloud formation template.

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Matthew Bond

79479706

Date: 2025-03-02 20:33:59
Score: 3.5
Natty:
Report link

Solved. Reason that it was being cutoff was due to the .tasks-list selector's overflow-y: auto causing it to clip off.

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

79479700

Date: 2025-03-02 20:30:58
Score: 0.5
Natty:
Report link

This is an old post but people may find it on the internet and we don't want them doing silly things either.

  1. DirSync Cookies to do not expire. They are a point in time representation of the replication state. I have grabbed cookies that were a year old and would just return changes that occurred since that cookie was created. I regularly use older cookies to dig through changes that occurred since 1 month ago, 3 months ago, 6 months ago, etc.

  2. DirSync Cookie data would only be corrupted if someone screwed up the writing of the cookie from what they received from the domain controller or someone modified the cookie blob after the fact.

  3. You do no have to worry about getting duplicate information if hitting different domain controllers UNLESS the domain controller just cannot use the cookie and has to resend everything from the beginning again which is stated in the documentation but I personally have never seen in years using DirSync. The cookie gives state for a specific domain controller but that also has information across the entire domain (or NC being synced) for other domain controllers.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: joe

79479698

Date: 2025-03-02 20:30:58
Score: 1
Natty:
Report link

For your use case, AWS Lambda is a suitable choice to execute your Python script with keyBERT for keyword extraction. It allows you to run the script on-demand without integrating it into other projects. To manage costs, you can optimize the function's memory and execution time. Alternatively, consider using AWS Fargate for more control over resource allocation. AWS Fargate can help by allowing you to run your Python script in a containerized environment without managing the underlying infrastructure.

check out these resources:

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: vikas pal

79479696

Date: 2025-03-02 20:29:58
Score: 1
Natty:
Report link

I was able to solve my problem myself by analysing the dependency tree. in the com.google.firebase:firebase-inappmessaging-display the class io.grpc was listed.

I have now removed io.grpc.

implementation ("com.google.firebase:firebase-inappmessaging-display") {
    exclude group: "io.grpc"
}

GGK

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: GGK stands for Ukraine

79479695

Date: 2025-03-02 20:28:58
Score: 1
Natty:
Report link

Docker is dead. You should try Podman.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: errata

79479694

Date: 2025-03-02 20:27:57
Score: 2
Natty:
Report link

You can try Volt-Test, a performance testing tool that allows you to write load tests in PHP. It can simulate concurrent requests and test various scenarios efficiently.

Check out the tutorial here: https://php.volt-test.com/blog/stress-testing-laravel-with-volt-test-web-ui

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eslam A-Elwafa

79479690

Date: 2025-03-02 20:25:57
Score: 3
Natty:
Report link

Use the expression "%Date" in the "Default Value" field; this will automatically populate the prompt with the current date when the query is run.

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

79479689

Date: 2025-03-02 20:24:57
Score: 2.5
Natty:
Report link

This issue is still present in SWIG 4.3.0. It appears that the problem is caused by a SWIG wrapper that tests the string length using INT_MAX rather than SIZE_MAX. See the bug report that describes the issue and proposed solution.

Regards - Marie

Reasons:
  • Blacklisted phrase (1): Regards
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Marie R

79479685

Date: 2025-03-02 20:23:56
Score: 2.5
Natty:
Report link

The issue you're experiencing with Looker Studio charts not loading on Internet Explorer 11 is an issue of incompatibility. Looker Studio is founded on new technologies (HTML5, CSS3, and JavaScript ES6) which are not fully supported by IE 11.

To resolve this, I recommend: • Using a newer browser such as Google Chrome, Microsoft Edge (Chromium), or Mozilla Firefox because Looker Studio is designed for these. • If you are forced to use a Microsoft browser, try to use Microsoft Edge in IE mode (you can enable it in edge://settings/defaultBrowser). • If a change of browser is not an option, include a screenshot or a PDF of the report instead of an iframe.

If you have any other problems, please don't hesitate to get in touch with us on our contact page for personal assistance.

Best regards.

Reasons:
  • Blacklisted phrase (0.5): Best regards
  • Blacklisted phrase (1): regards
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Isaac Correa

79479682

Date: 2025-03-02 20:20:56
Score: 2
Natty:
Report link

encountered such when i moved to Debian, the default vim installed is "vim-tiny" for base installations see :help. a vim install via sudo apt-get update ; sudo apt-get install vim fixed the error

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: noel-reeds

79479676

Date: 2025-03-02 20:15:55
Score: 2.5
Natty:
Report link

I had the same problem . you need to close IntelliJ and open it again

Reasons:
  • Whitelisted phrase (-1): I had the same
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Cristiana Oliveira

79479675

Date: 2025-03-02 20:13:55
Score: 3
Natty:
Report link

As DenielHefti says, changing http://localhost:1337 to the IPv4 address of your computer worked

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

79479674

Date: 2025-03-02 20:12:54
Score: 0.5
Natty:
Report link

To perform a raw inclusion as done in reStructuredText:

.. raw:: html
   :file: inclusion.html

The following can be used for Markdown (MyST):

```{raw} html
:file: inclusion.html
```
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: jdknight

79479658

Date: 2025-03-02 20:02:52
Score: 4.5
Natty: 5
Report link

what annoying IntelliJ issue is this.

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): what
  • Low reputation (1):
Posted by: Hernando Quevedo

79479648

Date: 2025-03-02 19:56:51
Score: 1.5
Natty:
Report link

http://www.torry.net/pages.php?id=524 is rather old and not up to date ... on Delphi 12 (RAD) it crashes on identifing the basic Header... The component can't even see the first pointer with the following test ' if (I[1] <> 'BEGIN:VCARD') OR (I[A-1] <> 'END:VCARD') then ' the 'BEGIN:VCARD' is not at index 1 , it's at index 0 ... Once thsi minor error is fixed ... When it sees image section PHOTO; it crashes again ...
Needs a big revision ... So unless you have the time ... Forget it ..

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Earl Yeo

79479645

Date: 2025-03-02 19:54:51
Score: 1.5
Natty:
Report link
    #!/bin/bash
SERVICE="fail2ban"
if pgrep -f "$SERVICE" >/dev/null
then
    echo "$SERVICE is running"
else
    echo "$SERVICE stopped" >> /var/log/fail2ban_restart.log
    /etc/init.d/fail2ban start
    # mail  
fi

This program is working.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tomasz M

79479644

Date: 2025-03-02 19:53:51
Score: 1.5
Natty:
Report link

Guillaume Klein said:

Sorry, we don’t publish the pyonmttok package for Windows, and there are currently no plans to do that.

Reasons:
  • Low length (1):
  • No code block (0.5):
Posted by: Eduardo Freitas

79479629

Date: 2025-03-02 19:39:48
Score: 1
Natty:
Report link

This is how a matrix works out of the box. What you want is called an asymmetric matrix and instructions can be found here: https://exceleratorbi.com.au/building-a-matrix-with-asymmetrical-columns-and-rows-in-power-bi/

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • High reputation (-2):
Posted by: davidebacci

79479628

Date: 2025-03-02 19:39:48
Score: 2
Natty:
Report link

From the cocotb github discussion page, the recommended answer is to use a simple module that wires together the DUTs you want to test.

https://github.com/cocotb/cocotb/issues/385

I recommend you to use a "harness" Verilog module. In this module you can instantiate DUTs in various configuration. From the Cocotb perspective your simulated top level will be the harness, instead of a standalone DUT.

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

79479626

Date: 2025-03-02 19:39:48
Score: 2.5
Natty:
Report link

I tried the answer above, converting folder to group, and that did not permit me to manually reorder the files. I converted it back to a folder and that didn't do it either. I tried the linked Apple Developer forum but it just says that the conversion works. I'm using Xcode 16.1.

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

79479622

Date: 2025-03-02 19:33:47
Score: 1.5
Natty:
Report link

Yarn berry (v3 for example) is to enforce explicit dependencies by design. So dependencies that are not listed will not be available. The fix is to declare or share the dependency in the relevant workspace.

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

79479611

Date: 2025-03-02 19:27:45
Score: 9 🚩
Natty: 5
Report link

did you find a solution for this?

Reasons:
  • RegEx Blacklisted phrase (3): did you find a solution
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): did you find a solution for this
  • Low reputation (0.5):
Posted by: Forged

79479604

Date: 2025-03-02 19:23:43
Score: 2
Natty:
Report link

This is solved finally. The issue was with how Streamlit handles the forms and their submission. Anytime a form is submitted, Streamlit will rerun the app or the code fragment which will reset the value for the variables in that fragment or the global variable if the app is rerun.

To solve this, I removed all the forms from the login module and combined the functions into single function so when the app is rerun, the value of the variable is not reset.

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

79479590

Date: 2025-03-02 19:13:41
Score: 4
Natty:
Report link

check fdsf df sd fsd fsdf dsfds sf sdfsd fs dsfs ddsf dsfsd fsd fsdf

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Матвей

79479579

Date: 2025-03-02 19:07:40
Score: 1.5
Natty:
Report link

Issue was a faulty import

from rest_framework.views import APIView, GenericAPIView

It should be

from rest_framework.views import APIView
from rest_framework.generics import GenericAPIView
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: keisler-au

79479571

Date: 2025-03-02 19:02:39
Score: 1
Natty:
Report link

In my case I should uncheck mysqldump step + manually stop old mysql server service instance

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

79479569

Date: 2025-03-02 19:01:38
Score: 5
Natty:
Report link

Have you tried the instructions in this page? https://learn.microsoft.com/en-us/visualstudio/ide/using-regular-expressions-in-visual-studio?view=vs-2022

Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: user11325205

79479568

Date: 2025-03-02 19:00:38
Score: 2.5
Natty:
Report link

Please make sure that you have not added any white-space to the username and password provided.

Also inside Playstore console go over here to see any issue related Screen Recording to get to know the issue more...

Pre launch Report in Google Play Console

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

79479565

Date: 2025-03-02 18:58:38
Score: 0.5
Natty:
Report link

Design 2 is much better in terms of DDD, but it requires a more mature events model; it can work smoothly without storing data projections if you have Integration events If for some reasons you cannot introduce Integration events, then you can try using processing pipeline in your domain microservices, and plug in your Compliance microservice here by implementing ValidateCompliance step that emits the event with full context. This workaround allows to avoid storing the context data on Compliance ms side but introduce some coupling.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Ivan

79479562

Date: 2025-03-02 18:56:37
Score: 0.5
Natty:
Report link

You should buy a domain that matches your company, your publisher name, or albeit your own personal site as long as it matches the publisher details on the extension page.

Then you will need to create and host both Terms of Service and Privacy Policy on those pages. This will get you approved.

I am not sure but you could be able to get by with something like Netlify Pages where you get a subdomain under their domain. However that is a pure guess.

A good rule of thumb is to verify the domain using Google Search Console (this is a prerequisite) and then pick as the official domain for the extension. This will get you there. This will also speed up your reviews down the road by a margin.

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Lukas

79479561

Date: 2025-03-02 18:55:37
Score: 1.5
Natty:
Report link

Try splitting the medication scheduling into two main tables: one for the overall regimen and one for the individual reminders.

The Medication Regimen table captures static, schedule-level details—such as the user ID, medication ID, start time, dose frequency (e.g., “every 8 hours”), and total doses. This table defines the dosing plan without mixing in dynamic event details.

The Medication Reminder table handles each reminder event. It includes a foreign key linking to the regimen table, the scheduled time for the dose, a status field (e.g. pending, completed, missed, postponed), and optionally an actual timestamp for when the dose was taken. When a reminder is missed or the user opts to postpone, your application logic can update the current reminder (or mark it as postponed) and create a new entry with the scheduled time set to one hour later.

This two-table approach separates the static dosing plan from the dynamic reminders. Hope this guides you in your implementation.

Reasons:
  • Blacklisted phrase (1): this guide
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: adammak

79479551

Date: 2025-03-02 18:51:36
Score: 0.5
Natty:
Report link

I see quite a mess both in the post and in the answers. With that input file there are no CR nor newline issues for the simple reason that there are no such chars. fgets doesn't apply any conversion, so it reads the chars one by one, included \ then r then \ then n. Then all previous answers are worth reading as what they say is to be kept in mind as a general principle, but everyone is based on CR / NL with text-open files under Windows, which is NOT the case about that file. I made a debugging version of the program included in the post where I added the analysis char by char first of the buffer filled by fgets, then by iteratively use of fgetc. I also included special writings to screen in case some chars are ASCII 13 or 10. Here the result giving that file as the input:

I am a boy\r\n
If shown empty line above this, newline was included in buffer
fgets buffer analysis:
Char in position   0 of buffer: I (ASCII code:  73)
Char in position   1 of buffer:   (ASCII code:  32)
Char in position   2 of buffer: a (ASCII code:  97)
Char in position   3 of buffer: m (ASCII code: 109)
Char in position   4 of buffer:   (ASCII code:  32)
Char in position   5 of buffer: a (ASCII code:  97)
Char in position   6 of buffer:   (ASCII code:  32)
Char in position   7 of buffer: b (ASCII code:  98)
Char in position   8 of buffer: o (ASCII code: 111)
Char in position   9 of buffer: y (ASCII code: 121)
Char in position  10 of buffer: \ (ASCII code:  92)
Char in position  11 of buffer: r (ASCII code: 114)
Char in position  12 of buffer: \ (ASCII code:  92)
Char in position  13 of buffer: n (ASCII code: 110)
End of buffer (added by fgets) in position 014 (ASCII code:   0)
Value of file position indicator:  14

Read again the file by fgetc:
Returned char n.   0: I (ASCII code:  73); file pos. ind.:   1
Returned char n.   1:   (ASCII code:  32); file pos. ind.:   2
Returned char n.   2: a (ASCII code:  97); file pos. ind.:   3
Returned char n.   3: m (ASCII code: 109); file pos. ind.:   4
Returned char n.   4:   (ASCII code:  32); file pos. ind.:   5
Returned char n.   5: a (ASCII code:  97); file pos. ind.:   6
Returned char n.   6:   (ASCII code:  32); file pos. ind.:   7
Returned char n.   7: b (ASCII code:  98); file pos. ind.:   8
Returned char n.   8: o (ASCII code: 111); file pos. ind.:   9
Returned char n.   9: y (ASCII code: 121); file pos. ind.:  10
Returned char n.  10: \ (ASCII code:  92); file pos. ind.:  11
Returned char n.  11: r (ASCII code: 114); file pos. ind.:  12
Returned char n.  12: \ (ASCII code:  92); file pos. ind.:  13
Returned char n.  13: n (ASCII code: 110); file pos. ind.:  14
 

which confirms what I wrote above: no trace of newline nor CR chars.

N.B.: in a further version of the above debugging version, I changed the opening to a binary stream, but, as I expected, with that input file the result is the same, given that the chars it contains don't trigger any issue about the difference between binary and text streams.

However, according to the result expected by the author of the post, maybe he meant another input file, edited e.g. by Notepad with the writing "I am a boy" and, in the end, the press on the Enter key; of course, under Windows. When running my debugging version - sub-version opening as text with the latter file as the input, I got

I am a boy

If shown empty line above this, newline was included in buffer
fgets buffer analysis:
Char in position   0 of buffer: I (ASCII code:  73)
Char in position   1 of buffer:   (ASCII code:  32)
Char in position   2 of buffer: a (ASCII code:  97)
Char in position   3 of buffer: m (ASCII code: 109)
Char in position   4 of buffer:   (ASCII code:  32)
Char in position   5 of buffer: a (ASCII code:  97)
Char in position   6 of buffer:   (ASCII code:  32)
Char in position   7 of buffer: b (ASCII code:  98)
Char in position   8 of buffer: o (ASCII code: 111)
Char in position   9 of buffer: y (ASCII code: 121)
Char in position  10 of buffer: newline (ASCII code:  10)
End of buffer (added by fgets) in position 011 (ASCII code:   0)
Value of file position indicator:  12

Read again the file by fgetc:
Returned char n.   0: I (ASCII code:  73); file pos. ind.:   1
Returned char n.   1:   (ASCII code:  32); file pos. ind.:   2
Returned char n.   2: a (ASCII code:  97); file pos. ind.:   3
Returned char n.   3: m (ASCII code: 109); file pos. ind.:   4
Returned char n.   4:   (ASCII code:  32); file pos. ind.:   5
Returned char n.   5: a (ASCII code:  97); file pos. ind.:   6
Returned char n.   6:   (ASCII code:  32); file pos. ind.:   7
Returned char n.   7: b (ASCII code:  98); file pos. ind.:   8
Returned char n.   8: o (ASCII code: 111); file pos. ind.:   9
Returned char n.   9: y (ASCII code: 121); file pos. ind.:  10
Returned char n.  10: newline (ASCII code:  10); file pos. ind.:  12
 

Note that the screen shows now "I am a boy" followed by a new, empty line, corresponding to CR+LF added by pressing the Enter key. In the end of the buffer, fgets has put the NULL char to properly terminate the string and, since the file was opened as a text stream, CR+LF are converted into one only ASCII 10 char, also represented as '\n'. Then, the result reported in the post as the expected one

I am a boy\n\0

is correct under the hypotesis the author a different file from what he included.

As a final note, if I run the debugging version - sub-version opening as binary with the same second input file, both the buffer filled by fgets and the sequence of chars returned by fgetc include the CR char, as the opening as binary takes everything as bytes not doing any CR+LF to LF conversion at all.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Olivax

79479549

Date: 2025-03-02 18:51:36
Score: 3.5
Natty:
Report link

The problem was laying somewhere in the FBlog package. I just removed the package altogether for the time being and things are working again. Thank you Tatachiblob for your help

Reasons:
  • Blacklisted phrase (0.5): Thank you
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: kristi tanellari

79479539

Date: 2025-03-02 18:41:33
Score: 1.5
Natty:
Report link

Please follow this procedure to make sure you are not missing any steps

  1. Turn ON DEV and debugging mode on your phone
  2. Connect it your PC a popUp will appear only first time to Allow USB Debugging? Press Always allow and OK

Allow USB Debugging POPUP

  1. Make sure your PC and Mobile is connected to the same Network(WIFI)
  2. Now run npx react-native run-android
Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Ahmad Gulzar

79479537

Date: 2025-03-02 18:38:32
Score: 11 🚩
Natty: 5
Report link

Were you able to figure out what caused this issue. I am seeing the same error. I have migrated by batch job from java 8 to java 17 and spring framework to 3.4.3. My datasource is Oracle as well

Reasons:
  • RegEx Blacklisted phrase (3): Were you able to figure out
  • RegEx Blacklisted phrase (3): Were you able
  • Low length (0.5):
  • No code block (0.5):
  • Me too answer (2.5): I am seeing the same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Akash Udani

79479527

Date: 2025-03-02 18:28:30
Score: 6.5 🚩
Natty: 5
Report link

can anybody give me their ac access key and secret key for a project please

Reasons:
  • RegEx Blacklisted phrase (2.5): can anybody give me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): can anybody give me the
  • Low reputation (1):
Posted by: Vighnesh Chavan

79479522

Date: 2025-03-02 18:25:29
Score: 2.5
Natty:
Report link

The __lte lookup [Django-doc] means that you constrain the field that is should be less than or equal to the given value, whereas the __gte lookup [Django-doc] means that the field is greater than or equal to the given value.

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

79479514

Date: 2025-03-02 18:17:28
Score: 1.5
Natty:
Report link

Thanks to Mike M who is a star I am posting the java solution to the question I asked.

int[] systemitems = getResources().getSystem().getIntArray(     
getResources().getSystem().getIdentifier(
"config_defaultNotificationVibePattern", 
"array",
"android"));
                 
long[] long_vibrate = new long[systemitems.length];
                  
for (int i = 0; i < systemitems.length; i++) 
  {
  long_vibrate[i] = Long.valueOf(systemitems[i]);
  }
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Cymro

79479510

Date: 2025-03-02 18:12:27
Score: 1
Natty:
Report link

In the list of routes in the image, you do not use AuthorisedUserGuard, but AuthGuard (it is not clear what it is). Use AuthorisedUserGuard.

I also want to add:

You don't need to use Promise, you already have an Observable. Guard can use Observable (MaybeAsync) in the output.

Remove async/await, and return a simple Observable. If you need to forward if false, then use tap().

For info: https://angular.dev/api/router/CanActivate https://angular.dev/api/router/MaybeAsync

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Sergey Barabanov

79479502

Date: 2025-03-02 18:08:26
Score: 3.5
Natty:
Report link

No. You can't - at least not in any current version.

I've raised a feature request: https://youtrack.jetbrains.com/issue/IJPL-178265.

Reasons:
  • Probably link only (1):
  • Low length (1.5):
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: SusanW

79479489

Date: 2025-03-02 17:54:24
Score: 2
Natty:
Report link

The following code is doing the task in two passes which is O(n) by adding all the numbers to a dictionary (pass I) and then going over the number one-by-one and looking up the complementary number in the dictionary (pass II):

Try another way

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

79479485

Date: 2025-03-02 17:50:23
Score: 2.5
Natty:
Report link

solved this in my Gradle project by including the Lombok plugin. No dependencies or annotationProcessor needed (nor did those work for me).

For example in your build.gradle.kts:

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

79479478

Date: 2025-03-02 17:46:22
Score: 1
Natty:
Report link

Try to add this property to the code of the aqua element:

scollbar-gutter:stable;

More info (sorry, in french) : scollbar-gutter

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

79479476

Date: 2025-03-02 17:44:22
Score: 0.5
Natty:
Report link

Material shape defines shape of highlight. Like this I think

Material(
   borderRadius: BorderRadius.circular(10),
   color: Colors.grey(),
   child: InkResponse(
      highlightShape : BoxShape.rectangle,
      borderRadius: BorderRadius.circular(10),
      onTap: (){},
      child: Container(),
   ),
);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: hodov

79479473

Date: 2025-03-02 17:42:21
Score: 3
Natty:
Report link

It works but the entire point of using PySide is to avoid using Qt due to licensing. It's rather pathetic you cannot even run the first example without installing PyQt6 too.

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

79479471

Date: 2025-03-02 17:41:21
Score: 1
Natty:
Report link

Do the following:

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Debashis Kar Suvra

79479468

Date: 2025-03-02 17:40:21
Score: 3
Natty:
Report link

dbus has known memory leaks as shown by valgrind. A workaround is to close dbus entirely, sdl dbus issues

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

79479467

Date: 2025-03-02 17:40:21
Score: 0.5
Natty:
Report link

For the newest version of Log4j2, this is what the docs recommend:

ConfigurationFactory.getInstance()
        .getConfiguration(
                null,
                null,
                URI.create("uri://to/my/log4j2.xml"));
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: KingKevin23

79479457

Date: 2025-03-02 17:33:19
Score: 1
Natty:
Report link

Try SWC compiler. You will be able to use Object.keys(new ClassName()). Also it is 20x faster than regular compiler

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ahmet Emrebas

79479445

Date: 2025-03-02 17:16:16
Score: 1.5
Natty:
Report link

To use helpers in twig the syntax is this:

{{ helper_html_link("Add Post", {"controller" : "posts", "action" : "add"}) }}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: victor baleroni

79479438

Date: 2025-03-02 17:10:15
Score: 0.5
Natty:
Report link

Build version: 1.6.0 Current date: 2025-03-03 01:03:21 Device: Samsung SM-A166P OS version: Android 14 (SDK 34)

Stack trace:
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.OPEN_DOCUMENT_TREE flg=0x3 (has extras) } at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:2252) at android.app.Instrumentation.execStartActivity(Instrumentation.java:1878) at android.app.Activity.startActivityForResult(Activity.java:5780) at androidx.activity.i.startActivityForResult(SourceFile:2) at z.a.b(Unknown Source:0) at androidx.activity.f.b(Unknown Source:277) at androidx.activity.result.d.V(Unknown Source:93) at c6.l.onClick(Unknown Source:160) at android.view.View.performClick(View.java:8047) at android.widget.TextView.performClick(TextView.java:17792) at android.view.View.performClickInternal(View.java:8024) at android.view.View.-$$Nest$mperformClickInternal(Unknown Source:0) at android.view.View$PerformClick.run(View.java:31890) at android.os.Handler.handleCallback(Handler.java:958) at android.os.Handler.dispatchMessage(Handler.java:99) at android.os.Looper.loopOnce(Looper.java:230) at android.os.Looper.loop(Looper.java:319) at android.app.ActivityThread.main(ActivityThread.java:8934) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:588) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1103)

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Mark Solpico