Is there a real difference in trading conditions between standard brokers and Earnforex? Some traders believe spreads are higher on Islamic accounts, while others say the service is identical except for the swap-free feature. What’s your experience?
Big Limos is a world-renowned leader in the design and manufacturing of custom-built limousines, luxury SUVs, and specialty vehicles. With a strong reputation for quality, craftsmanship, and innovation, Big Limos transforms ordinary vehicles into extraordinary masterpieces of comfort, style, and performance. Every limousine created by Big Limos is a reflection of precision engineering and artistic excellence, built to meet the highest standards of luxury transportation around the globe.
Thank you for the break-down as I was reading into the word 'all' when it would be better explained with 'each' as the all was presumptuous to summation. Thanks again @kitt51.
@Martheen to answer your question: Yes I want to have it so that it scans and try to find the .uc file in them.
@Andreas Wenzel to answer your question: Yeah sure I will look at the book on C. And also the .uc file will be a file type the user can read and write to. It is just a plane file with a random file type I gave it cuz I wanna practice making something.
@greg spears to answer you question: No as in like the name of the file can be anything but when getting the file's format it have be a ".uc".
@John Bode to answer your question: Ah ok I see that I will figure that out when I get there soon I am mostly focusing on the other thing right now, thanks tho!
@DavidW thanks for the reply. Unfortunately I can't provide more details. One quick question if you know. What I found is if I have a file lets say myutils.py in module1 and another file with same name myutils.py in a separate module2 and then I compile myutils.py and myutils.py separately it compiled both of them like myutils.cp312.win_amd64.pyd at both places. When I import functions from them then it fails, but if I compile only one of them the imports work. Struggling to see why it matters ? Any idea?
@Chris wow, this looks really fast, but the intersect with [ does not provide the same result as as terra::intersect. What does the is.related do? Given that these data are in lon/lat WGS 84, to calculate the area of all polygons resulting from intersect, should the data be projected using an equal area projection?
I am using a Zebra ZT 411 printer, but I have two issues. First, I want to use the RS-232 serial port, but when I install the driver, there is no option for it in the printer settings; only options like network and Bluetooth are available. Second, I want to connect to the printer via the network. In fact, when I ping the printer, it shows as connected, but when I try to do a test print, it doesn't work. I would appreciate your guidance.
I think the issue is with the target website, after the first call it seems it is identifying the call as originating from a robot and is blocking my calls for a number of minutes. Is there a way to avoid this?
@bricks96 this is exactly what I'm looking for, thank you. To take it one step further, instead of the time interval being days, what if I wanted it to be working hours?
So if my employee receives an order at 2pm on Wednesday and completes it at 4pm on Monday the next week, that would be 29 working hours, assuming a 9-hour workday. How do I change the sequence part of the formula to essentially consider each unique hour of every day the case is being worked?
I call the login page, input the credential, click on the sign in button, then it try to get to a specific page on the same website but sometimes it works other times it just get stuck or never gets to the url even with large timeouts. Does it effect the flow if it is not headless?
Those are exactly the tools likely to be recommended. Can you elaborate on why "they all seem to be unreliable" to you? Have you made an attempt and encountered a problem of some kind?
i am new to Excel and VBA but slowly working through it and my question is simular to the origional one above, except i require it to get one named picture.png or jpg and embed it into a cell?
I am call ing this from an input form that is working to a point i get to the get picture any assistance would be greatful for a newbie to VBA
@Pepijn Kramer, we are using a raw pointer to signify a non-owning pointer (see C++ Core Guideline R.3). I think @Eljay's response is close to what we're after.
I could not find a way to do this easily, so I wrote a small R package. The package is not thoroughly tested but works for the cases I have tried. It's available here: https://github.com/koekvall/predglmm
I'm trying to follow your instructions, and got you modified .bat file. Thanks for that.
I can connect to Azure Key Vault, but get an error: "Failed to load signer "signer #1": NONE entry "SigningKey" does not contain a key
Looks like the 'NONE' comes from '--ks NONE' option, and feels like if apksigner is looking for the key in a keystore, and not in key vault. Would you agree ?
Any help would be much appreciated.
Reasons:
Blacklisted phrase (0.5): Thanks
Blacklisted phrase (1): appreciated
Blacklisted phrase (1): Any help
RegEx Blacklisted phrase (3): Any help would be much appreciated
What about a script that can manage multiple POST inputs to the same cell from different users intelligently. Right now my logic is: Input to a cell from a POST request -> sheet formula takes that input and -> returns output in another cell -> GET takes that output from the cell and sends it to the user.
However, if second user inputs to that same cell with a POST request before that process is complete for the first user, the first user will get the second user's output.
I am looking for good ways to prevent this from occurring-or perhaps an entirely different approach is ideal.
This functionality moved into the community edition in Flyway 9.21.1 (July'23) so you should be able to follow this tutorial page without any trouble in a recent version
Thank you @topsail, that fixed it. I had some single-character variables, and every time I tried to print them in the python console, I accidentally accepted the suggestion.
@Caleth I'm interested to understand more about your comment
There's also specialisations, but the general advice is to never define specialisations of function templates, because of the interaction with overload resolution.
In addition, you constrained the compiler instantiation of the two versions of the do_something function.
Oh no as in how can I read a file but like any file that has a file format that is ending in .uc or something. rather than specifying the exact file every time.
@Jarod42 A simple text based search may also work. This is quite a large open source project. I have started digging into how this tool can be developed.
Thanks for sharing your suggested model and the work you put into this!
I've tested the logic with our data, and unfortunately, it's not currently producing the correct results because it appears to be treating each week in isolation.
The calculation must be cumulative, meaning it needs to take into account the settled OT hours and the final owed/reserved hours balance carried over from all previous weeks.
Core Issue: Missing Week-Over-Week Carryover
The model is failing to correctly utilize the historical owed_hours_remaining to offset current-week surplus hours before determining the OT_payable amount.
Here are two clear counter-examples showing the discrepancy:
1. Employee 1 (Week 5)
The expected result reflects prior weeks' transactions that should have reduced the owed balance, but the model output is too high.
Metric
Expected Result (Cumulative)
Model Output (Incorrect)
OT Paid/ot_possible
0
12
Owed Hours Remaining
2
14
2. Employee 2
The model incorrectly identifies 12 hours as payable OT when the surplus hours should first go toward clearing the outstanding owed balance.
Expected (With Cumulative Carryover):
Owed remaining: 4
OT_possible/OT payable: 0
Output of your model:
Owed remaining: 16
OT_possible/OT payable: 12
The key adjustment needed is to ensure the previous week's owed_hours_remaining is the baseline for the current week's calculation. Any new surplus OT should reduce that owed balance first, before being classified as payable OT.
Please let me know if you can integrate that historical carryover step into your logic!
Reasons:
Blacklisted phrase (0.5): Thanks
Blacklisted phrase (2): Thanks for sharing
RegEx Blacklisted phrase (2.5): Please let me know
Just advise. (I guess you run ok locally without docker - mean paths are correct - upstream downstream)
Why you use Developmnet running in docker ? Use Production.json
Normally Dev you run on host without docker using localhost. (Naming doesn't really matter)
When running in docker replace in ocelot json Host - set container name.
ReRoutes instead of Routes (Routes is used with any service discovery like Consul etc)
BaseUrl should use host.docker.internal, not localhost
Check that you run in one network (all containers)
Install in docker container tab Exec something like curl to check if you see other containers/
apt-get update
apt-get install -y curl
curl http://service name:port../api/.... - just call your other service - should get response
use just ping
apt-get install -y iputils-ping
docker exec servicename1 ping servicename2 -c2
PS I'm stuck with ocelot too in docker - I can call other services (containers) but through Ocelot getting the same error.
Does anyone have any updates on this? I'm encountering the exact same problem, but I haven't found a solution on oracle. I'd like a query that returns the first unlocked row.
Reasons:
Blacklisted phrase (1): any updates on
RegEx Blacklisted phrase (3): Does anyone have any updates
RegEx Blacklisted phrase (1): haven't found a solution
I have the same problem. Been trying to connect with tekla on my application made in .net 4.8, x64 it used to work but I installed the nugget packages and since then I had problems. I have been trying to remove every nugget package and connect to the dll's who are in the tekla structures/<versions>/bin/ folder. But it doesn't help.
I'm just wondering why this question has a "Best practices" tag when it seems to be excluded from the original question's tag section (created by the OP). Can you tell me why this specific question appears differently from others on SO? Is this a new update on this site? After reading Jon Skeet’s post, I now realize that question discussion is allowed here on SO. That's interesting.
@jcalz - What do you mean by "open-ended question"? I am sorry I did not explain my case enough - I do not care about the order of the elements. Only thing I need is that array contains all the elements. Is that still impossible? I will change the body of the post to clarify my needs.
can you enlighten me on the config of the smartlogger? I have enable modbus TCP on the smartlogger but I cannot connect to it through modbus. I am connected to the port wan
Upgrading the androidx-compose-foundation version to 1.10.0-beta01 actually helped. I’m not sure if the developers will allow me to use a beta version, but thank you!
Do you know if there is any article about this issue?
Any updates on this, I'm trying to implement the draw feature like we have in Redfin, but google drawing library is only allowing to draw shapes like polygon, circle, but I want to implement free form polygon?
Without knowing how you actually use that QueryContext in your code, its harder to answer that question, can you give actual code to see how you actually use and call that QueryContext function.
My questions are:
Do you use that context with timeout.
Do you check if there's rows.Err() returned by that QueryContext
If you give us some code sample to understand how you actually call that function, we can answer this question better.
I get programming can be open to interpretation, but one of the things I find difficult is what should set() and get() be responsible for in a container? Should it be for defining or managing the instance or both?
Looking at the Symfony package, it seems the definition of a service is managed through setDefinition() and getDefinition() and you set() the already created service and get() the service. The set() method appears to add only the already created instance either by adding one already created (through parameter) or using createService() which returns it.
I'm also trying to understand the difference between register() and setDefinition() methods. Is register() just a wrapper, and if so, why if setDefinition() is clear on intent and not protected/private?
I just got an issue in my platform where snowflake odbc driver is installed on Linux and I’m trying to connect to snowflake using isql command and the authentication is key pair.
I don’t want to store the PRIV_KEY_FILE and PRIV_KEY_FILE_PWD in odbc.ini and I can pass it via the environment variable .. I tried running it export command but I didnot work . Have anyone come across this issue before ? Please let me know . Thanks
Reasons:
Blacklisted phrase (0.5): Thanks
RegEx Blacklisted phrase (2.5): Please let me know
Although it covers a different error, it’s still related to connected app authentication issues and might help others facing similar problems — for example, errors like: