- Bash script initialized
- We have registry issue.
- Empty output line issue from output class solved.
<?php | |
// API access key from Google API's Console | |
define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' ); | |
$registrationIds = array( $_GET['id'] ); | |
// prep the bundle | |
$msg = array |
# Open rewriteEngine | |
RewriteEngine on | |
# Allow removing /resources, index, | |
# index.php, robots.txt and robots | |
# from url | |
RewriteCond $1 !^(index\.php|resources|robots\.txt) | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d |
import React, { Component } from 'react'; | |
import { AppRegistry, View, Text, Button } from 'react-native'; | |
import firebase from 'firebase'; | |
import ImagePicker from 'react-native-image-picker'; | |
import RNFetchBlob from 'react-native-fetch-blob'; | |
const firebaseConfig = { | |
apiKey: "AIzaSyAtsN21kfXEOzG-uYvDqwOnkPpNx9KP1s8", | |
authDomain: "fir-reactnative-ad507.firebaseapp.com", | |
databaseURL: "https://fir-reactnative-ad507.firebaseio.com", |
# code modified, tweaked and tailored from code by bertwert | |
# on RPi forum thread topic 91796 | |
import RPi.GPIO as GPIO | |
import time | |
GPIO.setmode(GPIO.BCM) | |
# GPIO ports for the 7seg pins | |
segments = (11,4,23,8,7,10,18,25) | |
# 7seg_segment_pins (11,7,4,2,1,10,5,3) + 100R inline | |
/** | |
* For modern browsers | |
* 1. The space content is one way to avoid an Opera bug when the | |
* contenteditable attribute is included anywhere else in the document. | |
* Otherwise it causes space to appear at the top and bottom of elements | |
* that are clearfixed. | |
* 2. The use of `table` rather than `block` is only necessary if using | |
* `:before` to contain the top-margins of child elements. | |
*/ | |
.cf:before, |
# Based on http://stackoverflow.com/questions/17313023/symfony-2-2-1-url-rewrite-issue | |
# Use the front controller as index file. It serves as fallback solution when | |
# every other rewrite/redirect fails (e.g. in an aliased environment without | |
# mod_rewrite). Additionally, this reduces the matching process for the | |
# startpage (path "/") because otherwise Apache will apply the rewritting rules | |
# to each configured DirectoryIndex file (e.g. index.php, index.html, index.pl). | |
DirectoryIndex index.php | |
#DirectoryIndex app_dev.php |
//sürücü | |
const int motorA1 = 5; | |
const int motorA2 = 6; | |
const int motorB1 = 10; | |
const int motorB2 = 9; | |
int i=0; | |
int j=0; | |
int state; | |
int vSpeed=255; |
Log | |
C:\Users\Akin Ozgen\Desktop\backup-4.2.2018_11-36-39_u7356236\homedir\backup-4.2.2018_11-36-39_u7356236.tar.gz » GZIP » backup-4.2.2018_11-36-39_u7356236.tar » TAR » backup-4.2.2018_11-36-39_u7356236/homedir/17napolipizza.com/admin/public/fonts/favicon_4f7210.ico - PHP/Kryptik.BC trojan - action selection postponed until scan completion | |
C:\Users\Akin Ozgen\Desktop\backup-4.2.2018_11-36-39_u7356236\homedir\backup-4.2.2018_11-36-39_u7356236.tar.gz » GZIP » backup-4.2.2018_11-36-39_u7356236.tar » TAR » backup-4.2.2018_11-36-39_u7356236/homedir/17napolipizza.com/api/vendor/filp/whoops/hryaysyy.php - PHP/Agent.KG trojan - action selection postponed until scan completion | |
C:\Users\Akin Ozgen\Desktop\backup-4.2.2018_11-36-39_u7356236\homedir\backup-4.2.2018_11-36-39_u7356236.tar.gz » GZIP » backup-4.2.2018_11-36-39_u7356236.tar » TAR » homedir/17napolipizza.com/api/vendor/symfony/process/ProcessUtils.php - PHP/Kryptik.BL trojan - action selection postponed until scan completion | |
C:\Users\Akin Ozgen\Desktop\backup- |
<?php | |
function getPHPExecutable() { | |
$phpExecutable = file_exists('/usr/bin/php') ? '/usr/bin/php' : false; | |
if (!$phpExecutable) { | |
exec('which php', $phpExecutableRawPath); | |
if (!strpos($phpExecutableRawPath[0], '/php')) { | |
if (!strpos(PHP_BINARY, '/php')) |