This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "Abia": [ | |
| "Aba North", | |
| "Aba South", | |
| "Arochukwu", | |
| "Bende", | |
| "Ikwuano", | |
| "Isiala-Ngwa North", | |
| "Isiala-Ngwa South", | |
| "Isuikwato", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | snappify.io | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | https://dev.to/juliafmorgado/get-paid-to-write-technical-articles-16cl | |
| https://www.honeybadger.io/blog/write-for-us/ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import * as React from 'react'; | |
| import { styled } from '@mui/material/styles'; | |
| import Button from '@mui/material/Button'; | |
| import Tooltip, { tooltipClasses } from '@mui/material/Tooltip'; | |
| import Typography from '@mui/material/Typography'; | |
| const LightTooltip = styled(({ className, ...props }) => ( | |
| <Tooltip {...props} classes={{ popper: className }} /> | |
| ))(({ theme }) => ({ | |
| [`& .${tooltipClasses.tooltip}`]: { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Delete remote branch | |
| git push origin --delete branch-name-to-delete | |
| // Delete local branch | |
| $ git branch -D <branch_name> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| $mail->isSMTP(); | |
| $mail->Host = 'example.com'; | |
| $mail->SMTPAuth = true; | |
| $mail->Username = 'email'; | |
| $mail->Password = 'pass' | |
| //$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; //Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged | |
| $mail->Port = 587; // or use 26 [Note: 465 may not work] | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| public function give_user_subscription( $product, $user_id, $note = '' ){ | |
| // First make sure all required functions and classes exist | |
| if( ! function_exists( 'wc_create_order' ) || ! function_exists( 'wcs_create_subscription' ) || ! class_exists( 'WC_Subscriptions_Product' ) ){ | |
| return false; | |
| } | |
| $order = wc_create_order( array( 'customer_id' => $user_id ) ); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | @echo off | |
| set /p domain="Enter Domain: " | |
| set OPENSSL_CONF=../conf/openssl.cnf | |
| if not exist .\%domain% mkdir .\%domain% | |
| ..\bin\openssl req -config cert.conf -new -sha256 -newkey rsa:2048 -nodes -keyout %domain%\server.key -x509 -days 3650 -out %domain%\server.crt | |
| echo. | |
| echo ----- | 
NewerOlder