Skip to content
View beratdogan's full-sized avatar

Organizations

@exness @crazy-annotators
Block or Report

Block or report beratdogan

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. dotfiles dotfiles Public

    Shell 1

  2. PostgreSQL DBA Queries PostgreSQL DBA Queries
    1
    SELECT s.schemaname AS sch,
    2
           s.relname AS rel,
    3
           s.indexrelname AS idx,
    4
           s.idx_scan AS scans,
    5
           pg_size_pretty(pg_relation_size(s.relid)) AS ts,
  3. React Hooks with Context API Example React Hooks with Context API Example
    1
    import React, {createContext, useEffect, useContext, useReducer} from 'react';
    2
    
                  
    3
    
                  
    4
    const initialArgs = {
    5
      count: 0