79205117

Date: 2024-11-19 21:35:34
Score: 1
Natty:
Report link

I was running into the same issue and my issue was using x:Bind.

I needed to use Binding and change the Mode:

<TextBlock Name="avgTimeDisplay" Text="{Binding AvgTime, Mode=TwoWay}" Visibility="{Binding LabelVisible, Mode=TwoWay}" ></TextBlock>

This along with setting my ViewModel:

public string AvgTime
{
    get => avgTime;
    set => SetProperty(ref avgTime, value);
}
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Queen Mochi

79205114

Date: 2024-11-19 21:34:33
Score: 1
Natty:
Report link

Objective-C version of UIMenuSystem.main.setNeedsRebuild() :

 [UIMenuSystem.mainSystem setNeedsRebuild];
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Lewis Edward Garrett

79205109

Date: 2024-11-19 21:33:33
Score: 3.5
Natty:
Report link

I figure it out. I just had to change the "Select" to text mode from "Key Value Mode" and specify the SharePoint field. This removed the column header and just gave me the values. enter image description here

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Doug Punchak

79205101

Date: 2024-11-19 21:31:33
Score: 3
Natty:
Report link

I can strongly recommend trying chatGPT. Quite sure it will help your cause.

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Martijn Jan Jaap de Bruin

79205096

Date: 2024-11-19 21:28:32
Score: 0.5
Natty:
Report link

Using some cool binary operands, you could also do something like:

const capitalizeFirstLetter = (str) =>
  str ? String.fromCharCode(str.charCodeAt(0) & ~32) + str.slice(1) : '';

But this seems excessive.

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

79205092

Date: 2024-11-19 21:27:31
Score: 1
Natty:
Report link

Escape the underscore.

SELECT *
FROM Table_1
WHERE permitJSON LIKE '%contract[_]permitid%'  
   OR permitJSON LIKE '%contract[_]eid%'
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: keithwalsh

79205089

Date: 2024-11-19 21:26:31
Score: 2
Natty:
Report link

Ensure the inner loop increments correctly with j++. Keep the condition j <= i in the inner loop. Avoid accidental modifications to loop control variables (i or j) inside the loops.

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

79205077

Date: 2024-11-19 21:22:28
Score: 1
Natty:
Report link

Adding brackets in the condition statement will solve this error.

{(password !== "") && (
  <div className="col-start-2 col-span-3">
    <ValidationList rules={passwordRules} value={password} />
  </div>
)}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: bakiiun

79205072

Date: 2024-11-19 21:21:28
Score: 1
Natty:
Report link

is there any better way to do ?

I believe there is - it is mixed reset.

Let's imagine your head is on commit_B. The commands to execute are the following:

  1. If commit_A is not the first commit in your repo, you need to reset
    your head to state preceding to it: git reset [--mixed] HEAD~~

    Now all the changes you made within the last two commits are in working tree, but not in stage area.

  2. Stage fileB: git add fileB and commit git commit -m 'fileB'

  3. Stage the rest: git add . and commit git commit -m 'A,C,D files'

  4. If your old commits are already on remote repo, you have to rewrite history there too:
    git push --force

Voila, it should work.
Usually git allows to do many things in different ways, so often it is just a matter of preference or how good you own the stuff (like in git checkout vs git switch).
The same is for rebase/merge, rebase/reset, et cetera.

For example, git rebase is often used for squashing commits, but it does not preserve dates (the result will have the date of the oldest commit), but git reset --soft doesn't have such problem.

Reasons:
  • Blacklisted phrase (1): is there any
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): is there any
  • Low reputation (0.5):
Posted by: Ryan

79205066

Date: 2024-11-19 21:18:27
Score: 1
Natty:
Report link

2024 Manual

Installation guide from scratch

In this manual I will describe the way to install ZipWriter from the first to the last step. It will include lua + luarocks download and screenshots. ZipWriter supports lzlib rock which doesn't require manual library compilation.

You will need Git Bash (installed with Git automatically).

This guide doesn't work on PowerShell.

Make sure you install 32bit version.

Preparations (skip if it is the first time you install Lua)

  1. Project directory clear up
    • Delete lua_modules if exists
    • Delete .luarocks if exists
    • Delete .luarocks in %UserProfile% dir if exists
    • Make sure that .gitignore file ends with new empty line
  2. Remove all related directories from PATH variable

Download

  1. Create path for lua and luarocks binaries: C:\lua (to suit this guide)
  2. Download lua-5.3.x_Win32_bin.zip and lua-5.3.x_Sources.zip where x is the latest patch version from https://luabinaries.sourceforge.net/download.html
  3. Download i686-14.2.0-release-win32-dwarf-msvcrt-rt_v12-rev0.7z for dependencies compilation from https://github.com/niXman/mingw-builds-binaries/releases (link source https://www.mingw-w64.org/downloads/)
  4. Unpack everything to see the following result

C:/lua directory structure

Configuration

  1. Add following directories to the PATH variable:
C:\lua
C:\lua\mingw32\bin
C:\lua\mingw32\i686-w64-mingw32\bin

PATH variable

  1. Open Git Bash in the project directory
  2. Execute following commands:
luarocks config lua_version 5.3
luarocks config variables.LUA_INCDIR "C:\lua\lua53\include"
luarocks init
luarocks install lzlib ZLIB_DIR="C:\lua\mingw32\i686-w64-mingw32"
luarocks install zipwriter

Execution results

Further usage:

./lua.bat your_script.lua
Reasons:
  • Blacklisted phrase (1): This guide
  • Blacklisted phrase (1): this guide
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Orachigami

79205065

Date: 2024-11-19 21:18:27
Score: 1.5
Natty:
Report link

Replace :id with the actual id can solve the problem.

I came across this question when I search for ID Photo API. If anyone else is looking for ID Photo API, idphoto.ai is a good choice.

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

79205062

Date: 2024-11-19 21:17:27
Score: 2.5
Natty:
Report link

I'm pretty new to HTML and CSS myself, but from what I know, the image has to be in the same folder and have the .html in the image's file name. It should be relatively simple to move the image's location, so no need to stress there. It will also help to shorten the image's link. Here's an example tag:

<(img src="cvpfp.html.jpeg" alt="Profile Picture">

(Please don't include the parentheses in the tag, that just helps it show up on stack overflow) In this case, I had emailed the image to myself from my phone and downloaded it. my source consists of the file name, the document type, and the image type.

I really hope this helps! Please let me know if I can clarify anything or answer any other questions.

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Andie Childress

79205059

Date: 2024-11-19 21:16:26
Score: 1
Natty:
Report link

CheckedChanged is triggered when Checked state changes. Changing from Checked to Unchecked is a change, and changing from Unchecked to Checked is a change too. This is the reason why you see two notifications.

It looks like your code can already deal with that. But you could get read of "foreach" cycle if you use RadioButton control instead of Checkbox. If you select any RadioButton, all other RadioButtons in the same container will be uchecked automatically. If you have two separate groups of RadioButtons on the same form, you can put one of the groups (or both) inside GroupBox or Panel.

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

79205057

Date: 2024-11-19 21:15:26
Score: 2.5
Natty:
Report link

Exact same error for me, using eas build. Started when upgraded to expo 52

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

79205051

Date: 2024-11-19 21:13:26
Score: 1
Natty:
Report link

This might do the trick

SELECT
 DATE(rental_date) AS 'Rental date',
 COUNT(*) AS 'Count'
FROM rental
GROUP BY
 DATE(rental_date)
ORDER BY COUNT(*) DESC
LIMIT 1
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anubhav Sharma

79205047

Date: 2024-11-19 21:09:24
Score: 5.5
Natty:
Report link

My company is currently asking this exact question. I am looking at it from the perspective of keeping the Develop branch clean of feature issues. My proposal is to pull origin/develop into the feature. Then having a review on the feature branch if all is good, we take the changes back into origin/develop. if the review fails just continue work on the feature. I am thinking about keeping feature work out of development to keep features running in parallel. What @Arthur what did your company end up going with?

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • User mentioned (1): @Arthur
  • Single line (0.5):
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Jose

79205043

Date: 2024-11-19 21:08:24
Score: 2
Natty:
Report link
tuple = (1, 2, 3, 4)

index = 0
while index < len(tuple):print(tuple[index])index += 1
    
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SACHIN KUMAR

79205036

Date: 2024-11-19 21:05:23
Score: 4
Natty:
Report link

Same error. It Started happening since I updated the expo to 52

Reasons:
  • RegEx Blacklisted phrase (1): Same error
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: שלו כהן

79205029

Date: 2024-11-19 21:01:22
Score: 8.5 🚩
Natty: 4
Report link

I have this same issue after using the Upgrade Assistant to upgrade from 4.8 to 8.0 Most of the variables in the Post Build events no longer work. I was using $(ProjectDir), $(OutputPath), $(TargetPath), And $(ProgramData) and it appears that none of these work anymore, in this project. $(ProgramData) is working. Has anyone found a solution to fix the existing project without building a new one?

Reasons:
  • Blacklisted phrase (2): anyone found
  • RegEx Blacklisted phrase (3): Has anyone found
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Bret Thompson

79205028

Date: 2024-11-19 21:01:21
Score: 2.5
Natty:
Report link

(Posting this here in case this is useful to someone who comes across this thread)

If you're willing to use R, I wrote a script to parse RRC UIC data (in ASCII format) into something more user friendly. You can find it here on GitHub: https://github.com/tweiglein-eip/tx-rrc-uic-data-analysis

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

79205026

Date: 2024-11-19 20:59:20
Score: 4
Natty:
Report link

put CELERY_RESULT_EXTENDED = True in my settings.py and restart the workerd for me!

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

79205025

Date: 2024-11-19 20:59:20
Score: 1
Natty:
Report link

It is unlikely that anyone can answer this question without conducting research. On the one hand, how you checked outgoing links is unknown - and whether you did it correctly. On the other hand, I do not see the body of the letter. Also, it is likely that additional factors not indicated in this example can be discovered when researching the issue. Conclusion: I understand that you may not like my answer - however, you probably need to pay someone with experience in similar situations to research this situation and find possible solutions on your side.

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

79205019

Date: 2024-11-19 20:57:19
Score: 2
Natty:
Report link

Assuming "pluginId" property is set to "newplugin-backend", I think you should remove "/api/newplugin-backend" from "path" value like so:

httpRouter.addAuthPolicy({ path: '/applications', allow: 'unauthenticated', });

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

79205012

Date: 2024-11-19 20:55:19
Score: 0.5
Natty:
Report link

Take this as an example here. You've got to weigh two approaches on how best to handle the spread of pilot data between two microservices - Microservice A handling information about employees and pilots, and Microservice B handling bookings - both of which have trade-offs in terms of complexity over performance, with consequences for data consistency and adherence to the principles of microservice architecture. Let's break these apart and look at what would be the best one for the situation:

  1. Microservice B - Copilot Table in Transfer from A With this, Microservice B would then expose Pilot table as a view of the data in Pilot and Person table of Microservice A. The said table would update via a subscription to events on creation or update of pilot within Microservice A.

Advantages: Decoupling of Microservices: Here, the Microservice B will not rely on Microservice A totally because it will have a duplicate copy of the pilot information necessary. Read Efficiencies: Microservice B can read pilot data directly so will be pretty efficient for reads against bookings without crossservice calls. Disadvantages Data Duplications and Synch: Bringing data duplication between services introduces the need to maintain consistency and carry on updating your data in Microservice B as soon as updates are made to Microservice A through events or otherwise. It adds a bit of complexity concerning eventual consistency handling. More Coupling: You'd have synchronization, error handling as well as potentially race conditions depending on whether the data in A and B get out of sync. Violates one principle of Microservices: Critical business data such as pilot data can't be duplicated in multiple microservices since it violates the Single Source of Truth principle; hence, deep synchronization mechanisms are also required. 2. R&D Both Pilot and Person Tables of Microservice B Duplicate Data Ends This will replicate Pilot and Person in Microservice B, that will contain the full details of the pilot along with his person; these can be used in a booking operation.

Benefits Autonomy: Microservice B will have all information needed to be there for its bookings to be serviced without having to make calls outside of itself for that functioning. Fast Reads: All operational support data for reservation booking will now come from a single database. It will result in reduced query latencies related to booking data. Weaknesses This means heavy data duplication: you are duplicating Person and Pilot and, therefore, redundantly represent data which will inevitably be exposed to inconsistency. High Complexity When data is duplicated in two places, it becomes impossible to maintain. It is so complex that the company has to check for updates of the pilot data at Microservice A in Microservice B. As the scalability of the system grows, it is complex as well as buggy. In fact, this is against the Single Source of Truth principle. Because you are holding data in the form of duplications, things should be held differently in microservices architecture. 3. In the Microservice B, retain to PilotId-Without Dups The bookings table in Microservice A has only one pilot id while at the email job by Microservice B, all pilot details like name and email address are fetched from Microservice A whenever in demand. Benefits: Duplicated pilot data: in the Microservice B, you don't duplicate pilot data; the actuality remains within the Microservice A. This really goes well with the principle of the Single Source of Truth. Smooth management of data: since pilot data will not be maintained in any local copy, there isn't a question of keeping it in sync, ensuring data consistency, and even stale info-related problems in the case of Microservice B. Microservice Independence: Since microservice B is independent, the pilots' information may continue running even if the pilot information were not in a need for constant synchronization or maintenance. Disadvantages Performance: That would then lead to a problem with latency because Microservice B would always have had to make a remote call to Microservice A in order to get any of the pilot information. This would then lead to performance bottlenecks that scale with traffic, as well, when such calls started to happen too often-for example, for every booking and email job. Possible Dependence of Microservice A: Since Microservice B depends on real-time data from Microservice A, if Microservice A becomes unavailable or not real-time in nature, then Microservice B will get impacted. Again, this can be handled by the use of the cache and fallback technique, wherein pilot data can be cached locally for some period. The right thing to do While attaining this balance between these trade-offs, approach 3Store only the pilotId and fetch the data on demand seems to be just right for your application with respect to the following reasons:

No data duplication: He does not store duplicate pilot data-a microservices principle-no single point of truth for any piece of data. Less Management of Synchronization, Updates, or Stale/Inconsistent State: Since you do not rely on data in Microservice A, you do not need to manage synchronization, updates, or risks of stale or inconsistent state between services. Microservices Decoupling: In figure above, microservice B is decoupled less tightly from microservice A. That is a good practice in general for microservices architecture. Scalability: On the performance side, there would be minor issues, since this is an outgoing call to Microservice A, and these can be mitigated by caching (such as pilot information for caches in Microservice B for a limited amount of period) or making this more asynchronously event-driven for purposes such as email sending.

Problem: Performance

If you are expecting high volume bookings and pilot lookups frequently then at least the above reasons do address some of the performance issues which may then arise. Caching : Cache the pilot data in Microservice B or even better some external caching layer like Redis, so that for a time period, say 5-10 minutes, multiple calls are not going to hit Microservice A using the same pilot. Batch/Async: Assume the sending job of emails can tolerate eventual consistency and see if this is possible as a batch job or event-driven approach with pilot details fetched asynchronously or staying in some form of cache for the duration of a job. Overall, Approach 3 best balances maintainability, microservice principles, and flexibility while amply accounting for scalability and data consistency concerns in time.

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

79205010

Date: 2024-11-19 20:54:19
Score: 0.5
Natty:
Report link

If i understand correctly:

You want to reset the store and the state feature to there initial values?

You can add to your StoreFeature a Reset() method that will set the state to it's initial values

export function withMySignalState() {
return signalStoreFeature(
    withState(additionalStates),
    WithMethods(store=>({
    reset():void{
      patchState(store,additonalStates);
    }
    }))

And in the store just

export const MyStore = signalStore(
{ providedIn: 'root' },
withState(initialValues4Store),
withMySignalState(),
WithMethods(()=>({
resetStore():void{
 patchState(store,initialValues4Store);
 reset()://comes from the store feature
}
}))
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: BarakD

79205008

Date: 2024-11-19 20:53:18
Score: 0.5
Natty:
Report link

Create a workflow to control updates: Use a workflow that can be obtained from a solutions marketplace. This workflow is responsible for managing information updates. Its main function is to ensure that, in the event of any changes to the data, all users or interested parties are notified. This could be implemented using automation tools or collaborative management platforms that allow configuration of notifications and conditional flows based on data changes. Develop a Job for data synchronization: This Job must be created within the data integrator (probably an ETL or integration tool) to transfer information from Jedox (a data management and analysis platform) to Tableau (visualization tool). This process would involve: Set up connections between Jedox and Tableau. Establish data transformation or mapping rules, if necessary. Schedule periodic or event-based execution of the Job to keep data synchronized. Integrate the Job into the workflow at the last level of validation: Within the workflow, a validation structure is defined by grades or levels. Users can set these grades to verify and approve information at different stages. At the last authorization level, a button is added that triggers the execution of the Job created in the previous step. This ensures that data is synchronized only after passing through all required validation and approval stages. Integration may involve using an API or connector that allows the workflow to communicate directly with the data integrator to activate the process.

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Carlos Alan Camacho Ruelas

79205007

Date: 2024-11-19 20:53:18
Score: 1
Natty:
Report link
from bs4 import BeautifulSoup
links = [div.find_all("a") for div in soup.find_all("div", class_="va-columns")]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: eternal_white

79204993

Date: 2024-11-19 20:46:17
Score: 2
Natty:
Report link

while you send iso8583 track2 to server, it can be ascii or BCD. in some cases its BCD.

hex of '=' character is 0x3d . in my experience '=' character should be nibble of 0x3d which it is 0xd or 12 in decimal.

e.g: 0x3d & 0x0F = 0xd;

hope it can be helpful.

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

79204990

Date: 2024-11-19 20:45:17
Score: 3.5
Natty:
Report link

On a 64 bit system, with dotnet core 8, it is 32767 (short.MaxValue)

https://github.com/dotnet/runtime/blob/main/src/libraries/System.Private.CoreLib/src/System/Threading/PortableThreadPool.cs#L23

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

79204972

Date: 2024-11-19 20:37:15
Score: 3
Natty:
Report link

Make sure you installed the correct certs otherwise it will not work (Read their section on ssl). You can also look at mitmproxy.org as an alternative.

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

79204971

Date: 2024-11-19 20:37:15
Score: 1.5
Natty:
Report link

It worked for me following the steps from bjcube

Reasons:
  • Whitelisted phrase (-1): It worked
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Jacques

79204965

Date: 2024-11-19 20:34:14
Score: 5.5
Natty:
Report link

I started getting the exact same error in my Blazor app a few days ago as well. It's driving me nuts. I'm using .net9

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): getting the exact same error
  • Single line (0.5):
  • Low reputation (1):
Posted by: Drew Mcpherson

79204960

Date: 2024-11-19 20:33:13
Score: 2.5
Natty:
Report link

I recommend you should use SMOTE for oversampling or under sampling or you shuffle your data before splitting and use Stratified K fold cross validation which helps to ensure each fold has the same proportion of classes

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

79204946

Date: 2024-11-19 20:30:13
Score: 1
Natty:
Report link

Add a udev rule:

SUBSYSTEM=="dvb", TAG+="systemd"

It triggers systemd services, when devices in the dvb subsystem are added or removed

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

79204930

Date: 2024-11-19 20:19:10
Score: 3
Natty:
Report link

The issue is because the os.rename only works if my source and destination are on the same file system (same server) since my locations are mounted differently this does not work. Since moving the source folder to the same server as my destination this now works.

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

79204929

Date: 2024-11-19 20:19:10
Score: 1.5
Natty:
Report link

I recently had similar problem.

It might be solution

JwtModule.register({
  global: true,
  secret: "secret",
  signOptions: { expiresIn: "1d" },
}),

just add global: true

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

79204928

Date: 2024-11-19 20:19:10
Score: 3
Natty:
Report link

Well this is quite a late answer, but when you run xbindkeys -h you will get this help menu:

enter image description here

As you may notice, you can just run xbindkeys -mk on a terminal, try and press the "middle button click". It will show which key has been pressed and use its name on the binding for your .xbindkeysrc

Reasons:
  • Blacklisted phrase (1): help me
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: xarxax

79204927

Date: 2024-11-19 20:19:10
Score: 0.5
Natty:
Report link

Okay, in the end I fixed the issue by clearing all cloud synced settings and then re-enabling syncing afterwards. This time when I went on to uninstall extensions these changes actually synced to the cloud correctly.

Reasons:
  • Whitelisted phrase (-2): I fixed
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: rkajatin

79204925

Date: 2024-11-19 20:18:10
Score: 0.5
Natty:
Report link

Your js only needs to be:

function add(num) {console.log(num)}

Waiting for dom load doesn't seem relevant as the function is only called after the buttons have become visible to the user.

I have tested it & it runs very nicely.

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

79204916

Date: 2024-11-19 20:15:08
Score: 4.5
Natty: 4.5
Report link

How come this is still not possible? A serious flaw in the language.

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

79204910

Date: 2024-11-19 20:14:08
Score: 1.5
Natty:
Report link

i know it is an old post, but i have a problem which is related.

I can create a broadcast and bind it the a stream, that works just fine. I have set enableAutoStart to true and"monitorStream": {"enableMonitorStream": False} If I start sending data to that stream after I created the broadcast, the broadcast advances and starts just fine.

The problem is if i am already sending data to that stream before i created the broadcast, it never advances.

The broadcast status is stuck on ready. The Stream status is active

If i try to manually advance the broadcast to tesing or live it fails Encountered 403 Forbidden with reason "invalidTransition"

Is it simply not possible to auto-start a broadcast if data is already sent to it or is there a way to get the broadcast to go live even if data is sent to the stream before the broadcast was created?

Changing to "monitorStream": {"enableMonitorStream": True} had no effect.

Reasons:
  • Blacklisted phrase (1): is there a way
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Darter

79204909

Date: 2024-11-19 20:14:08
Score: 2
Natty:
Report link

Install new backpack

npm install --save @skyscanner/backpack-web
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user27403069

79204901

Date: 2024-11-19 20:10:07
Score: 3
Natty:
Report link

May I learn the connector that you used on A3 flight controller API port? I could not find a part number or a recommendation for this.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Adem şahin

79204898

Date: 2024-11-19 20:09:06
Score: 0.5
Natty:
Report link
Box(
  modifier = Modifier
      .fillMaxWidth()
      .fillParentMaxHeight()
      .padding(16.dp),
  contentAlignment = Alignment.Center
) {
  CircularProgressIndicator(
      color = Color.White,
  )
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: GawiSh

79204891

Date: 2024-11-19 20:06:06
Score: 5
Natty: 4
Report link

I´m having the same problem and I can't see where the error is. My code:

def funcion_decoradora(funcion_parametro): def funcion_interior(*args): print("Vamos a realizar un cálculo: ") funcion_parametro(*args) print("Hemos terminado el cálculo") return funcion_interior()

@funcion_decoradora def suma(num1, num2, num3): print(num1+num2+num3)

print()

@funcion_decoradora def resta(num1, num2): print(num1-num2)

suma(7,5,8)

resta(4,9)

Reasons:
  • No code block (0.5):
  • Me too answer (2.5): having the same problem
  • User mentioned (1): @funcion_decoradora
  • User mentioned (0): @funcion_decoradora
  • Low reputation (1):
Posted by: Victor Vacca

79204886

Date: 2024-11-19 20:04:04
Score: 4
Natty:
Report link

how to override above inside custom theme or custom module

Reasons:
  • Low length (1.5):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): how to
  • Low reputation (1):
Posted by: Nihal Shantha

79204885

Date: 2024-11-19 20:04:04
Score: 1
Natty:
Report link

Most of the answers here work well, but I don't see anyone mentioning that you can accomplish this very simply without needing to define extra JS elsewhere.

Essentially, the accepted answer can be condensed into just this:

<input value="Click me to select!" onfocus="this.select()" />

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

79204882

Date: 2024-11-19 20:03:04
Score: 0.5
Natty:
Report link

I know this Question is a older. But for people like me who are still searching for an answer. This is the solution. You are searching for the gapPadding in the focusedBorder BorderStyle.

const InputDecoration dialogPointInputStyle = InputDecoration(
  isDense: true,
  border: OutlineInputBorder(
    borderSide: BorderSide(color: CaboTheme.tertiaryColor, width: 2),
  ),
  enabledBorder: OutlineInputBorder(
    borderSide: BorderSide(color: CaboTheme.tertiaryColor, width: 2),
  ),
  focusedBorder: OutlineInputBorder(
    borderSide: BorderSide(color: CaboTheme.tertiaryColor, width: 2),
    gapPadding: 0,
  ),
  contentPadding: EdgeInsets.all(8.0),
  filled: true,
  fillColor: CaboTheme.secondaryColor,
);
TextField(
 keyboardType: TextInputType.number,
 onChanged: (String points) {},
 minLines: 1,
 style: const TextStyle(
   fontSize: 18,
   fontFamily: 'Aclonica',
   color: CaboTheme.primaryColor,
 ),
 decoration: dialogPointInputStyle.copyWith(
   labelStyle: CaboTheme.secondaryTextStyle.copyWith(
   fontSize: 14,
   color: CaboTheme.primaryColor,
   backgroundColor: CaboTheme.tertiaryColor,
 ),
 labelText: 'Max. Game Points'),
),

enter image description here

Reasons:
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Buggxs

79204876

Date: 2024-11-19 20:01:04
Score: 2
Natty:
Report link

I spent an hour to find out how to fix that problem, when I finally realized that I plugged my phone to get charged into the same computer I work on while using the emulator.

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

79204870

Date: 2024-11-19 19:58:02
Score: 4
Natty:
Report link

JS doesn't quite follow IEEE 754. For example the specification says that 1 ** NaN should equal 1, but in JS it is NaN. See: Why does IEEE 754 define 1 ^ NaN as 1, and why do Java and Javascript violate this?

Reasons:
  • Probably link only (1):
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Isaac King

79204867

Date: 2024-11-19 19:56:02
Score: 1.5
Natty:
Report link

Add this in styles.scss

.p-timeline-event-opposite {
  display: none !important;
}

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

79204858

Date: 2024-11-19 19:53:01
Score: 2
Natty:
Report link

The body of your Send an HTTP request to SharePoint action is just a little bit off. Here JSON body package I used to successfully create a lookup column in a SharePoint document library using Power Automate:

{
  'parameters': {
    '__metadata': {
      'type': 'SP.FieldCreationInformation'
    },
    'FieldTypeKind': 7,
    'Title': '<your column title>',
    'LookupListId': '<your lookup list ID>',
    'LookupFieldName': '<your lookup column name>'
  }
}

You didn't mention what endpoint you were using, but for this example I used _api/web/lists/getbytitle('<your document library title')/fields/addfield

Also, be sure your action's method is set to POST and you have the following headers:

accept: application/json;odata=verbose
content-type: application/json;odata=verbose

Please let me know if this works!

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let me know
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: beelow

79204850

Date: 2024-11-19 19:49:00
Score: 1.5
Natty:
Report link

1-In the parent form, include a button or a link that navigates to the child list. Pass the parent ID as a request parameter in the URL, for example:/childListPage?id_parent={parent_id} 2-In the child list, modify the Add button to include the id_parent parameter in its URL. Use a distinct parameter name (e.g., id_parent) to avoid conflicts. Example URL:/childFormPage?&id_parent="requestParam.id_parent" 3-In the child form, add a hidden field called id_parent. Set the default value of this field to the id_parent parameter from the URL using a hash variable:#requestParam.id_parent# 4-When displaying the child list, filter records to show only those related to the current parent. If using a JDBC datalist binder, add a filter condition in the query:SELECT * FROM child_table WHERE c_id_parent = '#requestParam.id_parent#' or if you are using a simple list use the extra filter condition like c_id_parent = '#requestParam.id_parent#'

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

79204834

Date: 2024-11-19 19:41:58
Score: 2
Natty:
Report link

I thing this will solve your problem

If List1.ListCount = 0 Then

Else

End If
Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Pas Ltd

79204831

Date: 2024-11-19 19:41:58
Score: 2.5
Natty:
Report link

Here's an easier & improved version for intensive use:

#include <chrono>
#include <thread>

using namespace std::chrono_literals;
using namespace this_thread;

sleep_for(255ms); // use ms for miliseconds, s for seconds, min for minutes and h for hours`

Sorry if I made any errors, I'm new to c++ programing.

Reasons:
  • RegEx Blacklisted phrase (1.5): I'm new
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Wakko

79204827

Date: 2024-11-19 19:39:57
Score: 1
Natty:
Report link

Probably you have wrong relationship setting.

In product model you have a gallery relationship without setting the column names. That means:

  1. The "primary key" column in products is id
  2. The "foreign key" column in galleries is product_id

If some of the columns mentioned above has a different name, you need to set them in a hasOne method

enter image description here

(from laravel docs)

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Alexey Khachatryan

79204824

Date: 2024-11-19 19:38:57
Score: 3
Natty:
Report link

You could try wrapping your Scaffold body with Overlay.wrap

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

79204810

Date: 2024-11-19 19:33:56
Score: 2
Natty:
Report link

Download counts can now be viewed by enabling an experimental feature:

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

79204806

Date: 2024-11-19 19:31:55
Score: 1.5
Natty:
Report link

In my case, this problem happens when the project has no default (scoped) repository.

So try to configure you repository as the default repository for the project to which your application will be assigned.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Erwin H.

79204795

Date: 2024-11-19 19:26:54
Score: 1.5
Natty:
Report link

I also got the error Invalid user name, password, or redirect_uris: ('Mastodon API returned error', 400, 'Bad Request', 'invalid_grant').

It occured because I was using some upper chars in my login mail address. That it did not work. Changing all chars to lower case solved the issue for me.

Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Strubbl

79204777

Date: 2024-11-19 19:21:52
Score: 0.5
Natty:
Report link

This is the solution I came up with:

#!/bin/sh
#
# is_privileged.sh

set -eu

# Get the capability bounding set
cap_bnd=$(grep '^CapBnd:' /proc/$$/status | awk '{print $2}')
# Convert to decimal
cap_bnd=$(printf "%d" "0x${cap_bnd}")

# Get the last capability number
last_cap=$(cat /proc/sys/kernel/cap_last_cap)

# Calculate the maximum capability value
max_cap=$(((1 << (last_cap + 1)) - 1))

if [ "${cap_bnd}" -eq "${max_cap}" ]; then
    echo "Container is running in privileged mode." >&2
    exit 0
else
    echo "Container is not running in privileged mode." >&2
    exit 1
fi

Example:

$ cat is_privileged.sh | docker run --rm -i alpine sh -
Container is not running in privileged mode.

$ cat is_privileged.sh | docker run --rm -i alpine sh -
Container is running in privileged mode.

I believe it is better option as it doesn't actually create any ip link.

I've also made it available in my docker-scripts project.

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

79204770

Date: 2024-11-19 19:19:51
Score: 2
Natty:
Report link

Open the config file under folder /conf/sonar.properties, Uncomment the line sonar.search.port, and change it to

sonar.search.port=9090

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

79204769

Date: 2024-11-19 19:19:51
Score: 2
Natty:
Report link

Open the config file under folder /conf/sonar.properties, Uncomment the line sonar.search.port, and change it to

sonar.search.port=9090

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

79204763

Date: 2024-11-19 19:16:50
Score: 5.5
Natty: 6.5
Report link

What if one, some or all clusters involved are dynamical/unstable? How can/should Dijkstra's algo be applied to this scenario?

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Starts with a question (0.5): What if one
  • Low reputation (1):
Posted by: Wei JIANG

79204754

Date: 2024-11-19 19:13:49
Score: 1
Natty:
Report link

Android Studio is an IDE for Android App Development. If you want to build a basic Kotlin application, try another IDE like IntelliJ

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

79204750

Date: 2024-11-19 19:09:48
Score: 3
Natty:
Report link

For me, it was a stray "/D " in the Additional Options for Command Line in "C/C++" Configuration Properties

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

79204740

Date: 2024-11-19 19:06:47
Score: 1.5
Natty:
Report link

It seems that you have written your code in wrong hierarchy.

enter image description here

$color: #333;

.underline-button {
  color: $color;
  cursor: pointer;
  user-select: none;
  text-align: center;
  padding: 15px 0;
  font-size: 24px;

  &:after {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    background: $color;
    transition: width 0.3s;
  }

  &:hover {
    &:after {
      width: 100%;
    }
  }

  &:active {
    :after {
      width: 0;
    }
  }
}
<div>
  <div class="underline-button">Button</div>
  <div class="underline-button">Button</div>
  <div class="underline-button">Button</div>
  <div class="underline-button">Button</div>
  <div class="underline-button">Button</div>
  <div class="underline-button">Button</div>
</div>

As your code is in .SCSS please check this.

Reasons:
  • Blacklisted phrase (1): please check this
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Naeem Akhtar

79204737

Date: 2024-11-19 19:06:47
Score: 4
Natty: 4.5
Report link

looks like 'participants' - it's another persons, who co-edit same document with you

see: https://learn.microsoft.com/en-us/visualstudio/liveshare/use/coedit-follow-focus-visual-studio-code

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

79204734

Date: 2024-11-19 19:05:46
Score: 3
Natty:
Report link

getting dependency error while trying to start debugging in an old stable branch.

Tried: flutter clean flutter pub get

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

79204729

Date: 2024-11-19 19:04:46
Score: 3
Natty:
Report link

Try https://github.com/yoori/flare-bypasser , selenium based solutions (like flaresolverr) don't works now (cloud flare detect drivers)

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

79204724

Date: 2024-11-19 19:01:45
Score: 1
Natty:
Report link

ListenableBuilder:

Think of it as a helper that rebuilds a specific part of your UI whenever something it listens to (like a ValueNotifier or ChangeNotifier) changes, so use it when just one small part of your UI depends on changes in a Listenable.

InheritedNotifier:

This is more advanced and is used to share a Listenable with many widgets in your app. It helps efficiently notify only those widgets that care about the changes, avoiding unnecessary rebuilding, so use it when you need to share and manage changes across a group of widgets in the tree.

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

79204717

Date: 2024-11-19 18:59:45
Score: 0.5
Natty:
Report link

\COPY is a command for the psql client, not for pgadmin. Remove the \

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

79204716

Date: 2024-11-19 18:59:45
Score: 2.5
Natty:
Report link

Thank you to everyone who offered an idea or explanation. Thanks to all the input, I hunted down a part of code what was trying to set the large address aware option, but i'm guessing the syntax was wrong, yet the compiler did not complain about it. Once i took it out and replaced it with the following syntax

{$LARGEADDRESSAWARE ON}

Then things started working as expected. I thought all of this was supposed to be set to ON by default for a 64 bit build, and have no idea still about where it gets turned off. But nonetheless, mission accomplished.

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

79204706

Date: 2024-11-19 18:55:44
Score: 1.5
Natty:
Report link

In my case, this problem happens when the project has no default (scoped) repository.

So try to configure you repository as the default repository for the project to which your application is assigned.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Erwin H.

79204705

Date: 2024-11-19 18:55:44
Score: 3
Natty:
Report link

ok so the issue was that all 3 vm's had the same hostname and it was causing some type of connection/authentication error when innodb would try to add an instance to the cluster.

I had made the following changes to my /etc/hosts in ubuntu but for some reason it was not registering the changes and updating the hostname properly:

192.168.20.53 router apps
192.168.20.60 db1 db1.local
192.168.20.58 db2 db2.local
192.168.20.59 db3 db3.local

I had to change /etc/hostname as well for the changes to register.

In /etc/hostname I just went on each instance and deleted the entry that was there and put "db1" for the first instance, "db2" for the second instance and "db3" for the third instance and that resolved it.

I hope this helps anyone who is stuck with a similar issue, ty and have a Blessed day!

Reasons:
  • Whitelisted phrase (-1): hope this helps
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): stuck with a similar issue
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: iloveJesus91

79204704

Date: 2024-11-19 18:55:44
Score: 3.5
Natty:
Report link

Maybe using WebSockets is a better approach to transmit that type of data.

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

79204694

Date: 2024-11-19 18:51:42
Score: 3.5
Natty:
Report link

Try to define type of through?

type ReverseLink<S extends ISchema, Namespace extends keyof S> = {
  to: Namespace; 
  cardinality: Cardinality;
  through?: string
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Jack Ruder

79204692

Date: 2024-11-19 18:50:42
Score: 2
Natty:
Report link

Change the provider to Microsoft OLE DB Driver for SQL Server, that worked for me.

screenshot

Reasons:
  • Whitelisted phrase (-1): worked for me
  • Low length (1.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Sajidh

79204690

Date: 2024-11-19 18:50:42
Score: 4.5
Natty:
Report link

Heres a basic implemetation of it

https://github.com/realMuhammadSami/two-camera-view/tree/main

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Muhammad Sami

79204685

Date: 2024-11-19 18:48:41
Score: 5
Natty: 5.5
Report link

THANK YOU BROTHER! Cheers from Brazil!!

Reasons:
  • Blacklisted phrase (0.5): THANK YOU
  • Blacklisted phrase (1): Cheers
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Guilherme Augusto Wladeka

79204682

Date: 2024-11-19 18:47:40
Score: 0.5
Natty:
Report link

This started happening to us recently after working for many years. Judging from this page it's possible that they stealthily made this no longer work unless you have a special enterprise contract.

Please note that the $og_image_url social preview feature is reserved for paid Branch accounts with a dedicated contract. If you do not have a paid Branch account, you will not see this feature in the Branch Dashboard.

This FAQ page was "Updated about 1 month ago", and the other FAQ pages were updated 3 years ago.

The only way we can customize it now is by specifying a $fallback_url that already has the desired og_image_url in its metadata, which isn't always ideal.

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

79204661

Date: 2024-11-19 18:37:38
Score: 2
Natty:
Report link

Had the same issue. According to this article: https://www.seosteph.co.uk/analytics/tracking-page-path-location-in-ga4-user-explorer/

  1. In GA4, head to your chosen property’s Admin > Custom Definitions
  2. Click the big blue button to create a new Custom Dimension
  3. For Dimension Name, type in Page Location. This will be the name used in the reports.
  4. For event parameter, this needs to match the parameter being tracked on the site so enter page_location, as shown below, or you can select it from the dropdown

Note: This configuration will apply to data collected after the custom dimension is set up; it won’t retroactively include page locations for past events.

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

79204653

Date: 2024-11-19 18:33:36
Score: 1.5
Natty:
Report link

If you turn on the Silent login option in the OpenID Connect settings, any user that already has a token from the same IDP used for OIDC on their Web Browser will be automatically logged in and sent back to the link used to enter Moodle. This setting is under Other options and requires Forced redirect (/admin/settings.php?section=authsettingoidc) and Force users to login (/admin/settings.php?section=sitepolicies).

If they don't have the necessary token on their Web Browser yet, the IDP's login will appear. That said, once they logged in for the first time, they won't have too the next, provided they use the same Web Browser and don't clear their cache/use private browsing or incognito mode.

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

79204649

Date: 2024-11-19 18:30:36
Score: 0.5
Natty:
Report link

You can use a splash screen and you can call dimensions class with getx while splash screen display. Because size not be null or 0.0 if splash screen display currently. call class after display not before display.

Or you may use didmetrics changed for listen dimensions changing and then refresh layout.

Or you may read my medium story (Fluter UI error after release, release mode render bugs.) you can find my medium profile link on my stackoverflow profile/website section.

Reasons:
  • Blacklisted phrase (1): stackoverflow
  • Whitelisted phrase (-1.5): You can use
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: mkiziltay

79204639

Date: 2024-11-19 18:28:35
Score: 2
Natty:
Report link

This exemplifies one of the greatest failures in this software. 3 solutions to solve one problem because the solution changes after every update.

CTRL+E, CTRL+S is for ShowStackTraceExplorer now

View-> Render Whitespace was removed.

cltr+shift+p does nothing now.

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

79204636

Date: 2024-11-19 18:27:35
Score: 0.5
Natty:
Report link

I use MVC but only as a convenient router to get the user request into my business layer which is a completely separate assembly altogether. So my controllers are really thin. They just execute authorization methods (which are also contained in my business assembly) and then call a method in my business layer that does the actual logic of the request. So I would have an API assembly that uses ASP.NET MVC but then a Business assembly. Each controller would basically be this:

public IActionResult DoSomeStuff([FromServices] MyAuthorizationService authorization, [FromServices] MyBusinessClass myBusiness) {
    if (!authorization.CanDoThisThing()) {
        return Forbid();
    }

    myBusiness.DoSomeStuff();
    return Ok();
}

I've called this pattern MVCS where the S is for Service... the Service being my business layer. Though I have since developed a love hate relationship with the term service since it's usage as a word has been changed to mean anything that is dependency injected.

And the M isn't my domain models in this case. It's what gets serialized which usually is a variation of my domain models (See this video: https://www.youtube.com/watch?v=6KUheTnNY3M). The view would be the actual JSON that gets serialized if you're doing a SPA UI with all the AJAX.

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (1): this video
  • Long answer (-1):
  • Has code block (-0.5):
Posted by: Ian Kirkpatrick

79204635

Date: 2024-11-19 18:27:35
Score: 2.5
Natty:
Report link

If your Android client is only receiving a single emission from a Ktor Server-Sent Events (SSE) server, the issue could stem from various causes related to either the server configuration or the client-side implementation.

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

79204633

Date: 2024-11-19 18:27:35
Score: 1
Natty:
Report link

Adobe Animate runs in a sandbox with no external connections allowed, so Serproxy or equivalent is required when using serial devices. Serproxy and Animate communicate through a TCP port on localhost.

But jitter, delays and uncertainty somewhere in the chain make this setup unsuited for near-realtime use.

We switched to Unity, which allows direct serial connections, and our issues vanished.

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
Posted by: Jim Mack

79204615

Date: 2024-11-19 18:22:33
Score: 2
Natty:
Report link

Same font is available on google fonts. You can bypass that font and use google font.

https://fonts.google.com/noto/specimen/Noto+Sana

Otherwise you need upload new files of .ttf format.

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

79204600

Date: 2024-11-19 18:17:32
Score: 3
Natty:
Report link

with haproxy i have found it difficult to find a set of rules so that uptimekuma status page would be displayed.. still fighting with that, since what i get is a blank page.

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

79204598

Date: 2024-11-19 18:15:32
Score: 1.5
Natty:
Report link

version: 2 updates:

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Harsh Mishra

79204592

Date: 2024-11-19 18:13:30
Score: 6 🚩
Natty: 4.5
Report link

Is it possible to embed this type of calendar parent="ThemeOverlay.MaterialComponents.MaterialCalendar" to BottomSheetDialogFragment as a subview?

Reasons:
  • Blacklisted phrase (1): Is it possible to
  • Low length (1):
  • No code block (0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): Is it
  • Low reputation (1):
Posted by: AlexTsy

79204587

Date: 2024-11-19 18:12:29
Score: 2
Natty:
Report link

It will, if at all you change flex-grow:1; with Flex-flow:1;. Setting flex items to flex-grow it set the flex item to take the width or height of its contents, because at this point flex-basis is set to auto instead of 0%.

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

79204580

Date: 2024-11-19 18:09:29
Score: 0.5
Natty:
Report link

November 2024 update

I'm on mac M1 Chip and after trying different solutions; deleting the python and pylance extensions, clearing the vs code cache, deleting and reinstalling vs code, I finally solved it by deleting old python versions that I was no longer using pyenv uninstall {python_version}

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

79204578

Date: 2024-11-19 18:08:29
Score: 2
Natty:
Report link

If your app relies on OneSignal for push notifications, they handle compatibility with Apple's updated APNs Trust Store certificates, as they manage the connection to APNs for you.

Simply keep the OneSignal SDK up to date and refer to their documentation for more details: https://documentation.onesignal.com/docs/ios-sdk-setup

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

79204576

Date: 2024-11-19 18:08:29
Score: 2.5
Natty:
Report link

Apparently this is a known issue:

https://github.com/tableau/tabcmd/issues/233#issuecomment-1609405260

Fortunately someone has implemented a script as a workaround:

https://github.com/TheInformationLab/tableau-tools/tree/main/tableau-server-pdf-downloader

I was able to use this successfully to get around this issue.

Reasons:
  • Probably link only (1):
  • Low length (1):
  • No code block (0.5):
Posted by: John Langford

79204572

Date: 2024-11-19 18:07:28
Score: 0.5
Natty:
Report link

It sounds like you're asking for auto-completion of file path in the current buffer. You could just do M-x find-file RET <tab> and then C-space C-a M-w C-g C-w (1). The next level of automation is to write a function for it:

# Ctrl-c Ctrl-c
#+begin_src emacs-lisp
  (defun insert-file-path ()
  "Insert the file path of a file into the current buffer."
  (interactive)
  (let ((file-path (read-file-name "Insert file path: ")))
    (insert file-path)))
#+end_src

invoking the created function the result

(1) whose long form is : set-mark-command, org-beginning-of-line, kill-ring-save, keyboard-quit, and org-yank

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Erwann

79204567

Date: 2024-11-19 18:05:28
Score: 2.5
Natty:
Report link

Create a .bat file containing pythonw "C:\path\to\script.py". Use pythonw to run the script without a visible console. Create a shortcut to the .bat file on the desktop, set it to run minimized, and customize the icon.

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

79204557

Date: 2024-11-19 18:03:27
Score: 4.5
Natty: 5
Report link

This package works great for me https://github.com/mohamed-alired/drf-totp

Reasons:
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • Low reputation (1):
Posted by: m morsy

79204554

Date: 2024-11-19 18:02:26
Score: 3
Natty:
Report link

Since I cannot comment I wanted to provide some reference material for the answer above.

The hd parameter is used to specific a specific Google Workplace domain to use with the account selector.

If specified, only Workplace accounts with that domain will be shown.

By adding "hd=*" (wildcard), it basically says any Google Workplace account will be shown, but not non-workplace accounts.

Reference: https://developers.google.com/identity/openid-connect/openid-connect

Reasons:
  • Blacklisted phrase (0.5): I cannot
  • RegEx Blacklisted phrase (1): cannot comment
  • No code block (0.5):
  • Low reputation (1):
Posted by: Darren Bounds