
Hello, My cat is pawing at my face, especially when I am sleeping. Sometimes it’s funny, but sometimes it uses her claws and accidentally hurt me and wake me up. Any idea to change its behaviour? Thank you!
Sorry, you do not have permission to send message.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge. All that you need is create an account. Join our community. Create your feed, follow your desired categories and users and keep updated.Besides gaining reputation with your questions and answers, you receive badges for being especially helpful. Badges appear on your profile page, questions & answers.Use your eared points to cread freely sticky questions and get answers rapidly.
We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
Hello, My cat is pawing at my face, especially when I am sleeping. Sometimes it’s funny, but sometimes it uses her claws and accidentally hurt me and wake me up. Any idea to change its behaviour? Thank you!
Please login to vote and see the results.
Hi everyone, I will welcome a dog into my familly and I need to choose a name for him before he arrives. To be easier for him to learn, the name should be as short as possible. I got some names and have to decide among the list in below. Please help me with your vote to choose a name. Thanks
Hello, Is there a solution to check if fanuc robot is in motion? I want to share this inormation with PLC. thanks for help.
You can use Counter if you want to do multiple count of the list from collections import Counter list = ['Jones','Adams','Frank','John','Lopez','Jones','Smith','Ivan','Julian','Carlos','Adams','Frank','Jones','John','Ivan'] print(Counter(list)) Result: Counter({'Jones': 3, 'Adams': 2, 'Frank': 2, 'JRead more
You can use Counter if you want to do multiple count of the list
[crayon-68e6620b35fe3444271637/]
Result:
[crayon-68e6620b35fe8933905395/]
Hi,I am new to VBScript, I am trying to get all the printers status on a network. Is there a script to do that? thank youRead more
here is the code if you need to check if a printer is connected to nework: Set objWMIService = GetObject("winmgmts:\\.\root\cimv2") Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_Printer WHERE Name = 'HP DeskJet 2720E'") For Each objItem in colItems If objItem.Network = True Then WScripRead more
here is the code if you need to check if a printer is connected to nework:
[crayon-68e6620b361aa721079377/]
This script uses the Windows Management Instrumentation (WMI) service to query for printers with the name “HP DeskJet”. It then checks the value of the Network
property for each printer to determine whether it is connected to the network. If the Network
property is True
, the script outputs a message indicating that the printer is connected to the network. If the Network
property is False
, the script outputs a message indicating that the printer is not connected to the network.
I hope this helps!
See lessPlease login to vote and see the results.
What is your greatest weakness in english? You can choose multiple answers.
Please login to vote and see the results.
Which sentence is correct to use ?:“If I was” or “If I were”? or Both are correct
This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings.
If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.
This website uses Google Analytics to collect anonymous information such as the number of visitors to the site, and the most popular pages.
Keeping this cookie enabled helps us to improve our website.
Please enable Strictly Necessary Cookies first so that we can save your preferences!
Hi, In system variables you can find this variable: $MOR_GRP[1].$ROB_MOVE To share the state of robot is moving you can use a an output in a routine executed in a background logic. For example : DO[100] = $MOR_GRP[1].$ROB_MOVE Run this program in background logic: The output DO[100] will be updatedRead more
Hi,
In system variables you can find this variable:
To share the state of robot is moving you can use a an output in a routine executed in a background logic.
For example :
DO[100] = $MOR_GRP[1].$ROB_MOVE
Run this program in background logic:
The output DO[100] will be updated and will get the robot motion status.
I hope this help you.