This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // GameScene.swift | |
| // Space Pulse | |
| // | |
| // Created by Amir Saeid Dehghan | |
| // | |
| import SpriteKit | |
| final class GameScene: SKScene, SKPhysicsContactDelegate { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // ViewController.swift | |
| // Hero Brain AR | |
| // | |
| // Created by Amir Saeid Dehghan | |
| // | |
| // This file controls the main AR experience of the app. | |
| // این فایل تجربه اصلی واقعیت افزوده اپلیکیشن را مدیریت میکند. | |
| // |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Liquid Glass UI Token Generator | |
| * Author: Amir Saeid Dehghan | |
| * Description: Generates reusable design tokens for Glassmorphism / Liquid Glass UI | |
| */ | |
| function generateLiquidGlassTokens({ | |
| level = "medium", // soft | medium | heavy | |
| theme = "light" // light | dark | |
| } = {}) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // ViewController.swift | |
| // ARBrainEducation | |
| // | |
| // Created by Amir Saeid Dehghan | |
| // | |
| import UIKit | |
| import RealityKit | |
| import ARKit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* redirecting */ | |
| /* follow me on instagram : saaeid.dev | |
| follow me on twitter : @metasaeid */ | |
| error_reporting(E_ALL ^ E_NOTICE); | |
| $id = $_GET["id"]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| session_start(); | |
| $_SESSION["b"] = 12; | |
| $_SESSION["c"] = array(3 , 10 , 11 , 12 , 18); | |
| print_r($_SESSION); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function Saeid_func($a , $b , $c , $d){ | |
| if($a > $b && $c > $d){ | |
| $a = $a * 2; | |
| $b = $b / 2; | |
| $x = $a + $b; | |
| } | |
| else{ | |
| $a = $a; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function My_func($a , $b , $c , $d , $e){ | |
| if($a > 20 && $b < 10){ | |
| $a = $a / 2; | |
| $b = $b * 2; | |
| } | |
| else{ | |
| $a = $a; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $text = "Welcome to PHP !"; | |
| $a = urlencode($text); | |
| $b = urldecode($a); | |
| echo '<p>Original text: '.$text."</p>"; | |
| echo '<p>After urlencode: '.$a."</p>"; |
NewerOlder