Sunday, 3 March 2019

Does Modern art HATE religion

At the mercy of the elements (Bill Viola) (Credit: Bill Viola)



Does modern art hate religion?


For centuries, the church was a powerful force that shaped art – but this has changed. Alastair Sooke explores what the future holds.
It is often said that art galleries today are the new cathedrals – places that people visit to replenish the spirit in a secular age. But for many centuries, cathedrals functioned in the manner of art galleries. Walk into any cathedral in Western Europe, and you will discover countless examples of beautiful art works, from intricate wooden carvings and metalwork to moving marble sculptures and exquisite painted altarpieces.
“After Classical antiquity, Christianity became the predominant power shaping European culture,” explains Jennifer Sliwka, curator of art and religion at the National Gallery in London. “After Theodosius I made Christianity the official state church of the Roman Empire in 380, works commissioned for any spiritual, civic or political purpose were meant to reflect this new belief system.” As a result, Sliwka points out, “Roughly one third of the paintings in the National Gallery’s collection of Western European art are of religious subjects – and nearly all of these are Christian.”
In galleries of modern art, however, the proportion of works treating Christian subjects is much smaller. After centuries of artists actively soliciting the patronage of the church, religion and art are no longer such natural bedfellows. Indeed, in the wake of modernism, it sometimes feels as though art and religion are now strangers to one another, or even downright hostile. “When visiting a contemporary gallery or art fair, I rarely expect to see works that treat religious subjects,” says Sliwka.
Shock doctrines
When contemporary artists tackle Christian subjects today, they often do so in an iconoclastic, ironic, disrespectful or subversive fashion. Think of the Italian artist Maurizio Cattelan’s satirical sculpture La Nona Ora (1999), in which Pope John Paul II lies on a red carpet, crushed by a meteorite that has just plummeted from the heavens; or Piss Christ (1987), a photograph by the American artist Andres Serrano, in which a small plastic crucifix is submerged in a glass of urine.
When Chris Ofili’s painting The Holy Virgin Mary (1996) was exhibited in New York in 1999, the city’s then-mayor, Rudolph Giuliani, took exception to the artist’s vision of a black Madonna with a bare breast moulded from elephant dung: “The idea of having so-called works of art in which people are throwing elephant dung at a picture of the Virgin Mary is sick,” Giuliani said.
Yet contemporary artists who wish to make less critical art about Christianity are not the endangered species you might think. And in some cases the church is even reprising its role as an important patron of the arts. Last week, for instance, St Paul’s Cathedral in London unveiled Martyrs, a new video installation by the American artist Bill Viola.
It isn’t the first time that St Paul’s has embraced contemporary art: in 1983, the cathedral commissioned the sculptor Henry Moore, whose travertine-marble Mother and Child now sits in the north quire aisle. But Martyrs is the first permanent moving-image artwork ever to be installed in a British cathedral or church. “This is a big moment in the history of religious art,” the art critic Martin Gayford wrote in The Daily Telegraph. “This is the first time that moving images will take a prominent place in one of the great cathedrals of Christendom.”
Positioned behind the cathedral’s High Altar in the south quire aisle, Martyrs is a multi-screen “video altarpiece” in which four different individuals are subjected to life-threatening trials, as the elements of earth, wind, fire and water rage around them. One man remains seated as a conflagration threatens to consume him. Another is hoisted aloft on an upside-down crucifix before a torrent of water overwhelms him. A shackled woman twists and turns, buffeted by a tornado, while a fourth person arises from a mound of earth.
“It is a compassionate work,” says Mark Oakley, the Canon Chancellor of St Paul’s who oversaw the Viola project since its inception 11 years ago. “Those people are alone with their faith and their conscience, and they are dying for something that they believe is worth dying for. And inevitably that question is thrown back onto us: we’re really faced with ourselves here. There is a dignity and a beauty and a peace about what’s happening to them too – something is being transformed. I believe that Martyrs is enigmatic but very profound. The rumour of God is alive in it.”
In good faith
Viola is not the only contemporary artist in recent years who has contributed to the time-honoured tradition of religious art without resorting to satire or mockery. The British artist Mark Wallinger, for example, has made several artworks that draw upon the machinery of religion and explore questions of faith. These include Ecce Homo (1999), a life-size, white-resin cast of a young man representing Christ that was placed temporarily on top of the Fourth Plinth in Trafalgar Square.
“There are several contemporary artists working today that treat religious subjects more directly without undermining them,” says Sliwka. “Ana Maria Pacheco, for instance, often chooses religious subjects such as the beheading of the Baptist to refer back to a familiar Biblical story but also to use it as a political example of one who speaks ‘truth to power’ and to draw attention to the troubled political history of her native Brazil, referring back to violence generated by colonialism and African slavery.”
Moreover, last year, the Holy See exhibited at the Venice Biennale for the first time – though, as Sliwka points out, “The works chosen for their pavilion deliberately steered clear of work that engaged directly with Catholic themes or imagery.” She continues: “Often contemporary works that explore spiritual themes more broadly – like the video installations of Bill Viola – are more successful with audiences today who tend to represent a variety of beliefs, backgrounds and lifestyles.”
Perhaps surprisingly, then, given that we live in an era that is becoming ever more secular, the great tradition of Christian art appears to be alive and well. “Cathedrals in particular have worked quite hard in recent years to encourage contemporary artists to bring their work into the cathedral,” says Oakley. “We’re all looking for a resonant, universal language with which we can explore questions that you might call spiritual. And for many, the religious vocabulary is no more, it isn’t resonant, so we need to find shared forms that we can utilise to start the conversation – and art is one of them. The heartland of religion is about the laboratory of the spirit: it’s about spiritual growth and development and transformations. So I’m not at all surprised that when artists engage with people of faith, they find that there’s a lot of overlap in terms of shared interests and concerns. Contemporary artists have an enormous amount to offer to the church – and vice versa.”
Alastair Sooke is art critic of The Daily Telegraph.
If you would like to comment on this story or anything else you have seen on BBC Culture, head over to our Facebook page or message us on Twitter.

Sunday, 17 February 2019

STORING DATA WITH PHP — FLAT FILE OR DATABASE?

STORING DATA WITH PHP — FLAT FILE OR DATABASE?

Many applications require the long-term storage of information. In PHP scripts, you can make information available within sessions — periods of time that users spend at your Web site — by using methods such as PHP session functions and by submitting forms. However, eventually you need to store information for use tomorrow or next week. You can store it in a cookie that you set to last after the session is ended, but the information is vulnerable. It’s not under your control. The user can delete or change the information at any time or can refuse to accept the cookie. To be available and stable, the information needs to be stored somewhere secure, where no one can access or tamper with it. The information needs to be stored on the server.
ADVERTISING
Information can be stored on the server in flat files or in databases. Flat files are text files stored in the computer file system. Humans can read flat files by using the operating system commands that display files, such as cat in Linux and Unix. You can access and edit these files by using any text file editor, such as Notepad or vi. The information in the flat file is stored as strings, and the PHP script that retrieves the data needs to know how the data is stored. For example, to retrieve a customer name from a file, the PHP script needs to know that the customer name is stored in the first 20 characters of every line.
Using a database for data storage requires you to install and learn to use database software, such as MySQL or Oracle. The data is stored in files created by the database software and can only be accessed by the database software. Databases can store very complex information that you can retrieve easily. You don’t need to know how the data is stored, just how to interact with the database software. For example, to retrieve a customer name, the PHP script needs to know only how to tell the database software that it wants the customer name, using a standard communication language called SQL. The database software handles the storage and delivers the data, without the script needing to know exactly where or how the customer name is stored.
Flat files have some advantages over databases:
  • Available and versatile: You can create and save data in any operating system’s file system. You don’t need to install any extra software. Additionally, text data stored in flat files can be read by a variety of software programs, such as word processors or spreadsheets.
  • Easy to use: You don’t need to do any extra preparation, such as install database software, design a database, create a database, and so on. Just create the file and store the data with statements in your PHP script.
  • Smaller: Flat files store data by using less disk space than databases.
A flat file is quick and easy and takes less space than a database. It is ideal for storing small amounts of information quickly, such as a simple list or small piece of information. Flat files are particularly useful for making information available to other software, such as an editing program or a spreadsheet. Flat files can be looked at by anyone with access to the computer directory where they are stored, so they are useful when information needs to be made available to other people.
Databases have some advantages as well:
  • Security: A database provides a security layer of its own, in addition to the security provided by the operating system. A database protects the data from outside intrusion better than a flat file.
  • Accessibility of data: You can store data in a database by using a very complex data structure, specifying data types and relationships among the data. The organization of the data makes it easy to search the data and retrieve what you need.
  • Ability to handle multiple users: When many users store or access data in a single file, such as a file containing names and addresses, a database ensures that users take their turn with the file to avoid overwriting each other’s data.
Databases require more start-up effort and use more space than a flat file, but are much more suitable for handling complex information. The database handles the internal organization of the data, making data retrieval much simpler. A database provides more security, making it more suitable for sensitive, private information. Databases can more easily and efficiently handle high traffic when many users may try to access the data almost simultaneously.
In PHP 5, SQLite, an extension for data storage that combines the main advantages of flat files and databases, is included by default. SQLite stores the data in a flat file, so you don’t need to install database software, but you store data using SQL, the standard database communication language. SQLite is a quick option for storing and retrieving small amounts of data in a flat file using SQL. SQLite is not a good option for really huge, complicated databases.

Forgotten password cheatsheet

URL SOURCE : https://github.com/OWASP/CheatSheetSeries/blob/master/cheatsheets/Forgot_Password_Cheat_Sheet.md


Introduction

This article provides a simple model to follow when implementing a forgot password web application feature.

The Problem

There is no industry standard for implementing a Forgot Password feature. The result is that you see applications forcing users to jump through myriad hoops involving emails, special URLs, temporary passwords, personal security questions, and so on. In the end you have to reset it to a new value.

Steps

Step 1) Gather Identity Data or Security Questions

The first page of a secure Forgot Password feature asks the user for multiple pieces of hard data that should have been previously collected (generally when the user first registers).
Steps for this are detailed in the identity section the Choosing and Using Security Questions Cheat Sheet here.
At a minimum, you should have collected some data that will allow you to send the password reset information to some out-of-band side-channel, such as a (possibly different) email address or an SMS text number, etc. to be used in Step 3.

Step 2) Verify Security Questions

After the form on Step 1 is submitted, the application verifies that each piece of data is correct for the given username. If anything is incorrect, or if the username is not recognized, the second page displays a generic error message such as Sorry, invalid data.
If all submitted data is correct, Step 2 should display at least two of the user’s pre-established personal security questions, along with input fields for the answers. It’s important that the answer fields are part of a single HTML form.
Do not provide a drop-down list for the user to select the questions he wants to answer. Avoid sending the username as a parameter (hidden or otherwise) when the form on this page is submitted. The username should be stored in the server-side session where it can be retrieved as needed.
Because users' security questions / answers generally contains much less entropy than a well-chosen password (how many likely answers are there to the typical What's your favorite sports team? or In what city where you born? security questions anyway?), make sure you limit the number of guesses attempted and if some threshold is exceeded for that user (say 3 to 5), lock out the user's account for some reasonable duration (say at least 5 minutes) and then challenge the user with some form of challenge token per standard multi-factor workflow; see #3, below) to mitigate attempts by hackers to guess the questions and reset the user's password. It is not unreasonable to think that a user's email account may have already been compromised, so tokens that do not involve email, such as SMS or a mobile soft-token, are best.

Step 3) Send a Token Over a Side-Channel

After step 2, lock out the user's account immediately. Then SMS or utilize some other multi-factor token challenge with a randomly-generated code having 8 or more characters.
This introduces an out-of-band communication channel and adds defense-in-depth as it is another barrier for a hacker to overcome. If the bad guy has somehow managed to successfully get past steps 1 and 2, he is unlikely to have compromised the side-channel. It is also a good idea to have the random code which your system generates to only have a limited validity period, say no more than 20 minutes or so. That way if the user doesn't get around to checking their email and their email account is later compromised, the random token used to reset the password would no longer be valid if the user never reset their password and the reset password token was discovered by an attacker.
Of course, by all means, once a user's password has been reset, the randomly-generated token should no longer be valid.

Step 4) Allow user to change password in the existing session

Step 4 requires input of the code sent in step 3 in the existing session where the challenge questions were answered in step 2, and allows the user to reset his password. Display a simple HTML form with one input field for the code, one for the new password, and one to confirm the new password. Verify the correct code is provided and be sure to enforce all password complexity requirements that exist in other areas of the application.
As before, avoid sending the username as a parameter when the form is submitted. Finally, it's critical to have a check to prevent a user from accessing this last step without first completing steps 1 and 2 correctly. Otherwise, a forced browsingattack may be possible. Ensure the user changes their password and does not simply surf to another page in the application.
The reset must be performed before any other operations can be performed by the user.

Step 5) Logging

It is important to keep audit records when password change requests were submitted. This includes whether or not security questions were answered, when reset messages were sent to users and when users utilize them. It is especially important to log failed attempts to answer security questions and failed attempted use of expired tokens. This data can be used to detect abuse and malicious behavior. Data such as time, IP address, and browser information can be used to spot trends of suspicious use.

Other Considerations

  • Whenever a successful password reset occurs, all other sessions should be invalidated. Note the current session is already authenticated and does not require a login prompt.
  • Strength of questions used for reset should vary based on the nature of the credential. Administrator credentials should have a higher requirement.
  • The ideal implementation should rotate the questions asked in order to avoid automation.

Authors and Primary Editors

Dave Ferguson - gmdavef@gmail.com
Jim Manico - jim@owasp.org
Kevin Wall - kevin.w.wall@gmail.com
James McGovern - james.mcgovern@hp.com
Wesley Philip - wphilip@ca.ibm.com

Saturday, 16 February 2019

Marketing in the #FakeNews Era: New Rules for a New Reality of Tribalism, Activism and Loss of Trust.

 Marketing in the #FakeNews Era: New Rules for a New Reality of Tribalism, Activism and Loss of Trust. 

Typically, executives believe they face a binary choice: put their head in the sand, or go way out on a limb and declare a highly controversial point of view destined to offend half the country. There are in fact a range of choices for brands that I define in what I call the Brand Risk-Relevance Curve. This diagram represents a series of postures that incur increased likelihood of of resonating with consumers who agree the brand’s opinion and also increased risk of blowback from those who disagree.
Brand Risk-Relevance CurvePETER HORST
The most conservative posture is what I call Values. While there is no single correct choice for all brands, every organization should at least embrace this step. In this mode, the brand chooses not to publicly articulate a point of view, but does go through the introspective process of defining its values and beliefs and instilling them in the organization. Having done this, the company can act with a common moral compass and be ready to act swiftly if events beyond their control force them to take a public stand. Organizations often retreat to the head in the sand posture, whereby they don't even define their own values and just hope this all goes away. This leaves the brand vulnerable to being caught unprepared when crisis hits and risks enduring reputational damage--just ask the NFL.
A more proactive choice is Purpose. We are by now very familiar with the notion of brands embracing a higher purpose, such as Dove and real beauty, or Always and confidence in young girls. Purpose tends to be positive, laudable and generally uncontroversial. Consumers are unlikely to storm the gates of Unilever with pitchforks on behalf of Fake Beauty.
A bolder step is what I call Issues, where a brand wades into a topic that is inherently more tension-filled, more current and more likely to generate strong feelings—but without taking one side or another on the issue. Examples include Heineken addressing society’s lack of civil dialogue or Frito-Lay focusing on suicide in LGBTQ teens.
The most provocative and risk-filled posture is Position, where a brand stakes out a clear argument For or Against with the certainty that many will strongly oppose their point of view. This is IBM supporting the “Dreamers” during the DACA debate and McKinsey exiting its contract with ICE in protest of the Trump administration’s immigration policies.
When it comes to assessing the wisdom or folly of Gillette’s ad, let’s begin by asking whether they had brand permission to engage in the issue. As a man’s product and with a long-standing tagline of “The best a man can get,” I believe there is sufficient relevance for them to acknowledge and addressing issues of masculine behavior.
The question comes down to how they address the issues—and this where the Risk-Relevance curve is helpful. I would argue that Gillette adopted a Position when it created the boogeyman of smirking, enabling, boorish men to set up their call for better behavior. With the foil of the offending man, Gillette declared themselves opposed to his transgressions. It was this portrait of the villain that in fact generated the furious backlash—and thereby caused so many to miss the valid and valuable point the brand was trying to make. Even the most energetic detractors didn’t disagree with the overall desire for positive male role models.
Contrast Gillette’s choice with Always opting for an Issues posture in its stirring and much-praised campaign that highlighted the way in which young girls lose confidence in their teens. Always focused on the problem without dramatizing a villain to oppose—there were no demoralizing teachers or disheartening parents to root against. I don’t believe this brought a loss of clarity or visceral power, but rather focused on the positive aspects of their message and eliminated elements that could distract from the big point by inviting peripheral debate.
Gillette might have achieved all of their desired impact without the negative blowback by centering on Position. This is not an argument for “de-fanging” Gillette’s thesis or watering down their intent. Rather, I believe Gillette’s example illustrates the potential impacts that come with the nuanced choices brands must make when touching on the big issues of the day. Nike’s choice of Position in the Kaepernick ad was integral to the brand equity it was seeking to stoke with its urban youth target. IBM’s choice of Position in the DACA debate was definitionally central. But Heineken made a powerful call for civil dialogue with an Issues posture and I believe Gillette would have been well-served to do the same.
Peter Horst is a Fortune 500 CMO and Founder of CMO Inc., a marketing consultancy. 
SourceURL:https://www.forbes.com/sites/peterhorst/2019/01/18/gillettes-controversial-toxic-masculinity-ad-and-the-opportunity-it-missed/#62a3c12a5506

Living the 10 Commandments

Source URL:https://lifehopeandtruth.com/bible/10-commandments/the-ten-commandments/living-the-10-commandments/


Living the 10 Commandments—or Just Obeying Them?



God gave us laws to live by—especially the 10 Commandments. But have you thought about the values they represent? Are you living the values behind the laws?



Why do we have laws? Instead of all the speed limit laws, why not just say, “Drive safely”? Would that be enough? Would it work?
From a religious perspective, why do we need the 10 Commandments? Why not just summarize them by saying, “Love God and love your neighbor”?
Summaries can be appealing, yet in society as well as some religions, the making (or changing) of laws seems to have no end. Why?

Spiritual growth

To understand biblical law, we must begin by understanding the concept of spiritual education and growth. Throughout the Bible, we are admonished to grow spiritually. Peter concludes his second epistle with this challenge: “But grow in the grace and knowledge of our Lord and Savior Jesus Christ” (2 Peter 3:18).
Human attitudes toward God’s law run the gamut. One way to view spiritual growth is as a four-stage process that shows one’s change in approach to God’s law:
  1. Anarchy and lawlessness: For many, this is the starting point, where there is little understanding of God’s laws or desire to obey them.
  2. Blind obedience: This is the point where we come to realize that God has laws that should be obeyed, but we lack understanding of why and how to fully fulfill the law.
  3. Informed compliance: This is the stage where we come to a basic understanding of the law and commit ourselves to obeying. (This is often the point where we seek baptism.)
  4. Value-based living: This is the final and lifelong growth stage where we live not only the letter of the law, but the values behind the law.
Perhaps the greatest difficulty is making the transition from stage three to stage four. Jesus made this clear when He admonished the scribes and Pharisees: “Woe to you, scribes and Pharisees, hypocrites! For you pay tithe of mint and anise and cummin, and have neglected the weightier matters of the law: justice and mercy and faith. These you ought to have done, without leaving the others undone” (Matthew 23:23).
Here Jesus drew a line between informed compliance (just obeying the letter of the law) and value-based living (additionally, living the values of the law). Many never make it to this fourth stage, which may partly explain why Jesus said, “For many are called, but few are chosen” (Matthew 22:14).

What is the role of law in spiritual growth?

From a religious perspective, the reason for God’s law is clear. The law shows what is right and wrong in God’s sight. It shows what produces good results and what leads to death. God’s law defines sin (1 John 3:4).
And there is another reason for law. Meditating on the letter of the law can help us learn the underlying values—the spirit of the law. The law represents the desires and values of God.
When I think of the relationship between laws and values, I am reminded of a summer job I had when I was in college. I worked at a large shipyard known for building all types of vessels, from atomic submarines to aircraft carriers.
To ensure quality work, there were myriad work rules, standards and procedures (the laws). But the values were expressed very eloquently by an inscription on a statue of the founder, located at the main entrance to the yard where the majority of the workers passed daily. The inscription read: “We will build good ships, at a profit if we can, at a loss if we must, but we will build good ships.”

Was there a flaw in the law—or the people?

God's 10 Commandments Still Relevant Today
The problem is that laws cannot cover every possibility. Consider the U.S. income tax laws. According to an article in the April 15, 2015, Washington Examiner, the tax code has grown from around 26,000 pages in 1984 to over 74,000 now. Why this incredible growth? It is, in part, an attempt to cover every possible loophole or situation that might occur.
And that is the problem with laws—they cannot be written to cover every situation. Take something as simple as the speed limit law of 70 miles per hour on many open highways. While this is perhaps a safe speed in clear weather, what about in rainy weather? What about during a snowstorm? Under such conditions the value of “drive safely” overrides any speed limit.
Notice how God recognizes this problem. “For if the first covenant had been faultless, then no place would have been sought for a second. Because finding fault with them, He says: ‘Behold, the days are coming, says the LORD, when I will make a new covenant with the house of Israel and with the house of Judah’” (Hebrews 8:7-8, emphasis added throughout).
The fault in the law was not the law itself but the people, who did not see the law as a statement of values but, rather, simply as a set of rules. They didn’t obey them, and they certainly didn’t live their spiritual values.
Verse 10 shows God’s remedy: “For this is the covenant that I will make with the house of Israel after those days, says the LORD: I will put My laws in their mind and write them on their hearts; and I will be their God, and they shall be My people.”
A gift from God—the gift of the Holy Spirit—is needed to understand the values of the law.

The values expressed by the 10 Commandments

The value of love defines all the commandments. But what about each specific commandment? Are there specific values behind each?Have you ever examined the values expressed by the 10 Commandments? Jesus expressed the overall values clearly when He was asked about which commandment is the greatest. Christ said, “‘You shall love the LORD your God with all your heart, with all your soul, and with all your mind.’ This is the first and great commandment. And the second is like it: ‘You shall love your neighbor as yourself’” (Matthew 22:37-39).
The value of love defines all the commandments. But what about each specific commandment? Are there specific values behind each? Here are some of the values I associate with each commandment, and you can likely come up with different ones and perhaps many more. Some of these are obvious, but others are less so:
1. Do not worship other gods. No one but God is worthy of our worship. When God was freeing the ancient Israelites from slavery, six times He sent Moses with this message to Pharaoh: “Let My people go, that they may serve Me” (Exodus 7:168:1, 209:110:3). Also, at the end of the temptation of Jesus by Satan: “Then Jesus said to him, ‘Away with you, Satan! For it is written, “You shall worship the LORD your God, and Him only you shall serve”’” (Matthew 4:10). Jesus Christ came to serve, and He wants us to learn to serve too (Matthew 20:26-28). A key value I see underlying the First Commandment is service to God.
2. Do not worship idols. No physical image can capture the greatness of the Almighty. Paul expressed a value behind this commandment. “Professing to be wise, they became fools, and changed the glory of the incorruptible God into an image made like corruptible man—and birds and four-footed animals and creeping things” (Romans 1:22-23). I see God telling us don’t be foolish.
3. Don’t take God’s name in vain. This commandment teaches respect for God.
4. Remember the Sabbath and keep it holy. “Surely My Sabbaths you shall keep, for it is a sign between Me and you throughout your generations, that you may know that I am the LORD who sanctifies you” (Exodus 31:13). A value here is sanctification—to be set apart for sacred duty. Do you know what duty God is calling you for?
5. Honor parents. This commandment directly expresses a value: honor. In a broader sense it suggests the value of respect for others, especially family.
6. Don’t murder. Every human life has value. To me, considering Jesus’ commentary in Matthew 5:21-26, this commandment teaches reconciliation and faith in God.
7. Don’t commit adultery. Faithfulness.
8. Don’t steal. This respect for the property of others demonstrates God’s value of justice.
9. Don’t lie. Truth and honesty.
10. Don’t covet. By being content with what we have and not desiring what belongs to others, we learn the values of generosity and unselfishness.

What did Jesus teach?

Just as the Word of God (Jesus Christ before His human birth) appeared on Mount Sinai to give the 10 Commandments to His called-out people, so did Jesus speak from a mountain to His called-out disciples at the beginning of His ministry.
This teaching is now referred to as “The Sermon on the Mount.” In expounding on God’s law, Jesus taught values such as humility, empathy, meekness, seeking righteousness, mercy, purity, peacemaking and enduring persecution with joy, for both righteousness and for Christ’s sake (see Mathew 5:1-12).
As you read the four Gospels, it is clear that Jesus emphasized values. Not in place of the law, but as a complement to the law—the spiritual mind-set necessary to fully obey the intent of God’s law. As He specifically said: “Do not think that I came to destroy the Law or the Prophets. I did not come to destroy but to fulfill” (Matthew 5:17).
What about you? Are you just living the letter of the law? Or are you moving on to live the values of God’s laws as well?

Sunday, 28 January 2018

What was Jesus like as a person?

 Although He had "no beauty that we should desire Him..." (Isaiah 53:2), it was His "personality" that drew men to Him. He was a man of great character.

He had a COMPASSIONATE nature. He had compassion on the crowds “because they were harassed and helpless, like sheep without a shepherd” (Matthew 9:36). Because of His compassion for them, He healed their diseases (Matthew 14:1420:34), and because of their hunger, He compassionately created enough food to feed more than 5000 (Matthew 15:32).

Jesus was SERIOUS and FOCUSED. He had a mission in life and never got sidetracked from it, knowing the weightiness of it and the shortness of time. His attitude was that of a SERVANT. "He did not come to BE served, but to SERVE" (Mark 10:45). KINDNESS and SELFLESSNESS characterized His personality.

Jesus was SUBMISSIVE to His Father's will when He came to earth and subsequently went to the cross. He knew that dying on the cross was the only payment His Father could accept for our salvation. He prayed the night of His betrayal by Judas, "O My Father, if it be possible, take this cup of suffering from Me: but LET WHAT YOU WANT BE DONE, NOT WHAT I WANT" (Matthew 26:39). He was a SUBMISSIVE Son to Mary and Joseph, as well. He grew up in a normal (sinful) household, yet, “He continued in subjection to them..." (Luke 2:51). He was OBEDIENT to the Father’s will. “He learned obedience through the things that He suffered" (Hebrews 5:8). "For we do not have a high priest who cannot sympathize with our weaknesses, but One who has been tempted in all things as we are, yet without sin" (Hebrews 4:15).

Jesus had a heart of MERCY and FORGIVENESS - "Father, forgive them, for they do not know what they are doing" (Luke 23:34). "...If we admit that we have sinned, He will forgive us our sins..." (1 John 1:9). He was also LOVING in His relationships - "Now Jesus loved Martha, and her sister, and Lazarus" (John 11:5). John was known as the disciple "whom Jesus loved" (John 13:23).

He had a reputation for being GOOD and CARING. He healed often and in most places where He went IN ORDER THAT they might know who He was! Truly He proved to be the Son of the living God by all the miracles He did, all the while showing concern for the afflictions of those around Him.

HONEST/TRUTHFUL - He never violated His own Word. He spoke TRUTH wherever He went. He lived a life we could follow explicitly. "I am the WAY, the TRUTH, and the LIFE..." (John 14:6). At the same time, He was PEACEABLE. He did not argue His case, nor try to bully His way into people's hearts.

Jesus was INTIMATE with His followers. He spent quality and quantity time with them. He coveted their fellowship, taught them, and helped them focus on what was eternal. He was also intimate with His Heavenly Father. He prayed to Him regularly, listened, obeyed, and cared about God's reputation. (Angered at the moneychangers who were buying and selling in the temple, He said firmly and AUTHORITATIVELY, "It is written, 'My house shall be called a house of prayer'; but you have made it a robbers den!") He was obviously a STRONG, but quiet LEADER. Everywhere He went (until the inevitable decline), the people followed Him, eager to listen to His teaching.

He was PATIENT, knowing and understanding our frailties. He was and is "patient toward you, not wishing for any to perish, but for all to come to repentance" (2 Peter 3:9).

These are traits that all believers should desire to become a part of their "personality" and character. The things that drew people to Jesus should be the very things that draw people to us. Jesus has given those who believe in Him His Holy Spirit, who enables us to be constantly changing into His image (Romans 8:29). This will only come about as we YIELD to Him for who He truly is...LORD of the universe! We must BELIEVE that He is conforming us into His image, and not resist His will for us. Even as Jesus never drew attention to Himself, (but rather to His Father), even so, we ought to say as John the Baptist did, "He must increase, but I must decrease" (John 3:30).

Source: https://www.gotquestions.org/what-was-Jesus-like.html