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
    
  
  
    
  | #! /bin/sh | |
| ifn="[slug_name]" | |
| pref="`basename $0 .sh`" | |
| fpathaudio="in/${ifn}.mp3" | |
| fpathpic="in/${ifn}.jpg" | |
| # RUN FFMPEG SCRIPT | |
| ./ffmpeg -y -i "${fpathaudio}" -i "${fpathpic}" -filter_complex " | |
| [0:a]showwaves=s=640x150:mode=cline:colors=red,colorkey=0x000000:0.01:0.1,format=yuva420p[v]; | 
  
    
      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
    
  
  
    
  | // To set NODE_ENV to some variables | |
| $env:NODE_ENV="production" | |
| // To run node server with NODE_DEBUG | |
| $env:NODE_DEBUG="server";node index.js | 
  
    
      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
    
  
  
    
  | # IDE related files | |
| .idea/ | |
| *.iml | |
| *.iws | |
| *.ipr | |
| # Build output | |
| out/ | |
| target/ | |
| build/ | 
  
    
      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
    
  
  
    
  | Sub ExportTableToSQL() | |
| Dim wb As Workbook | |
| Set wb = ThisWorkbook | |
| Dim ws As Worksheet | |
| Dim wsName As String | |
| wsName = "your_worksheet_name" 'Replace with your sheet name | |
| Set ws = wb.Sheets(wsName) | |
| ws.Select | 
  
    
      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
    
  
  
    
  | Sub ExportTableToPipeSeparated() | |
| Dim wb As Workbook | |
| Set wb = ThisWorkbook | |
| Dim ws As Worksheet | |
| Dim wsName As String | |
| wsName = "your_worksheet_name" 'Replace with your sheet name | |
| Set ws = wb.Sheets(wsName) | |
| ws.Select | 
  
    
      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
    
  
  
    
  | Sub GenerateChecksheetByLoop() | |
| ' Define the source worksheet | |
| Dim sourceSheet As Worksheet | |
| Set sourceSheet = ActiveSheet ' You can change this to the specific sheet | |
| ' Define the selected range | |
| Dim selectedRange As Range | |
| On Error Resume Next | |
| Set selectedRange = Application.InputBox("Select the range containing Loop Name and Count", Type:=8) | |
| On Error GoTo 0 | 
  
    
      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 | |
| /** | |
| * Plugin Name: WP Essential Filter Hooks | |
| * Description: Implement essential admin hooks settings features for WordPress. | |
| * Version: 1.0 | |
| * Author: macto | |
| */ | |
| // Add "Duplicate" Button for Pages and Posts | |
| function custom_duplicate_button($actions, $post) { | 
  
    
      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
    
  
  
    
  | // Define the custom block variation | |
| wp.blocks.registerBlockVariation( | |
| 'core/post-featured-image', // Base block type | |
| { | |
| name: 'sotp/post-featured-image', // Variation name | |
| title: 'Post Featured Image + Caption', // Variation title | |
| description: 'Displays the post\'s featured image with caption.', // Variation description | |
| attributes: { | |
| namespace: 'sotp_post_featured_image', // Custom attribute namespace | |
| className: 'sotp-post-featured-image' // Custom class 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
    
  
  
    
  | =IFERROR( | |
| LET(r,INDEX(Master[Date],MATCH($A2,Master[Key],0)), | |
| IF(OR(r="",r=0),"",r) | |
| ), | |
| "") | 
OlderNewer