Build a SaaS product that solves a recurring business problem at scale, while evolving into a defensible and globally trusted platform.
A software engineer plays a crucial role in fulfilling this JTBD across six key pillars:
Build a SaaS product that solves a recurring business problem at scale, while evolving into a defensible and globally trusted platform.
A software engineer plays a crucial role in fulfilling this JTBD across six key pillars:
adb kill-server&&adb -P 5555 start-server |
<html> | |
<head> | |
</head> | |
<script type="text/javascript" src="index.js"></script> | |
<body onload="draw();"> | |
<h1>Snake</h1> | |
<canvas id="snakeBoard" width="400" height="400" style="border:1px solid #000000;"></canvas> | |
<canvas id="score1Board" width="100" height="100" style="border:1px solid #000000;"></canvas> | |
<canvas id="score2Board" width="100" height="100" style="border:1px solid #000000;"></canvas> | |
</body> |
//push notificaion | |
public function push($req){ | |
$get = ResourceNotification::where('user_id', $req->receiver_id)->with('userId')->get(); | |
$tokens = []; | |
foreach ($get as $g) { | |
// code... | |
array_push($tokens, $g->resource); | |
} | |
$limitToken = array_chunk($tokens, 500); |