mimeapps.list içine [Added Associations] altında bir satıra
aşağıdaki satırı ekle
x-scheme-handler/phpstorm=phpstorm-php.desktop
phpstorm-php.desktop içeriği
[Desktop Entry]
Type=Application
Name=PHPStorm IDE
<?php | |
//mysql sunucuya bağlanma ve veritabanı seçme | |
//mysql | |
mysql_connect('localhost','root','parola'); | |
mysql_select_db('deneme'); | |
//pdo | |
$db = new PDO('mysql:host=localhost;dbname=deneme','root',parola); | |
//sorgu | |
$sqlUyeler = 'select * from uyeler where cins="2"'; |
<?php | |
Class PriceCalculate { | |
public $defaultPrice; | |
public $startDate; | |
public $endDate; | |
public $maxToleranceHour = 3; | |
public $startTime; | |
public $endTime; |
<?php | |
/** | |
* usage = sudo php aconf.php -d altklasor -h host.name | |
* | |
*/ | |
$shortopts = "d:"; | |
$shortopts .= "h:"; | |
$options = getopt($shortopts); |
find . -type f -exec chmod 644 {} \; | |
find . -type d -exec chmod 755 {} \; |
function arrayConvertKeyValue($array,$prefix=null) | |
{ | |
$tempArray = array(); | |
$childArray = array(); | |
foreach($array as $key => $value) | |
{ | |
$key = $prefix.".".$key; | |
if(is_array($value)) | |
{ |
mimeapps.list içine [Added Associations] altında bir satıra
aşağıdaki satırı ekle
x-scheme-handler/phpstorm=phpstorm-php.desktop
phpstorm-php.desktop içeriği
[Desktop Entry]
Type=Application
Name=PHPStorm IDE
To inlcude NoDogSplash into your OpenWRT image or to create an .ipk package (similar to Debians .deb files), you have to build an OpenWRT image. To build the firmware you need a Unix console to enter commands into.
Install the dependencies of the build environment (Debian/Ubuntu):
sudo apt-get install subversion g++ zlib1g-dev build-essential
sudo apt-get install git libncurses5-dev gawk gettext unzip file
sudo apt install php8.1-{bcmath,xml,fpm,mysql,zip,intl,ldap,gd,cli,bz2,curl,mbstring,pgsql,opcache,soap,cgi} |
sudo apt install php8.1-{bcmath,xml,fpm,mysql,zip,intl,ldap,gd,cli,bz2,curl,mbstring,pgsql,opcache,soap,cgi,gmp,mysql} | |
sudo apt install php7.4-{bcmath,xml,fpm,mysql,zip,intl,ldap,gd,cli,bz2,curl,mbstring,pgsql,opcache,soap,cgi,gmp,mysql} |
const web3 = require('@solana/web3.js'); | |
const { PublicKey } = require('@solana/web3.js'); | |
const fs = require('fs'); | |
const path = require('path'); | |
const crypto = require('crypto'); | |
const { log } = require('console'); | |
const bs58 = require('bs58'); | |
const connection = new web3.Connection(web3.clusterApiUrl('mainnet-beta')); |