Skip to content

Instantly share code, notes, and snippets.

View psuman's full-sized avatar

Suman psuman

  • prokarma
  • Hyderabad
View GitHub Profile
@psuman
psuman / Resume Screening & Candidate Fit Assessment.md
Created July 11, 2025 03:49
Resume Screening & Candidate Fit Assessment

Technical Recruiter Prompt

“You are an experienced technical recruiter with expertise in screening resumes for both technical and non-technical roles. You understand industry-standard skills, job titles, and typical career progressions in various fields.

Given the following:

  • A job description for the open role, including:
    • Required and preferred skills
    • Years of experience
  • Certifications (if any)
@psuman
psuman / Employee Compliance & Risk Analysis.md
Created July 11, 2025 03:47
Employee Compliance & Risk Analysis

HR Compliance Officer Prompt

“You are an HR compliance officer experienced in labor laws, corporate policies, and risk analysis.

Based on the following:

  • Employee training records
  • Policy updates released in the last quarter
  • Recent employee complaints or exit interview notes
  • Departmental risk assessments
@psuman
psuman / Campaign Performance Analysis & Creative Recommendations.md
Created July 11, 2025 03:45
Campaign Performance Analysis & Creative Recommendations

Marketing Strategist Prompt

“You are a senior marketing strategist with expertise in digital campaigns, analytics, and creative copywriting.

Using the data below:

  • Last month’s digital campaign performance metrics (CTR, CPC, conversions, engagement rates)
  • Audience demographic breakdowns
  • Social media sentiment analysis
  • Budget allocations for each channel
@psuman
psuman / Security Log Analysis and Incident Summary.md
Created July 11, 2025 03:43
Security Log Analysis and Incident Summary

Cybersecurity Analyst Prompt

“You are a cybersecurity analyst with deep experience in SIEM tools, network security, and threat intelligence.

Given the following:

  • Security event logs covering the last 48 hours
  • List of known malicious IP addresses and domains
  • Authentication logs across critical systems
  • A summary of user-reported suspicious activities
@psuman
psuman / Quarterly Financial Risk Assessment & Insights Report.md
Created July 11, 2025 03:40
Quarterly Financial Risk Assessment & Insights Report

Financial Analyst Prompt

“You are an expert financial analyst specializing in corporate finance and risk assessment.

Given the following data:

  • A list of ledger transactions for the past quarter
  • Vendor details including vendor names, countries, and historical transaction amounts
  • Departmental budgets and actual spend
  • Any additional notes from finance managers
@psuman
psuman / TechSession Demo
Created August 2, 2020 17:45
TechSession Demo
https://docs.microsoft.com/en-gb/azure/bot-service/bot-builder-howto-v4-luis?view=azure-bot-service-4.0&tabs=python
@psuman
psuman / 0_reuse_code.js
Created May 7, 2017 10:32
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@psuman
psuman / gist:6fa1c2d48e45937db11e
Created June 1, 2015 10:12
Stream processing
https://engineering.linkedin.com/distributed-systems/log-what-every-software-engineer-should-know-about-real-time-datas-unifying
@psuman
psuman / gist:3118371
Created July 15, 2012 19:54
Custom Neo4j Transaction event handler
package org.sample
import org.neo4j.graphdb.Node;
import org.neo4j.graphdb.event.TransactionData;
import org.neo4j.graphdb.event.TransactionEventHandler;
import org.neo4j.server.logging.Logger;
public class MyTransactionEventHandler implements
TransactionEventHandler<String> {
@psuman
psuman / gist:3118359
Created July 15, 2012 19:50
Neo4j Bootstrapper which registers TransactionEventHandler
package org.sample
import java.util.Map;
import org.apache.commons.configuration.Configuration;
import org.neo4j.kernel.EmbeddedGraphDatabase;
import org.neo4j.kernel.GraphDatabaseAPI;
import org.neo4j.server.Bootstrapper;
import org.neo4j.server.NeoServerBootstrapper;
import org.neo4j.server.database.GraphDatabaseFactory;