Answer Matrix Build Up
Rebuild based on the key value matrix
Add the matrix

pull from the skills matrix and than Update to the answermatrix

one 256 answer should be enough

Created the answers


sas token created

Run and see let see

Add questions in

Any planned leaves

skills can be mapped with an array but the questions we need the bulk email

redo and updathe logic

find emails with the questions

https://mail.google.com/mail/u/0/#search/in%3Asent+c2c/FMfcgzGxRxDZFqMGjqfnhljnkzjCCKMM
runid: 08584922935351231992460058749CU16
https://portal.azure.com/#view/Microsoft_Azure_EMA/DesignerEditorConsumption.ReactView/id/%2Fsubscriptions%2Fad744a08-2411-4d78-b417-1f1c83f4f741%2FresourceGroups%2FContractorMarketing%2Fproviders%2FMicrosoft.Logic%2Fworkflows%2Fcontractormarketing-replygmail-realtime/location/uksouth/showGoBackButton~/true/isReadOnly~/true/isMonitoringView~/true/runId/%2Fsubscriptions%2Fad744a08-2411-4d78-b417-1f1c83f4f741%2FresourceGroups%2FContractorMarketing%2Fproviders%2FMicrosoft.Logic%2Fworkflows%2Fcontractormarketing-replygmail-realtime%2Fruns%2F08584922935351231992460058749CU16
html to text

Text that is scrapped
Hello Erdem Sahin My name is Prashant Raj and I am a Staffing Specialist at Intellectt Inc. I am reaching out to you on an exciting job opportunity with one of our clients. Hi AWS Architect Chicago,IL Onsite Role 1. Steer AWS native application architecture and implementation 2. Handson design experience of solutions that involve a blend of streaming and scheduled batch data ingestion, processing 3. Experience in design solutions considering DR, scalability, performance, observability and relevant NFRs in AWS cloud 4. Well versed with AWS solution components / workloads – S3, Lambdas, Kinesis, Glue, Crawler, Pyspark 5. Lead design to low level tech story grooming and oversee the implementation of the application 6. Drive Well architected framework discussions and lead relevant signoffs with EA community Should you be interested, please send me a copy of your resume in word format along with the following details ASAP. Full Name: Current Location: Hourly rate on 1099/W2/C2C: Work Authorization: Earliest Available date to start: Date and times available to interview: Two Professional References:(Preferably Supervisory references): Best Regards, Prashant Raj [email protected] To unsubscribe from future emails or to update your email preferences click here
[unsubscribe.intellectt.com/users/request_unsubscribe/4e63cec68433eebff35dc96a475b144fd74ca978/0e3f67f3ee3a38def23394df9045cb9d2d72cb00/eER1eW5EalF6dXpxRXNJZDkrRGpOdz09]
[http://clicks.mg2.ceipalmm.com/o/eJwsyEtuwyAQANDTmF2s-RHsBYuepGIyQ4JUm4iitsfvItk9PctXNS2AwTMm2BmZhcIjpxgpKQHa7qzRqmECM467bMKEoWUCEmBATBiZVjKVTZIzXavWTReB407rzduzfB3HeutHGLmdtS8CT_8r2l_n9bNZRhBKYea-8Mcs97fOMtuPX779tPcM_x1tvsrH5eHFfPwHAAD__2NmO4U]
remove and fix it

Turning for all questions it is a different logic and looking bigger than the index of question

too many answers are out

Add questions and answers into here

All pushed

index of


action

not mapped

2 minute runtime is harder

value or parse

keys mapped ok not the values

maybe a dictionary system needed >>> timing is important as well

keyvalue helper could be used

extracted

filter not working

filter not working i am building my own

maybe key value mapping withut json filter would be enough ? and a shorter time ?

still slow and wrong output

3 sec for 200 questions is also a long time

I need a function to return this ?
Get the keyvalue > get the text and do it in process ?
new resources coming in

Goal > speed > accuracy > csharp flexibility > maybe linQ
wrong. locale creation

isloated models dont have online edits

in process model there is online adding

key value filter


todo > create a fcuntion
todo > create a pipelione
todo > write code to complete the task
todo > deploy and process in a faster fashion
not one function but for multiple functions is the case

running in the back as an none isolated process

old system works from one branch and the skills mapping is done the answer matrix is the next case

Added the reference into the todo

more incoming repos coming in more tech debt

Goal > market to recruiters > show case project for customers
move from service as contractor > service product >>> release on demand for customers >>> 1 m project for the companies > training / framework / implementation
there is download app content

not that bad everyone needs to become input and output

Project is also here

new world and the web creation

Source controlled

https://dev.azure.com/pexabo/contractormarketing/_git/contractormarketing-helperfunctions?path=/keyvaluefilter/run.csx&version=GBmain
worpress with search on dot net functions and it is public

Pipeline incoming dev and ops have issues all the time incoming and they got to be integrated

it could at least detech this time

Subs linked and it is agreat push

Ready to configure

Autocreated
`# .NET Core Function App to Windows on Azure
Build a .NET Core function app and deploy it to Azure as a Windows function App.
Add steps that analyze code, save build artifacts, deploy, and more:
https://docs.microsoft.com/en-us/azure/devops/pipelines/languages/dotnet-core
trigger:
- main
variables:
# Azure Resource Manager connection created during pipeline creation
azureSubscription: 'ee74af12-1f13-4c25-a872-5b888680d621'
# Function app name
functionAppName: 'contractormarketing-helperfunctions'
# Agent VM image name
vmImageName: 'windows-2019'
# Working Directory
workingDirectory: '$(System.DefaultWorkingDirectory)/'
stages:
- stage: Build
displayName: Build stage
jobs:
- job: Build
displayName: Build
pool:
vmImage: $(vmImageName)
steps:
- task: DotNetCoreCLI@2
displayName: Build
inputs:
command: 'build'
projects: |
$(workingDirectory)/*.csproj
arguments: --output $(System.DefaultWorkingDirectory)/publish_output --configuration Release
- task: ArchiveFiles@2
displayName: 'Archive files'
inputs:
rootFolderOrFile: '$(System.DefaultWorkingDirectory)/publish_output'
includeRootFolder: false
archiveType: zip
archiveFile: $(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip
replaceExistingArchive: true
- publish: $(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip
artifact: drop
- stage: Deploy
displayName: Deploy stage
dependsOn: Build
condition: succeeded()
jobs:
- deployment: Deploy
displayName: Deploy
environment: 'development'
pool:
vmImage: $(vmImageName)
strategy:
runOnce:
deploy:
steps:
- task: AzureFunctionApp@1
displayName: 'Azure functions app deploy'
inputs:
azureSubscription: '$(azureSubscription)'
appType: functionApp
appName: $(functionAppName)
package: '$(Pipeline.Workspace)/drop/$(Build.BuildId).zip'`
Stages zip and push ready with correct agents

Agent looks problematic

https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/agents?view=azure-devops&tabs=yaml%2Cbrowser

running it now

infoline at the end
Info: Azure Pipelines hosted agents have been updated and now contain .Net 5.x SDK/Runtime along with the older .Net Core version which are currently lts. Unless you have locked down a SDK version for your project(s), 5.x SDK might be picked up which might have breaking behavior as compared to previous versions. You can learn more about the breaking changes here: https://docs.microsoft.com/en-us/dotnet/core/tools/ and https://docs.microsoft.com/en-us/dotnet/core/compatibility/ . To learn about more such changes and troubleshoot, refer here: https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/build/dotnet-core-cli?view=azure-devops#troubleshooting
infoline at the top
C:\Windows\system32\chcp.com 65001
Active code page: 65001
Info: .NET Core SDK/runtime 2.2 and 3.0 are now End of Life(EOL) and have been removed from all hosted agents. If you're using these SDK/runtimes on hosted agents, kindly upgrade to newer versions which are not EOL, or else use UseDotNet task to install the required version.
"C:\Program Files\dotnet\dotnet.exe" build D:\a\1\s\contractormarketing-helperfunctions.csproj "-dl:CentralLogger,\"D:\a_tasks\DotNetCoreCLI_5541a522-603c-47ad-91fc-a4b1d163081b\2.235.0\dotnet-build-helpers\Microsoft.TeamFoundation.DistributedTask.MSBuild.Logger.dll\"*ForwardingLogger,\"D:\a_tasks\DotNetCoreCLI_5541a522-603c-47ad-91fc-a4b1d163081b\2.235.0\dotnet-build-helpers\Microsoft.TeamFoundation.DistributedTask.MSBuild.Logger.dll\"" --output D:\a\1\s/publish_output --configuration Release
MSBuild version 17.9.4+90725d08d for .NET
Determining projects to restore...
Restored D:\a\1\s\contractormarketing-helperfunctions.csproj (in 26.89 sec).
contractormarketing-helperfunctions -> D:\a\1\s\publish_output\bin\contractormarketing-helperfunctions.dll
[error]C:\Users\VssAdministrator.nuget\packages\microsoft.net.sdk.functions\1.0.8\build\netstandard1.0\Microsoft.NET.Sdk.Functions.Build.targets(39,5): Error : You must install or update .NET to run this application.
end of life and reinstalls needed to work with them

got to installl sdk as a task

Added the action there


limits >>>>hrrr

https://twitter.com/rifaterdemsahin/status/1764204761752993900
mas vscode for help



sdk folder added

who does not love

gray dots matter > recheck see the arguments line!
https://learn.microsoft.com/en-us/azure/devops/pipelines/tasks/reference/cmd-line-v1?view=azure-pipelines

arguments line

build done and permissions needed

deep integration needed

takes time to deploy

lose at design time and win at run time
Containers in the back

hosted one is slow


5 minute to deploy

add basics in

Imported from rifaterdemsahin.com · 2024