Skip to content

Instantly share code, notes, and snippets.

View umair-mirza's full-sized avatar

Umair Mirza umair-mirza

View GitHub Profile
@loadchange
loadchange / .prettierrc.json
Created January 25, 2023 08:16
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
@rubelmiah
rubelmiah / show_current_user_attachments.php
Last active January 26, 2023 06:34
Besides administrator show only the current user media files
<?php
//Besides administrator show only the current user media files
function show_current_user_attachments( $query ) {
if ( ! current_user_can('administrator') ) {
$user_id = get_current_user_id();
if ( $user_id ) {
$query['author'] = $user_id;
}
}