11 days ago
https://github.com/abi/screenshot-to-code
Drop in a screenshot and convert it to clean code (HTML/Tailwind/React/Vue)
screenshottocode.com
#coding #graphics #programming #library #ai
Drop in a screenshot and convert it to clean code (HTML/Tailwind/React/Vue)
screenshottocode.com
#coding #graphics #programming #library #ai
Read more
GitHub - abi/screenshot-to-code: Drop in a screenshot and convert it to clean code (HTML/Tailwind/React/Vue)
Drop in a screenshot and convert it to clean code (HTML/Tailwind/React/Vue) - abi/screenshot-to-code
https://github.com/abi/screenshot-to-code
11 days ago
(E)
https://gsap.com/
GSAP allows you to effortlessly animate anything JS can touch. Delivering silky-smooth performance and unmatched support. #javascript #library #coding #code
GSAP allows you to effortlessly animate anything JS can touch. Delivering silky-smooth performance and unmatched support. #javascript #library #coding #code
Read more
11 days ago
https://www.cursor.com/
Built to make you extraordinarily productive,
Cursor is the best way to code with AI.
#programming #develop #ai #editor
Built to make you extraordinarily productive,
Cursor is the best way to code with AI.
#programming #develop #ai #editor
Read more
Cursor - The AI Code Editor
Built to make you extraordinarily productive, Cursor is the best way to code with AI.
https://www.cursor.com/
11 days ago
https://www.codux.com/
Where designers and developers can collaborate in real-time for faster workflow. All in one place.
#programming #develop #react #code #editor
Where designers and developers can collaborate in real-time for faster workflow. All in one place.
#programming #develop #react #code #editor
Read more
Codux | Visual Development Environment
Design and develop React projects visually on one development platform. With Codux, your team can collaborate faster to create better UI.
https://www.codux.com/
9 months ago
https://www.make.com/en
From tasks and workflows to apps and systems, build and automate anything in one powerful visual platform.
#nocode #automation #coding #programming
https://www.make.com/en/integrations/twitch
No-code workflow builder, 1000+ standard apps
From tasks and workflows to apps and systems, build and automate anything in one powerful visual platform.
#nocode #automation #coding #programming
https://www.make.com/en/integrations/twitch
No-code workflow builder, 1000+ standard apps
Read more
1 yr. ago
ROZDEL STRING PODLA ZNAKU BEZ POLA
list($user, $pass, $uid, $gid, $gecos, $home, $shell) = explode(":", $data);
//S POLOM
$pizza = "piece1 piece2 piece3 piece4 piece5 piece6";
$pieces = explode(" ", $pizza);
echo $pieces[0]; // piece1
1 yr. ago
PRVE DVA ZNAKY RETAZCA
$twonum = substr($number2, 0, 2);
// ROZDEL STRING PODLA POCTU ZNAKOV
substr($caller_loc, 0, 8);
1 yr. ago
OBSAH POLA ODDELENY CIARKAMI
MAKE STRING FROM ARRAY
MAKE STRING FROM ARRAY
$comma_separated = implode(",", $pole);
1 yr. ago
TODAY DATETIME
YESTERDAY
YESTERDAY
$today = date("Y-m-d H:i:s");
$yesterday = date("Y-m-d H:i:s", strtotime('-1 day'));
1 yr. ago
JEDNODUCHY DELETE
$result21 = mysql_query("DELETE FROM wordpress.wp_terms WHERE term_id='".$row17['term_id']."'");
1 yr. ago
JEDNODUCHY UPDATE
$result2 = mysql_query("UPDATE vfc_form2 SET position='".$posnow."', fixline='".$phone."' WHERE position='".$pos."'");
1 yr. ago
JEDNODUCHY INSERT
$sql=mysql_query("INSERT INTO sms_chat.invitation_sms (sendOperatorId, recieverOperatorId, date) VALUES ('".$sendOperatorId."','".$recieverOperatorId."','".$today."')");
1 yr. ago
(E)
JEDNODUCHE QUERY
$query2 = "SELECT * FROM prizes WHERE date >= '".$date."' and date < '".date('Y-m-d', $dateplus)."' group by ".$groupby."";
$result2 = mysql_query($query2);
while ($row2 = mysql_fetch_array($result2)){
}