jeudi 26 septembre 2019

Preloading image on only homepage

I'm a bit confused about preloading and if-statements. How do I preload image only on home page? Body has class="home". Should I be using JS for this task instead? I am putting my code into


How to Assign true condition's value to a variable outside of if else condition in laravel?

I am trying to assign some value to a variable named $bonus in if else conditions and then I am trying to call $bonus outside of the if else condition so the true condition's variable should be called automatically. I have tried this code but it is giving me an error on debugging mode of laravel

Error:

 Undefined variable: bonus

Code:

   if($data->lend_amount >= 50 && $data->lend_amount <= 500)
                {
                    $bonus = ($data->lend_amount * 4)/100;

                }

                else if($data->lend_amount >= 500 && $data->lend_amount <= 50000)
                {
                    $bonus = ($data->lend_amount * 5)/100;

                }

   if ($user_b_update){
                        Transaction::create([
                            'user_id' => $data->user_id,
                            'trans_id' => rand(),
                            'time' => Carbon::now(),
                            'description' => 'Matching Bonus Of '.$bvp.' Users',
                            'amount' => $bonus,
                            'new_balance' => $newacc_bal,
                            'new_earning' => $newbal,
                            'type' => 4,
                            'charge' => 0
                        ]);

Python Most efficient If statement that matches words in a compare string to a keyword string

I am looking for the most efficient (fastest) way to create an if statement that looks for individual words in a keyword string. e.g.

I don't mind if this is done through regular expressions

keywords = 'dog wolf lion shark large whale'
stringToCompare = 'big dog'

if stringToCompare in keywords:
     #dosomething if any word in the compare string matches the keywords

The expected results based on the following input would be:

keywords = 'dog wolf lion shark large whale'

stringToCompare || Expected Result

'big dog' || True

'big cat' || False

'cat shark' || True

'catshark' || False

How to extract middle name from heterogeneous variable with different words count?

I am working in SAS and I have the following dataset from which I need help to extract middle name from heterogeneous variable with different words count? I saw prior link but it does not work for me. my data has only 1 variable

Full_name Ronaldo Al Fisher H. O. Meir Lee Sara Kim Ivan Marco Sina

Manes with first and last names only should be blank in the new column called middle. I tried the following code but it does not work:

> data statisticians; length middle $10;   set statisticians;    if
> count = 2 then middle=.;    if count = 3 then middle= scan(name,2);   
> if count = 4 then middle=scan(name,2);  run;

Any help will be greatly appreciated.

How to replace numbers with N/A in R

I am trying to replace numbers with N/A in R.

Why does this work - primaryage<-na_if(PrimaryAge, 0) - but the two below do not?

primaryage<-na_if(PrimaryAge, 96) primaryage<-na_if(PrimaryAge, 97)

Thanks!

How to populate cell based off two other cells?

My spreadsheet has the following columns

| A  |  B   |     C     |      D      |
|----|------|-----------|-------------|
| ID | Name | Parent ID | Parent Name |

First 3 columns are known. "Parent ID" is either 0 or referring to a number matching the "ID" column. I want to populate the "Parent Name" with the matching value from "Name" and leave it empty is it's 0 or the ParentID doesn't match any IDs.

how to write a function in javascript that transforms multiple of 3 into a string

When a number is a multiple of 3 i want to change it to a string "Menthe", when it's a multiple of 5 to "Glace", when it's a multiple of 7 to "Rhum,.

results need to be numbers from 1 to 110, 11 numbers per line like this :

1 2 Menthe 4 Glace Menthe Rhum 8 Menthe Glace 11

Menthe 13 Rhum MentheGlace 16 17 Menthe 19 Glace MentheRhum 22

23 Menthe Glace 26 Menthe Rhum 29 MentheGlace 31 32 Menthe

I haave to use 2 parameters also startOfCount, endOfCount which I didn't understand their utility This is what I have done so far but how to create the list of numbers and how to put in the loop thank you:

function mojitor(startOfCount, endOfCount) {
for (var x=1; x <= 110; x++){
    if( x % 3 == 0 ){
        return "Menthe"
    }
    if( x % 5 == 0 ){
        return "Glace"
    }
    if( x % 7 == 0 ){
        return "Rhum"
    }
    if( ( x % 3 == 0 ) && ( x % 5 == 0 ) ){
        return "MentheGlace"
    }
        if( ( x % 3 == 0 ) && ( x % 5 == 0 )&& ( x % 7 == 0 ) ){
        return "Mojito"
    }
}
}