Skip to content

Instantly share code, notes, and snippets.

View CovenantJunior's full-sized avatar
:octocat:
Debugging code, battling semicolons, multitasking with a cup of coffee, NBD 💪

Tea CovenantJunior

:octocat:
Debugging code, battling semicolons, multitasking with a cup of coffee, NBD 💪
View GitHub Profile
<?php
public function isBot() {
$bots = array(
'googlebot',
'adsbot-google',
'feedfetcher-google',
'yahoo',
'lycos',
'bloglines subscriber',
'dumbot',
@pmatatias
pmatatias / attach_iframe_android.dart
Last active May 28, 2024 07:57
Attach file , and open camera from iframe or webview in flutter app
import 'dart:io';
import 'package:file_picker/file_picker.dart';
import 'package:flutter/material.dart';
import 'package:image_picker/image_picker.dart';
import 'package:webview_flutter/webview_flutter.dart';
// ignore: depend_on_referenced_packages
import 'package:webview_flutter_android/webview_flutter_android.dart'
as webview_flutter_android;
import 'package:image_picker/image_picker.dart' as image_picker;