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
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 bs58 = require('bs58'); | |
const connection = new web3.Connection(web3.clusterApiUrl('mainnet-beta')); | |
let transaction; | |
function getInstructionDiscriminator(name) { |
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')); |
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} |
sudo apt install php8.1-{bcmath,xml,fpm,mysql,zip,intl,ldap,gd,cli,bz2,curl,mbstring,pgsql,opcache,soap,cgi} |
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
find . -type f -exec chmod 644 {} \; | |
find . -type d -exec chmod 755 {} \; |
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
function arrayConvertKeyValue($array,$prefix=null) | |
{ | |
$tempArray = array(); | |
$childArray = array(); | |
foreach($array as $key => $value) | |
{ | |
$key = $prefix.".".$key; | |
if(is_array($value)) | |
{ |
<?php | |
/** | |
* usage = sudo php aconf.php -d altklasor -h host.name | |
* | |
*/ | |
$shortopts = "d:"; | |
$shortopts .= "h:"; | |
$options = getopt($shortopts); |
<?php | |
Class PriceCalculate { | |
public $defaultPrice; | |
public $startDate; | |
public $endDate; | |
public $maxToleranceHour = 3; | |
public $startTime; | |
public $endTime; |