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
| @echo off | |
| title Activate Microsoft Office 2019 ! | |
| cls | |
| echo ============================================================================ | |
| echo #Project: Activating Microsoft software products | |
| echo ============================================================================ | |
| echo. | |
| echo #Supported products: | |
| echo - Microsoft Office Standard 2019 | |
| echo - Microsoft Office Professional Plus 2019 |
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
| 1- First of all, you have to run your app on the simulator. | |
| 2- Then, open the terminal | |
| 3- Now, you have to run the command you desire: | |
| - Screenshot: xcrun simctl io booted screenshot | |
| - Video: xcrun simctl io booted recordVideo <filename>.<file extension>. | |
| For example: xcrun simctl io booted recordVideo appvideo.mov | |
| 4- Press cntrl + c to stop recording the video. |
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
| https://jason.pureconcepts.net/2015/10/install-apache-php-mysql-mac-os-x-el-capitan/ | |
| https://jason.pureconcepts.net/2012/10/install-apache-php-mysql-mac-os-x/ | |
| https://coolestguidesontheplanet.com/get-apache-mysql-php-and-phpmyadmin-working-on-osx-10-11-el-capitan/ | |
| http://www.alphansotech.com/blogs/setup-apache-mysql-php-phpmyadmin-mac-osx/ | |
| https://mallinson.ca/osx-web-development/ | |
| https://coolestguidesontheplanet.com/get-apache-mysql-php-and-phpmyadmin-working-on-osx-10-11-el-capitan/ | |
| ##Apache httpd file location | |
| /etc/apache2 |
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
| <html> | |
| <head> | |
| <title>Set Webhooks</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" /> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.0/css/bulma.min.css" /> | |
| <script src="https://unpkg.com/vue/dist/vue.js"></script> | |
| </head> | |
| <body> |
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
| { | |
| "name": "elnaeria-platform", | |
| "version": "1.0.2", | |
| "scripts": { | |
| "start": "expo start --dev-client", | |
| "android": "expo run:android", | |
| "ios": "expo run:ios", | |
| "web": "expo start --web", | |
| "eject": "expo eject" | |
| }, |
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
| export const states = [ | |
| { | |
| label: " الخرطوم", | |
| value: "1" | |
| }, | |
| { | |
| label: " الجزيره", | |
| value: "2" | |
| }, | |
| { |
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
| /** | |
| * React-Native cross-platform elevations. | |
| * Based on https://ethercreative.github.io/react-native-shadow-generator/ | |
| * | |
| * Usage: | |
| * 1. Import "elevations" from this file | |
| * import { elevations } from "config/elevations"; | |
| * 2. Use it. Assuming you need an elevation of 2 (based on the Android | |
| * elevation standard), doing the following will cast the same shadow | |
| * on both platforms: |