Snippets Collections
public class lab26
{
public static void main(String[] args)
{
try
{
int x=67/0;
}
catch(ArithmeticException e1)
{
System.out.println("exception 1;"+e1);
}
try
{
String s=null;
System.out.println(s.length());
}
catch(NullPointerException e2)
{
System.out.println("exception 2:"+e2);
}
}
}



#include<iostream>
#include<iomanip>
using namespace std;
int main(){
int a=0,b=1,c,num;
cout<<"enter the nujmber of terms: "<<endl;
cin>>num;
cout<<a<<' '<<b;
for(int i=1;i<=num-2;i++){

c=a+b;
a=b;
b=c;

cout<<' '<<c;



                                   }
cout<<endl;
return 0;
              }
{
    "workbench.colorTheme": "Default Dark+",
    "workbench.startupEditor": "none",
    "editor.fontFamily": "monospace",
    "editor.fontSize": 25,
    "workbench.activityBar.iconClickBehavior": "focus",
    "javascript.referencesCodeLens.enabled": true,
    "javascript.suggest.completeFunctionCalls": true,
    "javascript.referencesCodeLens.showOnAllFunctions": true,
    "terminal.integrated.fontSize": 20,
    "security.workspace.trust.untrustedFiles": "open",
    "terminal.integrated.scrollback": 100000,
    "editor.accessibilitySupport": "off",
    "php.validate.executablePath": "C:/xampp/php/php.exe",
    "launch": {
        "configurations": [
           

            

            
            
           
            


        ],
     
    
    "workbench.editorAssociations": {
        "*.bat": "default"
    },
    "workbench.colorCustomizations": {
    
    },
    
        

        
        },
    
    "terminal.integrated.profiles.windows": {
        
        "msys mingw64": {
            "path": "C:/msys64/msys2_shell.cmd",
            "args": [
                "-defterm",
                "-here",
                "-no-start",
                "-mingw64",
                "--login",
                "-i"
            ],
            
            
        },
        "Windows PowerShell": {
            "path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
    },
        
        "PowerShell": {
            "source": "PowerShell",
            "icon": "terminal-powershell"
        },
        "Command Prompt": {
            "path": [
                "${env:windir}\\Sysnative\\cmd.exe",
                "${env:windir}\\System32\\cmd.exe"
            ],
            "args": [],
            "icon": "terminal-cmd"
        },
        "Git Bash": {
            "source": "Git Bash"
        },
        
        },
        "terminal.external.windowsExec": "C:\\msys64\\mysys2.exe",
        "terminal.integrated.defaultProfile.windows": "MYSYS",  // I am using default MYSYS(this line is optional)
        "terminal.integrated.profiles.windows": {
            "MYSYS": {
                "path": "C:\\msys64\\usr\\bin\\bash.exe",
                "args": [
                    "--login",
                    "-i"
                ]
            }
        },
        "php.debug.executablePath": "C:/xampp/php/php.exe",
        "terminal.integrated.profiles.linux": {
            
            "bash": {
                "path": "bash",
                "icon": "terminal-bash"
            },
            "zsh": {
                "path": "zsh"
            },
            "fish": {
                "path": "fish"
            },
            "tmux": {
                "path": "tmux",
                "icon": "terminal-tmux"
            },
            "pwsh": {
                "path": "pwsh",
                "icon": "terminal-powershell"
            }
        }
        
        
            
           
            
        }
    
        
           
        
        
        
    
    
    
    
        
    
Crypto arbitrage bot development involves creating automated software that exploits price differences for the same cryptocurrency across multiple exchanges to generate profit. Beleaf Technologies specializes in Crypto arbitrage bot development. Our experienced team crafts automated solutions to capitalize on cryptocurrency price variations across exchanges, ensuring you maximize your profits with minimal effort. Trust us for reliable, efficient, and profitable arbitrage bot solutions.

Know more>>
https://beleaftechnologies.com/crypto-arbitrage-trading-bot

To Contact
Telegram: https://t.me/BeleafTech
Whatsapp: +91 80567 86622
Skype: live:.cid.62ff8496d3390349
Mail to: business@beleaftechnologies.com
 <style>
   #supplier_self_comp_name+.select2-container .select2-selection {
     height: 28px !important;
   }

   li[id*="add_comp"] {
   
     color: blue;
    
   }
 </style>
import SwiftUI

struct ContentView: View {
    var body: some View {
        VStack {
            Image(systemName: "globe")
                .imageScale(.large)
                .foregroundStyle(.tint)
            Text("Hello, world!")
        }
        .padding()
        .alignment(.top)
    }
}
extension View {
    
    @ViewBuilder
    func alignment(_ alignment: Alignment) -> some View {
        switch alignment {
        case .leading:
            self.frame(maxWidth: .infinity, alignment: .leading)
        case .trailing:
            self.frame(maxWidth: .infinity, alignment: .trailing)
        case .top:
            self.frame(maxHeight: .infinity, alignment: .top)
        case .bottom:
            self.frame(maxHeight: .infinity, alignment: .bottom)
        case .topLeading:
            self
                .frame(maxHeight: .infinity, alignment: .top)
                .frame(maxWidth: .infinity, alignment: .leading)
        case .topTrailing:
            self
                .frame(maxHeight: .infinity, alignment: .top)
                .frame(maxWidth: .infinity, alignment: .trailing)
        case .bottomLeading:
            self
                .frame(maxHeight: .infinity, alignment: .bottom)
                .frame(maxWidth: .infinity, alignment: .leading)
        case .bottomTrailing:
            self
                .frame(maxHeight: .infinity, alignment: .bottom)
                .frame(maxWidth: .infinity, alignment: .trailing)
        default:
            self.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .center)
        }
    }
}

#Preview {
    ContentView()
}
/*Write a program in C++ to display the sum of the series [ 1+x+x^2/2!+x^3/3!+....].
Sample Output:
Input the value of x: 3
Input number of terms: 5
The sum is : 16.375  */

#include<iostream>
#include<iomanip>
#include<cmath>
using namespace std;
int main(){
    int num,fact=1;
    double sum1=0.0,sum2=0.0,ans,x;
    cout<<"enter the value of x: "<<endl;
    cin>>x;
    cout<<"enter the value of terms: "<<endl;
    cin>>num;
    for(int i=1;i<=num-1;i++){
        
    for(int j=1;j<=i;j++ ){
        sum1=sum1+x;
        x=pow(x,i);
        
        fact = fact*i;
        sum2 = sum2+fact;
        
    }
                  
    
        }
        ans = sum1/sum2;
        cout<<ans<<endl;
    
    
return 0;   
}
docker run -d -p 8088:80 --name welcome-to-docker docker/welcome-to-docker
$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
1b930d010525: Pull complete
Digest: sha256:451ce787d12369c5df2a32c85e5a03d52cbcef6eb3586dd03075f3...
Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.
[ ... Full output clipped ... ]
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 22.04.1 LTS
Release: 22.04
Codename: jammy
$ curl -I https://registry-1.docker.io/v2/
HTTP/1.1 401 Unauthorized
content-type: application/json
docker-distribution-api-version: registry/2.0
www-authenticate: Bearer realm="https://auth.docker.io/token",service="registry.docker.io"
date: Sat, 28 Jan 2023 01:39:06 GMT
content-length: 87
strict-transport-security: max-age=31536000
class WooCommerce_Legacy_Grant_Download_Permissions {
	protected static $instance = null;
	private function __construct() {
		if ( ! class_exists( 'WC_Admin_Post_Types', false ) ) {
			return;
		}
		remove_action( 'woocommerce_process_product_file_download_paths', array( 'WC_Admin_Post_Types', 'process_product_file_download_paths' ), 10, 3 );
		add_action( 'woocommerce_process_product_file_download_paths', array( $this, 'grant_download_permissions' ), 10, 3 );
	}
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self;
		}
		return self::$instance;
	}
	public function grant_download_permissions( $product_id, $variation_id, $downloadable_files ) {
		global $wpdb;

		if ( $variation_id ) {
			$product_id = $variation_id;
		}

		if ( ! $product = wc_get_product( $product_id ) ) {
			return;
		}

		$existing_download_ids = array_keys( (array) $product->get_downloads() );
		$updated_download_ids  = array_keys( (array) $downloadable_files );
		$new_download_ids      = array_filter( array_diff( $updated_download_ids, $existing_download_ids ) );
		$removed_download_ids  = array_filter( array_diff( $existing_download_ids, $updated_download_ids ) );

		if ( ! empty( $new_download_ids ) || ! empty( $removed_download_ids ) ) {
			$existing_orders = $wpdb->get_col( $wpdb->prepare( "SELECT order_id from {$wpdb->prefix}woocommerce_downloadable_product_permissions WHERE product_id = %d GROUP BY order_id", $product_id ) );

			foreach ( $existing_orders as $existing_order_id ) {
				$order = wc_get_order( $existing_order_id );

				if ( $order ) {
					if ( ! empty( $removed_download_ids ) ) {
						foreach ( $removed_download_ids as $download_id ) {
							if ( apply_filters( 'woocommerce_process_product_file_download_paths_remove_access_to_old_file', true, $download_id, $product_id, $order ) ) {
								$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}woocommerce_downloadable_product_permissions WHERE order_id = %d AND product_id = %d AND download_id = %s", $order->get_id(), $product_id, $download_id ) );
							}
						}
					}
					if ( ! empty( $new_download_ids ) ) {
						foreach ( $new_download_ids as $download_id ) {
							if ( apply_filters( 'woocommerce_process_product_file_download_paths_grant_access_to_new_file', true, $download_id, $product_id, $order ) ) {
								if ( ! $wpdb->get_var( $wpdb->prepare( "SELECT 1=1 FROM {$wpdb->prefix}woocommerce_downloadable_product_permissions WHERE order_id = %d AND product_id = %d AND download_id = %s", $order->get_id(), $product_id, $download_id ) ) ) {
									wc_downloadable_file_permission( $download_id, $product_id, $order );
								}
							}
						}
					}
				}
			}
		}
	}
}

add_action( 'admin_init', array( 'WooCommerce_Legacy_Grant_Download_Permissions', 'get_instance' ) );
<script>
  document.addEventListener('DOMContentLoaded', () => {
    const header = document.querySelector('header');
    const headerHeight = header.offsetHeight;
    document.documentElement.style.setProperty('--header-height', `${headerHeight}px`);
  });
</script>
<!-- Google tag (gtag.js) -->

<script async src="https://www.googletagmanager.com/gtag/js?id=G-0JL9YX"></script>

<script>
4
  window.dataLayer = window.dataLayer || [];
5
  function gtag(){dataLayer.push(arguments);}

  gtag('js', new Date());

​
8
  gtag('config', 'G-980JL59Y4X');
9
</script>
public class ThisExample {

	
	int a = 10;      //instance variable
	void display() 
	{
		int a = 200;      //Local variable
      
		System.out.println("Local Variable = " + a);
		System.out.println("İnstance variable = " + this.a);
	}
	
	public static void main(String[] args) {
		
		ThisExample obj = new ThisExample();
		obj.display();

	}

}
//Output: 
Local Variable = 200
İnstance variable = 10
%root% :where(.next,.prev){
	rotate:180deg;
}
%root% {
	--height-width:3.5rem;
}

%root%.brxe-nav-menu .bricks-mobile-menu-toggle{
	width: var(--height-width)!important;
}

%root% .bricks-mobile-menu-toggle {
	height: var(--height-width);
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

%root%.brxe-nav-menu .bricks-mobile-menu-toggle [class^="bar"]{
	width: 100%!important;
  position: unset;
  height: 5px;
}

%root%.brxe-nav-menu .bricks-mobile-menu-toggle[aria-expanded="true"] [class^="bar"]{
  position: absolute;
}
Intricate chaos of cables, electronic devices, code, computer parts, in high quality. Use 100% RGB blue and 100% RGB green. 
selenium-side-runner  --server http://192.168.2.112:4444/wd/hub -c "browserName=chrome" Sample1.side
#include<iostream>
using namespace std;
int main(){
int size =100;
char *pointer = new char [size]; 
cout<<"enter the first array: "<<endl;
for(int i=0;i<size && *pointer != '\0';i++){
cin>>*pointer;
  
                 }



char arr[size];
cout<<"enter the second array: "<<endl;
cin.get(arr,size);
for(int i=0;i<size && arr[i] != '\0';i++){


cout<<arr[i];
    }

















return 0;

      }
// Online C compiler to run C program online
#include <stdio.h>

int main() {
    int mul=0;
    int sum=0;
    while(mul<=1000){
        if(mul%3==0 || mul%5==0)
        sum+=mul;
        mul++;
    }
    printf("sum is %d",sum);
}
//# خروجی مقدار کیف پول
console.log( num1);
//  num = num; // "82144251"
const numAsNumber = Number(num1); 
// numAsNumber=numAsNumber+50;

var str = num1;
var num = parseInt(str);
const alpha = str.replace(num.toString(), '');
//num=num+100;
console.log(num);

if (num>=100) {
await page.getByRole('button', { name: 'برداشت وجه' }).isDisabled();

}if(num<0){

    await expect(page.getByTestId('status')).toHaveText('Fail');
}
res = pd.pivot_table(cv_res,
    values='mean_test_score', index='param_alpha', columns='param_l1_ratio')
res
from sklearn.linear_model import ElasticNet
X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=42)

param_grid = {'alpha': np.logspace(-4, -1, 10),
              'l1_ratio': [0.01, .1, .5, .6, .7, .8, .9, .95, 1]}

grid = GridSearchCV(ElasticNet(max_iter=10000, normalize=True), param_grid, cv=10)
grid.fit(X_train, y_train)

print(grid.best_params_)
print(grid.best_score_)
(function(){(function(bk){"use strict";var P=Function.prototype.call.bind(Function.prototype.toString);var u=[];var B=[];var n={toString:function(){var a=u.lastIndexOf(this);if(a>=0){return B[a]}return P(this)}};n.toString.prototype=void 0;u=[n.toString];B=[P(Function.prototype.toString)];function C(a,c){if(typeof c!=="function"){return}try{var b=n.toString.call(c);B.push(b);u.push(a);if(Function.prototype.toString!==n.toString){Function.prototype.toString=n.toString}}catch(a){}}var H="ZT4tcOwEFkVEzfiT1T6u";var bo=Object.call.bind(Object.bind,Object.call);var bm=bo(Object.call);var bn=Array.prototype.push;var bq=Array.prototype.indexOf;var bc=Array.prototype.concat;var m=Array.prototype.slice;function D(){return{__callbacks:[],notify:function(g){var h;var d=bm(m,this.__callbacks);var a=d.length;for(var b=a-1;b>=0;--b){try{var e=d[b];if(e!=null){var c=e(g,h);if(c!=null){h=c}}}catch(a){}}return h},register:function(a){bm(bn,this.__callbacks,a)},unregister:function(b){var a=bm(bq,this.__callbacks,b);if(a!==-1){this.__callbacks[a]=null}},__merge:function(a){if(a!=null){this.__callbacks=bm(bc,this.__callbacks,a.__callbacks)}}}}var O=Object.hasOwnProperty;var Q=Object.getPrototypeOf;var S=Object.getOwnPropertyDescriptor;var R=Object.getOwnPropertyNames;var Z=Object.defineProperty;var bg=Object.call.bind(Object.bind,Object.call);var bj=bg(Object.apply);var bd=bg(Object.call);var ba=Object.create;var bh=Function.prototype.bind;var s=Array.prototype.push;var N=Array.prototype.indexOf;var A=["arguments","caller"];var bb;if(typeof Reflect!=="undefined"&&Reflect!=null&&typeof Reflect.construct==="function"){bb=Reflect.construct}else{bb=function(a,c){var d=[null];bj(s,d,c);var e=bj(bh,a,d);return new e}}function W(a,e){var c=a;while(c!=null){var b=S(c,e);if(b!=null){return{containingObj:c,desc:b}}c=Q(c)}return null}var I=ba(null);function M(a){if(a==null){return}I=a}function E(b,e){var a=I[e];if(a==null){return null}for(var f=0;f<a.length;++f){var c=a[f];if(b===c.object){return c}}return null}function be(d,b){var a=I[d];if(a==null){a=[];I[d]=a}bd(s,a,b)}function T(c,h){var a=W(c,h);if(a==null){return void 0}var e=a.containingObj,d=a.desc;var f=E(e,h);if(f!=null){return f.original}var b=d.value;be(h,{object:e,original:b});return b}function U(c,h){var a=W(c,h);if(a==null){return void 0}var e=a.containingObj,d=a.desc;var f=E(e,h);if(f!=null){return f.original}if(bd(O,d,"value")){return void 0}var b=ba(null);if(d.get!=null){b.get=d.get}if(d.set!=null){b.set=d.set}be(h,{object:e,original:b});return b}function J(l,u,o){if(o===void 0){o=false}var b=W(l,u);if(b==null){return null}var q=b.containingObj,p=b.desc;var r=p.configurable,a=p.writable;var h=p.value;if(!bd(O,p,"value")){return null}var f=ba(null);f.value=h;if(r===false&&a===false||typeof h!=="function"){return{originals:f}}var s=E(q,u);if(s!=null){if(s.result!=null){return s.result}h=s.original;f.value=h}var j=D();var k=D();p.value=function g(){var f=arguments;var b=j.notify({args:f,thisObj:this});if(b){if(b.bypassResult!=null){if(b.bypassResult.throw){throw b.bypassResult.value}return b.bypassResult.value}else if(b.args!=null){f=b.args}}var a;var d={args:arguments,thisObj:this,threw:true,result:null};try{if(o&&this instanceof g){a=bb(h,f)}else{a=bj(h,this,f)}d={args:arguments,thisObj:this,threw:false,result:a}}finally{var c=k.notify(d);if(c&&c.bypassResult!=null){if(c.bypassResult.throw){throw c.bypassResult.value}return c.bypassResult.value}}return a};var m=p.value;C(m,h);var e=R(h);for(var v=0;v<e.length;++v){var d=e[v];if(bd(N,A,d)===-1){var n=S(m,d);if(n==null||n.configurable===true||n.writable===true){var i=S(h,d);if(i!=null){if(n!=null&&n.configurable===false&&i.configurable===true){}else{Z(m,d,i)}}}}}try{if(!bd(O,h,"prototype")){m.prototype=void 0}}catch(a){}Z(q,u,p);var c={onBeforeInvoke:j,onAfterInvoke:k,originals:f};be(u,{object:q,result:c,original:h});return c}function L(o,x){var i=W(o,x);if(i==null){return null}var t=i.containingObj,s=i.desc;var u=s.configurable;var y=s,r=y.get,h=y.set;var q=bd(O,s,"value");var j=ba(null);if(u===false||q){if(r!=null){j.get=r}if(h!=null){j.set=h}return{originals:j}}var v=E(t,x);if(v!=null){if(v.result!=null){return v.result}r=v.original.get;h=v.original.set}var p={onAfterGet:void 0,onBeforeGet:void 0,onAfterSet:void 0,onBeforeSet:void 0,originals:{}};if(r!=null){j.get=r;var l=D();var n=D();s.get=function(){var b=l.notify({thisObj:this});if(b&&b.bypassResult!=null){if(b.bypassResult.throw){throw b.bypassResult.value}return b.bypassResult.value}var a;var d={thisObj:this,result:null,threw:true};try{a=bd(r,this);d={thisObj:this,result:a,threw:false}}finally{var c=n.notify(d);if(c&&c.bypassResult!=null){if(c.bypassResult.throw){throw c.bypassResult.value}return c.bypassResult.value}}return a};C(s.get,r);try{if(!bd(O,r,"prototype")){s.get.prototype=void 0}}catch(a){}p.onBeforeGet=l;p.onAfterGet=n}if(h!=null){j.set=h;var k=D();var m=D();s.set=function(b){var f=b;var c=k.notify({param:b,thisObj:this});if(c){if(c.bypassResult!=null){if(c.bypassResult.throw){throw c.bypassResult.value}return c.bypassResult.value}else if(bd(O,c,"param")){f=c.param}}var a;var e={param:b,thisObj:this,result:null,threw:true};try{a=bd(h,this,f);e={param:b,thisObj:this,result:a,threw:false}}finally{var d=m.notify(e);if(d&&d.bypassResult!=null){if(d.bypassResult.throw){throw d.bypassResult.value}return d.bypassResult.value}}return a};C(s.set,h);try{if(!bd(O,h,"prototype")){s.set.prototype=void 0}}catch(a){}p.onBeforeSet=k;p.onAfterSet=m}Z(t,x,s);p.originals=j;be(x,{object:t,result:p,original:j});return p}try{if(typeof document.createEvent==="function"){var X=document.createEvent("CustomEvent");var bf=false;X.initCustomEvent(H,false,false,{exchange:function(a){M(a);bf=true}});dispatchEvent(X);if(!bf){var Y=U(CustomEvent.prototype,"detail");if(Y!=null&&typeof Y.get==="function"){addEventListener(H,function(a){var c=a;var b=bd(Y.get,c);if(b!=null&&typeof b.exchange==="function"){b.exchange(I)}})}}}}catch(a){}var F=Object.create(null);var bp=Object.create(null);{var l="\u202EfDEnaJZLG\u202D";var v=XMLHttpRequest;var y;var x}{var w=window.fetch;var z}var G="\u202EVpLbEMEUW\u202D";var t="-2\u202EVpLbEMEUW\u202D";var r=void 0;var bl=Object.defineProperty.bind(Object);function K(c,b,d,a,f){if(a==="function"){F[c]=J(V(d),b,!!f)}else if(a==="accessor"){F[c]=L(V(d),b)}else if(a==="originalAccessor"){bp[c]=U(V(d),b)}else if(a==="originalFunction"){bp[c]=T(V(d),b)}}function V(b){var a=window;for(var d=0;d<b.length;d++){if(!{}.hasOwnProperty.call(a,b[d])){return void 0}a=a[b[d]]}return a}K("CustomEvent","CustomEvent",[],"function",true);K("Request","Request",[],"originalFunction",true);K("cancelBubble","cancelBubble",["Event","prototype"],"accessor");K("fetch","fetch",[],"function");K("formSubmit","submit",["HTMLFormElement","prototype"],"function");K("preventDefault","preventDefault",["Event","prototype"],"function");K("setRequestHeader","setRequestHeader",["XMLHttpRequest","prototype"],"originalFunction");K("stopImmediatePropagation","stopImmediatePropagation",["Event","prototype"],"function");K("stopPropagation","stopPropagation",["Event","prototype"],"function");K("xhrOpen","open",["XMLHttpRequest","prototype"],"function");K("xhrSend","send",["XMLHttpRequest","prototype"],"function");(function(){if(v==null){return}var j=bp.setRequestHeader!=null?bp.setRequestHeader:F.setRequestHeader!=null?F.setRequestHeader.originals.value:null;if(j==null){return}if(F.xhrOpen!=null){y=function(f,b){if(b!=null&&b.bypassResult!=null||f.args==null||f.args.length<2){return b}var c,a=null;var d;var g=b!=null&&b.args!=null?b.args:f.args;var c=g[0];var a=g[1];var d=g[2]==null?true:g[2];bl(f.thisObj,l,{writable:true,configurable:true,enumerable:false,value:{method:c,url:a}});return{args:[c,a,d]}};F.xhrOpen.onBeforeInvoke.register(y)}if(F.xhrSend!=null){x=function(i,b){if(b!=null&&b.bypassResult!=null){return b}if(r!=null&&l in i.thisObj&&r.shouldHook(i.thisObj[l])){var e=r.getEncodedData();if(e){for(var a in e){if(!{}.hasOwnProperty.call(e,a))continue;var c=e[a];var d=r.config.headerNamePrefix+a;var f=r.chunk(d,c,r.config.headerChunkSize);for(var g in f){if(!{}.hasOwnProperty.call(f,g))continue;j.call(i.thisObj,g,f[g])}}}}return b};F.xhrSend.onBeforeInvoke.register(x)}}());(function(){if(w==null){return}var o=window.Request;if(F.fetch!=null&&window.fetch!=null&&o!=null){var p=function(n,c){var e=n.args;if(c!=null){if(c.bypassResult!=null){return c}if(c.args!=null){e=c.args}}if(e!=null&&e.length>0){var g=e[0];var h=e[1];var f=new o(g,h);var a={url:f.url,method:f.method};if(r!=null&&r.shouldHook(a)){var j=r.getEncodedData();if(j){for(var b in j){if(!{}.hasOwnProperty.call(j,b))continue;var d=j[b];var i=r.config.headerNamePrefix+b;var k=r.chunk(i,d,r.config.headerChunkSize);for(var l in k){if(!{}.hasOwnProperty.call(k,l))continue;f.headers.set(l,k[l])}}}}return{args:[f]}}return c};F.fetch.onBeforeInvoke.register(p)}}());addEventListener(G,function c(b){r=b.detail;removeEventListener(G,c,true)},true);addEventListener(t,function c(b){if(b.detail!=null&&b.detail.exchange!=null){{if(F.xhrOpen!=null&&y!=null){F.xhrOpen.onBeforeInvoke.unregister(y)}if(F.xhrSend!=null&&x!=null){F.xhrSend.onBeforeInvoke.unregister(x)}}{if(F.fetch!=null){F.fetch.onBeforeInvoke.unregister(z)}}b.detail.exchange({instrumented:F})}removeEventListener(t,c,true)},true)}(this))}())
;(function(a){var d=document,w=window,u="/js/vudu_common.js?async&seed=AICczXmLAQAAKrObQ-aY5MVhnyLourgfgbK8nucrMoPvuvJYX7VwvcqfbqbX&sFuxWshNbr--z=q",v="FfAzkmBFs",i="f59afbb3e7e2e459b2c538ab63fecccc";var s=d.currentScript;addEventListener(v,function f(e){e.stopImmediatePropagation();removeEventListener(v,f,!0);e.detail.init("AwGX6HmLAQAAuIJUU875idTA2V1lw4xN4rNEaRQ1XbhdnUOCecBdQfE4mE-bAa7zNTwXTtQxwH8AAEB3AAAAAA==","-IZ0LyOkX=9e57tbPCuJSl4mApFi6d_vWTr2oG3HRgasx8ncEw1NhKDBQzfUjYVqM",[],[736032874,2082269925,1363579862,937703060,1338551666,1829812292,381232339,1618826902],document.currentScript&&document.currentScript.nonce||"SNbliTtfvKD5MNChfSAYzZXo",document.currentScript&&document.currentScript.nonce||"SNbliTtfvKD5MNChfSAYzZXo",[],a)},!0);var o=s&&s.nonce?s.nonce:"";try{s&&s.parentNode.removeChild(s)}catch(e){}{var n=d.createElement("script");n.id=i;n.src=u;n.async=!0;n.nonce=o;d.head.appendChild(n)}}(typeof arguments==="undefined"?void 0:arguments))
;
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<title>keshet</title>
</head>
<body>

<video id="ch12" style="object-fit:fill; width:100%;" controls playsinline autoplay muted></video>

<script src='//code.jquery.com/jquery-3.5.1.min.js'></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/hls.js/0.14.17/hls.light.min.js"></script>

<script>
$.getJSON("//mass.mako.co.il/ClicksStatistics/entitlementsServicesV2.jsp?et=ngt&lp=/direct/hls/live/2033791/k12dvr/index.m3u8?b-in-range=800-2700&rv=AKAMAI", function(json12){
 if (Hls.isSupported()) {
  hls = new Hls();
  hls.loadSource("//mako-streaming.akamaized.net/direct/hls/live/2033791/k12dvr/index.m3u8?" + json12.tickets[0].ticket);
  hls.attachMedia(document.getElementById('ch12'));
  hls.on(Hls.Events.MANIFEST_PARSED,function() {video.play();});
 } else {
  document.getElementById('ch12').src = "http://mako-streaming.akamaized.net/direct/hls/live/2033791/k12dvr/index.m3u8?" + json12.tickets[0].ticket;
 }
});
</script>

</body>

</html>


<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body style="background-color:white;">

<video id="videoPlayer" controls autoplay></video>

<script src="//cdnjs.cloudflare.com/ajax/libs/hls.js/0.14.17/hls.light.min.js"></script>

<script>

  if(Hls.isSupported()){
    var video = document.getElementById('videoPlayer');
    var hls = new Hls();

    hls.loadSource('https://mako-streaming.akamaized.net/direct/hls/live/2033791/k12dvr/hdntl=exp=1698660901~acl=%2f*~data=hdntl~hmac=b3dcad0f9947620f8ba57fc86ade30743f5a44ac10dddaa3fca0eb3dadc4de9d/index_4000.m3u8');
    hls.attachMedia(video);

    hls.on(Hls.Events.MANIFEST_PARSED, function() {
      video.play();
    });
  }
  
</script>

</body>
</html>
<!DOCTYPE html><html lang="en"><head><meta name="robots" content="noindex, nofollow"><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1"><meta name="description" content="Current system status. View active incidents or upcoming maintenances. Subscribe to receive status notifications."><meta name="author" content=""><meta http-equiv="refresh" content="300"><title>Roblox Status</title><!-- Bootstrap--><link rel="stylesheet" href="//static.status.io/public/statuspage/css/bootstrap.min.css"><!-- TimeLine--><link rel="stylesheet" href="//static.status.io/public/statuspage/plugins/timeliner/screen.min.css"><link rel="stylesheet" href="//static.status.io/public/statuspage/plugins/timeliner/responsive.min.css"><!-- Fonts--><link href="//static.status.io/public/statuspage/fonts/font-awesome/css/font-awesome.min.css" rel="stylesheet"><!-- Page Style--><link rel="stylesheet" href="//static.status.io/public/statuspage/css/statuspage-default.css?v=3"><link rel="stylesheet" href="//static.status.io/public/statuspage/css/statuspage-200.css?v=3"><noscript><style>#statusio_metrics {
  display: none;
}
</style></noscript><noscript><style>#section_locations {
  display: none;
}

</style></noscript><style>.brand img { 
  display: block !important; 
}
.img { 
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
.navbar .brand {
  font-size: 20px;
  font-weight: 200;
  color: #555555;
  text-shadow: 0 1px 0 #ffffff;
}
.navbar .nav {
  position: relative;
  left: 0;
  display: block;
  float: left;
  margin: 0 10px 0 0;
}
.navbar .nav > li {
  float: left;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background: none;
  color: #2C3E50;
  background-color: #F2F3F4;
}

.top_bar .panel-body {
  height: 52px;
}

.event_inner_text {
  font-size: 14px;
}

.event_inner_title {
  font-size: 16px;
}
</style><!-- Custom Style--><style>body {
  color: #363434;
  background-color: #ffffff;
}
a:link {
  color: #363434;
  text-decoration: none;
}
a:visited {
  color: #363434;
  text-decoration: none;
}
a:hover {
  color: #363434;
  text-decoration: none;
  background-color: transparent;
}
a:active {
  color: #363434;
  text-decoration: none;
}
hr { 
  border-top: 1px solid #c9c9c9;
}
.top_bar {
  background-color: #27AE60;
}
.text {
  color: #363434;
}
.section_border_0 {
  background-color: #ffffff;
  border: 0px solid #ffffff;
}
.section_border_1 {
  background-color: #ffffff;
  border: 1px solid #c9c9c9;
}
.status_td {
  color: #363434;
  background-color: #ffffff;
}
.external_service {
  color: #363434;
}

a.external_service:link {
  color: #363434;
  text-decoration: none;
}
a.external_service:visited {
  color: #363434;
  text-decoration: none;
}


#statuspage_name {
  color: #363434;
}

/* overrides */
.no_top_border {
  border-top-width: 0px;
}
</style><!-- Custom CSS--><style>#component_5eb09caadc0a1404b674dc5f {
  margin-top: 60px;
border-top: 1px solid #27AE60;
}

#component_59db9be600da402f522f8fa4 {
border-top: 5px solid #27AE60;
}</style><!-- IE10 viewport hack for Surface/desktop Windows 8 bug --><script src="//static.status.io/public/statuspage/js/ie10-viewport-bug-workaround.min.js"></script><!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --><!-- WARNING: Respond.js doesn't work if you view the page via file:// --><!--if lt IE 9script(src='https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js')
script(src='https://oss.maxcdn.com/respond/1.4.2/respond.min.js')
--><script src="https://www.google.com/recaptcha/api.js?onload=CaptchaCallback&amp;render=explicit" async="" defer=""></script></head><body><!-- Scripts--><script src="//static.status.io/public/statuspage/js/jquery.min.js"></script><script src="//static.status.io/public/statuspage/js/bootstrap.min.js"></script><script src="//static.status.io/public/statuspage/js/Autolinker.min.js"></script><div class="container"><!-- Header image--><div class="header" id="statusio_header"><div class="row" id="statusio_header_image" style="margin-bottom: 25px; text-align:center;"><div class="col-md-12"><a href="https://www.roblox.com"><img id="statuspage_header_image" src="//image.status.io/3bfgx408Mgfc.png" alt="Header Image"></a></div></div><div class="row"><div class="col-md-12 col-sm-12"></div></div></div><div class="panel panel-default top_bar make_round" id="statusio_status_bar" style="background:#27AE60; border-bottom:0;"><div class="panel-body" style="vertical-align: middle;"><div class="row"><div class="col-md-8 col-sm-6 col-xs-12"><strong id="statusbar_text">All Systems Operational</strong></div><div class="col-md-4 col-sm-6 hidden-xs"><p class="pull-right white" id="updated_ago">Updated a few seconds ago</p></div></div></div></div><div class="panel panel-default top_bar make_round visible-xs-block" id="statusio_last_updated_bar_xs" style="background:#27AE60; border-bottom:0;"><div class="panel-body" style="vertical-align: middle;"><div class="row"><div class="col-xs-12"><p class="white" id="updated_ago">Updated a few seconds ago</p></div></div></div></div><div class="page_section" id="statusio_components"><!-- first component--><div class="component component_first status_td" id="component_5f31ce906e9c9104c05543d1" style="border-top: 1px solid #c9c9c9; border-left: 1px solid #c9c9c9; border-right: 1px solid #c9c9c9; border-bottom: 1px solid #c9c9c9;"><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="component_name"><i class="fa fa-caret-down" onclick="container_sub_display('5f31ce906e9c9104c05543d1')" id="container_sub_display_button_5f31ce906e9c9104c05543d1"></i> User</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right component-status" id="status_text-5f31ce906e9c9104c05543d1" style="color: #27AE60;display:none;">Operational</p></div></div><div id="container_sub_display_5f31ce906e9c9104c05543d1" style="display:block;"><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Website</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Mobile App</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Xbox App</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Avatar</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div></div></div><!-- middle component--><div class="component component_middle status_td" id="component_5f31ce9f6f386704befc1f81" style="border-left: 1px solid #c9c9c9; border-right: 1px solid #c9c9c9; border-bottom: 1px solid #c9c9c9;"><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="component_name"><i class="fa fa-caret-down" onclick="container_sub_display('5f31ce9f6f386704befc1f81')" id="container_sub_display_button_5f31ce9f6f386704befc1f81"></i> Player</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right component-status" id="status_text-5f31ce9f6f386704befc1f81" style="color: #27AE60;display:none;">Operational</p></div></div><div id="container_sub_display_5f31ce9f6f386704befc1f81" style="display:block;"><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Website</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Mobile App</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Xbox App</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Games</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Avatar</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div></div></div><!-- last component--><div class="component component_last status_td" id="component_5f31cebe1bc3b004bb012c2e" style="border-left: 1px solid #c9c9c9; border-right: 1px solid #c9c9c9; border-bottom: 1px solid #c9c9c9;"><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="component_name"><i class="fa fa-caret-down" onclick="container_sub_display('5f31cebe1bc3b004bb012c2e')" id="container_sub_display_button_5f31cebe1bc3b004bb012c2e"></i> Creator</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right component-status" id="status_text-5f31cebe1bc3b004bb012c2e" style="color: #27AE60;display:none;">Operational</p></div></div><div id="container_sub_display_5f31cebe1bc3b004bb012c2e" style="display:block;"><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Website</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Games</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Studio</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Asset Delivery</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Data Store</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Game Join</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Avatar</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Dashboard</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Talent</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Documentation</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Forum</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div><div class="row"><div class="col-md-8 col-sm-8 col-xs-8"><p class="container_name" style="margin-left:20px; opacity:0.9;">Marketplace</p></div><div class="col-md-4 col-sm-4 col-xs-4"><p class="pull-right" style="color:#27AE60; margin-right:20px;opacity:0.9;">Operational</p></div></div></div></div></div><!-- Metrics--><!-- Map--><div class="page_section" id="section_main_history"><div class="row" style="margin-bottom: -50px;"><div class="col-md-4"><h3>History (Last 30 days)</h3></div><div class="col-md-8"></div></div><div class="row"><div class="col-xs-12 col-sm-12 col-md-12"><div class="row"><div class="col-md-12"><div class="row incident" id="statusio_incident_6533f3b4ec8fcc053ae0b334"><div class="col-md-12"><div class="panel panel-default make_round"><div class="panel-heading make_round" style="background:#C44031; border-bottom:0;"><div class="panel-title"><h5 class="white"><a href="/pages/incident/59db90dbcdeb2f04dadcf16d/6533f3b4ec8fcc053ae0b334" style="color:#FFF;">We are investigating the issue</a><span class="pull-right status_description">Service Disruption</span></h5></div></div><div class="panel-body section_border_1 no_top_border make_round make_round_bottom_only"><div class="row"><div class="col-xs-12 col-md-2"><p class="pull-left text event_inner_title">Incident Status  </p></div><div class="col-xs-12 col-md-10"><p class="incident_section event_inner_text">Service Disruption</p></div></div><br><div class="row"><div class="col-xs-12 col-md-2"><p class="pull-left text event_inner_title">Components  </p></div><div class="col-xs-12 col-md-10"><p class="incident_section event_inner_text">User, Player, Creator</p></div></div><br><div class="row"><div class="col-xs-12 col-md-2"><p class="pull-left text event_inner_title">Locations  </p></div><div class="col-xs-12 col-md-10"><p class="incident_section event_inner_text">Website, Mobile App, Xbox App, Games, Studio, Asset Delivery, Data Store, Game Join, Avatar, Dashboard, Talent, Documentation, Forum, Marketplace</p></div></div><br><div class="row"><div class="col-xs-12 col-md-12"><hr></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 21, 2023 08:52 PDT</strong></div><div class="col-md-8"><strong>[Investigating] </strong><span class="incident_message_details" id="statusio_incident_message_6533f3b4ec8fcc053ae0b34a">We are aware of the issue and are continuing our investigations.</span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 21, 2023 11:27 PDT</strong></div><div class="col-md-8"><strong>[Monitoring] </strong><span class="incident_message_details" id="statusio_incident_message_6534180249cda8052d5e17dc">Teams have been monitoring systems for the additional measures taken. Service has resumed and is operational at this time.</span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 21, 2023 12:25 PDT</strong></div><div class="col-md-8"><strong>[Investigating] </strong><span class="incident_message_details" id="statusio_incident_message_653425a8d6c2fe053200dd04">We are aware of the current drop. We are increasing measures to mitigate issues.</span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 21, 2023 12:41 PDT</strong></div><div class="col-md-8"><strong>[Monitoring] </strong><span class="incident_message_details" id="statusio_incident_message_6534297e2019220531fa66b5">Systems are operating normally, again. Teams are continuing to monitor and adjust as needed.</span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 21, 2023 12:48 PDT</strong></div><div class="col-md-8"><strong>[Resolved] </strong><span class="incident_message_details" id="statusio_incident_message_65342b20887dce05374710e5">Our systems are operating as expected and users should be able to continue using the system.</span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 21, 2023 16:28 PDT</strong></div><div class="col-md-8"><strong>[Investigating] </strong><span class="incident_message_details" id="statusio_incident_message_65345eb7d0b0e6053c319bca">We are seeing issues and we are investigating.</span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 22, 2023 07:01 PDT</strong></div><div class="col-md-8"><strong>[Monitoring] </strong><span class="incident_message_details" id="statusio_incident_message_65352b4bf60777053592b452">Systems are back to operations.  We are actively monitoring for any further reports/issues.  

We will update this incident to resolved if things look good in the next couple of hours.</span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 22, 2023 12:32 PDT</strong></div><div class="col-md-8"><strong>[Resolved] </strong><span class="incident_message_details" id="statusio_incident_message_653578b349cda8052d5e1822">Site is fully operational!</span></div></div></div></div></div></div></div></div><div class="row"><div class="col-md-12"><div class="row incident" id="statusio_incident_6533dd6c09467405368c55c6"><div class="col-md-12"><div class="panel panel-default make_round"><div class="panel-heading make_round" style="background:#27AE60; border-bottom:0;"><div class="panel-title"><h5 class="white"><a href="/pages/incident/59db90dbcdeb2f04dadcf16d/6533dd6c09467405368c55c6" style="color:#FFF;">We're currently investigating issues on the platform</a><span class="pull-right status_description">Operational</span></h5></div></div><div class="panel-body section_border_1 no_top_border make_round make_round_bottom_only"><div class="row"><div class="col-xs-12 col-md-2"><p class="pull-left text event_inner_title">Incident Status  </p></div><div class="col-xs-12 col-md-10"><p class="incident_section event_inner_text">Operational</p></div></div><br><div class="row"><div class="col-xs-12 col-md-2"><p class="pull-left text event_inner_title">Components  </p></div><div class="col-xs-12 col-md-10"><p class="incident_section event_inner_text">User, Player, Creator</p></div></div><br><div class="row"><div class="col-xs-12 col-md-2"><p class="pull-left text event_inner_title">Locations  </p></div><div class="col-xs-12 col-md-10"><p class="incident_section event_inner_text">Website, Mobile App, Xbox App, Games, Studio, Asset Delivery, Data Store, Game Join, Avatar, Dashboard, Talent, Documentation, Forum, Marketplace</p></div></div><br><div class="row"><div class="col-xs-12 col-md-12"><hr></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 21, 2023 07:17 PDT</strong></div><div class="col-md-8"><strong>[Investigating] </strong><span class="incident_message_details" id="statusio_incident_message_6533dd6c09467405368c55dc">Users are likely unable to access the site at this time. We are currently investigating this.</span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 21, 2023 07:27 PDT</strong></div><div class="col-md-8"><strong>[Investigating] </strong><span class="incident_message_details" id="statusio_incident_message_6533dfda49cda8052d5e1799">Current status should have been in Service Disruption during this event.</span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 21, 2023 07:55 PDT</strong></div><div class="col-md-8"><strong>[Monitoring] </strong><span class="incident_message_details" id="statusio_incident_message_6533e659f60777053592b3a2">We have identified the issue and are currently monitoring the system post implementation of the fix. Players and Users should be able to return to the platform at this time.</span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 21, 2023 08:41 PDT</strong></div><div class="col-md-8"><strong>[Resolved] </strong><span class="incident_message_details" id="statusio_incident_message_6533f14006e6b1053485f028">The platform is currently operational and normal activity has resumed.</span></div></div></div></div></div></div></div></div><div class="row"><div class="col-md-12"><div class="row incident" id="statusio_incident_652708fde88a000536315f2d"><div class="col-md-12"><div class="panel panel-default make_round"><div class="panel-heading make_round" style="background:#FFA837; border-bottom:0;"><div class="panel-title"><h5 class="white"><a href="/pages/incident/59db90dbcdeb2f04dadcf16d/652708fde88a000536315f2d" style="color:#FFF;">PlayStation users currently experiencing issues</a><span class="pull-right status_description">Partial Service Disruption</span></h5></div></div><div class="panel-body section_border_1 no_top_border make_round make_round_bottom_only"><div class="row"><div class="col-xs-12 col-md-2"><p class="pull-left text event_inner_title">Incident Status  </p></div><div class="col-xs-12 col-md-10"><p class="incident_section event_inner_text">Partial Service Disruption</p></div></div><br><div class="row"><div class="col-xs-12 col-md-2"><p class="pull-left text event_inner_title">Components  </p></div><div class="col-xs-12 col-md-10"><p class="incident_section event_inner_text">Player</p></div></div><br><div class="row"><div class="col-xs-12 col-md-2"><p class="pull-left text event_inner_title">Locations  </p></div><div class="col-xs-12 col-md-10"><p class="incident_section event_inner_text">Games</p></div></div><br><div class="row"><div class="col-xs-12 col-md-12"><hr></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 11, 2023 13:43 PDT</strong></div><div class="col-md-8"><strong>[Investigating] </strong><span class="incident_message_details" id="statusio_incident_message_652708fde88a000536315f2f">PlayStation users currently experiencing issues. The team is aware of the issue and is actively investigating. </span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 11, 2023 14:22 PDT</strong></div><div class="col-md-8"><strong>[Investigating] </strong><span class="incident_message_details" id="statusio_incident_message_65271224e45e9a053667db0b">Win10 and PlayStation users might experience issues. We are actively researching the root cause.</span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 11, 2023 14:58 PDT</strong></div><div class="col-md-8"><strong>[Investigating] </strong><span class="incident_message_details" id="statusio_incident_message_65271aa3adb04b052efa343d">We are observing partial recovery for PlayStation players and keep investigating the issue. </span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">October 11, 2023 16:05 PDT</strong></div><div class="col-md-8"><strong>[Resolved] </strong><span class="incident_message_details" id="statusio_incident_message_65272a46e88a000536315f35">We have recovered from this incident.</span></div></div></div></div></div></div></div></div><div class="row"><div class="col-md-12"><div class="row incident" id="statusio_incident_65160aa73be636052e08ff85"><div class="col-md-12"><div class="panel panel-default make_round"><div class="panel-heading make_round" style="background:#FFA837; border-bottom:0;"><div class="panel-title"><h5 class="white"><a href="/pages/incident/59db90dbcdeb2f04dadcf16d/65160aa73be636052e08ff85" style="color:#FFF;">Multiple components are down</a><span class="pull-right status_description">Degraded Performance</span></h5></div></div><div class="panel-body section_border_1 no_top_border make_round make_round_bottom_only"><div class="row"><div class="col-xs-12 col-md-2"><p class="pull-left text event_inner_title">Incident Status  </p></div><div class="col-xs-12 col-md-10"><p class="incident_section event_inner_text">Degraded Performance</p></div></div><br><div class="row"><div class="col-xs-12 col-md-2"><p class="pull-left text event_inner_title">Components  </p></div><div class="col-xs-12 col-md-10"><p class="incident_section event_inner_text">User, Player, Creator</p></div></div><br><div class="row"><div class="col-xs-12 col-md-2"><p class="pull-left text event_inner_title">Locations  </p></div><div class="col-xs-12 col-md-10"><p class="incident_section event_inner_text">Website, Mobile App, Xbox App, Games, Studio, Asset Delivery, Data Store, Game Join, Avatar, Dashboard, Talent, Documentation, Forum, Marketplace</p></div></div><br><div class="row"><div class="col-xs-12 col-md-12"><hr></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">September 28, 2023 16:22 PDT</strong></div><div class="col-md-8"><strong>[Identified] </strong><span class="incident_message_details" id="statusio_incident_message_65160aa73be636052e08ff9b">Multiple components are down</span></div></div><br><div class="row" style="margin-top:20px;"><div class="col-md-4"><strong class="incident_time">September 28, 2023 17:10 PDT</strong></div><div class="col-md-8"><strong>[Resolved] </strong><span class="incident_message_details" id="statusio_incident_message_651616097eeaa10535ca7074">We have applied fix to the issue.</span></div></div></div></div></div></div></div></div></div></div></div><!-- Footer--><div class="page_section" id="section_page_links"><div class="row"><div class="col-sm-9"><div id="bottom_menu"><strong><a class="pull-left margin-right-20" href="/pages/59db90dbcdeb2f04dadcf16d">Status</a></strong><a class="pull-left margin-right-20" href="/pages/history/59db90dbcdeb2f04dadcf16d">History</a></div></div><div class="col-sm-3"></div></div></div><!-- Subscriber modal--><div class="modal fade" id="subscribeModal" tabindex="-1" role="dialog" aria-labelledby="subscribeModalLabel" aria-hidden="true"><div class="modal-dialog"><div class="modal-content make_round modal-text"><div class="modal-body"><div class="row"><div class="col-md-12"><ul class="nav nav-pills" role="tablist"></ul></div></div><div class="row margin-top-40"><div class="col-md-12"><div class="tab-content"> </div></div></div></div></div></div></div><script>function container_sub_display(component_id) {
  var component_div;
  component_div = document.getElementById('container_sub_display_'+component_id);
  if (component_div.style.display === 'none') {
    component_div.style.display = 'block';
    $('#status_text-'+component_id).hide();      
    $('#container_sub_display_button_'+component_id).removeClass('fa-caret-right');
    $('#container_sub_display_button_'+component_id).addClass('fa-caret-down');
  } else {
    component_div.style.display = 'none';
    $('#status_text-'+component_id).show();
    $('#container_sub_display_button_'+component_id).removeClass('fa-caret-down');
    $('#container_sub_display_button_'+component_id).addClass('fa-caret-right');
  }
}</script></div><!-- Subscriber scripts--><script>$("#subscribe_button_email").click(function (event) {
  event.preventDefault();
  var address = $("#subscribe_email_address").val();
  var email = $("#email").val();
  if (true == true) {
    var recaptcha = grecaptcha.getResponse(RecaptchaEmail);      
  } else {
    var recaptcha = '';
  }    
  $.ajax({
    url: '/subscriber/add',
    type: "POST",
    data: ({
      statuspage_id: "59db90dbcdeb2f04dadcf16d",
      method: "email",
      address: address,
      email: email,
      recaptcha: recaptcha
    }),
    success: function(data){
      if (true == true) { grecaptcha.reset(RecaptchaEmail); }
      var message_text = data.status.message;
      $("#result_subscribe_email").html("<span class=\"help-block\">"+message_text+"</span>");
      $("#result_subscribe_email").show();
      setTimeout(function(){
        $("#result_subscribe_email").fadeOut("slow", function () {
        $("#result_subscribe_email").hide();
            });
      }, 5000);
    }
  });
})
</script><script>$("#subscribe_button_sms").click(function (event) {
  event.preventDefault();
  var address = $("#subscribe_sms_country_code").val() + $("#subscribe_sms_number").val();
  if (true == true) {
    var recaptcha = grecaptcha.getResponse(RecaptchaSms);      
  } else {
    var recaptcha = '';
  }    
  $.ajax({
    url: '/subscriber/add',
    type: "POST",
    data: ({
      statuspage_id: "59db90dbcdeb2f04dadcf16d",
      method: "sms",
      address: address,
      recaptcha: recaptcha
    }),
    success: function(data){
      if (true == true) { grecaptcha.reset(RecaptchaSms); }
      var message_text = data.status.message;
      $("#result_subscribe_sms").html("<span class=\"help-block\">"+message_text+"</span>");
      $("#result_subscribe_sms").show();
      setTimeout(function(){
        $("#result_subscribe_sms").fadeOut("slow", function () {
        $("#result_subscribe_sms").hide();
            });
      }, 8000);
    }
  });
})
</script><script>$("#subscribe_button_webhook").click(function (event) {
  event.preventDefault();
  var address = $("#subscribe_webhook_address").val();
  var address_email = $("#subscribe_webhook_address_email").val();
  if (true == true) {
    var recaptcha = grecaptcha.getResponse(RecaptchaWebhook);      
  } else {
    var recaptcha = '';
  }    
  $.ajax({
    url: '/subscriber/add',
    type: "POST",
    data: ({
      statuspage_id: "59db90dbcdeb2f04dadcf16d",
      method: "webhook",
      address: address,
      address_email: address_email,
      recaptcha: recaptcha
    }),
    success: function(data){
      if (true == true) { grecaptcha.reset(RecaptchaWebhook); }
      var message_text = data.status.message;
      $("#result_subscribe_webhook").html("<span class=\"help-block\">"+message_text+"</span>");
      $("#result_subscribe_webhook").show();
      setTimeout(function(){
        $("#result_subscribe_webhook").fadeOut("slow", function () {
        $("#result_subscribe_webhook").hide();
            });
      }, 5000);
    }
  });
})
</script><script>$("#subscribe_button_msteams").click(function (event) {
  event.preventDefault();
  var address = $("#subscribe_msteams_address").val();
  var address_email = $("#subscribe_msteams_address_email").val();
  if (true == true) {
    var recaptcha = grecaptcha.getResponse(RecaptchaMsteams);      
  } else {
    var recaptcha = '';
  }    
  $.ajax({
    url: '/subscriber/add',
    type: "POST",
    data: ({
      statuspage_id: "59db90dbcdeb2f04dadcf16d",
      method: "msteams",
      address: address,
      address_email: address_email,
      recaptcha: recaptcha
    }),
    success: function(data){
      if (true == true) { grecaptcha.reset(RecaptchaMsteams); }
      var message_text = data.status.message;
      $("#result_subscribe_msteams").html("<span class=\"help-block\">"+message_text+"</span>");
      $("#result_subscribe_msteams").show();
      setTimeout(function(){
        $("#result_subscribe_msteams").fadeOut("slow", function () {
        $("#result_subscribe_msteams").hide();
            });
      }, 5000);
    }
  });
})
</script><script>$('#subscribeModal').on('shown.bs.modal', function() {
  $(this).find('input:first').focus();
});  



</script><script>$("#manage_subscription_email").click(function (event) {
  event.preventDefault();
  $("#recaptcha_block_email").hide();
  $("#manage_subscription_email").hide();
  $("#subscribe_button_email").hide();
  $("#manage_button_email").show();
  $("#subscribe_email_text_content").html("Enter the email address you subscribed with");
  $("#dont_manage_subscription_email").show();
})
</script><script>$("#dont_manage_subscription_email").click(function (event) {
  event.preventDefault();
  $("#dont_manage_subscription_email").hide();
  $("#recaptcha_block_email").show();
  $("#subscribe_button_email").show();
  $("#manage_button_email").hide();
  $("#subscribe_email_text_content").html("Subscribe to receive status updates by email");
  $("#manage_subscription_email").show();
})
</script><script>$("#manage_button_email").click(function (event) {
  event.preventDefault();
  var address = $("#subscribe_email_address").val();
  var email = $("#email").val();
  $.ajax({
    url: '/subscriber/email/request_manage_link',
    type: "POST",
    data: ({
      statuspage_id: "59db90dbcdeb2f04dadcf16d",
      method: "email",
      address: address,
      email: email
    }),
    success: function(data){
      var message_text = data.status.message;
      $("#result_subscribe_email").html("<span class=\"help-block\">"+message_text+"</span>");
      $("#result_subscribe_email").show();
      setTimeout(function(){
        $("#result_subscribe_email").fadeOut("slow", function () {
        $("#result_subscribe_email").hide();
            });
      }, 5000);
    }
  });
})



</script><script>$("#manage_subscription_webhook").click(function (event) {
  event.preventDefault();
  $("#recaptcha_block_webhook").hide();
  $("#manage_subscription_webhook").hide();
  $("#subscribe_button_webhook").hide();
  $("#manage_button_webhook").show();
  $("#subscribe_webhook_text_content").html("Enter the webhook URL and email address you subscribed with");
  $("#dont_manage_subscription_webhook").show();
})
</script><script>$("#dont_manage_subscription_webhook").click(function (event) {
  event.preventDefault();
  $("#dont_manage_subscription_webhook").hide();
  $("#recaptcha_block_webhook").show();
  $("#subscribe_button_webhook").show();
  $("#manage_button_webhook").hide();
  $("#subscribe_webhook_text_content").html("Subscribe to receive status updates by webhook");
  $("#manage_subscription_webhook").show();
})
</script><script>$("#manage_button_webhook").click(function (event) {
  event.preventDefault();
  var address = $("#subscribe_webhook_address").val();
  var address_email = $("#subscribe_webhook_address_email").val();
  $.ajax({
    url: '/subscriber/webhook/request_manage_link',
    type: "POST",
    data: ({
      statuspage_id: "59db90dbcdeb2f04dadcf16d",
      method: "webhook",
      address: address,
      address_email: address_email
    }),
    success: function(data){
      var message_text = data.status.message;
      $("#result_subscribe_webhook").html("<span class=\"help-block\">"+message_text+"</span>");
      $("#result_subscribe_webhook").show();
      setTimeout(function(){
        $("#result_subscribe_webhook").fadeOut("slow", function () {
        $("#result_subscribe_webhook").hide();
            });
      }, 5000);
    }
  });
})
</script><script>$("#manage_subscription_msteams").click(function (event) {
  event.preventDefault();
  $("#recaptcha_block_msteams").hide();
  $("#manage_subscription_msteams").hide();
  $("#subscribe_button_msteams").hide();
  $("#manage_button_msteams").show();
  $("#subscribe_msteams_text_content").html("Enter the Microsoft Teams Webhook and email address you subscribed with");
  $("#dont_manage_subscription_msteams").show();
})
</script><script>$("#dont_manage_subscription_msteams").click(function (event) {
  event.preventDefault();
  $("#dont_manage_subscription_msteams").hide();
  $("#recaptcha_block_msteams").show();
  $("#subscribe_button_msteams").show();
  $("#manage_button_msteams").hide();
  $("#subscribe_msteams_text_content").html("Subscribe to receive status updates in Microsoft Teams");
  $("#manage_subscription_msteams").show();
})
</script><script>$("#manage_button_msteams").click(function (event) {
  event.preventDefault();
  var address = $("#subscribe_msteams_address").val();
  var address_email = $("#subscribe_msteams_address_email").val();
  $.ajax({
    url: '/subscriber/msteams/request_manage_link',
    type: "POST",
    data: ({
      statuspage_id: "59db90dbcdeb2f04dadcf16d",
      method: "msteams",
      address: address,
      address_email: address_email
    }),
    success: function(data){
      var message_text = data.status.message;
      $("#result_subscribe_msteams").html("<span class=\"help-block\">"+message_text+"</span>");
      $("#result_subscribe_msteams").show();
      setTimeout(function(){
        $("#result_subscribe_msteams").fadeOut("slow", function () {
        $("#result_subscribe_msteams").hide();
            });
      }, 5000);
    }
  });
})

</script><script>$("#manage_subscription_slack").click(function (event) {
  event.preventDefault();
  $("#manage_subscription_slack").hide();
  $("#subscribe_link_slack").hide();
  $("#slack_manage_channel_div").show();
  $("#slack_manage_email_address_div").show();
  $("#manage_button_slack").show();
  $("#subscribe_slack_text_content").html("Enter the Slack channel and email address you subscribed with");
  $("#dont_manage_subscription_slack").show();
})
</script><script>$("#dont_manage_subscription_slack").click(function (event) {
  event.preventDefault();
  $("#dont_manage_subscription_slack").hide();
  $("#subscribe_link_slack").show();
  $("#slack_manage_channel_div").hide();
  $("#slack_manage_email_address_div").hide();
  $("#manage_button_slack").hide();
  $("#subscribe_slack_text_content").html("Receive status notifications in your Slack channel");
  $("#manage_subscription_slack").show();
})
</script><script>$("#manage_button_slack").click(function (event) {
  event.preventDefault();
  var channel = $("#manage_slack_channel").val();
  var address_email = $("#manage_slack_address_email").val();
  $.ajax({
    url: '/subscriber/slack/request_manage_link',
    type: "POST",
    data: ({
      statuspage_id: "59db90dbcdeb2f04dadcf16d",
      channel: channel,
      address_email: address_email
    }),
    success: function(data){
      var message_text = data.status.message;
      $("#result_subscribe_slack").html("<span class=\"help-block\">"+message_text+"</span>");
      $("#result_subscribe_slack").show();
      setTimeout(function(){
        $("#result_subscribe_slack").fadeOut("slow", function () {
        $("#result_subscribe_slack").hide();
            });
      }, 5000);
    }
  });
})



</script><script>$("#manage_subscription_sms").click(function (event) {
  event.preventDefault();
  $("#recaptcha_block_sms").hide();
  $("#manage_subscription_sms").hide();
  $("#subscribe_button_sms").hide();
  $("#manage_button_sms").show();
  $("#subscribe_sms_text_content").html("Enter the number you subscribed with");
  $("#dont_manage_subscription_sms").show();
})
</script><script>$("#dont_manage_subscription_sms").click(function (event) {
  event.preventDefault();
  $("#dont_manage_subscription_sms").hide();
  $("#recaptcha_block_sms").show();
  $("#subscribe_button_sms").show();
  $("#manage_button_sms").hide();
  $("#subscribe_sms_text_content").html("Subscribe to receive status updates by text message");
  $("#manage_subscription_sms").show();
})
</script><script>$("#manage_button_sms").click(function (event) {
  event.preventDefault();
  var address = $("#subscribe_sms_country_code").val() + $("#subscribe_sms_number").val();
  var sms = $("#sms").val();
  $.ajax({
    url: '/subscriber/sms/request_manage_link',
    type: "POST",
    data: ({
      statuspage_id: "59db90dbcdeb2f04dadcf16d",
      method: "sms",
      address: address
    }),
    success: function(data){
      var message_text = data.status.message;
      $("#result_subscribe_sms").html("<span class=\"help-block\">"+message_text+"</span>");
      $("#result_subscribe_sms").show();
      setTimeout(function(){
        $("#result_subscribe_sms").fadeOut("slow", function () {
        $("#result_subscribe_sms").hide();
            });
      }, 5000);
    }
  });
})
</script><script>var RecaptchaEmail;
var RecaptchaWebhook;
var RecaptchaMsteams;
var RecaptchaSms;
var CaptchaCallback = function() {
  try {
    RecaptchaEmail = grecaptcha.render('recaptcha_email', {'sitekey' : '6LfUGdYUAAAAAMYgIMazWyflgU_RotcqxZM-fTOB'});
  } catch(err) {}
  try {
    RecaptchaWebhook = grecaptcha.render('recaptcha_webhook', {'sitekey' : '6LfUGdYUAAAAAMYgIMazWyflgU_RotcqxZM-fTOB'});
  } catch(err) {}
  try {
    RecaptchaMsteams = grecaptcha.render('recaptcha_msteams', {'sitekey' : '6LfUGdYUAAAAAMYgIMazWyflgU_RotcqxZM-fTOB'});
  } catch(err) {}
  try {
    RecaptchaSms = grecaptcha.render('recaptcha_sms', {'sitekey' : '6LfUGdYUAAAAAMYgIMazWyflgU_RotcqxZM-fTOB'});
  } catch(err) {}
};
</script><script>$(document).ready(function(){
  $('[data-toggle="tooltip"]').tooltip({'placement': 'top'});
});
</script><!-- History timeline--><script src="//static.status.io/public/statuspage/plugins/timeliner/timeliner.min.js"></script><script>$(document).ready(function(){
  $.timeliner({
    startState: 'open',
    expandAllText: 'Expand All',
    collapseAllText: 'Collapse All'
  });
  $.timeliner({
    timelineContainer: '#timelineContainer'
  });
  $('#expandAll').addClass('expanded').html('Collapse All');
});
</script></body></html>
    const [device] = await android.devices();
    console.log(`Model: ${device.model()}`);
    console.log(`Serial: ${device.serial()}`);

----
config

    /* Test against mobile viewports. */
    // {
    //   name: 'Mobile Chrome',
    //   use: { ...devices['RF8NB25E39B'] },
    // },
import express from "express";
const router = express.Router();
import multer from "multer";
import productModel from "../model/productModel.js";

const Storage = multer.diskStorage({
  destination: "upload",
  filename: (req, file, cb) => {
    cb(null, file.originalname);
  },
});

const upload = multer({
  storage: Storage,
}).single("image");

router.post("/product", (req, res) => {
  upload(req, res, (err) => {
    if (err) {
      console.log(err);
    } else {
      const product = new productModel({
        name: req.body.name,
        image: {
          data: req.file.filename,
          contentType: "image/png",
        },
      });
      product
        .save()
        .then(() => res.send("successfully created"))
        .catch((err) => res.send("error in creating product"));
    }
  });
});

export default router;
//program to find max and second max of 4 integers;

#include <iostream>
#include<iomanip>
using namespace std;
int main() {
  int n1,n2,n3,n4,max,max2;
  cout<<"enter 4 numbers "<<endl;
  
  cin>>n1>>n2>>n3>>n4;
  
  max =(n1>n2)?(n1>n3?(n1>n4?n1:n4):(n3>n4)?n3:n4):(n2>n3)?(n2>n4?n2:n4):n3; 
  cout<<"max is: "<<max<<endl;
      
                  
       
  max2=(n1>n2)?(n2>n3?(n2>n4?n2:n4):n3):(n1>n3)?(n1>n4?n1:n4):n3;              
  
  cout<<"2nd max is: "<<max2<<endl;
      
      
      
    return 0;
}
from sklearn.linear_model import Lasso

# TODO explain options
param_grid = {'alpha': np.logspace(-5, 0, 10)}
grid = GridSearchCV(Lasso(max_iter=10000, normalize=True), param_grid, cv=10)
grid.fit(X_train, y_train)

print(grid.best_score_)
print(grid.best_params_)
star

Mon Oct 30 2023 09:07:51 GMT+0000 (Coordinated Universal Time)

@viinod07

star

Mon Oct 30 2023 08:28:18 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Mon Oct 30 2023 08:18:43 GMT+0000 (Coordinated Universal Time)

@malzzz

star

Mon Oct 30 2023 07:06:00 GMT+0000 (Coordinated Universal Time) https://www.beleaftechnologies.com/crypto-arbitrage-trading-bot

@Gracesparkle

star

Mon Oct 30 2023 06:00:46 GMT+0000 (Coordinated Universal Time)

@Bamni1991

star

Mon Oct 30 2023 05:38:49 GMT+0000 (Coordinated Universal Time)

@zelda #swiftui

star

Mon Oct 30 2023 05:30:42 GMT+0000 (Coordinated Universal Time) https://pimylifeup.com/ubuntu-cron-jobs/

@nays #bash

star

Mon Oct 30 2023 05:30:38 GMT+0000 (Coordinated Universal Time) https://pimylifeup.com/ubuntu-cron-jobs/

@nays #bash

star

Mon Oct 30 2023 04:53:50 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Mon Oct 30 2023 02:56:33 GMT+0000 (Coordinated Universal Time) https://github.com/docker/welcome-to-docker

@nays

star

Mon Oct 30 2023 02:30:59 GMT+0000 (Coordinated Universal Time) https://realpython.com/python-versions-docker/

@nays

star

Mon Oct 30 2023 02:23:44 GMT+0000 (Coordinated Universal Time) https://ubunlog.com/id/como-saber-que-version-de-ubuntu-tengo/

@nays

star

Mon Oct 30 2023 02:23:31 GMT+0000 (Coordinated Universal Time) https://ubunlog.com/id/como-saber-que-version-de-ubuntu-tengo/

@nays

star

Mon Oct 30 2023 02:21:52 GMT+0000 (Coordinated Universal Time) https://kinsta.com/knowledgebase/check-ubuntu-version/

@nays

star

Mon Oct 30 2023 02:11:32 GMT+0000 (Coordinated Universal Time) https://operavps.com/docs/fix-unable-to-locate-package-error-on-ubuntu/

@nays

star

Mon Oct 30 2023 02:11:31 GMT+0000 (Coordinated Universal Time) https://operavps.com/docs/fix-unable-to-locate-package-error-on-ubuntu/

@nays

star

Mon Oct 30 2023 02:10:13 GMT+0000 (Coordinated Universal Time) https://operavps.com/docs/fix-unable-to-locate-package-error-on-ubuntu/

@nays

star

Mon Oct 30 2023 01:43:44 GMT+0000 (Coordinated Universal Time) https://github.com/docker/for-mac/issues/6704

@nays

star

Mon Oct 30 2023 01:41:12 GMT+0000 (Coordinated Universal Time) https://medium.com/@matijazib/how-to-fix-the-error-load-metadata-for-docker-io-when-building-your-docker-image-on-macos-ec6deee664fd

@nays

star

Mon Oct 30 2023 01:41:08 GMT+0000 (Coordinated Universal Time) https://medium.com/@matijazib/how-to-fix-the-error-load-metadata-for-docker-io-when-building-your-docker-image-on-macos-ec6deee664fd

@nays

star

Mon Oct 30 2023 01:40:57 GMT+0000 (Coordinated Universal Time) https://medium.com/@matijazib/how-to-fix-the-error-load-metadata-for-docker-io-when-building-your-docker-image-on-macos-ec6deee664fd

@nays

star

Sun Oct 29 2023 18:53:54 GMT+0000 (Coordinated Universal Time) https://lerdot.com/product-download-links-are-not-updated/

@satinbest

star

Sun Oct 29 2023 17:51:56 GMT+0000 (Coordinated Universal Time)

@Shesek

star

Sun Oct 29 2023 17:51:56 GMT+0000 (Coordinated Universal Time) https://chen-studio.co.il/wp-admin/admin.php?page

@chen #undefined

star

Sun Oct 29 2023 17:34:02 GMT+0000 (Coordinated Universal Time)

@Mohamedshariif #java

star

Sun Oct 29 2023 16:38:26 GMT+0000 (Coordinated Universal Time)

@Shesek

star

Sun Oct 29 2023 16:37:30 GMT+0000 (Coordinated Universal Time)

@Shesek

star

Sun Oct 29 2023 15:17:05 GMT+0000 (Coordinated Universal Time) https://www.tinkoff.ru/events/feed/?pieType

@qwizzy

star

Sun Oct 29 2023 12:23:39 GMT+0000 (Coordinated Universal Time) https://egmanevents.com/one-piece

@onik

star

Sun Oct 29 2023 11:50:50 GMT+0000 (Coordinated Universal Time)

@seb_prjcts_be

star

Sun Oct 29 2023 09:20:53 GMT+0000 (Coordinated Universal Time)

@mehran

star

Sun Oct 29 2023 09:08:59 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Sun Oct 29 2023 09:01:08 GMT+0000 (Coordinated Universal Time)

@usman_hamed

star

Sun Oct 29 2023 06:37:02 GMT+0000 (Coordinated Universal Time)

@mehran

star

Sun Oct 29 2023 06:02:31 GMT+0000 (Coordinated Universal Time) https://amueller.github.io/aml/02-supervised-learning/05-linear-models-regression.html

@elham469

star

Sun Oct 29 2023 06:02:24 GMT+0000 (Coordinated Universal Time) https://amueller.github.io/aml/02-supervised-learning/05-linear-models-regression.html

@elham469

star

Sun Oct 29 2023 06:00:01 GMT+0000 (Coordinated Universal Time) https://amueller.github.io/aml/02-supervised-learning/05-linear-models-regression.html

@elham469

star

Sun Oct 29 2023 05:59:59 GMT+0000 (Coordinated Universal Time) https://amueller.github.io/aml/02-supervised-learning/05-linear-models-regression.html

@elham469

star

Sun Oct 29 2023 05:59:37 GMT+0000 (Coordinated Universal Time) https://amueller.github.io/aml/02-supervised-learning/05-linear-models-regression.html

@elham469

star

Sun Oct 29 2023 05:59:14 GMT+0000 (Coordinated Universal Time) https://amueller.github.io/aml/02-supervised-learning/05-linear-models-regression.html

@elham469

star

Sun Oct 29 2023 05:31:07 GMT+0000 (Coordinated Universal Time) https://www.vudu.com/js/vudu_common.js?single

@redwolf #angular

star

Sat Oct 28 2023 18:37:35 GMT+0000 (Coordinated Universal Time)

@m0533127173@gmail.com

star

Sat Oct 28 2023 11:51:01 GMT+0000 (Coordinated Universal Time) view-source:https://status.roblox.com/

@TheRobloxShow48

star

Sat Oct 28 2023 11:11:35 GMT+0000 (Coordinated Universal Time) https://onlinedu.uz/courses/view/2-didaktik-vositalar-o-quv-metodik-materiallar-tayyorlashda-amaliy-dasturlardan-foydalanish/maruza-matni-184/text/18354?wyp

@Mahkamjon

star

Sat Oct 28 2023 10:26:46 GMT+0000 (Coordinated Universal Time)

@mehran

star

Sat Oct 28 2023 10:24:19 GMT+0000 (Coordinated Universal Time)

@danishyt96 #javascript

star

Sat Oct 28 2023 09:08:14 GMT+0000 (Coordinated Universal Time)

@yolobotoffender

star

Sat Oct 28 2023 07:56:09 GMT+0000 (Coordinated Universal Time) https://amueller.github.io/aml/02-supervised-learning/05-linear-models-regression.html

@elham469

star

Sat Oct 28 2023 07:46:21 GMT+0000 (Coordinated Universal Time) https://amueller.github.io/aml/02-supervised-learning/05-linear-models-regression.html

@elham469

star

Sat Oct 28 2023 07:45:30 GMT+0000 (Coordinated Universal Time) https://amueller.github.io/aml/02-supervised-learning/05-linear-models-regression.html

@elham469

Save snippets that work with our extensions

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