Skip to content

Commit

Permalink
WIP company name transformer
Browse files Browse the repository at this point in the history
  • Loading branch information
evisdrenova committed Oct 31, 2024
1 parent 40640d8 commit 11186e5
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions worker/pkg/benthos/transformers/data-sets/company_names.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
package transformers_dataset

var industries = []string{
"Tech", "Global", "Systems", "Solutions", "Industries", "Enterprises", "Digital",
"Innovation", "Dynamics", "Networks", "Technologies", "Software", "Analytics",
"Services", "Group", "Partners", "International", "Ventures", "Capital", "Labs",
}

var prefixes = []string{
"Advanced", "Allied", "Alpine", "Atlas", "Apex", "Blue", "Bright", "Clear",
"Core", "Crown", "Crystal", "Delta", "Digital", "Elite", "First", "Future",
"Global", "Golden", "Green", "Horizon", "Imperial", "Infinite", "Innovative",
"Integrated", "Key", "Logic", "Matrix", "Meta", "Modern", "Neo", "New",
"Next", "Nova", "Omega", "Optimal", "Peak", "Prime", "Quantum", "Rapid",
"Royal", "Smart", "Solar", "Star", "Strategic", "Summit", "Supreme", "Sync",
"Unity", "Universal", "Vector", "Vertex", "Vision", "Vital", "Wave", "World",
}

var baseWords = []string{
"Action", "Advance", "Alpha", "Asset", "Basis", "Bridge", "Byte", "Cloud",
"Connect", "Core", "Craft", "Cross", "Cyber", "Data", "Direct", "Edge",
"Energy", "Flow", "Forge", "Form", "Fusion", "Grid", "Harbor", "Helix",
"Hub", "Info", "Inter", "Link", "Logic", "Loop", "Mind", "Net", "Node",
"Path", "Peak", "Plus", "Point", "Pulse", "Quest", "Reach", "Realm",
"Scope", "Shift", "Spark", "Sphere", "Spire", "Stream", "Sync", "Sys",
"Task", "Team", "Tech", "Tel", "Track", "Trade", "Trust", "Unity",
"Urban", "Value", "Vector", "Vent", "Verge", "Verse", "Vibe", "View",
"Vision", "Wave", "Way", "Web", "Wire", "Wise", "Work", "Zone",
"Algo", "Array", "Audit", "Base", "Binary", "Block", "Cache", "Chain",
"Code", "Crypt", "Dash", "Delta", "Dev", "Dock", "Drive", "Echo",
"File", "Filter", "Flash", "Frame", "Gate", "Graph", "Hash", "Host",
"Input", "Ion", "Jump", "Key", "Lab", "Lambda", "Layer", "Line",
"Map", "Matrix", "Memory", "Mesh", "Meta", "Micro", "Monitor", "Neural",
"Nexus", "Omega", "Orbit", "Parse", "Port", "Proxy", "Quantum", "Query",
"Radio", "Ram", "Route", "Scale", "Script", "Server", "Signal", "Stack",
"Terra", "Thread", "Token", "Trace", "Trunk", "Unit", "Upload", "Vertex",
"Agile", "Axis", "Bank", "Board", "Bond", "Branch", "Brand", "Budget",
"Cap", "Capital", "Central", "Channel", "Chart", "Chief", "Circle", "Claim",
"Command", "Control", "Credit", "Crown", "Cube", "Cycle", "Domain", "Draft",
"Eagle", "Engine", "Factor", "Field", "Fleet", "Force", "Forum", "Fund",
"Garden", "Giant", "Global", "Growth", "Guard", "Guide", "Index", "Insight",
"Iron", "Lead", "League", "Level", "Light", "Lion", "Market", "Medal",
"Merit", "Method", "Model", "Motion", "Nova", "Ocean", "Office", "Order",
"Panel", "Pearl", "Phase", "Plan", "Power", "Prime", "Profit", "Rank",
"Ai", "Api", "App", "Arc", "Beam", "Bit", "Brain", "Bridge",
"Cast", "Chain", "Click", "Cloud", "Core", "Cosmos", "Dart", "Data",
"Edge", "Flex", "Flow", "Flux", "Gene", "Geo", "Giga", "Grid",
"Hub", "Hyper", "Impact", "Intel", "Jet", "Kit", "Lens", "Link",
"Max", "Mine", "Nano", "Net", "Neural", "Next", "Node", "Norm",
"Optic", "Pixel", "Pod", "Pulse", "Ray", "Sage", "Scan", "Sense",
"Smart", "Sol", "Swift", "Synth", "Titan", "Ultra", "Volt", "Zone",
}

var suffixes = []string{
"Corp", "Inc", "LLC", "Ltd", "Group", "Holdings",
}

0 comments on commit 11186e5

Please sign in to comment.