What's the etymology for the word "business logic" in programing world? - language-agnostic

Why it's been called "business logic" but not "main logic" or "important logic" or "core logic"...?
Was it related to "trading" or "commercial" things?

Related

Python json.loads returning JSONDecodeError Expecting ',' delimiter

I am trying to parse a JSON raw string using json.loads but its throwing following error
JSONDecodeError at /octopus/entries/53/test_sample_job/
Expecting ',' delimiter: line 3 column 27 (char 48)
My json string data is as follows and I am getting error when i did json.loads(data)
data = {
"name": "Shea",
"content": "<p style="text-align:left">Job Description</p><p style="text-align:inherit"></p>Have you heard about phenom? phenom is an innovative, global healthcare leader committed to improving health and well-being in 140 countries around the world. We continue to focus our research on conditions that affect millions of people around the world - diseases like Alzheimer's, Diabetes and Cancer - while further expanding our strengths in areas such as vaccines and biologics. We aspire to be the best healthcare company in the world and are dedicated to providing leading innovations and solutions for tomorrow. phenom’s Global Human Health (GHH) Division abides by a “patient first, profits later” ideology. Results-driven and ambitious, this team of individuals represents a functional balance between meeting company objectives and the needs of people around the world. The division is comprised of sales and marketing professionals who are passionate about their role in bringing phenom's prescription medicines, vaccines, and other medical products to our customers worldwide. Who are we looking for? A strong Professional for the position of the Hospital Specialist in Oncology who is responsible for promoting oncology brands within given accounts. On this position you would need to understand customers’ needs and have strong business acumen. It is important YOU are being equipped with excellent medical knowledge where you can transfer key medical data into customer / patient benefits. Expected Qualification of YOURS: - University degree preferably life science - 3+ years of experience working in a customer-facing role - Strong knowledge of customer/business strategy - Understanding of local healthcare and reimbursement systems - English language preferred Key competencies: - Customer & Market Insights: Ability to develop a deep understanding of customer needs, behaviours and goals, as well as market dynamics, competitor analysis and trends to improve overall business outcomes. - Customer Engagement: Ability to identify and appropriately build and maintain long-term, sustainable relationships with customers, external stakeholders and key influencers through a variety of relationship-building approaches. - Strategic Business Management: Ability to set strategic plans, consider execution trade-offs and continuously adjust approaches to maximize business performance and increase sales. - Excellent medical Product knowledge – excellent evidence-basedmedicine data knowledge. Ability to transfer medical data into customer / patients benefits Skills Required: - Driving license B - Advance Medical knowledge of oncology therapy area preferably or demonstrate high learning agility and interest in evidence-based medicine data and ability to transfer them into customer / patients benefits Leadership behaviours: - Drive result - Focus on customer and patient - Demonstrate ethics and integrity - High learning agility YOUR primary activities include but are not limited to: Account Understanding and Analysis - Understanding decision-making processes within the account, patient flow - Identifying Account Stakeholders and understanding their perspectives on phenom, our competitors - Completing a competitor analysis for the account - Obtaining an in-depth understanding of the account’s unmet and evolving needs Account Plan Development - Identifying short and long-term business opportunities. - Defining objectives for the account - Developing a plan for the Account that contains the account needs and perspectives as well as considers competitive and business challenges - Determining how to appropriately leverage cross-functional internal resources to maximize potential - Defining account metrics and a tracking plan Account Plan Implementation and Tracking - Developing and maintaining long-term engagements with customers/stakeholders within the Accounts that are responsible for treatment of the respective patients (all relevant HCPs) as well as product purchasing (hospital management, pharmacists) - Conducting product and value-based negotiation <p style="text-align:inherit"></p><p style="text-align:left"><b>English Job Description:</b></p><p style="text-align:inherit"></p><p style="text-align:inherit"></p><p></p><p><b>Search Firm Representatives Please Read Carefully </b><br>phenom & Co., Inc., Kenilworth, NJ, USA, also known as phenom phenom & phenom Corp., Kenilworth, NJ, USA, does not accept unsolicited assistance from search firms for employment opportunities. All CVs / resumes submitted by search firms to any employee at our company without a valid written search agreement in place for this position will be deemed the sole property of our company. No fee will be paid in the event a candidate is hired by our company as a result of an agency referral where no pre-existing agreement is in place. Where agency agreements are in place, introductions are position specific. Please, no phone calls or emails. </p><p style="text-align:inherit"></p><p style="text-align:left"><b>Employee Status: </b></p>Regular<p style="text-align:inherit"></p><p style="text-align:left"><b>Relocation:</b></p><p style="text-align:inherit"></p><p style="text-align:left"><b>VISA Sponsorship:</b></p><p style="text-align:inherit"></p><p style="text-align:left"><b><span>Travel Requirements:</span></b></p><p style="text-align:inherit"></p><p style="text-align:left"><b>Flexible Work Arrangements:</b></p><p style="text-align:inherit"></p><p style="text-align:left"><b>Shift:</b></p><p style="text-align:inherit"></p><p style="text-align:left"><b>Valid Driving License:</b></p><p style="text-align:inherit"></p><p style="text-align:left"><b>Hazardous Material(s):</b></p><p style="text-align:inherit"></p><p style="text-align:left"><b>Number of Openings: </b></p>1",
"street_name": "Bartol",
"city": "Brentwood",
"country": "Slovenia",
"continent": "Europe"
}
I observed that the issue is happening in the content value where I am having HTML code that contains double quotes. I have tried various solutions like json.loads(repr(data)) and html.escape(json.loads(data)) but still my error is not getting resolved.
I even tried to replace all the double quotes with empty string but then it threw an error saying too many values to unpack
I wanted to try this solution but unable to figure out how to use r in this case as my string is stored in a variable data.
Please suggest a workaround for this inorder to parse this json.
You have double quotes within the quotes of the string for the content. Use a """ for the content to use a string literal.
Or add an escape character for every quote mark as \" within the content string.
data = {
"name": "Shea",
"content": """<p style="text-align:left">Job Description</p><p style="text-align:inherit"></p>Have you heard about phenom? phenom is an innovative, global healthcare leader committed to improving health and well-being in 140 countries around the world. We continue to focus our research on conditions that affect millions of people around the world - diseases like Alzheimer's, Diabetes and Cancer - while further expanding our strengths in areas such as vaccines and biologics. We aspire to be the best healthcare company in the world and are dedicated to providing leading innovations and solutions for tomorrow. phenom’s Global Human Health (GHH) Division abides by a “patient first, profits later” ideology. Results-driven and ambitious, this team of individuals represents a functional balance between meeting company objectives and the needs of people around the world. The division is comprised of sales and marketing professionals who are passionate about their role in bringing phenom's prescription medicines, vaccines, and other medical products to our customers worldwide. Who are we looking for? A strong Professional for the position of the Hospital Specialist in Oncology who is responsible for promoting oncology brands within given accounts. On this position you would need to understand customers’ needs and have strong business acumen. It is important YOU are being equipped with excellent medical knowledge where you can transfer key medical data into customer / patient benefits. Expected Qualification of YOURS: - University degree preferably life science - 3+ years of experience working in a customer-facing role - Strong knowledge of customer/business strategy - Understanding of local healthcare and reimbursement systems - English language preferred Key competencies: - Customer & Market Insights: Ability to develop a deep understanding of customer needs, behaviours and goals, as well as market dynamics, competitor analysis and trends to improve overall business outcomes. - Customer Engagement: Ability to identify and appropriately build and maintain long-term, sustainable relationships with customers, external stakeholders and key influencers through a variety of relationship-building approaches. - Strategic Business Management: Ability to set strategic plans, consider execution trade-offs and continuously adjust approaches to maximize business performance and increase sales. - Excellent medical Product knowledge – excellent evidence-basedmedicine data knowledge. Ability to transfer medical data into customer / patients benefits Skills Required: - Driving license B - Advance Medical knowledge of oncology therapy area preferably or demonstrate high learning agility and interest in evidence-based medicine data and ability to transfer them into customer / patients benefits Leadership behaviours: - Drive result - Focus on customer and patient - Demonstrate ethics and integrity - High learning agility YOUR primary activities include but are not limited to: Account Understanding and Analysis - Understanding decision-making processes within the account, patient flow - Identifying Account Stakeholders and understanding their perspectives on phenom, our competitors - Completing a competitor analysis for the account - Obtaining an in-depth understanding of the account’s unmet and evolving needs Account Plan Development - Identifying short and long-term business opportunities. - Defining objectives for the account - Developing a plan for the Account that contains the account needs and perspectives as well as considers competitive and business challenges - Determining how to appropriately leverage cross-functional internal resources to maximize potential - Defining account metrics and a tracking plan Account Plan Implementation and Tracking - Developing and maintaining long-term engagements with customers/stakeholders within the Accounts that are responsible for treatment of the respective patients (all relevant HCPs) as well as product purchasing (hospital management, pharmacists) - Conducting product and value-based negotiation <p style="text-align:inherit"></p><p style="text-align:left"><b>English Job Description:</b></p><p style="text-align:inherit"></p><p style="text-align:inherit"></p><p></p><p><b>Search Firm Representatives Please Read Carefully </b><br>phenom & Co., Inc., Kenilworth, NJ, USA, also known as phenom phenom & phenom Corp., Kenilworth, NJ, USA, does not accept unsolicited assistance from search firms for employment opportunities. All CVs / resumes submitted by search firms to any employee at our company without a valid written search agreement in place for this position will be deemed the sole property of our company. No fee will be paid in the event a candidate is hired by our company as a result of an agency referral where no pre-existing agreement is in place. Where agency agreements are in place, introductions are position specific. Please, no phone calls or emails. </p><p style="text-align:inherit"></p><p style="text-align:left"><b>Employee Status: </b></p>Regular<p style="text-align:inherit"></p><p style="text-align:left"><b>Relocation:</b></p><p style="text-align:inherit"></p><p style="text-align:left"><b>VISA Sponsorship:</b></p><p style="text-align:inherit"></p><p style="text-align:left"><b><span>Travel Requirements:</span></b></p><p style="text-align:inherit"></p><p style="text-align:left"><b>Flexible Work Arrangements:</b></p><p style="text-align:inherit"></p><p style="text-align:left"><b>Shift:</b></p><p style="text-align:inherit"></p><p style="text-align:left"><b>Valid Driving License:</b></p><p style="text-align:inherit"></p><p style="text-align:left"><b>Hazardous Material(s):</b></p><p style="text-align:inherit"></p><p style="text-align:left"><b>Number of Openings: </b></p>1""",
"street_name": "Bartol",
"city": "Brentwood",
"country": "Slovenia",
"continent": "Europe"
}

JSON design for a web service - how to express attributes

On my team there seem to be two schools of thought in designing our restful interface. This is a series of endpoints that themselves are a product we sell, so the customer interface is JSON. The question is how to express attributes of an object. My thoughts are to have attributes as explicit fields for a resource like this:
{
"myThing": [
{
"color": "blue",
"number": "212"
}
]
}
With this approach, you can understand the object by knowing its attributes, and it feels more elegant as well as explicit. Documentation is straight-forward for business people who are prospective customers.
However, there is a school of thought from some of our developers that the following is the preferred way to express attributes - I believe because we have a lot of attributes and it's easier to manage, though there may be other benefits. However, I don't see the architecture of this information as being as user-friendly or explicit, and requires cross-referencing documentation more extensively.
{
"myThing": [
{
"attribute": "color",
"value": "blue"
},
{
"attribute": "number",
"value": "212"
}
]
}
My question - aside from feeling the first approach is more intuitive, finding best practices or a persuasive argument for one approach over another is difficult. Can anyone point me to some best practice JSON design that would favor one over the other? Thanks!
Oh this is simple to qualify in some basic terms, however both can work.The trick is deciding which one is going to be more successful? It helps to think of successful vs unsuccessful, the whole right or wrong argument is very much based on personal opinions and is such a massive waste of time. Never argue this is the right way to do it with tech guys you will have an easier time herding cats.
So lets break down the model into Pro And Cons.
Approach one is a traditional model:
Pro:
Objects and attributes are well defined.
Attributes can be validated as they are known i.e. this a date.
Easier to understand and document.
Cons:
Attributes are static and expanding the attribute set will require us to update a code and potentially introduce problems with clients as they are aware of the attributes.
Approach two which is known as the Entity Attribute Value design pattern(a BIG no no in relation database design by the way).
Pro:
Adding attributes to an object does not require that much changes. Also its unlikely to break clients etc.
Cons:
Documentation is harder.
Data validation is much harder, the colour attribute in your example should it be a string like Blue? Or a HEX like #ffae12? Maybe CMYK? Its get harder to validate and document these type of things.
Requires developers/customers to understand the mechanism to set and get values i.e. it break the normal programming paradigms.
How to choose which model to use?
The principle here is to know your data. If the objects have loads of different attributes and they are pretty dynamic i.e. you add or remove attributes a lot of the time then approach 2 is better. Social media type data for example is a good fit.
If however you are dealing with financial transaction data i.e. debits, credits etc you want the highest validation possible and besides making payments and receiving payments have not changed it's unlikely that you would introduce a third account number to a credit transaction object. Not saying it is impossible but highly unlikely.
As always keep an open mind and use the most appropriate tool for the job when you need it. Don't blindly follow a school of thought. Understand your tools, your data and then it's rather easy to innovate.

Encoding Json response data using jQuery

i am fetching json data using jQuery Ajax and displaying as HTML.
The problem what i got is the response data is not encoded it is coming with special characters..like...“flanking
how to get rid of this characters...the code what i wrote is
$.ajax({
type: "POST",
url: "data.js",
dataType: "json",
ContentType: "application/json;charset=UTF-32",
success: function(data) {
$.each(data.posts, function(i,data){
//var bioData = data.bio.replace(/™/, "");
var div_data ="<div class='fixed'><div class='left' style='background-image:url("+data.image+")'></div><div class='right'><div class='box'>"+data.name+""+data.title+""+bioData+"</div></div></div>";
$(div_data).appendTo("#imgs");
});
});
my data.js
{
"posts": [
{
"name": "<h1>Philippe Capart</h1>",
"title": "<h2>GM Rheumatology, Global Marketing</h2>",
"image": "images/Philippe_Capart.jpg",
"bio": "<p>Philippe joined Abbott in 2012 as Director, Rheumatoid Arthritis, Global Marketing. Strong of 13 years in the pharmaceutical industry, he built his experience in different roles such as sales, marketing and business development, including a Regional Commercial role for Latin America. Philippe earned a Master’s Degree of Science in Cellular and Molecular Biology and Physiology, with a specialization in Molecular and Cellular Genetics and a Diploma of Higher Specialized Studies in Business Management in the Healthcare Sector. Convinced of the high potential for HUMIRA in Rheumatology over the next 10 years, Philippe is looking forward to engaged discussion during the Forum.</p>"
},
{
"name": "<h1>Nicole Selenko-Gebauer</h1>",
"title": "<h2>Rheumatology Therapeutic Area Lead, Global Medical Affairs</h2>",
"image": "images/Nicole_Selenko_Gebauer.JPG",
"bio": "<p>Nicole heads the Global Medical Affairs group in Rheumatology US and ex-US. She leads the overall strategy and oversees the tactical contributions of the GMA team in Rheumatology. Nicole believes in a proactive “flanking partnership†making Medical Affairs a critical stakeholder for brand strategy globally as well as on the affiliate level. She closely interacts with Philippe Capart (GM Rheumatology) to assure that Medical and Commercial are fully complementary and aligned.</p>"
},
{
"name": "<h1>Antonio Della Croce</h1>",
"title": "<h2>SpA Director, Global Marketing</h2>",
"image": "images/Antonio_Andion.jpg",
"bio": "<p>Antonio joined the Global team in February. He spent the last 6 years in the Italian Immunology Team, navigating across all Humira indications, and the last 3 years as Rheumatology BUM and BTL. After many Forums seated among the audience, Antonio is excited in welcoming you all to join the Global Team in this unique event! </p>"
},
{
"name": "<h1>Ikechi Ogbonna</h1>",
"title": "<h2>Rheumatology Brand Management Coordination Lead</h2>",
"image": "images/Ikechi_Ogbonna.jpg",
"bio": "<p>Ikechi joined AbbVie this past May, coming from Pfizer HQ in New York, and brings a rich experience from US Sales, US Managed Markets, International Government Affairs, and International Strategic Planning & Operations. In his current role, he is responsible for successfully implementing the cross functional brand management for HUMIRA in Rheumatology by driving key deliverables such as the 5-year Strategic Brand Plan and rollout of Fosbury across the various functions. Ikechi is looking forward to experiencing his first Humira Forum and connecting with new colleagues!</p>"
},
{
"name": "<h1>Christopher Marks</h1>",
"title": "<h2>Director, Cross Indication Strategies, Global Marketing</h2>",
"image": "images/Christopher_Marks.jpg",
"bio": "<p>Chris was already a familiar face within Abbvie when he joined Global Marketing 15 months ago as he had been involved in many projects and assignments on HUMIRA whilst he was at the MSI Consultancy. In fact, this is his 4th Forum! Chris leads the Cross Indication team with responsibility for those aspects of marketing that impact all indications including branding, enhancements, benefit risk and Forum! Chris knows the remarkable impact that HUMIRA has on patients’ lives - his daughter has Crohn’s, but has been in drug-free remission for over 3 years after treatment with HUMIRA.</p>"
},
{
"name": "<h1>Matt Kowal</h1>",
"title": "<h2>Director, Business Intelligence, Immunology, Global Marketing</h2>",
"image": "images/Matt_Kowal.jpg",
"bio": "<p>Matt joined AbbVie one year ago – finally deciding to come over to the client side after a successful career as a commercial strategy consultant. He most recently was a Partner at bioStrategies Group in Chicago where he focused exclusively on the biopharma industry. Today, Matt leads the Global Business Intelligence team for Humira across all indications and works closely with Global, Area and Affiliate brand teams to help make a remarkable impact on patients’ lives.</p>"
},
{
"name": "<h1>Keith Fournier</h1>",
"title": "<h2>Global Regulatory Lead for RA and JIA</h2>",
"image": "images/Keith_Fournier.JPG",
"bio": "<p>Keith joined AbbVie in February 2013 and the RA team in June. In his role as Global Regulatory Lead he chairs the Global Regulatory Project Team – which is responsible for providing the regulatory strategy and functional plan in support of the brand. This is Keith’s first Forum and he isn’t quite sure what he’s gotten himself into.</p>"
},
{
"name": "<h1>Bao Hoang, Director</h1>",
"title": "<h2>Immunology, Global Market Access</h2>",
"image": "images/Hoang_Bao.jpg",
"bio": "<p>Bao joined Abbott/AbbVie in 2006 as a Clinical Executive supporting all marketed products in the US. Two years ago, he joined the global team in pricing, reimbursement, and market access, with responsibility for the immunology portfolio. Prior to joining AbbVie, Bao practiced as a pharmacist and worked as an ex-payer. This is Bao’s third Forum and he looks forward to another impactful year with HUMIRA.</p>"
},
{
"name": "<h1>Aileen Pangan</h1>",
"title": "<h2>Project Director, Immunology Clinical Development</h2>",
"image": "images/Aileen_Pangan.jpg",
"bio": "<p>Aileen Pangan is a board-certified rheumatologist who joined the Humira team in 2004 from a university-based academic practice. She was previously the Rheumatology lead for Medical Affairs, but over the past 5 years has been the senior medical director for the SpA clinical development team.</p>"
},
{
"name": "<h1>Antonio Andion</h1>",
"title": "<h2>SpA Senior Product Manager, Global Marketing</h2>",
"image": "images/Antonio_Andion.jpg",
"bio": "<p>Antonio joined the Global Team in 2012. He has a mixed experience with Pharma and Consumer companies where he focused in Direct to Consumer communications. He leads efforts related to Patient Initiatives like Don’t Turn Your Back On It; T2T Connect; Adherence. Latin America is his assigned region. He is looking forward to build with you new possibilities for SpA patients!</p>"
},
{
"name": "<h1>Julie Brown</h1>",
"title": "<h2>Senior Manager Business Intelligence, Humira RA</h2>",
"image": "images/Julie_Brown.jpg",
"bio": "<p>Julie joined the Humira team in April 2013 after working for a major pharmaceutical competitor on their Immunology products Gastroenterology and Dermatology indications. In her new role, she leads the Rheumatoid Arthritis Market Research for Humira. This is Julie’s first Forum and she is looking forward to networking with her global affiliates and learning how we can work together in new innovative ways.</p>"
},
{
"name": "<h1>Anabela Cardoso</h1>",
"title": "<h2>Medical Director, Global Medical Affairs</h2>",
"image": "images/Anabela_Cardoso.jpg",
"bio": "<p>Anabela, a Rheumatologist with clinical and research experience, joined the Global Medical Affairs team one year ago. Anabela’s prior roles included Medical Director in Portugal and in Europe South–WEC, where she drove for the implementation of FutureFit medical and multi-country Humira studies. In her current role, Anabela leads the medical affairs research in RA franchise and medical education in JIA. This is Anabela’s 4th Forum, and she’s looking forward to another great meeting with fruitful exchanges, learning and fun!</p>"
},
{
"name": "<h1>Alexander Peter Dorr</h1>",
"title": "<h2>Associate Scientific Director, Global Medical Affairs Immunology</h2>",
"image": "images/Alexander_Dirr.jpg",
"bio": "<p>Alex has been a member of the Global Medical Affairs team at AbbVie since October 2013. His main focus is on SpA. He has been responsible for the disease background and ABILITY-1 efficacy slides prepared for the HUMIRA in nr-axSpA FDA Advisory Committee in July 2013. At that time, the team had created a total of 2,000 slides. This is Alex’s second Forum. He is passionate about HUMIRA, the global and affiliate team members and is a strong believer in the new AbbVie culture.</p>"
},
{
"name": "<h1>Roland Eastmond</h1>",
"title": "<h2>RA Senior Product Manager, Global Marketing</h2>",
"image": "images/Roland_Eastmond.jpg",
"bio": "<p>Roland joined the Global team one year ago, after spending the last 12 years at the Canadian affiliate where his most recent position was a District Sales Manager for the Humira RA team. He has also been a part of the Humira franchise for the last 10 years where in addition to District Sales Manager, he held positions in Business Intelligence & Senior Product Manager for RA & SpA. In his Global role, he leads efforts related to the WEC area; the HCP messaging, CLM, TUI & the Overarching Brand strategy. Roland is looking forward to sharing the Global 2014 Vision & answering any questions from of his International colleagues!</p>"
},
{
"name": "<h1>Stefan Florentinus</h1>",
"title": "<h2>Associate Scientific Director, Global Medical Affairs</h2>",
"image": "images/Stefan_Florentinus.jpg",
"bio": "<p>Stefan joined the medical affairs team in 2011, after spending a year working on OPTIMA in the global marketing team. Previous to joining the global team, he worked as a medical advisor in the Dutch affiliate. In his current role, Stefan leads the medical education part of the RA franchise. This is Stefan’s 5th Forum and that’s why he’s looking so forward to it!</p>"
},
{
"name": "<h1>Antonin Folliasson</h1>",
"title": "<h2>Area Commercial Manager, Rheumatology, EEMEA</h2>",
"image": "images/Antonin_Folliasson.jpg",
"bio": "<p>Antonin joined Abbott France in 2009 as Rheumatology (SpA) Group Product Manager, HUMIRA, followed by a short term assignment with the Global Marketing Team also on SpA, where he focused in particular on competition and drove the 1st Global Axial SpA Scientific Event (Barcelona). In his current Area role, he’s really enjoying being part of a real team in an exciting environment, and he leads efforts to strengthen synergies and positive impact between affiliate teams and the markets. He’s passionately looking forward to another incredible week with the entire team!</p>"
},
{
"name": "<h1>Arijit Ganguli</h1>",
"title": "<h2>Associate Director, US-lead Rheumatology, Health Economics & Outcomes Research</h2>",
"image": "images/Arijit_Ganguli.jpg",
"bio": "<p>Arijit joined the HUMIRA HEOR team in December 2011, but has been with AbbVie since 2009. He is responsible for all HEOR efforts related to Rheumatoid Arthritis and Juvenile Idiopathic Arthritis indications of HUMIRA. Last year’s Forum was Arijit’s maiden Forum and he is very excited to experience it again. Arijit welcomes everyone to join him to relive it along with him.</p>"
},
{
"name": "<h1>Fabrice Gillas</h1>",
"title": "<h2>Associate Medical Director, GMA cross TA</h2>",
"image": "images/Fabrice_Gillas.jpg",
"bio": "<p>Fabrice joined Global Medical Affairs one year ago after two years spent as Associate Director within the Global Marketing team. During these last 3 years, he has developed a real expertise in medication adherence; he recently joined the cross TA GMA team to lead all Adherence research projects. This Forum in San Diego will be his 7th Forum and this is always for him a great moment to share with colleagues from all around the world!</p>"
},
{
"name": "<h1>Pamela Graves-Moore</h1>",
"title": "<h2>Director, Global Strategic Health Initiatives</h2>",
"image": "images/Pamela_Graves_Moore.jpg",
"bio": "<p>With more than two decades of experience in the industry, including lengthy stints in the highly charged political environments of Washington, DC, and Brussels, Pamela came to Abbott in 2006 to help to promote Western Europe & Canada government affairs. There, in Paris, she ultimately conceived, developed and led the implementation of more broadly based Strategic Health Initiatives (SHIs), which, since 2012, are a growing global approach to propel the company’s most important therapeutic areas. SHIs aim to strengthen standards of care through multi-stakeholder platforms that effect positive change in clinical and public policy. Now based in Chicago, Pamela collaborates with Global, Area and Affiliate colleagues in advancing a rich panoply of SHIs, including Fit for Work and Good to Grow, as well as platforms for Parkinson’s and HCV.</p>"
},
{
"name": "<h1>Donna Gray</h1>",
"title": "<h2>Director Patient Adherence, Global Marketing</h2>",
"image": "images/Donna_Gray.jpg",
"bio": "<p>Donna joined the Global Patient Adherence team in 2012. She started her career at AbbVie in 1999 with the US Renal Care Team and has held a variety of roles in sales and marketing. Donna is a Registered Nurse and spent the first half of her career caring for individuals with chronic diseases. In her current role, Donna has worked with cross functional teams across all of AbbVie’s brands to develop and launch Patient Journeys globally. She is excited about the progress made this year to better understand the needs of the patient and our journey toward development of a unique Patient Experience with our brand in 2014 and beyond!</p>"
},
{
"name": "<h1>Maja Hojnik</h1>",
"title": "<h2>Associate Medical Director, GMA Rheumatology</h2>",
"image": "images/Maja_Hojnik.jpg",
"bio": "<p>Maja joined the GMA Rheumatology Team a little less than a year ago, after spending 8 previous years in different positions in the company: Slovene Affiliate Medical Director; Associate Medical Director with International Medical Affairs; and most recently within Regional Medical Affairs supporting Humira in our former CEE Region. In GMA, Maja is dedicated to spondyloarthritis (SpA) and primarily responsible for research in this therapeutic area. This is Maja’s 6th Humira Forum, but for the first time in a presenter role. That’s why she is especially looking forward to meeting and discussing with colleagues all around the World.</p>"
},
{
"name": "<h1>Tim Jantsch</h1>",
"title": "<h2>Director, Marketing & Sales Force Excellence</h2>",
"image": "images/Timothy_Jantsch.jpg",
"bio": "<p>Tim joined the Global team 18 months ago after spending 22 years with another major pharmaceutical manufacturer in various U.S. and Global roles. In this new Global role at AbbVie, he leads efforts to partner with Global, Area and Affiliate cross-functional commercial teams to define processes and standards to support Marketing and Sales Force Excellence that creates the “AbbVie†way. His is looking forward to networking with colleagues from around the world and defining new ways of working!</p>"
},
{
"name": "<h1>Josh Sang Hyun Lee</h1>",
"title": "<h2>SpA Senior Product Manager, Global Marketing</h2>",
"image": "images/Josh_Lee.jpg",
"bio": "<p>Josh recently joined the SpA Global team in July after spending the last 5 years in AbbVie as Gastroenterology Commercial Manager on the Latin America Area team, and Dermatology Product Manager in Global Marketing. In his current role, he leads efforts related to the JAPAC area; the HCP messaging, CLM, CoRe, and the overarching brand strategy. This is Josh’s 4th Forum and he is so much looking forward to meeting old and new friends from around the world</p>"
},
{
"name": "<h1>Luis Alfonso Martin</h1>",
"title": "<h2>RA Product Manager, Global Marketing</h2>",
"image": "images/Luis_Martin.jpg",
"bio": "<p>Luis joined the Global RA team 2 years ago after roles in the Spanish affiliate, global business intelligence and commercial management in Latin America, this area being the one he currently covers for the RA Global Team. Luis has been championing the T2T Connect program, internal communication and the competitive knowledge platform CoRe. His primary focus and area of excitement for 2014 is working towards patients as a stakeholder.</p>"
},
{
"name": "<h1>David Murphy</h1>",
"title": "<h2>SpA Senior Product Manager, Global Marketing</h2>",
"image": "images/David_Murphy.jpg",
"bio": "<p>David joined the global marketing team just over 2 years ago after stints in the UK in RA marketing, Regional management and training teams. He now focuses on multi stakeholder initiatives including disease knowledge and payers. He is looking forward to this year’s forum and continuing the work to build SpA expertise.</p>"
},
{
"name": "<h1>Kelli Teno</h1>",
"title": "<h2>Senior Manager, Global Public Affairs</h2>",
"image": "images/Kelli_Teno.jpg",
"bio": "<p>Kelli joined the AbbVie global communications group in August, after spending 10 years supporting blue chip pharmaceutical companies in the agency role. She now leads global public affairs efforts for Humira RA, specifically the RA: Join the Fight campaign. She is thrilled to be a part of such a strong initiative and is looking forward to working together to ensure RA Join the Fight has a remarkable impact on patients across the globe.</p>"
},
{
"name": "<h1>Anna Tsouluhas</h1>",
"title": "<h2>Senior Strategic Lead, Cross Indication Strategies</h2>",
"image": "images/Anna_Tsouluhas.jpg",
"bio": "<p>A Humira veteran, Anna joined the Global team in April of 2011 after spending 14 years with the Canadian affiliate where she launched HUMIRA in several indications and was the business unit manager for rheumatology. In her current role, Anna leads efforts to manage some of the key challenges facing HUMIRA and to find new growth opportunities that are common across all therapeutic areas. This is Anna’s 10th Forum, having only missed 2 due to launch her other 2 babies</p>"
},
{
"name": "<h1>Chris White</h1>",
"title": "<h2>SpA Senior Product Manager, Global Marketing</h2>",
"image": "images/Chris_White.jpg",
"bio": "<p>It has been thirteen years since I joined AbbVie in Canada and eight on Humira. In that time, I worked on the launches of PsA and Psoriasis, lead a marketing team in IBD and then spent the past three years as a Sales Manager in Dermatology. Since June, I have been on the Global Marketing team and lead efforts in the EEMEA area while also focusing my global responsibilities on Fosbury/ Messaging and Differentiation in AS and ax-SpA, MRI training and keeping an on eye on the external environment. I look forward to re-connecting with all of you in San Diego.</p>"
},
{
"name": "<h1>Malte Wolff</h1>",
"title": "<h2>Senior Manager Global Market Access, Pricing, and Reimbursement</h2>",
"image": "images/Malte_Wolff.jpg",
"bio": "<p>Malte joined the global market access team in September after working for the German affiliate for the past 4 years. In Germany, he led the local HEOR team with focus on Rheumatology and supervised Health technology assessment projects. In his new global role, he is responsible for all Rheumatoid Arthritis related projects and strategies within Market Access. As this is Malte’s first Forum visit in his new role, he is excited to meet all new colleagues across all areas.</p>"
},
{
"name": "<h1>Chip Conley</h1>",
"title": "<h2>RA Senior Product Manager, Global Marketing</h2>",
"image": "images/Chip_Conley.jpg",
"bio": "<p>Chip joined the Global team a few months ago, after spending 2½ years as a SpA Product Manager on the US team, where he focused in particular on digital projects. In his new Global role, he leads efforts related to the JAPAC area; the Treat-to-Target program; as well as Payer issues. This is Chip’s first Forum, and he’s looking forward to meeting and learning from colleagues around the world!</p>"
}
]
}
pls help me...
Try this :
(ive changed a bit the display for you to be able to see )
http://jsbin.com/IcapedIw/15/edit
$.each(data.posts, function(i,data){
var div_data ="<div class='fixed'><div class='left' style='background-image:url("+data.image+")'></div><div class='right'><div class='box'>"+data.name+""+data.bio.replace(/[^a-zA-Z0-9 ]+/g, "")+""+1+"</div></div></div>";
$(div_data).appendTo("#imgs");
});
it's a known problem : (see here)
String.prototype.cleanup = function() {
return this.replace(/…/g, '…')
.replace(/–/g, '–')
.replace(/’/g, '’')
.replace(/“/g, '“')
.replace(/â€/g, '”');
}
Since the ajax call is expectng a json response. I would suggest using getJson
$.getJSON( "data.js", function( data ) {
....
});
Also make sure the content-type is properly set at UTF-8 in the response header.
application/json;charset=UTF-8
try this
$.ajax({
type: "POST",
url: "data.js",
dataType: "json",
ContentType: "application/json;charset=UTF-32",
success: function(data) {
$.each(data.posts, function(i,data){
var decoded = $("<div/>").html(data.title).text();
//var bioData = data.bio.replace(/™/, "");
var div_data ="<div class='fixed'>"+ decoded+"</div>";
$(div_data).appendTo("#imgs");
});
});
or use htmlEncode
$.ajax({
type: "POST",
url: "data.js",
dataType: "json",
ContentType: "application/json;charset=UTF-32",
success: function(data) {
$.each(data.posts, function(i,data){
var div_data ="<div class='fixed'>"+ htmlEncode(data.title)+"</div>";
$(div_data).appendTo("#imgs");
});
});

Exactly what is a "third party"? (And who are the first and second parties?)

I know precisely what a "third-party library" is, so I assume that the "third-party" in this case simply is an arbitrary person or company other than the developer?
Does it have to do with "first person", "second person", and "third person" grammatical points of view?
The fact that there is a "third party" suggests that there is a "first party" and a "second party" as well. Are those terms well defined?
(I'm not a native english speaker.)
If you are developing software for a client, then there is a contract between you/your company, and the client/their company. These are the two parties to the contract. Anyone else, not bound by the contract, is a third party. It's used wherever a contract exists between two parties to mean anyone not bound by the contract.
There is no fixed meaning to which of the two parties is 'first' and which 'second', usually you will think you're the first party, and the client the second, whereas the client will think they are the first party and you the second, in a similar fashion to first, second and third person I/he/they.
These terms are well defined in English when talking about grammar (English grammar or another language's).
First person corresponds to the
pronouns "I" and "we"; "me" and "us" (so a book written in the first person is a story told by the central character - "I did this" as opposed to "Smith did this").
Second person corresponds to the
pronoun "you".
Third person
corresponds to the pronouns" he",
"she", "it" and "they"; "him", "her"
and "them".
So "third party" just means not you or me, but them.
1st party = I
2nd party = you
3rd party = he/she (i.e. someone external to the conversation)
Let's take Iphone for example.
Apple by its hardware and software are first party.
End user like me and you are the second party .
the third party is the person who enter this relation like an app developer
that effect me and apple .
Note: the first and second party can be swapped .
First party: developers
Second party: end users (I think)
Third party: Libraries etc provided
by someone else other than the
developers. PDFSharp will be
considered 3rd party.
I don't think first and second party are used that much, if at all, in programming. If someone started talking about first and second parties at work, I would wonder what they meant. However, "third party" is much more common and familiar.
"Third party software" is a common term. I've never heard of "first party software", or "second party software".
PS: I'm a native English speaker in the UK.
It is related to the ISO/IEC 17024 Conformity Assessment.
1st party:
Is performed by the person or organization that provides the object
2nd party:
Is performed by a person or organization that has a user interest in the object
3rd party:
Is performed by a person or body that is independent of the person or organization that provides the object, and of the user interests in that object
Conclusion:
First party is the person self-attesting that he or she is competent.
Second party is someone related to the person (trainer/instructor/employer) declaring that the person is competent.
Third party would require an entirely independent party to declare the person competent.
My Source: http://www.proftesting.com/blog/2016/09/28/first-second-and-third-party/
It's a term that's often used in Windows-centric development: the first and second parties are me (or you), and Microsoft; and the third party is anyone else:
Sometimes it means the customer or end user (e.g. "if we get a 'redistributable' from Microsoft, that means that we can redistribute it to 'third parties'")
More often, it means a non-Microsoft vendor of programming tools or libraries, which I'm using (for example, "NUnit and Reflector are both example of 'third-party' tools").
Oxford Dictionnary
third party
noun
a person or group besides the two primarily involved in a situation, esp. a dispute.
• a political party organized as an alternative to the major parties in a two-party system.
adjective [attrib.]
of or relating to a person or group besides the two primarily involved in a situation : third-party suppliers.
I think of it as from where the code comes from, so when it comes to libraries and development tools I'd say that the first and second parties are the developer and the producer of the development tool. So as a .Net developer the parties are me and Microsoft, since I write code using Microsofts framework and controls and I might also then user third party code/controls.
1st party is Developer, 2nd party is software user
It's context driven though. This situation also applies.
From a development perspective:
I'm developing an app for my company for internal use (first Party)
Most of the "assets" that I'm using for the app are from Microsoft (second party)
But I'm also using this database library from this other company (third party)
First and Second remain interchangeable depending on perspective. The customer isn't even on this chart but that's partially because that's an entirely different relationship with it's own rules.
Be careful when talking about legal contracts because while they do often use the term third party as we're discussing, there is also the practice of identifying pe4ople as"the party of the first part A, the party of the second part B, the party of the Third part C, ... , the party of the nth part ...
which serves only to list a bunch of people without specifying a relationship. And it can also be the parties of the first part a,b,c and the parties of the second part x,y,z, ...
The first party is the developer of the website, program, or game. Like Microsoft or Google.
The second party is the client, the viewer of the developer's work.
The third party is an external source of media.

Another word for Business Logic?

What is another good word for Business Logic?
Software might also run in civil service offices or for hobbyists, so I never felt that comfortable with using that term in certain modules and documentation.
App Logic is too specific as well, because logic modules might also be used in services.
You might be able to get away with Domain Logic?
Orchestration Layer or just Orchestration.
How about Core logic? It's exactly what you are referring to with business logic anyway - the core logic of your app
Workflow / Bussiness workflow / Domain modeling / Bussiness Process
Good question! I want to give 2, admittedly quite opinionated, answers.
The word business isn't actually that bad, if you think about the original meaning. Business comes from the work busy. It doesn't actually have anything to do economics, finance, professions or money. This is evident form expressions like "mind your own business", "let's get down to business" or "funny business". So "business" is simply the thing which keeps us, or an application, "busy". However, I do agree that the way the word is used currently often associated with money, so I understand why you would want another word.
So to offer an alternative, I like to use "controller". This comes from the "middle layer" of a model-view-cotroller artchitecture. MVC is designed for GUI applications, but IMO the concept can be extended also into other areas and types of applications.
Let's get wild:
Features
API
Functionality
BL
Modules
Core
Actions
Commands
all of them are way too broad or not equivalent to "business logic", but you still might want to name a module like this :)