Questions tagged [subject]
394 questions
0
votes
2 answers
adding a subject ID variable to a big dataframe in R using loop or other function?
i just started using R.
I merged 54 files (54 subjects) each 7 variables (data from a behavioral experiment) into one R dataframe.
i now have the variables trial (1 to 210) reaction-time, choice and others in one table starting from subject 1 to…

Ben Jonathan
- 29
- 1
- 5
0
votes
2 answers
Exception while connecting weblogic server using EJB - Invalid Subject: principals=[weblogic, Administrators]
I have a thread running in my local weblogic server that runs once in a day which tries to establish connection with another application running in a different weblogic server. Whenever my method creates a remote object and tries to call remote…

JRad
- 11
- 6
0
votes
1 answer
Perl change Email Subject
I'm new with Perl and i need to read one email from Exchange and add one ID to the subject with Perl.
I was searching and i had found:
Mail::Internet splits a message into a header object in the Mail::Header class, plus a body. You can get and set…

ARode
- 17
- 3
0
votes
2 answers
missing values for each participant in the study
I am working in r, what I want to di is make a table or a graph that represents for each participant their missing values. i.e. I have 4700+ participants and for each questions there are between 20 -40 missings. I would like to represent the missing…

Z.Chanell
- 35
- 8
0
votes
1 answer
Sendmail Subject in Laravel 5.1
I want send email with subject using variable , this is code
public function sendmail(Request $request)
{
$data = [
'subject' => $request->input('subject'),
'name' => $request->input('name'),
'phone' => …
user5154997
0
votes
1 answer
RxJava - error handling in subjects
I'm trying to implement a ViewModel in MVVM, providing observables as "input stream" and observer as "output stream" for view to bind.
The code below seems to work if getUser() call succeeds, but throws an uncaught exception if fails:
public class…

Zbigniew Malinowski
- 1,034
- 1
- 9
- 22
0
votes
1 answer
mailto using variable missing out subject
I'm looking to those with far more experienced than me for a solution to a problem.
The following works partly.
echo "" .
$qry['name'] .
"
" . $qry['address1'] . "
" . $qry['address2'] . "
" . …
" . $qry['address1'] . "
" . $qry['address2'] . "
" . …

GeorgeRO
- 3
- 3
0
votes
1 answer
smtplib not send mail with same Subject
I use code below to send mails:
...
msg = MIMEText(htmlString, 'html', 'utf-8')
msg["Subject"] = "Test Subject"
sm = smtplib.SMTP(SMTPSERVER, port=PORT, timeout=TIMEOUT)
sm.set_debuglevel(1)
# sm.ehlo()
# sm.starttls()
#…

Simon
- 1,033
- 1
- 8
- 16
0
votes
1 answer
Why php mail() function displays subject two times (localhost)
I'm using XAMPP and when I send an email with PHP mail() function the subject comes two times (like "hello, hello").
PHP Code:
$from="me@gmail.com";
$to="you@gmail.com";
$subject="hello";
$message="this doesn't work nicely";
$headers = 'From:…

Marianne Sjöberg
- 79
- 1
- 9
0
votes
1 answer
Email button: subject and body text for mailto link
I have a button to send an e-mail message. This opens a new e-mail but the problem is that the subject and the body text are not added to the e-mail message. This is what I have so far that is not working:

Eddy
- 566
- 2
- 8
- 28
0
votes
5 answers
Elaboration of A quotation on 'Simple Design'
An excerpt from Programming Perls:
A Simple Design : Antonie de Saint-Exupery,
the Fresh writer and aircraft designer, said that,
*"A designer knows he has arrived at perfection
not when there is no longer anything to add,
but when there is no…

jai
- 21,519
- 31
- 89
- 120
0
votes
1 answer
Send python email using SMTP with a subject
I am trying to send an email in Python using SMTP, with a From address, To address, BCC address, subject, and message. I have the email sending, and it even sends to the BCC as it should, the only issue is that the message of the email says:
To:…

AggieDev
- 5,015
- 9
- 26
- 48
0
votes
2 answers
Fetch part of url to make subject of mail
I have just received a great answer to my previous question: LINK
In addition to this answer, I have a new challenge.
My mailform is supported with a form.lib.php file where the mailsubject is defined and printed to the mail.
define(…
user4575934
0
votes
1 answer
sparql query - triple
I am a biology trying to understand the meaning of a triple from this SPARQL query. If "a" is a triple, what are the resources for subject, object and predicate in this sample query?
PREFIX rdf:
PREFIX…
0
votes
0 answers
undefined method `should_receive' for subject
I have class similar to this:
class SomeClass
attr_accessor :numbers
# (...)
def external_method
numbers.each do |variant, duration|
duration.each do |duration, value|
internal_method(variant, duration, value)
end
…

ciembor
- 7,189
- 13
- 59
- 100