text
stringlengths
1
1.04M
language
stringclasses
25 values
Mild to moderate cold is sweeping over different parts of the country, including some areas of Dhaka, which may continue for five more days. Besides, light to moderate fog may occur somewhere in the country and the temperature may remain the same for the next five days, said a Met office release. According to a forecast effective from 6pm to the next 24 hours, light to moderate fog may occur at some places over the country from late night to Friday morning while weather may remain dry with temporary partly cloudy sky over the country, it added. Night temperature may fall slightly and day temperature may remain nearly unchanged over the country. On Thursday, the minimum temperature was 7. 4 degrees Celsius at Badalgachhi in Rajshahi.
english
package za.ac.unisa.lms.tools.tpustudentplacement.dao; import java.util.List; import org.apache.commons.collections.map.ListOrderedMap; import za.ac.unisa.lms.tools.tpustudentplacement.utils.DateUtil; public class PersonnelDAO { databaseUtils dbutil; public PersonnelDAO(){ dbutil=new databaseUtils(); } public String getNetworkCode(String personnelNumber)throws Exception{ String sql="Select novell_user_id networkcode" + " from STAFF where persno = "+personnelNumber.trim()+" and (resign_date is null or resign_date>sysdate)"; String errorMsg="PersonnelDAO:Error reading STAFF "; return dbutil.querySingleValue(sql,"networkcode",errorMsg); } public String getPersonnelNumber(String username)throws Exception{ String query="select persno, to_char(resign_date,'YYYY-MM-DD') as resignDate from staff where novell_user_id='"+username+"'"; String errorMsg="CoordinatorDAO:Error reading staff"; List queryList=dbutil.queryForList(query,errorMsg); String personnelNum=""; for (int i=0; i<queryList.size();i++){ ListOrderedMap data = (ListOrderedMap) queryList.get(i); String date=dbutil.replaceNull(data.get("resignDate")); DateUtil dateutil=new DateUtil(); personnelNum=""; if(date.equals("")||dateutil.isDateGreaterThanSysDate(date)){ personnelNum=dbutil.replaceNull(data.get("persno")); break; } } return personnelNum; } public String getPersonnelNumber(int persno)throws Exception{ String query="select persno, to_char(resign_date,'YYYY-MM-DD') as resignDate from staff where persno='"+persno+"'"; String errorMsg="CoordinatorDAO:Error reading staff"; List queryList=dbutil.queryForList(query,errorMsg); String personnelNum=""; for (int i=0; i<queryList.size();i++){ ListOrderedMap data = (ListOrderedMap) queryList.get(i); String date=dbutil.replaceNull(data.get("resignDate")); DateUtil dateutil=new DateUtil(); personnelNum=""; if(date.equals("")||dateutil.isDateGreaterThanSysDate(date)){ personnelNum=dbutil.replaceNull(data.get("persno")); break; } } return personnelNum; } }
java
<filename>index.html <!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <title>HSL Website Critique</title> <link rel="stylesheet" href="css/reset.css"> <link rel="stylesheet" href="css/reveal.css"> <link rel="stylesheet" href="css/theme/league.css"> <link rel="stylesheet" href="lib/fontawesome/css/all.min.css" /> <!-- Theme used for syntax highlighting of code --> <link rel="stylesheet" href="lib/css/monokai.css"> <style type="text/css"> .container { display: flex } .col { flex: 1 } .scrollable-slide { bottom: 0px; height: 700px; overflow-y: auto !important; overflow-x: hidden !important; } .footer { position: absolute; display: table; width: 100%; bottom: 0; } </style> <!-- Printing and PDF exports --> <script> var link = document.createElement( 'link' ); link.rel = 'stylesheet'; link.type = 'text/css'; link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css'; document.getElementsByTagName( 'head' )[0].appendChild( link ); </script> </head> <body> <div class="reveal"> <div class="slides"> <section> <h2>HEALTH SCIENCE LIBRARY<br/>HOMEPAGE CRITIQUE</h2> <a href="mailto:<EMAIL>"><NAME>.</a> <p style="font-size: .5em; font-style: italic">Presented @ UofL &mdash; September 11, 2019</p> <a href="https://github.com/grimsmath" target="_blank"><i class="fab fa-github"></i></a>&nbsp; <a href="https://linkedin.com/in/davidkingjr/" target="_blank"><i class="fab fa-linkedin"></i></a> </section> <section> <section> <h2>WHO IS THIS GUY?</h2> </section> <section> <div class="container"> <div class="col"> <img src="img/me/selfie.jpg" alt="David Selfie Image"/> </div> <div class="col"> <h3><NAME>.</h3> <ul style="font-size: .85em"> <li>SW Engineer &amp; Web App Developer</li> <li>Educator's heart</li> <li>Artist (theatre, drawing &amp; painting)</li> <li>Spacemacs/VIM user</li> <li>Cardinal trapped in Gator land for the past 12 years</li> <li>Father of a cat</li> </ul> </div> </div> </section> </section> <section> <p>Enough about me...<br/><em>Let's get to it!</em></p> </section> <section> <section> <h2>EVALUATION CRITERIA</h2> <p>Some of the criteria I used to evaluate a homepage</p> </section> <section> <h2> <i class="fa fa-object-group"></i> Form </h2> <ul> <li>Visual appeal</li> <li>Engaging user interface</li> <li>Layout consistency</li> <li>Good use of graphics</li> <li><em>Pixel perfection?!?</em></li> </ul> </section> <section> <h2> <i class="fa fa-file-code"></i> Function </h2> <ul> <li>Passive or Active Voice</li> <li>Describes what the library has to offer</li> <li>Provides address/location/availability</li> <li>Provides staff information</li> <li>Library news/updates</li> <li><em>What is the library special for?</em></li> </ul> </section> <section> <h2> <i class="fa fa-audio-description"></i> Accessibility </h2> <ul <li>W3C standards (Alt, Aria, etc.)</li> <li>HTML5 semantic markup (header, footer, etc.)</li> <li>Keyboard navigation</li> <li>Screen reader friendly</li> <li>Contrasting colors</li> </ul> </section> </section> <section> <p><em>Let's look at some sites...</em></p> </section> <section data-background-image="img/baylor/baylor-bg.png"> <section> <h2>BAYLOR HEALTH SCIENCES LIBRARY</h2> <ul> <li>Wordpress-Based Site (PHP)</li> <li>Bootstrap CSS Framework</li> <li>Uses custom template with semantic markup</li> <li>Keyboard navigation is lacking</li> </ul> </section> <section> <img src="img/baylor/baylor-likes.png" alt="Baylor Homepage Likes" /> </section> <section> <img src="img/baylor/baylor-dislikes.png" alt="Baylor Homepage Dislikes" /> </section> <section> <h3>Accessibility Score</h3> <img src="img/baylor/baylor-acc-01.png" alt="Baylor Accessibility Score" /> </section> <section> <h3>Accessibility Report</h3> <img src="img/baylor/baylor-acc-02.png" alt="Baylor Accessibility Report" /> </section> </section> <section data-background-image="img/uci/uci-bg.png"> <section> <h2>UC IRVINE<br/>Grunigen Medical Library</h2> <ul> <li>Drupal-based Site (PHP)</li> <li>Bootstrap CSS Framework</li> <li>Uses custom template with semantic markup</li> <li>Keyboard navigation is good</li> </ul> </section> <section> <img src="img/uci/uci-likes.png" alt="UCI Homepage Likes" /> </section> <section> <img src="img/uci/uci-dislikes.png" alt="UCI Homepage Dislikes" /> </section> <section> <h3>Accessibility Score</h3> <img src="img/uci/uci-acc-01.png" alt="UCI Accessibility Score" /> </section> <section> <h3>Accessbility Report</h3> <img src="img/uci/uci-acc-02.png" alt="UCI Accessibility Report" /> </section> </section> <section data-background-image="img/suny/suny-bg.png"> <section> <h2>SUNY UPSTATE MEDICAL COLLEGE<br/>Health Sciences Library</h2> <ul> <li>Custom CMS (PHP)</li> <li>Bootstrap CSS Framework</li> <li>Custom semantic markup</li> <li>Keyboard navigation is good</li> </ul> </section> <section> <img src="img/suny/suny-likes-1.png" alt="SUNY Homepage Likes Page 1"/> </section> <section> <img src="img/suny/suny-likes-2.png" alt="SUNY Homepage Likes Page 2"/> </section> <section> <img src="img/suny/suny-dislikes-1.png" alt="SUNY Homepage Dislikes Page 1"/> </section> <section> <img src="img/suny/suny-dislikes-2.png" alt="SUNY Homepage Dislikes Page 2"/> </section> <section> <h3>Accessibility Score</h3> <img src="img/suny/suny-acc-01.png" alt="SUNY Accessibility Score" /> </section> <section> <h3>Accessibility Report</h3> <img src="img/suny/suny-acc-02.png" alt="SUNY Accessibility Report" /> </section> </section> <section> <h3>SOME TAKEAWAYS</h3> <ul> <li>Library websites are not just utilities</li> <li>Library websites are evolving but lag behind greater organization pages</li> <li>Need more emphasis on active voice (calls-to-action, etc.)</li> <li>Lots of noise on pages (abundance of links without context)</li> </ul> </section> <section> <h3>IMPROVEMENTS</h3> <ul> <li>Have a Call-To-Action, a focal point beyond just search</li> <li>Improve layouts (equisize boxes, pixel perfect CSS, etc.)</li> <li>Use a layout editor (Sketch, Adobe XD, etc.) to layout pages first</li> <li>Reduce noise (cluster links into menus)</li> <li>Watch accessbility issues closely!</li> </ul> </section> <section> <h2>MY TOOLS AND TIPS</h2> <div class="container"> <div class="col fragment"> <h3><mark>DESIGN</mark></h3> <ul style="font-size: .85em"> <li><a href="https://balsamiq.com" target="_blank">Balsamiq (Wireframing)</a></li> <li><a href="https://sketch.com" target="_blank">Sketch (New!)</a></li> <li><a href="https://adobe.com/products/photoshop" target="_blank">Photoshop</a></li> <li><a href="https://telestream.net/screenflow" target="_blank">Screenflow</a></li> <li><a href="https://affinity.serif.com" target="_blank">Affinity Photo (new)</a></li> <li><a href="https://adobe.com/products/xd" target="_blank">XD (Free Sketch alt.)</a></li> </ul> </div> <div class="col fragment"> <h3><mark>CODE</mark></h3> <ul style="font-size: .85em"> <li><a href="http://spacemacs.org" target="_blank">Spacemacs</a></li> <li><a href="http://livereload.com" target="_blank">A Live Reload Server</a></li> <li><a href="https://jetbrains.com" target="_blank">Various JetBrains IDEs</a></li> </ul> </div> <div class="col fragment"> <h3><mark>TESTING</mark></h3> <ul style="font-size: .85em"> <li><a href="https://developers.google.com/web/tools/chrome-devtools/" target="_blank">Chrome DevTools</a></li> <li><a href="https://developers.google.com/web/tools/lighthouse/" target="_blank">Google Lighthouse</a></li> <li><a href="https://www.seleniumhq.org/projects/webdriver/" target="_blank">Selenium WebDriver</a></li> </ul> </div> </div> </section> <section> <h2><i class="fa fa-question"></i>&nbsp;QUESTIONS&nbsp;<i class="fa fa-question"></i></h2> <a href="https://github.com/grimsmath" target="_blank"><i class="fab fa-github"></i></a>&nbsp; <a href="https://linkedin.com/in/davidkingjr/" target="_blank"><i class="fab fa-linkedin"></i></a> <p> <small>This presentation was coded using<br/><a href="https://revealjs.com" target="_blank">RevealJS</a></small> </p> </section> </div> </div> <script src="js/reveal.js"></script> <script type="text/javascript" src="lib/js/jquery.min.js"></script> <script> // More info about config & dependencies: // - https://github.com/hakimel/reveal.js#configuration // - https://github.com/hakimel/reveal.js#dependencies Reveal.initialize({ dependencies: [ { src: 'plugin/markdown/marked.js' }, { src: 'plugin/markdown/markdown.js' }, { src: 'plugin/notes/notes.js', async: true }, { src: 'plugin/highlight/highlight.js', async: true } ] }); $(document).ready(function() { $('.fragment-fade').children('li').addClass('fragment'); }); </script> </body> </html>
html
Three accused in sensational Kodanad heist-murder case have filed a plea with the Madras High Court seeking to conduct probes against former chief minister of Tamil Nadu K Palaniswami, expelled AIADMK leader and late J Jayalalithaa’s close aide V K Sasikala, among others. The criminal revision petition has been filed by three accused - Deepu, MS Satheesan, and A Samthosh Samy, who are currently undergoing trial at the session court in the Nilgiris, along with seven others who have been named in the charge-sheet in the case. All of them hailing from Kerala, the accused, according to the chargesheet, have been involved in the murder of a security guard and theft of valuables from the Kodanad bungalow of former chief minister J Jayalalithaa. In the petition, a copy of which has been reviewed by CNN-News18, the three accused have claimed that the “proceedings of the trail at the Nilgiris court was influenced and monitored by the persons holding power in the former ruling party…," referring to the AIADMK. The petition also stated that the police inquired only 41 witnesses when over a hundred were cited in its list, the death of the family of one of the accused in an accident, instances of political pressure to the key accused Sayan, conduct of trial in a “hurried manner,” the appointment of an AIADMK-related person as the lawyer for one of the accused, and several other alleged irregularities. In the criminal revision petition, the three accused have sought an order to examine the following witnesses: Palaniswami, Sasikala, Murali Rambha, former SP of The Nilgiris, Sasikala’s relatives J Ilavarasi and NV Sudhakaran, AIADMK state organiser—Nilgiris Sanjeevan, the manager of the Kodanadu estate Natarajan, and others. The petition also noted that a similar plea was made before a judge of the sessions court, Nilgiris but he passed an order in April this year, days before the DMK swept to power, disallowing the examination of all but the manager of the Kodanadu bungalow. The petition filed by Deepu, Satheesan and Santhosh Samy also sought the Madras High court to set aside the sessions court order of April 2021, and enable the examination of Palaniswami and Sasikala. The Kodanad murder-heist case was brought under the spotlight by the DMK government, which recently said it would go deeper into the details. Palaniswami, along with a host of AIADMK leaders protested against the move and called it a “political vendetta". Read all the Latest News, Breaking News and Assembly Elections Live Updates here.
english
Bhubaneswar: The BJD government led by Chief Minister Naveen Patnaik touched another milestone Friday with the completion of the first year of its fifth term in office. On this day last year, Naveen took oath as the Chief Minister of Odisha for the fifth consecutive term. Beating anti-incumbency and a BJP wave across the nation, the BJD won 113 seats in the 147-member Assembly with a vote share of 44. 7 per cent in 2019. In 2014, the regional party had secured 117 seats with 43. 7 per cent vote share. This victory enhanced the confidence of the party and encouraged it to work for the state with added vigour. In view of the Covid-19 pandemic, neither the BJP nor the state government will organise any special function to celebrate the occasion. However, the Chief Minister will hold the state Cabinet meeting followed by a meeting of the Council of Ministers to take stock of the situation in the state and announce important decisions to mark the day, sources said. In the last 365 days, the government has achieved many goals, including combating the Covid-19 pandemic and restoring normalcy after the extremely severe cyclone Fani hit the state May 3, 2019. In the first year of the fifth term, the Naveen government has given maximum importance to two initiatives – ‘Mo Sarkar’ and ‘Five Ts’ principle. ‘Five Ts’ stand for the parameters – team work, technology, transparency, transformation and time limit. Soon after the new government took shape, it adopted the ‘5T’ governance model to hasten the public service delivery system and bring more efficiency in the administration. Under the ‘5T’ governance initiative, the government has taken major decisions, including integration of directorates with concerned administrative departments, premature retirement policy to remove officers and employees of doubtful integrity or inefficiency, out of turn promotion to employees for exemplary work and establishment of ‘promotion Adalats’ to ensure timely promotion. Under the ‘5T’ initiative, the government launched the ‘Mo Sarkar’ Gandhi Jayanti last year to bridge the gap between people and the government. Under ‘Mo Sarkar’, everyone from the Chief Minister to ministers and senior officers seek direct feedback from citizens who visit government offices for various services. In the first phase, ‘Mo Sarkar’ was launched in hospitals and police stations and later all departments have been brought under its purview. For this initiative, the government has received appreciation from various quarters. Currently, the BJD government is combating the Covid-19 pandemic effectively. Odisha is the first state in the country to announce a lockdown. This aside, Odisha is the only state where every district has a special hospital to treat Covid-19 patients. In more recent times, the state government has successfully dealt with the cyclone Amphan, which affected the coastal districts. “Presently, we have put all our efforts to combat the Covid-19 pandemic and solve the migrants’ crisis. We are confident that we will emerge successful,” he said.
english
<filename>main.go package main import ( "context" "flag" "os" "os/signal" "syscall" "k8s.io/klog" "github.com/projectsyn/steward/pkg/agent" "gopkg.in/alecthomas/kingpin.v2" ) // Version is the steward version (set during build) var Version = "unreleased" const ( DefaultArgoCDImage = "quay.io/argoproj/argocd:v2.0.4@sha256:976dfbfadb817ba59f4f641597a13df7b967cd5a1059c966fa843869c9463348" DefaultRedisImage = "quay.io/bitnami/redis:6.2.4" ) func main() { klog.InitFlags(nil) flag.Set("logtostderr", "true") flag.Set("v", "3") klog.Info("Starting SYN cluster agent 🕵️") klog.Infof("Version %s", Version) app := kingpin.New("steward", "Steward makes your Kubernetes cluster SYN managed. 🎉") app.DefaultEnvars() app.Version(Version) ctx, cancel := context.WithCancel(context.Background()) signalCh := make(chan os.Signal, 1) signal.Notify(signalCh, syscall.SIGTERM) go receiveSignal(signalCh, cancel) agent := agent.Agent{} app.Action(func(*kingpin.ParseContext) error { return agent.Run(ctx) }) app.Flag("api", "API URL to connect to").Required().URLVar(&agent.APIURL) app.Flag("token", "Token to authenticate to the API").Required().StringVar(&agent.Token) app.Flag("cluster-id", "ID of own cluster").Required().StringVar(&agent.ClusterID) app.Flag("cloud", "Cloud type this cluster is running on").StringVar(&agent.CloudType) app.Flag("region", "Cloud region this cluster is running in").StringVar(&agent.CloudRegion) app.Flag("distribution", "Kubernetes distribution this cluster is running").StringVar(&agent.Distribution) app.Flag("namespace", "Namespace in which steward is running").Default("syn").StringVar(&agent.Namespace) app.Flag("argo-image", "Image to be used for the Argo CD deployments").Default(DefaultArgoCDImage).StringVar(&agent.ArgoCDImage) app.Flag("redis-image", "Image to be used for the Argo CD Redis deployment").Default(DefaultRedisImage).StringVar(&agent.RedisImage) kingpin.MustParse(app.Parse(os.Args[1:])) } func receiveSignal(signalCh chan os.Signal, cancel context.CancelFunc) { for { select { case sig := <-signalCh: klog.V(3).Infof("Received signal '%v'", sig) cancel() } } }
go
{"categories":["Programming","Security"],"desc":"\n","details":{"authors":"<NAME>","format":"pdf","isbn-10":"1484220528","isbn-13":"978-1484220528","pages":"195 pages","publication date":"July 28, 2016","publisher":"Apress","size":"10.42Mb"},"img":"http://2172.16.17.328/covers/ef/ef42928c7aacb47bcce6fab42eecb835.jpg","link":"https://rapidhosting.info/files/azy","title":"Building a Comprehensive IT Security Program: Practical Guidelines and Best Practices"}
json
This year Lisbon is roaring along with noted startups like Uniplaces, Aptoide, Farfetch, Seedrs and Unbabel putting the Portuguese capital on the map. Vast annual startup conference Web Summit arrived last year with 53,000 people, and entrepreneurs and investors have been increasingly eyeing-up the city as a viable alternative to equally cheap Berlin, especially since the government allowed existing businesses re-locating there to enjoy a 10 years tax-free welcome. But so what, right? Every city has its startups and champions. However, this time there’s a difference. Cities aren’t just competing on startups now, they are competing on startup hubs and clusters. And what is more efficient than co-locating startups in huge, campus-like, facilities? Hence, Station F recently opened with a huge fan-fare about its massive space. Now, this is the kind of thing the hub-builders Factory did with its big former flour mill in Berlin, now home to Soundcloud and others. And it’s continued with another similar project in the city. But now it intends to do something radically big in Lisbon. It is no surprise that Lisbon has now attracted a group of international real estate developers like Factory, and partner Löscher & Böckmann, to add to the momentum. There remains vast swathes of the city under-developed. So, with support from Startup Lisboa, the Lisbon City Hall has contracted Factory to work with them on a massive new project in Beato, an up-and-coming neighborhood in Lisbon, famous for its industrial heritage and already home to a big creative community and craft beer scene. Dubbed the Hub Criativo do Beato, the city’s project will now be challenging Paris’ Station F to be the world’s largest startup campus. Let’s look at the numbers. Station F has 366,000ft2 or 34,000m2 (square meters). But Hub Criativo do Beato plans to have 35,000m2 planned for just its first phase. And almost double that in phase two. In other words, at completion, it will be around 100,000 m2, thus utterly dwarfing Station F, and many other similar projects. I guess Skolkovo near Moscow could be deemed bigger, but they also do nuclear and space there, so rather different from pure tech startups. Where on earth have they acquired all this space? Well, the 20 building complex it will be sited on previously hosted the food production facilities serving the military and government operations in Lisbon. After the end of the Salazar dictatorship, the city, in its wisdom kept this massive site of industrial heritage well maintained. But it’s not been operational for decades – until now. In April I toured the monstrous site, where the Factory team will renovate a 11,000m2 (118,000 sqft) building on the edge of the complex with views of the Tagus River. And it’s big. Really big. Plus it will keep many of the unique architectural elements of the spaces. Huge bread ovens anyone? Factory is one of the first players supporting the Lisbon Mayor, Fernando Medina, in investing into and revitalizing the district, and his further vision of connecting Lisbon’s Old Town with its commercial Expo district in the north. Medina believes “this is one of the city’s most ambitious integrated development efforts since Expo 98” which is what helped put Lisbon on the map, back in the day. Factory has yet to announce its anchor tenants, however Mercedes is understood to be in negotiations to move an innovation team to Beato, as is a team from Web Summit. In this initial phase there will be offices for up to 500 tech workers. Plus, the building will host several event spaces, rooftop terrace, gym and Factory’s own cafe and craft beer bar, R/D. Since 2012 the Factory team has set up two startup campuses in Berlin, and attracted companies like Soundcloud, Twitter, HERE, 6Wunderkinder, The Family, Stripe, Uber, Zendesk, Point Nine Capital and several others operate from their spaces. Architect Julian Breinersdorfer, who worked with Factory to design both of their previous buildings, will again work on Factory Lisbon. After exiting their first campus, the founding Factory team raised a recent investment round from a diverse group investors including Round Hill Capital, 500 Startups, Elkstone Capital and angels Matthias Ummenhofer and Christian Reber.
english
File extensions for software codes: cpp is what? This article is about the expansion and its importance for computer systems. Here, it would seem that such a special can be in the extension of the program file? But nevertheless, we hope that readers will be able to obtain important and interesting information for themselves. Ability to deal with extensions will serve a good service, as will be written below. Which extension has C plus plus? This programming language has its own designation of files. The cpp notation is a special extension used for files with C ++ code. They contain still not ready for use (not compiled) code, which you can edit and make edits without significant costs and failures in the program. With this extension, you can find out which file contains the text in "C" (programming language, which is very popular now). Why do you need to expand the file name that is used by the computer? The fact is that the computer can handle many different types of files, both within the installed operating system, and with the help of additional software. An example of such software can be plug-ins installed in browsers, or interpreters of various programming languages that can handle running programs. Here's to recognize which interpreter should use the computer, which machine code to use to play the file, and extensions are needed. Machine code recognizes the type of file, this information will be provided to it by the existing requisites. So, the extension cpp is a file containing a document in C ++. After recognition, the interpreter will be able to open it, and the user will be able to work with the document. What is the file name extension in general? But let's talk about file names extensions from the point of view of computer science. Its purpose is already defined - it is necessary to identify the format or file type. Disconnect the extension from the file name using a period. Prior to the 95th, the "Winds" had a limit on the number of characters in the expansion: they could not be more than three. In modern systems, there is no such restriction. Even more, in modern file systems there can be files that have several types of extension. They all follow through the point. To such as cpp this, however, does not apply. Such a gift developers often use scammers. Their malicious files, which they push through to users' computers, are often masked by malicious users for other programs, hide the main file extension (in viruses and different Trojans it differs from regular programs). It may even be that all the real files are hidden or deleted, and quite different ones are substituted instead. And it turns out that cpp is not a cpp at all, but a computer virus. A good defense against this type of scam is the command to display all types of extensions. You can enable this function in the Control Panel, just find the file properties and the required item. And then you can be calm for your C plus plus files, and be sure that you will not run a harmful program instead. Although you should always look at the extension of executable files. Sometimes the extension does not accurately indicate the type of file and does not solve all possible problems that may arise during the use of various programs. So, the extension . txt, which is familiar to many, does not give information to the computer about which encoding the file is in. Therefore, when you open text files, you can see sheets of incomprehensible symbols. It is especially sad to see such a document state if it was used to write program code. In such cases, you should change the encoding of the files until the computer can provide adequate text. You can try to calculate the necessary encoding on the basis of incorrect symbols, but you need to know what encoding is relative to which result. For Vordovian files, the same extension is also used, which does not make it clear with which file the person is dealing with: a normal type or a formatted one. Also, the extension does not indicate which version is used, which is well manifested when trying to open versions of early documents in later processing environments, as is the case with Microsoft Office. There are other ways to specify the file format for the file system. But they are not common, and you probably never heard about them: - Saving information about the file format in the operating system itself. Disadvantages arise if you want to go to another computer and work with the same file. - The application of the so-called "magic numbers" method. This is when the file itself encodes a certain sequence of bytes, which indicates all the necessary information for the operation of the file. Has a certain potential, but cooperation of software producers is needed. - For some Unix systems, a function has been developed that leaves special notations at the beginning of the file intended for the interpreter.
english
Asia Cup 2022: In the Super Four game against Sri Lanka India skipper Rohit Sharma went on to smash 72 runs from 41 balls, in an innings studded with five fours and four sixes before he got out in the 13th over to Chamikha Karunaratne. This was the Indian captain's 28th T20I half-century. - Rohit Sharma scored 72 runs vs Sri Lanka in the Super Four game vs Sri Lanka. - This is his 28th T20I half-century. - He also has 32 scores of 50+ in the shortest format. After India lost their first match in the Super Four stage of of the Asia Cup 2022 against Pakistan in a closely fought encounter, they entered tonight's match against Sri Lanka in an encounter they need to win in order to keep their hopes of a spot in the final of the continental tournament alive. Sri Lanka won the toss and India were put into bat first. The Men in Blue got off to the worst possible start as they lost two wickets within two overs. KL Rahul was dismissed for six runs while the in-form Virat Kohli was dismissed for a duck. However, captain Rohit Sharma stood up to the task, and with able support from Suryakumar Yadav got the Indian innings back on track. He went on to smash 72 runs from 41 balls, in an innings studded with five fours and four sixes before he got out in the 13th over to Chamikha Karunaratne. This was the Indian captain's 28th T20I half-century. In fact, if his four hundreds are counted, Rohit Sharma has 32 50+ scores in the shortest format of the game, thus equalling Virat Kohli's record of being the batsman with the most 50+ scores in T20Is. Here are the players with most 50+ T20I scores: In fact, Virat Kohli had gone past Rohit Sharma's record in the last game in the Super Fours against Pakistan, with his knock of 60 runs. Rohit Sharma was not in the best of form in the Asia Cup 2022 so far. Before tonight's knock vs the Lankans, Rohit had managed scores of 12,21 and 28 in the previous three games. So, his free flowing innings will sure bring a sense of relief back into the the Indian players and fans.
english
Vinicius Jr crowned his breakout season by scoring the goal that won Real Madrid a record-extending 14th European Cup title with a 1-0 win over Liverpool in Saturday’s final. It was the perfect ending to the fairytale of an improbable hero who a year ago was tormented by criticism from media and fans who were questioning if the Brazilian youngster was worth the 45 million euros Real Madrid paid Flamengo when he was 17. Vinicius was 20 last season, struggling with his decision making and finishing, having scored only six goals with seven assists in the 49 games he had played, the inconsistency in his performances clouding his future at the club. His low point was in October 2020, when teammate Karim Benzema was caught on camera giving a damning opinion of Vinicius to defender Ferland Mendy during halftime against Borussia Moenchengladbach in the Champions League. MATCH REPORT: With the Brazilian standing only metres away in the tunnel, Benzema whispered to compatriot Mendy in French, “Don’t pass to him, he is playing against us”, blasting his strike partner’s display in the first half as his side was trailing 1-0. Vinicius fell out of favour with coach Zinedine Zidane and hit rock bottom, but then Real lured back Carlo Ancelotti for a second spell last June following the departure of Zidane. Ancelotti saw a diamond in the rough in Vinicius and immediately made it a personal priority of developing the Brazilian youngster and putting him in the best position to succeed. With his calm guidance, Ancelotti gave Vini the confidence he needed to flourish. One year later, Vinicius is a transformed man, an international superstar who scored 22 goals with 20 assists in a season during which he was an intrinsic part of Real's success as they won the LaLiga-Champions League double. Always with a huge smile, and an energy that has made him a fan favourite in the Spanish capital, mainly with the young fans, Vinicius' persistence has gradually earned him the respect and trust of the dressing room, and his blooming relationship with Benzema is one of the greatest comeback stories of recent years. Vinicius' youth, energy, aggressiveness and unstoppable explosion perfectly complement Benzema, who had a career-best year alongside the Brazilian, scoring 44 goals in 45 games in all competitions and a chance of winning his first Ballon d'Or. Vinicius was decisive in Real's amazing run of comebacks against Paris St-Germain, Chelsea and Manchester City in the Champions League and again in the final against Liverpool, ghosting behind Trent Alexander-Arnold to score the winner from Federico Valverde's perfect cross in the second half.
english
<filename>modin/pandas/test/test_reshape.py # Licensed to Modin Development Team under one or more contributor license agreements. # See the NOTICE file distributed with this work for additional information regarding # copyright ownership. The Modin Development Team licenses this file to you under the # Apache License, Version 2.0 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software distributed under # the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF # ANY KIND, either express or implied. See the License for the specific language # governing permissions and limitations under the License. import pandas import pytest import numpy as np import modin.pandas as pd from modin.test.test_utils import warns_that_defaulting_to_pandas from .utils import df_equals, test_data_values def test_get_dummies(): s = pd.Series(list("abca")) with warns_that_defaulting_to_pandas(): pd.get_dummies(s) s1 = ["a", "b", np.nan] with warns_that_defaulting_to_pandas(): pd.get_dummies(s1) with warns_that_defaulting_to_pandas(): pd.get_dummies(s1, dummy_na=True) data = {"A": ["a", "b", "a"], "B": ["b", "a", "c"], "C": [1, 2, 3]} modin_df = pd.DataFrame(data) pandas_df = pandas.DataFrame(data) modin_result = pd.get_dummies(modin_df, prefix=["col1", "col2"]) pandas_result = pandas.get_dummies(pandas_df, prefix=["col1", "col2"]) df_equals(modin_result, pandas_result) assert modin_result._to_pandas().columns.equals(pandas_result.columns) assert modin_result.shape == pandas_result.shape modin_result = pd.get_dummies(pd.DataFrame(pd.Series(list("abcdeabac")))) pandas_result = pandas.get_dummies( pandas.DataFrame(pandas.Series(list("abcdeabac"))) ) df_equals(modin_result, pandas_result) assert modin_result._to_pandas().columns.equals(pandas_result.columns) assert modin_result.shape == pandas_result.shape with pytest.raises(NotImplementedError): pd.get_dummies(modin_df, prefix=["col1", "col2"], sparse=True) with warns_that_defaulting_to_pandas(): pd.get_dummies(pd.Series(list("abcaa"))) with warns_that_defaulting_to_pandas(): pd.get_dummies(pd.Series(list("abcaa")), drop_first=True) with warns_that_defaulting_to_pandas(): pd.get_dummies(pd.Series(list("abc")), dtype=float) with warns_that_defaulting_to_pandas(): pd.get_dummies(1) def test_melt(): data = test_data_values[0] with pytest.warns(UserWarning): pd.melt(pd.DataFrame(data)) def test_crosstab(): a = np.array( ["foo", "foo", "foo", "foo", "bar", "bar", "bar", "bar", "foo", "foo", "foo"], dtype=object, ) b = np.array( ["one", "one", "one", "two", "one", "one", "one", "two", "two", "two", "one"], dtype=object, ) c = np.array( [ "dull", "dull", "shiny", "dull", "dull", "shiny", "shiny", "dull", "shiny", "shiny", "shiny", ], dtype=object, ) with warns_that_defaulting_to_pandas(): df = pd.crosstab(a, [b, c], rownames=["a"], colnames=["b", "c"]) assert isinstance(df, pd.DataFrame) foo = pd.Categorical(["a", "b"], categories=["a", "b", "c"]) bar = pd.Categorical(["d", "e"], categories=["d", "e", "f"]) with warns_that_defaulting_to_pandas(): df = pd.crosstab(foo, bar) assert isinstance(df, pd.DataFrame) with warns_that_defaulting_to_pandas(): df = pd.crosstab(foo, bar, dropna=False) assert isinstance(df, pd.DataFrame) def test_lreshape(): data = pd.DataFrame( { "hr1": [514, 573], "hr2": [545, 526], "team": ["Red Sox", "Yankees"], "year1": [2007, 2008], "year2": [2008, 2008], } ) with warns_that_defaulting_to_pandas(): df = pd.lreshape(data, {"year": ["year1", "year2"], "hr": ["hr1", "hr2"]}) assert isinstance(df, pd.DataFrame) with pytest.raises(ValueError): pd.lreshape(data.to_numpy(), {"year": ["year1", "year2"], "hr": ["hr1", "hr2"]}) def test_wide_to_long(): data = pd.DataFrame( { "hr1": [514, 573], "hr2": [545, 526], "team": ["Red Sox", "Yankees"], "year1": [2007, 2008], "year2": [2008, 2008], } ) with warns_that_defaulting_to_pandas(): df = pd.wide_to_long(data, ["hr", "year"], "team", "index") assert isinstance(df, pd.DataFrame) with pytest.raises(ValueError): pd.wide_to_long(data.to_numpy(), ["hr", "year"], "team", "index")
python
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>RakNet: RakNet::StatisticsHistory Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">RakNet &#160;<span id="projectnumber">4.0</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.2 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespaceRakNet.html">RakNet</a></li><li class="navelem"><a class="el" href="classRakNet_1_1StatisticsHistory.html">StatisticsHistory</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-types">Public Types</a> &#124; <a href="classRakNet_1_1StatisticsHistory-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">RakNet::StatisticsHistory Class Reference</div> </div> </div><!--header--> <div class="contents"> <p>Input numerical values over time. Get sum, average, highest, lowest, standard deviation on recent or all-time values. <a href="classRakNet_1_1StatisticsHistory.html#details">More...</a></p> <p><code>#include &lt;StatisticsHistory.h&gt;</code></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a> Public Types</h2></td></tr> <tr class="memitem:a197b0da149b5168c77891e3f9d289a0b"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classRakNet_1_1StatisticsHistory.html#a197b0da149b5168c77891e3f9d289a0b">SHDataCategory</a> { <a class="el" href="classRakNet_1_1StatisticsHistory.html#a197b0da149b5168c77891e3f9d289a0ba98c350223aab0b252a92a03a4657b251">DC_DISCRETE</a>, <a class="el" href="classRakNet_1_1StatisticsHistory.html#a197b0da149b5168c77891e3f9d289a0ba2540de6b5166cf35499dbfeb15b96d98">DC_CONTINUOUS</a> }</td></tr> <tr class="separator:a197b0da149b5168c77891e3f9d289a0b"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>Input numerical values over time. Get sum, average, highest, lowest, standard deviation on recent or all-time values. </p> </div><h2 class="groupheader">Member Enumeration Documentation</h2> <a class="anchor" id="a197b0da149b5168c77891e3f9d289a0b"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">enum <a class="el" href="classRakNet_1_1StatisticsHistory.html#a197b0da149b5168c77891e3f9d289a0b">RakNet::StatisticsHistory::SHDataCategory</a></td> </tr> </table> </div><div class="memdoc"> <dl><dt><b>Enumerator: </b></dt><dd><table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"><em><a class="anchor" id="a197b0da149b5168c77891e3f9d289a0ba98c350223aab0b252a92a03a4657b251"></a>DC_DISCRETE</em>&nbsp;</td><td> <p>Insert values from one set into the other set, in time order Values at the same time end up in the final set twice Use when you have additional data points to add to a graph </p> </td></tr> <tr><td valign="top"><em><a class="anchor" id="a197b0da149b5168c77891e3f9d289a0ba2540de6b5166cf35499dbfeb15b96d98"></a>DC_CONTINUOUS</em>&nbsp;</td><td> <p>Add values from one set to values from the other set, at corresponding times If value at time t does not exist in the other set, linearly extrapolate value for other set based on nearest two data points longTerm* values are unknown using this method Use to add two graphs together </p> </td></tr> </table> </dd> </dl> </div> </div> <hr/>The documentation for this class was generated from the following file:<ul> <li>D:/temp/RakNet_PC/Source/<a class="el" href="StatisticsHistory_8h.html">StatisticsHistory.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Mon Jun 2 2014 20:10:29 for RakNet by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.2 </small></address> </body> </html>
html
const mix = require('laravel-mix'); /* |-------------------------------------------------------------------------- | Mix Asset Management |-------------------------------------------------------------------------- | | Mix provides a clean, fluent API for defining some Webpack build steps | for your Laravel application. By default, we are compiling the Sass | file for the application as well as bundling up all the JS files. | */ // App mix.js('resources/js/app.js', 'public/js') .sass('resources/sass/app.scss', 'public/css'); mix.copyDirectory('resources/images', 'public/images'); // Admin mix.copyDirectory('resources/admindek/files', 'public/admin'); mix.copyDirectory('resources/admindek/files/assets/icon/feather/fonts', 'public/admin/fonts'); mix.copyDirectory('resources/admindek/files/assets/icon/font-awesome/fonts', 'public/admin/fonts'); mix.copyDirectory('resources/admindek/files/assets/icon/icofont/fonts', 'public/admin/fonts'); mix.copyDirectory('resources/admindek/files/assets/icon/simple-line-icons/fonts', 'public/admin/fonts'); mix.copyDirectory('resources/admindek/files/assets/icon/themify-icons/fonts', 'public/admin/fonts'); mix.copyDirectory('resources/admindek/files/assets/fonts', 'public/admin/fonts'); mix.copyDirectory('resources/admindek/files/vendor/summernote/font', 'public/admin/css/font'); mix.styles([ 'resources/admindek/files/bower_components/bootstrap/css/bootstrap.min.css', 'resources/admindek/files/assets/pages/waves/css/waves.min.css', 'resources/admindek/files/assets/icon/feather/css/feather.css', 'resources/admindek/files/assets/icon/font-awesome/css/font-awesome.min.css', 'resources/admindek/files/assets/icon/icofont/css/icofont.css', 'resources/admindek/files/assets/icon/simple-line-icons/css/simple-line-icons.css', 'resources/admindek/files/assets/icon/themify-icons/themify-icons.css', 'resources/admindek/files/vendor/summernote/summernote-bs4.css', 'resources/admindek/files/assets/css/font-awesome-n.min.css', 'resources/admindek/files/bower_components/chartist/css/chartist.css', 'resources/admindek/files/assets/css/style.css', 'resources/admindek/files/assets/css/widget.css', 'resources/admindek/files/assets/css/update.css', ], 'public/admin/css/all.css') mix.scripts([ 'resources/admindek/files/assets/js/jquery-3.4.1.min.js', 'resources/admindek/files/bower_components/popper.js/js/popper.min.js', 'resources/admindek/files/bower_components/bootstrap/js/bootstrap.min.js', 'resources/admindek/files/assets/pages/waves/js/waves.min.js', 'resources/admindek/files/bower_components/jquery-slimscroll/js/jquery.slimscroll.js', 'resources/admindek/files/assets/pages/chart/float/jquery.flot.js', 'resources/admindek/files/assets/pages/chart/float/jquery.flot.categories.js', 'resources/admindek/files/assets/pages/chart/float/curvedLines.js', 'resources/admindek/files/assets/pages/chart/float/jquery.flot.tooltip.min.js', 'resources/admindek/files/bower_components/chartist/js/chartist.js', 'resources/admindek/files/assets/pages/widget/amchart/amcharts.js', 'resources/admindek/files/assets/pages/widget/amchart/serial.js', 'resources/admindek/files/assets/pages/widget/amchart/light.js', 'resources/admindek/files/assets/js/pcoded.min.js', 'resources/admindek/files/assets/js/vertical/vertical-layout.min.js', 'resources/admindek/files/assets/pages/dashboard/custom-dashboard.min.js', 'resources/admindek/files/vendor/summernote/summernote-bs4.min.js', 'resources/admindek/files/assets/js/script.min.js', ], 'public/admin/js/all.js');
javascript
Call of Duty Modern Warfare 2's release is getting closer with each passing day. While the gaming behemoth is about to showcase what's under the roof for their most ambitious project, fans are wondering when they can start pre-loading the game. Players who purchased the game's standard edition or the vault edition early will get the franchise's first campaign early access as a pre-order bonus. As excitement has reached sky-high, it is no surprise that fans would want to get a taste of the world of Modern Warfare as soon as possible. As Call of Duty allows players to pre-load the game before the release time, the same goes with Modern Warfare 2. However, the only information available right now is for PlayStation users. To learn more about when they can pre-load Modern Warfare 2, read below. Modern Warfare 2's campaign's early access period starts on October 20. Players who have pre-purchased the game will be able to play the story mode for the next iteration of Modern Warfare. However, only users who have ordered the game digitally will be gaining access to the whole story. As per the PlayStation Store, campaign packs for the game can be pre-loaded from October 19. Here are all the details revealed in the PlayStation store. The PlayStation store further revealed the multiplayer and Spec Ops pack pre-load dates as well. For players who are wondering when they can start playing the campaign on October 20, here is the release date and time for early access in all regions. Call of Duty Modern Warfare 2 is the direct sequel to the 2019 title, Modern Warfare. The forthcoming campaign for the game is rumored to be based around a drug cartel in Mexico. Furthermore, it is bringing back the infamous Task Force 141 with Captain John Price reprising his role once again. With the franchise's first campaign early access initiative, Activision is offering more to the community. Players who'll complete the campaign before the official release of the game will receive the rewards listed below. The game is all set to be released on October 28. Following the release of Warzone 2. 0, the ultimate battle royale experience with Call of Duty will also come on November 16 and will be free to play for everyone. GTA 5's mammoth $7,700,000,000 earnings set to be challenged by upcoming game! Know more here.
english
New York: Although South Asia is leading the world in reducing child marriage, it will take 55 years to completely eradicate it if it does not accelerate, says a United Nations report. According to the World News Agency, the report released by the United Nations subsidiary UNICEF said that to achieve the goal of ending child marriage by 2030, the speed of reforms in South Asia should be accelerated 7 times. The report states that Maldives, Sri Lanka, and Pakistan are ranked first, second, and third respectively in South Asian countries in reducing the trend of early marriage. About 18 percent of girls in Pakistan are still married as children, numbering 1.9 million, that is, 1 in 6 girls are married at an early age, even though the legal minimum age for marriage in Pakistan is 18. However, the rate of child marriage in Pakistan is slightly better than the world average of 19 percent, compared to India, Bangladesh, Afghanistan, Nepal, and Bhutan, which lag far behind. Bangladesh has the highest child marriage rate in South Asia at 51 percent, while the lowest is in the Maldives at just 2 percent and in India at 34 percent, where one in three girls are married at an early age. It should be remembered that South Asia is leading in the world in reducing child marriages. Yet, one in four girls in South Asia is married before their 18th birthday. The number of child brides in South Asian countries is around 30 crores which is 45% of the world population. 3 out of every 4 brides in the region give birth when they are still teenagers. According to a UNICEF survey, 55 percent of brides in Pakistan believe that wife beating is permissible. 41% of women in India and 33% in Bangladesh also consider violence by their husbands as valid.
english
New Delhi: Pakistan's spy agency Inter-Services Intelligence (ISI) is reportedly planning to carry out a big terror strike in the country during the festival season, a crucial Intelligence alert has revealed. An Intel alert accessed by Times Now was released on September 18 and this is a specific terror input that says that ISI has planned a terror strike in the country ahead of the festive season. The plan is to ‘fix the improvised explosive device (IED) in tiffin box’, reports Times Now's Siddhant. A multiple agency alert has been issued as the plot is at its advanced stage as far as logistics and material are concerned. The alert revealed ISI is planning to place these tiffin bombs in crowded places during festivals, he added. Earlier on September 14, the Special Cell of Delhi Police busted a Pakistan-organised terror module on September 14, averting major terror strikes were averted across the country during the upcoming festivals Navratri and Ramleela. The police arrested six men, including two Pakistan-ISI trained terrorists by conducting multiple raids in different states. The six accused were identified as Jaan Mohammad Sheikh alias 'Sameer', Osama, Moolchand, Zeeshan Qamar, Mohd Abu Bakar and Mohd Amir Javed. Osama and Qamar were taken to Pakistan and working under the instructions of ISI. They were trained to use explosives and firearms, including AK-47. "In a multi-state operation, we have arrested six persons, including two Pakistan-trained terrorists. Two among them, Osama and Qamar had gone to Pakistan for training this year, following which they returned to India,” Special Commissioner of Police (Special Cell) Neeraj Kumar Thakur had said.
english
<filename>source/fansites/news/t-2372374.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="keywords" content="the, week, arena, skirmishes, for, and, this, nithogg, inquisitor, pvp, meto, boss, from, with, event, your, gains, all, honor, quest, kill, player, 2v2, you’ll, matched, either, battle, join, 3v3, window, select, hotkey, default, tab, under, battles, then, teammates, bottom, choose, https://www.wowdb.com/npcs/111246-archmage-timear, passive, buff, 50%, box, loot, reward, you’ve, some, make" /> <meta name="description" content="&lt;img src=&quot;https://media.mmo-champion.com/images/news/2011/november/d3.png&quot; style=&quot;margin-bottom:-2px; margin-right:0px; vertical-align:bottom&quot; /&gt; Challenge Rift - Week 32 &lt;img src=&quot;https://media.mmo-champion.com/images/news/2013/march/hearthstoneIcon.png&quot; style=&quot;margin-bottom:-2px; margin-right:0px; vertical-align:bottom&quot; /&gt; Patches the Pirate Loses Charge - Four Card Nerfs Coming in February Greater Invasion Boss - Inquisitor Meto Inquisitor Meto is up this week, rewarding item level" /> <title> Inquisitor Meto, Nithogg, Arena Skirmish Event [Archive] - MMO-Champion</title> <link rel="stylesheet" type="text/css" href="https://www.mmo-champion.com/archive/archive.css" /> </head> <body> <div class="pagebody"> <div id="navbar"><a href="https://www.mmo-champion.com/archive/index.php">MMO-Champion</a> &gt; <a href="https://www.mmo-champion.com/archive/index.php/f-242.html">News</a> &gt; <a href="https://www.mmo-champion.com/archive/index.php/f-252.html">News</a> &gt; Inquisitor Meto, Nithogg, Arena Skirmish Event</div> <hr /> <div class="pda"><a href="https://www.mmo-champion.com/archive/index.php/t-2372374.html?pda=1" rel="nofollow">PDA</a></div> <p class="largefont">View Full Version : <a href="https://www.mmo-champion.com/threads/2372374-Inquisitor-Meto-Nithogg-Arena-Skirmish-Event">Inquisitor Meto, Nithogg, Arena Skirmish Event</a></p> <hr /> <div class="floatcontainer"> </div><br /> <div class="post"><div class="posttop"><div class="username">Stoy</div><div class="date">2018-01-30, 05:56 PM</div></div><div class="posttext">&lt;img src=&quot;https://media.mmo-champion.com/images/news/2011/november/d3.png&quot; style=&quot;margin-bottom:-2px; margin-right:0px; vertical-align:bottom&quot; /&gt; Challenge Rift - Week 32 (http://www.diablofans.com/news/48984-challenge-rift-week-32)<br /> <br /> &lt;img src=&quot;https://media.mmo-champion.com/images/news/2013/march/hearthstoneIcon.png&quot; style=&quot;margin-bottom:-2px; margin-right:0px; vertical-align:bottom&quot; /&gt; Patches the Pirate Loses Charge - Four Card Nerfs Coming in February (http://www.hearthpwn.com/news/4349-patches-the-pirate-loses-charge-four-card-nerfs)<br /> <br /> Greater Invasion Boss - Inquisitor Meto<br /> Inquisitor Meto is up this week, rewarding item level 930 gear.<br /> <br /> <br /> https://media.mmo-champion.com/images/news/2017/september/metoBanner.png (https://www.mmo-champion.com/content/6925-Patch-7-3-Invasion-Points#InquisitorMeto) <br /> <br /> <br /> World Boss - Nithogg<br /> Scourge of the Skies (https://www.wowdb.com/quests/42270-scourge-of-the-skies) is up this week, sending players to kill Nithogg (https://www.wowdb.com/npcs/107023-nithogg)! He is also another option for Warriors to get the Skull of Nithogg (https://www.wowdb.com/items/140658-skull-of-nithogg) for their hidden artifact appearance. <br /> <br /> <br /> http://media.mmo-champion.com/images/news/2016/november/nithogg.jpg (https://www.mmo-champion.com/content/595-Legion-World-Bosses#nithogg) <br /> <br /> https://media.mmo-champion.com/images/news/2016/november/thumb/skullWarrior.jpg (https://media.mmo-champion.com/images/news/2016/november/skullWarrior.jpg)<br /> https://media.mmo-champion.com/images/news/2014/june/mvbar900.jpg <br /> <br /> <br /> Weekly Bonus Event - Arena Skirmishes<br /> Sharpen your swords and reinforce your boards, because you’re called to the PvP Arena for the hectic mayhem of Skirmishes.<br /> <br /> This Week: Arena Skirmishes<br /> All week, from anywhere in Azeroth, open the Group Finder (default hotkey: i), select the Player vs. Player tab on the bottom of the window, and then under Arena Battles, choose either 2v2 or 3v3 and JOIN BATTLE. You’ll be matched up with teammates and provided with opponents to kill in the Arena.<br /> <br /> Look for the following all week long:<br /> <br /> <br /> Archmage Timear (https://www.wowdb.com/npcs/111246-archmage-timear) near Violet Hold in Dalaran has a quest (https://www.wowdb.com/quests/44172-the-arena-calls) for you.<br /> <br /> Quest requirement: Win 10 Arena PvP Skirmishes<br /> Reward: A PvP loot box <br /> <br /> Passive buff: +50% honor gains from Skirmishes<br /> <br /> <br /> If you’ve been looking to make some Honor gains, this is the week to do it!</div></div><hr /> <div id="copyright">Powered by vBulletin&trade; Copyright &copy; 2019 vBulletin Solutions, Inc. All rights reserved.</div> </div> </body> </html>
html
<rx-metadata> <section> <rx-meta label="Name"> Lorem ipsum dolor sit amet </rx-meta> <rx-meta label="ID"> 1aa2bfa9-de8d-42f7-9f6d-e6437855b36e </rx-meta> <rx-meta label="Region"> ORD </rx-meta> <rx-meta label="Created"> December 2, 2014 @ 14:28 </rx-meta> <rx-collapse class="demo-no-title" expanded="false"> <rx-meta label="Name"> Lorem ipsum dolor sit amet </rx-meta> <rx-meta label="ID"> 1aa2bfa9-de8d-42f7-9f6d-e6437855b36e </rx-meta> <rx-meta label="Region"> ORD </rx-meta> <rx-meta label="Created"> December 2, 2014 @ 14:28 </rx-meta> </rx-collapse> </section> </rx-metadata>
html
.inf_wrapper { width: 100%; max-width: 1000px; margin: 0 auto; } .inf_wrapper span{ display: inline-block; } .inf_top { position: relative; border-bottom: 15px solid #ffffff; } .inf_wrapper img { max-width: 100%; vertical-align: middle; } .inf_tablet_wrapper { position: absolute; bottom: 0; width: 100%; text-align: center; } .inf_tablet_inner_holder { display: inline-block; position: relative; width: 39%; } .inf_wrapper img { max-width: 100%; vertical-align: middle; } .inf_youtube_wrapper { position: absolute; top: 0; display: inline-block; width: 100%; left: 0; } .inf_youtube { vertical-align: middle; width: 53%; position: relative; right: 4%; height: 100%; } .inf_hands_wrapper { position: absolute; left: 0; width: 100%; bottom: -20px; } .inf_hands_inner_holder { display: inline-block; width: 55%; position: relative; } .inf_iframe_holder { display: inline-block; position: absolute; top: 0; width: 100%; left: 0; padding-top: 5%; height: 60%; overflow: hidden; } .inf_soaring { margin: 15px 0 0; } .inf_error { width: 16.6% !important; } .inf_error_holder { width: 100%; text-align: center; position: absolute; bottom: -6%; } .inf_traffic { position: relative; z-index: 2; } .bottlenecker_wrapper { position: relative; z-index: 9; } .inf_footer_wrapper { margin: -10% 0 0 0; position: relative; } .inf_request_damo_wrapper { text-align: center; } .inf_footer_wrapper .inf_request_damo_wrapper .inf_request_demo { text-decoration: none; background: #ca2133; color: #ffffff !important; font-size: 110% !important; font-family: "Averta Bold", sans-serif; font-weight: bold; padding: 1.5% 2%; display: inline-block; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .inf_footer_wrapper .inf_request_damo_wrapper .inf_request_demo:hover { background: #da2133 !important; text-decoration: none !important; } .inf_request_damo_wrapper { text-align: center; position: absolute; top: 27%; width: 100%; } .inf_learn_inner_holder { width: 95%; max-width: 440px; margin: 0 auto; } .inf_learn_more_wrapper { width: 100%; margin: 0 auto; position: absolute; bottom: 33%; } .inf_streaming_links { padding: 0; list-style: none; } .inf_learn_more_title { color: #ffffff; font-size: 18px; font-family: "Averta Bold", sans-serif; margin: 0 0 10px 0; white-space: nowrap; } .inf_footer_wrapper .inf_learn_more_wrapper .inf_streaming_links li a { color: #ffffff !important; font-family: "Averta", sans-serif !important; text-decoration: none; font-size: 15px !important; } .inf_streaming_links li a:hover { text-decoration: underline; } .inf_streaming_links li { position: relative; padding: 0 0 0 15px; white-space: nowrap; } .inf_streaming_links li:before { content: ''; width: 10px !important; height: 10px !important; display: inline-block; background: #c92033 !important; border-radius: 10px !important; position: relative; top: 9px !important; left: 0 !important; } .bottlenecker { z-index: 9; position: relative; } .inf_error_holder { position: absolute; left: 0; z-index: 9; } @media screen and (max-width: 930px){ } @media screen and (max-width: 768px){ .inf_request_demo { font-size: 100%; } } @media screen and (max-width: 600px){ .inf_footer_wrapper .inf_learn_more_wrapper .inf_streaming_links li a { font-size: 2.5vw !important; } .inf_learn_more_title { font-size: 2.9vw; } .inf_footer_wrapper .inf_request_damo_wrapper .inf_request_demo { font-size: 3vw !important; } } @media screen and (max-width: 550px){ .inf_learn_more_wrapper { bottom: 27%; } .inf_footer_wrapper .inf_learn_more_wrapper .inf_streaming_links li { line-height: 20px !important; } } @media screen and (max-width: 450px){ .inf_footer_wrapper .inf_request_damo_wrapper .inf_request_demo { padding: 0.5% 2%; } .inf_learn_more_title { margin: 0; } }
css
There is no proposal to merge the existing Aadhar database to the NPR under consideration of the Government. The biometrics enrolment in the 12 NPR States/UTs, namely; J&K, Nagaland, Manipur, Mizoram, Meghalaya, Assam, West Bengal, Orissa, Arunachal Pradesh, Lakshadweep, Tamil Nadu and Dadra &Nagar Haveli will be completed by June, 2015. This was stated by Minister of State for Home Affairs Shri Kiren Rijiju in a written reply to Dr. T.N.Seema in the Rajya Sabha today.
english
# Ideally "tests" directory should not be treated as a package (no __init__.py file). # Read more: http://docs.python-guide.org/en/latest/writing/structure/
python
<filename>src/main/resources/assets/minecraft/blockstates/black_wool_slab.json { "variants": { "type=bottom": { "model": "minecraft:block/black_wool_slab" }, "type=top": { "model": "minecraft:block/black_wool_slab_top" }, "type=double": { "model": "block/black_wool" } } }
json
<filename>src/main/adapters/adaptExpressRoute.ts<gh_stars>0 import { RequestHandler, Response } from 'express' import { Controller } from '@/application/contracts' type Adapter = (controller: Controller) => RequestHandler export const adaptExpressRoute: Adapter = controller => async (req, res): Promise<Response> => { const { statusCode, body } = await controller.handle({ ...req.body }) return res.status(statusCode).json(body) }
typescript
Ye Hai Roji Roti song is a Bhojpuri devotional song from the Bhajan Mala released on 2016. Music of Ye Hai Roji Roti song is composed by KL. Pandey. Ye Hai Roji Roti was sung by Divya Dinesh Sharma. Download Ye Hai Roji Roti song from Bhajan Mala on Raaga.com.
english
Parnell to Ben McDermott, FOUR, such a poor ball with the fielders inside the circle. A high full toss but just below the waist and outside off. McDermott goes after it and slices it over short third man. Kevin O Brien to Ben McDermott, SIX, McDermott wants to get done with this asap. This is exhibition of power hitting. Gets hold of the length ball and slaughters it over mid-wicket again. He's eyeing that area against O'Brien and making the most of it.
english
<filename>solutions/2-tabulation/2-grid-traveler/1-grid-before.js const gridTraveler = (n, m) => { const grid = Array(n).fill().map(_ => Array(m).fill(0)); grid[0][0] = 1 for (let r = 0; r < n; r++) { for (let c = 0; c < m; c++) { if (c < m - 1) { grid[r][c + 1] += grid[r][c]; } if (r < n - 1) { grid[r + 1][c] += grid[r][c]; } } } return grid[n - 1][m - 1]; }; console.log(gridTraveler(1, 1)); // 1 console.log(gridTraveler(2, 2)); // 2 console.log(gridTraveler(2, 3)); // 3 console.log(gridTraveler(3, 2)); // 3 console.log(gridTraveler(3, 3)); // 6 console.log(gridTraveler(18, 18)); // 2333606220
javascript
<gh_stars>1-10 { "CHANGELOG.md": "e3a4775f6c22e36bcdd5eb13d13e8457", "LICENSE": "3b83ef96387f14655fc854ddc3c6bd57", "NOTICE": "efde2bd51a9016ece02e62b22b56c74b", "README.md": "15d58bf11db462730b0a134adc0c2ea9", "data/defaults.yaml": "2676c59a9db2802acc8680df6e27d225", "data/plugin.yaml": "e1cbe826a1fbd20c13efe6419999093a", "files/mcollective/agent/process.ddl": "6f2a7ed46e172517a4ad3513e71db031", "files/mcollective/agent/process.json": "0eef48950ecd4dc865d9b23142936916", "files/mcollective/agent/process.rb": "19bca202404b2745d4ff36ce4f4befc7", "files/mcollective/aggregate/process_summary.ddl": "8f31942a25b44e35772bfeb33a767a2e", "files/mcollective/aggregate/process_summary.rb": "b3e31fe07849f1114945b5baa1ba2401", "files/mcollective/application/process.rb": "ef2c7feddd6c331536c37b698b35d1db", "files/mcollective/data/process_data.ddl": "48f5dc20fe067f31a1b5e0b0aa004c34", "files/mcollective/data/process_data.rb": "b895a7298946410ef4702501efdcd36e", "files/mcollective/util/processagent.rb": "570407c6f91ff48cfc0ee40035a6e57c", "hiera.yaml": "686844de205da23a5552c4a50a517929", "manifests/init.pp": "7e39a31a1a75ae767efc3ae390dfb57f", "metadata.json": "e46f4f1c2ab34f8432406b95adc1aa01" }
json
<gh_stars>1-10 {"text":"Except as otherwise provided in § 21-2402.04, a court that has appointed a guardian or issued a protective order consistent with this chapter has exclusive and continuing jurisdiction over the proceeding until it is terminated by the court or the appointment or order expires by its own terms.","historical":"Legislative History of Laws\n\nFor Law 17-270, see notes following § 21-2401.01.\n\nUniform Law\n\nThis section is based upon § 205 of the Uniform Adult Guardianship and Protective Proceedings Jurisdiction Act. See Vol. 8A, Uniform Laws Annotated, Master Edition, or ULA Database on Westlaw.\n\nDC CODE § 21-2402.05\n\nCurrent through December 11, 2012","credits":"(Nov. 25, 2008, D.C. Law 17-270, § 2(b), 55 DCR 11018.)","sections":[],"division":{"identifier":"III","text":"Decedents' Estates and Fiduciary Relations."},"title":{"identifier":"21","text":"Fiduciary Relations and Persons with Mental Illness. (Refs & Annos)"},"chapter":{"identifier":"24","text":"Adult Guardianship and Protective Proceedings Jurisdiction; Uniform Act. (Refs & Annos)"},"subchapter":{"identifier":"II","text":"Jurisdiction."},"heading":{"title":"21","chaptersection":"2402","identifier":"21-2402.05","catch_text":"Exclusive and continuing jurisdiction."}}
json
Former Intercontinental Champion Cody Rhodes appeared on WWE RAW this week to kickstart his Road to WrestleMania. He crossed paths with Paul Heyman, who appeared on the Titantron during the segment but claimed to be backstage. Twitter erupted over the segment as The Wiseman made some disturbing comments. The Special Counsel to Roman Reigns attempted to warn The American Nightmare about what to expect from their title feud. Heyman tried to provoke Cody Rhodes and, in his attempt, made a controversial comment. Heyman claimed that Cody Rhodes wouldn't be able to beat Roman Reigns in a man-to-man contest. He then posed a hypothetical question, asking if The American Nightmare was prepared to take on the responsibilities of the champion, which would require him to be on the road for most of the year. The Wiseman then said Cody Rhodes would end up compromising his marriage like his father Dusty Rhodes did because even when he was home, he was never really 'home.' Paul Heyman took it further by saying that he wouldn't say anything vulgar like Roman Reigns would keep Cody Rhodes' wife, Brandi Rhodes, happy on cold winter nights. He then said that Reigns is a happily married man, but he isn't. "I know what you are thinking. I am about to say something vile and vulgar like, 'Oh, don't worry, Cody. On a cold winter night, Roman Reigns will keep your wife warm.' I would never say something like that. Roman Reigns is a happily married man, but I am not. And I assure you, Cody Rhodes., that's when you are going to find out that your WrestleMania dreams will become your own personal nightmare." Heyman's comments on WWE RAW instantly garnered attention on social media as fans hailed the Wiseman for rattling Roman Reigns' challengers with deeply personal comments. Twitter erupted in response to Paul Heyman's recent claims on WWE RAW. Here's how fans reacted: Paul Heyman has insulted Cody Rhodes' father and wife in their last two meetings on WWE RAW. It will be interesting to see how The American Nightmare responds when they meet on the Road to WrestleMania 39.
english
import typing as t __all__ = ["Cell", "ListObject", ] class Cell(t.NamedTuple): """Field data representation for html template""" value: t.Any url: t.Tuple[str, t.Dict[str, t.Union[str, int]]] is_safe: bool = False class ListObject(t.NamedTuple): rows: t.List[t.List[Cell]] has_next: bool has_prev: bool count: t.Optional[int] active_page: t.Optional[int] per_page: int next_id: t.Optional[int]
python
{#- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -#} {% extends 'forgewiki:templates/wiki/master.html' %} {% from 'allura:templates/jinja_master/lib.html' import abbr_date with context %} {% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}} / {{title}}{% endblock %} {% block header %}{{title}}{% endblock %} {% block actions %} {{ g.icons['eye'].render(href='.', title='View Page') }} {% endblock %} {% block wiki_content %} {{c.page_size.display(limit=limit,count=count,page=page)}} <form method="get" action="diff"> <div class="grid-19"><input type="submit" value="Compare revisions"/></div> <div style="clear:both"></div> <table> <thead> <tr> <th>Version</th> <th>Date</th> <th>V1</th> <th>V2</th> <th>&nbsp;</th> </tr> </thead> <tbody> {% for p in pages %} <tr> <td>{{p.version}} by {{p.author.display_name}} ({{p.author.username}})</td> <td>{{abbr_date(p.mod_date)}}</td> <td><input name="v1" type="radio" value="{{p.version}}"/></td> <td><input name="v2" type="radio" value="{{p.version}}"/></td> <td class="tright"> {% if not loop.first and h.has_access(p, 'edit')() %} {{ g.icons['revert'].render( extra_css='post-link', title='Revert to version {}'.format(p.version), **{'data-dialog-id': p.version}) }} <div class="confirmation_dialog_{{p.version}}" style="display:none"> {{ g.icons['close'].render(tag='b', extra_css='close') }} <h1>Confirm revert to version {{p.version}}</h1> <p> Do you really want to revert page to version {{p.version}}? You can undo it later by reverting changes made by this revert. </p> <p> <button class="continue_confirm" href="./revert?version={{p.version}}">Yes</button> <input type="button" value="Cancel" class="cancel_confirmation close"> </p> </div> {% endif %} {{ g.icons['eye'].render(href='./?version={}'.format(p.version), title='View Revision') }} </td> </tr> {% endfor %} </tbody> </table> </form> {{c.page_list.display(limit=limit, page=page, count=count)}} {{c.confirmation.display(content='')}} {% endblock %}
html
{ "workbench.colorTheme": "Material Theme Lighter", "workbench.iconTheme": "material-icon-theme", "workbench.colorCustomizations": {}, "eslint.alwaysShowStatus": true, "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "eslint.runtime": "", "terminal.integrated.fontFamily": "MesloLGS NF", "editor.formatOnSave": false, "explorer.confirmDragAndDrop": false, "window.zoomLevel": 0, "editor.fontFamily": "Fira Code", "editor.fontLigatures": true }
json
British homeware discount chain Wilko has collapsed into administration, a form of creditor protection that puts its 12,000 jobs in danger, it said on Thursday. "We left no stone unturned when it came to preserving this incredible business but must concede that with regret, we've no choice but to take the difficult decision to enter into administration," Wilko boss Mark Jackson said. Britain's Wilko, a discount retail chain which sells homeware and household goods, is at risk of collapse after it filed a notice of intention to appoint administrators on Thursday, putting 12,000 jobs on the line if no buyer can be found. The group, whose shares surged last month after a report of possible takeover interest from Amazon, made earnings before interest, tax, depreciation and amortisation (EBITDA) of 16.6 million pounds ($21.7 million) in the six months to May 28, versus a loss of 13.6 million a year earlier. The head of Britain's anti-trust regulator said it was not seeking to create a "hostile environment" for tech companies with its decision to block Microsoft's $69 billion acquisition of Activision Blizzard. While research on AI has been going on for years, the sudden popularity of generative AI applications such as OpenAI's ChatGPT and Midjourney have led to a scramble by lawmakers to find ways to regulate any uncontrolled growth, and unintended consequences. The change comes roughly a year after Britain lowered the threat level for the province to "substantial" for the first time in more than a decade. It also comes ahead of next month's 25th anniversary of the Good Friday Agreement peace deal that largely ended the "Troubles," three decades of violence that had convulsed Northern Ireland since the late 1960s. The group, which faces a 300 million euro increase in its energy bill this year, also plans to cut 1 billion euros of costs in the next three and a half years, including a simplification of tariffs, he said.There will be an impact on jobs, he said, though roles such as software engineers would still increase. The Royal College of Nursing said it had been forced into the move after years of real-terms wage cuts deterred people from joining the state-funded National Health Service (NHS), leaving huge staffing gaps across the service. Queen Elizabeth, 95, will not attend a festival of remembrance scheduled for Nov. 13 but has a "firm intention" to be present at a national service of remembrance for military veterans on Nov. 14, the palace added. Vectura's Chairman Bruno Angelici said the company had made strong progress since embarking on a strategy in 2019 to become a leading inhalation-focused CDMO, or contract development and manufacturing organisation. The next few weeks of the COVID-19 pandemic will be the worst as the new highly infectious variants of the virus rampage across the country, the British government's chief medical adviser said on Monday.
english
<reponame>LucasPaniagoo/html-css<filename>modulo01/formatacao/formatacao002.html<gh_stars>0 <!DOCTYPE html> <html lang="pt-br"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Testando</title> </head> <body> <h1>Testando as formatações da aula 22</h1> <h2>Mark</h2> <p> Aqui eu vou testar algumas coisas como o <mark>mark</mark>, que seve para colocar um <mark>marca texto em cima do conteudo escolhido</mark></p> <h2>Ins</h2> <p>O ins serve para <ins>sublinhar</ins> as coisas, porém como <strong>HTML</strong> dá sentido as coisas, isso <ins>não pode ser levado apenas como forma</ins>.</p> <h2>Small</h2> <p>Small é uma tag que deixa o texto pequeno, mas como dito acima é mais do que forma. E é exatemnte por isso que o <big>Big</big> não existe mais (caiu em desuso). <small>Mas a small segue firme e forte.</small></p> <h2>Del</h2> <p><del>Vem para da uma ideia de texto que foi não tem mais sentido mas deve ser lido.</del></p> <h2>Sub e Sup</h2> <p>O sub serve para coisas que ficam abaixo da formatação, como por exemplo: H<sub>2</sub>O</p> <p>Já o sup serve para coisa que ficam acima, como por exemplo: 2<sup>4</sup> x 5 = x</p> </body> </html>
html
On September 07, 2023 two days prior to the historic G20 summit in New Delhi, Prime Minister Narendra Modi attended the 20th Asean-India Summit and the 18th East Asia Summit, which highlights the importance of ASEAN countries in India’s foreign policy matrix. Attending the ASEAN summit just before the important G20 summit reaffirms India’s commitment to strengthen a comprehensive strategic partnership with ASEAN in line with the principle of ASEAN centrality. Let us look into why ASEAN matters to India and how, in the last three decades, the relationship between ASEAN and India has evolved. To understand why ASEAN matters to India, we first have to look into the conditions under which ASEAN came into being along with the fundamental principles of the organisation. Amid the geopolitical rivalries and block politics of the Cold War, August 08, 1967 the leaders of Indonesia, Malaysia, the Philippines, Singapore and Thailand came together and signed what is today famously known as the ASEAN Declaration, thus giving birth to the Association of Southeast Asian Nations. Subsequently, in the next few decades, especially after the end of the Cold War, other countries from the region, such as Brunei (1984), Vietnam (1995), Lao PDR (1997), Myanmar (1997) and Cambodia (1999), have joined the association, further advancing integration in the region. The fundamental principles on which ASEAN functions, and are highlighted by the Treaty of Amity and Cooperation in Southeast Asia (TAC) of 1976, are i) Non-interference in the internal affairs of one another; ii) Settlement of differences or disputes by peaceful manner; iii) Renunciation of the threat or use of force; iv) Effective cooperation among member states, v) Mutual respect for the independence, sovereignty, equality, territorial integrity, and national identity of all nations and vi) The right of every State to lead its national existence free from external interference, subversion or coercion. India Southeast Asia in general and ASEAN in particular share a deep cultural and historical ties that are being supplemented by growing economic integration and the convergence of strategic interests. In 1991, India, with the implementation of LPG (Liberalisation, Privatisation and Globalisation) reforms, opened its economy and, with it, the possibility of higher investments in various sectors. India’s foraging of economic space morphed into the operationalisation of “Look East Policy” by the then PM PV Narasimha Rao government. The Look East Policy opened new pathways for India to take advantage of new opportunities in the various sectors of trade and investment. Due to its successful implementation, India’s trade with ASEAN has risen from US$2.4 billion in 1990 to US$23 billion in 2005. Eventually, in November 2014, during the 12th India-ASEAN summit, PM Modi formally launched the “Act East Policy,” advancing goals enunciated in the erstwhile Look East policy, further enhancing relations with ASEAN along with BIMSTEC countries. ASEAN is a central pillar of India’s Act East policy. As per the latest data, the India-ASEAN trade amount stands at $133 billion, with India having a trade deficit of around $43 billion. As mentioned earlier, from $2.4 billion in 1990 to $133 billion in 2022, economic trade and integration have increased drastically. However, we have to look at these figures in comparison with China, which is by far one of the biggest trade partners of the ASEAN countries, with $975.3 billion in 2022 itself. There has to be more investment by the Indian private sector in ASEAN countries to solidify the overall supply chain vis-à-vis India. The ASEAN-India Free Trade Area (AIFTA), which was signed in 2003 and came into effect in 2010, was further upgraded by adding the services sector, with the signing of the ASEAN-India Trade in Services Agreement, in November 2014, fostering persistent economic integration. AIFTA eliminates tariffs for 75% of goods traded between India and ASEAN and promotes deeper cooperation in areas such as agriculture, fisheries, and forestry; services; mining and energy; science and technology; transport and infrastructure; manufacturing, etc. Connectivity projects in the region further form one of the key pillars of India-ASEAN cooperation. The India-Myanmar-Thailand Trilateral Highway is on the verge of completion, and once finally operationalized, over 1,400 kilometres of highway will connect the Indian city of Moreh in Manipur to Thailand’s Mae Sot through Myanmar. Another such project is the Kaladan Multimodal Project, which will enable India’s multimodal transit connectivity with Southeast Asia. Such connectivity projects help India reduce its dependence on crucial sea routes. Although we cannot abolish waterways, these projects will enable India to supplement maritime routes while doing trade with the Southeast Asian region. With the changing shift in relations between India and China, especially in post-Galwan times, it becomes extremely important for India to develop defensive and offensive capabilities against the adversary. The exasperating attempts by China to alter the status quo in the South China Sea provide an opportunity for India and ASEAN countries to collaborate to establish rules-based order in the Indo-Pacific region. China claims an exclusive economic zone in the South China Sea around the so-called “nine-dash line” based on historical reasons. The ongoing conflicts in the South China Sea between China and several ASEAN member states are one of the major drivers for China in shaping its relations with ASEAN countries. Just like India and China, ASEAN and China’s economies are intertwined; however, due to China repeatedly violating the sovereignty of ASEAN members, ASEAN countries are looking to diversify and de-risk their economy. Further, due to its geographical location being located at the strategic flashpoint of the Strait of Malacca, countries like Indonesia become pivotal in India’s maritime strategy. Various military exercises, one of which was Exercise Samudra Shakti-23, illustrated the strong partnership between India and Indonesia and reaffirmed the commitment of both navies, through cooperative engagement, to promote peace and stability in the region. Countries of ASEAN also see India as a reliable defence partner who can help them develop deterrent capabilities against potential aggressors in the Indo-Pacific. The Philippines is likely to receive the first delivery of the BrahMos cruise missile by this December, strengthening the country’s deterrence capabilities. Further, India is likely to sell BrahMos missiles to Vietnam, bolstering defence cooperation between both countries. In the maritime domain, India has also gifted the active warship INS Kirpan to Vietnam, which will help it secure its sovereignty in the region. This becomes evident with Chinese ships often violating international norms by showing unforeseen coercion in the Indo-Pacific. India also plays a role as a net security provider and first responder in the region through initiatives like SAGAR (Security And Growth for All in the Region), through which we ensure economic growth and security in the region are not affected widely in the face of any unforeseen natural disasters. Prime Minister Modi, during his visit to Indonesia at the India-ASEAN Summit, presented a 12-point proposal to strengthen relations between India and ASEAN in areas such as digital transformation, connectivity, trade and economic engagement, calling for building a rules-based post-COVID World Order. It further called for a collective fight against terrorism, terror financing and cyber-disinformation, in addition to calling for cooperation in disaster management and enhanced cooperation on maritime safety, security and domain awareness. Reaffirming the principle of ASEAN centrality in the Indo-Pacific, the PM highlighted the synergies between India’s Indo-Pacific Ocean’s Initiative (IPOI) and ASEAN’s Outlook on the Indo-Pacific (AOIP). He also called for a review of the ASEAN-India FTA in a time-bound manner to rationalise the trade imbalance under the current agreement. At the East Asia Summit, calling ASEAN the focal point of Quad’s vision, PM Modi emphasised Quad’s aim of ensuring a free, open, and rules-based Indo-Pacific. The Prime Minister advocated a cooperative approach to address global challenges, including terrorism, climate change, resilient supply chains, etc. He accentuated India’s steps in the area of climate change through initiatives like OSOWOG, ISA, CDRI, and Mission LiFE. It is sine qua non for every country in the region to maintain a code of conduct by following UNCLOS, thus securing the respective country’s sovereignty and territorial integrity. The PM called for compliance with such treaties. With the shifting balance of power and plausible security dilemmas, the relationship between India and ASEAN becomes very important due to their geographical proximity and, as mentioned earlier, economic interlinkages and convergence of strategic interests. With India increasing its maritime prowess, the strategic location of ASEAN countries makes them obvious partners in the region. In addition to defence and security, cooperation in the areas of sustainable development, disaster management, and climate change will benefit the entire region as a whole. The post Why ASEAN Matters to India: Prime Minister Narendra Modi’s visit to Indonesia first appeared on Global Defense News - GSDN. The post Why ASEAN Matters to India: Prime Minister Narendra Modi’s visit to Indonesia appeared first on Global Defense News - GSDN.
english
{"appid": 10460, "name": "The Club", "windows": true, "mac": false, "linux": false, "early_access": false, "lookup_time": 1490963544}
json
<filename>prototype3/onto-search/public/CamerPedia/node_modules/gojs/intro/modules.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, viewport-fit=cover"/> <link rel="stylesheet" href="../assets/css/style.css"/> <!-- Copyright 1998-2021 by Northwoods Software Corporation. --> <title> GoJS with ES6 Modules -- Northwoods Software </title> <link rel="stylesheet" href="../assets/css/prism.css" /> </head> <script> window.diagrams = []; window.goCode = function(pre, w, h, parentid, animation) { window.diagrams.push([pre, w, h, parentid, animation]); } </script> <body> <nav id="navTop" class="w-full z-30 top-0 text-white bg-nwoods-primary"> <div class="w-full container max-w-screen-lg mx-auto flex flex-wrap sm:flex-nowrap items-center justify-between mt-0 py-2"> <div class="md:pl-4"> <a class="text-white hover:text-white no-underline hover:no-underline font-bold text-2xl lg:text-4xl rounded-lg hover:bg-nwoods-secondary " href="../"> <h1 class="mb-0 p-1 ">GoJS</h1> </a> </div> <button id="topnavButton" class="rounded-lg sm:hidden focus:outline-none focus:ring" aria-label="Navigation"> <svg fill="currentColor" viewBox="0 0 20 20" class="w-6 h-6"> <path id="topnavOpen" fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM9 15a1 1 0 011-1h6a1 1 0 110 2h-6a1 1 0 01-1-1z" clip-rule="evenodd"></path> <path id="topnavClosed" class="hidden" fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"></path> </svg> </button> <div id="topnavList" class="hidden sm:block items-center w-auto mt-0 text-white p-0 z-20"> <ul class="list-reset list-none font-semibold flex justify-end flex-wrap sm:flex-nowrap items-center px-0 pb-0"> <li class="p-1 sm:p-0"><a class="topnav-link" href="../learn/">Learn</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="../samples/">Samples</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="../intro/">Intro</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="../api/">API</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="https://www.nwoods.com/products/register.html">Register</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="../download.html">Download</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="https://forum.nwoods.com/c/gojs/11">Forum</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="https://www.nwoods.com/contact.html" target="_blank" rel="noopener" onclick="getOutboundLink('https://www.nwoods.com/contact.html', 'contact');">Contact</a></li> <li class="p-1 sm:p-0"><a class="topnav-link" href="https://www.nwoods.com/sales/index.html" target="_blank" rel="noopener" onclick="getOutboundLink('https://www.nwoods.com/sales/index.html', 'buy');">Buy</a></li> </ul> </div> </div> <hr class="border-b border-gray-600 opacity-50 my-0 py-0" /> </nav> <div class="md:flex flex-col md:flex-row md:min-h-screen w-full max-w-screen-xl mx-auto"> <div id="navSide" class="flex flex-col w-full md:w-40 lg:w-48 text-gray-700 bg-white flex-shrink-0"> <div class="flex-shrink-0 px-8 py-4"> <button id="navButton" class="rounded-lg md:hidden focus:outline-none focus:ring" aria-label="Navigation"> <svg fill="currentColor" viewBox="0 0 20 20" class="w-6 h-6"> <path id="navOpen" fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM9 15a1 1 0 011-1h6a1 1 0 110 2h-6a1 1 0 01-1-1z" clip-rule="evenodd"></path> <path id="navClosed" class="hidden" fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"></path> </svg> </button> </div> <nav id="navList" class="min-h-screen hidden md:block sidebar-nav flex-grow px-1 lg:px-4 pb-4 md:pb-0 md:overflow-y-auto break-words"> <a href="index.html">Basics</a> <a href="buildingObjects.html">Building Parts</a> <a href="usingModels.html">Using Models</a> <a href="dataBinding.html">Data Binding</a> <a href="react.html">GoJS with React</a> <a href="angular.html">GoJS with Angular</a> <a href="textBlocks.html">TextBlocks</a> <a href="shapes.html">Shapes</a> <a href="pictures.html">Pictures</a> <a href="panels.html">Panels</a> <a href="tablePanels.html">Table Panels</a> <a href="brush.html">Brushes</a> <a href="sizing.html">Sizing Objects</a> <a href="itemArrays.html">Item Arrays</a> <a href="changedEvents.html">Changed Events</a> <a href="transactions.html">Transactions</a> <a href="viewport.html">Coordinates</a> <a href="initialView.html">Initial View</a> <a href="collections.html">Collections</a> <a href="links.html">Links</a> <a href="linkLabels.html">Link Labels</a> <a href="connectionPoints.html">Link Points</a> <a href="ports.html">Ports</a> <a href="nodes.html">Nodes</a> <a href="debugging.html">Debugging</a> <a href="layouts.html">Layouts</a> <a href="trees.html">Trees</a> <a href="subtrees.html">SubTrees</a> <a href="groups.html">Groups</a> <a href="subgraphs.html">SubGraphs</a> <a href="sizedGroups.html">Sized Groups</a> <a href="selection.html">Selection</a> <a href="highlighting.html">Highlighting</a> <a href="animation.html">Animation</a> <a href="toolTips.html">ToolTips</a> <a href="contextmenus.html">Context Menus</a> <a href="events.html">Diagram Events</a> <a href="tools.html">Tools</a> <a href="commands.html">Commands</a> <a href="permissions.html">Permissions</a> <a href="validation.html">Validation</a> <a href="HTMLInteraction.html">HTML Interaction</a> <a href="layers.html">Layers &amp; Z-ordering</a> <a href="palette.html">Palette</a> <a href="overview.html">Overview</a> <a href="resizing.html">Resizing Diagrams</a> <a href="replacingDeleting.html">Replacing and Deleting</a> <a href="buttons.html">Buttons</a> <a href="templateMaps.html">Template Maps</a> <a href="legends.html">Legends and Titles</a> <a href="extensions.html">Extensions</a> <a href="geometry.html">Geometry Strings</a> <a href="grids.html">Grid Patterns</a> <a href="graduatedPanels.html">Graduated Panels</a> <a href="makingImages.html">Diagram Images</a> <a href="makingSVG.html">Diagram SVG</a> <a href="printing.html">Printing</a> <a href="serverSideImages.html">Server-side Images</a> <a href="nodeScript.html">GoJS in Node.js</a> <a href="testing.html">Testing</a> <a href="storage.html">Storage</a> <a href="performance.html">Performance</a> <a href="source.html">Building from Source</a> <a href="platforms.html">Platforms</a> <a href="deployment.html">Deployment</a> </nav> </div> <div class="pt-4 px-2 md:px-0 lg:px-4 pb-16 w-full overflow-hidden"> <div id="container" class="container-fluid"> <div id="content"> <h1>GoJS and ES6 Modules</h1> <p> The GoJS kit contains examples of using GoJS with ES6 modules. </p> <h2 id="GoJSDirectly">Using GoJS as an ES6 module</h2> <p> By default the GoJS library does not use the <code>export</code> keyword, for compatibility reasons. So we have had to provide different libraries that are ES6 modules. In the <code>release</code> folder, they are the <code>go-module.js</code> and <code>go-debug-module.js</code> libraries. In addition, there is an ES6 module-specific TypeScript definition file: <code>go-module.d.ts</code>. </p> <p> In <code>samplesTS</code>, the <a href="../samplesTS/minimalModule.html">minimalModule.html</a> sample uses ES6. It references: </p> <pre class="lang-ts"><code>import * as go from '../release/go-module.js';</code></pre> <p>In order to load GoJS and other ES6 modules, the HTML page also uses the <code>type="module"</code> script tag:</p> <pre class="lang-html"><code> &lt;!-- requires minimalModule.js, built from minimalModule.ts --&gt; &lt;script type="module"&gt; import { init } from "./minimalModule.js"; // lib needs: export const go = self.go; window.onload = function() { init(); } &lt;/script&gt; </code></pre> <p> Most browsers will not display resources with <code>&lt;script type="module"&gt;</code> if they are served from a local file system, so you may need to open <code>minimalModule.html</code> from a server to see the results on localhost:. </p> <h2 id="GoJSES6">GoJS Extensions as ES6 Modules</h2> <p> The extension classes can also be loaded as ES6 modules if you modify the <code>tsconfig.json</code> configuration in the <code>extensionsTS</code> folder, and then rebuild. </p> <pre class="lang-json"><code> { "compilerOptions": { "target": "es6", "strict": true } }</code></pre> <p> Recompiling those TypeScript classes will then produce module-friendly JS libraries. </p> <p> Depending on your toolchain, you could also include compiler options directly into your project, as is done in the <a href="https://github.com/NorthwoodsSoftware/GoJS-projects/tree/master/vue-webpack">vue-webpack GoJS project</a>. In its <code>webpack.config.js</code> file, we specify new compiler options for the TypeScript loader so that Webpack + Vue compiles the extensions with ES6 module support instead of the <code>extensionsTS</code> defaults. </p> <pre class="lang-json"><code> /* ... in webpack.config.ts in the vue-webpack project ... */ // files with `.ts` or `.tsx` extension will be handled by `ts-loader` { test: /\.tsx?$/, loader: 'ts-loader', options: { // We want to override the tsconfig file currently in: // vue-webpack\node_modules\gojs\extensionsTS // Because it uses ES5 + umd modules and we want to use ES6 + ES6. compilerOptions: { "module": "ES6", "target": "ES6", "noImplicitAny": true } }</code></pre> <h2 id="GoJSRequireJS">GoJS with <code>RequireJS</code></h2> <p> Both the <code>go.js</code> library and the <code>go-debug.js</code> library can be loaded via <a href="https://requirejs.org/">RequireJS</a>. </p> <p> The <code>extensionsTS</code> directory contains all of the extension classes from the <code>extensions</code> directory, but in TypeScript and pre-compiled as UMD modules. This is reflected in that directory's <code>tsconfig.json</code>: </p> <pre class="lang-json"><code> { "compilerOptions": { "module": "umd", "target": "es5", "strict": true } }</code></pre> <p> The generated JavaScript can then be loaded as UMD modules via <code>require</code>. </p> <pre class="lang-html"><code> &lt;script src="../samples/assets/require.js"&gt;&lt;/script&gt; &lt;script id="code"&gt; function init() { require(["CheckBoxesScript"], function (app) { app.init(); }); } &lt;/script&gt;</code></pre> <h2 id="GoJSWithES6Modules">GoJS with ES6 Modules</h2> <p> The GoJS library is available as an ES6/JavaScript module at <code>release/go-module.js</code>. A debug version is also available: <code>release/go-debug-module.js</code>. </p> <p> Samples and extension classes as modules are in the <code>extensionsJSM</code> directory. These include the modules directly using the <code>type="module"</code> <code>script</code> tag. For example, in the sample <a href="../extensionsJSM/LinkLabelDragging.html">LinkLabelDragging</a>: </p> <pre class="lang-html"><code> &lt;script type="module" id="code"&gt; import * as go from "../release/go-module.js"; import { LinkLabelDraggingTool } from './LinkLabelDraggingTool.js'; const $ = go.GraphObject.make; const myDiagram = $(go.Diagram, 'myDiagramDiv', ...); // install the LinkLabelDraggingTool as a "mouse move" tool myDiagram.toolManager.mouseMoveTools.insertAt(0, new LinkLabelDraggingTool()); &lt;/script&gt; </code></pre> </div > </div> </div> <div class="bg-nwoods-primary"> <section class="max-w-screen-lg text-white container mx-auto py-2 px-12"> <p id="version" class="leading-none mb-2 my-4">GoJS</p> </section> </div><footer class="bg-white"> <div class="container max-w-screen-lg mx-auto px-8"> <div class="w-full flex flex-col md:flex-row py-6"> <div class="flex-1"> <div class="max-w-screen-lg xl:max-w-screen-xl mx-auto divide-y divide-gray-200 px-4 sm:px-6 md:px-8"> <ul class="text-sm font-medium pb-14 sm:pb-20 grid grid-cols-1 sm:grid-cols-3 gap-y-10"> <li class="list-none row-span-2"> <h2 class="text-base font-semibold tracking-wide">GoJS</h2> <ul class="list-none space-y-4 md:space-y-1 px-0"> <li> <a href="../samples/index.html">Samples</a> </li> <li> <a href="../learn/index.html">Learn</a> </li> <li> <a href="../intro/index.html">Intro</a> </li> <li> <a href="../api/index.html">API</a> </li> <li> <a href="../changelog.html">Changelog</a> </li> <li> <a href="https://github.com/NorthwoodsSoftware/GoJS">GitHub</a> </li> </ul> </li> <li class="list-none row-span-2"> <h2 class="text-base font-semibold tracking-wide">Support</h2> <ul class="list-none space-y-4 md:space-y-1 px-0"> <li> <a href="https://www.nwoods.com/contact.html" target="_blank" rel="noopener" onclick="getOutboundLink('https://www.nwoods.com/contact.html', 'contact');">Contact</a> </li> <li> <a href="https://forum.nwoods.com/c/gojs">Forum</a> </li> <li> <a href="https://www.nwoods.com/app/activate.aspx?sku=gojs">Activate</a> </li> <li> <a href="https://www.nwoods.com/sales/index.html" target="_blank" rel="noopener" onclick="getOutboundLink('https://www.nwoods.com/sales/index.html', 'buy');">Buy</a> </li> <li> <a href="https://www.youtube.com/channel/UC9We8EoX596-6XFjJDtZIDg">Videos</a> </li> </ul> </li> <li class="list-none row-span-2"> <h2 class="text-base font-semibold tracking-wide">Company</h2> <ul class="list-none space-y-4 md:space-y-1 px-0"> <li> <a href="https://www.nwoods.com">Northwoods</a> </li> <li> <a href="https://www.nwoods.com/about.html">About Us</a> </li> <li> <a href="https://www.nwoods.com/contact.html">Contact Us</a> </li> <li> <a href="https://twitter.com/northwoodsgo">Twitter</a> </li> </ul> </li> </ul> </div> <p class="text-sm text-gray-500 md:mb-6"> Copyright 1998-2021 <a href="https://www.nwoods.com">Northwoods Software</a> </p> </div> </div> </footer> </body> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-1506307-5"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-1506307-5'); var getOutboundLink = function(url, label) { gtag('event', 'click', { 'event_category': 'outbound', 'event_label': label, 'transport_type': 'beacon' }); } // topnav var topButton = document.getElementById("topnavButton"); var topnavList = document.getElementById("topnavList"); topButton.addEventListener("click", function() { this.classList.toggle("active"); topnavList.classList.toggle("hidden"); document.getElementById("topnavOpen").classList.toggle("hidden"); document.getElementById("topnavClosed").classList.toggle("hidden"); }); </script> <script src="../assets/js/prism.js"></script> <script src="../release/go.js"></script> <script src="../assets/js/goDoc.js"></script> <script> document.addEventListener("DOMContentLoaded", function() { if (window.go) document.getElementById('version').textContent = "GoJS version " + go.version; if (window.goDoc) window.goDoc(); var d = window.diagrams; for (var i = 0; i < d.length; i++) { var dargs = d[i]; goCodeExecute(dargs[0], dargs[1], dargs[2], dargs[3], dargs[4]); } if (window.extra) window.extra(); }); </script> </html>
html
WINDIES opener, Hayley Matthews, has a good feeling about the upcoming, first stand-alone, ICC World Women’s T20 Championship. Cricket Ireland selectors have named an experienced 15-player squad - with collectively more than 1,000 international appearances - for the upcoming ICC Women’s World T20 tournament in the Caribbean in November, with Australian-born Celeste Raack coming into the Irish set-up after declaring for Ireland. England wicketkeeper Sarah Taylor will miss the ICC Women's World T20 in West Indies as she continues to manage her anxiety. The All-India Women’s Selection Committee has picked the Indian Women’s Cricket Squad.. The third round of the ICC Women’s Championship continues this week with four teams looking to climb out of the bottom half of the points table and fine-tune their preparations for the ICC Women’s WT20 2018. ST JOHN’S, Antigua – With just over 100 days to go before the WINDIES Women go after their 2nd World Twenty20 title, the squad just completed another high-performance camp in Antigua. The Ireland Women’s cricket team have booked themselves a place in the ICC Women’s World T20 tournament in November with a nervy, but ultimately comfortable win over Papua New Guinea in Amstelveen today. The Ireland Women’s head coach declared his squad fit and ready to perform at the ICC Women’s World Cup T20 Qualifier tournament in Netherlands over the next 10 days, with a successful campaign seeing them go through to the main event in the Caribbean in November. Tournament kicks off with match between India and New Zealand in Guyana; Australia, Pakistan and the Windies will also be seen in action on opening day. Why Is It Important for Young Women to Get Involved with Sport? New year, new you, or so everyone says. Will 2018 be your year thanks to a change in diet or maybe a new exercise regime? After having led West Indies Women to victory in the 2016 ICC Women’s World Twenty20 on Sunday, Stafanie Taylor has been picked as the captain of the team of the tournament. For winning their respective World Twenty20 tournaments held in India, West Indies Men and Women’s teams win this week’s award from Cricket World. West Indies Women claimed their maiden ICC Women's World T20 title by beating three-time champions Australia Women by eight wickets in the 2016 final in Kolkata. Ireland Women's team captain Isobel Joyce has stepped down from the post after the team exited the ICC Women's World T20 in the group stages. West Indies Women will play Australia Women in the final of the ICC Women's World T20 after they beat New Zealand Women by six runs in their semi-final in Mumbai. England Women's team coach Mark Robinson blamed the lack of fitness as a reason why the team lost to Australia by five runs in the semi-finals of the ICC Women's Twenty20 in India. Australia Women progressed into their fourth consecutive ICC Women's World Twenty20 final after restricting England Women to 127 for seven in a chase of 133 runs with a disciplined bowling performance to secure a five-run victory in the first semi-final of the tournament in Delhi. Chamari Atapattu struck a fifty as Sri Lanka Women set South Africa Women a target of 115 runs before restricting them to 104 for seven in 20 overs to secure a 10-run consolation victory in the Group A encounter of the ICC Women's World Twenty20 in Bangalore. Charlotte Edwards led by example with a fabulous 61-ball knock of 77 runs as England Women went on to defeat Pakistan Women by 68 runs in the Group B encounter of the ICC Women's World Twenty20 in Chennai. Deandra Dottin starred with both the bat and the ball as West Indies Women sent India Women crashing out of the ICC Women's World Twenty20 tournament with a closely fought three-run victory in the Group B encounter in Mohali.
english
<filename>pkg/utils/url.go package utils import ( "golang.org/x/net/html" "net/http" "strings" "time" ) // CheckTargetURL to send GET request to endpoint and return status code and body func CheckTargetURL(url string) (string, int, int64, *html.Node, error) { prefixSplit := strings.Split(url, "://") prefix := "http://" if len(prefixSplit) == 1 { url = prefix + url } else { prefix = prefixSplit[0] + "://" } httpClient := &http.Client{ Timeout: 5 * time.Second, } defer httpClient.CloseIdleConnections() st := time.Now() response, err := httpClient.Get(url) et := time.Now() if err != nil { return "", 0, time.Duration(0).Milliseconds(), nil, err } defer response.Body.Close() rt := et.Sub(st).Milliseconds() baseURL := prefix + response.Request.Host body, err := html.Parse(response.Body) if err != nil { return baseURL, response.StatusCode, rt, nil, err } return baseURL, response.StatusCode, rt, body, nil }
go
Leaf piles have been added to the map in Fortnite Chapter 4 Season 1. Similar to bushes, players can hide in them to ambush unsuspecting opponents or hide from would-be attackers. Although this kind of playstyle is very limited in-game, it can be used to great effect. That said, the developers are tasking players with restoring health and/or shields while hiding in a leaf pile. Although the task is bizarre, those who manage to complete it will receive 16,000 XP in-game and will be able to unlock cosmetics on the Battle Pass sooner. The easiest way to complete this challenge would be to obtain the Bush Warrior Augment and find a leaf pile to enter. Once inside, it will allow you to fully regenerate your hit points and restore 50 shield points in a few seconds (only if damage has been sustained or shields are at zero). Although the task mentions the word 'bush,' the Augment works in leaf piles as well. The only downside to using this method is that since Augments are obtained randomly, it may not be possible for you to get it over the course of a single match. That said, this method is still extremely viable. For those who have bad luck with the RNG Gods, using items to regenerate hit points and restore shields is the best idea. Rather than depending on an Augment to restore health and shields, you can find items that provide healing in-game. Most can be found as floor loot, but others have to be collected/harvested during the match. Once a sufficient quantity of an item has been found/procured, you need to enter a bush and heal yourself using it. Here's a list of all of the healing items currently in-game: Keep in mind that this challenge requires you to either have no shield points and/or a mix-and-match of low hit points and low and/or no shield points. Replenishing/regenerating 100 points worth of either one or both will complete the challenge. On that note, if you have maxed-out health and shield points, you will have to sustain some damage before being able to replenish/regenerate them. In most instances, this will happen naturally in combat. Those wanting to force the process will have to find a leaf pile soon after the landing phase to get shields to max. Alternatively, if your shields are maxed-out, you can set yourself on fire to sustain damage and then heal-up inside a leaf pile. That said, the former method is more advisable than the latter. With the 'how to' aspect out of the way, it's time to address the 'where to' part. Given the medieval theme of Chapter 4 Season 1, finding a leaf pile is not difficult. They can be easily found in the autumn/medieval biomes that are present on the island. In fact, they are often found in small clusters, with each leaf pile being a few meters away from each other. That said, spotting them may be a bit difficult as the yellow/brown leaves blend in seamlessly with the environment. Nevertheless, this problem can be easily overcome by keeping an eye out or by playing with a teammate and asking them to mark any leaf piles they encounter. The Battle Bus is heading into Fortnite Chapter 4 Season 4 soon! Check out the final Fortnite item shop today!
english
WAPIZ partnered with N K Dhabhar Cancer Foundation and OnCare to spread awareness on Cancer on 4th December, 2022, at the Dadar Madressa Hall in Mumbai. It was presided over by Chief Guest – legendary actor and recipient of the Filmfare Lifetime Achievement Award – Aruna Irani, as also eminent ghazal singer and artist – Padmashree Penaz Masani. Excellent cancer-related information was shared through the evening, emphasizing on how early detection tests could save lives. Eminent oncologist, Dr. Boman Dhabhar, shared presentation detailing cancer, its types and causes, statistics, and the need for periodic screening. Dr. Mrs. Khurshid Mistry enlightened the audience on the necessity of making lifestyle changes, nutritional benefits of a healthy diet and different foods which worked for and against one’s health. A helpful interactive Q&A session was followed by a skit performed by the patients, caregivers and faculty of BND ONCO Centre & N K Dhabhar Cancer Foundation, led by Dr. Pouruchisti Boman Dhabhar. The skit touched upon the many therapies offered at the OnCare Centre, including free palliative care to patients, focusing on wellness and promoting mental health while fighting cancer, with exercise, nutrition, counselling, music and dance therapy and mindfulness. Many eminent community members attended the event including Dr. Farokh Master, Dr. Nusly Poncha, Dr. Rohann Bokdawala, Er. Pervez Bajan, Er. Ramiyar Karanjia, Er. Hormuzd Dadachanji, Homai Daruwalla, Capt. Percy Master, Cmdr. Bhada, Cmdr. Aspi Marker, Dr. Adil Malia, Zerick Dastur, Zarine Engineer, Rustom Jasoomoney, Hanoz Mistry, Rita Doctor, Dara Patel, Kerafrid Damania and Zenobia Adajania. It was heartening to see numerous cancer survivors and their care givers. WAPIZ presented a Parsi Gara made by Yashna Dadachanji of Felinaz Collection to Chief Guest – Aruna Irani. The evening concluded with a lively musical performance, which had the audience on its feet, along with light snacks. The Cancer Awareness program was part of WAPIZ’s continuing collaborative partnership with the N.K. Dhabhar Cancer Foundation, which began in 2019 with free Breast Cancer Detection Camps held across several Parsi Baugs and Colonies – all sponsored by WAPIZ through generous donations received in 2019.
english
{"geometry": {"type": "Point", "coordinates": [-76.39, 39.58]}, "type": "Feature", "id": "21050", "properties": {"other_cities": "", "city": "Forest Hill", "state": "MD", "county": "Harford County"}}
json
Mumbai A week after a four-storeyed residential building in Naik Nagar society at Kurla (East) collapsed, claiming 19 lives, and injuring 14 more, the Brihanmumbai Municipal Corporation (BMC) has decided to bring down all the dilapidated buildings in Kurla to avert any such incident in the future. According to BMC data, there are 12 such private buildings in the entire Kurla area that are categorised as a ‘C-1’ structure, which means it is dangerous to inhabit. According to the rules, after a building is older than 35 years, the local ward office sends a notice asking the occupants to submit a structural audit report, following which the civic body decides if the building is fit to reside in or not. Now, the local L ward office of the BMC has said that they have decided to demolish these buildings. “We have started issuing notices to the occupants to vacate them at the earliest. In the past one week, we have disconnected water, sewage, and electricity lines in four different C-1 properties. All these buildings are 80-100 years old, and their foundations have become weak with time,” said Mahadev Shinde, assistant municipal commissioner and in charge of L ward. Shinde said that the process of demolition will be carried out in a step-by-step manner. He added that since these buildings are private properties, the BMC must ensure that all the rules are followed. “The process of sending notices to the building is continuous and we do it every year. But since the recent incident we have taken an aggressive approach to prevent any more loss of lives,” Shinde added. Another senior official of the BMC said that after the sewage and electricity lines are disconnected, the BMC will give time to the owners to file their reply, following which the next course of action will be taken. “These are private buildings so the BMC doesn’t have the authority to raze them entirely. But we will ensure that the owners take cognizance now. Even we are ready to provide all our amenities to them to help them with the demolition works,” the official said. “We have spoken with a few owners as well and some of them have already appointed a contractor to redevelop their building,” said the official. The officials stated that due to the pandemic, the Bombay high court (HC) had also issued a stay in demolition works, which is why buildings were not razed in 2020 and 2021. Meanwhile, the residents of these buildings said that they are confused as to why the civic body listed their property as a C-1 structure. On Wednesday, HT visited six such C-1 properties in Kurla, out of which it has been found that residents were living in two of them, while the rest of them are already evacuated or have gone under redevelopment. One such building was the Ismail Manzil, located near the Kurla station and just opposite the BMC’s L-ward office. This building is a two-storeyed structure that was constructed back in 1935 and currently houses seven families, which includes one family of the owner and six more tenants. Inside the building there were metal pillars erected to support the structure. The wooden staircase and the railings in the balcony would shake when multiple people walked down the corridor. The residents state that three years back, a structural audit was carried out. “The condition of our building is good, only the gallery portion on the first floor and the staircases have become weak. It could be repaired easily. We don’t think that there is any reason for the BMC to list this property as a C-1 structure,” said a tenant of this building requesting anonymity. The tenant further added that in 2019, they carried out a structural audit and submitted a report to the local ward office. “We had also appointed a contractor for repair works. But later, the pandemic started and the process was stalled. Currently, our owners are in dialogue with the civic representatives, and I guess a new builder is being appointed now,” the tenant added. Another owner lamented the lack of affordable housing in the city and said that they “must take shelter on the streets”. Meanwhile, when HT visited the Jairaj Bhuvan Building in New Mill Road, Kurla (West), it was found that the building is partially demolished, and slabs and plasters of the building appeared to be on the brink of collapse. Located inside a congested slum cluster, the building is about a hundred years old. Residents said that the tenants were evicted last year after the BMC disconnected sewage and water lines. “After the residents were evicted, the tenants shifted to nearby chawls. The owners took cognisance of the notice and started redevelopment works but had to stop midway after one of the stakeholders filed a litigation and got a stay from the high court. Now the building looks like an under-construction site,” said Subhash Kadam (72), who lived in the property since his birth and has now relocated to the nearby chawl. “We are living in fear everyday as concrete slabs and other portions of this building keep collapsing. As the construction works were stopped midway, the foundation of the building became weak, due to which it feels like it can collapse on our huts anytime,” said Kadam.
english
Performance of the Week features some of the best performances from clubs and individuals, around the UK, and then gives you the chance to support your entry. Performance of the Week features some of the best performances from clubs and individuals, around the UK, and then gives you the chance to support your entry. Cricket World are pleased to announce the 2023 Cricket Groundcare Award. The full range of Syn-Pro by SISIS products will be on display at the first ever GroundsFest, which is taking place at Stoneleigh Park, Warwickshire on 20 and 21 September 2023. Sale celebrated a second championship of the season as the 3rd XI won the Sunday Premier division but were made to work hard for the win by both Alderley Edge and the unpredictable weather. There was no change at the top of division one of the Cheshire County league on Saturday after the top three sides all won, with varying degrees of ease. The race for the Cheshire County league division one title is set to go down to the wire with just 32 points covering the top 5 teams after the latest round of matches. Sale Cricket Club’s 3rd XI kept up their premier division title challenge thanks to a captain’s performance from Tom Riley, who snatched victory from the jaws of defeat in a thrilling finish at Dane Road. Performance of the Week features some of the best performances from clubs and individuals around the UK, then gives you the chance to support your entry. Sale Cricket Club’s 3rd XI stepped up their premier division title challenge with a good win over Marple and Compstall in the Cheshire County league on Sunday. SISIS has announced that, for the first time ever at a trade event, it will be showcasing its entire range of products at GroundsFest, held at Stoneleigh Park on 20 and 21 September. Performance of the Week features some of the best performances from clubs and individuals around the UK, then gives you the chance to support your entry. Sale Cricket Club’s promotion bid suffered a setback on Saturday as they were routed for just 46 on a spicy wicket a Bramhall in division one of the Cheshire County League. Performance of the Week features some of the best performances from clubs and individuals around the UK, then gives you the chance to support your entry. The blanket rain across the north west that ended England’s hopes of regaining the Ashes had a similar impact on local cricket over the weekend, with hardly a ball bowled across the region. On Saturday 8th July the club witnessed probably both an historic and certainly a unique achievement with Father, Son and Daughter playing together for the same team. Performance of the Week features some of the best performances from clubs and individuals around the UK, then gives you the chance to support your entry. The weather once again caused havoc with the Cheshire County league program as Sale 1st XI slipped back to 2nd place in division one. Performance of the Week features some of the best performances from clubs and individuals around the UK, then gives you the chance to support your entry. Sale 1st XI stayed top of division one of the Cheshire County league as heavy rain showers played havoc with cricket fixtures across the county. View all articles in Club Cricket, Performance Of The Week, Cricket Club Matters, Around The Grounds, Club & Ground Heroes.
english
IBM was the company that launched PC and even at the beginning of the decade to the majority of people PC meant IBM PC. All this changed on May 4, 2005 when the company that had launched the personal computer revolution into the office changed hand as Lenovo, previously a local Chinese computer manufacturer with no real global footprint, acquired IBMs PC division for $1.3 bn. The deal established Lenovo as a global player in the PC market and heralded the arrival of Chinese companies on the global scene. As metaphor, it was an irresistible deal; the purchase of IBMs storied personal computing division by a Chinese company most Americans had never heard of. It could only signal the rise of the upstart and the demise of the establishment. Voracious Chinese entrepreneurs were banging on the door. An icon of corporate America was in foreign hands. Capitalism was being transformed. The reality was more mundane though as barring the initial hiccups that any deal of this magnitude goes through, things have never been too topsy turvy. When Lenovo began to absorb the IBM division in 2005, both sides were acutely aware of the turmoil at HP after it bought rival Compaq in 2002; combined sales fell as the HP and Compaq brands cannibalized each other, and the divisions feuded internally. The new Lenovo faced geographic and cultural hurdles too. The Chinese company was based in Beijing, the IBM division in Raleigh, NC. And virtually none of the IBM-ers spoke Chinese. But Lenovo-IBM has some advantages that HP-Compaq didnt. The product lines, for one, are largely complementary; Lenovo-branded computers are dominant in China, with 35% of the market, while the Think computers have a strong worldwide presence with higher-margin corporate clients. Plus, the IBM-ers, instead of rejecting their new corporate parent, embraced Lenovo.
english
package com.haiegoo.framework.web; import javax.servlet.http.HttpServletResponse; public interface HttpServletExtendResponse extends HttpServletResponse { }
java
Thoughts carved into words and pictures can define a person. Experiences told in stories can tell the stark truth of where has one been, what has one seen and where can one be going ahead in life. Soon, you will be able to know the real Arun Singh too, whether its Arun's experiences, learnings and achievements while studying in CER-College of Engineering Roorkee or what drives Arun's passion for talents like Mechanical Engineering, Aptitude, Technical Skills, Debating and others. Probably Arun Singh will share the secrets of studying BE BTech-Bachelor of Engineering or Technology with ME-Mechanical Engineering in the batch of 2013-2017 or the fun and activities with batch mates in college at Roorkee. Companies will be able to know Arun professionally and get in touch by directly commenting on the blogs. Youth, who blog, get more and better job offers from companies than others. If you are Arun Singh, add your first Blog here .
english
/* * Copyright 2020. Huawei Technologies Co., Ltd. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.huawei.generator.ast; import com.huawei.generator.ast.custom.XFieldDoc; import java.util.List; /** * Field Node * * @since 2019-11-12 */ public final class FieldNode extends AstNode { private ClassNode parent; private ModifierNode modifiers; private TypeNode type; private String name; private AstNode value; private XFieldDoc fieldDoc; private FieldNode() { } public ClassNode parent() { return parent; } public void setParent(ClassNode parent) { this.parent = parent; } public ModifierNode modifiers() { return modifiers; } public TypeNode type() { return type; } public String name() { return name; } public AstNode value() { return value; } public XFieldDoc getFieldDoc() { return fieldDoc; } public void setFieldDoc(XFieldDoc fieldDoc) { this.fieldDoc = fieldDoc; } @Override public void accept(AstVisitor visitor) { visitor.visit(this); } public static FieldNode create(ClassNode parent, List<String> modifiers, TypeNode type, String name, AstNode value) { FieldNode node = new FieldNode(); node.parent = parent; node.modifiers = ModifierNode.create(modifiers); node.type = type; node.name = name; node.value = value; return node; } }
java
<filename>data/branchKana/0304/00021.json<gh_stars>1-10 [{"code":"053","name":"名古屋駅前","name_kana":"ナゴヤエキマエ"},{"code":"054","name":"名古屋営業54","name_kana":"ナゴヤエイギヨウゴヨン"},{"code":"067","name":"なんば67","name_kana":"ナンバロクナナ"},{"code":"068","name":"なんば68","name_kana":"ナンバロクハチ"},{"code":"072","name":"奈良72","name_kana":"ナラナナニ"},{"code":"091","name":"長崎","name_kana":"ナガサキ"},{"code":"230","name":"那覇","name_kana":"ナハ"},{"code":"251","name":"なんば251","name_kana":"ナンバニゴイチ"},{"code":"281","name":"奈良281","name_kana":"ナラニハチイチ"},{"code":"401","name":"長野","name_kana":"ナガノ"},{"code":"512","name":"名古屋営業512","name_kana":"ナゴヤエイギヨウゴイチニ"},{"code":"513","name":"名古屋ウェルマネ513","name_kana":"ナゴヤウエルマネゴイチサン"},{"code":"514","name":"名古屋支店金融公共法人部","name_kana":"ナゴヤキンユウコウキヨウ"},{"code":"526","name":"名古屋ライフプランサービス部","name_kana":"ナゴヤライフプラン"},{"code":"550","name":"名古屋営業550","name_kana":"ナゴヤエイギヨウゴゴセ"}]
json
<reponame>bundie1990/new-website {"store+json2.min.js":"sha256-ZN7iHkIUfUiu9YZNMRELeIXCIjYYJmgpNfORsY30oS8=","store.js":"sha256-GbIgJxylg40/Ib76hDuI6oTnh/NurKR4rlnaIjCO34E=","store.min.js":"sha256-pR8jEppl+cLbI7cH1/ydBifqjtmEk/CR8HkpbkcamNk="}
json
<filename>opendap/src/main/java/opendap/servers/DereferenceClause.java<gh_stars>1-10 ///////////////////////////////////////////////////////////////////////////// // This file is part of the "Java-DAP" project, a Java implementation // of the OPeNDAP Data Access Protocol. // // Copyright (c) 2010, OPeNDAP, Inc. // Copyright (c) 2002,2003 OPeNDAP, Inc. // // Author: <NAME> <<EMAIL>> // // All rights reserved. // // Redistribution and use in source and binary forms, // with or without modification, are permitted provided // that the following conditions are met: // // - Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // // - Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // // - Neither the name of the OPeNDAP nor the names of its contributors may // be used to endorse or promote products derived from this software // without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS // IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A // PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ///////////////////////////////////////////////////////////////////////////// package opendap.servers; import java.util.*; import java.io.*; import opendap.dap.BaseType; /** * Represents a sub-clause that is a URL reference to remote data. * This feature is not yet supported in Java. Thus this class * throws an exception in its constructor. * * @author joew * @see ClauseFactory */ public class DereferenceClause extends AbstractClause implements SubClause { /** * Creates a new DereferenceClause */ protected DereferenceClause(String url) throws DAP2ServerSideException { this.url = url; this.constant = true; this.defined = true; this.value = retrieve(url); this.children = new ArrayList(); } public BaseType getValue() { return value; } public BaseType evaluate() { return value; } public Clause getParent() { return parent; } public void setParent(Clause parent) { this.parent = parent; } public String getURL() { return url; } protected BaseType retrieve(String url) throws DAP2ServerSideException { throw new DAP2ServerSideException(opendap.dap.DAP2Exception.UNKNOWN_ERROR, "dereferencing not supported"); } public void printConstraint(PrintWriter os) { os.print("*\"" + url + "\""); } protected String url; protected Clause parent; protected BaseType value; }
java
The family of George Floyd, the African American man whose death set off a wave of protests after a video showed a white police officer kneeling on his neck for more than nine minutes last May, has settled a lawsuit against Minneapolis for USD 27 million, city officials said on Friday. The family of George Floyd, the African American man whose death set off a wave of protests after a video showed a white police officer kneeling on his neck for more than nine minutes last May, has settled a lawsuit against Minneapolis for USD 27 million, city officials said on Friday. According to The New York Times, the City Council voted unmously to approve the settlement, and a spokesperson for the city said that Mayor Jacob Frey would sign the measure. The settlement was among the largest in a case of police misconduct and was announced as Derek Chauvin, the former officer who knelt on Floyd's neck, has been charged with second-degree murder, third-degree murder and second-degree manslaughter. "This agreement is a necessary step for all of us to begin to get some closure," Rodney Floyd, one of Floyd's brothers, said of the settlement as reported by NYT. "George's legacy for those who loved him will always be his spirit of optimism that things can get better, and we hope this agreement does just that -- that it makes things a little better in Minneapolis and holds up a light for communities around the country," he added. Ben Crump, the civil rights lawyer who is among those representing Floyd's family, said the settlement was the largest reached before trial in a civil rights wrongful death lawsuit. And that it came in a lawsuit over the death of an African American man, he said, "sends a powerful message that Black lives do matter and police brutality against people of color must end. " NYT further reported that the settlement follows several other large payments from cities after high-profile police killings, including a $12 million payout in September from Louisville, after officers fatally shot Breonna Taylor, an African American woman, in her apartment last March. Floyd's family had sued the City of Minneapolis in July, saying that the police had violated his rights and failed to properly train its officers or fire those who violated department policies. As per the news outlet, the USD 27 million includes a USD 500,000 donation to the community around the intersection of 38th Street and Chicago Avenue, the corner where the police had confronted Floyd over a convenience store clerk's claim that he had tried to use a fake $20 bill to buy cigarettes, and where a bystander's video capturing the arrest brought worldwide attention to his death. ( With inputs from ANI )
english
import React from 'react'; function Footer() { return ( <React.Fragment> <button className='btn btn-success'>Make Grocery List</button> </React.Fragment> ) } export default Footer;
javascript
const PageNotFound = () => <h1>Oops! Page not found.</h1>; export default PageNotFound;
typescript
body{ background: url(fondoAborto.jpg); background-attachment: fixed; background-repeat: no-repeat; background-size: 100%; font-family: Arial; margin: auto; width: 90%; max-width: 1000px; margin: 20px auto; } h1, h2 { text-align: center; font-family: Arial; } p { text-align: justify; } div, svg { text-align: justify; font-family: Arial; background: rgba(255, 255, 255, 0.2); display: block; margin: auto; }
css
{ "name": "zoom-vanilla.js", "version": "2.0.3", "description": "It's the best way to zoom an image", "main": "js/zoom-vanilla.js", "repository": { "type": "git", "url": "<EMAIL>:spinningarrow/zoom-vanilla.js.git" }, "keywords": [ "zoom", "vanilla", "vanilla-js", "image" ], "author": "spinningarrow <<EMAIL>>", "license": "MIT", "bugs": { "url": "https://github.com/spinningarrow/zoom-vanilla.js/issues" }, "homepage": "https://github.com/spinningarrow/zoom-vanilla.js", "devDependencies": { "autoprefixer": "^6.7.7", "http-server": "^0.9.0", "postcss-cli": "^3.0.0", "uglify-js": "^2.7.3", "watch": "^0.19.2" }, "scripts": { "_echo_done": "echo [`date`] \"\\033[1;32mzoom-vanilla.min.js rebuilt\\033[0m\"", "compress": "uglifyjs --compress --mangle --source-map=dist/zoom-vanilla.min.js.map --source-map-url='/dist/zoom-vanilla.min.js.map' --source-map-root='/' --preamble=\"// $npm_package_name - $npm_package_version ($npm_package_homepage)\" js/zoom-vanilla.js > dist/zoom-vanilla.min.js", "clean": "rm -rf dist/*", "build": "npm run clean && npm run compress && npm run css", "css": "postcss css/zoom.css --use autoprefixer -d dist/", "start": "http-server", "version": "npm run build && git add -u .", "watch": "watch 'npm run compress && npm run _echo_done' js --ignoreDotFiles" } }
json
{"name":"Robert-Schumann-Schule - Gymnasium der Stadt Leipzig","id":"SN-4440244-0","address":" Demmeringstraße 84 04177 Leipzig OT Altlindenau ","school_type":"Gymnasium","legal_status":1,"fax":"0341/4864544 ","phone":"0341/486450 ","website":"http://www.robert-schumann-gymnasium-leipzig.de","email":"<EMAIL>","provider":"Stadt Leipzig","director":"<NAME>, Andreas","full_time_school":false,"profile":{"students":{"2013":[{"class_level":5,"male":40,"female":44},{"class_level":6,"male":41,"female":43},{"class_level":7,"male":27,"female":56},{"class_level":8,"male":37,"female":41},{"class_level":9,"male":39,"female":60},{"class_level":10,"male":33,"female":55}],"2014":[{"class_level":5,"male":47,"female":67},{"class_level":6,"male":40,"female":43},{"class_level":7,"male":43,"female":40},{"class_level":8,"male":27,"female":57},{"class_level":9,"male":36,"female":40},{"class_level":10,"male":38,"female":58}],"2015":[{"class_level":5,"male":45,"female":39},{"class_level":6,"male":48,"female":65},{"class_level":7,"male":41,"female":43},{"class_level":8,"male":44,"female":36},{"class_level":9,"male":24,"female":57},{"class_level":10,"male":40,"female":39}]},"teacher":[{"year":"2016/2017","male":14,"female":40},{"year":"2015/2016","male":14,"female":40},{"year":"2014/2015","male":15,"female":39},{"year":"2013/2014","male":15,"female":42},{"year":"2012/2013","male":15,"female":42}]},"programs":{"programs":[],"working_groups":[{"name":null,"category":"no category","entity":"no group"},{"name":null,"category":"no category","entity":"no group"},{"name":null,"category":"no category","entity":"no group"},{"name":null,"category":"no category","entity":"no group"},{"name":null,"category":"no category","entity":"no group"},{"name":null,"category":"no category","entity":"no group"},{"name":null,"category":"no category","entity":"no group"}]},"partner":[{"name":"SV Leipzig 1899","focus":"Keine Angabe","type":{"detail":"Sportverein","grob":"Gemeinntziger Akteur"}},{"name":"SV Lindenau","focus":"Keine Angabe","type":{"detail":"Sportverein","grob":"Gemeinntziger Akteur"}},{"name":"Leipziger Universitt und andere Hochschulen am Ort","focus":"Keine Angabe","type":{"detail":"Universitt","grob":"ffentliche Infrastruktur"}},{"name":"verschiedene Unternehmen","focus":"Keine Angabe","type":{"detail":"unklar","grob":"Unbestimmt"}}],"concept":" ","state":"SN","lon":12.322618,"lat":51.335646}
json
New Delhi: After violent protests by Dalit groups, in which two persons died and 75 people were injured, the police in Uttar Pradesh blamed a former legislator belonging to the Bahujan Samaj Party of Mayawati, the state's Dalit powerhouse. Ms Mayawati, who quit her Rajya Sabha seat last year, has declared support for the Dalit protests against a Supreme Court order that's seen as weakening a stringent law against atrocities on Dalits. Yogesh Verma, who represented Meerut's Hastinapur in the state assembly, has been detained. He is the "main conspirator" of the violence in the Dalit protests on Bharat bandh, news agency ANI quoted Manzil Saini, a senior police officer from Meerut, as saying. Meerut was one of the key towns that witnessed violence that seared five states on Monday, as Dalits hit the streets. In a string of towns across Uttar Pradesh, protesters bent on arson clashed with the police. Two men died -- one in Meerut and one in Muzaffarnagar -- and at least 45 policemen were injured in the violence on Bharat bandh, reported news agency Press Trust of India. The government sent around 200 Rapid Action Force personnel to Meerut. Personnel were also sent to Agra and Hapur. The police were given a free hand by Chief Minister Yogi Adityanath to deal with the protesters. "More than 200 people have been detained and we are getting cases registered against them under National Security Act," ANI quoted Mr Saini as saying. Yogesh Verma was one of the 200 people detained. The 48-year-old lawmaker has a number of police cases, including that of attempt to murder, assault and rioting against him. Earlier on Monday, Mr Verma's ex-boss, Ms Mayawati, had said while her Bahujan Samaj Party is no longer in parliament, "our politics outside will force the Narendra Modi government to buckle under. . . Our party will not sit quietly if their (Dalit) voices are not heard. " The Dalits are protesting against a recent Supreme Court order, which, they say, has weakened a stringent law that was in place to ensure their protection. The top court said the law had been used against government servants trying to do their duty and relaxed two of its provisions - ordering the stopping of instant arrest of accused and allowing them bail. The Dalits blamed the centre for failing to represent their side properly and sought action. The government on Monday filed a petition urging the court to review its order. Ms Mayawati said, "The review petition filed in the Supreme Court was critical, they took a lot of time to file it. Had it been done in good time, people wouldn't have had to come to the streets. " The government said the matter is being "politicized".
english
This game should satisfy anyone looking to indulge in some mindless FPS action. However, a word of caution� Serious Sam is an oddity and quite different from what we see in FPS these days. Comparatively, this game’s mechanics are pretty bare bone and it prefers scale over complexity. The HD version is perfect for those who want to revisit an old love and recommended for FPS fans looking for something out of the ordinary. Serious Sam: The First Encounter was originally released in 2001 by the now defunct publishers Gathering of Developers. The game was a runaway success due in part to its wicked sense of humor and partly due to developer’s fresh take on what had become a tired genre. This game was released in a time when a game’s engine seemed to matter more than the game itself. Serious Sam was intended to be a tech demo of Croteam’s Serious Engine technology and it was released at a relatively low price. When the game was finally out, it exceeded everyone’s expectations and its critical and commercial success led to release of a sequel the following year. After a brief hiatus, Croteam seem poised to make a serious comeback and at the helm of their ship is Serious Sam. As a build up to Serious Sam 3 and to give us a look at the new Serious Engine 3, Croteam are releasing up-scaled versions of the first two Serious Sam games. First one to see the light of day is the HD version of The First Encounter on the PC, through Steams distribution platform. Croteam has a trademark style of level design with Serious Sam games. At its finest, a level map is generally a huge open space and the enemies attack in waves of ridiculous numbers. For someone who has not played Serious Sam or have started playing FPS only in the last couple of years will find this as quite a novelty. And since Serious Sam is unlike most contemporary shooters that have at least a basic form of cover system, often battling enemies in maps with virtually no cover will test your shooter skills in new ways. It is quite common in Serious Sam to the find yourself engaging a few dozen enemies at the same time and the only form of defense is dodging. Ensuring that you are firing back at a steady pace, most weapons in Serious Sam do not require reloading and there are plenty of health, armor and ammo pick-ups throughout the game’s levels. The enemies in the game are minions of an alien overlord called Mental and the battlefield is set in Egypt. Among the pyramids and obelisks you will be battling hordes of undead bovines, headless kamikaze drones, golems, towering level bosses and more. Weapons are a mix of traditional and the queer— among others, there is dual-wield revolvers, shotguns, machine guns, rocket launcher, laser gun, chain-gun and a portable cannon that fires exploding radioactive balls. As expected, there are some very obvious graphical improvements and additions in this HD version of the game. Croteam has used the new engine’s capabilities to add greater level of ‘realism’ to building and enemies by using contemporary lighting techniques and higher quality textures and models. Under the hood, the game is identical to the original, which in this case is a good thing. It’s about a single man murdering at genocidal scale and supplementing the bloodshed with wiseass one-liners only seen in Duke Nukem games before this. You to take Serious Sam a notch higher by joining or hosting online co-operative sessions; however, this is one area where this game disappoints. There was a greater lag than usual during multiplayer sessions and I experienced a recurring glitch where the engine would not render the weapon’s model after switching. Croteam said that they are working on multiple patches for this game and one of these will add support for dedicated servers and deathmatches. Let’s hope that these patches will improve the game’s multiplayer features, because as of now it feels lacking. This game should satisfy anyone looking to indulge in some mindless FPS action. However, a word of caution— Serious Sam is an oddity and quite different from what we see in FPS these days. Comparatively, this game’s mechanics are pretty bare bone and it prefers scale over complexity. The HD version is perfect for those who want to revisit an old love and recommended for FPS fans looking for something out of the ordinary. Platforms: PC (MS Windows, Steam) Price: USD 19.99 (PC) Graphics: nVidia GeForce 7600, ATI Radeon X1600 (Shader Model 3.0 Highly Recommended)
english
<reponame>luyendong1102/project-manager package edu.mngprj.mgprj.controllers; import edu.mngprj.mgprj.entities.Project; import edu.mngprj.mgprj.entities.ResponseTemplate; import edu.mngprj.mgprj.exceptions.NotFoundException; import edu.mngprj.mgprj.exceptions.NotValidUserException; import edu.mngprj.mgprj.services.ProjectService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.security.access.annotation.Secured; import org.springframework.web.bind.annotation.*; @RestController @RequestMapping("/api/v1/project") @Secured("ROLE_QUANLY") public class ProjectController { @Autowired private ProjectService projectService; @GetMapping public ResponseEntity<ResponseTemplate> getAllProject() { return ResponseEntity.ok( new ResponseTemplate(200, "Your project(s)", projectService.getAllProject()) ); } @GetMapping("/{id}") public ResponseEntity<ResponseTemplate> getProjectByID(@PathVariable Long id) throws NotFoundException, NotValidUserException { return ResponseEntity.ok( new ResponseTemplate(200, "Result", projectService.getProjectByID(id)) ); } @GetMapping("/find") public ResponseEntity<ResponseTemplate> findProject(@RequestParam String p) { return ResponseEntity.ok( new ResponseTemplate(200, "Result", projectService.findProject(p)) ); } @PostMapping public ResponseEntity<ResponseTemplate> createProject(@RequestBody Project project) { return ResponseEntity.ok( new ResponseTemplate(200, "Project " + project.getName() + " created", projectService.createNewProject(project)) ); } @DeleteMapping("/{id}") public ResponseEntity<ResponseTemplate> deleteProject(@PathVariable Long id) throws NotFoundException { projectService.deleteProject(id); return ResponseEntity.ok( new ResponseTemplate(200, "Prject has id : " + id + " deleted", null) ); } }
java
Sheikh Khaled: Sheikh Khaled's appointment was welcomed by other Gulf rulers including Saudi Arabia and Qatar, news agency AFP reported. The United Arab Emirates (UAE) president named his eldest son- Sheikh Khaled- as crown prince of Abu Dhabi. With this Sheikh Khaled has become the next leader of the Gulf monarch, fortifying his family's hold on power in the oil-rich country. UAE president Sheikh Mohamed bin Zayed Al Nahyan chose his son for the position which has been traditionally held by the leader-in-waiting. Here are top points on Sheikh Khaled, crown prince of Abu Dhabi: - Sheikh Khaled was born on January 8, 1982 in Abu Dhabi and is the eldest son of UAE President. - He graduated from the American University of Sharjah following which he got a PhD from the Department of War Studies at King's College London in 2014, Gulf News reported. He loves jujitsu. - Sheikh Khaled has served as a member of the Abu Dhabi Executive Council as well as the chairman of the Abu Dhabi Executive Office. - He sits on the board of state oil giant ADNOC. - Sheikh Khaled's appointment was welcomed by other Gulf rulers including Saudi Arabia and Qatar, news agency AFP reported. - Picking Sheikh Khaled as crown prince is a part of the larger trend seen in Gulf monarchies where direct lineage is preferred for succession, Bloomberg reported. - In Saudi Arabia, crown prince Mohammed bin Salman rose to power bypassing more senior ruling family members. Get Latest World Newsalong with Latest Newsfrom Indiaat Hindustan Times.
english
package com.maxqiu.demo.ProducterAndConsumerForLock; import java.util.concurrent.locks.Condition; import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; /** * 店员 * * @author Max_Qiu */ public class Clerk { private int product = 0; private Lock lock = new ReentrantLock(); private Condition condition = lock.newCondition(); /** * 进货 */ public void get() { lock.lock(); try { // 为了避免虚假唤醒问题,应该总是使用在循环中 while (product >= 2) { System.out.println("产品已满!"); try { condition.await(); } catch (InterruptedException e) { e.printStackTrace(); } } System.out.println(Thread.currentThread().getName() + " : " + ++product); condition.signalAll(); } finally { lock.unlock(); } } /** * 卖货 */ public void sale() { lock.lock(); try { while (product <= 0) { System.out.println("缺货!"); try { condition.await(); } catch (InterruptedException e) { e.printStackTrace(); } } System.out.println(Thread.currentThread().getName() + " : " + --product); condition.signalAll(); } finally { lock.unlock(); } } }
java
Late Monday night, a decomposed carcass of a five-foot Indo-Pacific Humpback Dolphin washed ashore Versova beach. In the last two months, this is the third case where a dolphin carcass has washed ashore Versova. And since 2015, 86 marine animals have been found dead along the coastline of the Mumbai Metropolitan Region. Makarand Ghodke, Assistant Conservator of Forest, State Mangrove Cell informed that they were not able to conduct post-mortem as the body was decomposed and mutilated beyond repair. He added that morning walkers and joggers at Versova informed them about the Dolphin. As most of its internal organs had spilled out of the body, they buried the dolphin at the beach itself, said Ghodke. Meanwhile, last Thursday, a 43-foot Blue Whale had washed ashore Uran, Navi Mumbai. On Monday, Mangrove Cell Officials transported the skeletal remains of the same to the marine mammal museum in Airoli using a freight trailer. Ghodke spoke about the skeletal remains and how it will boost research studies related to marine mammals along the Konkan coast. He added that marine mammal deaths in Mumbai are on the rise and they are pushing for speedy construction of a marine mammal rescue centre at Juhu.
english
<reponame>ewsgit/skyblock-money-dev [{"skyblock_id":"ENCHANTED_CLAY_BALL","quantity":"1","item_name":"Enchanted clay ball"},{"skyblock_id":"ENCHANTED_CLAY_BALL","quantity":"1","item_name":"Enchanted clay ball"},{"skyblock_id":"ENCHANTED_CLAY_BALL","quantity":"1","item_name":"Enchanted clay ball"},{"skyblock_id":"ENCHANTED_CLAY_BALL","quantity":"1","item_name":"Enchanted clay ball"},{"skyblock_id":"CLAY_GENERATOR_4","quantity":"1","item_name":"Clay generator 4"},{"skyblock_id":"ENCHANTED_CLAY_BALL","quantity":"1","item_name":"Enchanted clay ball"},{"skyblock_id":"ENCHANTED_CLAY_BALL","quantity":"1","item_name":"Enchanted clay ball"},{"skyblock_id":"ENCHANTED_CLAY_BALL","quantity":"1","item_name":"Enchanted clay ball"},{"skyblock_id":"ENCHANTED_CLAY_BALL","quantity":"1","item_name":"Enchanted clay ball"}]
json
<gh_stars>0 ''' Standard implementation of a biquad filter <NAME> 2018. ''' import math from enum import Enum class BiquadFilterCoefficients(): def __init__(self, b0=1.0, b1=0, b2=0, a0=0, a1=0, a2=0): self.b0 = b0 self.b1 = b1 self.b2 = b2 self.a0 = a0 self.a1 = a1 self.a2 = a2 class BiquadFilterType(Enum): BPF_NORMALIZED = 1 HPF = 2 BPF = 3 LPF = 4 NOTCH = 5 APF = 6 LOW_SHELVING = 7 HIGH_SHELVING = 8 PEAK = 9 class BiquadFilterParameters: def __init__(self, sampleRate=48000.0, filterType=BiquadFilterType.APF, filterf0=1000.0, filterQ=1.0, filterGain=0.0): self.filterf0 = filterf0 self.filterQ = filterQ self.filterGain = filterGain self.filterType = filterType self.sampleRate = sampleRate class BiquadFilter: def __init__(self, filterParameters=None, sampleRate=None): # Filter parameters (initialize to a default value if not provided) if filterParameters is None: filterParameters = BiquadFilterParameters() self.filterf0 = filterParameters.filterf0 self.filterQ = filterParameters.filterQ self.filterGain = filterParameters.filterGain self.filterType = filterParameters.filterType self._sampleRate = filterParameters.sampleRate if not sampleRate is None: self._sampleRate = sampleRate # Initilize filter states self.x1 = 0.0 self.x2 = 0.0 self.y1 = 0.0 self.y2 = 0.0 # Generate filter coefficients self.filterCoefficients = BiquadFilterCoefficients() self.generateBiQuadCoefficients(filterType=self.filterType, filterf0=self.filterf0, filterQ=self.filterQ, filterGain=self.filterGain) def __str__(self): return "f0:%10.3f Hz, Q: %.3f, Gain: %.3f (%5.1f dB), Type: %s" % (self.filterf0, self.filterQ, 10**(self.filterGain/20.0), self.filterGain, str(self.filterType)) def processSample(self, inputSample, outputSample=None): # return inputSample # # Calculate new output sample # _output = (inputSample * self.filterCoefficients.b0) + \ # (self.x1 * self.filterCoefficients.b1) + \ # (self.x2 * self.filterCoefficients.b2) - \ # (self.y1 * self.filterCoefficients.a1) - \ # (self.y2 * self.filterCoefficients.a2) # _output = _output / self.filterCoefficients.a0 # return _output if outputSample is None: inputSample = float(inputSample) self._output = (inputSample * self.filterCoefficients.b0) self._output += (self.x1 * self.filterCoefficients.b1) self._output += (self.x2 * self.filterCoefficients.b2) self._output -= (self.y1 * self.filterCoefficients.a1) self._output -= (self.y2 * self.filterCoefficients.a2) self._output /= self.filterCoefficients.a0 # Rotate states self.x2 = self.x1 self.x1 = inputSample self.y2 = self.y1 self.y1 = self._output # Return new output return self._output else: # Calculate new output sample # inputSample[0] = float(inputSample[0]) outputSample[0] = (float(inputSample[0]) * self.filterCoefficients.b0) outputSample[0] += (self.x1 * self.filterCoefficients.b1) outputSample[0] += (self.x2 * self.filterCoefficients.b2) outputSample[0] -= (self.y1 * self.filterCoefficients.a1) outputSample[0] -= (self.y2 * self.filterCoefficients.a2) outputSample[0] /= self.filterCoefficients.a0 # Rotate states self.x2 = self.x1 self.x1 = inputSample[0] self.y2 = self.y1 self.y1 = outputSample[0] def generateBiQuadCoefficients(self, filterType, filterf0, filterQ, filterGain=0): ''' This example generates the coefficients for a bandpass filter with the peak gain at 0 dB http://shepazu.github.io/Audio-EQ-Cookbook/audio-eq-cookbook.html ''' # print("Generating filter coefficients for parameters: Type=%s, f0=%.1f [Hz], Q=%.2f, Gain=%.1f[dB]" % (str(filterType), filterf0, filterQ, filterGain)) if filterf0 > self._sampleRate / 2.0: _limitFreq = 0.99 * self._sampleRate / 2.0 print("Warning: Filter's f0 was set to %.1f [Hz], limiting it f0 to: %.1f" % (filterf0, _limitFreq)) filterf0 = _limitFreq _omega0 = 2 * math.pi * filterf0 / self._sampleRate _alpha = math.sin(_omega0) / (2 * filterQ) if filterType == BiquadFilterType.BPF_NORMALIZED: # BPF: _b0 = _alpha _b1 = 0 _b2 = -_alpha _a0 = 1 + _alpha _a1 = -2 * math.cos(_omega0) _a2 = 1 - _alpha elif filterType == BiquadFilterType.HPF: # HPF: _b0 = (1 + math.cos(_omega0)) / 2.0 _b1 = - (1 + math.cos(_omega0)) _b2 = _b0 _a0 = 1 + _alpha _a1 = -2 * math.cos(_omega0) _a2 = 1 - _alpha elif filterType == BiquadFilterType.BPF: # BPF-2: _b0 = filterQ * _alpha _b1 = 0 _b2 = -filterQ * _alpha _a0 = 1 + _alpha _a1 = -2 * math.cos(_omega0) _a2 = 1 - _alpha elif filterType == BiquadFilterType.LPF: _b0 = (1 - math.cos(_omega0)) / 2.0 _b1 = 1 - math.cos(_omega0) _b2 = _b0 _a0 = 1 + _alpha _a1 = -2 * math.cos(_omega0) _a2 = 1 - _alpha elif filterType == BiquadFilterType.NOTCH: _b0 = 1 _b1 = -2 * math.cos(_omega0) _b2 = 1 _a0 = 1 + _alpha _a1 = -2 * math.cos(_omega0) _a2 = 1 - _alpha elif filterType == BiquadFilterType.APF: _b0 = 1 - _alpha _b1 = -2 * math.cos(_omega0) _b2 = 1 + _alpha _a0 = 1 + _alpha _a1 = -2 * math.cos(_omega0) _a2 = 1 - _alpha elif filterType == BiquadFilterType.PEAK: A = 10**(filterGain / 40.0) _b0 = 1 + (_alpha * A) _b1 = -2 * math.cos(_omega0) _b2 = 1 - (_alpha * A) _a0 = 1 + (_alpha / A) _a1 = -2 * math.cos(_omega0) _a2 = 1 - (_alpha / A) elif filterType == BiquadFilterType.LOW_SHELVING: A = 10**(filterGain / 40.0) _b0 = A * ((A + 1) - (A - 1)*math.cos(_omega0) + 2*math.sqrt(A)*_alpha) _b1 = 2 * A * ((A - 1) - (A + 1)*math.cos(_omega0)) _b2 = A * ((A + 1) - (A - 1)*math.cos(_omega0) - 2*math.sqrt(A)*_alpha) _a0 = (A + 1) + (A - 1)*math.cos(_omega0) + 2*math.sqrt(A)*_alpha _a1 = -2 * ((A - 1) + (A + 1)*math.cos(_omega0)) _a2 = (A + 1) + (A - 1)*math.cos(_omega0) - 2*math.sqrt(A)*_alpha elif filterType == BiquadFilterType.HIGH_SHELVING: A = 10**(filterGain / 40.0) _b0 = A * ((A + 1) + (A - 1)*math.cos(_omega0) + 2*math.sqrt(A)*_alpha) _b1 = -2 * A * ((A - 1) + (A + 1)*math.cos(_omega0)) _b2 = A * ((A + 1) + (A - 1)*math.cos(_omega0) - 2*math.sqrt(A)*_alpha) _a0 = (A + 1) - (A - 1)*math.cos(_omega0) + 2*math.sqrt(A)*_alpha _a1 = 2 * ((A - 1) - (A + 1)*math.cos(_omega0)) _a2 = (A + 1) - (A - 1)*math.cos(_omega0) - 2*math.sqrt(A)*_alpha else: # Unknown type of filter: _b0 = 1 _b1 = 0 _b2 = 0 _a0 = 0 _a1 = 0 _a2 = 0 # Using numpy types is slower, so for real-time applications, better use floats self.filterCoefficients.b0 = float(_b0) self.filterCoefficients.b1 = float(_b1) self.filterCoefficients.b2 = float(_b2) self.filterCoefficients.a0 = float(_a0) self.filterCoefficients.a1 = float(_a1) self.filterCoefficients.a2 = float(_a2) def computeBiquadFilterResponse(filterCoefficients, normalizedFreqBins): if filterCoefficients is None: return if not len(filterCoefficients) == 6: return b0 = filterCoefficients[0] b1 = filterCoefficients[1] b2 = filterCoefficients[2] a0 = filterCoefficients[3] a1 = filterCoefficients[4] a2 = filterCoefficients[5] alpha = b0 import math import numpy as np w0 = np.abs(math.acos(-a1 / 2.0)) Q = np.sin(w0) / (2.0 * alpha) e = np.exp pi = np.pi _freqResponse = [(b0 + (b1*e(-1j*2*pi*f)) + (b2 * e(-2j*2*pi*f))) / (a0 + (a1*e(-1j*2*pi*f)) + (a2*e(-2j*2*pi*f))) for f in normalizedFreqBins] return _freqResponse def computeBiquadFilterIR(filterCoefficients, IRLength): _freqResponse = computeBiquadFilterResponse(filterCoefficients, [i / IRLength for i in range(int(IRLength))]) return np.real(np.fft.ifft(_freqResponse)) def getFilterSpectrumModule(filter): _coeffs = [filter.filterCoefficients.b0, filter.filterCoefficients.b1, filter.filterCoefficients.b2, \ filter.filterCoefficients.a0, filter.filterCoefficients.a1, filter.filterCoefficients.a2] # Compute complex frequency response sampleRate = 48000 _normalizedFreqBins = [i/sampleRate for i in range(int(sampleRate/2.0))] _freqResponse = computeBiquadFilterResponse(_coeffs, _normalizedFreqBins) _freqResponseMod = 20.0 * np.log10(np.abs(_freqResponse)) _freqResponsePha = np.angle(_freqResponse) / np.pi * 180.0 _ir = computeBiquadFilterIR(_coeffs, len(_normalizedFreqBins)) return np.multiply(_normalizedFreqBins, sampleRate), _freqResponseMod, _freqResponsePha, _ir if __name__ == "__main__": import numpy as np import matplotlib.pyplot as plot # Real-time filtering of an MLS signal and IR calculation _filter = BiquadFilter() _filter.generateBiQuadCoefficients(filterf0=1000, filterQ=0.125, filterType=BiquadFilterType.BPF_NORMALIZED) _inputSignal = [0.0 for i in range(48000)] _inputSignal[0] = 1.0 _outputSignal = [_filter.processSample(_inputSignal[i]) for i in range(len(_inputSignal))] _ir = _outputSignal _spec = 20 * np.log10(np.abs(np.fft.fft(_ir))) _spec = _spec[0 : round(len(_spec)/2.0)] _freqBins = [i / len(_spec) * 48000.0 / 2.0 for i in range(len(_spec))] plot.semilogx(_freqBins, _spec) plot.grid(1) plot.ylim([-60, 10]) plot.xlim([2, 20000]) plot.show() # quit() # Real-time filtering of an input signal _filter = BiquadFilter() _filter.generateBiQuadCoefficients(filterf0=1000, filterQ=10.0, filterType=BiquadFilterType.NOTCH) _inputSignal = [np.sin(2 * np.pi * 1000 * i / 48000) for i in range(1000)] _outputSignal = [_filter.processSample(_inputSignal[i]) for i in range(len(_inputSignal))] plot.plot(_inputSignal) plot.plot(_outputSignal) plot.legend(['Input', 'Output']) plot.grid(1) plot.show() # quit() # Spectrum plotting of a couple of filters _filter = BiquadFilter() _filterSpecs = [[1000, 0.3, BiquadFilterType.NOTCH], [1000, 30, BiquadFilterType.NOTCH]] for _specs in _filterSpecs: _filter.generateBiQuadCoefficients(filterf0=_specs[0], filterQ=_specs[1], filterType=_specs[2]) _bins, _mod, _pha, _ir = getFilterSpectrumModule(_filter) plot.subplot(3,1,1) plot.semilogx(_bins, _mod) plot.grid(1) plot.ylim([-60, 10]) plot.subplot(3,1,2) plot.semilogx(_bins, _pha) plot.ylim([-180, 180]) plot.grid(1) plot.subplot(3,1,3) plot.plot(_ir) plot.grid(1) plot.grid(1) plot.show()
python
Changpeng “CZ” Zhao , CEO, Binance, warned his followers on X, formerly Twitter, about a scam targeting the crypto community. It is believed that the scan has been using fake wallet addresses and are used to defraud users during transactions, stated Cointelegraph. The scheme is expected to create addresses with the same starting and ending characters as the user’s original address. Once the fraud address has been generated, the scammer sends the target dust transactions which might reflect on the users transaction history. It is believed that in case the affected users copies and pastes an address from one of the dust transactions, the funds will be sent to the scammer, Cointelegraph added. Sources revealed that the scam could be avoided by using a blockchain domain, such as the Ethereum Name Service. Furthermore, security experts do not recommend users copy and paste addresses from applications to transfer funds. Supposedly, users are advised to use strong, unique passwords for crypto accounts and enable two-factor authentication on applications, Cointelegraph concluded. (With insights from Cointelegraph)
english
Requesting Prime Minister Narendra Modi to order a probe, Channi stressed that people of Punjab have paid a heavy price while fighting separatism in the state. Following the explosive claims made by poet and one of Aam Aadmi Party founding member Kumar Vishwas against Arvind Kejriwal, Punjab Chief Minister Charanjit Singh Channi asked for an investigation into Kejriwal's alleged ties with separatists. Requesting Prime Minister Narendra Modi to order a probe, Channi stressed that people of Punjab have paid a heavy price while fighting separatism in the state. Taking to his official Twitter handle, Channi said as CM of Punjab, he requests PM Modi to order an 'impartial enquiry' in the matter of Dr Kumar Vishwas' video. He also said, keeping politics aside, people of Punjab have paid a heavy price while fighting separatism. It should be noted that the Punjab's additional chief electoral officer issued a contentious letter on Thursday prohibiting media outlets, political parties, and their representatives from publishing the "maliciously manufactured" Vishwas interview "in order to defame" Kejriwal and "promote hatred, ill will, and feelings of hostility against different religious groups and communities. " In addition to his tweet, Channi published a letter in which the chief electoral office rescinded its contentious ruling. Kumar Vishwas made significant claims against Arvind Kejriwal earlier this week, ahead of the Punjab Assembly elections in 2022. He said that Kejriwal was willing to accept assistance from separatist forces in order to win Punjab Chief Minister in the 2017 Assembly elections. "One day, he informed me that he will either become the chief minister (of Punjab) or the first prime minister of an independent nation (Khalistan)," Vishwas said to the reporters.
english
{ "env": { "browser": true, "es6": true, "node": true }, "parser": "@typescript-eslint/parser", "parserOptions": { "project": "./tsconfig.json" }, "plugins": ["@typescript-eslint"], "extends": [ // Baseline ruleset "eslint:all", // Disable rules that are incompatible with or better handled by TypeScript "plugin:@typescript-eslint/eslint-recommended", // Turn on TypeScript-specific rules "plugin:@typescript-eslint/all" ], "rules": { // Configured "@typescript-eslint/indent": ["warn", "tab"], // Indent using tabs "@typescript-eslint/no-misused-promises": ["warn", { "checksVoidReturn": false }], // No promises in conditionals "@typescript-eslint/no-unnecessary-condition": ["warn", { "ignoreRhs": true }], // Allow boolean operators for short-circuiting "@typescript-eslint/space-before-function-paren": ["error", "never"], // No space before function parentheses "array-bracket-newline": ["warn", "consistent"], // Per-array consistent formatting "array-element-newline": ["warn", "consistent"], // Per-array consistent formatting "dot-location": ["warn", "property"], // Dot on the next line for chained functions "func-style": ["warn", "declaration"], // Declaration over expression "function-call-argument-newline": ["warn", "never"], // No line breaks between arguments "no-multiple-empty-lines": ["warn", { "max": 1, "maxEOF": 1, "maxBOF": 0 }], // No multiple consecutive lines "no-plusplus": ["warn", { "allowForLoopAfterthoughts": true }], // No increment/decrement operator (except for in `for` loops) "no-tabs": ["warn", { "allowIndentationTabs": true }], // No tabs, excluding indentation "object-curly-spacing": ["warn", "always", { "arraysInObjects": false }], // Objects should always be padded with spaces "object-property-newline": ["warn", { "allowAllPropertiesOnSameLine": true }], // Per-object consistent formatting "operator-linebreak": ["warn", "before"], // Operator on the next line for lengthy conditions "quotes": ["warn", "double", { "allowTemplateLiterals": true }], // Prefer double-quotes, allow template strings "wrap-iife": ["warn", "inside"], // Parentheses after IIFEs // Warn "@typescript-eslint/no-extra-parens": ["warn"], "@typescript-eslint/no-unused-vars": ["warn"], "no-empty": ["warn"], "no-shadow": ["warn"], "sort-keys": ["warn"], "no-param-reassign": ["warn"], // Indent using tabs // Disabled "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/no-floating-promises": "off", "@typescript-eslint/no-magic-numbers": "off", "@typescript-eslint/promise-function-async": "off", "@typescript-eslint/require-array-sort-compare": "off", "@typescript-eslint/restrict-plus-operands": "off", "@typescript-eslint/strict-boolean-expressions": "off", "@typescript-eslint/typedef": "off", "capitalized-comments": "off", "class-methods-use-this": "off", "dot-notation": "off", "func-names": "off", "id-length": "off", "init-declarations": "off", "line-comment-position": "off", "linebreak-style": "off", "lines-between-class-members": "off", "max-classes-per-file": "off", "max-len": "off", "max-lines-per-function": "off", "max-lines": "off", "max-statements": "off", "multiline-comment-style": "off", "multiline-ternary": "off", "newline-per-chained-call": "off", "no-await-in-loop": "off", "no-case-declarations": "off", "no-console": "off", "no-else-return": "off", "no-fallthrough": "off", "no-inline-comments": "off", "no-inner-declarations": "off", "no-invalid-this": "off", "no-negated-condition": "off", "no-process-exit": "off", "no-sync": "off", "no-ternary": "off", "no-undefined": "off", "no-warning-comments": "off", "object-shorthand": "off", "one-var": "off", "padded-blocks": "off", "prefer-arrow-callback": "off", "prefer-named-capture-group": "off", "prefer-template": "off", "require-unicode-regexp": "off", "sort-imports": "off", "spaced-comment": "off", "wrap-regex": "off" } }
json
{"d3.js":"sha256-hvwZ41aDyzOmnkOiG2YcHyUC28lYqTMM9MAgKdriyj0=","d3.min.js":"sha2<KEY>}
json
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding. You are using an out of date browser. It may not display this or other websites correctly. VJTI/COEP admission.. Can anyone from VJTI or COEP please tell how many marks do I need in MH-CET to get admission in these colleges? And how many marks for reserved seats for sc? And will my AIEEE marks do me any benifit in admissions?? Thanks! What is a VCC ? anyone please explain in detail whats a VCC and whats its benifit.. Hi Guest we just wanted to alert you to a major change in the forum. We will no longer be allowing the posting of outgoing links. Please use the attachment feature to attach media to your posts.
english
Written Answers Trade Deficit SHRI RAJIV RANJAN SINGH ALIAS LALAN SINGH: DR. MURLI MANOHAR JOSHI: (a) whether the imbalance between the export and import prices in the foreign trade have led to highest loss to the national exchequers during the month of March, 2012; (b) if so, the details thereof and the reasons therefor; (c) the quantum of loss registered in the foreign trade and the national exchequer as a result of this imbalance during the last one year; and (d) the details of the commodities whose import has increased by more than 30 percent and those whose prices have increased by more than 10 percent in the last year as compared to previous year? THE MINISTER OF STATE IN THE MINISTRY OF COMMERCE AND INDUSTRY (SHRI JYOTIRADITYA M. SCINDIA): (a) to (c) No Madam. Trade surplus occurs when value of exports are more than value of imports, Trade deficit occurs when value of exports are less than value of imports. Neither trade surplus nor trade deficit has any relationship with loss to national exchequer. (d) Based on the information provided by DGCI&S, Kolkata, during 2011-12 the commodities where imports have grown by more than 30 percent over 2010-11 are Petroleum, Crude & products, Gold & Silver, Coal, Coke & Briquettes, etc., Metaliferrous ores & metal scrap, Fertilisers, Vegetable Oil, Project goods, Machine tools, Wood & Wood products, Sulphur & Unroasted Iron Pyrts, Cotton Raw & Waste. Based on the yearly inflation rates by item groups (based on wholesale price index with 2004-05 as base period) prepared by DIPP, groups of commodities where prices have grown by more than 10 percent during 201112 over 2010-11 are Fibres (non-Food articles), Minerals, to Questions 344 Crude Petroleum, Fuel & Power, Coal, Mineral Oils, Dairy Products, Other Food Products, Beverages, Tobacco & Tobacco products, Fertilizers & Pesticides. Ban on Cotton Exports SHRI DATTA MEGHE: SHRI R. THAMARAISELVAN: SHRI NAMA NAGESWARA RAO: SHRI RAYAPATI SAMBASIVA RAO: SHRI SURESH KUMAR SHETKAR: SHRI PRATAP SINGH BAJWA: (a) whether the Government has put quantitative restrictions on the export of cotton bales/yarn; (b) if so, the details thereof; (c) whether there are demands from various groups/ State Governments for lifting the ban/quantitative restrictions on the export of cotton bale/yarn; (d) if so, the reaction of the Government thereto; (e) the number of export contracts for cotton pending approval of the Directorate General of Foreign Trade; and (f) whether the Government has taken cognisance of Indian exporters facing action for damages due to nonexport of cotton and if so, the steps taken by the Government to expedite the clearances and hasten the export of cotton? THE MINISTER OF STATE IN THE MINISTRY OF COMMERCE AND INDUSTRY (SHRI JYOTIRADITYA M. SCINDIA): (a) No Madam. (b) Does not arise. (c) and (d) There is no ban on export of cotton now. (e) and (f) Approval of Director General of Foreign Trade (DGFT) is not required for registration of contracts. Field offices of the Directorate are authorized to issue the Registration Certificates (RC) for export of cotton after verification of required documents. These are being issued expeditiously.
english
--- title: smmParametersTable - Common Data Model | Microsoft Docs description: undefined author: nenad1002 ms.service: common-data-model ms.reviewer: deonhe ms.topic: article ms.date: 5/5/2020 ms.author: nebanfic --- # Sales and marketing parameters Latest version of the JSON entity definition is available on <a href="https://github.com/Microsoft/CDM/tree/master/schemaDocuments/core/operationsCommon/Tables/SupplyChain/SalesAndMarketing/Parameter/smmParametersTable.cdm.json" target="_blank">GitHub</a>. ## Traits <details> <summary>Traits for this entity are listed below. </summary> **is.identifiedBy** names a specifc identity attribute to use with an entity <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>attribute</td><td>[smmParametersTable/(resolvedAttributes)/RecId](#RecId)</td><td>attribute</td><td></td></tr></table> **is.CDM.entityVersion** <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>versionNumber</td><td>"1.0.0"</td><td>string</td><td>semantic version number of the entity</td></tr></table> **is.application.releaseVersion** <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>releaseVersion</td><td>"10.0.13.0"</td><td>string</td><td>semantic version number of the application introducing this entity</td></tr></table> **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Sales and marketing parameters</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> </details> ## Attributes |Name|Description|First Included in Instance| |---|---|---| |[RecId](#RecId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[DocuTypeIdForInEMail](#DocuTypeIdForInEMail)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignTargetActivityPhase](#CampaignTargetActivityPhase)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignTargetActivityType](#CampaignTargetActivityType)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[AgreementAccountKey_RU](#AgreementAccountKey_RU)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[AgreementClassificationKey_RU](#AgreementClassificationKey_RU)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[AgreementCurrencyKey_RU](#AgreementCurrencyKey_RU)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[AgreementDocumentTitleKey_RU](#AgreementDocumentTitleKey_RU)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[AgreementExtRefKey_RU](#AgreementExtRefKey_RU)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[AgreementYearKey_RU](#AgreementYearKey_RU)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[AutoCreateBusinessRelation](#AutoCreateBusinessRelation)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[AutoCreateCustomer](#AutoCreateCustomer)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[AutoCreateOpportunity](#AutoCreateOpportunity)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[BusRelOpenCustForm](#BusRelOpenCustForm)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[BusRelStatus](#BusRelStatus)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[BusRelTypeId](#BusRelTypeId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CallBackCreateActivity](#CallBackCreateActivity)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignActivityCategory](#CampaignActivityCategory)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignActivityPhaseId](#CampaignActivityPhaseId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignActivityPurpose](#CampaignActivityPurpose)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignActivityTypeId](#CampaignActivityTypeId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignCreateActivity](#CampaignCreateActivity)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignGroupId](#CampaignGroupId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignNumOfDaysExpiryDate](#CampaignNumOfDaysExpiryDate)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignStatus](#CampaignStatus)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignTargetActivityCategory](#CampaignTargetActivityCategory)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignTargetActivityPurpose](#CampaignTargetActivityPurpose)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignTargetId](#CampaignTargetId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignTargetsCreateActivity](#CampaignTargetsCreateActivity)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CampaignTypeId](#CampaignTypeId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CreateOpportunityForProjectQuotation](#CreateOpportunityForProjectQuotation)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CreateOpportunityForSalesQuotation](#CreateOpportunityForSalesQuotation)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CurrencyCode](#CurrencyCode)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[CustGroup](#CustGroup)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[DefaultUserId](#DefaultUserId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[DocuAgeLimitForDisplay](#DocuAgeLimitForDisplay)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[DocuTypeIdForFiles](#DocuTypeIdForFiles)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[DocuTypeIdForOutEMail](#DocuTypeIdForOutEMail)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[EmailMemberCopyType](#EmailMemberCopyType)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[FollowupCreateActivity](#FollowupCreateActivity)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[key](#key)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LanguageId](#LanguageId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogActivities](#LogActivities)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogBusRel](#LogBusRel)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogCampaignTable](#LogCampaignTable)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogCaseDetail](#LogCaseDetail)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogContactPerson](#LogContactPerson)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogCustTable](#LogCustTable)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogCustTrans](#LogCustTrans)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogDelete](#LogDelete)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogDocuRef](#LogDocuRef)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogInsert](#LogInsert)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogLeadTable](#LogLeadTable)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogMailings](#LogMailings)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogOpportunity](#LogOpportunity)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogQuotationTable](#LogQuotationTable)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogSalesTable](#LogSalesTable)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogTMCallListTable](#LogTMCallListTable)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogUpdate](#LogUpdate)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogVendTable](#LogVendTable)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[LogVendTrans](#LogVendTrans)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[MailingfileDirectory](#MailingfileDirectory)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[MCRCatalogReqActivityCategory](#MCRCatalogReqActivityCategory)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[MCRCatalogReqActivityCreate](#MCRCatalogReqActivityCreate)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[MCRCatalogReqActivityPhase](#MCRCatalogReqActivityPhase)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[MCRCatalogReqActivityPurpose](#MCRCatalogReqActivityPurpose)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[MCRCatalogReqActivityType](#MCRCatalogReqActivityType)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[MCRCatalogSentActivityCategory](#MCRCatalogSentActivityCategory)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[MCRCatalogSentActivityCreate](#MCRCatalogSentActivityCreate)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[MCRCatalogSentActivityPhase](#MCRCatalogSentActivityPhase)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[MCRCatalogSentActivityPurpose](#MCRCatalogSentActivityPurpose)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[MCRCatalogSentActivityType](#MCRCatalogSentActivityType)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[NumOfCampaignDaysFollowUpDate](#NumOfCampaignDaysFollowUpDate)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[OpenFromTime](#OpenFromTime)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[OpenToTime](#OpenToTime)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[PeriodFrom](#PeriodFrom)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[PeriodId](#PeriodId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[PeriodTo](#PeriodTo)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[PhoneInboundActivityType](#PhoneInboundActivityType)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[PhoneOutboundActivityType](#PhoneOutboundActivityType)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[PhoneOutboundStandardPrefix](#PhoneOutboundStandardPrefix)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[ProjGroupId](#ProjGroupId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[QuotationActivityCategory](#QuotationActivityCategory)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[QuotationActivityPhaseId](#QuotationActivityPhaseId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[QuotationActivityPurpose](#QuotationActivityPurpose)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[QuotationActivityTypeId](#QuotationActivityTypeId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[QuotationCreateActivity](#QuotationCreateActivity)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[RunBaseBatchCreateActivity](#RunBaseBatchCreateActivity)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TelemarkeringTargetActivityPhase](#TelemarkeringTargetActivityPhase)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TelemarketingActivityPurpose](#TelemarketingActivityPurpose)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TelemarketingTargetActivityCategory](#TelemarketingTargetActivityCategory)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TelemarketingTargetActivityType](#TelemarketingTargetActivityType)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TelemarketingTargetsCreateActivity](#TelemarketingTargetsCreateActivity)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TMCallBackActivityCategory](#TMCallBackActivityCategory)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TMCallBackActivityPhase](#TMCallBackActivityPhase)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TMCallBackActivityPurpose](#TMCallBackActivityPurpose)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TMCallbackActivityType](#TMCallbackActivityType)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TMFollowUpActivityCategory](#TMFollowUpActivityCategory)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TMFollowUpActivityPhase](#TMFollowUpActivityPhase)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TMFollowUpActivityPurpose](#TMFollowUpActivityPurpose)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TMFollowUpActivityType](#TMFollowUpActivityType)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[TransLogInterval](#TransLogInterval)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[UpdateOpportunityForProjectQuotation](#UpdateOpportunityForProjectQuotation)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[UpdateOpportunityForSalesQuotation](#UpdateOpportunityForSalesQuotation)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[VendGroupId](#VendGroupId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[WebSiteURL](#WebSiteURL)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[DataAreaId](#DataAreaId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_CurrencyRelationshipId](#Relationship_CurrencyRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_CustGroupRelationshipId](#Relationship_CustGroupRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_DocuType_FilesRelationshipId](#Relationship_DocuType_FilesRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_DocuType_InEMailRelationshipId](#Relationship_DocuType_InEMailRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_DocuType_OutEMailRelationshipId](#Relationship_DocuType_OutEMailRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_LanguageTableRelationshipId](#Relationship_LanguageTableRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_ProjGroupRelationshipId](#Relationship_ProjGroupRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_ProjPeriodTableRelationshipId](#Relationship_ProjPeriodTableRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_smmBusRelStatusGroupRelationshipId](#Relationship_smmBusRelStatusGroupRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_smmBusRelTypeGroupRelationshipId](#Relationship_smmBusRelTypeGroupRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_smmCampaignGroupRelationshipId](#Relationship_smmCampaignGroupRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_smmCampaignTargetTableRelationshipId](#Relationship_smmCampaignTargetTableRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_smmCampaignTypeGroupRelationshipId](#Relationship_smmCampaignTypeGroupRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_VendGroupRelationshipId](#Relationship_VendGroupRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| |[Relationship_CompanyRelationshipId](#Relationship_CompanyRelationshipId)||<a href="smmParametersTable.md" target="_blank">Parameter/smmParametersTable</a>| ### <a href=#RecId name="RecId">RecId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>isPrimaryKey</td><td>true</td></tr><tr><td>dataFormat</td><td>int64</td></tr><tr><td>isReadOnly</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the RecId attribute are listed below.</summary> **is.dataFormat.integer** **is.dataFormat.big** **is.identifiedBy** names a specifc identity attribute to use with an entity <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>attribute</td><td>[smmParametersTable/(resolvedAttributes)/RecId](#RecId)</td><td>attribute</td><td></td></tr></table> **is.readOnly** **is.dataFormat.integer** **is.dataFormat.big** </details> ### <a href=#DocuTypeIdForInEMail name="DocuTypeIdForInEMail">DocuTypeIdForInEMail</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Document type for incoming email</td></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the DocuTypeIdForInEMail attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Document type for incoming email</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#CampaignTargetActivityPhase name="CampaignTargetActivityPhase">CampaignTargetActivityPhase</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignTargetActivityPhase attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#CampaignTargetActivityType name="CampaignTargetActivityType">CampaignTargetActivityType</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignTargetActivityType attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#AgreementAccountKey_RU name="AgreementAccountKey_RU">AgreementAccountKey_RU</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Customer account</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the AgreementAccountKey_RU attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Customer account</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#AgreementClassificationKey_RU name="AgreementClassificationKey_RU">AgreementClassificationKey_RU</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Agreement classification</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the AgreementClassificationKey_RU attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Agreement classification</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#AgreementCurrencyKey_RU name="AgreementCurrencyKey_RU">AgreementCurrencyKey_RU</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Currency</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the AgreementCurrencyKey_RU attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Currency</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#AgreementDocumentTitleKey_RU name="AgreementDocumentTitleKey_RU">AgreementDocumentTitleKey_RU</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Document title</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the AgreementDocumentTitleKey_RU attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Document title</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#AgreementExtRefKey_RU name="AgreementExtRefKey_RU">AgreementExtRefKey_RU</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>External reference</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the AgreementExtRefKey_RU attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>External reference</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#AgreementYearKey_RU name="AgreementYearKey_RU">AgreementYearKey_RU</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Year</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the AgreementYearKey_RU attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Year</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#AutoCreateBusinessRelation name="AutoCreateBusinessRelation">AutoCreateBusinessRelation</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Create a prospect</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the AutoCreateBusinessRelation attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Create a prospect</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#AutoCreateCustomer name="AutoCreateCustomer">AutoCreateCustomer</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Create customer when qualified</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the AutoCreateCustomer attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Create customer when qualified</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#AutoCreateOpportunity name="AutoCreateOpportunity">AutoCreateOpportunity</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Create opportunity when qualified</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the AutoCreateOpportunity attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Create opportunity when qualified</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#BusRelOpenCustForm name="BusRelOpenCustForm">BusRelOpenCustForm</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Open customer or vendor form on converting a prospect</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the BusRelOpenCustForm attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Open customer or vendor form on converting a prospect</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#BusRelStatus name="BusRelStatus">BusRelStatus</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the BusRelStatus attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#BusRelTypeId name="BusRelTypeId">BusRelTypeId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the BusRelTypeId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#CallBackCreateActivity name="CallBackCreateActivity">CallBackCreateActivity</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CallBackCreateActivity attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#CampaignActivityCategory name="CampaignActivityCategory">CampaignActivityCategory</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignActivityCategory attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#CampaignActivityPhaseId name="CampaignActivityPhaseId">CampaignActivityPhaseId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignActivityPhaseId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#CampaignActivityPurpose name="CampaignActivityPurpose">CampaignActivityPurpose</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignActivityPurpose attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#CampaignActivityTypeId name="CampaignActivityTypeId">CampaignActivityTypeId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignActivityTypeId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#CampaignCreateActivity name="CampaignCreateActivity">CampaignCreateActivity</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignCreateActivity attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#CampaignGroupId name="CampaignGroupId">CampaignGroupId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignGroupId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#CampaignNumOfDaysExpiryDate name="CampaignNumOfDaysExpiryDate">CampaignNumOfDaysExpiryDate</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Days campaign expires</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignNumOfDaysExpiryDate attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Days campaign expires</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#CampaignStatus name="CampaignStatus">CampaignStatus</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignStatus attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#CampaignTargetActivityCategory name="CampaignTargetActivityCategory">CampaignTargetActivityCategory</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignTargetActivityCategory attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#CampaignTargetActivityPurpose name="CampaignTargetActivityPurpose">CampaignTargetActivityPurpose</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignTargetActivityPurpose attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#CampaignTargetId name="CampaignTargetId">CampaignTargetId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignTargetId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#CampaignTargetsCreateActivity name="CampaignTargetsCreateActivity">CampaignTargetsCreateActivity</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignTargetsCreateActivity attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#CampaignTypeId name="CampaignTypeId">CampaignTypeId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CampaignTypeId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#CreateOpportunityForProjectQuotation name="CreateOpportunityForProjectQuotation">CreateOpportunityForProjectQuotation</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Create opportunity for project quotations</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CreateOpportunityForProjectQuotation attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Create opportunity for project quotations</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#CreateOpportunityForSalesQuotation name="CreateOpportunityForSalesQuotation">CreateOpportunityForSalesQuotation</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Create opportunity for sales quotation</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CreateOpportunityForSalesQuotation attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Create opportunity for sales quotation</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#CurrencyCode name="CurrencyCode">CurrencyCode</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CurrencyCode attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#CustGroup name="CustGroup">CustGroup</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the CustGroup attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#DefaultUserId name="DefaultUserId">DefaultUserId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the DefaultUserId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#DocuAgeLimitForDisplay name="DocuAgeLimitForDisplay">DocuAgeLimitForDisplay</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the DocuAgeLimitForDisplay attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#DocuTypeIdForFiles name="DocuTypeIdForFiles">DocuTypeIdForFiles</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Document type for other documents</td></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the DocuTypeIdForFiles attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Document type for other documents</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#DocuTypeIdForOutEMail name="DocuTypeIdForOutEMail">DocuTypeIdForOutEMail</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Document type for outgoing email</td></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the DocuTypeIdForOutEMail attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Document type for outgoing email</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#EmailMemberCopyType name="EmailMemberCopyType">EmailMemberCopyType</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the EmailMemberCopyType attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#FollowupCreateActivity name="FollowupCreateActivity">FollowupCreateActivity</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the FollowupCreateActivity attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#key name="key">key</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isReadOnly</td><td>true</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the key attribute are listed below.</summary> **is.dataFormat.integer** **is.readOnly** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LanguageId name="LanguageId">LanguageId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LanguageId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#LogActivities name="LogActivities">LogActivities</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogActivities attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogBusRel name="LogBusRel">LogBusRel</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogBusRel attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogCampaignTable name="LogCampaignTable">LogCampaignTable</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogCampaignTable attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogCaseDetail name="LogCaseDetail">LogCaseDetail</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogCaseDetail attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogContactPerson name="LogContactPerson">LogContactPerson</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogContactPerson attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogCustTable name="LogCustTable">LogCustTable</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogCustTable attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogCustTrans name="LogCustTrans">LogCustTrans</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogCustTrans attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogDelete name="LogDelete">LogDelete</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogDelete attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogDocuRef name="LogDocuRef">LogDocuRef</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogDocuRef attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogInsert name="LogInsert">LogInsert</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogInsert attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogLeadTable name="LogLeadTable">LogLeadTable</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogLeadTable attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogMailings name="LogMailings">LogMailings</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogMailings attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogOpportunity name="LogOpportunity">LogOpportunity</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogOpportunity attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogQuotationTable name="LogQuotationTable">LogQuotationTable</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogQuotationTable attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogSalesTable name="LogSalesTable">LogSalesTable</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogSalesTable attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogTMCallListTable name="LogTMCallListTable">LogTMCallListTable</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogTMCallListTable attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogUpdate name="LogUpdate">LogUpdate</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogUpdate attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogVendTable name="LogVendTable">LogVendTable</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogVendTable attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#LogVendTrans name="LogVendTrans">LogVendTrans</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the LogVendTrans attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#MailingfileDirectory name="MailingfileDirectory">MailingfileDirectory</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Mailing file directory</td></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the MailingfileDirectory attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Mailing file directory</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#MCRCatalogReqActivityCategory name="MCRCatalogReqActivityCategory">MCRCatalogReqActivityCategory</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Catalog requested category</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the MCRCatalogReqActivityCategory attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Catalog requested category</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#MCRCatalogReqActivityCreate name="MCRCatalogReqActivityCreate">MCRCatalogReqActivityCreate</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Create activity for catalog is requested</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the MCRCatalogReqActivityCreate attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Create activity for catalog is requested</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#MCRCatalogReqActivityPhase name="MCRCatalogReqActivityPhase">MCRCatalogReqActivityPhase</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Catalog request activity phase</td></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the MCRCatalogReqActivityPhase attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Catalog request activity phase</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#MCRCatalogReqActivityPurpose name="MCRCatalogReqActivityPurpose">MCRCatalogReqActivityPurpose</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Catalog request activity purpose</td></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the MCRCatalogReqActivityPurpose attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Catalog request activity purpose</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#MCRCatalogReqActivityType name="MCRCatalogReqActivityType">MCRCatalogReqActivityType</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Catalog request activity type</td></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the MCRCatalogReqActivityType attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Catalog request activity type</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#MCRCatalogSentActivityCategory name="MCRCatalogSentActivityCategory">MCRCatalogSentActivityCategory</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Catalog sent category</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the MCRCatalogSentActivityCategory attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Catalog sent category</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#MCRCatalogSentActivityCreate name="MCRCatalogSentActivityCreate">MCRCatalogSentActivityCreate</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Create activity for catalog is sent</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the MCRCatalogSentActivityCreate attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Create activity for catalog is sent</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#MCRCatalogSentActivityPhase name="MCRCatalogSentActivityPhase">MCRCatalogSentActivityPhase</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Catalog sent activity phase</td></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the MCRCatalogSentActivityPhase attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Catalog sent activity phase</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#MCRCatalogSentActivityPurpose name="MCRCatalogSentActivityPurpose">MCRCatalogSentActivityPurpose</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Catalog sent activity purpose</td></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the MCRCatalogSentActivityPurpose attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Catalog sent activity purpose</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#MCRCatalogSentActivityType name="MCRCatalogSentActivityType">MCRCatalogSentActivityType</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Catalog sent activity type</td></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the MCRCatalogSentActivityType attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Catalog sent activity type</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#NumOfCampaignDaysFollowUpDate name="NumOfCampaignDaysFollowUpDate">NumOfCampaignDaysFollowUpDate</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Days before follow-up</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the NumOfCampaignDaysFollowUpDate attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Days before follow-up</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#OpenFromTime name="OpenFromTime">OpenFromTime</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>time</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the OpenFromTime attribute are listed below.</summary> **is.dataFormat.time** **means.measurement.time** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.time** </details> ### <a href=#OpenToTime name="OpenToTime">OpenToTime</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>time</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the OpenToTime attribute are listed below.</summary> **is.dataFormat.time** **means.measurement.time** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.time** </details> ### <a href=#PeriodFrom name="PeriodFrom">PeriodFrom</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>date</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the PeriodFrom attribute are listed below.</summary> **is.dataFormat.date** **means.measurement.date** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.date** </details> ### <a href=#PeriodId name="PeriodId">PeriodId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the PeriodId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#PeriodTo name="PeriodTo">PeriodTo</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>date</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the PeriodTo attribute are listed below.</summary> **is.dataFormat.date** **means.measurement.date** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.date** </details> ### <a href=#PhoneInboundActivityType name="PhoneInboundActivityType">PhoneInboundActivityType</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Activity type for inbound calls</td></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the PhoneInboundActivityType attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Activity type for inbound calls</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#PhoneOutboundActivityType name="PhoneOutboundActivityType">PhoneOutboundActivityType</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Activity type for outbound calls</td></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the PhoneOutboundActivityType attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Activity type for outbound calls</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#PhoneOutboundStandardPrefix name="PhoneOutboundStandardPrefix">PhoneOutboundStandardPrefix</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the PhoneOutboundStandardPrefix attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#ProjGroupId name="ProjGroupId">ProjGroupId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the ProjGroupId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#QuotationActivityCategory name="QuotationActivityCategory">QuotationActivityCategory</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the QuotationActivityCategory attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#QuotationActivityPhaseId name="QuotationActivityPhaseId">QuotationActivityPhaseId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the QuotationActivityPhaseId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#QuotationActivityPurpose name="QuotationActivityPurpose">QuotationActivityPurpose</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the QuotationActivityPurpose attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#QuotationActivityTypeId name="QuotationActivityTypeId">QuotationActivityTypeId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the QuotationActivityTypeId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#QuotationCreateActivity name="QuotationCreateActivity">QuotationCreateActivity</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the QuotationCreateActivity attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#RunBaseBatchCreateActivity name="RunBaseBatchCreateActivity">RunBaseBatchCreateActivity</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the RunBaseBatchCreateActivity attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#TelemarkeringTargetActivityPhase name="TelemarkeringTargetActivityPhase">TelemarkeringTargetActivityPhase</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TelemarkeringTargetActivityPhase attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#TelemarketingActivityPurpose name="TelemarketingActivityPurpose">TelemarketingActivityPurpose</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TelemarketingActivityPurpose attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#TelemarketingTargetActivityCategory name="TelemarketingTargetActivityCategory">TelemarketingTargetActivityCategory</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TelemarketingTargetActivityCategory attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#TelemarketingTargetActivityType name="TelemarketingTargetActivityType">TelemarketingTargetActivityType</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TelemarketingTargetActivityType attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#TelemarketingTargetsCreateActivity name="TelemarketingTargetsCreateActivity">TelemarketingTargetsCreateActivity</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TelemarketingTargetsCreateActivity attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#TMCallBackActivityCategory name="TMCallBackActivityCategory">TMCallBackActivityCategory</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TMCallBackActivityCategory attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#TMCallBackActivityPhase name="TMCallBackActivityPhase">TMCallBackActivityPhase</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TMCallBackActivityPhase attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#TMCallBackActivityPurpose name="TMCallBackActivityPurpose">TMCallBackActivityPurpose</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TMCallBackActivityPurpose attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#TMCallbackActivityType name="TMCallbackActivityType">TMCallbackActivityType</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TMCallbackActivityType attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#TMFollowUpActivityCategory name="TMFollowUpActivityCategory">TMFollowUpActivityCategory</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TMFollowUpActivityCategory attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#TMFollowUpActivityPhase name="TMFollowUpActivityPhase">TMFollowUpActivityPhase</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TMFollowUpActivityPhase attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#TMFollowUpActivityPurpose name="TMFollowUpActivityPurpose">TMFollowUpActivityPurpose</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TMFollowUpActivityPurpose attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#TMFollowUpActivityType name="TMFollowUpActivityType">TMFollowUpActivityType</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TMFollowUpActivityType attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#TransLogInterval name="TransLogInterval">TransLogInterval</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the TransLogInterval attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.integer** </details> ### <a href=#UpdateOpportunityForProjectQuotation name="UpdateOpportunityForProjectQuotation">UpdateOpportunityForProjectQuotation</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Update opportunity when project quotation status changes</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the UpdateOpportunityForProjectQuotation attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Update opportunity when project quotation status changes</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#UpdateOpportunityForSalesQuotation name="UpdateOpportunityForSalesQuotation">UpdateOpportunityForSalesQuotation</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>displayName</td><td>Update opportunity when sales quotation status changes</td></tr><tr><td>dataFormat</td><td>int32</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the UpdateOpportunityForSalesQuotation attribute are listed below.</summary> **is.dataFormat.integer** **is.nullable** The attribute value may be set to NULL. **is.localized.displayedAs** Holds the list of language specific display text for an object. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>localizedDisplayText</td><td><table><tr><th>languageTag</th><th>displayText</th></tr><tr><td>en</td><td>Update opportunity when sales quotation status changes</td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of localized text</td></tr></table> **is.dataFormat.integer** </details> ### <a href=#VendGroupId name="VendGroupId">VendGroupId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the VendGroupId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#WebSiteURL name="WebSiteURL">WebSiteURL</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isNullable</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the WebSiteURL attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.nullable** The attribute value may be set to NULL. **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#DataAreaId name="DataAreaId">DataAreaId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>string</td></tr><tr><td>isReadOnly</td><td>true</td></tr></table> #### Traits <details> <summary>List of traits for the DataAreaId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.readOnly** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_CurrencyRelationshipId name="Relationship_CurrencyRelationshipId">Relationship_CurrencyRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_CurrencyRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../../../Common/Currency/Group/Currency.md" target="_blank">/core/operationsCommon/Tables/Common/Currency/Group/Currency.cdm.json/Currency</a></td><td><a href="../../../Common/Currency/Group/Currency.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_CustGroupRelationshipId name="Relationship_CustGroupRelationshipId">Relationship_CustGroupRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_CustGroupRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../../../Finance/AccountsReceivable/Group/CustGroup.md" target="_blank">/core/operationsCommon/Tables/Finance/AccountsReceivable/Group/CustGroup.cdm.json/CustGroup</a></td><td><a href="../../../Finance/AccountsReceivable/Group/CustGroup.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_DocuType_FilesRelationshipId name="Relationship_DocuType_FilesRelationshipId">Relationship_DocuType_FilesRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_DocuType_FilesRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../../../System/SystemAdministration/Group/DocuType.md" target="_blank">/core/operationsCommon/Tables/System/SystemAdministration/Group/DocuType.cdm.json/DocuType</a></td><td><a href="../../../System/SystemAdministration/Group/DocuType.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_DocuType_InEMailRelationshipId name="Relationship_DocuType_InEMailRelationshipId">Relationship_DocuType_InEMailRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_DocuType_InEMailRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../../../System/SystemAdministration/Group/DocuType.md" target="_blank">/core/operationsCommon/Tables/System/SystemAdministration/Group/DocuType.cdm.json/DocuType</a></td><td><a href="../../../System/SystemAdministration/Group/DocuType.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_DocuType_OutEMailRelationshipId name="Relationship_DocuType_OutEMailRelationshipId">Relationship_DocuType_OutEMailRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_DocuType_OutEMailRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../../../System/SystemAdministration/Group/DocuType.md" target="_blank">/core/operationsCommon/Tables/System/SystemAdministration/Group/DocuType.cdm.json/DocuType</a></td><td><a href="../../../System/SystemAdministration/Group/DocuType.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_LanguageTableRelationshipId name="Relationship_LanguageTableRelationshipId">Relationship_LanguageTableRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_LanguageTableRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../../../System/SystemAdministration/Group/LanguageTable.md" target="_blank">/core/operationsCommon/Tables/System/SystemAdministration/Group/LanguageTable.cdm.json/LanguageTable</a></td><td><a href="../../../System/SystemAdministration/Group/LanguageTable.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_ProjGroupRelationshipId name="Relationship_ProjGroupRelationshipId">Relationship_ProjGroupRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_ProjGroupRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../../../ProfessionalServices/ProjectManagementAndAccounting/Group/ProjGroup.md" target="_blank">/core/operationsCommon/Tables/ProfessionalServices/ProjectManagementAndAccounting/Group/ProjGroup.cdm.json/ProjGroup</a></td><td><a href="../../../ProfessionalServices/ProjectManagementAndAccounting/Group/ProjGroup.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_ProjPeriodTableRelationshipId name="Relationship_ProjPeriodTableRelationshipId">Relationship_ProjPeriodTableRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_ProjPeriodTableRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../../../ProfessionalServices/ProjectManagementAndAccounting/Group/ProjPeriodTable.md" target="_blank">/core/operationsCommon/Tables/ProfessionalServices/ProjectManagementAndAccounting/Group/ProjPeriodTable.cdm.json/ProjPeriodTable</a></td><td><a href="../../../ProfessionalServices/ProjectManagementAndAccounting/Group/ProjPeriodTable.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_smmBusRelStatusGroupRelationshipId name="Relationship_smmBusRelStatusGroupRelationshipId">Relationship_smmBusRelStatusGroupRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_smmBusRelStatusGroupRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../Group/smmBusRelStatusGroup.md" target="_blank">/core/operationsCommon/Tables/SupplyChain/SalesAndMarketing/Group/smmBusRelStatusGroup.cdm.json/smmBusRelStatusGroup</a></td><td><a href="../Group/smmBusRelStatusGroup.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_smmBusRelTypeGroupRelationshipId name="Relationship_smmBusRelTypeGroupRelationshipId">Relationship_smmBusRelTypeGroupRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_smmBusRelTypeGroupRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../Group/smmBusRelTypeGroup.md" target="_blank">/core/operationsCommon/Tables/SupplyChain/SalesAndMarketing/Group/smmBusRelTypeGroup.cdm.json/smmBusRelTypeGroup</a></td><td><a href="../Group/smmBusRelTypeGroup.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_smmCampaignGroupRelationshipId name="Relationship_smmCampaignGroupRelationshipId">Relationship_smmCampaignGroupRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_smmCampaignGroupRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../Group/smmCampaignGroup.md" target="_blank">/core/operationsCommon/Tables/SupplyChain/SalesAndMarketing/Group/smmCampaignGroup.cdm.json/smmCampaignGroup</a></td><td><a href="../Group/smmCampaignGroup.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_smmCampaignTargetTableRelationshipId name="Relationship_smmCampaignTargetTableRelationshipId">Relationship_smmCampaignTargetTableRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_smmCampaignTargetTableRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../Group/smmCampaignTargetTable.md" target="_blank">/core/operationsCommon/Tables/SupplyChain/SalesAndMarketing/Group/smmCampaignTargetTable.cdm.json/smmCampaignTargetTable</a></td><td><a href="../Group/smmCampaignTargetTable.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_smmCampaignTypeGroupRelationshipId name="Relationship_smmCampaignTypeGroupRelationshipId">Relationship_smmCampaignTypeGroupRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_smmCampaignTypeGroupRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../Group/smmCampaignTypeGroup.md" target="_blank">/core/operationsCommon/Tables/SupplyChain/SalesAndMarketing/Group/smmCampaignTypeGroup.cdm.json/smmCampaignTypeGroup</a></td><td><a href="../Group/smmCampaignTypeGroup.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_VendGroupRelationshipId name="Relationship_VendGroupRelationshipId">Relationship_VendGroupRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_VendGroupRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../../Vendor/Group/VendGroup.md" target="_blank">/core/operationsCommon/Tables/SupplyChain/Vendor/Group/VendGroup.cdm.json/VendGroup</a></td><td><a href="../../Vendor/Group/VendGroup.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details> ### <a href=#Relationship_CompanyRelationshipId name="Relationship_CompanyRelationshipId">Relationship_CompanyRelationshipId</a> First included in: Parameter/smmParametersTable (this entity) #### Properties <table><tr><th>Name</th><th>Value</th></tr><tr><td>dataFormat</td><td>guid</td></tr></table> #### Traits <details> <summary>List of traits for the Relationship_CompanyRelationshipId attribute are listed below.</summary> **is.dataFormat.character** **is.dataFormat.big** **is.dataFormat.array** **is.dataFormat.guid** **means.identity.entityId** **is.linkedEntity.identifier** Marks the attribute(s) that hold foreign key references to a linked (used as an attribute) entity. This attribute is added to the resolved entity to enumerate the referenced entities. <table><tr><th>Parameter</th><th>Value</th><th>Data type</th><th>Explanation</th></tr><tr><td>entityReferences</td><td><table><tr><th>entityReference</th><th>attributeReference</th></tr><tr><td><a href="../../../Finance/Ledger/Main/CompanyInfo.md" target="_blank">/core/operationsCommon/Tables/Finance/Ledger/Main/CompanyInfo.cdm.json/CompanyInfo</a></td><td><a href="../../../Finance/Ledger/Main/CompanyInfo.md#RecId" target="_blank">RecId</a></td></tr></table></td><td>entity</td><td>a reference to the constant entity holding the list of entity references</td></tr></table> **is.dataFormat.guid** **is.dataFormat.character** **is.dataFormat.array** </details>
markdown
console.log('The bot is starting'); var Twit= require('twit'); var config = require('./config'); var T= new Twit(config); tweetIt(); setInterval(tweetIt, 1000*60*30) function tweetIt() { var r= Math.floor(Math.random()*100); var tweet= { status: 'Hello Dulce <3 I am a bot. Random tweet interval number: ' + r + ' #nodejs #javascript' } T.post('statuses/update', tweet, tweeted); function tweeted(err, data, response){ if (err) { console.log("Something went wrong!"); } else{ console.log(" It worked!") } } }
javascript
Event Name : Event Venue : KVK address : Contact person details : Event Date : Pre Event Description : On 5th Dec 2019 KVK Dholpur organized on World Soil Health Day. For this programme Head and Senior Scientist, KVK Dholpur, Dr. L.P.Balai, Scientist, plant Pathology, Sh S M Meena, Scientist, Dr Madho Singh Scientist, Dholpur MLA Smt Sobha Rani, Sarpanch Rajakhera, COA, Staff are present in this programm Dr l .p Balai had given brief introduction on Soil, Soil health Management, Subsurface Drainage System & recommended report on fertilizer management through KRUSHIK Mobile App. Mr. Amrish Chaudhari guided farmers on Nutrient Management. Dr. Syed Shakir Ali has guided farmers on Fishery trainings & KRUSHIK Live Demo & Agri Expo 2020. Later on, all dignitaries distributed Soil Health Cards to the farmers.Total 105 farmers participated in the programme.
english
<gh_stars>1-10 {"balance":"100999900","script":{"code":[{"prim":"parameter","args":[{"prim":"or","args":[{"prim":"key_hash","annots":["%Initialize"]},{"prim":"pair","args":[{"prim":"key","annots":["%from"]},{"prim":"pair","args":[{"prim":"mutez","annots":["%withdraw_amount"]},{"prim":"signature","annots":["%sig"]}]}],"annots":["%Withdraw"]}]}]},{"prim":"storage","args":[{"prim":"map","args":[{"prim":"key_hash"},{"prim":"mutez"}],"annots":[":stored_balance"]}]},{"prim":"code","args":[[{"prim":"DUP"},{"prim":"CAR"},{"prim":"IF_LEFT","args":[[{"prim":"DUP"},{"prim":"DIP","args":[{"int":"2"},[{"prim":"CDR","annots":["%stored_balance"]},{"prim":"DUP"}]]},{"prim":"DIP","args":[[{"prim":"SWAP"}]]},{"prim":"GET","annots":["@opt_prev_balance"]},[{"prim":"IF_NONE","args":[[{"prim":"DIP","args":[[{"prim":"AMOUNT"},{"prim":"SOME"}]]},{"prim":"UPDATE"},{"prim":"NIL","args":[{"prim":"operation"}]},{"prim":"PAIR"}],[{"prim":"RENAME","annots":["@previous_balance"]},{"prim":"AMOUNT"},{"prim":"ADD"},{"prim":"SOME"},{"prim":"SWAP"},{"prim":"UPDATE"},{"prim":"NIL","args":[{"prim":"operation"}]},{"prim":"PAIR"}]]}]],[{"prim":"DUP"},{"prim":"DUP"},{"prim":"DUP"},{"prim":"DUP"},{"prim":"CAR","annots":["%from"]},{"prim":"DIP","args":[{"int":"2"},[[{"prim":"CDR"},{"prim":"CAR","annots":["%withdraw_amount"]}],{"prim":"PACK"},{"prim":"BLAKE2B","annots":["@signed_amount"]}]]},{"prim":"DIP","args":[[[{"prim":"CDR"},{"prim":"CDR","annots":["%sig"]}]]]},{"prim":"CHECK_SIGNATURE"},{"prim":"IF","args":[[],[{"prim":"PUSH","args":[{"prim":"string"},{"string":"Bad signature"}]},{"prim":"FAILWITH"}]]},{"prim":"DIP","args":[{"int":"2"},[{"prim":"CDR","annots":["%stored_balance"]},{"prim":"DUP"}]]},{"prim":"CAR","annots":["%from"]},{"prim":"HASH_KEY","annots":["@from_hash"]},{"prim":"DUP"},{"prim":"DIP","args":[[{"prim":"DIP","args":[[{"prim":"SWAP"}]]},{"prim":"SWAP"}]]},{"prim":"GET"},{"prim":"IF_NONE","args":[[{"prim":"PUSH","args":[{"prim":"string"},{"string":"Account does not exist"}]},{"prim":"PAIR"},{"prim":"FAILWITH"}],[{"prim":"RENAME","annots":["@previous_balance"]},{"prim":"DIP","args":[[{"prim":"DROP"}]]},{"prim":"DUP"},{"prim":"DIP","args":[{"int":"2"},[{"prim":"DUP"},[{"prim":"CDR"},{"prim":"CAR","annots":["%withdraw_amount"]}],{"prim":"DUP"}]]},{"prim":"DIP","args":[[[{"prim":"COMPARE"},{"prim":"LT","annots":["@not_enough"]}]]]},{"prim":"SWAP"},{"prim":"IF","args":[[{"prim":"PUSH","args":[{"prim":"string"},{"string":"Not enough funds"}]},{"prim":"FAILWITH"}],[{"prim":"SUB","annots":["@new_balance"]},{"prim":"DIP","args":[[{"prim":"DUP"},{"prim":"DIP","args":[[{"prim":"SWAP"}]]}]]},{"prim":"DUP"},{"prim":"PUSH","args":[{"prim":"mutez"},{"int":"0"}],"annots":["@zero"]},[{"prim":"COMPARE"},{"prim":"EQ","annots":["@null_balance"]}],{"prim":"IF","args":[[{"prim":"DROP"},{"prim":"NONE","args":[{"prim":"mutez"}],"annots":["@new_balance"]}],[{"prim":"SOME","annots":["@new_balance"]}]]},{"prim":"SWAP"},{"prim":"CAR","annots":["%from"]},{"prim":"HASH_KEY","annots":["@from_hash"]},{"prim":"UPDATE"},{"prim":"SWAP"},{"prim":"DUP"},[{"prim":"CDR"},{"prim":"CAR","annots":["%withdraw_amount"]}],{"prim":"DIP","args":[[{"prim":"CAR","annots":["%from"]},{"prim":"HASH_KEY","annots":["@from_hash"]},{"prim":"IMPLICIT_ACCOUNT","annots":["@from_account"]}]]},{"prim":"UNIT"},{"prim":"TRANSFER_TOKENS","annots":["@widthdraw_transfer_op"]},{"prim":"NIL","args":[{"prim":"operation"}]},{"prim":"SWAP"},{"prim":"CONS"},{"prim":"PAIR"}]]}]]}]]}]]}],"storage":[{"prim":"Elt","args":[{"string":"tz1eDKFXZP3D7L5DMjjqpJQgbrqWrY3TJKYt"},{"int":"100999900"}]}]}}
json
Abu Dhabi [UAE], June 10 (ANI/WAM): UAE Minister of State Sheikh Shakhboot bin Nahyan Al Nahyan participated in the Global Coalition Against Daesh Ministerial Meeting held in Riyadh and led by the Kingdom of Saudi Arabia and the United States of America. During his remarks, Sheikh Shakhboot stressed the pivotal role of the coalition in preventing the resurgence of Daesh and supporting vulnerable communities in confronting extremist ideologies. He also underscored the importance of continued multilateral efforts to preserve the coalition's accomplishments in Syria and Iraq. Additionally, he underscored the UAE's commitment to supporting the coalition's efforts to combat the group's expansion in Africa, emphasizing the significance of dialogue at the regional and international levels to effectively address terrorist activities and uphold the rights of women, children, and underrepresented populations. Moreover, Sheikh Shakhboot bin Nahyan addressed the importance of promoting tolerance, building and preserving peace and confronting bigotry, hate speech, and discrimination, as well as combating extremism in all its forms. Additionally, he reaffirmed the UAE's commitment to supporting international efforts aimed at defeating all forms of terrorism and extremism. The minister concluded by stating that the UAE firmly believes that cooperation and joint action are the key ways to combat terrorism and extremism as part of the UAE's vision for stability, peace, and prosperity. (ANI/WAM)
english
// ACTIVE STATE for SIZE BUTTONS var btnContainer = document.getElementById('size'); var btns = document.getElementsByClassName('size__buttons--button'); for (var i = 0; i < btns.length; i++) { btns[i].addEventListener("click", function() { var current = document.getElementsByClassName('size-active'); if (current.length > 0) { current[0].className = current[0].className.replace(" size-active", ""); } this.className += " size-active"; }); } // ACTIVE STATE for BADGES var btnContainer = document.getElementById('badge'); var btns = document.getElementsByClassName('badge__buttons--btn'); for (var i = 0; i < btns.length; i++) { btns[i].addEventListener("click", function() { var current = document.getElementsByClassName('badge-active'); if (current.length > 0) { current[0].className = current[0].className.replace(" badge-active", ""); } this.className += " badge-active"; }); } // COUNTDOWN var countdownDate = new Date ("Mar 1, 2021 14:30:01").getTime(); var x = setInterval(function() { var now = new Date().getTime(); var distance = countdownDate - now; var days = Math.floor(distance / (1000 * 60 * 60 * 24)); var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60)); var seconds = Math.floor((distance % (1000 * 60)) / 1000); document.getElementById("countdown").innerHTML = days + "d " + hours + "h " + minutes + "m " + seconds + "s " ; if (distance < 0) { clearInterval(x); document.getElementById("countdown").innerHTML = "OUT NOW"; } }, 1000);
javascript
Pune: Pune Crime News | A young man drowned in the swimming pool on the premises of the Zilha Krida Sankul (District Sports Complex), Yerwada on Sunday. Shirish Pandit Sutar (37) visited the place, along with his family, on Sunday afternoon. He entered the pool. However, he suddenly started drowning. Some people present there took him out of the pool and admitted to a hospital. However, the doctors declared him dead before treatment. PI Jaydeep Gaikwad, API Ravindra Alekar visited the pool. Meanwhile, the body was sent to the Sassoon Hospital for post-mortem. The Yerwada police are investigating the case.
english
/******************************************************************************* * Copyright (c) 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * Zend Technologies *******************************************************************************/ package org.eclipse.php.internal.ui.corext.dom.fragments; import org.eclipse.core.runtime.Assert; import org.eclipse.jface.text.BadLocationException; import org.eclipse.jface.text.IDocument; import org.eclipse.php.internal.core.ast.nodes.ASTNode; import org.eclipse.php.internal.core.ast.nodes.Expression; import org.eclipse.php.internal.core.ast.nodes.InfixExpression; import org.eclipse.php.internal.core.ast.visitor.HierarchicalVisitor; import org.eclipse.php.internal.core.corext.SourceRange; import org.eclipse.php.internal.core.corext.dom.Selection; import org.eclipse.php.internal.core.corext.dom.SelectionAnalyzer; /** * Creates various differing kinds of IASTFragments, all through a very narrow * interface. The kind of IASTFragment produced will depend on properties of the * parameters supplied to the factory methods, such as the types and * characteristics of AST nodes, or the location of source ranges. * * In general, the client will not be aware of exactly what kind of fragment is * obtained from these methods. Beyond the functionality provided by the * IASTFragment interface, the client can know, however, based on the parameters * passed, some things about the created fragment. See the documentation of the * factory methods. * * @see IASTFragment * */ public class ASTFragmentFactory { /** * If possible, this method creates a fragment whose source code range is * <code>range</code> within compilation unit <code>cu</code>, and which * resides somewhere within the subtree identified by <code>scope</code>. * * XXX: more doc (current assertions about input vs. output) * * @param range * The source range which the create fragment must have. * @param scope * A node identifying the AST subtree in which the fragment must * lie. * @param cu * The compilation unit to which the source range applies, and to * which the AST corresponds. * @return IASTFragment A fragment whose source range is <code>range</code> * within compilation unit <code>cu</code>, residing somewhere * within the AST subtree identified by <code>scope</code>. * @throws JavaModelException */ public static IASTFragment createFragmentForSourceRange(SourceRange range, ASTNode scope, IDocument document) throws Exception { SelectionAnalyzer sa = new SelectionAnalyzer( Selection.createFromStartLength(range.getOffset(), range.getLength()), false); scope.accept(sa); if (isSingleNodeSelected(sa, range, document, scope)) return ASTFragmentFactory.createFragmentForFullSubtree( sa.getFirstSelectedNode(), null); if (isEmptySelectionCoveredByANode(range, sa)) return ASTFragmentFactory.createFragmentForFullSubtree( sa.getLastCoveringNode(), null); return ASTFragmentFactory.createFragmentForSubPartBySourceRange( sa.getLastCoveringNode(), range, scope, document); } /** * Returns <code>null</code> if the indices, taken with respect to the node, * do not correspond to a valid node-sub-part fragment. * * @param document * @throws Exception */ private static IASTFragment createFragmentForSubPartBySourceRange( ASTNode node, SourceRange range, ASTNode scope, IDocument document) throws Exception { return FragmentForSubPartBySourceRangeFactory.createFragmentFor(node, range, scope, document); } private static boolean isEmptySelectionCoveredByANode(SourceRange range, SelectionAnalyzer sa) { return range.getLength() == 0 && sa.getFirstSelectedNode() == null && sa.getLastCoveringNode() != null; } private static boolean isSingleNodeSelected(SelectionAnalyzer sa, SourceRange range, IDocument document, ASTNode scope) throws BadLocationException { return sa.getSelectedNodes().length == 1 && !rangeIncludesNonWhitespaceOutsideNode(range, sa.getFirstSelectedNode(), document, scope); } private static boolean rangeIncludesNonWhitespaceOutsideNode( SourceRange range, ASTNode node, IDocument document, ASTNode scope) throws BadLocationException { return Util.rangeIncludesNonWhitespaceOutsideRange(range, new SourceRange(node), document); } /** * Creates and returns a fragment representing the entire subtree rooted at * <code>node</code>. It is not true in general that the node to which the * produced IASTFragment maps (see {@link IASTFragment IASTFragment}) will * be <code>node</code>. * * XXX: more doc (current assertions about input vs. output) * * @param astFragment */ public static IASTFragment createFragmentForFullSubtree(ASTNode node, IASTFragment astFragment) { IASTFragment result = FragmentForFullSubtreeFactory.createFragmentFor( node, astFragment); Assert.isNotNull(result); return result; } private static class FragmentForSubPartBySourceRangeFactory extends FragmentFactory { private SourceRange fRange; private ASTNode fScope; private Exception modelException = null; private IDocument fDocument; public static IASTFragment createFragmentFor(ASTNode node, SourceRange range, ASTNode scope, IDocument document) throws Exception { return new FragmentForSubPartBySourceRangeFactory().createFragment( node, range, scope, document); } public boolean visit(InfixExpression node) { try { setFragment(createInfixExpressionSubPartFragmentBySourceRange( node, fRange, fScope, fDocument)); } catch (Exception e) { modelException = e; } return false; } public boolean visit(ASTNode node) { // let fragment be null return false; } protected IASTFragment createFragment(ASTNode node, SourceRange range, ASTNode scope, IDocument document) throws Exception { fRange = range; fScope = scope; fDocument = document; IASTFragment result = createFragment(node, null); if (modelException != null) throw modelException; return result; } private static IExpressionFragment createInfixExpressionSubPartFragmentBySourceRange( InfixExpression node, SourceRange range, ASTNode scope, IDocument document) throws Exception { return AssociativeInfixExpressionFragment .createSubPartFragmentBySourceRange(node, range, document); } } private static class FragmentForFullSubtreeFactory extends FragmentFactory { public static IASTFragment createFragmentFor(ASTNode node, IASTFragment astFragment) { return new FragmentForFullSubtreeFactory().createFragment(node, astFragment); } public boolean visit(InfixExpression node) { /* * Try creating an associative infix expression fragment /* for the * full subtree. If this is not applicable, try something more * generic. */ IASTFragment fragment = AssociativeInfixExpressionFragment .createFragmentForFullSubtree(node); if (fragment == null) return visit((Expression) node); if (oldFragment instanceof AssociativeInfixExpressionFragment && fragment instanceof AssociativeInfixExpressionFragment) { AssociativeInfixExpressionFragment f1 = (AssociativeInfixExpressionFragment) oldFragment; AssociativeInfixExpressionFragment f2 = (AssociativeInfixExpressionFragment) fragment; if (f1.getOperands().size() != f2.getOperands().size()) { return visit((Expression) node); } } setFragment(fragment); return false; } public boolean visit(Expression node) { setFragment(new SimpleExpressionFragment(node)); return false; } public boolean visit(ASTNode node) { setFragment(new SimpleFragment(node)); return false; } } private static abstract class FragmentFactory extends HierarchicalVisitor { private IASTFragment fFragment; protected IASTFragment oldFragment; protected IASTFragment createFragment(ASTNode node, IASTFragment astFragment) { oldFragment = astFragment; fFragment = null; node.accept(this); return fFragment; } protected final IASTFragment getFragment() { return fFragment; } protected final void setFragment(IASTFragment fragment) { Assert.isTrue(!isFragmentSet()); fFragment = fragment; } protected final void clearFragment() { fFragment = null; } protected final boolean isFragmentSet() { return getFragment() != null; } } public static IASTFragment createFragmentForFullSubtree(ASTNode node) { return createFragmentForFullSubtree(node, null); } }
java
London: Altaf Hussain, the founder of Pakistan’s Muttahida Qaumi Movement (MQM), was arrested in London Tuesday over a hate speech in 2016 in which he had urged his followers to take the law into their own hands, the media reported. Scotland Yard raided Hussain’s London home in the morning and he was taken to a local police station. Fifteen officers took part in the raid, Geo News reported citing security sources. A forensic unit of Scotland Yard also searched Hussain’s residence. The news of his arrest was confirmed by MQM sources, Geo News said. It is believed that Hussain was arrested in relation to the hate speech of 2016 in which he had urged his followers to take the law into their own hands. He had also threatened former Director General Rangers Major General Bilal Akbar, according to the report. In 2017, Scotland Yard had sent a letter under “Mutual Legal Assistance” to Pakistan in relation to two speeches made by the MQM founder March 11, 2015 and August 22, 2016. Both the Crown Prosecution Service and Metropolitan Police Services had earlier confirmed to Geo that a criminal investigation had started against Hussain.
english
{ "tags": [ { "tag": "sitecore-xc-sxa-ps-standalone:9.3.0-windowsservercore-${windowsservercore_version}", "build-options": [ "--build-arg BASE_IMAGE=sitecore-xc-sxa-standalone:9.3.0-windowsservercore-${windowsservercore_version}", "--build-arg ASSETS_IMAGE=sitecore-assets:9.3.0-nanoserver-${nanoserver_version}", "--build-arg ASSETS_USE_WDP='C:\\packages\\Sitecore Publishing Module 9.3.0.0.scwdp.zip'" ], "experimental": true }, { "tag": "sitecore-xc-sxa-ps-cd:9.3.0-windowsservercore-${windowsservercore_version}", "build-options": [ "--build-arg BASE_IMAGE=sitecore-xc-sxa-cd:9.3.0-windowsservercore-${windowsservercore_version}", "--build-arg ASSETS_IMAGE=sitecore-assets:9.3.0-nanoserver-${nanoserver_version}", "--build-arg ASSETS_USE_WDP='C:\\packages\\Sitecore Publishing Module 9.3.0.0.scwdp.zip'" ], "experimental": true }, { "tag": "sitecore-xc-sxa-storefront-ps-standalone:9.3.0-windowsservercore-${windowsservercore_version}", "build-options": [ "--build-arg BASE_IMAGE=sitecore-xc-sxa-storefront-standalone:9.3.0-windowsservercore-${windowsservercore_version}", "--build-arg ASSETS_IMAGE=sitecore-assets:9.3.0-nanoserver-${nanoserver_version}", "--build-arg ASSETS_USE_WDP='C:\\packages\\Sitecore Publishing Module 9.3.0.0.scwdp.zip'" ], "experimental": true }, { "tag": "sitecore-xc-sxa-storefront-ps-cd:9.3.0-windowsservercore-${windowsservercore_version}", "build-options": [ "--build-arg BASE_IMAGE=sitecore-xc-sxa-storefront-cd:9.3.0-windowsservercore-${windowsservercore_version}", "--build-arg ASSETS_IMAGE=sitecore-assets:9.3.0-nanoserver-${nanoserver_version}", "--build-arg ASSETS_USE_WDP='C:\\packages\\Sitecore Publishing Module 9.3.0.0.scwdp.zip'" ], "experimental": true } ], "sources": [] }
json
<filename>public/page-data/sq/d/2841359383.json {"data":{"site":{"siteMetadata":{"title":"Tech News","description":"Top Tech News!","social":{"twitter":"https://www.linkedin.com/in/caiorrts/"}}}}}
json
<gh_stars>0 package cbc import ( "bytes" "crypto/aes" "crypto/cipher" "encoding/base64" "errors" "fmt" ) // Encrypt encrypts passed data into AES-256-CBC base64-encoded string. func Encrypt(data []byte, key, iv string) ([]byte, error) { if len(data) == 0 { return nil, errors.New("empty data payload provided") } c, cErr := aes.NewCipher([]byte(key)) if cErr != nil { return nil, fmt.Errorf("failed to create new AES cipher: %v", cErr) } enc := cipher.NewCBCEncrypter(c, []byte(iv)) dataB := pkcs5Padding(data, c.BlockSize()) encrypted := make([]byte, len(dataB)) enc.CryptBlocks(encrypted, dataB) return []byte(base64.StdEncoding.EncodeToString(encrypted)), nil } // Decrypt decrypts passed AES-256-CBC encrypted base64-encoded data. func Decrypt(data []byte, key, iv string) ([]byte, error) { encrypted, encryptedErr := base64.StdEncoding.DecodeString(string(data)) if encryptedErr != nil { return nil, fmt.Errorf("failed to decode encrypted base64 string: %v", encryptedErr) } c, cErr := aes.NewCipher([]byte(key)) if cErr != nil { return nil, fmt.Errorf("failed to create new AES cipher: %v", cErr) } dec := cipher.NewCBCDecrypter(c, []byte(iv)) decrypted := make([]byte, len(encrypted)) dec.CryptBlocks(decrypted, encrypted) tr, trErr := pkcs5Trimming(decrypted) if trErr != nil { return nil, trErr } return tr, nil } func pkcs5Padding(ciphertext []byte, blockSize int) []byte { padding := blockSize - len(ciphertext)%blockSize padtext := bytes.Repeat([]byte{byte(padding)}, padding) return append(ciphertext, padtext...) } func pkcs5Trimming(encrypt []byte) ([]byte, error) { if len(encrypt) == 0 { return nil, errors.New("empty trimming array") } encIdx := len(encrypt) - 1 if encIdx > len(encrypt)-1 { return nil, errors.New("invalid trimming index") } padding := encrypt[encIdx] if int(padding) == 0 || int(padding) > len(encrypt)-1 { return nil, errors.New("invalid encryption key") } return encrypt[:len(encrypt)-int(padding)], nil }
go
#include <algorithm> #include <iostream> #include <map> #include <queue> #include <set> #include <vector> using namespace std; int main() { while(true) { int n; cin >> n; if(n == -1) break; vector<vector<int> > adj(n, vector<int>(n)); for(int i = 0; i < n; i++) for(int j = 0; j < n; j++) { cin >> adj[i][j]; } vector<bool> strong(n); for(int i = 0; i < n; i++) for(int j = 0; j < n; j++) for(int k = 0; k < n; k++) if(adj[i][j] && adj[j][k] && adj[i][k]) strong[i] = true; for(int i = 0; i < n; i++) { if(!strong[i]) cout << i << " "; } cout << endl; } return 0; }
cpp
<gh_stars>0 Lode Runner === Lode Runner in native Java Swing. Written for a [Rose-Hulman Institute of Technology](https://rose-hulman.edu/) course final project. > _DISCLAIMER_: Code was originally written with only ~1.5 years of Java knowledge, so most patterns are very poorly implemented in order to get working within a few weeks two people and other assignments. > > Code was later refactored (@OneCricketeer) to make more portable + readable and slightly more testable. ## Screenshots ![game][3] ![main-menu][1] ![level2][2] [1]: ./doc/main-menu.png [2]: ./doc/level2.png [3]: ./doc/game.gif
markdown
enum Card { BOCI } let boci = Card.BOCI; // boci = 2; console.log(boci);
typescript
/** */ 'use strict'; import React from 'react'; import {Text, Button, View} from 'native-base'; import {ScrollView} from 'react-native'; import {homeStyles as styles} from './home.styles.ios'; import {HomeCommun, mapStateToProps, mapDispatchToProps} from './home-commun'; import {connect} from 'react-redux'; import I18n from '../../../i18n/tabs/home'; class Home extends HomeCommun { render() { return ( <View style={styles.container}> <Text style={styles.welcome}> {I18n.t('homeTab.content.title')} </Text> <Text style={styles.instructions}> Double tap R on your keyboard to reload, {'\n'} Shake or press menu button for dev menu </Text> <View style={styles.buttonContainer}> <Button style={styles.button} onPress={this.retrieveMoviesList}> <Text>{I18n.t('homeTab.content.buttons.fetch')}</Text> </Button> </View> <View style={styles.buttonContainer}> <Button style={styles.button} onPress={this.pressBro}> <Text>{I18n.t('homeTab.content.buttons.pressMe')}</Text> </Button> </View> <View style={styles.buttonContainer}> <Button style={styles.button2} onPress={this.goToSimpleScreen}> <Text>{I18n.t('homeTab.content.buttons.goSimpleScreen')}</Text> </Button> </View> <ScrollView style={{ flex: 0.8, marginTop: 20 }}> {this .movies() .map((movie) => { return ( <View key={movie._id}> <Text style={{ height: 20 }}>{movie._title}</Text> </View> ) })} </ScrollView> </View> ); } } export default connect(mapStateToProps, mapDispatchToProps)(Home);
typescript
MI Emirates have appointed a star-studded coaching panel for the inaugural edition of the ILT20 League. New Zealand great Shane Bond has been named as their head coach. Taking to Twitter, MI Emirates wrote: Shane Bond has served as the bowling coach for the five-time champions Mumbai Indians in the Indian Premier League (IPL) since 2015. The Kiwi comes with a wealth of experience under his belt. He also served as the bowling coach of New Zealand cricket from 2012 to 2015 and worked with the Brisbane Heat in the Big Bash League in 2015. The 47-year-old was also appointed head coach of the Sydney Thunder in BBL 2018. In an official press release, Bond said: Former Indian cricketers Parthiv Patel and Vinay Kumar will make their debut as batting and bowling coaches for MI Emirates, respectively. Patel comes with a wealth of experience playing in the IPL and has previously worked as a talent scout for the Mumbai Indians. The 37-year-old has also won the IPL title twice with MI (2015 and 2017). Vinay Kumar, too, has played over 100 matches in the IPL and represented India in 41 games across formats. Meanwhile, James Franklin will serve as the fielding coach of MI Emirates, while former Indian cricketer Robin Singh will take charge as the team's general manager in the UAE. Earlier, MI elevated Mahela Jayawardena and Zaheer Khan's roles. While Jayawardena was appointed as the "Global Head of Performance", Zaheer was named the "Global Head of Cricket Development". The duo have previously served as head coach and bowling coach of the Mumbai Indians, respectively. MI now have MI Cape Town (South Africa) and MI Emirates as overseas teams alongside the Mumbai Indians in the IPL. MI Emirates signings: Kieron Pollard, Dwayne Bravo, Nicholas Pooran, Trent Boult, Andre Fletcher, Imran Tahir, Samit Patel, Will Smeed, Jordan Thompson, Najibullah Zadran, Zahir Khan, Fazalhaq Farooqi, Bradley Wheal, and Bas De Leede. The inaugural edition of the ILT20 league will kick off in January 2023.
english
<reponame>Aurumalgia/KathoCore { "registerUsage": "&cUse: /register <senha> <senha>", "registerAlready": "&cVocê ja esta registrado por favor entre utilizando: /login <senha>", "registerSuccess": "&eVocê esta registrado com sucesso. Guarde ou memorize sua senha para entrar novamente.", "registerConfirm": "&cAs duas senhas precisão ser iguais. /register <senha> <senha>", "alreadyLogged": "&cVocê ja esta logado.", "loginNotYet": "&cVocê ainda não possui uma conta por favor utilize: /register <senha> <senha>", "loginUsage": "&cUse: /login <senha>", "loginSuccess": "&eVocê entrou com sucesso!", "loginIncorrect": "&cSenha incorreta.", "loginTitle": "&ePor-favor se logue:", "loginSubtitle": "/login <senha>", "loginWelcomeTitle": "&eBem-vindo!", "loginWelcomeSubtitle": "Aproveite o servidor", "registerTitle": "&ePor-favor se registre:", "registerSubtitle": "/register <senha> <senha>", "reloadKick": "&cPor-favor re-entre em nosso servidor.", "timeoutKick": "&cVocê demorou muito a entrar no servidor." }
json
export default function isMedia(element) { return [SVGElement, HTMLImageElement, HTMLVideoElement] .some((mediaType) => element instanceof mediaType); }
javascript
/* * Copyright 2019 LINE Corporation * * LINE Corporation licenses this file to you under the Apache License, * version 2.0 (the "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at: * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ package com.linecorp.armeria.server; import static org.assertj.core.api.Assertions.assertThat; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.RegisterExtension; import com.linecorp.armeria.client.WebClient; import com.linecorp.armeria.common.HttpMethod; import com.linecorp.armeria.common.HttpRequest; import com.linecorp.armeria.common.HttpResponse; import com.linecorp.armeria.testing.junit5.server.ServerExtension; class HttpServerParamPredicatesMatchingTest { @RegisterExtension public static final ServerExtension extension = new ServerExtension() { @Override protected void configure(ServerBuilder sb) throws Exception { sb.route().get("/matches").matchesParams("my-param=my-value") .build((ctx, req) -> HttpResponse.of("my-param=my-value")) .route().get("/matches") .build((ctx, req) -> HttpResponse.of("fallback")) .route().get("/doesNotMatch").matchesParams("my-param!=my-value") .build((ctx, req) -> HttpResponse.of("my-param!=my-value")) .route().get("/doesNotMatch") .build((ctx, req) -> HttpResponse.of("fallback")) .route().get("/contains").matchesParams("my-param") .build((ctx, req) -> HttpResponse.of("my-param")) .route().get("/contains") .build((ctx, req) -> HttpResponse.of("fallback")) .route().get("/doesNotContain").matchesParams("!my-param") .build((ctx, req) -> HttpResponse.of("!my-param")) .route().get("/doesNotContain") .build((ctx, req) -> HttpResponse.of("fallback")) .route().get("/matches/percentEncoded").matchesParams("my-param=/") .build((ctx, req) -> HttpResponse.of("my-param=/")) .route().get("/matches/percentEncoded").matchesParams("my-param=%2F") .build((ctx, req) -> HttpResponse.of("my-param=%2F")) .route().get("/custom").matchesParams("my-param", value -> Integer.parseInt(value) > 100) .build((ctx, req) -> HttpResponse.of("custom")) .route().get("/custom") .build((ctx, req) -> HttpResponse.of("fallback")); } }; private static WebClient client; @BeforeAll public static void beforeAll() { client = WebClient.of(extension.httpUri()); } @Test void matches() { assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/matches?my-param=my-value")) .aggregate().join().contentUtf8()).isEqualTo("my-param=my-value"); assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/matches?my-param=your-value")) .aggregate().join().contentUtf8()).isEqualTo("fallback"); } @Test void doesNotMatch() { assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/doesNotMatch?my-param=your-value")) .aggregate().join().contentUtf8()).isEqualTo("my-param!=my-value"); assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/doesNotMatch?my-param=my-value")) .aggregate().join().contentUtf8()).isEqualTo("fallback"); } @Test void contains() { assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/contains?my-param=any-value")) .aggregate().join().contentUtf8()).isEqualTo("my-param"); assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/contains?your-param=your-value")) .aggregate().join().contentUtf8()).isEqualTo("fallback"); } @Test void doesNotContain() { assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/doesNotContain?your-param=your-value")) .aggregate().join().contentUtf8()).isEqualTo("!my-param"); assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/doesNotContain?my-param=my-value")) .aggregate().join().contentUtf8()).isEqualTo("fallback"); } @Test void percentEncoded() { assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/matches/percentEncoded?my-param=/")) .aggregate().join().contentUtf8()).isEqualTo("my-param=/"); assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/matches/percentEncoded?my-param=%2F")) .aggregate().join().contentUtf8()).isEqualTo("my-param=/"); assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/matches/percentEncoded?my-param=%252F")) .aggregate().join().contentUtf8()).isEqualTo("my-param=%2F"); } @Test void custom() { assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/custom?my-param=0101")) .aggregate().join().contentUtf8()).isEqualTo("custom"); assertThat(client.execute(HttpRequest.of(HttpMethod.GET, "/custom?my-param=2")) .aggregate().join().contentUtf8()).isEqualTo("fallback"); } }
java
{ "id": 1736, "title": [ "[Gossamer Valley, Glacier]" ], "description": [ "A huge, rounded section of the DragonSpine Mountains impinges on the valley from the west, leaving three general directions of travel. A wide, flat, snow-filled valley extends due east, its flatness punctuated by boulders here and there. Northward, the vision is much the same, although in the distance the valley seems to rise somewhat and shed some of its snow covering. A narrow leg of the glacier slips in between the mountains to the southwest." ], "paths": [ "Obvious paths: north, east, southwest" ], "location": "Gossamer Valley", "wayto": { "1738": "southwest", "1735": "east", "1737": "north" }, "timeto": { "1738": 0.2, "1735": 0.2, "1737": 0.2 }, "image": "en-sapphire-1264234799.png", "image_coords": [ 179, 626, 189, 636 ], "tags": [ "some wingstem root" ] }
json
<reponame>MartinKamenov/GoSport<gh_stars>1-10 package com.kamenov.martin.gosportbg.new_event; import android.app.Activity; import android.app.Dialog; import android.content.Context; import android.os.Bundle; import android.support.annotation.NonNull; import android.view.View; import android.view.Window; import android.widget.Button; import android.widget.Toast; import com.kamenov.martin.gosportbg.R; /** * Created by Martin on 21.9.2018 г.. */ public class LocationDialogClass extends Dialog implements android.view.View.OnClickListener { private NewEventFragment mView; public LocationDialogClass(NewEventFragment view) { super(view.getActivity()); mView = view; } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.custom_locations_dialog); Button customLocationsBtn = findViewById(R.id.custom_locations_btn); Button mapBtn = findViewById(R.id.map_btn); customLocationsBtn.setOnClickListener(this); mapBtn.setOnClickListener(this); } @Override public void onClick(View view) { switch (view.getId()) { case R.id.custom_locations_btn: mView.showCustomLocations(); dismiss(); break; case R.id.map_btn: mView.showMap(); dismiss(); break; } } }
java
<gh_stars>1-10 {"inferno-redux.js":"<KEY>,"inferno-redux.min.js":"<KEY>}
json
<filename>docCache/check-ins/v2/documentation/2019-07-17/vertices/attendance_type.json {"data":{"type":"Vertex","id":"attendance_type","attributes":{"name":"AttendanceType","description":"A kind of attendee which is tracked by _headcount_, not by check-in.\n","example":"{\"type\":\"AttendanceType\",\"id\":\"1\",\"attributes\":{\"name\":\"string\",\"color\":\"string\",\"created_at\":\"2000-01-01T12:00:00Z\",\"updated_at\":\"2000-01-01T12:00:00Z\",\"limit\":1},\"relationships\":{\"event\":{\"data\":{\"type\":\"Event\",\"id\":\"1\"}}}}","path":"https://api.planningcenteronline.com/check-ins/v2/attendance_types","collection_only":false,"deprecated":false},"relationships":{"attributes":{"data":[{"type":"Attribute","attributes":{"name":"id","type_annotation":{"name":"primary_key","example":"primary_key"},"note":null,"permission_level":"public","description":null}},{"type":"Attribute","attributes":{"name":"name","type_annotation":{"name":"string","example":"string"},"note":null,"permission_level":"public","description":null}},{"type":"Attribute","attributes":{"name":"color","type_annotation":{"name":"string","example":"string"},"note":null,"permission_level":"public","description":null}},{"type":"Attribute","attributes":{"name":"created_at","type_annotation":{"name":"date_time","example":"2000-01-01T12:00:00Z"},"note":null,"permission_level":"public","description":null}},{"type":"Attribute","attributes":{"name":"updated_at","type_annotation":{"name":"date_time","example":"2000-01-01T12:00:00Z"},"note":null,"permission_level":"public","description":null}},{"type":"Attribute","attributes":{"name":"limit","type_annotation":{"name":"integer","example":1},"note":null,"permission_level":"public","description":null}}]},"relationships":{"data":[{"type":"Relationship","id":"event","attributes":{"association":"to_one","name":"event","authorization_level":"public","graph_type":"Event","polymorphic":null,"note":null}}]},"permissions":{"data":{"type":"Permissions","attributes":{"can_create":false,"can_update":false,"can_destroy":false,"read":null}}},"actions":{"data":[]},"outbound_edges":{"data":[{"type":"Edge","id":"event-attendancetype-event","attributes":{"name":"event","details":null,"path":"https://api.planningcenteronline.com/check-ins/v2/attendance_types/1/event","filters":[],"scopes":[],"deprecated":false},"relationships":{"head":{"data":{"type":"Vertex","id":"event","attributes":{"name":"Event"}}},"tail":{"data":{"type":"Vertex","id":"attendance_type","attributes":{"name":"AttendanceType"}}},"rate_limits":{"data":[]}}},{"type":"Edge","id":"headcount-attendancetype-headcounts","attributes":{"name":"headcounts","details":null,"path":"https://api.planningcenteronline.com/check-ins/v2/attendance_types/1/headcounts","filters":[],"scopes":[],"deprecated":false},"relationships":{"head":{"data":{"type":"Vertex","id":"headcount","attributes":{"name":"Headcount"}}},"tail":{"data":{"type":"Vertex","id":"attendance_type","attributes":{"name":"AttendanceType"}}},"rate_limits":{"data":[]}}}]},"inbound_edges":{"data":[{"type":"Edge","id":"attendancetype-event-attendance_types","attributes":{"name":"attendance_types","details":null,"path":"https://api.planningcenteronline.com/check-ins/v2/events/1/attendance_types","filters":[],"scopes":[],"deprecated":false},"relationships":{"head":{"data":{"type":"Vertex","id":"attendance_type","attributes":{"name":"AttendanceType"}}},"tail":{"data":{"type":"Vertex","id":"event","attributes":{"name":"Event"}}},"rate_limits":{"data":[]}}},{"type":"Edge","id":"attendancetype-headcount-attendance_type","attributes":{"name":"attendance_type","details":null,"path":"https://api.planningcenteronline.com/check-ins/v2/headcounts/1/attendance_type","filters":[],"scopes":[],"deprecated":false},"relationships":{"head":{"data":{"type":"Vertex","id":"attendance_type","attributes":{"name":"AttendanceType"}}},"tail":{"data":{"type":"Vertex","id":"headcount","attributes":{"name":"Headcount"}}},"rate_limits":{"data":[]}}}]},"can_include":{"data":[{"type":"URLParameter","attributes":{"name":"event","parameter":"include","type":"string","value":"event","description":"include associated event"}}]},"can_order":{"data":[]},"can_query":{"data":[{"type":"URLParameter","attributes":{"example":"?where[id]=primary_key","name":"id","parameter":"where[id]","type":"primary_key","value":null,"description":"query on a specific id"}},{"type":"URLParameter","attributes":{"example":"?where[name]=string","name":"name","parameter":"where[name]","type":"string","value":null,"description":"query on a specific name"}}]},"per_page":{"data":{"type":"URLParameter","attributes":{"minimum":1,"maximum":100,"default":25,"name":"per_page","parameter":"per_page","type":"integer","value":null,"description":"how many records to return per page (min=1, max=100, default=25)"}}},"offset":{"data":{"type":"URLParameter","attributes":{"name":"offset","parameter":"offset","type":"integer","value":null,"description":"get results from given offset"}}},"rate_limits":{"data":[]}}}}
json
Paris: Paris Saint-Germain (PSG) coach Thomas Tuchel accepted that his side have to improve in Europe after requiring an injury-time Angel Di Maria goal to draw 2-2 with Napoli in their Champions League match, Wednesday. PSG looked beaten until Di Maria curled home in the third minute of time added on, salvaging a point from a game. Prior to that it looked as though goals from Lorenzo Insigne and Dries Mertens, either side of a Mario Rui own goal, would give Carlo Ancelotti’s Napoli the victory in the French capital. But just as PSG looked defeated, substitute Julian Draxler found Di Maria in the 93rd minute and he curled a shot high into the top-left corner from 20 yards. Dortmund: Borussia Dortmund stunned Atletico Madrid with a 4-0 thrashing to move to the verge of the Champions League knockout stage, as English teenager Jadon Sancho scored his first goal in the competition, Wednesday. The loss, the heaviest Champions League defeat ever suffered by Diego Simeone in seven years as Atletico head coach, put Dortmund top of Group A after both teams had previously beaten Club Brugge and Monaco. Axel Witsel gave Dortmund the lead when his first-half shot took a wicked deflection, before Raphael Guerreiro, who scored twice in the second period, and 18-year-old Sancho came off the bench to grab the other goals.
english
import React from 'react'; import PropTypes from 'prop-types'; import ApplicationItem from 'containers/ApplicationItem'; import './style.scss'; const ApplicationsList = (props) => ( <ul className="applications-list container"> {props.apps.map((app) => ( <ApplicationItem key={app.id} update={props.update} app={app} viewHistory={props.viewHistory} /> ))} </ul> ); ApplicationsList.propTypes = { apps: PropTypes.array.isRequired, update: PropTypes.func.isRequired, viewHistory: PropTypes.func }; export default ApplicationsList;
javascript
<reponame>rolocampusano/nber { "id": 24036, "citation_title": "The Effect of Air Pollution on Migration: Evidence from China", "citation_author": [ "<NAME>", "<NAME>", "<NAME>" ], "citation_publication_date": "2017-11-20", "issue_date": "2017-11-16", "revision_date": "None", "topics": [ "Development and Growth", "Development", "Environmental and Resource Economics", "Environment" ], "program": [ "Development Economics", "Environment and Energy Economics" ], "projects": null, "working_groups": null, "abstract": "\n\nThis paper looks at the effects of air pollution on migration in China using changes in the average strength of thermal inversions over five-year periods as a source of exogenous variation for medium-run air pollution levels. Our findings suggest that air pollution is responsible for large changes in inflows and outflows of migration in China. More specifically, we find that independent changes in air pollution of the magnitude that occurred in China in the course of our study (between 1996 and 2010) are capable of reducing floating migration inflows by 50 percent and of reducing population through net outmigration by 5 percent in a given county. We find that these inflows are primarily driven by well educated people at the beginning of their professional careers, leading to substantial changes in the sociodemographic composition of the population and labor force of Chinese counties. Our results are robust to different specifications, including simple counts of inversions as instruments, different weather controls, and different forms of error variance.\n\n", "acknowledgement": "\nWe thank <NAME> for providing excellent research assistance. Any remaining errors are our own. The views expressed herein are those of the authors and do not necessarily reflect the views of the National Bureau of Economic Research.\n\n\n" }
json
Before the India-England Test series had started, BCCI would have hoped to see huge crowds on the fourth and fifth days of matches, given that most of them were on weekends and tickets in Tier-II city stadiums would be cheap. However, demonetisation of currency (INR 500 and 1000 notes) implemented by Prime Minister Narendra Modi-led NDA government has adversely affected attendance in stadiums. The first Test match between India and England, currently being played at Saurashtra Cricket Association Stadium, would have seen a capacity crowd on Day 5, considering that the home team would bat for at least 45 overs. Unfortunately, the unavailability of cash has prevented a large number of people from coming to the ground as they are stuck in ATM and bank lines. Speaking to Sportskeeda, stadium official Bhupata Talatia said, “This ban (on 500 and 1000 rupee notes) has drastically affected the attendance. Though the number is still higher as compared to other days, it is nowhere close to what we would usually be seeing on Day 5 of a Test match. We even reduced prices of ticket to INR 50 from INR 100 to draw in crowds. Talatia also said that a large number of tickets had been sold beforehand but even people with tickets are not likely to make it to the ground. “There is no disposable income for people and watching an entire day of a Test match would mean eating food and drinking water, for which they obviously require money but do not have enough. Right now there is a lot of crowd that includes school kids and people called by the association,” he added. According to the stadium officials, around 10000 tickets were sold for Day 5 of the match but people have not been able to make it. The Indian government banned the circulation and usage of currency notes with denomination 500 and 1000 on November 8th as a measure to curb black money across the country. While benefits of this action might show results in the long run, it has resulted in hardship for common people across the nation as people have been finding it extremely hard to get bank notes of INR 100 for daily disposable expenditure. This problem is likely to affect attendance in rest of the Test matches between India and England, scheduled to be played over the next month. ATMs across the country are yet to be functioning in full capacity and it is not likely to get any better over the next few weeks. BCCI, along with state associations, will need to figure out a way to counter this or face empty stadiums in the season’s most important Test series.
english