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
Job Title: SAP Solution Architect | |
Location: EY (Ernst & Young) Business Consulting | |
Location: Bangalore, India | |
Experience Required: 10-12 years | |
Job Description:- | |
We are seeking a seasoned SAP Solution Architect with a robust understanding of the SAP ecosystem. This individual will be a key player in creating and executing strategic plans related to SAP implementation, maintenance, and enhancement. They will also be responsible for designing, developing, and implementing SAP modules to enhance business functionality and overall performance while maintaining a high degree of customer satisfaction. | |
Required Skills: | |
1. 10-12 years of experience in SAP architecture design and development. |
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 spacy | |
# Load a pre-trained NLP model from spaCy | |
nlp = spacy.load("en_core_web_sm") | |
# Define a function to handle user input and generate a response | |
def respond(input): | |
# Parse the user input using the NLP model | |
doc = nlp(input) |
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
$ irb | |
>> 1.class | |
=> Fixnum | |
>> 1.respond_to?(:dup) | |
=> true | |
>> 1.dup | |
TypeError: can't dup Fixnum | |
from (irb):3:in `dup' | |
from (irb):3 |
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 parse a tweet from twitter to get teh '@' , '#' and the text seperated | |
parsed_text = tweet.text.gsub(/ ?(@\w+)| ?(#\w+)/) { |a| ((a.include?('#')) ? tags : replies) << a.strip.gsub(/#|@/,''); '' } |
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
# A nice way to format the default rails date magic field to human readable format | |
@foo.created_at.strftime("%b %d %Y") |
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
# Working and strong RegEx for email validation in Ruby | |
/\A([\w\.%\-\+]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i |
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
page.select('#DOM_element_id').each do |foo| | |
foo.value = bar | |
end |
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
# A neat Ruby trick | |
a,b,c = 10,23,109 |