Skip to main content
4 votes
2 answers
145 views

I know how to instantiate object in PowerShell but I am struggling to find out if its possible to instantiate an object and set one of its properties in the same command. The following commands work ...
Peter M.'s user avatar
  • 948
0 votes
1 answer
144 views

I'm trying to understand how the return value of the HashSet.add() method is handled in Java when it's not used in a condition or assigned to a variable. Here's an example of what I mean: Set<...
Çağatay Şen's user avatar
0 votes
0 answers
177 views

I am developing a Telegram bot using the telebot and I have encountered an issue where the callback query handler is not triggered when I click on an inline button. from telebot import TeleBot, types ...
Entasa's user avatar
  • 1
1 vote
1 answer
42 views

Motivation I am programming a function that takes a call as an input. I notice however that R has two different ways to create calls, either through call() or quote(). My code behaves differently ...
Kuku's user avatar
  • 200
2 votes
3 answers
124 views

Can you please tell me what kind of PHP syntax is: echo Html::{'div.my-class#my-id'}('This is element content') ? It's from https://github.com/decodelabs/tagged library. I mean I know what it does, ...
Michał Grabowski's user avatar
0 votes
0 answers
54 views

The string value seems to appear yet I can not add a value to my calculations in the fulltime and part time. This is the Main class for my inheritance import java.util.Scanner; public class ...
玉ねぎ忍者's user avatar
1 vote
1 answer
142 views

I am writing a program in assembly for x86-64 microprocessors in 64-bit mode, and that calls a function f in a loop 5 times which in turn calls puts in a loop 3 times to display "hello world"...
Nom's user avatar
  • 47
1 vote
1 answer
70 views

So I am trying to write a bat file that calls 3 different bat files in 3 different locations. My CallAll batch file is saved in the location: "C:\Users\Documents\CallAll\CallAll.bat" This ...
Mark's user avatar
  • 55
0 votes
1 answer
43 views

Trying in a loop_file.py to import an inner function defined in stats_file.py, imported in shared_data.py file, but I experience only to be able to call the outer function. shared_data.py file is used ...
Newbie's user avatar
  • 61
3 votes
0 answers
104 views

I am using Serilog and getting the configuration from the appsettings.json file. I need to update the following code, which worked with an earlier version of the Serilog library but does not work with ...
user1154422's user avatar
1 vote
2 answers
200 views

This is a theoretical question. I know that I can call a method by using ::. It is rarely used, but possible. For example: user = User.new user::name The question is: How it is working under the hood?...
womanonrails's user avatar
1 vote
0 answers
203 views

I want to be able to call a MethodChannel so I can retrieve and send data between Flutter and a 3rd party app but when I do so I get these errors from my Firebase Messaging and Flutter Local ...
Toxic's user avatar
  • 105
1 vote
1 answer
263 views

So, I create an array, call GetType(), and I (reasonably) get the answer Object[]. If I, however, give it a bad method, I get the type of the 0th element in the error message. Just trying to ...
Dustin Sollick's user avatar
0 votes
1 answer
92 views

Say we have an object (e.g. a list) in Scala, and we want to sequence user-defined functions with object member functions, for instance: g(l.map(f) .foldRight(...)) .map(h) If the sequence of ...
Matei's user avatar
  • 152
2 votes
1 answer
148 views

Suppose I have a batch file. This batch file has a 'subroutine' labeled :AppndLog and it's purpose is to append a log file. This routine starts at line - let's say 540. Now - other 'subroutines' ...
k1dfr0std's user avatar
  • 602

15 30 50 per page
1
2 3 4 5
27