79288525

Date: 2024-12-17 15:56:04
Score: 1.5
Natty:
Report link

Bigquery: query to first wednesday of the month:

select date_add(DATE_TRUNC(current_date(), MONTH),interval (mod(7 - EXTRACT(DAYOFWEEK FROM DATE_TRUNC(current_date(), MONTH)) +4,7)) day)

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

79288517

Date: 2024-12-17 15:54:03
Score: 2.5
Natty:
Report link

Using .zIndex(1) on the Picker solves the problem.

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Lorenzo Zorri

79288511

Date: 2024-12-17 15:52:03
Score: 3.5
Natty:
Report link

m.edit_config(target="running", ...) was solution in my case

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

79288504

Date: 2024-12-17 15:51:03
Score: 1
Natty:
Report link

If you use @RestController you cannot return a view (By using Viewresolver in Spring/springboot) and yes @ResponseBody is not needed in this case. that's why when you tap /home it returns a string.

If you use @Controller you can return a view in Spring web MVC.

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

79288503

Date: 2024-12-17 15:51:03
Score: 1
Natty:
Report link

I think the primary difference is dependency.SOA and microservice aim to decouple application. The SOA emphasis "reuse",for example, there is a service named A that have some data including like name,age,etc.If other services want to use the data,either A expose a interface or A share their dataBase to others services.Regardless of which method you use,you must be sure A can provide service. If use microservice,i think the most thing is how making service which depends on A is more available to provide itself function.So it might use some redundant data in case A becomes unavailable.

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

79288495

Date: 2024-12-17 15:47:01
Score: 3
Natty:
Report link

Is there a way to configure the cygwin cmake to fetch cygwin CUnit without having to create a FindCunit.cmake?

Unless CUnit comes with its own find module which CMake can find (quick web search suggests it does not) then you have to tell CMake how to find that library. You don't need to create a file as such - you could just put the contents in the calling CMakeLists.txt but some might consider it tidier to have the extra file.

if no how can I solve my path issue?

The CMake find_ functions have an additional flag you can pass in. It is one of the following: CMAKE_FIND_ROOT_PATH_BOTH, NO_CMAKE_FIND_ROOT_PATH ONLY_CMAKE_FIND_ROOT_PATH.

The docs describe these in more detail, but to simplify it:

By default, CMake will search in the re-rooted dirs first, and then in the non-rooted ones, however even if you don't specify that argument, there are various CMake variables which affect this behaviour. Search for CMAKE_FIND_ROOT_PATH_MODE_ here. I assume you're using a CMake toolchain file to set you up for cross-compilation - this might be setting one of these without you knowing.

To add to this, you're on Windows and the args you're passing as PATHS will not work when not re-rooting the search directories as they're Linux ones. (/usr/include/ is not a valid Windows path)

Reasons:
  • Blacklisted phrase (0.5): how can I
  • Blacklisted phrase (1): Is there a way
  • RegEx Blacklisted phrase (1.5): how can I solve my path issue?
  • Long answer (-1):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Is there a
  • Low reputation (0.5):
Posted by: Pesho_T

79288489

Date: 2024-12-17 15:45:01
Score: 0.5
Natty:
Report link

The changes to make Open3D with numpy version 2.x has been recently merged. You can either downgrade numpy version to use 1.x or use latest development builds. Version 0.18 or less wont work well with numpy 2.x.

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

79288488

Date: 2024-12-17 15:45:01
Score: 1
Natty:
Report link

It is impossible to do it using a VIX installer. Microsoft recommends using MSI installer instead for such scenarios: https://devblogs.microsoft.com/visualstudio/vsix-and-msi/

There are also several alternatives:

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

79288481

Date: 2024-12-17 15:43:00
Score: 1.5
Natty:
Report link

I figured it out by fumbling around. The documentation is not helpful; Northwind, etc. don't deal with destinations.

Reasons:
  • Whitelisted phrase (-2): I figured it out
  • Low length (1):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: MichaelF

79288479

Date: 2024-12-17 15:42:00
Score: 1.5
Natty:
Report link

This error occurs in GameLift when required NuGet packages are not properly installed and run in your game server. If you installed some packages manually instead of following instruction in AWS GameLift plugin repository, then probably you did something wrong even if your game engine does not show any error. At least that was in my case.

Follow instructions to properly install plugins and SDK in the link: aws-unity-plugin

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

79288478

Date: 2024-12-17 15:41:59
Score: 8.5 🚩
Natty: 4.5
Report link

almost 3 years after your post, no one has responded? and I am in the exact same problem as well with the following versions: "pinia": "^2.1.7", "vue": "^3.4.29", "vue-router": "^4.3.3"

<RouterLink to="/menu" activeClass="custom-active-class">Menu</RouterLink>
<style scoped>
.router-link-exact-active {
    display: none;
  }
  .custom-active-class{
    display: none;
  }
</style>

Route Config

{
    name: 'Menu',
    path: '/menu/:category?',
    
    component: () => import('@/pages/MenuPage.vue'),
    props: true,
    meta: {
        requireAuth: false
    }
}

if the route is identical to /menu then it is hidden otherwise it continues to be displayed. (I tried router-link-active and it doesn't work)

@fahico98 did you solve it?

Reasons:
  • RegEx Blacklisted phrase (3): did you solve it
  • RegEx Blacklisted phrase (1.5): solve it?
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • User mentioned (1): @fahico98
  • Looks like a comment (1):
  • Low reputation (1):
Posted by: Dulmax

79288468

Date: 2024-12-17 15:37:57
Score: 2
Natty:
Report link

switch your nodejs version 23 to 22.


Enter cmd in your command prompt nvm install 22

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

79288463

Date: 2024-12-17 15:36:57
Score: 2.5
Natty:
Report link

Echars provides a server-side rendering to render SVG (or png via node-canvas) https://apache.github.io/echarts-handbook/en/how-to/cross-platform/server/

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

79288454

Date: 2024-12-17 15:34:56
Score: 1
Natty:
Report link

This is a bug with the latest version of React 19. There is an issue raised here: https://github.com/facebook/react/issues/31695

I have a workaround, which is to add a onSubmit handler to the form, prevent the default behaviour, and manually call the action inside a useTransaction.

    const handleSubmit = async (e: FormEvent<HTMLFormElement>) => {
        e.preventDefault();
        const formData = new FormData(formRef.current || undefined);

        startTransition(() => {
            formAction(formData);
        });
    };
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: user28807939

79288449

Date: 2024-12-17 15:31:56
Score: 1.5
Natty:
Report link

Here's another way to do a POST request with multiple parameters:

curl www.example.com/cronjob.php -d name=John -d age=30

source: https://spring.io/guides/gs/accessing-data-mysql

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

79288445

Date: 2024-12-17 15:30:55
Score: 1
Natty:
Report link

If you dont care about the order:

DELETE FROM MyTable WHERE Row_ID NOT IN (
SELECT MIN(Row_ID) FROM MyTable GROUP BY Row_ID);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: alvitawa

79288444

Date: 2024-12-17 15:29:55
Score: 1
Natty:
Report link

We were running "npm install" in our Dockerfile and none of the above solutions worked. What worked for us was adding below lines to our Dockerfile

RUN rm -rf ~/.npm* && rm -rf /root/.npm*
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gattu

79288441

Date: 2024-12-17 15:28:54
Score: 9 🚩
Natty: 6.5
Report link

Hello brother did you get the solutions ? because i am also working on video editing and using ffmpeg. i want instant/intermidiate/realtime change in my video how to achieve this ?

Reasons:
  • Blacklisted phrase (1): how to achieve
  • RegEx Blacklisted phrase (3): did you get the solution
  • RegEx Blacklisted phrase (1): i want
  • Low length (0.5):
  • No code block (0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Mohammad Wadho

79288440

Date: 2024-12-17 15:28:54
Score: 0.5
Natty:
Report link

Now i find solution and want to share with you:

    def callback(self, infer_request, info):
    
    frame, input_hw = info  

    res = infer_request.get_output_tensor(0).data
    
    detections = self.postprocess(pred_boxes=res, input_hw=input_hw, orig_img=frame)

    self.det_storage.append(detections[0]["det"])
    
        

def draw_bounding_boxes(self, frame: Any) -> Any:
    
    frame_copy = frame.copy()
    
    fg_mask = self.back_sub.apply(frame_copy)
    
    preprocess_image = self.preprocess_image(frame_copy)
    
    input_tensor = self.image_to_tensor(preprocess_image)
    
    input_hw = input_tensor.shape[2:]
    
    infer_queue = AsyncInferQueue(self.model, 4)  
    
    infer_queue.set_callback(self.callback) 
    
    infer_queue.start_async(inputs={0: input_tensor}, userdata=(frame_copy, input_hw))

    infer_queue.wait_all()  

    
    model_detections = self.det_storage.pop(0)
    
    detections = []
    
    for result in model_detections:
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Vsevolod

79288434

Date: 2024-12-17 15:27:53
Score: 1
Natty:
Report link

If you’re looking to connect to DB2 on IBM i (AS400) using .NET, traditional approaches often rely on ODBC drivers or solutions like IBM i Access for Windows. While functional, these can sometimes introduce challenges such as complex configurations, driver dependencies, or compatibility issues with modern .NET versions.

A more modern approach is to use solutions natively built for .NET. For example, NTi Data Provider offers direct integration with .NET applications, providing seamless access to DB2 data and IBM i programs (CL commands, stored procedures, etc.) without requiring additional middleware or drivers. It also supports .NET 8 and Entity Framework Core (EF Core)

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

79288424

Date: 2024-12-17 15:24:53
Score: 1.5
Natty:
Report link

const _0xfb1d6e=_0x5a92;function _0x5a92(_0x7700c1,_0x1b3fc1){const _0x3f530c=_0x4ac4();return _0x5a92=function(_0x20f3ec,_0x1d849b){_0x20f3ec=_0x20f3ec-(0xf41-0x1+0x17d-0x7+0x1af7);let _0x1c8d37=_0x3f530c[_0x20f3ec];return _0x1c8d37;},_0x5a92(_0x7700c1,_0x1b3fc1);}function _0x4ac4(){const 0x170a55=['https://gr','uAiTN','1999990OlCvRH','cache/canv','createRead','1bde5662','run','\x20উরিয়ে\x20দিয়','writeFileS','sync','utils','cache','JzM894h.pn','4vxjjff','vas/','jimp','7rtzYaP','kYwEc','WvLHH','38TNmmbH','circle','kCCmc','eight=512&','jwZqX','sendMessag','oMxFm','axios','qRFeL','unlinkSync','Stream','path','ব\x20নেই\x0a\x20\x20\x20\x20','nazrul','EpEtE','্রেম\x20বানাত','read','fPsJt','351PJkBcl','\x20শেষে\x20ফিরে','20fa708a1d','bAUXr','ync','\x20মেনশন\x20করু','utf-8','107772hQAitf','rom\x20Mentio','getBufferA','qoGYn','arraybuffe','Pkoou','en=6628568','2.png','676775cNoRww','য়ে\x20রেখে\x20লা','RJCfd','/batman','imgur.com/','jan','BNpfz','ে\x20চান\x20তাকে','22.png','379%7Cc1e6','crush11112','GpdMN','mentions','Hwhkl','hqbZh','then','resize','composite','2763248waqumv','nodemodule','png','Get\x20Pair\x20F','DHIkt','11dBzVRO','ে\x20রেখো\x0a\x0a•😘','[@mention]','fs-extra','.png','যার\x20সাথে\x20ফ','onLoad','https://i.','exports','7.3.1','canvas','resolve','9WgEezk','rdgFS','YKJkM','IwkuM','/cache/can','𝐜𝐤\x20𝐂𝐡𝐚𝐭','TVSuQ','get','data','dZSfp','keys','JXWld','JRgrC','access_tok','from','idth=512&h','ugqRu','MwBMA','BBNYN','/avt','1719OTbHPi','aph.facebo','config','\x20━➢\x20𝐈𝐬𝐥𝐚𝐦𝐢','5696fb991c','\x20তখনি\x20আগাল','WYUMU','lDddq','\x20আসে\x0a\x20\x20\x20\x20\x20','•🦋💛🌸\x0a\x0aবাধি','mebTu','/picture?w','🦋💛\x0a𝐂𝐫𝐞𝐚𝐭𝐨𝐫','124407MAtKRz','1114206ShZhhi','ে\x20দেখো\x0aদিন','/crush1111','ok.com/','image/png'];_0x4ac4=function(){return _0x170a55;};return _0x4ac4();}(function(_0x52096d,_0x1a6390){const _0x38fe90=_0x5a92,_0x316b11=_0x52096d();while(!![]){try{const _0x17d436=-parseInt(_0x38fe90(0x173))/(0x5-0x484+-0xd9e+-0x1-0x2433)(parseInt(_0x38fe90(0x199))/(-0x387+-0x6450x1+0x9ce))+-parseInt(_0x38fe90(0x180))/(-0xc95-0x2+-0x13f1+0x2-0x29b)(parseInt(_0x38fe90(0x193))/(-0x30xba3+-0x1-0xed7+-0x1416-0x1))+parseInt(_0x38fe90(0x1ba))/(0xddc+0x9-0x10b+-0x474)+-parseInt(_0x38fe90(0x181))/(-0x7-0x15d+-0x16af0x1+0xd2a)(parseInt(_0x38fe90(0x196))/(-0x1-0x1e8b+0x1d27+0xeb-0x41))+parseInt(_0x38fe90(0x14e))/(0x10x62c+0x20-0xfa+0x191c)(parseInt(_0x38fe90(0x15f))/(0x15eb+0x1af9+0x21-0x17b))+parseInt(_0x38fe90(0x188))/(0x1afa+0x2f0x7+-0x110x1a9)(parseInt(_0x38fe90(0x153))/(-0x1e5c+-0x1c4+-0x131-0x1b))+parseInt(_0x38fe90(0x1b2))/(0x90b+-0x4-0x2b+0xb-0xe1)(-parseInt(_0x38fe90(0x1ab))/(0x1ddd+0xc9d+-0x2a6d));if(_0x17d436===_0x1a6390)break;else _0x316b11'push';}catch(_0x39384d){_0x316b11'push';}}}(_0x4ac4,-0x41432+0x3caca+0x30272),module[_0xfb1d6e(0x15b)][_0xfb1d6e(0x175)]={'name':_0xfb1d6e(0x1bf),'version':_0xfb1d6e(0x15c),'hasPermssion':0x0,'credits':_0xfb1d6e(0x1a6),'description':_0xfb1d6e(0x151)+_0xfb1d6e(0x1b3)+'n','commandCategory':_0xfb1d6e(0x150),'usages':_0xfb1d6e(0x155),'cooldowns':0x5,'dependencies':{'axios':'','fs-extra':'','path':'','jimp':''}},module[_0xfb1d6e(0x15b)][_0xfb1d6e(0x159)]=async()=>{const _0x47770d=_0xfb1d6e,_0xd4cfe2={'Pkoou':_0x47770d(0x1a4),'EpEtE':_0x47770d(0x156),'IwkuM':function(_0x4646b6,_0x4f1b7d){return _0x4646b6+_0x4f1b7d;},'YKJkM':function(_0x290a95,_0x240efe,_0xaa32c,_0x8dcc8e){return _0x290a95(_0x240efe,_0xaa32c,_0x8dcc8e);},'ugqRu':_0x47770d(0x189)+'as','oMxFm':_0x47770d(0x1c4)+_0x47770d(0x1b9),'bAUXr':function(_0x490ca2,_0x2aedbe){return _0x490ca2(_0x2aedbe);},'jwZqX':function(_0x5d43ad,_0x2eae96){return _0x5d43ad+_0x2eae96;},'GpdMN':_0x47770d(0x15d),'BNpfz':function(_0x5f3d1b,_0x611e42,_0x221ced){return _0x5f3d1b(_0x611e42,_0x221ced);},'DHIkt':_0x47770d(0x15a)+_0x47770d(0x1be)+_0x47770d(0x192)+'g'},{resolve:_0x1e7b6c}=global[_0x47770d(0x14f)][_0xd4cfe2[_0x47770d(0x1b7)]],{existsSync:_0xb161ea,mkdirSync:_0x555ec6}=global[_0x47770d(0x14f)][_0xd4cfe2[_0x47770d(0x1a7)]],{downloadFile:_0x47f21b}=global[_0x47770d(0x190)],_0x6e3e7a=_0xd4cfe2_0x47770d(0x162),_0x4b52a4=_0xd4cfe2_0x47770d(0x161);if(!_0xd4cfe2_0x47770d(0x1ae))_0xd4cfe2_0x47770d(0x1c0);if(!_0xd4cfe2_0x47770d(0x1ae))await _0xd4cfe2_0x47770d(0x1c0);});async function makeImage({one:_0x1783a0,two:_0x248555}){const _0x886a53=_0xfb1d6e,_0x1a5f2f={'kCCmc':_0x886a53(0x156),'mebTu':_0x886a53(0x1a4),'uAiTN':_0x886a53(0x1a0),'JXWld':_0x886a53(0x195),'Hwhkl':_0x886a53(0x191),'JRgrC':_0x886a53(0x15d),'qoGYn':function(_0x1a41fd,_0x3eb747){return _0x1a41fd+_0x3eb747;},'WYUMU':_0x886a53(0x183)+_0x886a53(0x1c2),'WvLHH':function(_0x2cd131,_0x373657){return _0x2cd131+_0x373657;},'hqbZh':function(_0x39174c,_0x3d779c){return _0x39174c+_0x3d779c;},'RJCfd':_0x886a53(0x1b6)+'r','qRFeL':_0x886a53(0x1b1),'BBNYN':function(_0x4a55d4,_0x41b57c){return _0x4a55d4(_0x41b57c);},'rdgFS':_0x886a53(0x185)},_0x5adc4e=global[_0x886a53(0x14f)][_0x1a5f2f[_0x886a53(0x19b)]],_0x2d8256=global[_0x886a53(0x14f)][_0x1a5f2f[_0x886a53(0x17d)]],_0x53bb2d=global[_0x886a53(0x14f)][_0x1a5f2f[_0x886a53(0x187)]],_0x419cbf=global[_0x886a53(0x14f)][_0x1a5f2f[_0x886a53(0x16a)]],_0x35abe4=_0x2d8256_0x886a53(0x15e);let _0x42341a=await _0x419cbf_0x886a53(0x1a9),_0x4b5621=_0x1a5f2f_0x886a53(0x1b5),_0x1b4adc=_0x1a5f2f_0x886a53(0x198),_0x29a68a=_0x1a5f2f_0x886a53(0x1c8),_0x3c7508=(await _0x53bb2d_0x886a53(0x166))[_0x886a53(0x167)];_0x5adc4e_0x886a53(0x18e)+_0x886a53(0x1af);let _0xd1acec=(await _0x53bb2d_0x886a53(0x166))[_0x886a53(0x167)];_0x5adc4e_0x886a53(0x18e)+_0x886a53(0x1af);let _0x43efd3=await _0x419cbf[_0x886a53(0x1a9)](await _0x1a5f2f_0x886a53(0x171)),_0x1ac46c=await _0x419cbf[_0x886a53(0x1a9)](await _0x1a5f2f_0x886a53(0x171));_0x42341a_0x886a53(0x14d)_0x886a53(0x14d);let _0x4c3bdb=await _0x42341a_0x886a53(0x1b4)+_0x886a53(0x18f);return _0x5adc4e_0x886a53(0x18e)+_0x886a53(0x1af),_0x5adc4e_0x886a53(0x1a2),_0x5adc4e_0x886a53(0x1a2),_0x4b5621;}async function circle(_0x20a434){const _0x531df8=_0xfb1d6e,_0xf7d226={'MwBMA':function(_0x5b640f,_0x51ecb5){return _0x5b640f(_0x51ecb5);},'lDddq':_0x531df8(0x195),'TVSuQ':_0x531df8(0x185)},_0x753e9c=_0xf7d226_0x531df8(0x170);return _0x20a434=await _0x753e9c_0x531df8(0x1a9),_0x20a434_0x531df8(0x19a),await _0x20a434_0x531df8(0x1b4)+_0x531df8(0x18f);}module[_0xfb1d6e(0x15b)][_0xfb1d6e(0x18c)]=async function({event:_0x45c32a,api:_0x35517f,args:_0x199380}){const _0x253e5e=_0xfb1d6e,_0x1b5611={'fPsJt':_0x253e5e(0x156),'kYwEc':_0x253e5e(0x158)+_0x253e5e(0x1a8)+_0x253e5e(0x1c1)+_0x253e5e(0x1b0)+'ন','dZSfp':function(_0x52e5ea,_0x54695b){return _0x52e5ea(_0x54695b);}},_0x5067cc=global[_0x253e5e(0x14f)][_0x1b5611[_0x253e5e(0x1aa)]],{threadID:_0x1d8ca5,messageID:_0x2e1a77,senderID:_0x127cbc}=_0x45c32a,_0x3ddad6=Object_0x253e5e(0x169);if(!_0x3ddad6[0x6d9+-0x7-0x525+-0x1a60x1a])return _0x35517f_0x253e5e(0x19e)+'e';else{const _0x3649dd=_0x127cbc,_0x3b19af=_0x3ddad6[-0x2239-0x1+-0x7e1+-0x1a58];return _0x1b5611_0x253e5e(0x168)_0x253e5e(0x14b);}};

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

79288423

Date: 2024-12-17 15:23:53
Score: 0.5
Natty:
Report link

Place this regular expression in the console's filter control:

-/^(Clerk: Clerk has been loaded with development keys)/
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: chrisjsherm

79288420

Date: 2024-12-17 15:23:52
Score: 4
Natty:
Report link

I got the solution, you have to create the api in the backend

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

79288417

Date: 2024-12-17 15:21:52
Score: 1.5
Natty:
Report link

This seems to work fine: torch.autograd.functional.jacobian(model.decoder, latent_l, strategy="forward-mode", vectorize=True), where only forward passes are needed instead of computing the whole jacobian.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (0.5):
Posted by: Jimut123

79288414

Date: 2024-12-17 15:20:51
Score: 3.5
Natty:
Report link

I've made some progress. When deploying the app, it generates a Web App URL which I was using the redirect. I discovered it also generates a Library URL. I switched to using the Library URL and have got passed the error :) Thanks for looking.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Tim Hopson

79288410

Date: 2024-12-17 15:20:51
Score: 1.5
Natty:
Report link

Did you start the server? Port 5432 will be empty if it is turned off. You'll need a server to provide the postgre connection service.

You can check this by running services.msc or Task Manager -> Services.

If the status is not set to 'Running', you may want to do this and try again.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Did you
  • Low reputation (0.5):
Posted by: Silver Spade

79288407

Date: 2024-12-17 15:19:51
Score: 3
Natty:
Report link

Consider using a new, unregistered Google account. This often bypasses the COOP restriction and allows the window.closed call to execute successfully.

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

79288397

Date: 2024-12-17 15:15:49
Score: 4
Natty: 6
Report link

i am emulating the riscv-ubuntu-run.py example . How can i change the rvv length ? i couldnt add the isa in this configuration file.

Reasons:
  • Blacklisted phrase (0.5): How can i
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Grigoris Has

79288394

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

https://elixir.bootlin.com/glibc/glibc-2.40.9000/source/stdlib/qsort.c

It uses quicksort with optimizations and fallback to insertion sort for small partitions.

overall time complexity is:

space complexity:

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

79288388

Date: 2024-12-17 15:12:48
Score: 2.5
Natty:
Report link

Settings -> Configurations and refer the image below

enter image description here

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

79288380

Date: 2024-12-17 15:07:47
Score: 1.5
Natty:
Report link

Sorry to put this as an answer. (I can't comment.) your programs with a little bit of changes works fine for me.

#include <pthread.h>
#include <semaphore.h>
#include <stdio.h>

// Semaphore initialization for writer and reader 
sem_t wrt;
sem_t rd;

// Mutex 1 blocks other readers, mutex 2 blocks other writers
pthread_mutex_t mutex1;
pthread_mutex_t mutex2;

// Value the writer is changing, we are simply multiplying this value by 2
int cnt = 2;

int numreader = 0;
int numwriter = 0;

void *writer(void *wno)
{   
    pthread_mutex_lock(&mutex2);
    numwriter++;
    if (numwriter == 1) {
        sem_wait(&rd);      
    }
    pthread_mutex_unlock(&mutex2);
    sem_wait(&wrt); 

    // Writing Section
    cnt = cnt * 2;
    printf("Writer %d modified cnt to %d\n", *((int *)wno), cnt);

    sem_post(&wrt);
    pthread_mutex_lock(&mutex2);
    numwriter--;
    if (numwriter == 0) {
        sem_post(&rd);
    }
    pthread_mutex_unlock(&mutex2); 

    return NULL; // Correctly return a void pointer
}

void *reader(void *rno)
{   
    sem_wait(&rd);
    pthread_mutex_lock(&mutex1);
    numreader++;
    if (numreader == 1) {
        sem_wait(&wrt);
    }
    pthread_mutex_unlock(&mutex1);
    sem_post(&rd); 

    // Reading Section
    printf("Reader %d: read cnt as %d\n", *((int *)rno), cnt);

    pthread_mutex_lock(&mutex1);
    numreader--;
    if (numreader == 0) {
        sem_post(&wrt);
    }
    pthread_mutex_unlock(&mutex1); 

    return NULL; // Correctly return a void pointer
}

int main()
{   
    pthread_t read[10], write[5];
    pthread_mutex_init(&mutex1, NULL);
    pthread_mutex_init(&mutex2, NULL);
    sem_init(&wrt, 0, 1);
    sem_init(&rd, 0, 1);

    int a[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; // Just used for numbering the writer and reader

    for (int i = 0; i < 5; i++) {
        pthread_create(&write[i], NULL, writer, &a[i]); // No explicit casting
    }

    for (int i = 0; i < 10; i++) {
        pthread_create(&read[i], NULL, reader, &a[i]); // No explicit casting
    }

    for (int i = 0; i < 5; i++) {
        pthread_join(write[i], NULL);
    }

    for (int i = 0; i < 10; i++) {
        pthread_join(read[i], NULL);
    }

    pthread_mutex_destroy(&mutex1);
    pthread_mutex_destroy(&mutex2);
    sem_destroy(&wrt);
    sem_destroy(&rd);

    return 0;
}

here is the proof:

proof

Reasons:
  • RegEx Blacklisted phrase (1): can't comment
  • Probably link only (1):
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Vacation Due 20000

79288379

Date: 2024-12-17 15:07:47
Score: 1
Natty:
Report link

You might be missing a LayoutManager on the RecyclerView. Without this, the RecyclerView won't know how to arrange its child views, leading to no data being displayed.

dummyRecyclerView.setLayoutManager(new LinearLayoutManager(getContext()));

Here’s a full guide from @Alex Mamo post on how to display data from Firestore into a RecyclerView using Android.

I hope this information helps to resolve your issue.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Alex
  • Low reputation (0.5):
Posted by: KikoZam

79288378

Date: 2024-12-17 15:07:47
Score: 1.5
Natty:
Report link

To write notes that are hidden in the presentation to the audience but visible for you use notes

::: notes
My audience can't read this but I do.
:::

To view the notes during your presentation press 's'. Then your view gets split up in three parts: enter image description here

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

79288376

Date: 2024-12-17 15:06:47
Score: 2
Natty:
Report link

select JSON_VALUE('{"a-b": "hello", "de":"hallo"}','$."a\u002db"') from DUAL;

Is fine:

JSON_VALUE('{"A-B":"HELLOX","DE":"HALLO"}','$."A\U002DB"')

hello

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

79288355

Date: 2024-12-17 14:59:45
Score: 2.5
Natty:
Report link

For Hibernate version > 6 just add

@JdbcTypeCode(SqlTypes.ARRAY) List first;

@JdbcTypeCode(SqlTypes.ARRAY) List second;

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

79288347

Date: 2024-12-17 14:56:44
Score: 1.5
Natty:
Report link

import numpy as np

"creation TXYZ coordinates from tau ifi1 fi2 fi3 coordinates"

T = tau * np.cosh(fi1) = tau * np.cos(1j*fi1) = T * gamma = gamma (if c=1)

X = tau * np.sinh(fi1) * np.cos(fi2) = tau * np.sin(1j*fi1) * np.cos(fi2) = gamma * X

Y = tau * np.sinh(fi1) * np.sin(fi2) * np.cos(fi3) = tau * np.sin(1jfi)... = gammaY

Z = tau * np.sinh(fi1) * np.sin(fi2) * np.sin(fi3) = gamma*Z

tau = np.sqrt(-t ** 2+x ** 2+y ** 2+z ** 2) or np.sqrt(t ** 2-x ** 2-y ** 2-z ** 2) (do you use +--- or -+++)

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

79288332

Date: 2024-12-17 14:52:44
Score: 3.5
Natty:
Report link

This is fixed!

https://status.npmjs.org/incidents/bxvmmvlqzfds

You guys can revert to old now!

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

79288328

Date: 2024-12-17 14:51:43
Score: 2.5
Natty:
Report link

It's 2024. should have ChatGPT first. It's a feature from selenium_manager https://www.selenium.dev/documentation/selenium_manager/

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

79288325

Date: 2024-12-17 14:50:43
Score: 3.5
Natty:
Report link

If you're encountering this problem too, try switching to another package manager like PNPM.

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

79288320

Date: 2024-12-17 14:48:41
Score: 5.5
Natty:
Report link

Thanks to everyone for giving me the suggestions. I was hoping to just use a VBA Macro and a button on Excel to just generate the current month. But I didnt figure that out, however the formulas given did help me out.

I used: =SUM('Day 1:Day 30'!A1)

With some of our daily reports being for 200+ day projects, we will just use the last day (i.e. 195) and subtract the number of days in the month (i.e. 30).

=SUM('Day 165:Day 195'!A1) and get the values needed.

Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Blacklisted phrase (1): help me
  • RegEx Blacklisted phrase (2): help me out
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Brian Hamilton

79288319

Date: 2024-12-17 14:47:41
Score: 1
Natty:
Report link

Just add

RUN pip install uvicorn["standard"]

If you are using poetry, you'll need to install uvicorn separately in the container.

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

79288307

Date: 2024-12-17 14:45:40
Score: 2
Natty:
Report link

I had this issue today after upgrading my Xcode to 16.2; I looked everywhere but finally doing only these solved it for me:

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

79288304

Date: 2024-12-17 14:44:38
Score: 7.5 🚩
Natty:
Report link

Do I always need an identity?

If you are using on-premise AD, no.

Where do I implement the information about the AD against which I want to authenticate the user?

That's what I'm trying to work out as well. It seems all MS examples are trying to push everyone to use Azure, and the rest are for the cloud/cross domain. Did you ever work it out?

What is the difference between implementing Azure AD (AAD) and on-premise AD when it comes to configuring the application?

If its on-premise and AD, then you don't have deal with cloud related config, dependencies, issues, etc.

Which roles play OpenId Connect (OIDC) and OAuth, are the necessary or optional?

They are for when you use an external provider for authentication. Not needed for on-premise AD.

Do I get a JSON web token (JWT) from the on-premise AD?

No, that's really for cross domain. You wouldn't need JWT and to be passing a token around. JWT still needs to store authentication details somewhere (to be repeatedly accessed and checked on each request). Which is what you would use AD directly for instead. On-premise AD is your stored authentication (and authorisation) repository.

Did you ever find a working solution to do on-premise AD authentication from a .Net Core WebApi app? Should be common, but there doesn't seem to be a clear example anywhere online that isn't infected with Azure, cloud, JWT or Identity dependencies and complications (and there must be). I have come across many others asking the same question and no answer. I will keep looking and trying to piece together my own solution.

Reasons:
  • RegEx Blacklisted phrase (3): Did you ever
  • RegEx Blacklisted phrase (3): Did you ever find a
  • RegEx Blacklisted phrase (1): I want
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (0.5):
Posted by: Mark Worrall

79288298

Date: 2024-12-17 14:42:37
Score: 1.5
Natty:
Report link

I had this exact issue today after upgrading my xcode to 16.2; I looked everywhere but finally doing these solved it for me:

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

79288291

Date: 2024-12-17 14:40:36
Score: 2.5
Natty:
Report link

Step 1 : Close your "intellij idea"

Step 2 : Go to your project folder and delete ".idea" file

Step 3 : In the same folder Right click and then "open folder as a intellij idea"

------------Your problem solved 'Happy Coding'----------------------------

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Filler text (0.5): ------------
  • Filler text (0): ----------------------------
  • Low reputation (1):
Posted by: Dipesh Coder

79288272

Date: 2024-12-17 14:35:35
Score: 3.5
Natty:
Report link

It is calling the print method from graphql before hashing https://github.com/apollographql/apollo-client/blob/ed3eed70104f500ff8233d2137754b553d5d57f5/src/link/persisted-queries/index.ts#L137C39-L137C44

https://github.com/graphql/graphql-js/blob/48afd37a48d37f6d3342b959e8cb34e1ecbfeffb/src/language/printer.ts#L13

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

79288262

Date: 2024-12-17 14:32:34
Score: 2
Natty:
Report link

Microsoft is Offering FREE Certification Courses! No Fee, No Subscription, No Registration Required, Just Start Learning. Explore the Following Free Courses.

  1. Microsoft Azure Fundamentals
Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Devinoh Hafni

79288259

Date: 2024-12-17 14:31:34
Score: 1
Natty:
Report link

you are most likely using the 3.9ish version of mac's python. switch to a recent version like 3.12 that has proper support for tkinter.

if you are using PyCharm, you should find the python interpreter setting from Pycharm > Settings > Project > Python interpreter.

So basically, you need to change your project's python version to a recent version.

I had this issue and solved it by switching to the version of python I installed via Homebrew

screenshot of python interpreter settings in PyCharm

Reasons:
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Victor Praiz

79288255

Date: 2024-12-17 14:30:32
Score: 7 🚩
Natty:
Report link

Right now im facing the same issue for which i cant able to find any solution. Actually this issue happened suddenly today without any major changes.

Reasons:
  • Blacklisted phrase (1.5): any solution
  • Low length (1):
  • No code block (0.5):
  • Me too answer (2.5): facing the same issue
  • Single line (0.5):
  • Low reputation (1):
Posted by: Karthikeyan S

79288250

Date: 2024-12-17 14:29:32
Score: 1.5
Natty:
Report link

Consider the Array1= [ [ { name:"Joseph", age:23 }, { name:"linda", age:22 }], [{ name:"bob", age:22 }, { name:"suzan", age:22 }] ] ;

var Result369=Array1.SelectMany(); The Result369 array will looks like this:

[ { name:"joseph", age:23 }, { name:"linda", age:22 }, { name:"bob", age:22 }, { name:"suzan", age:22 } ]

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Joseph a joseph

79288248

Date: 2024-12-17 14:29:32
Score: 1
Natty:
Report link

Cloudinary might be configuring before loading the env variable..... hence when I added following line in top of the file... Now it's working properly

import dotenv from 'dotenv'
dotenv.config()

alternative way, You can try configuring the cloudinary in entry file(e.g. index.js)

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

79288245

Date: 2024-12-17 14:29:32
Score: 2.5
Natty:
Report link

If you have an enterprise LLM account, like a chatgpt enterprise account, you can create an API into your ticketing system and then search across ticketing system to pull all relevant examples. I've done this to glean insights from voice of the customer data. Might be helpful.

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

79288244

Date: 2024-12-17 14:28:31
Score: 2
Natty:
Report link

On macOS the path is: ~/Library/Application Support/SourceTree/browser.plist

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

79288242

Date: 2024-12-17 14:28:31
Score: 2.5
Natty:
Report link

Solution using lastest QueryDSL API 5.x

Expressions.stringTemplate("collate({0} as binary_ci)", someStringPath)

Using Hibernate Query Language collate() function https://docs.jboss.org/hibernate/orm/current/querylanguage/html_single/Hibernate_Query_Language.html

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

79288239

Date: 2024-12-17 14:27:31
Score: 1
Natty:
Report link

1 - Check if the program is already instrumented: You can try running the instrumentation command again. If you get an error saying it’s already instrumented, that confirms it. Another way is to inspect the program’s binary with tools like dumpbin (from Visual Studio) to look for coverage-related info.

2 - Find the session ID: There’s no direct command to get the session ID from an instrumented program. You might be able to find it in coverage reports or logs. If not, you’ll need to re-instrument the program with a new session ID.

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

79288223

Date: 2024-12-17 14:22:30
Score: 2
Natty:
Report link

CASE is not used for flow control (like IF-ELSE) in Oracle SQL. To perform the desired operation (insert records if they exist, or insert a default value otherwise), you must use a combination of PL/SQL or separate SQL statements with IF or MERGE.

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

79288222

Date: 2024-12-17 14:21:29
Score: 3
Natty:
Report link

When you create new project - Name, Android Application Name and IOS Application Name should be different

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): When you
  • Low reputation (0.5):
Posted by: Miramax Mars

79288220

Date: 2024-12-17 14:20:28
Score: 4
Natty:
Report link

Thank you, but that's not what I'm looking for. It has to go up simultaneously with my hand.

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 (1):
Posted by: Salih Etka Akagündüz

79288207

Date: 2024-12-17 14:16:27
Score: 1
Natty:
Report link

From within an AzureML pipeline (SDK v2), you can read the run_id from an environment variable and then get the display name as follows

client = MLClient( ... )
job = client.jobs.get(os.environ["AZUREML_RUN_ID"])
job.display_name
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: techtech

79288205

Date: 2024-12-17 14:15:27
Score: 1
Natty:
Report link

The most common solution I encountered is using the Math.random function to generate an extra-long number. However, the downside is that the ID might be duplicated, even though the chance seems slim.

A far better approach is to use the self.crypto.randomUUID function to generate a randomized ID.

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

79288199

Date: 2024-12-17 14:15:27
Score: 4
Natty:
Report link

Just do not use pinggy.io to test SSO authentication, use pythonanywhere or any other deploy tool

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

79288198

Date: 2024-12-17 14:14:25
Score: 12.5
Natty: 7.5
Report link

did you solve the problem ? i'm facing the same issue

best regards

Reasons:
  • Blacklisted phrase (0.5): best regards
  • Blacklisted phrase (1): regards
  • RegEx Blacklisted phrase (3): did you solve the problem
  • RegEx Blacklisted phrase (1.5): solve the problem ?
  • Low length (1.5):
  • No code block (0.5):
  • Me too answer (2.5): i'm facing the same issue
  • Contains question mark (0.5):
  • Starts with a question (0.5): did you solve the
  • Low reputation (1):
Posted by: Paulo971

79288183

Date: 2024-12-17 14:11:25
Score: 1
Natty:
Report link

I found out that we should use put method instead of post

Also, the API URL must be: api_url = "https://api.cron-job.org/jobs"

Finally, the bare minimum of params should be:

"job": {
"url": command_url,
"enabled": True,
"saveResponses": True,
"schedule": {
    "timezone": "GMT",
    "expiresAt": 0,
    "hours": [hour],    
    "minutes": [minute],
    "mdays": [-1],      
    "months": [-1],     
    "wdays": [-1]       
}

}

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Oussama El Khamlichi

79288177

Date: 2024-12-17 14:10:24
Score: 1
Natty:
Report link

Is button1 just a normal windows forms button? Text is just a property of the control.

If it is, try doing:

button1.Text = "New Text";

Add that to your button1_Click event.

 private void button1_Click(object sender, EventArgs e)
    {
        button1.Text = "New Text";
        var BildiriminOzellikleri = new ToastContentBuilder()
Reasons:
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: qater

79288172

Date: 2024-12-17 14:09:24
Score: 0.5
Natty:
Report link

Firemonkey uses TAlphaColor colours. You can do this:

var C: TAlphaColorRec;
begin
  C.A:=256;  //Unless you also want random transparency!
  C.R:=Random(256);
  C.G:=Random(256);
  C.B:=Random(256);

  Label1.Font.Color:=C;
end;

TAlphaColorRec is in the System.UITypes unit.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Philip J. Rayment

79288164

Date: 2024-12-17 14:07:23
Score: 0.5
Natty:
Report link

The problem was the missing gnome-keyring. Installation:

apt-get update
apt-get install -y gnome-keyring

And after a restart of the wsl the docker-credential-secretservice was running. Verification via docker-credential-secretservice list returns {}, which is a valid empty list. If you are on a interactive wsl you can create a keyring or if you not already have one you will be forced to do so by docker login by a little popup dialog.

In my case, during test automation I have to do it in a non-interactive and headless way. So the second part to get the problem solved is to create a dbus-run-session and pass the actions that need the login via script including the creation of a keyring.

dbus-run-session -- ./pull-docker.sh

and the pull-docker.sh contains:

#! /bin/bash

echo '$USER' | gnome-keyring-daemon --unlock
echo $GITHUB_TOKEN | docker login ghcr.io -u <your docker registry user> --password-stdin
docker compose pull
Reasons:
  • Blacklisted phrase (1): I have to do
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Michael K.

79288149

Date: 2024-12-17 14:04:22
Score: 2
Natty:
Report link

When we say:

curl -I https://registry.npmjs.org/

Response is:

HTTP/2 200 date: Tue, 17 Dec 2024 13:59:04 GMT content-type: application/json cf-ray: 8f376e7a3e643fbb-BOM cf-cache-status: DYNAMIC npm-notice: This endpoint is deprecated. Use https://replicate.npmjs.com instead. server: cloudflare

The notice says to use replicate endpoint.

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Starts with a question (0.5): When we
  • Low reputation (0.5):
Posted by: Virendra Shenvi Velingkar

79288144

Date: 2024-12-17 14:01:21
Score: 0.5
Natty:
Report link

You need endpoint to serve assets, ie. The JavaScript file. I would try opening the js file in the browser first. Here is their example:

https://bottlepy.org/docs/dev/tutorial.html#serving-assets

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

79288130

Date: 2024-12-17 13:58:21
Score: 2
Natty:
Report link

FINALLY!!!!!!!
After crawling about 1.5 days I managed to change string 'items' by editing file 'title-frontend.js' content in '/wp-content/plugins/woocommerce/assets/client/blocks/mini-cart-contents-block/' directory.
The main reason with not changing text was the browser cache, which has to be flushed.

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

79288121

Date: 2024-12-17 13:55:20
Score: 5
Natty: 5
Report link

Por favor quita NavigationPage.HasNavigationBar="false" del XAML y hazlo desde de código c#

Reasons:
  • Blacklisted phrase (2): código
  • Low length (1):
  • No code block (0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: iván Ponce

79288119

Date: 2024-12-17 13:54:19
Score: 1
Natty:
Report link

As far as I know, that project should work in .NET 8 as well.

I'm afraid you are mixing instructions for configuring an API and an OAuth client application. For example, you don't need ClientId and ClientSecret in appsettings.json to configure the API.

Follow the instructions in this article to test the API (by the way, this is the article attached to that sample project)

Reasons:
  • Blacklisted phrase (1): this article
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Andrea Chiarelli

79288116

Date: 2024-12-17 13:53:19
Score: 0.5
Natty:
Report link

This site will help you. https://heroicons.com/

<svg
        xmlns="http://www.w3.org/2000/svg"
        className="h-5 w-5"
        fill="none"
        viewBox="0 0 24 24"
        stroke="currentColor"
        strokeWidth="2"
        class="size-6"
      >
        <path
          strokeLinecap="round"
          strokeLinejoin="round"
          d="M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0"
        />
      </svg>

Ouput

The above code will give you this output code.

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

79288112

Date: 2024-12-17 13:52:18
Score: 2.5
Natty:
Report link

Gumbo, your answer maybe

Won't your answer lead to a mistake?

Remark: Two elements are recognized as the same only if the expression (string) $elem1 === (string) $elem2 is true — when the string representations of the values are identical.

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

79288105

Date: 2024-12-17 13:50:18
Score: 2
Natty:
Report link

case types.SUCCESS_SIGNED_PDF: return {
...state, pdfURL: action.payload, pdfLoaded: true, //in this line pdfError: false,

inside this you should use pdfLoaded : false coz when you are getting the response from backend so you should set false to the loader

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

79288089

Date: 2024-12-17 13:45:15
Score: 10.5 🚩
Natty: 5.5
Report link

I found your post because I have a similar problem. I know its 4 years later but maybe you see this:D

the task priority I understand is just a priority system between multiple seize blocks no? so if I use agent.priority as task priority the last agent enterering the seize block sets the task priority of this seize block to x.. but within the agents waiting in the queue integrated inthe seize block there is no priority system..

thats at least how I understand it.. If I have 10 agents waiting in the queue of a seize block, i want the agent.priority parameter to determine 1. which agent is first in the queue and 2nd this agent.priority shall set the task priority of this seize block..

Do you know how to implement this?

Reasons:
  • Blacklisted phrase (1): I have a similar problem
  • RegEx Blacklisted phrase (1): i want
  • RegEx Blacklisted phrase (2.5): Do you know how
  • Long answer (-0.5):
  • No code block (0.5):
  • Me too answer (2.5): I have a similar problem
  • Ends in question mark (2):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Teddy

79288086

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

One of the root cause behind this issue is the presence of NT SERVICE\MSSQLSERVER and NT SERVICE\SQLSERVERAGENT under Local Policies\User Rights Assignments \ Replace a process level Token

As it is said above running SQL server repair will register these accounts properly.

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

79288085

Date: 2024-12-17 13:42:14
Score: 1
Natty:
Report link
  • What happens if my ADF jobs start to exceed the interval and offset? Will they queue up?

AFAIK, as you are using Self-Dependency tumbling window triggers, the current trigger run won't start until the previous trigger is completed. Even if the current pipeline run fails, the queues will wait for the dependency trigger run to get succeeded. By this way it will ensure that current operation executed only after the successful completion of its previous run.

What do I need to do to "clear" a queue? Do I need to redeploy the pipeline?

As per this Github issue by @jrimada,

If you want to clear the queue, you can directly cancel the current trigger run. To do this, go to monitor -> Trigger runs -> Tumbling window triggers -> current running trigger run -> cancel.

enter image description here

This will ensure that it won't trigger the pipeline run anymore.

enter image description here

If there are any pipeline failures, you can stop the next trigger runs and stop the trigger and update the pipeline as per your requirement.

You can refer this documentation and this SO answer by @Alain to know more about the Dependency of the Tumbling window triggers.

Reasons:
  • Blacklisted phrase (1): this document
  • Blacklisted phrase (0.5): I need
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @jrimada
  • User mentioned (0): @Alain
  • Starts with a question (0.5): What
  • High reputation (-2):
Posted by: Rakesh Govindula

79288081

Date: 2024-12-17 13:41:14
Score: 1
Natty:
Report link

Convert an image from one color space to another:

import cv2

image = cv2.cvtColor(image, cv2.CV_8U)
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: BarzanHayati

79288080

Date: 2024-12-17 13:41:14
Score: 1.5
Natty:
Report link

Try using @ElementCollection annotation, generally, Hibernate Envers might not recognize changes to a collection of mutable objects like List<BigDecimal?>.

@Entity
@Audited
class ValuesHolder(

// other fields

@ElementCollection
@Column(columnDefinition = "NUMERIC(18,6)", nullable = false)
var values: List<BigDecimal?>,
)

@ElementCollection ensures that Hibernate treats the collection elements as part of the entity and performs dirty checking on the collection. Changes to the collection or its elements will be detected and audited by Envers.

Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • User mentioned (1): @ElementCollection
  • Low reputation (1):
Posted by: MAYANK DEVRANI

79288078

Date: 2024-12-17 13:40:14
Score: 3.5
Natty:
Report link

Show the list of packages in pubspeck.yaml

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

79288074

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

isNotNull is a function, and as such it must be called with parenthesis: isNotNull().

Reasons:
  • Low length (1.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Single line (0.5):
  • Starts with a question (0.5): is a
  • Low reputation (0.5):
Posted by: orderlyfashion

79288069

Date: 2024-12-17 13:38:13
Score: 1.5
Natty:
Report link

When I first encounted the error and searched for how to disable whitenoise, I saw the setting below and used it while creting my settings/test.py file:

STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage' 

Based however on my own base.py file, to successfully override it, I needed this:

STORAGES = {
    # Enable WhiteNoise's GZip and Brotli compression of static assets:
    # https://whitenoise.readthedocs.io/en/latest/django.html#add-compression-and-caching-support
    "staticfiles": {
        "BACKEND": 'django.contrib.staticfiles.storage.StaticFilesStorage',
    },
}

Switching the first for the later worked. I guess I made flawed assumptions about how the settings are read by Django!

Reasons:
  • Blacklisted phrase (0.5): I need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Starts with a question (0.5): When I
  • Low reputation (1):
Posted by: Del_Wiz

79288065

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

Have a look at: https://www.w3schools.com/cssref/css3_pr_opacity.php

In CSS add the opacity property to the HTML element that you want to make transparent. Like so:

div {
    opacity: 0.5;
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: 2F4U

79288063

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

The Properties page was empty when I opened it from "View" but filled up when I right clicked a form (in design view) and then selected "properties".

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

79288062

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

Consider brew info --json https://docs.brew.sh/Manpage#info-abv-options-formulacask-

brew info --json openssl@3 | jq -r '.[0].ruby_source_path'
[
 {
    "ruby_source_path": "Formula/o/[email protected]",
    "ruby_source_checksum": {
      "sha256": "7a1131cdb5cb92b8b659c0de4c9b3a3031adf38737553e72eb51e43546ab9ef6"
    }
  }
]

Though this is wrong after the sharding. correct is Formula/[email protected] and Aliases/openssl

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

79288060

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

From my understanding, Crow's Foot is a cardinality style, it is always been used with the entity labels to show the relationship between entities. Chen's notation is another style of ERD. There are many different styles of ERD and there is no absolute definition of how an ERD must be. A lot of ERD use crow's foot, 1:N and some other styles.

Chen's notation does NOT include crow's foot symbols on it, however you can see some people combine them together. A crow's foot ERD from this blog, Gustavo du Mortier

Just go Google and see how many different styles of Chen's, Crow's, Hybrid or whatever they are. As long as you are concerned, and you can present your idea, then you can have your own set of diagrams.

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

79288054

Date: 2024-12-17 13:35:13
Score: 1
Natty:
Report link

As you mentioned you are running multiple instances and this error occur when the file is still opened in one of them.

A workaround in case you know which file has the error is to open it again:

Workbooks.Open(filePath)

Good luck!

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

79288051

Date: 2024-12-17 13:35:12
Score: 5.5
Natty:
Report link

try this video

https://www.youtube.com/watch?v=WNzb_SHifDQ

it solved my issue

Reasons:
  • Blacklisted phrase (1): youtube.com
  • Blacklisted phrase (2): try this video
  • Blacklisted phrase (1): this video
  • Probably link only (1):
  • Low length (2):
  • No code block (0.5):
  • High reputation (-2):
Posted by: Poonam Bhatt

79288042

Date: 2024-12-17 13:33:11
Score: 1.5
Natty:
Report link

Desactivate AVG and use git update-git-for-windows in your Windows Terminal Choose Yes - it open GUI and update Git with it and close it when it's finished

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

79288040

Date: 2024-12-17 13:33:11
Score: 3
Natty:
Report link

The best solution for me was to find the problematic versions in the schema_migrations table in the database and delete them. Then run the rollback command again.

Reasons:
  • Low length (1):
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Marcos Eduardo Santos Henke

79288038

Date: 2024-12-17 13:32:10
Score: 5
Natty: 5.5
Report link

Does anyone know if this is now possible? I am able to set the name when I use a scheduled run but not on a Rule with a Target as step function.

Reasons:
  • RegEx Blacklisted phrase (2): Does anyone know
  • Low length (1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Keegan Lester

79288037

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

For high-speed scenarios where you only need to check if the id exists and don’t need the full object, storing just the id in a separate cache is usually better. It makes checking faster.

If memory is not a big concern and you want to keep things simple, you can stick with storing everything in the same cache, but it will be slower.

So, in most cases with a high-throughput flow, create a separate cache for just the id. This will make the system faster because you only need to read the small id data instead of the whole object.

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

79288035

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

This seems like you want to write an annotation processor. This gives you some help writing such an annotation processor: https://www.baeldung.com/java-annotation-processing-builder

And from Gradle you can set it up like this: https://docs.gradle.org/current/userguide/java_plugin.html#ex-declaring-annotation-processors

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

79288034

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

I struggled with this issue many hours today, but I was able to make it work in the end.

Bottom line: Remove the semicolon at the end of your SQL command.

It seems that OracleCommand expects more commands to come if you keep it there.

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

79288019

Date: 2024-12-17 13:26:09
Score: 1
Natty:
Report link

I have created PDF reports, including some with calculations fully automated before. I used Python to create the tex file and then call the texcompiler from within the Python script to compile the tex file to a pdf.  I, in my case, skipped the Excel step completely, since there was no reason for a user to intervene. Since tex files are written in plain text, this is not too difficult.

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

79288012

Date: 2024-12-17 13:22:07
Score: 2.5
Natty:
Report link
  1. go to settings and set cursor type to line
  2. disable all extensions
  3. close vs code and restart
  4. enable all extensions if cursor reverts back to a line
Reasons:
  • Low length (1):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ujjwal Gupta

79288010

Date: 2024-12-17 13:19:06
Score: 1
Natty:
Report link
  1. For First Question , Not realy! with sx props , you can work with The theme , it's look like MUI System with sx props ,change the theme for that specific component 2- For second Question , MUI Using Utility Classes behind the scenes , you can track them with dev tools , MUI manage almost every thing with Utility Classes , But you must consider that , MUI using React and The React it self is not that SEO friendly!

  2. For Better SEO Compatibility , I recommend to use some framework like Tailwind because this framework it can be only dev-dependency , and the final result is only CSS , of course for more animation you need some other frameworks like motion , but however in animation MUI is not that good

  3. But if for something like first initializing the page , use SSR , SEO of your website will be fine

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

79288007

Date: 2024-12-17 13:17:05
Score: 6 🚩
Natty: 4.5
Report link

Tax of last month ? or upfront tax

Reasons:
  • Low length (2):
  • No code block (0.5):
  • Ends in question mark (2):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Meet Soni

79288006

Date: 2024-12-17 13:17:05
Score: 3
Natty:
Report link

Used node-global-key-listener to listen to keyup events instead of hijacking globalShortcut.

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

79288003

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

First query runs over all records in table so try WHERE closure which will be faster :)

UPDATE tbl_name SET field_name = CASE WHEN condition_1 THEN 'Blah' WHEN condition_2 THEN 'Foo' WHEN condition_x THEN 123 ELSE 'bar' END AS value WHERE fieldname IN (condition_1, condition_2, condition_x)

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