Snippets Collections
rules() {
  if(request() ->isMethod('post')){
    $password = 'required'
  } else if(request() ->isMethod('put')) {
    $password = 'sometimes'
  }
  
  return [
    'password' => [$password, Rules\Passwod:defaults()]
  	// or
  	'password' => [Rule::when(request()->isMethod('POST'), 'required'),
     Rule::when(request()->isMethod('PUT'), 'optional'),
       'confirmed', Rules\Passwod:defaults()
     ]
  ]
}

protected function prepareForValidation() {
  if($this->password == null) {
    $this->request->remove('password')
  }
}
openssl pkcs12 -export -out Cert.p12 -in cert.pem -inkey key.pem -passin pass:root -passout pass:root
import unicodedata

def strip_accents(s):
    return ''.join(c for c in unicodedata.normalize('NFD', s)
                   if unicodedata.category(c) != 'Mn')
SELECT DISTINCT eventdata_globalcardid, eventdata_tokenid, 
IF(eventtype = 'CARD_UNSTAGED', 'CARD_ADDED_PRE_TOKENIZATION', eventtype) AS event, 
eventdata_merchanttransactionid, year, month, day FROM foxtrot_stream.vault_default 
WHERE year = 2022 AND eventtype IN ('USER_CARD_DELETED', 'CARD_UNSTAGED', 'TOKEN_REGISTERED', 'TOKEN_DELETE')
AND ((eventdata_userid = 'U1612041824331881735953') OR (eventdata_merchantuserid = 'U1612041824331881735953'))
ORDER BY year, month, day
public class PJJJeden {
    public static void main (String[] args) {
        double tablica[] = new double[10];
        for (int i = 0; i < tablica.length; ++i) {
            tablica[i] = Math.random() * 10;
            System.out.println((int)(tablica[i]));
            if ((int)tablica[i] % 2 == 0){
                System.out.println("number is even");
            }
            else {
                System.out.println("number is odd");
            }

        }
    }
}
%jdbc(hive)
set tez.queue.name=default;
set hive.execution.engine=tez;
 
select a.*,
b.utr,
b.sender_account_number,
d.receiver_account_number,
c.district, 
e.masked_acc_id,
f.eventdata_globalcardid as globalcardid,
f.CardTokenEventDate, 
P.wallet_id, 
Q.wallet_id, 
Q.merchant_reference_id, 
Q.merchant_id, 
Q.category, 
Q.sub_category, 
Q.amount, 
Q.currency_code, 
Q.txn_type, 
Q.txn_state, 
Q.txn_time, 
Q.created_at, 
Q.updated_at, 
Q.closing_available_balance
FROM
    (select senderphonenumber,
    senderuserid,
    sendertype,
    receiverphonenumber,
    receiveruser,
    receivertype,
    receiversubtype,
    accountingproviderid,
    transaction_id,
    transaction_time,
    pay_transaction_status,
    workflowtype,
    transfermode,
    totaltransactionamount,
    senderupiamount,
    senderwalletamount,
    senderpgamount,
    senderbankid,
    senderbankaccountsha,
    senderbankifsc,
    sendernameonbankaccount,
    receiverbankifsc,
    receiverbankid,
    receiverbankaccountsha,
    message,
    device_manufacturer,
    ip,
    device_advertiser_id,
    latitude,
    logitude,
    sender_vpa,
    reciver_vpa,
    senderglobalcardid
    from fraud.transaction_details_v3
    where updated_date BETWEEN '2022-10-01' AND '2022-10-31'
    -- only list of merchants:
    -- AND receivertype = 'MERCHANT' AND (senderuserid in ('MNIT6A8LJ','M33JYFACO') or receiveruser in ('MNIT6A8LJ', 'M33JYFACO'))
    -- only phone no
    -- AND ((senderphonenumber = '8999167190') OR (receiverphonenumber = '8999167190'))
    -- only userId
    AND ((senderuserid in ('U2110021431485385239216')) or (receiveruser in ('U2110021431485385239216')))
    -- combined list of userids & phone nos
    -- AND ((senderphonenumber = '8999167190') OR (receiverphonenumber = '8999167190') OR (senderuserid = 'U2110291351325847772230') or (receiveruser = 'U2110291351325847772230'))
    -- use IN ('', '', '') instead of "=", if there are multiple phone nos or userIds
    and errorcode = 'SUCCESS'
    and pay_transaction_status = 'COMPLETED') a
left join 
    (select transaction_id, account_number as sender_account_number, UTR
    from payment.transaction_payer_sources
    where year = 2022) b 
on a.transaction_id  = b.transaction_id
left join 
    (SELECT user_id, district FROM edw_shared.user_dimension
    where user_id in ('U2110021431485385239216')) c 
on a.senderuserid = c.user_id
left join 
    (select transaction_id, account_number as receiver_account_number
    from payment.transaction_receiver_instruments
    where year = 2022) d 
on a.transaction_id  = d.transaction_id
LEFT JOIN
	(SELECT eventdata_senderuser AS user_id, eventdata_transactionid AS txn_id, eventdata_sendermaskaccountid as masked_acc_id
    FROM foxtrot_stream.payment_backend_transact
    WHERE year = 2022 and month= 10 and eventdata_senderuser IN ('U2110021431485385239216'))e
ON a.transaction_id = e.txn_id AND a.senderuserid = e.user_id
LEFT JOIN
    (SELECT eventdata_userid, eventdata_globalcardid, eventdata_tokenid, IF(eventtype = 'CARD_UNSTAGED', 'CARD_ADDED_PRE_TOKENIZATION', eventtype) AS event, 
    CONCAT(year, '-', IF(month < 10, CONCAT('0', month), month), '-', IF(day < 10, CONCAT('0',day), day)) as CardTokenEventDate 
    FROM foxtrot_stream.vault_default 
    WHERE year = 2022 AND month <= 10 AND eventdata_userid IN ('U2110021431485385239216') 
    AND eventtype IN ('USER_CARD_DELETED', 'CARD_UNSTAGED', 'TOKEN_REGISTERED', 'TOKEN_DELETE')
    AND eventdata_globalcardid <> '')f
on a.senderuserid = f.eventdata_userid AND a.senderglobalcardid = f.eventdata_globalcardid
LEFT JOIN
    (SELECT DISTINCT user_ext_id as user_id, wallet_id FROM users.users
    WHERE user_ext_id IN ('U2110021431485385239216'))P
ON P.user_id = a.senderuserid 
LEFT JOIN
    (SELECT txn_id, wallet_id, merchant_reference_id, merchant_id, category, sub_category, 
    amount, currency_code, txn_type, txn_state, txn_time, created_at, updated_at, closing_available_balance
    FROM wallet.transaction_master
    WHERE year = 2022 AND month = 10)Q
ON P.wallet_id = Q.wallet_id AND Q.txn_id = a.transaction_id 
#include <bits/stdc++.h>
using namespace std;

int main() 
{
    int t;
    cin>>t;
    while(t--)
    {
      int n;
      cin>>n;
      int a[n];
      for(int i=0;i<n;i++)
      {
         cin>>a[i];
      }
      unordered_map<int,int> m1;
      for(int i=0;i<n;i++)
      {
         m1[a[i]]++;
      }
      priority_queue<pair<int,int>> maxH;
      for(auto x:m1)
      {
         maxH.push({x.second,-1*(x.first)});
      }
      while(!maxH.empty())
      {
         int freq=maxH.top().first;
         int ele=-1*(maxH.top().second);
         for(int i=0;i<freq;i++)
         {
            cout<<ele<<" ";
         }
         maxH.pop();
      }
      cout<<"\n";
    }
	return 0;
}
def binarySearch(array, value):
    min_number = 0
    max_number = len(array) - 1

    while min_number <= max_number:
        mid_number = (min_number + max_number) // 2
        if value == array[mid_number]:
            return f"Found {value} at Index {mid_number}"
        elif value < array[mid_number]:
            max_number = mid_number - 1
        else:
            min_number = mid_number + 1
    return "Not Found"


array = [0, 2, 5, 8, 10, 12, 15]
print(binarySearch(array, 12))
 
Children who participate in a variety of physically demanding activities at school, such as extracurricular athletics

If you ask somebody to say the first word that comes to mind when you mention the word scooter, Razor is most likely
Polar bears are the top predator in the arctic marine ecosystem and the largest land carnivore. The polar bear's coat
After workers cut a slit in the bark, latex runs out and collects in a cup. This process is called tapping. The slit
Its wide spreading branches give it a shape like an umbrella. Its narrow leaves are dark green and glossy. The bark
They are much like car tires, but smaller. Brakes, a headlight, a taillight, turn signals, and a horn are important
Even in your sleep, your heart keeps beating, or pumping blood. Your heart is divided into two sides separated by a septum. The
You've probably been driving for many years and when you first learned how to drive, the price of gas was surely considerably
This can be hard enough when you're just rising for work, school, or college, but to get up earlier than you need to
The torch may travel across oceans, mountains and deserts, as well as through cities and villages. The entry of the flame into
The angular distance from the equator to itself iso, thus the latitude at the equator is 0 degrees. If we move either
They test the hypothesis with an experiment. If the experiment does not support the hypothesis, the scientists think about the
A high speed rating is probably the greatest and most desired aspect of a crossbow. For practicing and competition
Razor revolutionized the push scooter and gave it more stability and style. They didn't just stick with one version
These keys usually show a small picture of each of the symbols used on the map, along with a written description of
More than one hundred fifty five thousand miles wide, dappled with spokes that rotate at different rates, Saturn's awe inspiring
As with any subject, the more you study and the more you learn about forex trading the more beneficial that knowledge
This means that the strings are stretched over a long neck that extends from the body of the instrument. These instruments
Every parent wants the best start for their children in this life. This is also true for the start we give them when
It has spun like a top toppling over ever since, which makes for some oddball seasons and decades devoid of even a
But, within less than a year and a half after his return from London, the aged statesman set sail once again for Europe
The true nature of these objects, or even whether the current classification scheme is accurate, remains unknown, although
One of those qualities is character. The report says top colleges should look for caring students. Students should
Many times our eyes give us the correct information but our brain is what does not make the correct interpretation
Permission to build the subway was not given until a year later and they were still not allowed to build the tram line
Today, finding gold is harder than ever. In most mines, workers find specks of gold so small that forty of them can fit in the
The dry seeds, called cocoa beans, are then shipped to processing plants or chocolate factories. At the plant or factory, workers
Each company keeps their special recipe for gum base a secret, but there is something we can tell you. All gum bases
As with any subject, the more you study and the more you learn about forex trading, the more beneficial that knowledge will be
According to the Chinese, the forces in the universe are believed to affect everything in life, including our health. These forces
It also serves as camouflage. Polar bears are excellent swimmers and can sustain a pace of ten kph. Adult males can measure
up
It happens by opening the mouth, breathing in, expanding a tube that leads to the eardrums, and then exhaling. The whole event%
To avoid attacks, they have natural protections. Some caterpillars are colored to blend into their surroundings Others have showy
Until the declaration was signed, America was a part of the British Empire. But as the colonies grew, Americans felt that the
During medical studies conducted on rabbits, amalaki had a cholesterol reducing effect on rabbits whose numbers were elevated
It is important that you understand that biologists are still learning about our world, and are making new discoveries every single
As with latitude, longitude is measured as an angular distance. With latitude, the angular distance is measured from the equator.
If one blows up, it can splinter into hundreds of small pieces. Each one of those small pieces adds to the growing band of space
Fun shape boards combine the elements of both short boards and longboards and are typically midsized, which is 7 to 8 feet in
Cordlike structures called tendons connect skeletal muscles to the skeleton. As skeletal muscle tightens, or contracts, it gets
Smaller stars tend to live longer because they don't use up their fuel as fast. Our sun is about halfway through its life. We
She spins, lands squarely on her feet, and raises her arms in triumph. The stadium fills with cheers. A great performance followed
The ponies swim across the channel in about five minutes, with crowds cheering as the animals reach shore. Back on dry land, the
These cells have no nucleus, and are also missing many of the parts commonly found in other cells. For this reason, monerans are
como
by formed
In other cultures only special storytellers were entrusted with this important job. A culture's best storytellers had good memories.
More wires connect to the power outlets in rooms. When a person plugs in an iron or another electric device, the current travels
You might remember that, as a teen driver, it was cool to drive fast, peel out, stop suddenly, and just drive for entertainment.
Rock gardens are a type of garden with an emphasis on rocks and stones with a few small plants that are found in naturally rocky areas.
These are similar to traditional ice skating sports. Today roller skaters also take part in so called extreme sports such as vertical
some scientists look at poisons not as a source of fear but as a raw material for drugs and other useful chemicals. They're investigating
Plants use the light from the sun to produce their own food. This allows them to grow almost anywhere, as long as there is enough water.
NO sport or game is without rules and regulations. A good paintball field has very stringent regulations and, if not followed, you will
Losing its tail is tough on a gecko. Because its tail plays a key role in balance, a gecko has a hard time climbing and gliding without

$(document).on("click", '#detail-score', function() {
    localStorage.setItem("typeStage", 'Diagnostik');
    localStorage.setItem("titleStage", $(this).data('titlestage'));
    window.location.href = '/teacher/games-coordinator/akm/diagnostic/unit/' + roundId;
});
cd %ProgramFiles%\Windows Defender
MpCmdRun.exe -removedefinitions -dynamicsignatures
MpCmdRun.exe -SignatureUpdate
	        
import java.util.Scanner;
public class PJJJeden {
    public static void main(String[] args) {
        for (int i = 0; i <= 2; i++) {
            for (int j = 0; j <= 5; j++) {
                System.out.print("* ");
            }                                     //wyprodukuje 3 liczby ktore beda produkowaly 6 liczb. wyswietli sume
            System.out.println();                 //za kazdym loopem j przejdzie do kolejnej linijki i
            for (int j = 0; j <= 3; j++){
                System.out.print(" *");
            }
            System.out.println();

        }
    }
}
import java.util.Scanner;
public class PJJJeden {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.print("wprowadz miesiac: ");
        int miesiac = sc.nextInt();
        System.out.print("wprowadz dzien: ");
        int dzien  = sc.nextInt();
        if (miesiac == 1) {
            System.out.println(dzien);}
        if (miesiac == 2) {
            System.out.println(dzien + 31);}
        if (miesiac >= 3 && miesiac % 2 == 0) {
            System.out.println(28 + dzien + 30*(miesiac-2) + miesiac/2);}
        if (miesiac >= 3 && miesiac % 2 != 0) {
            System.out.println(28 + dzien + 30*(miesiac-2) + miesiac/2);}
        else{
            System.out.println("blad");
        }
    }
}
<div class="dropzone dropzone-multiple" data-toggle="dropzone" data-dropzone-multiple data-dropzone-url="http://">
    <div class="fallback">
        <div class="custom-file">
            <input type="file" class="custom-file-input" id="dropzoneMultipleUpload" multiple>
            <label class="custom-file-label" for="dropzoneMultipleUpload">Choose file</label>
        </div>
    </div>
    <ul class="dz-preview dz-preview-multiple list-group list-group-lg list-group-flush">
        <li class="list-group-item px-0">
            <div class="row align-items-center">
                <div class="col-auto">
                    <div class="avatar">
                        <img class="avatar-img rounded" src="..." alt="..." data-dz-thumbnail>
                    </div>
                </div>
                <div class="col ml--3">
                    <h4 class="mb-1" data-dz-name>...</h4>
                    <p class="small text-muted mb-0" data-dz-size>...</p>
                </div>
                <div class="col-auto">
                    <div class="dropdown">
                        <a href="#" class="dropdown-ellipses dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
                            <i class="fe fe-more-vertical"></i>
                        </a>
                        <div class="dropdown-menu dropdown-menu-right">
                            <a href="#" class="dropdown-item" data-dz-remove>
                                Remove
                            </a>
                        </div>
                    </div>
                </div>
            </div>
        </li>
    </ul>
</div>
import java.util.Scanner;
public class PJJJeden {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.print("wpisz wartosc wart: ");
        int wart = sc.nextInt();
        for(int i = 1; i <= 10; i++){
            System.out.println(i * wart);
            }

        }
    }
import java.util.Scanner;
public class PJJJeden {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println("Wprowadź wrtosc A: ");
        int A = sc.nextInt();
        System.out.println("Wprowadź wrtosc B: ");
        int B = sc.nextInt();
        System.out.println("Wprowadź wrtosc C: ");
        int C = sc.nextInt();
        System.out.println(A + "x^2 + " + B + "x + " + C);
          double delta = Math.pow(B, 2) - 4 * A * C;
            if (delta > 0) {
                System.out.println("x1 = " + (-B - Math.sqrt(delta)) / (2 *A) + "   x2 = "+ (B - Math.sqrt(delta)) / (2 *A));
            }
            if (delta == 0){
                    System.out.println("x1 = " + (B / (2 *A)));
            }
            if (delta < 0) {
                System.out.println("nie ma rozwiazan");
            }
        }
    }
let result = objItems.filter(obj => obj['title'] == STUDENT_ID_LABEL);
Instead, you can create a CloudFormation template or modify an existing one. A template describes all your resources and their properties. When you use that template to create a CloudFormation stack, CloudFormation provisions the Auto Scaling group, load balancer, and database for you. After the stack has been successfully created, your AWS resources are up and running. You can delete the stack just as easily, which deletes all the resources in the stack. By using CloudFormation, you easily manage a collection of resources as a single unit.

echo "alias lg='lazygit'" >> ~/.zshrc && alias lg="lazigit"
WITH DispatchStops AS(
SELECT 
	DispatchKey,
	MAX( loader ) LoadAt_Customer,
	MAX( loaderarea ) AreaCode_Pickup,
	CASE WHEN MAX( tcall ) IS NULL THEN MAX( final ) ELSE MAX( tcall ) END Drop_Customer,
	CASE WHEN MAX( tcall ) IS NULL THEN MAX( finalarea ) ELSE MAX( tcallarea ) END AreaCode_Drop,
	MAX( TCALL ) TCALL,
	MAX( arrivalcallcts ) arrivalcallcts
FROM
( SELECT 
	DispatchKey,
	CASE WHEN Stopnumber = 1 THEN stopcustomercode END loader,
	CASE WHEN Stopnumber = 90 THEN Stopcustomercode END final,
	CASE WHEN Stopnumber = 99 THEN stopcustomercode END tcall,
	CASE WHEN Stopnumber = 1 THEN PU_Area_Code END loaderarea,
	CASE WHEN Stopnumber = 90 THEN PU_Area_Code END finalarea,
	CASE WHEN Stopnumber = 99 THEN PU_Area_Code END tcallarea,
	CASE WHEN StopNumber = 1 THEN CONVERT( DATETIME, arrivalcalltimestamputc ) AT TIME ZONE 'UTC' AT TIME ZONE 'Mountain Standard Time' END arrivalcallcts
FROM(
	SELECT 
		CONCAT( ordernumber, '-',  dispatchnumber ) DispatchKey, stopnumber, StopCustomerCode, PU_Area_Code, arrivalcalltimestamputc 
	FROM [mvtebi_dw_ops].[dw_ops].[platsci].[amqp_dispatchstops] amqp
		LEFT JOIN ops.tbl_Dim_ICC_Customer Customer
			ON amqp.stopcustomercode = Customer.Customer_Code AND Customer.ETL_Current_Row = 1
	WHERE StopRemovedTimeStampUTC IS NULL 
) AS CustomerMaster 
) AS StopType
GROUP BY DispatchKey
 
), FactDisp AS (
SELECT 
	tractor.division,
	Tractor_Code_Trimmed,
	driver1.Driver_Code DriverCode1,
	CASE WHEN Dispatch_Num = 1 THEN loaderarea.Area_Code ELSE AreaCode_pickup END RoutelinePickup,
	CASE WHEN TCall IS NOT NULL THEN AreaCode_Drop WHEN Dispatch_Num = finaldispatch THEN dropperarea.Area_Code END RoutelineDrop,
	CONCAT( fd.Order_Num, '-', Dispatch_Num ) DispatchKey,
	CASE
		WHEN DATEDIFF( HOUR, LAG( Dispatch_End_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ), Dispatch_Datetime )>= 24 
			THEN Dispatch_Datetime
	END NAIVESTART,
	CASE
		WHEN DATEDIFF( HOUR, Dispatch_End_Datetime, LEAD( Dispatch_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ))>= 24
			THEN NULL
		WHEN 
			DATEDIFF( HOUR, LAG( Dispatch_End_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ), Dispatch_Datetime )>= 24  -- naive
		OR
			( 
				DATEDIFF( HOUR, LAG( Dispatch_Datetime, 1 ) OVER( PARTITION BY Driver1.Driver_Code ORDER BY Dispatch_Datetime ), LAG( Dispatch_End_Datetime, 1 ) OVER( PARTITION BY Driver1.Driver_Code ORDER BY Dispatch_Datetime ))
					-( 
						( CAST((( LAG( Total_Miles, 1 ) OVER( PARTITION BY Driver1.Driver_Code ORDER BY Dispatch_Datetime )) / 565 ) AS INT )*10 )  
						+( CAST(( LAG( Total_Miles, 1 ) OVER( PARTITION BY Driver1.Driver_Code ORDER BY Dispatch_Datetime ) / 565 ) AS INT )*11 )   
						+( 
							CAST( 
									11*((( CONVERT( DECIMAL( 8, 3 ),  LAG( Total_miles, 1 ) OVER( PARTITION BY	Driver1.Driver_Code ORDER BY Dispatch_Datetime )) 
									/ CONVERT( DECIMAL( 8, 5 ), 565 ))) - (  LAG( Total_miles, 1 ) OVER( PARTITION BY Driver1.Driver_Code ORDER BY Dispatch_Datetime ) / 565 )) AS INT 
								)
						)	
					)
			)  >= 20 
			AND DATEDIFF( HOUR, LAG( Dispatch_End_Datetime, 2 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ), LAG( Dispatch_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime )) <  20
			AND DATEDIFF( HOUR, LEAD( Dispatch_End_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ), LEAD( Dispatch_Datetime, 2 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ))  < 20 
			AND DATEDIFF( HOUR, LAG( Dispatch_Datetime, 1 ) OVER( PARTITION BY Driver1.Driver_Code ORDER BY Dispatch_Datetime ), LAG( Dispatch_End_Datetime, 1 ) OVER( PARTITION BY Driver1.Driver_Code ORDER BY Dispatch_Datetime )) <= 20
			THEN Dispatch_Datetime
	END circuitstart,
	CASE
		WHEN
			DATEDIFF( HOUR, LAG( Dispatch_End_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ), Dispatch_Datetime )>= 24 
			THEN NULL
		WHEN 
			( DATEDIFF( HOUR, Dispatch_End_Datetime, LEAD( Dispatch_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ))>= 24 ) 
			THEN  Dispatch_End_Datetime	
		WHEN
			( 
				DATEDIFF( HOUR, Dispatch_Datetime, Dispatch_End_Datetime )  
					-(
						( CAST(( Total_Miles / 565 ) AS INT ) * 10 ) 
						+( CAST(( Total_Miles / 565 ) AS INT ) * 11 ) 
						+( CAST( 11*((( CONVERT( DECIMAL( 8, 3 ), Total_Miles ) / CONVERT( DECIMAL( 8, 5 ), 565 ))) - ( Total_miles / 565 )) AS INT ))
					
					) 
			) >= 24 
			AND DATEDIFF( HOUR, LAG( Dispatch_End_Datetime, 2 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ), LAG( Dispatch_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ))<24
			AND DATEDIFF( HOUR, LEAD( Dispatch_End_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ), LEAD( Dispatch_Datetime, 2 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ))<24
			AND ABS( DATEDIFF( HOUR, Dispatch_end_Datetime, Order_Late_Delivery_Appt )) >=5  
			OR 
				LEAD( Dispatch_datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ) IS NULL AND ( DATEDIFF( HOUR, Dispatch_End_Datetime, CURRENT_TIMESTAMP ) >= 24 )
			THEN Dispatch_End_Datetime	
	END circuitend,
	CASE 
		WHEN LEAD( Dispatch_datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ) IS NULL AND ( DATEDIFF( HOUR, Dispatch_End_Datetime, CURRENT_TIMESTAMP ) >= 24) THEN 'CASEB'
		WHEN 
			( 
				DATEDIFF( HOUR, Dispatch_Datetime, Dispatch_End_Datetime )  
					-(
						( CAST(( Total_Miles / 565 ) AS INT ) * 10 ) 
						+( CAST(( Total_Miles / 565 ) AS INT ) * 11 ) 
						+( CAST( 11*((( CONVERT( DECIMAL( 8, 3 ), Total_Miles ) / CONVERT( DECIMAL( 8, 5 ), 565 ))) - ( Total_miles / 565 )) AS INT ))
					
					) 
			) >= 24 
			AND DATEDIFF( HOUR, LAG( Dispatch_End_Datetime, 2 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ), LAG( Dispatch_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ))<24
			AND DATEDIFF( HOUR, LEAD( Dispatch_End_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ), LEAD( Dispatch_Datetime, 2 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ))<24
			AND ABS( DATEDIFF( HOUR, Dispatch_end_Datetime, Order_Late_Delivery_Appt )) >=5  
			THEN 'CASEA'
	END sakjfhnsaf,
	CASE
		WHEN DATEDIFF( HOUR, Dispatch_End_Datetime, LEAD( Dispatch_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime )) >= 24
			THEN Dispatch_End_Datetime
	END NAIVEEND,
	DATEDIFF( HOUR, LAG( Dispatch_Datetime, 1 ) OVER( PARTITION BY Driver1.Driver_Code ORDER BY Dispatch_Datetime ), LAG( Dispatch_End_Datetime, 1 ) OVER( PARTITION BY Driver1.Driver_Code ORDER BY Dispatch_Datetime )) laddispdur,
	DATEDIFF( HOUR, LAG( Dispatch_End_Datetime, 1 ) OVER( PARTITION BY driver1.Driver_Code ORDER BY Dispatch_Datetime ), Dispatch_Datetime ) durationbetweendispatch,
	Dispatch_Datetime, Dispatch_End_Datetime, 
	Order_Late_Delivery_Appt delappt,
	Total_Miles TotalMiles,
	DATEDIFF( HOUR, Dispatch_datetime, Dispatch_end_Datetime ) Dispduration,
	CONCAT( Driver1.City, ', ', Driver1.State ) DriverHome
FROM ops.tbl_Fact_ICC_Dispatch fd
	LEFT JOIN ops.tbl_Dim_ICC_Customer loader
		ON fd.SK_LoadAt_Customer_ID = loader.SK_Customer_ID
	LEFT JOIN ops.tbl_Dim_ICC_Customer dropper
		ON fd.SK_Consignee_Customer_ID = dropper.SK_Customer_ID
	LEFT JOIN ops.tbl_Dim_ICC_Area loaderarea
		ON fd.SK_Order_Pickup_Area_ID = loaderarea.SK_Area_ID
	LEFT JOIN ops.tbl_Dim_ICC_Area dropperarea
		ON fd.SK_Order_dest_Area_ID = dropperarea.SK_Area_ID
	LEFT JOIN ops.tbl_Dim_ICC_Unit tractor
		ON fd.SK_Unit_ID = tractor.SK_Unit_ID AND tractor.ETL_Current_Row = 1 
	LEFT JOIN hr.vw_Dim_ICC_Driver driver1
		ON fd.SK_Driver1_ID = driver1.SK_Driver_ID 
	LEFT JOIN DispatchStops
		ON CONCAT( Order_Num, '-', Dispatch_Num ) = DispatchStops.DispatchKey
	LEFT JOIN ( SELECT Order_Num, SUM( Total_Miles ) OrderTotalMiles, SUM( Empty_Miles ) OrderEmptyMiles, MAX( Dispatch_Num ) finaldispatch FROM ops.tbl_Fact_ICC_Dispatch GROUP BY Order_Num ) AS finalDispatch
		ON fd.order_num = finaldispatch.order_num
WHERE 
	DATEDIFF( DAY, Dispatch_Datetime, CURRENT_TIMESTAMP ) <= 121
	AND driver1.Driver_Code IS NOT NULL-- AND driver2.driver_code IS NULL 
	AND tractor.Division IN( '300', '200' )
	--AND driver1.Driver_Code = 'MEDWI'
--ORDER BY DriverCode1, Dispatch_Datetime
 
), CircuitIndexer AS( 
SELECT 
	Division, 
	DriverCode1,
	DriverHome,
	circuitstarter,
	circuitend,
	ROW_NUMBER() OVER( PARTITION BY DriverCode1 ORDER BY CircuitStarter ) CircuitIndex
FROM(
	SELECT 
		Division,
		DriverCode1,
		DriverHome,
		CASE WHEN circuitstart IS NULL THEN LAG( CircuitStart, 1 ) OVER( PARTITION BY DriverCode1 ORDER BY Dispatch_Datetime ) END circuitstarter, 
		circuitend
	FROM FactDisp	
		 WHERE circuitstart IS NOT NULL OR circuitend IS NOT NULL ) AS CircuitTimestamps
 
), CircuitsFactDisp AS( 
	SELECT
		FactDisp.Division,
		FactDisp.DriverCode1,
		DispatchKey,
		CircuitIndex,
		ROW_NUMBER() OVER( PARTITION BY FactDisp.DriverCode1, CircuitIndex ORDER BY Dispatch_Datetime ) ordersequence,
		CASE 
			WHEN RoutelinePickup IS NULL THEN LAG( RoutelineDrop, 1 ) OVER( PARTITION BY FactDisp.DriverCode1 ORDER BY Dispatch_Datetime )
			ELSE RoutelinePickup
		END RoutelinePickup,
		CASE
			WHEN RoutelineDrop IS NULL THEN LEAD( RoutelinePickup, 1 ) OVER( PARTITION BY FactDisp.DriverCode1 ORDER BY Dispatch_Datetime )
			WHEN RoutelineDrop IS NULL AND TotalMiles <= 66 AND RoutelinePickup IS NOT NULL THEN RoutelinePickup
			WHEN RoutelineDrop IS NULL AND TotalMiles <= 66 AND RoutelinePickup IS NULL THEN LAG( RoutelineDrop, 1 ) OVER( PARTITION BY FactDisp.DriverCode1 ORDER BY Dispatch_Datetime )
			ELSE RoutelineDrop
		END RoutelineDrop,
		CASE WHEN TotalMiles IS NULL THEN 0 ELSE TotalMiles END TotalMiles,
		Dispatch_Datetime,
		Dispatch_End_Datetime
	FROM FactDisp
		LEFT JOIN CircuitIndexer
			ON FactDisp.DriverCode1 = CircuitIndexer.DriverCode1 AND FactDisp.Dispatch_Datetime >= CircuitIndexer.circuitstarter AND FactDisp.Dispatch_End_Datetime <= CircuitIndexer.circuitend
 
), FactDispCircuitPivot AS( 

SELECT 
	Division, DriverCode1, CircuitIndex, 
	MIN( Dispatch_Datetime ) CircuitStartCTS, MAX( Dispatch_End_Datetime ) CircuitEndCTS,
	DATEDIFF( HOUR, MIN( Dispatch_Datetime ), MAX( Dispatch_End_Datetime )) CircuitDuration,
	CONCAT_WS( ' / ', MAX( [1] ), MAX( [2] ), MAX( [3] ), MAX( [4] ), MAX( [5] ), MAX( [6] ), MAX( [7] ), MAX( [8] )) CircuitRoute,
	MAX( [1] ) disp1, MAX( [2] ) disp2, MAX( [3] ) disp3, MAX( [4] ) disp4, 
	MAX( [5] ) disp5, MAX( [6] ) disp6, MAX( [7] ) disp7, MAX( [8] ) disp8,
	COALESCE( MAX( [11] ), 0 ) + COALESCE( MAX( [12] ), 0 ) + COALESCE( MAX( [13] ), 0 ) + COALESCE( MAX( [14] ), 0 ) +
	COALESCE( MAX( [15] ), 0 ) + COALESCE( MAX( [16] ), 0 ) + COALESCE( MAX( [17] ), 0 ) + COALESCE( MAX( [18] ), 0 ) CircuitMilesSum,
	MAX( [11] ) Miles1, MAX( [12] ) Miles2, MAX( [13] ) Miles3, MAX( [14] ) Miles4,
	MAX( [15] ) Miles5, MAX( [16] ) Miles6, MAX( [17] ) Miles7, MAX( [18] ) Miles8
FROM(
	SELECT 
		Division, DriverCode1, CircuitIndex, oseq,
		CONVERT( DATETIME, Dispatch_Datetime ) AT TIME ZONE 'Mountain Standard Time' AT TIME ZONE 'Mountain Standard Time' Dispatch_Datetime, 
		CONVERT( DATETIME, Dispatch_End_Datetime ) AT TIME ZONE 'Mountain Standard Time'AT TIME ZONE 'Mountain Standard Time' Dispatch_End_Datetime,
		[1], [2], [3], [4], [5], [6], [7], [8], [11], [12], [13], [14], [15], [16], [17], [18]
	FROM
(
		SELECT 
			Division, DriverCode1, CircuitIndex,
			CONCAT( routelinepickup, '-', routelinedrop ) routeline, TotalMiles, Dispatch_Datetime, Dispatch_End_Datetime, DATEDIFF( HOUR, Dispatch_Datetime, Dispatch_End_Datetime ) dispdur,
			ordersequence, ordersequence oseq, 
			ordersequence +10 oseq1
		FROM CircuitsFactDisp
		WHERE CircuitIndex IS NOT NULL
) AS pivotter
	PIVOT(
		MAX( Routeline ) FOR OrderSequence IN( [1], [2], [3], [4], [5], [6], [7], [8] )
		) AS pivotteralso
	PIVOT(
		SUM( TotalMiles ) FOR oseq1 IN( [11], [12], [13], [14], [15], [16], [17], [18] )) AS maxxertable
) AS pivotter2
GROUP BY Division, DriverCode1, CircuitIndex

), unIpivit AS( 
SELECT 
	Division, DriverCode1,  CircuitIndex, RIGHT( OrderSequeunce, 1 ) ordersequence, Routeline, CircuitRoute, CircuitMilesSum,
	LEFT( Routeline, 3 ) RoutelinePickup, RIGHT( Routeline, 3 ) RoutelineDrop--, TotalMiles
FROM(
	SELECT * FROM FactDispCircuitPivot
) as Z
	UNPIVOT( Routeline FOR OrderSequeunce IN( [disp1], [disp2], [disp3], [disp4], [disp5], [disp6] )
) AS unpi
	
), Fuel AS( 
SELECT
	CONCAT_WS( '-', Order_Num, Dispatch_Num ) dskey,
	Station_ID_Code, Station_Name, 
	MAX( Station_City ) City, MAX( State ) State, SUM( Quantity  ) quant
FROM ( SELECT *  FROM ops.vw_Purchased_Fuel WHERE DATEDIFF( DAY, Transaction_Datetime, CURRENT_TIMESTAMP ) < 133 ) AS Z
GROUP BY CONCAT_WS( '-', Order_Num, Dispatch_Num ), Station_ID_Code, Station_Name
)
SELECT *
FROM(
	SELECT 
		z.Division, z.DriverCode1, z.CircuitIndex, z.ordersequence, Routeline, CircuitRoute, CircuitMilesSum,
		TotalMiles, Dispatch_Datetime, DispatchKey
	FROM unIpivit z
		LEFT JOIN CircuitsFactDisp y 
			ON z.DriverCode1 = y.DriverCode1 AND z.CircuitIndex = y.CircuitIndex AND z.Routeline = concat( y.RoutelinePickup, '-', y.RoutelineDrop )
	WHERE CircuitRoute IN( 
		'CO1-NM3 / NM3-ELP / ELP-CA7 / CA7-CO1',
		'NM3-ELP / ELP-CA7 / CA4-CO1 / CO1-NM3',
		'ELP-CA7 / CA4-CO1 / CO1-NM3 / NM3-ELP',
		'ELP-CA4 / CA4-CO1 / CO1-ELP',
		'ELP-TX2 / TX2-CO1 / CO1-NM3 / NM3-ELP',
		'ELP-TX2 / TX2-CO1 / CO1-CO1 / CO1-NM3 / NM3-ELP',
		'ELP-TX2 / TX2-CO1 / CO1-ELP'
	)) AS z
		LEFT JOIN Fuel y
			ON z.DispatchKey = y.dskey 


 ORDER BY Division, CircuitRoute, DriverCode1, CircuitIndex, ordersequence
/* Shivving (IE is not supported, but at least it won't look as awful)

/* ========================================================================== */

​

(function (document) {

  var

  head = document.head = document.getElementsByTagName('head')[0] || document.documentElement,

  elements = 'article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output picture progress section summary time video x'.split(' '),
8
  elementsLength = elements.length,

  elementsIndex = 0,

  element;

​

  while (elementsIndex < elementsLength) {

    element = document.createElement(elements[++elementsIndex]);

  }

​

  element.innerHTML = 'x<style>' +

    'article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}' +

    'audio[controls],canvas,video{display:inline-block}' +

    '[hidden],audio{display:none}' +

    'mark{background:#FF0;color:#000}' +
dpkg-query -W -f='${Installed-Size;8} ${Package}\n' | sort -nr | head -10
class _SplashScreenState extends State<SplashScreen> {
  
  @override
  initState() {
    super.initState();

    Future.delayed(const Duration(seconds: 3), () {
      Navigator.of(context).pushReplacement(
        MaterialPageRoute(
          builder: (context) => Wrapper(),
        ),
      );
    });
  }

// other methods 

}
m_row = int(input()) 
n_row = int(input())  

for i in range(m_row):
    for j in range(n_row):
        print("+", end = " ")
    print()
// (1)주문화면의 청구주소에 추가 입력 필드 표시
add_filter( 'woocommerce_checkout_fields' , 'my_custom_override_checkout_fields' );
function my_custom_override_checkout_fields( $fields ) {
     $fields['billing']['billing_custom_number'] = array(
      'label'     => '개인통관고유번호',
      'placeholder'   => '개인통관고유번호를 입력 해 주세요',
      'required'  => true,
      'class'     => array('form-row-wide'),
      'clear'     => true
     );
	 return $fields;
}

// (2)관리자 화면의 주문 내용에 표시
add_action( 'woocommerce_admin_order_data_after_billing_address', 'my_custom_number_display_admin_order_meta', 10, 1 );
function my_custom_number_display_admin_order_meta($order){
    echo '<p>개인통관고유번호 : ' . get_post_meta( $order->id, '_billing_custom_number', true ) . '</p>';
}

// (3)주문완료시 고객의 주문서 에 표시
add_action('woocommerce_order_details_after_customer_details', 'my_custom_number_display_order_details', 20, 1);
function my_custom_number_display_order_details($order) {
	echo '<p><strong>개인통관고유번호 : </strong>' . get_post_meta( $order->id, '_billing_custom_number', true ) . '</p>';
}

// (4)주문완료시 전송되는 이메일에 표시
add_action( 'woocommerce_email_customer_details', 'my_custom_number_display_emails', 11, 3 );
function my_custom_number_display_emails($order) {
	echo '<ul><li><strong>개인통관고유번호 : </strong>' . get_post_meta( $order->id, '_billing_custom_number', true ) . '</li></ul>';
}
// Add an out of stock overlay to product images when all variations are unavailable
//상품 재고가 떨어지면 상품 이미지에 Out of Stock 오버레이 추가

add_action( 'woocommerce_before_shop_loop_item_title', function() {
global $product;
if ( !$product->is_in_stock() ) {
echo '<span class="sold-out-overlay">Sold Out</span>';
}
});

출처: https://launchwoo.com.au/add-a-sold-out-badge-to-out-of-stock-woocommerce-products/

.sold-out-overlay {
background: #654ea3; /* 배경색 - 적절히 수정 */
color: #fff; /* 텍스트 색상 - 적절히 수정 */
font-size: 14px;
font-weight: 600;
padding: 5px 10px;
position: absolute;
right: 50px;
top: 10px;
}
f = open("final_list", 'r')
data = ast.literal_eval(f.read())
{% assign vip_customer = false %}
{% if customer %}
 {% for tag in customer.tags %}
  {% if tag == 'VIP' %}
    {% assign vip_customer = true %}
   {% endif %}
 {% endfor %}
{% endif %}
 
{% if vip_customer %}
 <a href="/pages/secret-link">Secret Link</a>
{% endif %}
const hexToRgb = hex =>
  hex.replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i
             ,(m, r, g, b) => '#' + r + r + g + g + b + b)
    .substring(1).match(/.{2}/g)
    .map(x => parseInt(x, 16))

console.log(hexToRgb("#0033ff")) // [0, 51, 255]
console.log(hexToRgb("#03f")) // [0, 51, 255]
- 👋 Hi, I’m @murufi

- 👀 I’m interested in ...

- 🌱 I’m currently learning ...

- 💞️ I’m looking to collaborate on ...

- 📫 How to reach me ...

​

<!---

murufi/murufi is a ✨ special ✨ repository because its `README.md` (this file) appears on your GitHub profile.

You can click the Preview link to take a look at your changes.

--->

​
// After login, redirect to a specific page

add_filter( 'woocommerce_login_redirect', 'woocommerce_customer_login_redirect', 9999, 2 );
 
function woocommerce_customer_login_redirect( $redirect, $user ) {
     
    if ( wc_user_has_role( $user, 'customer' ) ) {
        $redirect = get_home_url(); // 홈페이지, homepage
        //$redirect = wc_get_page_permalink( 'shop' ); // 상점 페이지, shop page
        //$redirect = '/custom_url'; // 동일 사이트 내의 커스텀 URL, custom URL same site
        //$redirect = 'https://custom.url'; // 다른 사이트의 커스텀 URL, custom URL other site
        //$redirect = add_query_arg( 'password-reset', 'true', wc_get_page_permalink( 'myaccount' ) ); // 커스텀 내 계정 탭, custom My Account tab
    }
  
    return $redirect;
}
#include <bits/stdc++.h>
using namespace std;

int main() {
     int n;
     cin>>n;
     int a[n];
     for(int i=0;i<n;i++)
     {
        cin>>a[i];
     }
     srand(time(0));
     for(int i=n-1;i>=0;i--)
     {
        int j=rand()%(i+1);
        swap(a[j],a[i]);
     }
     for(int i=0;i<n;i++)
     {
        cout<<a[i]<<" ";
     }
	return 0;
}
add_filter( 'woocommerce_checkout_fields', 'puripia_remove_fields', 9999 );
 
function puripia_remove_fields( $fields ) {
 
  // unset( $fields['billing']['billing_first_name'] );
  unset( $fields['billing']['billing_last_name'] ); // 성 필드 제거
  // unset( $fields['billing']['billing_phone'] );
  // unset( $fields['billing']['billing_email'] );
  unset( $fields['billing']['billing_company'] ); // 회사 필드 제거
  unset( $fields['billing']['billing_country'] ); // 국가 필드 제거
  //unset( $fields['billing']['billing_address_1'] );
  //unset( $fields['billing']['billing_address_2'] );
  unset( $fields['billing']['billing_city'] ); // 도시 주소 필드 제거
  unset( $fields['billing']['billing_state'] ); // 주(state) 줏 필드 제거
  //unset( $fields['billing']['billing_postcode'] ); 
 
  // unset( $fields['shipping']['shipping_first_name'] );
  unset( $fields['shipping']['shipping_last_name'] ); // 성 필드 제거
  // unset( $fields['shipping']['shipping_email'] );
  // and to remove the shipping fields below
  unset( $fields['shipping']['shipping_company'] ); // 회사 필드 제거
  unset( $fields['shipping']['shipping_country'] ); // 국가 필드 제거
  //unset( $fields['shipping']['shipping_address_1'] );
  //unset( $fields['shipping']['shipping_address_2'] );
  unset( $fields['shipping']['shipping_city'] ); // 도시 주소 필드 제거
  unset( $fields['shipping']['shipping_state'] ); // 주(state) 주소 필드 제거
  //unset( $fields['shipping']['shipping_postcode'] ); 

  // unset( $fields['order']['order_comments'] ); 

  return $fields;
}
/** Currency Symbol Change Start **/

add_filter('woocommerce_currencies', 'my_woocommerce_currencies');
function my_woocommerce_currencies($currencies){
    $currencies['KRW'] = '대한민국';
    return $currencies;
}
add_filter('woocommerce_currency_symbol', 'my_woocommerce_currency_symbol', 10, 2);
function my_woocommerce_currency_symbol($currency_symbol, $currency){
    switch($currency){
        case 'KRW': $currency_symbol = '원'; break;
    }
    return $currency_symbol;
}

/** Currency Symbol Change End **/
public class DNA {
 
  public static void main(String[] args) {
 
    //  -. .-.   .-. .-.   .
    //    \   \ /   \   \ / 
    //   / \   \   / \   \  
    //  ~   `-~ `-`   `-~ `-
 String dna1 = "ATGCGATACGCTTGA";
 String dna2 = "ATGCGATACGTGA";
 String dna3 = "ATTAATATGTACTGA";
 
 String dna = dna3;
 //System.out.println(dna.length());

int start = dna.indexOf("ATG");
int end = dna.indexOf("TGA");


 if (start != -1 && end != -1 && (end - start) % 3 == 0){
   System.out.println("Condition 1, 2 and 3 are satisfied.");

   String protein = dna.substring(start, end+3);
   //+3 is because int end cuts off at where TGA begins
   System.out.println("Protein: " + protein);
 }else{
   System.out.println("No protein.");
 }
  }
 
}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h1>Hello World</h1>
</body>
</html>
public class Hashtag {
  
  public static void main(String[] args) {
    
    String hashtag = "#100DaysOfCode";
    
    // Make the hashtag lowercase:
    
    System.out.println(hashtag.toLowerCase());

    System.out.println(hashtag.toUpperCase());
    
  }
  
}
public class Poetry {
  
	public static void main(String[] args) {
      
    String line = "The Heav'ns and all the Constellations rung";     
    // Change the arguments:
    System.out.println(line.substring(4, 11));
    System.out.println(line.substring(24));
  }
  
}
public class Initials {
  
	public static void main(String[] args) {
    
    // Add a first name and a last name:
    String firstName = "Cash";  
    String lastName = "Carti";
    
    // What are the initials?
    System.out.println(firstName.charAt(0));
    System.out.println(lastName.charAt(0));
  }
  
}
star

Mon Nov 07 2022 16:27:15 GMT+0000 (Coordinated Universal Time)

@jassembenrayana

star

Mon Nov 07 2022 15:28:32 GMT+0000 (Coordinated Universal Time) https://amediaforbrukersalg.nextcom.no/index.asp

@ken92vold

star

Mon Nov 07 2022 14:57:15 GMT+0000 (Coordinated Universal Time) https://help.hcltechsw.com/appscan/ADAC/9.0.3/en-US/t_ConvertthepfxCertificatetopemFormat068.html

@andrea_buniotto

star

Mon Nov 07 2022 14:54:14 GMT+0000 (Coordinated Universal Time)

@alewandowski #python

star

Mon Nov 07 2022 14:09:24 GMT+0000 (Coordinated Universal Time) https://hacktoday.io/t/netstat-commands-cheatsheet/3244

@Jalvarez12

star

Mon Nov 07 2022 14:09:09 GMT+0000 (Coordinated Universal Time) https://hacktoday.io/t/netstat-commands-cheatsheet/3244

@Jalvarez12

star

Mon Nov 07 2022 14:09:00 GMT+0000 (Coordinated Universal Time) undefined

@Jalvarez12

star

Mon Nov 07 2022 12:06:13 GMT+0000 (Coordinated Universal Time) https://www.blockchainx.tech/uniswap-clone-script

@Blockchainx #uniswap #uniswapclone #clone

star

Mon Nov 07 2022 11:54:24 GMT+0000 (Coordinated Universal Time) https://codepen.io/Beast-Tagger/pen/vYrXYNq

@chymax030 #html

star

Mon Nov 07 2022 11:51:58 GMT+0000 (Coordinated Universal Time) https://www.javatpoint.com/how-to-add-social-media-icons-in-html

@chymax030 #html

star

Mon Nov 07 2022 10:35:46 GMT+0000 (Coordinated Universal Time)

@shubhangi_burle

star

Mon Nov 07 2022 10:33:31 GMT+0000 (Coordinated Universal Time)

@KutasKozla

star

Mon Nov 07 2022 09:24:52 GMT+0000 (Coordinated Universal Time)

@shubhangi_burle

star

Mon Nov 07 2022 08:34:55 GMT+0000 (Coordinated Universal Time) https://www.wallstreetmojo.com/inventory-shrinkage/

@p83arch #shrinkage #debit

star

Mon Nov 07 2022 07:51:05 GMT+0000 (Coordinated Universal Time) https://developer.salesforce.com/docs/component-library/bundle/lightning-modal-footer/documentation

@pradeepkumar28

star

Mon Nov 07 2022 07:50:04 GMT+0000 (Coordinated Universal Time) https://bootcamp.uxdesign.cc/lightning-web-component-spinner-the-complete-guide-903b77c02e34

@pradeepkumar28

star

Mon Nov 07 2022 05:27:22 GMT+0000 (Coordinated Universal Time) https://acakw.neolms.com/user_dashboard

@aalialialicom

star

Mon Nov 07 2022 05:15:19 GMT+0000 (Coordinated Universal Time) https://practice.geeksforgeeks.org/problems/sorting-elements-of-an-array-by-frequency/0

@Ranjan_kumar #c++

star

Mon Nov 07 2022 02:53:21 GMT+0000 (Coordinated Universal Time)

@yashmakan #python

star

Mon Nov 07 2022 02:37:30 GMT+0000 (Coordinated Universal Time)

@luckymage

star

Mon Nov 07 2022 02:23:31 GMT+0000 (Coordinated Universal Time)

@GodFather #javascript

star

Mon Nov 07 2022 02:18:59 GMT+0000 (Coordinated Universal Time) https://www.microsoft.com/en-us/wdsi/defenderupdates

@ksypcgeneralon

star

Mon Nov 07 2022 01:07:16 GMT+0000 (Coordinated Universal Time)

@KutasKozla

star

Mon Nov 07 2022 00:29:06 GMT+0000 (Coordinated Universal Time)

@KutasKozla

star

Sun Nov 06 2022 21:55:19 GMT+0000 (Coordinated Universal Time) https://demos.creative-tim.com/argon-dashboard-pro-bs4/docs/plugins/dropzone.html

@ziksonfly #html

star

Sun Nov 06 2022 21:38:43 GMT+0000 (Coordinated Universal Time)

@KutasKozla

star

Sun Nov 06 2022 21:21:22 GMT+0000 (Coordinated Universal Time)

@KutasKozla

star

Sun Nov 06 2022 20:47:26 GMT+0000 (Coordinated Universal Time) https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter

@Waydes

star

Sun Nov 06 2022 20:17:38 GMT+0000 (Coordinated Universal Time) https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/Welcome.html

@KKR ##cloudformation

star

Sun Nov 06 2022 18:28:46 GMT+0000 (Coordinated Universal Time) https://github.com/jesseduffield/lazygit#installation

@Antjrobles

star

Sun Nov 06 2022 18:08:55 GMT+0000 (Coordinated Universal Time)

@znyq1189

star

Sun Nov 06 2022 17:18:25 GMT+0000 (Coordinated Universal Time) https://codepen.io/tjoen/pen/wvgvLX

@somvirmalik2998 #undefined

star

Sun Nov 06 2022 16:48:33 GMT+0000 (Coordinated Universal Time) https://descubrearduino.com/como-desinstalar-programas-en-una-raspberry-pi/

@Antjrobles

star

Sun Nov 06 2022 16:07:53 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/69779734/navigator-pushreplacement-error-in-flutter

@macdac #dart

star

Sun Nov 06 2022 13:54:06 GMT+0000 (Coordinated Universal Time)

@codewithakash

star

Sun Nov 06 2022 13:33:18 GMT+0000 (Coordinated Universal Time) https://blog.wpbox.kr/add-custom-field-woocommerce-checkout/

@ncia #개인통관고유번호

star

Sun Nov 06 2022 13:29:19 GMT+0000 (Coordinated Universal Time) https://www.thewordcracker.com/basic/우커머스-품절-라벨-표시하기/

@ncia

star

Sun Nov 06 2022 12:56:54 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/54166074/how-to-read-a-list-of-dicts-from-txt-file

@quaie #python

star

Sun Nov 06 2022 12:47:43 GMT+0000 (Coordinated Universal Time)

@avelo #shopify

star

Sun Nov 06 2022 08:21:10 GMT+0000 (Coordinated Universal Time) https://stackoverflow.com/questions/5623838/rgb-to-hex-and-hex-to-rgb

@AZbrahim #javascript

star

Sun Nov 06 2022 07:24:14 GMT+0000 (Coordinated Universal Time) https://github.com/murufi/murufi/new/main?filename

@murufi #undefined #html #css

star

Sun Nov 06 2022 06:31:32 GMT+0000 (Coordinated Universal Time)

@ncia #wordpress

star

Sun Nov 06 2022 06:31:19 GMT+0000 (Coordinated Universal Time) https://www.geeksforgeeks.org/shuffle-a-given-array-using-fisher-yates-shuffle-algorithm/

@Ranjan_kumar #c++

star

Sun Nov 06 2022 06:12:50 GMT+0000 (Coordinated Universal Time)

@ncia #wordpress

star

Sun Nov 06 2022 06:07:42 GMT+0000 (Coordinated Universal Time)

@ncia #wordpress

star

Sun Nov 06 2022 05:04:03 GMT+0000 (Coordinated Universal Time)

@cruz #javascript

star

Sun Nov 06 2022 04:56:27 GMT+0000 (Coordinated Universal Time)

@keshavjadhav

star

Sun Nov 06 2022 03:46:19 GMT+0000 (Coordinated Universal Time)

@cruz #javascript

star

Sun Nov 06 2022 03:42:56 GMT+0000 (Coordinated Universal Time)

@cruz #javascript

star

Sun Nov 06 2022 03:38:28 GMT+0000 (Coordinated Universal Time)

@cruz #javascript

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension