text
stringlengths
1
1.04M
language
stringclasses
25 values
<reponame>bcmi-labs/scratch-l10n { "paint.paintEditor.hue": "Kiʾea", "paint.paintEditor.saturation": "Saturación", "paint.paintEditor.brightness": "ʾUira", "gui.comingSoon.message1": "ina koe ko tipa tipa, i matou e aŋa a mo ra meʾe {emoji}", "gui.comingSoon.message2": "Na he oho mai…", "gui.comingSoon.message3": "e aŋa a mo ra meʾe {emoji}", "paint.paintEditor.fill": "hāʾī", "paint.paintEditor.costume": "Diseño", "paint.paintEditor.group": "piri", "paint.paintEditor.ungroup": "haka kore te piri", "paint.paintEditor.undo": "moumou", "paint.paintEditor.redo": "he anga haka ʾou", "paint.paintEditor.forward": "a muʾa", "paint.paintEditor.backward": "A tuʾa ", "paint.paintEditor.front": "i muʾa", "paint.paintEditor.back": "a tuʾa ", "paint.paintEditor.more": "te tahi", "paint.modeTools.brushSize": "he haito", "paint.modeTools.eraserSize": "he nui nui o te ua ua haka kore", "paint.modeTools.copy": "ko tuʾu meʾe a", "paint.modeTools.paste": "pipiri", "paint.modeTools.delete": "haka kore", "paint.modeTools.curved": "pikopiko", "paint.modeTools.pointed": "titika", "paint.modeTools.thickness": "peŋo peŋo", "paint.modeTools.flipHorizontal": "haka teka pahe hau titika", "paint.modeTools.flipVertical": "e rori mo haka titika", "paint.modeTools.filled": "hāʾī", "paint.modeTools.outlined": "Contorneado", "paint.paintEditor.bitmap": "haka āŋa ki te mapa bits", "paint.paintEditor.vector": "e rori ki te vector", "paint.paintEditor.stroke": "Tītī", "paint.brushMode.brush": "purumu paru", "paint.eraserMode.eraser": "ua ua haka kore", "paint.fillMode.fill": "hāʾī", "paint.lineMode.line": "hore hore", "paint.ovalMode.oval": "taka taka", "paint.rectMode.rect": "avahata poto roa", "paint.reshapeMode.reshape": "e hoki mo haka titika te āŋa", "paint.roundedRectMode.roundedRect": "avahata poto roa hai titi taka taka", "paint.selectMode.select": "tuhi", "paint.textMode.text": "papaʾi", "paint.colorPicker.swap": "rori" }
json
Paul Chowk is a very famous spot in the commercial part of the city of Rajahmundry. It is named after the great freedom fighter Bipin Chandra Paul, who visited the place during the days of the Vandemataram movement. Paul Chowk imbibes the very essence of Rajahmundry and is connected to several important landmarks of the city. Three parks, Jetty Towers, the Bus Stand and the Petrol Bunk all lie under the limits of Paul Chowk. A walk around the streets of Paul Chowk, amidst the hustle and bustle of the city would give you a first-hand view of the cultural ethos of the city. Paul Chowk is a place you come to live the history of Rajahmundry. It is a must visit once you are in Rajahmundry.
english
import React, { Component } from 'react'; import { connect } from 'react-redux'; import { compose } from 'redux'; import { withRouter } from 'react-router-dom'; import { withStyles } from 'material-ui/styles'; import classNames from 'classnames'; import Drawer from 'material-ui/Drawer'; import AppBar from 'material-ui/AppBar'; import Toolbar from 'material-ui/Toolbar'; import List from 'material-ui/List'; import { MenuItem } from 'material-ui/Menu'; import Typography from 'material-ui/Typography'; import TextField from 'material-ui/TextField'; import Divider from 'material-ui/Divider'; import IconButton from 'material-ui/IconButton'; import MenuIcon from 'material-ui-icons/Menu'; import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider' import themeDefault from '../theme-default' import { createMuiTheme } from 'material-ui/styles' import { Switch, Route } from 'react-router-dom' import SubredditView from './containers/SubredditView' import PostView from './containers/PostView' import Header from './Header' import LeftDrawer from './LeftDrawer' import { ChevronLeft } from 'material-ui-icons' import * as RedditAction from '../_actions/RedditActions'; import SinglePostView from './containers/SinglePostView'; function mapStateToProps(state) { return { auth: state.Auth, drawerWidth: 240 }; } const drawerWidth = 240; const styles = theme => ({ root: { flexGrow: 1, }, appFrame: { height: 430, zIndex: 1, overflow: 'hidden', position: 'relative', display: 'flex', width: '100%', }, appBar: { position: 'absolute', transition: theme.transitions.create(['margin', 'width'], { easing: theme.transitions.easing.sharp, duration: theme.transitions.duration.leavingScreen, }), }, appBarShift: { width: `calc(100% - ${drawerWidth}px)`, transition: theme.transitions.create(['margin', 'width'], { easing: theme.transitions.easing.easeOut, duration: theme.transitions.duration.enteringScreen, }), }, 'appBarShift-left': { marginLeft: drawerWidth, }, 'appBarShift-right': { marginRight: drawerWidth, }, menuButton: { marginLeft: 12, marginRight: 20, }, hide: { display: 'none', }, drawerPaper: { position: 'relative', width: drawerWidth, }, drawerHeader: { display: 'flex', alignItems: 'center', justifyContent: 'flex-end', padding: '0 8px', ...theme.mixins.toolbar, }, content: { flexGrow: 1, backgroundColor: theme.palette.background.default, padding: theme.spacing.unit * 3, transition: theme.transitions.create('margin', { easing: theme.transitions.easing.sharp, duration: theme.transitions.duration.leavingScreen, }), }, 'content-left': { marginLeft: -drawerWidth, }, 'content-right': { marginRight: -drawerWidth, }, contentShift: { transition: theme.transitions.create('margin', { easing: theme.transitions.easing.easeOut, duration: theme.transitions.duration.enteringScreen, }), }, 'contentShift-left': { marginLeft: 0, }, 'contentShift-right': { marginRight: 0, }, subreddit: { marginLeft: 240, margin: '80, 0, 0, -21%' } }); class App extends Component { constructor(props) { super(props); this.dispatch = props.dispatch; this.state = { open: false, anchor: 'left' } } componentDidMount() { } handleLeftDrawer() { } render() { const { classes, theme, drawerWidth } = this.props; const { anchor, open } = this.state; return ( <MuiThemeProvider theme={themeDefault}> <Header /> <LeftDrawer /> <div style={{ margin: '80px 1% 0 20%' }}> <Switch> <Route path="/subreddit/:subreddit/:postId/" exact component={SinglePostView} /> <Route path="/subreddit/:subreddit" exact component={SubredditView} /> </Switch> </div> </MuiThemeProvider > ) } } export default withRouter(compose( withStyles(styles, { withTheme: true, }), connect(state => { return state }), )(App));
javascript
- #Nitish KumarWill Bihar See Maharashtra-like Political Turmoil? New Delhi, Aug 10: Nitish Kumar did it yet again by changing sides. He dumped the BJP and went on to stake a claim to form the government with the RJD, the same party he had dumped a few years back to form the government with the BJP. Due to the fact that Nitish Kumar of the JD(U) changes sides very often, he has been dubbed as 'paltu ram,' by the leaders of the opposition. Now that he is back with the RJD, let us take a look at some of the scathing attacks made by the father-son duo of Lalu Prasad Yadav and Tejashwi Yadav when Nitish had dumped the RJD. Owing to his constant flip-flops, Lalu Yadav had nine years back coined the term 'Paltu Ram' for Nitish Kumar. In a tweet posted a couple of years back, Lalu Yadav had said, "Nitish saanp hai, jaise saanp kaichul chorte hai waise Nitish kaichul chorte hai aur harr do saal mai saanp ki tarah naya chamda dharan kar leta hai. Kisi ko shak? " Lalu and his son Tejashwi had used the term 'kursi Kumar' for the record number of times Nitish has been chief minister of Bihar. Tejashwi who is set to be the deputy chief minister of Bihar had said that Nitish Kumar is running a circus and not a government. He is functioning on the rehem-o-karam of the BJP. "Bihar mai bahar hai, ghotalo ki bharmar hai," Tejashwi had said five years back while taking a jibe at Nitish Kumar.
english
Hulk Hogan has run through almost all of his opponents in WWE and WCW. However, he never defeated these five superstars one-on-one. Hulk Hogan was the top guy in WWE for years before jumping to WCW. Although he started his WCW run as a face, he soon turned heel to join and lead the NWO. Following years of Monday Night Wars, WCW waved the white flag as WWE bought its rival. The change in the pro wrestling landscape led Hogan to return to WWE for another successful run in the early 2000s. Throughout his long career, Hogan went one-on-one with many top superstars and legends in WWE and WCW. Only a few managed to kick out from the leg drop and survive Hulkamania. However, the five legends on this list have gone the extra mile and successfully achieved the difficult task of defeating the two-time WWE Hall of Famer. Here are five WWE/WCW legends Hulk Hogan never defeated one-on-one. Brock Lesnar burst into the WWE scene around the same time Hulk Hogan made his way back to the company following his WCW run. Hogan and The Next Big Thing faced each other only once in August 2002 on SmackDown. Despite hitting the Beast Incarnate with two big boots and a leg drop, Hogan failed to pin Lesnar. As he prepared for another leg drop, Paul Heyman distracted Hogan, allowing Lesnar to take advantage and hit his opponent with a vicious F-5. The Beast then squeezed the life out of The Hulkster with a side bear hug to win the match by knockout. The two superstars never faced each other again, leaving Lesnar undefeated against Hogan. However, they came face-to-face in ِAugust 2014 when The Beast crashed Hogan's birthday celebration on Monday Night RAW. John Cena interfered before things got physical between Lesnar and The Hulkster. The Leader of the Cenation rushed to the ring to stand up for Hogan and his company of legends. After an intense stare-off between Cena and Lesnar, the latter retreated and left the ring. Hulk Hogan has not wrestled in WWE for nearly 15 years. His last match came at SummerSlam 2006 when he defeated Randy Orton. Since Hulk Hogan's return to WWE in 2002, he has shared the ring several times with The Rock. The two former superstars teamed up in four tag team matches and faced each other in a handicap match. However, they went one-on-one only twice. The first bout between Hogan and The Rock came at WrestleMania X8 in the famous Icon vs. Icon match. Although Hollywood Hulk Hogan fought viciously, he fell short to The People's Champion. In March 2020, The Rock posted a video to his Instagram to celebrate the 18th anniversary of the Icon vs. Icon match. In the video, he recalled the conversation he had with Hogan after the match: "When we got to the back, I gave Hogan the biggest, hardest hug I could and I said 'thank you for passing the torch'. He said, 'you deserve it, brother', or something to that effect. 'Carry it well, like I did when Andre passed me the torch. '" Nearly a year later, the two superstars went head-to-head again in a singles match at WWE No Way Out 2003. Again, The Rock came out victorious to keep his undefeated record against Hogan intact. After moving from WWE to WCW, Hulk Hogan had many battles against Sting. However, The Hulkster was never able to defeat The Franchise of WCW. While their first bout ended in no contest on WCW Nitro in November 1995, Hogan lost his WCW World Heavyweight Title to Sting in their second face-off in December 1997 at Starrcade. Since then, they have met 11 times in one-on-one matchups. Hogan has lost eight of these 11 matches while the other three have ended in no contest. The Immortal One was never able to emerge victorious against The Stinger. While the two superstars never competed against each other in WWE, they battled once in TNA at Bound for Glory 2011. Hogan again fell short against his long-time rival. While Hogan is now retired, Sting joined All Elite Wrestling last December. The WWE Hall of Famer has had two matches so far in AEW. He teamed up with Darby Allin to defeat Brian Cage & Ricky Starks at AEW Revolution. Sting and his partner also defeated Ethan Page & Scorpio Sky at AEW Double or Nothing last month. While they never met in a WWE ring, Hulk Hogan and Goldberg faced each other a few times in WCW. Hogan and Goldberg shared the ring in different circumstances during their time in WCW but they went one-on-one only once. Their singles bout came on WCW Nitro in July 1998 as they battled for the WCW World Heavyweight Title. The Hulkster, who was WCW Champion at the time, suffered a painful title loss to Goldberg. The title match was the first time the two legends shared the WCW ring. While they never went head-to-head again, they faced each other in two tag team matches in which their teams exchanged victories. They also teamed up to form a successful tag team alongside Sting. They won all three of the matches where they competed side by side. The last time Hogan and Goldberg wrestled against each other was in a fatal four-way involving Ric Flair and DDP. It ended in no contest on Nitro in April 1999. Goldberg remains undefeated against Hulk Hogan. Vampiro is another legend who holds an undefeated streak against WWE Hall of Famer Hulk Hogan. The two former superstars faced each other only once in a singles match during their days in WCW. It came on the May 22, 2000 episode of WCW Nitro. Vampiro tried to take advantage early on in the match by attacking Hogan as he entered the ring, but The Hulkster quickly recovered and fought back. The former WWE Champion dominated his opponent and took his time to humiliate him. Although he had many chances to win the match, especially after hitting the leg drop, Hogan refused to pin Vampiro and continued beating him. While Hogan argued with the referee, Billy Kidman snuck into the ring behind his back and hit him with a weapon to knock him out, allowing Vampiro to take advantage and pin Hogan to score a historic victory. The two superstars never met again inside a wrestling ring. Following WWE's purchase of WCW, Vampiro left to work for other promotions, including Total Nonstop Action (TNA). To stay updated with the latest news, rumors, and controversies in WWE every day, subscribe to Sportskeeda Wrestling’s YouTube channel.
english
The dishonesty starts with the pitch. Even if they don’t actually fudge the numbers, often an agency in a pitch does a great deal of window dressing to what it presents. Last week the Supreme Court upheld a Delhi High Court verdict barring Doordarshan from sharing with cable operators the live feed of cricket matches for which private broadcasters had the exclusive rights. Republic TV’s entry, its over-the-top first week ratings, and its alleged manipulation of distribution expose the weaknesses of a system where the ratings agency is broadcaster-owned. It’s the season for media biographies, as NDTV and TV18 publish their life stories. If NDTV comes across as self-righteous TV18 is open about its sins of commission. Nalin Mehta’s impressive knowledge of the television industry is evident in his latest book but bias and inconsistencies mar it. THE MEDIA REGULATION DEBATE: The TRAI report does not explain who is allowed to own or finance media, nor does it do enough homework. TRAI was not wrong to insist on a cap, but it couldn't have come at a worse time: the coincidence of the economic slowdown and digital distribution.
english
{"globalize.js":"<KEY>,"globalize/currency.js":"<KEY>,"globalize/date.js":"<KEY>,"globalize/message.js":"<KEY>,"globalize/number.js":"<KEY>,"globalize/plural.js":"<KEY>,"globalize/relative-time.js":"sha512-EkwXavRYr511FgAmTtfQsvxPBNmHW8pYG+8tvLkhRK0P1/PCl1eKqQgBqRjwTs9FoyEHBZaYE8s09L+mVvpO0Q=="}
json
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <HTML> <HEAD> <TITLE> [stringtemplate-interest] &quot;\n&quot; goes away </TITLE> <LINK REL="Index" HREF="index.html" > <LINK REL="made" HREF="mailto:stringtemplate-interest%40antlr.org?Subject=Re:%20%5Bstringtemplate-interest%5D%20%22%5Cn%22%20goes%20away&In-Reply-To=%3C20091014005347.GB4366%40ip61%3E"> <META NAME="robots" CONTENT="index,nofollow"> <META http-equiv="Content-Type" content="text/html; charset=us-ascii"> <LINK REL="Previous" HREF="002237.html"> <LINK REL="Next" HREF="002239.html"> </HEAD> <BODY BGCOLOR="#ffffff"> <H1>[stringtemplate-interest] &quot;\n&quot; goes away</H1> <B><NAME></B> <A HREF="mailto:stringtemplate-interest%40antlr.org?Subject=Re:%20%5Bstringtemplate-interest%5D%20%22%5Cn%22%20goes%20away&In-Reply-To=%3C20091014005347.GB4366%40ip61%3E" TITLE="[stringtemplate-interest] &quot;\n&quot; goes away">zen at freedbms.net </A><BR> <I>Tue Oct 13 17:53:47 PDT 2009</I> <P><UL> <LI>Previous message: <A HREF="002237.html">[stringtemplate-interest] &quot;\n&quot; goes away </A></li> <LI>Next message: <A HREF="002239.html">[stringtemplate-interest] &quot;\n&quot; goes away </A></li> <LI> <B>Messages sorted by:</B> <a href="date.html#2238">[ date ]</a> <a href="thread.html#2238">[ thread ]</a> <a href="subject.html#2238">[ subject ]</a> <a href="author.html#2238">[ author ]</a> </LI> </UL> <HR> <!--beginarticle--> <PRE>On Tue, Oct 13, 2009 at 04:14:23PM -0700, <NAME> wrote: &gt;<i> Hi, i allowed </I>&gt;<i> </I>&gt;<i> &lt;expr; separator=&quot;\n&quot;&gt; </I>&gt;<i> </I>&gt;<i> previously to mean newline separator, but that makes no sense. &quot;\n&quot; </I>&gt;<i> is a 2 char sequence just like it is in between template expressions. </I>&gt;<i> But making you do </I>&gt;<i> </I>&gt;<i> &lt;expr; separator={&lt;\n&gt;}&gt; </I>&gt;<i> </I>&gt;<i> is a bit long. It's *always* comma or newline. seems we should make </I>&gt;<i> it easier to say. we use it constantly. </I>&gt;<i> </I>&gt;<i> As far as i can tell, we have these options: wrap, anchor, null, </I>&gt;<i> separator, format. Is there a better way to do those too? How would </I>&gt;<i> we do this differently? </I>&gt;<i> </I>&gt;<i> &lt;values; anchor, wrap=&quot;\n&quot;, separator=&quot;,&quot;&gt; </I> Good question. Would be really nice to simplify. I've often thought abbreviation &quot;sep&quot; was intuitive, to me (for 'separator' of course). -- Homepage: www.SoulSound.net -- Free Australia: www.UPMART.org Please respect the confidentiality of this email as sensibly warranted. </PRE> <!--endarticle--> <HR> <P><UL> <!--threads--> <LI>Previous message: <A HREF="002237.html">[stringtemplate-interest] &quot;\n&quot; goes away </A></li> <LI>Next message: <A HREF="002239.html">[stringtemplate-interest] &quot;\n&quot; goes away </A></li> <LI> <B>Messages sorted by:</B> <a href="date.html#2238">[ date ]</a> <a href="thread.html#2238">[ thread ]</a> <a href="subject.html#2238">[ subject ]</a> <a href="author.html#2238">[ author ]</a> </LI> </UL> <hr> <a href="http://www.antlr.org/mailman/listinfo/stringtemplate-interest">More information about the stringtemplate-interest mailing list</a><br> </body></html>
html
Serena Williams is not only a good tennis player, but a classy and compassionate human being. Yesterday at the Australian Open, Williams reached round 16 of the Australian Open, beating 18-year-old Ukranian Dayana Yastremska, 6-2, 6-1, in a 67-minute match in the third round. After her win, Williams noticed that Yastremska was crying. and comforted Hugging the crying player, Williams encouraged her by saying, "Don't cry, you really did well. " Ukrainian teen Dayana Yastremska had idolized Serena Williams from the time she picked up a racket when she was 5. This move by Williams won over spectator's hearts. In September 2018 when Serena Williams's lost the Grand Slam singles title, a lot of people took to Twitter talking about how William's tearful tirade overshadowed Naomi Osaka's win, and how unfair it was for her as a player to act the way she did. Her fans, however, pointed out the unfairness between comparing the incidents.
english
.page{ display: none; width: 100%; min-height: 100%; /* allow for content off the bottom of the page */ position: fixed; /* or absolute if the user needs to scroll for more content */ padding: 1rem 2rem; } .active{ display: block; } #new-survey-form, #new-question-form { border: solid 4px grey }
css
The International ISBN Agency has warned the HRD Ministry, which issues the numbers, saying the problems were reaching ‘unacceptable’ levels. Amid complaints of bureaucratic delays and fears of censorship by the government, the Human Resource Development Ministry risks losing its ability to distribute International Standard Book Numbers to publishers in India, The Indian Express reported on Thursday. The International ISBN Agency, in a letter sent to Minister of State for HRD Mahendra Nath Pandey on March 29, warned that it was “seriously considering” discontinuing the ministry’s position as the agency for issuing ISBNs in India owing to the increasing number of complaints, which has now reached “unacceptable levels”. In April 2016, the HRD Ministry, which was headed by Smriti Irani at the time, had digitised the allotment of ISBNs – a step many publishers said slowed down the process of bringing out books in India. Earlier, Scroll.in had reported that the website was riddled with bugs and there was no phone number through which the Agency could be reached. Some publishers were left waiting for months for their ISBN numbers, having no clarity on the status of their application. The new system has also raised concerns about censorship, with the ministry asking for details of every book before issuing ISBNs. Publishers, for example, are required to provide book jackets carrying synopses and blurbs from authors. Every time a book is published, one of the key requirements is the ISBN, a unique 13-digit number given to books published around the world. The ISBN is generated by the International ISBN Agency, and is used by buyers to identify books. Even though the ISBN is not mandatory to publish a book, it has become an important tool as wholesalers, distributors and bookstores usually keep track of their volumes using these codes. Currently, more than 150 registration agencies appointed by the International ISBN Agency provide ISBNs to publishers in over 200 countries. In India, this power rests with the Raja Ram Mohan Roy National Agency, under the Department of Higher Education in the Ministry of Human Resources Development. Several publishing houses said on conditions of anonymity that ISBNs are now issued in lots of 10, rather than 100, after a wait of about three or four months. “Many of us have been surviving on our stock of ISBNs secured earlier. But we are running out. At this rate, the publishing industry in the country will face a serious crisis in two to three months,” a publisher was quoted as saying by the newspaper.
english
Damar Hamlin suffered a cardiac arrest during Week 17's Monday Night Football matchup between the Buffalo Bills and Cincinnati Bengals. The Bills safety was taken to a nearby medical facility after being given around 15 minutes of medical attention on the field at Paycor Stadium. As NFL fans were sending thoughts and prayers to Hamlin and his family, conservative host Charlie Kirk chose another route. On Twitter, Kirk commented on athletes suffering from cardiac arrest and that it's all too familiar of a sight. In light of Kirk's thoughtless comments, NFL fans turned to Twitter to put him on blast, and rightly so. In the first quarter of the Bills versus Bengals Week 17 matchup, Hamiln tackled Bengals wide receiver Tee Higgins. When Hamlin got up after making the tackle, the Bills' safety fell back to the turf. Medical staff rushed onto the field, attending to Hamlin for nearly 15 minutes, including administering CPR and oxygen. An ambulance came onto the field, taking Damar Hamlin to a nearby medical center. The game was ultimately suspended. Hamlin's mother attended the game and rode with her son in the ambulance to the medical center. The 24-year-old safety is in "critical condition" at the University of Cincinnati Medical Center. In a statement, the Bills added that Hamlin is currently under sedation after the tragic incident at Paycor Stadium in Cincinnati. The statement said: "Damar Hamlin suffered a cardiac arrest following a hit in the Buffalo Bills' game versus the Cincinnati Bengals. His heartbeat was restored on the field and he was transferred to the University of Cincinnati Medical Center for further testing and treatment. He is currently sedated and listed in critical condition." Dr. Anthony Cardillo, ER specialist and CEO of Mend Urgent Care, was asked about what happened to Damar Hamlin. Dr. Cardillo said: "This is a phenomenon that when the heart is going between its beats, as that heart is depolarizing and then repolarizing, if you have traumatic trauma to the chest, at a very specific moment as that heart is repolarizing itself, you can go into a lethal ventricular arrhythmia, and that's what it looks like happened." NFL commissioner Roger Goodell and the league office noted that the next steps would come at an "appropriate time" on when to resume the game. However, the bigger focus is on the health of Damar Hamiln. If you use any of the above quotes, please credit ABC7, Buffalo Bills, and H/T Sportskeeda.
english
<filename>packages/ecs-components/src/index.ts export * from './BoundingVolumeComponent' export * from './CameraComponent' export * from './FpsComponent' export * from './KeyboardComponent' export * from './LightComponent' export * from './LoopComponent' export * from './MeshComponent' export * from './MeshPartComponent' export * from './ModelComponent' export * from './MouseComponent' export * from './RendererComponent' export * from './Scenery' export * from './SceneryLinkComponent' export * from './spatial' export * from './SpatialSystem' export * from './SpatialSystemComponent' export * from './SpriteComponent' export * from './TimeComponent' export * from './TouchComponent' export * from './TransformComponent' export * from './WASDComponent' export * from './WebXRComponent' export * from './TweenComponent' export * from './createGame' export * from './constraints'
typescript
# -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-26 18:24 from __future__ import unicode_literals from django.db import migrations import django_countries.fields class Migration(migrations.Migration): dependencies = [ ('crm', '0009_auto_20171115_2254'), ] operations = [ migrations.AlterField( model_name='client', name='country', field=django_countries.fields.CountryField(default='NL', max_length=2, verbose_name='Country'), ), migrations.AlterField( model_name='contact', name='country', field=django_countries.fields.CountryField(default='NL', max_length=2, verbose_name='Country'), ), ]
python
<filename>tests/main.cpp<gh_stars>10-100 /** * @file * @copyright defined in eos/LICENSE.txt */ #define BOOST_TEST_MODULE polleos-tests #define BOOST_TEST_DYN_LINK #include <boost/test/unit_test.hpp> #include <boost/test/unit_test_monitor.hpp> #include <cstdlib> #include <iostream> #include <fc/log/logger.hpp> #include <eosio/chain/exceptions.hpp> //extern uint32_t EOS_TESTING_GENESIS_TIMESTAMP; void translate_fc_exception(const fc::exception &e) { std::cerr << "\033[33m" << e.to_detail_string() << "\033[0m" << std::endl; BOOST_TEST_FAIL("Caught Unexpected Exception"); } struct eosio_test_fixture { eosio_test_fixture() { // Turn off blockchain logging if no --verbose parameter is not added // To have verbose enabled, call "tests/chain_test -- --verbose" bool is_verbose = false; std::string verbose_arg = "--verbose"; int argc = boost::unit_test::framework::master_test_suite().argc; char** argv = boost::unit_test::framework::master_test_suite().argv; for (int i = 0; i < argc; i++) { if (verbose_arg == argv[i]) { is_verbose = true; break; } } if(!is_verbose) fc::logger::get(DEFAULT_LOGGER).set_log_level(fc::log_level::off); // Register fc::exception translator boost::unit_test::unit_test_monitor.register_exception_translator<fc::exception> (&translate_fc_exception); std::srand(time(NULL)); std::cout << "Random number generator seeded to " << time(NULL) << std::endl; } }; BOOST_TEST_GLOBAL_FIXTURE( eosio_test_fixture );
cpp
Shane Warne Shocking Death: For Rajasthan Royals’ Class of 2008, Shane Warne’s demise is a far greater loss than others. The Australian spin legend not only backed relatively unknown players and led the underdogs to the IPL title, he gave them confidence and mentored them like a seasoned coach. Yusuf Pathan and Dinesh Salunkhe were just two of them. For Yusuf Pathan, Shane Warne was the man who turned his cricketing career around and for the lesser-known Dinesh Salunkhe, he was a hero to be worshipped from afar before the two ended up sharing the dressing room much to the Indian’s amazement. The 52-year-old old spin bowling icon, who breathed his last on Friday, leaving the cricket world heartbroken, meant more than just a great player for the Rajasthan Royals team of 2008 that won the IPL under his leadership against all expectations. “I only dreamt of having a photo with him but I ended up playing and sharing the dressing room with him. He also mentions my name in his autobiography. What more could I have I asked for?” said leg-spinner Salunkhe, for whom that triumph 14 years back remains the biggest career highlight of his life. The 39-year-old, who coaches underprivileged kids these days, is stunned like much of the cricket fraternity that Warne will no longer be around to charm with his wit and sharp takes as an analyst, a role he perfected after giving up the game as a player. “He was really extraordinary, always one step ahead of the others. He had two plans always ready, and played the match in his mind,” recalled Dinesh Salunkhe, who never played first-class cricket. Warne was well aware that he was leading a team of underdogs but with his out-of-the-box approach, he transformed their weaknesses into strengths. Be it Pathan, who went on to win two more IPL titles with a different team later, or the then relatively lesser-known Ravindra Jadeja, Warne got the best out of everyone. It was a career-turning season for Baroda’s Pathan and he emerged as one of the most sought after utility players after that triumph. A true lover of the sport. The man who changed the landscape of cricket. “He was a captain, who turned around my cricketing career with the way he used my abilities, be it my bowling or power-hitting skills,” Yusuf remembered Warne in an interaction with PTI. Be it giving the new ball to Pathan, a tactic rarely used then, or using him at different positions in the batting order Warne got the best out of Yusuf who ended the season with 435 runs and eight wickets. “His contribution in my cricketing career has been more than 100 per cent, I’ve not looked back since then. A true leader is someone who gets the best out of his player and he was one such. “He always backed me and said ‘Yusuf would win us the match today’. He was full of life enjoyed every moment with us. Whatever the situation he always backed his players,” Pathan said. “It’s really hard to digest that he’s no more with us, The three years we played together will always remain special for me,” the 39-year-old added. In Swapnil Asnodkar, their uncapped opener from Goa, Rajasthan found someone who could give the team flying starts in the powerplay. He ended up scoring 311 runs from nine matches with two half centuries. Asnodkar remembers how Warne turned it around with his pep talk after they were outplayed by Delhi DareDevils by nine wickets, chasing down a modest target of 130 in 15.1 overs. “He told us we lose as a family, and we win as a family. He was approachable to us all the time. Despite being such a legend, he was open to our ideas and treated us equally, made everyone special. He never had that star-like attitude,” Asnodkar said. He recalled suffering from an injury and how it affected his morale but Warne pulled him out of it by simply telling him, “you’re the backbone of the team”. Asnodkar was left more astonished when Warne accepted his invitation to come to his home in Goa and spent a good amount of time with his family. “There was a short break and management allowed us to go for vacation in Goa. There were a few like Warne, (Shane) Watson, Jadeja, Taruwar Kohli who came to Goa. And one day, I extended an invitation to Warne to visit my home,” he said. “Never in my wildest dream I thought he would accept the invitation and drop in to my house and interact with my parents, sisters and cousins. They still remember the day very fondly,” Asnodkar, who is now the age group coach in Goa, said. Pacer Pankaj Singh, who played five matches for the franchise, remembered how Warne used their tournament build-up camp to know about the players and create a healthy environment. “In the 10-15 days’ camp in the build-up to the tournament he, identified each and everyone’s strengths and accordingly decided on their roles,” said Singh, now an Income Tax officer. He made stars out of his players, be it Shane Watson or “Rockstar” Ravindra Jadeja. “Watson was not a big name then and was in and out of the Australian team but he had his full support and he had a memorable season,” Singh said about the imposing all-rounder who was adjudged the Player of the tournament in IPL 2008. For Salunkhe, Warne was his childhood hero. Having lost his father at the tender age of five, the Chembur boy was raised by his mother who worked as constable in Mumbai Police. He was picked by the franchise after impressing with his power-hitting skills in a club-level Prabhodhan tournament in Mumbai. He fondly remembers how Warne startegised the dismissal of Mahela Jayawardene in their match against Kings XI Punjab. “He had the wicket of Kumar Sangakkara who was firing on all cylinders and I started celebrating after the dismissal. He came up to me and told me to get ready to bowl to Jayawardene. “And I ended up taking his (Jayawardene’s) wicket. He also mentions this in his autobiography,” Salunkhe said, stressing how the flamboyant legend effortlessly touched lives in his own eventful life.
english
<gh_stars>0 const electron = require('electron'); const fs = require('fs'); // Module to control application life. const app = electron.app // Module to create native browser window. const BrowserWindow = electron.BrowserWindow const NodeApp = require('./node-app'); // Keep a global reference of the window object, if you don't, the window will // be closed automatically when the JavaScript object is garbage collected. let mainWindow function createWindow() { // Create the browser window. mainWindow = new BrowserWindow({width: 800, height: 600}) let inkBunnyHandler = new NodeApp.InkbunnyHander(new NodeApp.Credentials(NodeApp.Site.InkBunny, "<PASSWORD>", "password")); // and load the index.html of the app. //mainWindow.loadURL(`file://${__dirname}/index.html`) mainWindow.loadURL(`https://inkbunny.net/filesedit.php?sales=no&wizardmode=yes`) var wc = mainWindow.webContents; try { wc.debugger.attach("1.1"); } catch (err) { console.error("Debugger attach failed : ", err); }; wc.on('did-finish-load', () => { "use strict"; wc.debugger.sendCommand("DOM.getDocument", {}, function (err, res) { if(err) console.error("document", err, res); wc.debugger.sendCommand("DOM.querySelector", { nodeId: res.root.nodeId, selector: "input[type=file]" // CSS selector of input[type=file] element }, function (err, res) { if(err) console.error("query", err, res); wc.debugger.sendCommand("DOM.setFileInputFiles", { nodeId: res.nodeId, files: ['e:\\!DROPBOX\\Dropbox\\android\\IMG_20150927_083145.jpg'] // Actual list of paths }, function (err, res) { if(err) console.error("setInpput", err, res); wc.debugger.detach(); }); }); }); }); // Open the DevTools. //mainWindow.webContents.openDevTools() // Emitted when the window is closed. mainWindow.on('closed', function () { // Dereference the window object, usually you would store windows // in an array if your app supports multi windows, this is the time // when you should delete the corresponding element. mainWindow = null }) let win = new BrowserWindow({width: 800, height: 1500, show: false}); win.loadURL('http://github.com/'); let webContents = win.webContents; webContents.on('did-finish-load', () => { // Use default printing options win.capturePage({x: 0, y: 0, width: 800, height: 1500}, (image) => { fs.writeFile('./print.png', image.toPng(), (error) => { if (error) throw error; console.log('Write PDF successfully.'); }); }); }); } // This method will be called when Electron has finished // initialization and is ready to create browser windows. // Some APIs can only be used after this event occurs. app.on('ready', createWindow) // Quit when all windows are closed. app.on('window-all-closed', function () { // On OS X it is common for applications and their menu bar // to stay active until the user quits explicitly with Cmd + Q if (process.platform !== 'darwin') { app.quit() } }) app.on('activate', function () { // On OS X it's common to re-create a window in the app when the // dock icon is clicked and there are no other windows open. if (mainWindow === null) { createWindow() } }) // In this file you can include the rest of your app's specific main process // code. You can also put them in separate files and require them here.
javascript
Good news for Akshay Kumar fans! The actor's much-awaited action-drama Sooryavanshi will now release on April 30 this year. The Rohit Shetty directorial will also feature Katrina Kaif in the lead role. How we know that? Courtesy Akshay Kumar's Twitter post, where he treated his fans to the grand announcement about the release of the film. He shared a short video reel about the film which comprises of the clips of the actor and rest of the cast members from trailer launch event and many more. Along with the video, he wrote "We promised you all a cinematic experience and that's what you will get. . . the wait is finally over! Aa Rahi Hai Police #Sooryavanshi releasing worldwide in cinemas on 30th April 2021. #Sooryavanshi30thApril. " Fans of the actor expressed their excitement about the release of the film and flooded his Twitter post with comments like, "Can't wait #Sooryavanshi. " Check out Akshay Kumar's tweet here: Sooryavanshi was slated to release last year but was postponed due to the coronavirus pandemic which resulted in nationwide lockdown. While many movies were released on OTT platforms during the lockdown, makers of Sooryavanshi always made it clear that the film will open in theatres only. The movie theatres were opened across the country in October last year but with only a capacity of 50 percent audience. Now, that the government has allowed the movie theatres to run with full capacity, the makers of Sooryavanshi have decided to release their much-awaited film in cinemas. Sooryavanshi stars Akshay Kumar playing the role of a cop in the lead role. Katrina Kaif plays the role of Akshay's love interest in the film. There will also be glimpses of Ajay Devgn and Ranveer Singh in the film. Sooryavanshi marks the latest entry in Rohit Shetty's cop universe.
english
A man holds a baby, in a large crowd, as migrants face long wait times for border patrol officers at the USA border with Mexico, on the last day of Title 42, in Yuma, Arizona, on May 11, 2023. ( Image Source : Getty ) Migrants rushed across Mexico's border hours before pandemic-related asylum restrictions were to expire on Thursday, fearing that new policies would make it far more difficult to gain entry into the United States. Hundreds of migrants have camped out at the border between Tijuana, Mexico, and San Diego. Title 42 is a COVID-era provision which blocked most of the entry of most asylum-seekers from seeking legal entry into the United States. Some of the people have stayed at the borders for almost a week, hoping to turn themselves in to US Customs and Border Protection officials. However, they have been waiting in the open air with almost little to no food. “We are very tired and hungry and I have been here for six days,” said Pham Thanh, 28, of Vietnam, told Reuters through the bollards of a 30-foot (10-metre) border barrier. “President Biden, I’m asking to save us, please,” he said. The estimated 400 migrants come from around the world. They are camped out in U. S. territory on a strip of land between two imposing border walls. As per the report, the southern wall is the official US-Mexican border, there are gaps and places from where it may be easier to climb. The other is the northern wall – 30 feet tall in many places and keeps them in. But he never expected to get stuck at the foot of a dusty ravine, without a shower or clean clothes for six days, with a sick sister. “I’m just hoping and praying that today they take us in because if they don't take us then my future and my family future is dark because we escaped from dark place," Habibi told Reuters. While the Border Patrol didn’t explain how they were handling the migrants. The Border Patrol agents have organised them into groups, prioritising those who arrived first and women travelling with children, Reuters reported. Each of them has been given a colour-coded wristband - a sort of time stamp to mark their place in line. The highest priority group is occasionally called away for processing. Agents take pictures of their faces and passports. Meanwhile, when the Border Patrol leave an area, aid workers distribute food and water through the bollards in the wall, again prioritising women with children. Beyond food and water, another lifeline volunteers provide is the charging of cell phones, so that migrants can communicate with loved ones back home. Fabian Camilo Hernandez, 26, of Colombia, who is travelling with his wife and 22-month-old baby, said he would not have set out on the journey had he known what was to lie ahead. Title 42, dates back to 1944 law known as the Public Health Act, which granted US authorities emergency powers to prevent the spread of diseases, according to the BBC. In March 2020, the Trump administration invoked the statute, citing the need to stop the spread of COVID-19 across its borders. Using this as a justification, US authorities were able to swiftly remove migrants crossing the border from Mexico - including asylum seekers. Around 2. 8 million people have been expelled under Title 42 since it was implemented, according to US Customs and Border Protection, BBC reported. As per the Associated Press, after President Joe Biden took the office, he tried to keep Title 42 in place, then he tried to end its use in 2022. However, the Republicans sued, as they argued that the restrictions were necessary for border security, and the courts kept the rules in place. However, the Biden administration announced in January that it was ending national COVID-19 emergencies officially on May 11 and so the border restrictions are now going away. Biden has said the new changes are necessary, in part because Congress has passed no immigration reform in decades. Starting at 11:59 p. m. EDT Thursday, the Title 42 restrictions were lifted. Now, under the country’s international law, anyone who comes to the US can ask for asylum. People from all over the world come to the US-Mexico border to seek asylum in the US. They are screened to determine whether they have a credible fear of persecution in their homeland. According to AP, their case then goes to the immigration court system to determine if they can stay in the US, but that process can take years. Usually they are released into the US to wait their cases out. The Biden administration is now turning away anyone seeking asylum who didn’t first seek protection in a country they travelled through, or first applied online. This is a version of a Trump administration policy that was overturned by the courts, so it’s not clear whether this restriction will hold up, a lawsuit for the same is expected. The US has said it will accept up to 30,000 per month from Venezuela, Haiti, Nicaragua and Cuba as long as they come by air, have a sponsor and apply online first. The government will also allow up to 100,000 people from Guatemala, El Salvador, and Honduras. Whereas, Border officials will deport people otherwise, including turning 30,000 a month from Venezuela, Haiti, Nicaragua and Cuba back over the border to Mexico. Other migrants may be allowed in, too, if they apply through the CBP One app. Right now, 740 people per day have been allowed in through the app and they’re increasing it up to 1,000 per day.
english
"I was quite shocked at what I was seeing," said Raquel Viana, the South African scientist who first sequenced the mutated genes of the coronavirus variant now known as Omicron. By India Today Web Desk: A sharp rise in Covid-19 cases, a recurring oddity in test samples and a niggling feeling of dread in the gut were the prelude to the finding of the Omicron variant which has triggered widespread alarm the world over. In an interview to Reuters, a South African scientist who first sequenced the mutated genomes of the B. 1. 1. 529 variant, now termed Omicron, said she knew then (November 19) that the samples were going to have “huge ramifications”. "I was quite shocked at what I was seeing. I questioned whether something had gone wrong in the process," said Raquel Viana, Head of Science at a Lancet lab in South Africa. Viana said the unusual samples had one thing in common -- an S-gene dropout, one of the mutations that now distinguishes the new Omicron variant of the coronavirus from the globally dominant Delta one. She alerted the National Institute for Communicable Diseases (NICD) in Johannesburg, which started testing more samples during the November 20-21 weekend. First stumped by the bizarre mutations, the scientists at NICD began to suspect that a new Covid-19 strain was afoot. Factor in the sharp uptick in new cases over the past week and their suspicions crystallised into a grim certainty. By November 23, after testing 32 more samples from around Johannesburg and Pretoria, "it was clear," said Daniel Amoako, a gene sequencer at NICD. "It was scary. " That very day, the NICD team flagged the anomaly to the department of health and other labs across South Africa doing sequencing, and they too came across similar results. The findings were fed into the GISAID global science database, and the NICD learnt that Botswana and Hong Kong had also reported cases with the same gene sequence. The other shoe had dropped. The World Health Organization (WHO) was notified. In a matter of days, the Omicron variant began to emerge as the dominant strain in South Africa’s Gauteng province, where two-thirds of Covid positive tests had the S-gene dropout. One of the country's leading infectious disease specialists, Salim Abdool Karim, projects daily Covid-19 cases to quadruple to more than 10,000 by the end of this week, due to the spread of Omicron. Scientists are working around the clock to find the answers to several pressing questions -- how good the new variant is at evading immunity from vaccines or past infections, how virulent it is compared to other know strains, and how it will effect different age groups. With so much yet to be known about Omicron, and what we do know sparking concern and panic everywhere, the world is once again see-sawing between hopes of returning to normal and fears that the worst is yet to come. WATCH | Omicron: Will A Blanket Travel Ban Help Stop The New Covid Variant?
english
<filename>apps/user/forms.py #!/usr/bin/env python # -*- coding=utf-8 -*- __author__ = 'jimit' __CreateAt__ = '2019\2\25 14:48' from django import forms from captcha.fields import CaptchaField import re class RegisterForm(forms.Form): email = forms.EmailField(required=True) password = forms.CharField(required=True,label='密码',widget=forms.PasswordInput()) class LoginForm(forms.Form): email = forms.EmailField(required=True) password = forms.CharField(required=True,label='密码',widget=forms.PasswordInput())
python
<filename>css/styles.css h1{ font-family: 'Anton', sans-serif; font-size: 64px; text-align: center; color: rgb(42, 85, 165); } p{ font-family: 'Cuprum', sans-serif; font-size: 20px; text-align: center; color: blue; } form{ width: 300px; margin: auto; padding: 31px; } input[type=submit]{ padding: 5px; font-size:13px; width: 100px; } html{ background-image: url(../css/justice.jpg); }
css
Barman argues that the new series of GDP figures, with 2011-12 as the base year and released in 2015, has “not gone down well with analysts”. Similarly, withholding data on employment and consumption expenditure is adding to a sense of unease regarding official data. Official statistics, giving information about the state of the economy and the success of governance “is a public good” and therefore should be “independent to be impartial”, he writes. Barman also notes that “approach for collection of data remains largely the same for long” and the process needs “modernisation using technology”. He adds that along with GDP, data should “assess competitiveness, inclusive growth, fourth generation biotechnology” etc. Thus, GDP data needs “to be linked with a host of other data for deeper insight”. According to Barman, the “present national accounting and analytical framework misses out on many important dimensions of the economy”. He writes that we need a new framework for analysing our “complex system and evolutionary process”. He concludes by saying that “data is the new oil in the modern networked economy in pursuit of socio-economic development”. Ghosh writes that the recent economic slowdown has “complicated the Budget-making exercise”. He states this Budget “could make a substantial difference by challenging the conventional wisdom that does not stand the test of scrutiny”. According to Ghosh, “the government must not target a number in FY21 that is not credible and achievable”. He highlights three options in front of the government. One is the “apparent” trade-off between tax concessions and “giving a fillip” to the rural economy. Ghosh argues that while many would argue against the concessions, since only four per cent of the population pay income tax, the Indian economy expanded to almost eight per cent on average during 2004-08 when only two per cent of the people were paying tax. Second, he writes, the idea of a “rural push” through PM-KISAN scheme is understandable but “all efforts must first be made to cover all farmers under the scheme”. Third, the government must think about the “trade-off between tax adjustment and incentivising savings”. Aside from all these, Ghosh writes that the Budget should also work towards restoring trust in financial institutions. Natural farming for fiscal prudence? Ghosh and Gupta call for a shift towards sustainable food systems like natural farming which can reduce fertiliser use, lower states’ subsidy burden and reduced manufacturing emissions that are harmful to the environment. Natural farming advocates “mulching practices and symbiotic intercropping”, unlike “chemical fertiliser-based and high input cost agriculture”, they write. Natural farming can impact “a quarter of the 169 targets under the Sustainable Development Goals”, suggest researchers at the Council on Energy, Environment and Water (CEEW). The authors, however, also point out that not all farmers have been practising it for long or “have access to functioning markets to secure higher returns”. Ghosh and Gupta mention CEEW’s latest study that found significantly lower fertiliser consumption — almost 95 per cent reduction — to naturally farm rice and maize. This could save states a lot of money when it comes to fertiliser subsidies, they write. “With complete penetration of natural farming across Andhra Pradesh, the state could save almost Rs 2,100 crore in fertiliser subsidies annually”, they explain. However, more research, deployment and evaluation is needed to ascertain whether natural farming increases yields and farmers’ incomes, they add. Rajagopalan begins her piece with a quote from Shakespeare’s Julius Caesar (Act IV, Scene 3) to make her case for the need of bold reforms in Budget 2020. She identifies four ongoing crises in the Indian economy that require reforms — “jobs, education, agriculture, and the fiscal scenario”. A simplified tax system having “a single non-zero GST rate, delivering simplicity in calculating, filing, and auditing the tax” is a necessary first step that can help root out tax evasion, she writes. After this, the scope of GST must be “broadened to include petroleum, alcohol, property sales, etc,” she adds. Rajagopalan suggests that to improve education, the government must speedily unleash “the profit motive and private entrepreneurship” in primary schooling. She also recommends six solutions to the “distortive and paternalistic regulation[s]” contributing to the farming crisis which include access to regional and global markets, ending minimum support prices and more. Finally, she recommends that the Narendra Modi government dismantle “industrial licensing and currency controls” as there has been a growing need for it in recent years. Desai makes a scathing remark on Finance Minister Nirmala Sitharaman and the Modi government’s pattern of “getting rid of good economists”. After her maiden Budget, Sitharaman made a few missteps like the corporate tax rate cut and “fiddling” with customs duties, he writes. Now, Sitharaman is dealing with a “feckless economy more in the Latin American style. No growth, only inflation,” he says. A fall in growth rate is usually associated with the “balance sheets of banks, and of the companies that borrowed from them to build infrastructure,” writes Desai. However, the problem may also be a fall in the entire non-farm sector and further, the central government and its financier, RBI. Sitharaman “had budgeted for a generous fiscal deficit, and former RBI governor Urjit Patel had reluctantly promised to finance it”. Desai writes that she “ran up the [fiscal] deficit she had budgeted for the entire year in the first six months”. When “a willing successor from Delhi”, Shaktikanta Das, entered the post he “would print money and buy the central government’s bonds on whatever scale suited her [Sitharaman]”, he adds. Desai recommends that if anything, Sitharaman restore “the independence of RBI, and sternly balance her budget”.
english
<filename>webtack/jsinterop-generator/src/test/fixtures/type_override/output/j2cl/main/js/com/example/Example.externs.js /** * @fileoverview * @externs */ /** * @typedef {!Window} */ var WindowProxy; /** * @typedef {(!WorkerNavigator|!Navigator)} */ var WorkerNavigatorOrNavigatorUnion; /** * @typedef {(!AudioNode|undefined)} */ var AudioNodeOrUndefinedUnion; /** * @typedef {(!WorkerGlobalScope|!Window)} */ var WorkerGlobalScopeOrWindowUnion; /** * @typedef {(!Document|!Window)} */ var DocumentOrWindowUnion; /** * @typedef {(!WorkerLocation|!Location)} */ var WorkerLocationOrLocationUnion; /** * @typedef {(!ExtendableMessageEventHandler|!MessageEventHandler)} */ var ExtendableMessageEventHandlerOrMessageEventHandlerUnion; /** * @typedef {function(!ExtendableMessageEvent): undefined} */ var ExtendableMessageEventHandler; /** * @typedef {function(!MessageEvent): undefined} */ var MessageEventHandler; /** * @constructor * @private * @nosideeffects */ function Window() {} /** @type {!Location} */ Window.prototype.location; /** @type {!Navigator} */ Window.prototype.navigator; /** @type {!WindowProxy} */ Window.prototype.self; /** @type {?MessageEventHandler} */ Window.prototype.onmessage; /** * @constructor * @private * @extends {Event} * @nosideeffects */ function MessageEvent() {} /** * @constructor * @private * @nosideeffects */ function Navigator() {} /** * @constructor * @private * @extends {WorkerGlobalScope} * @nosideeffects */ function ServiceWorkerGlobalScope() {} /** @type {?ExtendableMessageEventHandler} */ ServiceWorkerGlobalScope.prototype.onmessage; /** * @constructor * @private * @extends {WorkerGlobalScope} * @nosideeffects */ function SharedWorkerGlobalScope() {} /** * @constructor * @private * @nosideeffects */ function Document() {} /** * @param {(!string|!string)=} arg0 * @param {!string=} arg1 * @param {!string=} arg2 * @return {DocumentOrWindowProxyUnion} */ Document.prototype.open = function(arg0,arg1,arg2) {} /** * @constructor * @private * @nosideeffects */ function WorkerLocation() {} /** * @constructor * @private * @nosideeffects */ function WorkerNavigator() {} /** * @constructor * @private * @nosideeffects */ function WorkerGlobalScope() {} /** @type {!WorkerLocation} */ WorkerGlobalScope.prototype.location; /** @type {!WorkerNavigator} */ WorkerGlobalScope.prototype.navigator; /** @type {!WorkerGlobalScope} */ WorkerGlobalScope.prototype.self; /** * @constructor * @private * @extends {Event} * @nosideeffects */ function ExtendableMessageEvent() {} /** * @constructor * @private * @extends {WorkerGlobalScope} * @nosideeffects */ function DedicatedWorkerGlobalScope() {} /** * @constructor * @private * @nosideeffects */ function AudioParam() {} /** * @constructor * @private * @nosideeffects */ function Event() {} /** * @constructor * @private * @nosideeffects */ function AudioNode() {} /** * @param {(!AudioNode|!AudioParam)} arg0 * @param {!number=} arg1 * @param {!number=} arg2 * @return {AudioNodeOrUndefinedUnion} */ AudioNode.prototype.connect = function(arg0,arg1,arg2) {} /** * @constructor * @private * @nosideeffects */ function Location() {} /** @type {MessageEventHandlerOrExtendableMessageEventHandlerUnion} */ var onmessage; /** @type {NavigatorOrWorkerNavigatorUnion} */ var navigator; /** @type {WindowProxyOrWorkerGlobalScopeUnion} */ var self; /** @type {LocationOrWorkerLocationUnion} */ var location; /** * @typedef {(?MessageEventHandler|?ExtendableMessageEventHandler)} */ var MessageEventHandlerOrExtendableMessageEventHandlerUnion; /** * @typedef {(!Document|?WindowProxy)} */ var DocumentOrWindowProxyUnion; /** * @typedef {(!WindowProxy|!WorkerGlobalScope)} */ var WindowProxyOrWorkerGlobalScopeUnion; /** * @typedef {(!Location|!WorkerLocation)} */ var LocationOrWorkerLocationUnion; /** * @typedef {(!Navigator|!WorkerNavigator)} */ var NavigatorOrWorkerNavigatorUnion;
javascript
{"ast":null,"code":"export const transitions = {\n INACTIVE: {\n STAKE_PRESSED: \"STAKING\"\n },\n STAKING: {\n CANCEL_PRESSED: \"INACTIVE\",\n STAKE_CONFIRMED: \"ACTIVE\",\n STAKE_APPROVED: \"STAKING\"\n },\n ACTIVE: {\n ADJUST_PRESSED: \"ADJUSTING\",\n CLAIM_REWARD_CONFIRMED: \"ACTIVE\",\n UNSTAKE_AND_CLAIM_CONFIRMED: \"INACTIVE\"\n },\n ADJUSTING: {\n CANCEL_PRESSED: \"ACTIVE\",\n STAKE_CONFIRMED: \"ACTIVE\",\n STAKE_APPROVED: \"ADJUSTING\",\n UNSTAKE_CONFIRMED: \"ACTIVE\"\n },\n DISABLED: {\n CLAIM_REWARD_CONFIRMED: \"DISABLED\",\n UNSTAKE_AND_CLAIM_CONFIRMED: \"DISABLED\"\n }\n};","map":{"version":3,"sources":["/Users/diegoponciano/Desktop/ryan/liquity/frontend/packages/dev-frontend/src/components/Farm/context/transitions.ts"],"names":["transitions","INACTIVE","STAKE_PRESSED","STAKING","CANCEL_PRESSED","STAKE_CONFIRMED","STAKE_APPROVED","ACTIVE","ADJUST_PRESSED","CLAIM_REWARD_CONFIRMED","UNSTAKE_AND_CLAIM_CONFIRMED","ADJUSTING","UNSTAKE_CONFIRMED","DISABLED"],"mappings":"AA6BA,OAAO,MAAMA,WAAiC,GAAG;AAC/CC,EAAAA,QAAQ,EAAE;AACRC,IAAAA,aAAa,EAAE;AADP,GADqC;AAI/CC,EAAAA,OAAO,EAAE;AACPC,IAAAA,cAAc,EAAE,UADT;AAEPC,IAAAA,eAAe,EAAE,QAFV;AAGPC,IAAAA,cAAc,EAAE;AAHT,GAJsC;AAS/CC,EAAAA,MAAM,EAAE;AACNC,IAAAA,cAAc,EAAE,WADV;AAENC,IAAAA,sBAAsB,EAAE,QAFlB;AAGNC,IAAAA,2BAA2B,EAAE;AAHvB,GATuC;AAc/CC,EAAAA,SAAS,EAAE;AACTP,IAAAA,cAAc,EAAE,QADP;AAETC,IAAAA,eAAe,EAAE,QAFR;AAGTC,IAAAA,cAAc,EAAE,WAHP;AAITM,IAAAA,iBAAiB,EAAE;AAJV,GAdoC;AAoB/CC,EAAAA,QAAQ,EAAE;AACRJ,IAAAA,sBAAsB,EAAE,UADhB;AAERC,IAAAA,2BAA2B,EAAE;AAFrB;AApBqC,CAA1C","sourcesContent":["type InactiveView = \"INACTIVE\";\ntype StakingView = \"STAKING\";\ntype ActiveView = \"ACTIVE\";\ntype AdjustingView = \"ADJUSTING\";\ntype DisabledView = \"DISABLED\";\n\nexport type FarmView = InactiveView | StakingView | ActiveView | AdjustingView | DisabledView;\n\ntype StakePressedEvent = \"STAKE_PRESSED\";\ntype AdjustPressedEvent = \"ADJUST_PRESSED\";\ntype CancelPressedEvent = \"CANCEL_PRESSED\";\ntype StakeApprovedEvent = \"STAKE_APPROVED\";\ntype StakeConfirmedEvent = \"STAKE_CONFIRMED\";\ntype ClaimRewardConfirmedEvent = \"CLAIM_REWARD_CONFIRMED\";\ntype UnstakeConfirmedEvent = \"UNSTAKE_CONFIRMED\";\ntype UnstakeAndClaimConfirmedEvent = \"UNSTAKE_AND_CLAIM_CONFIRMED\";\n\nexport type FarmEvent =\n | StakePressedEvent\n | AdjustPressedEvent\n | CancelPressedEvent\n | StakeApprovedEvent\n | StakeConfirmedEvent\n | ClaimRewardConfirmedEvent\n | UnstakeConfirmedEvent\n | UnstakeAndClaimConfirmedEvent;\n\ntype FarmEventTransitions = Record<FarmView, Partial<Record<FarmEvent, FarmView>>>;\n\nexport const transitions: FarmEventTransitions = {\n INACTIVE: {\n STAKE_PRESSED: \"STAKING\"\n },\n STAKING: {\n CANCEL_PRESSED: \"INACTIVE\",\n STAKE_CONFIRMED: \"ACTIVE\",\n STAKE_APPROVED: \"STAKING\"\n },\n ACTIVE: {\n ADJUST_PRESSED: \"ADJUSTING\",\n CLAIM_REWARD_CONFIRMED: \"ACTIVE\",\n UNSTAKE_AND_CLAIM_CONFIRMED: \"INACTIVE\"\n },\n ADJUSTING: {\n CANCEL_PRESSED: \"ACTIVE\",\n STAKE_CONFIRMED: \"ACTIVE\",\n STAKE_APPROVED: \"ADJUSTING\",\n UNSTAKE_CONFIRMED: \"ACTIVE\"\n },\n DISABLED: {\n CLAIM_REWARD_CONFIRMED: \"DISABLED\",\n UNSTAKE_AND_CLAIM_CONFIRMED: \"DISABLED\"\n }\n};\n"]},"metadata":{},"sourceType":"module"}
json
<gh_stars>0 $(document).ready(function(){ $(".search").keyup(function() { var box = $(this).val(); var dataString = 'query='+ box; if(box!='') { $.ajax({ type : "POST", url : "finder.php", data : dataString, cache: false, success: function(contenido) { $("#display").html(contenido).show(); } }); } return false; }); });
javascript
- iQOO Neo 7 Racing Edition is the third phone in the lineup. - It comes with 120W fast charging support. iQOO has launched a new performance-focused smartphone in China. The company has introduced the iQOO Neo 7 Racing Edition as the company’s latest premium offering. The device is the third smartphone in the lineup. Prior to the Neo 7 Racing Edition, the company launched the Neo 7 and Neo 7 SE 5G in its home country. The ultimate selling point of the Neo 7 Racing Edition is its performance unit. The Neo 7 Racing Edition features a Qualcomm Snapdragon 8+ Gen 1 SoC. The 4nm SoC is second to the Snapdragon 8 Gen 2 SoC in terms of performance. Although a few months old, the SoC is far more powerful for most use cases. In comparison, the iQOO Neo 7 has a Dimensity 9000+ SoC, whereas the Neo 7 SE has a Dimensity 8200 SoC. There is a lot more about the iQOO Neo 7 Racing Edition other than the processor. From its price to specifications, here’s everything you need to know about the new iQOO smartphone. The iQOO Neo 7 Racing Edition has been launched with multiple storage options. The top model offers 16GB RAM and 512GB storage. It has been launched for CNY 3599 (roughly Rs 42,800). The device is also available with 16GB + 256GB and 12GB + 256GB storage options, which are priced at CNY 3299 (roughly Rs 39,200) and CNY 2999 (roughly Rs 35,700). The base model has 8GB of RAM and 128GB of internal storage. It is priced at CNY 2799 (roughly Rs 33,300). The phone is available in Blue, Black and Monster Orange colours. In terms of hardware, the Neo 7 Racing Edition packs a 5000mAh battery. The phone supports 120W fast charging out of the box. The charger is packed inside the box. There is no support for wireless charging, in case you were wondering. On the back, the phone has a triple-camera setup inside a rectangular camera module. There is a 50MP primary camera sensor, accompanied by an 8MP ultrawide camera and a 2MP macro camera sensor. The phone’s primary camera supports optical image stabilisation (OIS). For selfies, there is a 16MP front camera sensor. The Neo 7 Racing Edition has a 6.78-inch Full HD+ AMOLED display with a 20:9 aspect ratio and a hole-punch cutout at the top centre. The screen supports HD10+ and a 120Hz refresh rate. The Neo 7 Racing Edition’s display is flat and has fairly thin bezels around it. As mentioned above, there is a Snapdragon 8+ Gen 1 SoC under the hood. It is paired with an Adreno 730 GPU, LPDDR5 RAM and UFS 3.1 storage. The device is 8.5mm thick and weighs about 197 grams. Lastly, the phone runs Android 13-based Origin OS Forest in China. There is no word on whether the phone is launching in India. iQOO might launch the phone as a successor to the iQOO 9 SE, which was launched earlier this year. There is no official word from the company at the moment. Therefore, we advise taking the leaked details with a pinch of salt.
english
{"data":{"token":[{"reveal_status":2,"timestamp":"2022-02-24T14:14:30+00:00","owner_id":"tz1TK59jB8j7Fzsm6zEjQB3mKc96Ne5KaEmb","creator_id":"tz1TK59jB8j7Fzsm6zEjQB3mKc96Ne5KaEmb","metadata":{"description":"DOGAMI, Adopt Raise, Earn.","name":"DOGAMI #7523","display_uri":"https://nft-zzz.mypinata.cloud/ipfs/QmfD6SbxpWnoQfXFaM5KWEmeoZpmsYvDv9qzeXFAnA1qQ4","thumbnail_uri":"https://nft-zzz.mypinata.cloud/ipfs/QmbiGuzuSKoNLcjqefggLbb3wE2gMiP4DchE7nCr4PxQrU","artifact_uri":"https://nft-zzz.mypinata.cloud/ipfs/QmdJVuaasRRSeRKS9maDYdf1h75juyiMTemrLEzeZnbYAd","decimals":0,"attributes":{"rarity_score":56,"ranking":2446,"rarity_tier":{"name":"Silver","__typename":"rarity_tier"},"generation":"Alpha","gender":"Female","breed":{"name":"Golden Retriever","__typename":"breed"},"fur_color":"Light gold #4","friendliness":5,"eyes_color":"Brown #5","intelligence":3,"strength":6,"obedience":8,"vitality":3,"secondary_personality":"Lazy","bonding_level":1,"primary_personality":"Naive","stats":{"bonding_level_top_pct":0,"breed_pct":9,"eyes_color_pct":7,"friendliness_top_pct":31,"fur_color_pct":0,"gender_pct":49,"generation_pct":309,"intelligence_top_pct":77,"obedience_top_pct":22,"rarity_tier_pct":30,"primary_personality_pct":5,"size_pct":15,"vitality_top_pct":88,"strength_top_pct":24,"secondary_personality_pct":5,"__typename":"attributes_stats"},"__typename":"attributes"},"is_boolean_amount":true,"__typename":"metadata"},"id":7523,"swaps":[],"__typename":"token"}]}}
json
Three Cups of Tea: One Man's Mission to Promote Peace . . . One School at a Time (Paperback) Anyone who despairs of the individual’s power to change lives has to read the story of Greg Mortenson, a homeless mountaineer who, following a 1993 climb of Pakistan’s treacherous K2, was inspired by a chance encounter with impoverished mountain villagers and promised to build them a school. Over the next decade he built fifty-five schools—especially for girls—that offer a balanced education in one of the most isolated and dangerous regions on earth. As it chronicles Mortenson’s quest, which has brought him into conflict with both enraged Islamists and uncomprehending Americans, Three Cups of Tea combines adventure with a celebration of the humanitarian spirit. Greg Mortenson is the director of the Central Asia Institute. A resident of Montana, he spends several months of the year in Pakistan and Afghanistan. David Oliver Relin is a contributing editor for Parade magazine and Skiing magazine. He has won more than forty national awards for his work as a writer and editor.
english
<reponame>Nisarg1792/SFTL<gh_stars>1-10 package SFTLsw; /* * To change this template, choose Tools | Templates * and open the template in the editor. */ /* * CaesarCipher.java * * Created on May 22, 2013, 4:47:25 PM */ /** * * @author NISH */ public class CaesarCipher extends javax.swing.JFrame { /** Creates new form CaesarCipher */ public CaesarCipher() { initComponents(); } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jToolBar1 = new javax.swing.JToolBar(); jLabel2 = new javax.swing.JLabel(); jButton1 = new javax.swing.JButton(); jTextField1 = new javax.swing.JTextField(); jLabel1 = new javax.swing.JLabel(); jLabel3 = new javax.swing.JLabel(); jLabel4 = new javax.swing.JLabel(); jTextField2 = new javax.swing.JTextField(); jTextField3 = new javax.swing.JTextField(); jTextField4 = new javax.swing.JTextField(); setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); jToolBar1.setBorder(javax.swing.BorderFactory.createTitledBorder("SFTL - Playfair Cipher")); jToolBar1.setRollover(true); jLabel2.setText("Caesar Cipher"); jButton1.setText("Encrypt"); jTextField1.setText("jTextField1"); jLabel1.setText("Enter Key:"); jLabel3.setText("The Ciphertext is:"); jLabel4.setText("Enter the Plaintext:"); jTextField3.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { jTextField3ActionPerformed(evt); } }); javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() .addContainerGap() .addComponent(jToolBar1, javax.swing.GroupLayout.DEFAULT_SIZE, 380, Short.MAX_VALUE)) .addGroup(layout.createSequentialGroup() .addGap(161, 161, 161) .addComponent(jLabel2)) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jLabel4)) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jTextField2, javax.swing.GroupLayout.DEFAULT_SIZE, 380, Short.MAX_VALUE)) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jTextField3, javax.swing.GroupLayout.DEFAULT_SIZE, 380, Short.MAX_VALUE)) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jLabel1)) .addGroup(layout.createSequentialGroup() .addGap(166, 166, 166) .addComponent(jButton1)) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jLabel3)) .addGroup(layout.createSequentialGroup() .addContainerGap() .addComponent(jTextField4, javax.swing.GroupLayout.DEFAULT_SIZE, 380, Short.MAX_VALUE))) .addContainerGap()) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addComponent(jToolBar1, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) .addComponent(jLabel2) .addGap(31, 31, 31) .addComponent(jLabel4) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(30, 30, 30) .addComponent(jLabel1) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addGap(18, 18, 18) .addComponent(jButton1) .addGap(16, 16, 16) .addComponent(jLabel3) .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) .addComponent(jTextField4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) .addContainerGap(23, Short.MAX_VALUE)) ); jToolBar1.getAccessibleContext().setAccessibleName("SFTL - Caesar Cipher"); pack(); }// </editor-fold>//GEN-END:initComponents private void jTextField3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jTextField3ActionPerformed // TODO add your handling code here: }//GEN-LAST:event_jTextField3ActionPerformed /** * @param args the command line arguments */ public static void main(String args[]) { java.awt.EventQueue.invokeLater(new Runnable() { public void run() { new CaesarCipher().setVisible(true); } }); } // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JButton jButton1; private javax.swing.JLabel jLabel1; private javax.swing.JLabel jLabel2; private javax.swing.JLabel jLabel3; private javax.swing.JLabel jLabel4; private javax.swing.JTextField jTextField1; private javax.swing.JTextField jTextField2; private javax.swing.JTextField jTextField3; private javax.swing.JTextField jTextField4; private javax.swing.JToolBar jToolBar1; // End of variables declaration//GEN-END:variables }
java
<gh_stars>0 #[cfg(test)] mod test { use crate::BizActivity; use rbatis::core::Error; use rbatis::crud::CRUD; use rbatis::plugin::intercept::{ BlockAttackDeleteInterceptor, BlockAttackUpdateInterceptor, SqlIntercept, }; use rbatis::rbatis::Rbatis; use serde_json::Value; #[tokio::test] pub async fn test_block_attack() { fast_log::init_log("requests.log", 1000, log::Level::Info, None, true); let mut rb = Rbatis::new(); rb.add_sql_intercept(BlockAttackDeleteInterceptor {}); rb.add_sql_intercept(BlockAttackUpdateInterceptor {}); rb.link("mysql://root:123456@localhost:3306/test") .await .unwrap(); let r = rb.exec("", "delete from biz_activitys").await; if r.is_err() { println!("block success:{}", r.err().unwrap()); } } #[derive(Debug)] pub struct MyIntercept {} impl SqlIntercept for MyIntercept { fn do_intercept( &self, rb: &Rbatis, context_id: &str, sql: &mut String, args: &mut Vec<Value>, is_prepared_sql: bool, ) -> Result<(), rbatis::core::Error> { println!(">>>>>> hello this is my inercept!>>>>>>"); println!(">>>>>> my inercept:-> sql: {}", sql); println!(">>>>>> my inercept:-> args: {:?}", args); return Result::Ok(()); } } #[tokio::test] pub async fn test_intercept() { fast_log::init_log("requests.log", 1000, log::Level::Info, None, true); let mut rb = Rbatis::new(); rb.add_sql_intercept(MyIntercept {}); rb.link("mysql://root:123456@localhost:3306/test") .await .unwrap(); let w = rb.new_wrapper().eq("id", "1"); let r: Result<Option<BizActivity>, Error> = rb.fetch_by_wrapper("", &w).await; } }
rust
Pichhe Pichhe Hamra Aawa Tadu song is a Bhojpuri folk song from the Piyava Se Khelabo Abeer Ho released on 2020. Music of Pichhe Pichhe Hamra Aawa Tadu song is composed by S. Raj Khortha. Pichhe Pichhe Hamra Aawa Tadu was sung by Surendra Bedardi. Download Pichhe Pichhe Hamra Aawa Tadu song from Piyava Se Khelabo Abeer Ho on Raaga.com.
english
{ "name": "fake-extension", "displayName": "Dummy extension", "version": "1.7.0", "icon": "icons/logo.png", "author": "fake author", "publisher": "fakepublisher", "preview": true, "license": "Apache-2.0", "engines": { "vscode": "^1.37.0" }, "main": "./dist/extension", "extensionDependencies": [ "redhat.vscode-microprofile", "redhat.java", "vscjava.vscode-java-debug" ], "contributes": {} }
json
Posted On: The Union Cabinet, chaired by the Prime Minister Shri Narendra Modi, has approved the recapitalization of EXIM Bank. The details are as follows: - Issuance of Recapitalization Bonds by Government of India to the tune of Rs.6,000 crore for capital infusion in Export Import Bank of India (Exim Bank). - The equity will be infused in two tranches of Rs. 4,500 crore in FY 2018-19 and Rs.1,500 crore in FY 2019-20 respectively. - The Cabinet also approved an increase in the authorized capital of Exim Bank from Rs. 10,000 crore to Rs. 20,000 crore. The recapitalisation bonds will be on the lines issued to Public Sector Banks. Major Impact: - Exim Bank is the principal export credit agency for India. - The infusion of capital into Exim Bank will enable it to augment capital adequacy and support Indian exports with enhanced ability. - The infusion will give an impetus to anticipate new initiatives like supporting Indian textile industries, likely changes in Concessional Finance Scheme (CFS), likelihood of new LoCs in future in view of India's active foreign policy and strategic intent. Exim Bank of India (Exim Bank) was established in 1982 under an Act of Parliament as the apex financial institution for financing, facilitating and promoting India's international trade. The Bank primarily lends for exports from India including supporting overseas buyers and Indian suppliers for export of developmental and infrastructure projects, equipment, goods and services from India. It is regulated by RBI.
english
import Image from "next/image"; type Gravatar_Props = { src: string; height: number; width: number; alt?: string; className?: string; }; //外部Image用のComponent export const External_Image: React.FC<Gravatar_Props> = ({ src, alt, height, width, className, }) => { const myLoader = ({ src, width }: { src: string; width: number }) => { return `${src}?w=${width}`; }; return ( <Image loader={myLoader} className={className} src={src} alt={alt} width={width} height={height} /> ); };
typescript
/* Configuração padrão da página -------------------------------*/ @font-face { font-family: roboto; src: url(Roboto-Regular.ttf); } * { font-family: roboto; } body, html { margin: 0; color: #7F6898; height: auto; overflow-x: hidden; } .banner-titulo{ font-size: 6em; padding: 18px 0px; background-image: linear-gradient(to top, #5f4f70,#665679, #7f6898, #7f6898, #fceaff, #4C07BD, #4C07BD, #4C07BD, #4C07BD, #4C07BD); background-clip: text; background-size: 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; /* text-shadow: 5px 5px 2px black; */ position: relative; user-select: none; margin: 0; } .nav-item.nav-item.nav-item { padding: 5px 10px; color: #7F6898; border-radius: 20px; } .nav-item.nav-item.nav-item:hover{ cursor: pointer; background-color: #4C07BD; color: #fff; text-decoration-line: none; } h1::selection, span::selection, h3::selection, p::selection, li::selection { background-color: rgb(224, 190, 138); color: rgb(253, 253, 253); } .conteudo { color: #474647; background-color: rgb(255, 255, 255); text-align: justify; padding: 50px 80px; position: relative; box-shadow: 0 -10px 200px black; } .conteudo-titulo { color: #000000; text-transform: uppercase; text-align: center; padding-bottom: 10px; } p{ margin-bottom: 20px; } /* Efeito Parallax -------------------------------*/ .caixa1, .caixa2, .caixa3, .caixa4 { position: relative; height: 100vh; opacity: 0.7; margin: 0; padding: 0; background-repeat: no-repeat; background-size: cover; background-position: center; background-attachment: fixed; } .caixa1 { background-image: url(imagens/imagem1.jpg); } .caixa2 { background-image: url(imagens/imagem2.jpg); } .caixa3 { background-image: url(imagens/imagem3.jpg); } .caixa4 { background-image: url(imagens/imagem4.jpg); } .scrollRevela { overflow: auto; position: absolute; left: 0; top: 45%; width: 100%; color: #ffffff; text-shadow: 0 1px 0 #CCCCCC, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 10px 10px rgba(0,0,0,.2), 0 20px 20px rgba(0,0,0,.15), 2px 2px 2px rgba(206,89,55,0); font-weight:bold; font-size: 3em; text-transform: uppercase; letter-spacing: 5px; margin: 0; padding: 0; z-index: 1; } footer { position: relative; box-shadow: 0 -50px 100px black; background-color: white; padding-top: 20px; }
css
<gh_stars>1-10 /* Copyright 2005 <NAME>, Inc. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) */ /* Footer with copyright, license, banners. */ #footer { color: #666666; margin: 1.5em; padding: 0em; clear: both; background: #EEEEEE; border-top: #000000 solid 1px; } #footer-left { float: left; padding: 0.75em; } #footer-right { float: right; padding: 0.75em; } #footer p { margin: 0em; padding: 0em; font-size: 75%; text-align: left; } #footer #banners p { float: left; margin: 0em 0em 0em 1em; } #footer #banners a { display: block; } #footer #banner-sourceforge { background: url(http://sourceforge.net/sflogo.php?group_id=7586&type=1) no-repeat fixed 0px 5em; }
css
<reponame>sjoerd108/jimp-native<gh_stars>10-100 #pragma once #include <napi.h> #include "../util/referenceFactory.hpp" void wrapBrightness (const Napi::CallbackInfo& info, ReferenceFactory& referenceFactory); void wrapOpacity (const Napi::CallbackInfo& info, ReferenceFactory& referenceFactory); void wrapOpaque (const Napi::CallbackInfo& info, ReferenceFactory& referenceFactory); void wrapContrast (const Napi::CallbackInfo& info, ReferenceFactory& referenceFactory); void wrapPosterize (const Napi::CallbackInfo& info, ReferenceFactory& referenceFactory); void wrapSepia (const Napi::CallbackInfo& info, ReferenceFactory& referenceFactory); void wrapConvolution (const Napi::CallbackInfo& info, ReferenceFactory& referenceFactory); void wrapGreyscale (const Napi::CallbackInfo& info, ReferenceFactory& referenceFactory);
cpp
<reponame>collinstommy/aoe-library { "title": "Villagers Required", "url": "https://aoe2-de-tools.herokuapp.com/villagers-required.html", "description": "Number of Villagers Required to Sustain Constant Unit Production", "tags": [ "tool" ], "dateAdded": 1613913116585 }
json
<gh_stars>0 package org.adligo.tests4j_tests.trials_api.common; import org.adligo.tests4j.models.shared.metadata.I_TrialRunMetadata; import org.adligo.tests4j.models.shared.results.I_PhaseState; import org.adligo.tests4j.models.shared.results.I_TrialResult; import org.adligo.tests4j.models.shared.results.I_TrialRunResult; import org.adligo.tests4j.system.shared.api.I_Tests4J_Controls; import org.adligo.tests4j.system.shared.api.I_Tests4J_CoveragePluginFactory; import org.adligo.tests4j.system.shared.api.I_Tests4J_Listener; import org.adligo.tests4j.system.shared.api.I_Tests4J_Params; import org.adligo.tests4j.system.shared.api.Tests4J_Params; import org.adligo.tests4j.system.shared.trials.I_Trial; import java.util.ArrayList; import java.util.List; import java.util.concurrent.CopyOnWriteArrayList; /** * simulates a run of tests4j * * @author scott * */ public class ExpectedFailureRunner implements I_Tests4J_Listener { private volatile I_TrialRunMetadata metadata; private int size = 0; private final CopyOnWriteArrayList<I_TrialResult> results = new CopyOnWriteArrayList<I_TrialResult>(); private SystemRunnerMock mockSystem = new SystemRunnerMock(); private Class<? extends I_Tests4J_CoveragePluginFactory> coveragPluginFactory_ = null; public ExpectedFailureRunner() {} public void run(Class<? extends I_Trial> trial) { List<Class<? extends I_Trial>> list = new ArrayList<Class<? extends I_Trial>>(); list.add(trial); run(list); } public void run(List<Class<? extends I_Trial>> trials) { Tests4J_Params params = new Tests4J_Params(); size = trials.size(); params.setTrials(trials); if (coveragPluginFactory_ != null) { params.setCoveragePluginFactoryClass(coveragPluginFactory_); } Tests4JRunnerMock mock = new Tests4JRunnerMock(); mock.setSystem(mockSystem); final I_Tests4J_Controls controlls = mock.instanceRun(params, this); if (!controlls.isRunning()) { throw new RuntimeException("The trial run didn't start."); } controlls.waitForResults(); } public List<I_TrialResult> getResults() { return results; } @Override public synchronized void onTrialCompleted(I_TrialResult pResult) { results.add(pResult); } @Override public void onRunCompleted(I_TrialRunResult result) { } @Override public synchronized void onMetadataCalculated(I_TrialRunMetadata p) { metadata = p; } public I_TrialRunMetadata getMetadata() { return metadata; } @Override public void onStartingTrial(String trialName) { // TODO Auto-generated method stub } @Override public void onStartingTest(String trialName, String testName) { // TODO Auto-generated method stub } @Override public void onTestCompleted(String trialName, String testName, boolean passed) { // TODO Auto-generated method stub } public SystemRunnerMock getMockSystem() { return mockSystem; } @Override public void onProccessStateChange(I_PhaseState info) { // TODO Auto-generated method stub } @Override public void onProgress(I_PhaseState info) { // TODO Auto-generated method stub } public Class<? extends I_Tests4J_CoveragePluginFactory> getCoveragPluginFactory() { return coveragPluginFactory_; } public void setCoveragPluginFactory(Class<? extends I_Tests4J_CoveragePluginFactory> coveragPluginFactory) { this.coveragPluginFactory_ = coveragPluginFactory; } @Override public void onStartingSetup(I_Tests4J_Params params) { // TODO Auto-generated method stub } }
java
<filename>aos/util/math_test.cc #include "aos/util/math.h" #include "gtest/gtest.h" namespace aos { namespace math { namespace testing { bool AngleEqual(double a1, double a2) { double diff = a1 - a2; return ::std::fmod(diff, 2 * M_PI) == 0.0; } bool AngleInBounds(double a) { return a <= M_PI && a > -M_PI; } // Check that something void ExpectNormalizesCorrectly(double a) { double b = NormalizeAngle(a); EXPECT_PRED2(AngleEqual, a, b); EXPECT_PRED1(AngleInBounds, b); } void ExpectDiffsCorrectly(double a, double b) { double diff = DiffAngle(a, b); EXPECT_PRED1(AngleInBounds, diff) << "a: " << a << " b: " << b; EXPECT_PRED2(AngleEqual, a, b + diff); } // Checks that normalizing positive and negative angles in and out of bounds // works correctly. TEST(MathTest, NormalizeAngleTest) { ExpectNormalizesCorrectly(0.0); ExpectNormalizesCorrectly(1.0); ExpectNormalizesCorrectly(-1.0); ExpectNormalizesCorrectly(M_PI); ExpectNormalizesCorrectly(2.0 * M_PI); ExpectNormalizesCorrectly(-2.0 * M_PI); ExpectNormalizesCorrectly(100.0); ExpectNormalizesCorrectly(-100.0); } // Checks that subtracting one angle from another works for various combinations // of angles. TEST(MathTest, DiffAngleTest) { ExpectDiffsCorrectly(0.0, 0.0); ExpectDiffsCorrectly(1.0, 0.0); ExpectDiffsCorrectly(0.0, 1.0); ExpectDiffsCorrectly(-1.0, 1.0); ExpectDiffsCorrectly(100.0, 1.0); ExpectDiffsCorrectly(-100.0, 1.0); ExpectDiffsCorrectly(M_PI, M_PI); } // Check that points that are really counter-clockwise show up as // counter-clockwise, and that invalid orderings don't show up as CCW. TEST(MathTest, PointsAreCCWTest) { Eigen::Vector2d a, b, c; a << 0.0, 0.0; b << 1.0, 0.0; c << 0.0, 1.0; // Because there are only six orderings we can just enumerate them all. EXPECT_TRUE(PointsAreCCW<double>(a, b, c)); EXPECT_FALSE(PointsAreCCW<double>(a, c, b)); EXPECT_FALSE(PointsAreCCW<double>(b, a, c)); EXPECT_TRUE(PointsAreCCW<double>(b, c, a)); EXPECT_TRUE(PointsAreCCW<double>(c, a, b)); EXPECT_FALSE(PointsAreCCW<double>(c, b, a)); } // Collinear points should always appear as non-counter-clockwise. TEST(MathTest, CollinearPointsAreCCWTest) { // Create three collinear points along the X-axis and check that every // combination is not CCW. Eigen::Vector2d a, b, c; a << 0.0, 0.0; b << 1.0, 0.0; c << 2.0, 0.0; EXPECT_FALSE(PointsAreCCW<double>(a, b, c)); EXPECT_FALSE(PointsAreCCW<double>(a, c, b)); EXPECT_FALSE(PointsAreCCW<double>(b, a, c)); EXPECT_FALSE(PointsAreCCW<double>(b, c, a)); EXPECT_FALSE(PointsAreCCW<double>(c, a, b)); EXPECT_FALSE(PointsAreCCW<double>(c, b, a)); } } // namespace testing } // namespace math } // namespace aos
cpp
The State Bank of Pakistan (SBP) has set a new deadline of June 30, 2022, for exchange companies to ensure the implementation of the Biometric Verification System (BVS). The SBP, on October 7, had restricted purchasing of dollars from the open market as biometric verification was made compulsory for all buying $500 or above. The new instructions set by SBP required exchange companies to conduct biometric verification for transactions equal to and above $500 for all foreign currencies. The central bank had required the exchange firms to implant these requirements from October 22, 2021, however, due to a time taking process to attach the system with NADRA, the deadline could not be met. To resolve this problem, SBP introduced biometric verification through e-Sahulat after the deadline of October 22. Due to the failure of the system connection with NADRA, the exchange companies are required to continue with biometric verification from November 5. Due to the technical difficulties faced in the implementation of the BVS, NADRA offered an alternative android-based system. Till the development of the android-based BVS, the SBP has allowed the exchange firms to serve their customers using e-Sahulat. Furthermore, the central bank stated that extensions and relaxations in the June 30, 2022 timeline will only be provided to companies that have genuine reasons as well as an explicit time-bound implementation plan.
english
// Copyright 2020 The Operator-SDK Authors // // 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 predicate import ( . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" appsv1 "k8s.io/api/apps/v1" corev1 "k8s.io/api/core/v1" "sigs.k8s.io/controller-runtime/pkg/event" ) var _ = Describe("NoGenerationPredicate", func() { var ( e event.UpdateEvent pred NoGenerationPredicate ) It("returns true", func() { By("both the old and new objects having a generation of 0", func() { e = makeUpdateEventFor(&corev1.Pod{}, &corev1.Pod{}) Expect(pred.Update(e)).To(BeTrue()) }) }) It("returns false", func() { By("the new object having a non-zero generation", func() { old, new := &appsv1.Deployment{}, &appsv1.Deployment{} new.SetGeneration(1) e = makeUpdateEventFor(old, new) Expect(pred.Update(e)).To(BeFalse()) }) // The old generation will never be lower than the new, so we don't have to test that case. By("the old and new objects having equal non-zero generations", func() { old, new := &appsv1.Deployment{}, &appsv1.Deployment{} old.SetGeneration(1) new.SetGeneration(1) e = makeUpdateEventFor(old, new) Expect(pred.Update(e)).To(BeFalse()) }) By("the old and new objects having unequal non-zero generations", func() { old, new := &appsv1.Deployment{}, &appsv1.Deployment{} old.SetGeneration(1) new.SetGeneration(2) e = makeUpdateEventFor(old, new) Expect(pred.Update(e)).To(BeFalse()) }) }) It("logs a message and returns false", func() { By("the old object being nil", func() { old, new := &appsv1.Deployment{}, &appsv1.Deployment{} e = makeUpdateEventFor(old, new) e.ObjectOld = nil Expect(pred.Update(e)).To(BeFalse()) }) By("the old metadata being nil", func() { old, new := &appsv1.Deployment{}, &appsv1.Deployment{} e = makeUpdateEventFor(old, new) e.MetaOld = nil Expect(pred.Update(e)).To(BeFalse()) }) By("the new object being nil", func() { old, new := &appsv1.Deployment{}, &appsv1.Deployment{} e = makeUpdateEventFor(old, new) e.ObjectNew = nil Expect(pred.Update(e)).To(BeFalse()) }) By("the new metadata being nil", func() { old, new := &appsv1.Deployment{}, &appsv1.Deployment{} e = makeUpdateEventFor(old, new) e.MetaNew = nil Expect(pred.Update(e)).To(BeFalse()) }) }) })
go
<gh_stars>0 {"methods":["ProductAction setCheckoutOptions(String value) Sets the label associated with the checkout.","ProductAction setCheckoutStep(int value) Sets the checkout processes's progress.","ProductAction setProductActionList(String value) Sets the list name associated with the products in the analytics hit.","ProductAction setProductListSource(String value) Sets the list source name associated with the products in the analytics hit.","ProductAction setTransactionAffiliation(String value) Sets the transaction's affiliation value.","ProductAction setTransactionCouponCode(String value) Sets the coupon code used in a transaction.","ProductAction setTransactionId(String value) The unique id associated with the transaction.","ProductAction setTransactionRevenue(double value) Sets the transaction's total revenue.","ProductAction setTransactionShipping(double value) Sets the transaction's shipping costs.","ProductAction setTransactionTax(double value) Sets the transaction's total tax.","[Expand] Inherited Methods","From class java.lang.Object Object clone() boolean equals(Object arg0) void finalize() final Class<?> getClass() int hashCode() final void notify() final void notifyAll() String toString() final void wait() final void wait(long arg0, int arg1) final void wait(long arg0)","Object clone()","boolean equals(Object arg0)","void finalize()","final Class<?> getClass()","int hashCode()","final void notify()","final void notifyAll()","String toString()","final void wait()","final void wait(long arg0, int arg1)","final void wait(long arg0)"],"package":"com.google.android.gms.analytics.ecommerce","constants":["String ACTION_ADD Action to use when a product is added to the cart.","String ACTION_CHECKOUT Action to use for hits with checkout data.","String ACTION_CHECKOUT_OPTION Action to be used for supplemental checkout data that needs to be provided after a checkout hit.","String ACTION_CHECKOUT_OPTIONS This constant is deprecated. Use ACTION_CHECKOUT_OPTION instead.","String ACTION_CLICK Action to use when the user clicks on a set of products.","String ACTION_DETAIL Action to use when the user views detailed descriptions of products.","String ACTION_PURCHASE Action that is used to report all the transaction data to GA.","String ACTION_REFUND Action to use while reporting refunded transactions to GA.","String ACTION_REMOVE Action to use when a product is removed from the cart."],"class":"ProductAction","constructors":[],"fields":[]}
json
<reponame>Friskygote/Artificial_Foliage-FABRIC-<gh_stars>1-10 { "variants": { "open=false": { "model": "arfo:block/bop_ominous_woods_fern" }, "open=true": { "model": "arfo:block/bop_ominous_woods_fern_down" } } }
json
// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. import { assert } from "chai"; import { readFileSync, unlinkSync, existsSync, mkdirSync } from "fs"; import { join } from "path"; import { AbortController } from "@azure/abort-controller"; import { isNode, TokenCredential } from "@azure/core-http"; import { delay, record, Recorder } from "@azure-tools/test-recorder"; import { BlobClient, BlobImmutabilityPolicyMode, BlobSASPermissions, BlobServiceClient, BlockBlobClient, ContainerClient, generateBlobSASQueryParameters, newPipeline, StorageSharedKeyCredential, } from "../../src"; import { bodyToString, createRandomLocalFile, getBSU, getConnectionStringFromEnvironment, getEncryptionScope_1, getImmutableContainerName, getStorageAccessTokenWithDefaultCredential, getTokenBSUWithDefaultCredential, recorderEnvSetup, } from "../utils"; import { assertClientUsesTokenCredential } from "../utils/assert"; import { readStreamToLocalFileWithLogs } from "../utils/testutils.node"; import { streamToBuffer3 } from "../../src/utils/utils.node"; import { Context } from "mocha"; import { Test_CPK_INFO } from "../utils/fakeTestSecrets"; describe("BlobClient Node.js only", () => { let containerName: string; let containerClient: ContainerClient; let blobName: string; let blobClient: BlobClient; let blockBlobClient: BlockBlobClient; const content = "Hello World"; const tempFolderPath = "temp"; let recorder: Recorder; let blobServiceClient: BlobServiceClient; beforeEach(async function (this: Context) { recorder = record(this, recorderEnvSetup); blobServiceClient = getBSU(); containerName = recorder.getUniqueName("container"); containerClient = blobServiceClient.getContainerClient(containerName); await containerClient.create(); blobName = recorder.getUniqueName("blob"); blobClient = containerClient.getBlobClient(blobName); blockBlobClient = blobClient.getBlockBlobClient(); await blockBlobClient.upload(content, content.length); }); afterEach(async function () { await containerClient.delete(); await recorder.stop(); }); before(async function () { if (!existsSync(tempFolderPath)) { mkdirSync(tempFolderPath); } }); it("download with with default parameters", async () => { const result = await blobClient.download(); assert.deepStrictEqual(await bodyToString(result, content.length), content); }); it("download all parameters set", async () => { const result = await blobClient.download(0, 1, { rangeGetContentMD5: true, }); assert.deepStrictEqual(await bodyToString(result, 1), content[0]); }); it("setMetadata with new metadata set", async () => { const metadata = { a: "a", b: "b", }; await blobClient.setMetadata(metadata); const result = await blobClient.getProperties(); assert.deepStrictEqual(result.metadata, metadata); }); it("setMetadata with cleaning up metadata", async () => { const metadata = { a: "a", b: "b", }; await blobClient.setMetadata(metadata); const result = await blobClient.getProperties(); assert.deepStrictEqual(result.metadata, metadata); await blobClient.setMetadata(); const result2 = await blobClient.getProperties(); assert.deepStrictEqual(result2.metadata, {}); }); it("setHTTPHeaders with default parameters", async () => { await blobClient.setHTTPHeaders({}); const result = await blobClient.getProperties(); assert.deepStrictEqual(result.blobType, "BlockBlob"); assert.ok(result.lastModified); assert.deepStrictEqual(result.metadata, {}); assert.ok(!result.cacheControl); assert.ok(!result.contentType); assert.ok(!result.contentMD5); assert.ok(!result.contentEncoding); assert.ok(!result.contentLanguage); assert.ok(!result.contentDisposition); }); it("setHTTPHeaders with all parameters set", async () => { const headers = { blobCacheControl: "blobCacheControl", blobContentDisposition: "blobContentDisposition", blobContentEncoding: "blobContentEncoding", blobContentLanguage: "blobContentLanguage", blobContentMD5: isNode ? Buffer.from([1, 2, 3, 4]) : new Uint8Array([1, 2, 3, 4]), blobContentType: "blobContentType", }; await blobClient.setHTTPHeaders(headers); const result = await blobClient.getProperties(); assert.ok(result.date); assert.deepStrictEqual(result.blobType, "BlockBlob"); assert.ok(result.lastModified); assert.deepStrictEqual(result.metadata, {}); assert.deepStrictEqual(result.cacheControl, headers.blobCacheControl); assert.deepStrictEqual(result.contentType, headers.blobContentType); assert.deepStrictEqual(result.contentMD5, headers.blobContentMD5); assert.deepStrictEqual(result.contentEncoding, headers.blobContentEncoding); assert.deepStrictEqual(result.contentLanguage, headers.blobContentLanguage); assert.deepStrictEqual(result.contentDisposition, headers.blobContentDisposition); }); it("delete", async () => { await blobClient.delete(); }); // The following code illustrates deleting a snapshot after creating one it("delete snapshot", async () => { const result = await blobClient.createSnapshot(); assert.ok(result.snapshot); const blobSnapshotClient = blobClient.withSnapshot(result.snapshot!); await blobSnapshotClient.getProperties(); await blobSnapshotClient.delete(); await blobClient.delete(); const result2 = ( await containerClient .listBlobsFlat({ includeSnapshots: true, }) .byPage() .next() ).value; // Verify that the snapshot is deleted assert.equal(result2.segment.blobItems!.length, 0); }); it("createSnapshot", async () => { const result = await blobClient.createSnapshot(); assert.ok(result.snapshot); const blobSnapshotClient = blobClient.withSnapshot(result.snapshot!); await blobSnapshotClient.getProperties(); const result3 = ( await containerClient .listBlobsFlat({ includeSnapshots: true, }) .byPage() .next() ).value; // As a snapshot doesn't have leaseStatus and leaseState properties but origin blob has, // let assign them to undefined both for other properties' easy comparison result3.segment.blobItems![0].properties.leaseState = result3.segment.blobItems![1].properties.leaseState = undefined; result3.segment.blobItems![0].properties.leaseStatus = result3.segment.blobItems![1].properties.leaseStatus = undefined; result3.segment.blobItems![0].properties.accessTier = result3.segment.blobItems![1].properties.accessTier = undefined; result3.segment.blobItems![0].properties.accessTierInferred = result3.segment.blobItems![1].properties.accessTierInferred = undefined; assert.deepStrictEqual( result3.segment.blobItems![0].properties, result3.segment.blobItems![1].properties ); assert.ok(result3.segment.blobItems![0].snapshot || result3.segment.blobItems![1].snapshot); }); it("syncCopyFromURL - destination encryption scope", async function (this: Context) { let encryptionScopeName: string; try { encryptionScopeName = getEncryptionScope_1(); } catch { this.skip(); } const newBlobName = recorder.getUniqueName("copiedblob"); const newBlobClient = containerClient.getBlobClient(newBlobName); // Different from startCopyFromURL, syncCopyFromURL requires sourceURL includes a valid SAS const expiryTime = recorder.newDate("expiry"); expiryTime.setDate(expiryTime.getDate() + 1); const factories = (containerClient as any).pipeline.factories; const credential = factories[factories.length - 1] as StorageSharedKeyCredential; const sas = generateBlobSASQueryParameters( { expiresOn: expiryTime, permissions: BlobSASPermissions.parse("racwd"), containerName, blobName, }, credential ); const copyURL = blobClient.url + "?" + sas; const result = await newBlobClient.syncCopyFromURL(copyURL, { encryptionScope: encryptionScopeName, }); assert.ok(result.copyId); assert.deepStrictEqual(result.encryptionScope, encryptionScopeName); const properties1 = await blobClient.getProperties(); const properties2 = await newBlobClient.getProperties(); assert.deepStrictEqual(properties1.contentMD5, properties2.contentMD5); assert.deepStrictEqual(properties2.copyId, result.copyId); }); it("syncCopyFromURL - source SAS and destination bearer token", async function (this: Context) { const newBlobName = recorder.getUniqueName("copiedblob"); const tokenBlobServiceClient = getTokenBSUWithDefaultCredential(); const tokenNewBlobClient = tokenBlobServiceClient .getContainerClient(containerName) .getAppendBlobClient(newBlobName); const newBlobClient = containerClient.getBlobClient(newBlobName); // Different from startCopyFromURL, syncCopyFromURL requires sourceURL includes a valid SAS const expiryTime = recorder.newDate("expiry"); expiryTime.setDate(expiryTime.getDate() + 1); const factories = (containerClient as any).pipeline.factories; const credential = factories[factories.length - 1] as StorageSharedKeyCredential; const sas = generateBlobSASQueryParameters( { expiresOn: expiryTime, permissions: BlobSASPermissions.parse("racwd"), containerName, blobName, }, credential ); const copyURL = blobClient.url + "?" + sas; const result = await tokenNewBlobClient.syncCopyFromURL(copyURL); assert.ok(result.copyId); const properties1 = await blobClient.getProperties(); const properties2 = await newBlobClient.getProperties(); assert.deepStrictEqual(properties1.contentMD5, properties2.contentMD5); assert.deepStrictEqual(properties2.copyId, result.copyId); }); it("syncCopyFromURL - destination bearer token", async function (this: Context) { const newBlobName = recorder.getUniqueName("copiedblob"); const tokenBlobServiceClient = getTokenBSUWithDefaultCredential(); const tokenNewBlobClient = tokenBlobServiceClient .getContainerClient(containerName) .getAppendBlobClient(newBlobName); const newBlobClient = containerClient.getBlobClient(newBlobName); const result = await tokenNewBlobClient.syncCopyFromURL(blobClient.url); assert.ok(result.copyId); const properties1 = await blobClient.getProperties(); const properties2 = await newBlobClient.getProperties(); assert.deepStrictEqual(properties1.contentMD5, properties2.contentMD5); assert.deepStrictEqual(properties2.copyId, result.copyId); }); it("syncCopyFromURL - source bearer token and destination account key", async function (this: Context) { const newBlobName = recorder.getUniqueName("copiedblob"); const newBlobClient = containerClient.getBlobClient(newBlobName); const accessToken = await getStorageAccessTokenWithDefaultCredential(); const result = await newBlobClient.syncCopyFromURL(blobClient.url, { sourceAuthorization: { scheme: "Bearer", value: accessToken!.token, }, }); assert.ok(result.copyId); const properties1 = await blobClient.getProperties(); const properties2 = await newBlobClient.getProperties(); assert.deepStrictEqual(properties1.contentMD5, properties2.contentMD5); assert.deepStrictEqual(properties2.copyId, result.copyId); }); it("syncCopyFromURL", async () => { const newBlobClient = containerClient.getBlobClient(recorder.getUniqueName("copiedblob")); // Different from startCopyFromURL, syncCopyFromURL requires sourceURL includes a valid SAS const expiryTime = recorder.newDate("expiry"); expiryTime.setDate(expiryTime.getDate() + 1); const factories = (containerClient as any).pipeline.factories; const credential = factories[factories.length - 1] as StorageSharedKeyCredential; const sas = generateBlobSASQueryParameters( { expiresOn: expiryTime, permissions: BlobSASPermissions.parse("racwd"), containerName, blobName, }, credential ); const copyURL = blobClient.url + "?" + sas; const result = await newBlobClient.syncCopyFromURL(copyURL); assert.ok(result.versionId); const properties1 = await blobClient.getProperties(); const properties2 = await newBlobClient.getProperties(); assert.deepStrictEqual(properties1.contentMD5, properties2.contentMD5); assert.deepStrictEqual(properties2.copyId, result.copyId); }); it("syncCopyFromURL - with COPY tags", async () => { const newBlobClient = containerClient.getBlobClient(recorder.getUniqueName("copiedblob")); await blobClient.setTags({ tag1: "val1", }); // Different from startCopyFromURL, syncCopyFromURL requires sourceURL includes a valid SAS const expiryTime = recorder.newDate("expiry"); expiryTime.setDate(expiryTime.getDate() + 1); const factories = (containerClient as any).pipeline.factories; const credential = factories[factories.length - 1] as StorageSharedKeyCredential; const sas = generateBlobSASQueryParameters( { expiresOn: expiryTime, permissions: BlobSASPermissions.parse("racwdt"), containerName, blobName, }, credential ); const copyURL = blobClient.url + "?" + sas; const result = await newBlobClient.syncCopyFromURL(copyURL, { copySourceTags: "COPY", }); const properties1 = await blobClient.getProperties(); const properties2 = await newBlobClient.getProperties(); assert.deepStrictEqual(properties1.contentMD5, properties2.contentMD5); assert.deepStrictEqual(properties2.copyId, result.copyId); const sourceBlobTags = await blobClient.getTags(); const destBlobTags = await newBlobClient.getTags(); assert.deepStrictEqual(sourceBlobTags.tags, destBlobTags.tags); }); it("syncCopyFromURL - with REPLACE tags", async () => { const newBlobClient = containerClient.getBlobClient(recorder.getUniqueName("copiedblob")); await blobClient.setTags({ tag1: "val1", }); // Different from startCopyFromURL, syncCopyFromURL requires sourceURL includes a valid SAS const expiryTime = recorder.newDate("expiry"); expiryTime.setDate(expiryTime.getDate() + 1); const factories = (containerClient as any).pipeline.factories; const credential = factories[factories.length - 1] as StorageSharedKeyCredential; const sas = generateBlobSASQueryParameters( { expiresOn: expiryTime, permissions: BlobSASPermissions.parse("racwd"), containerName, blobName, }, credential ); const copyURL = blobClient.url + "?" + sas; const tags = { tag2: "val2", }; const result = await newBlobClient.syncCopyFromURL(copyURL, { tags: tags, copySourceTags: "REPLACE", }); const properties1 = await blobClient.getProperties(); const properties2 = await newBlobClient.getProperties(); assert.deepStrictEqual(properties1.contentMD5, properties2.contentMD5); assert.deepStrictEqual(properties2.copyId, result.copyId); const destBlobTags = await newBlobClient.getTags(); assert.deepStrictEqual(tags, destBlobTags.tags); }); it("abortCopyFromClient should failed for a completed copy operation", async () => { const newBlobClient = containerClient.getBlobClient(recorder.getUniqueName("copiedblob")); const result = await (await newBlobClient.beginCopyFromURL(blobClient.url)).pollUntilDone(); assert.ok(result.copyId); delay(1 * 1000); try { await newBlobClient.beginCopyFromURL(result.copyId!); assert.fail( "AbortCopyFromClient should be failed and throw exception for an completed copy operation." ); } catch (err: any) { assert.ok(err.code === "InvalidHeaderValue"); } }); it("setAccessTier set default to cool", async () => { await blockBlobClient.setAccessTier("Cool"); const properties = await blockBlobClient.getProperties(); assert.equal(properties.accessTier!.toLowerCase(), "cool"); }); it("setAccessTier set archive to hot", async () => { await blockBlobClient.setAccessTier("Archive"); let properties = await blockBlobClient.getProperties(); assert.equal(properties.accessTier!.toLowerCase(), "archive"); await blockBlobClient.setAccessTier("Hot"); properties = await blockBlobClient.getProperties(); if (properties.archiveStatus) { assert.equal(properties.archiveStatus.toLowerCase(), "rehydrate-pending-to-hot"); } }); it("can be created with a url and a credential", async () => { const factories = (blobClient as any).pipeline.factories; const credential = factories[factories.length - 1] as StorageSharedKeyCredential; const newClient = new BlobClient(blobClient.url, credential); const metadata = { a: "a", b: "b", }; await newClient.setMetadata(metadata); const result = await newClient.getProperties(); assert.deepStrictEqual(result.metadata, metadata); }); it("can be created with a url and a credential and an option bag", async () => { const factories = (blobClient as any).pipeline.factories; const credential = factories[factories.length - 1] as StorageSharedKeyCredential; const newClient = new BlobClient(blobClient.url, credential, { retryOptions: { maxTries: 5, }, }); const metadata = { a: "a", b: "b", }; await newClient.setMetadata(metadata); const result = await newClient.getProperties(); assert.deepStrictEqual(result.metadata, metadata); }); it("can be created with a url and a TokenCredential", async () => { const tokenCredential: TokenCredential = { getToken: () => Promise.resolve({ token: "token", expiresOnTimestamp: 12345, }), }; const newClient = new BlobClient(blobClient.url, tokenCredential); assertClientUsesTokenCredential(newClient); }); it("can be created with a url and a pipeline", async () => { const factories = (blobClient as any).pipeline.factories; const credential = factories[factories.length - 1] as StorageSharedKeyCredential; const pipeline = newPipeline(credential); const newClient = new BlobClient(blobClient.url, pipeline); const metadata = { a: "a", b: "b", }; await newClient.setMetadata(metadata); const result = await newClient.getProperties(); assert.deepStrictEqual(result.metadata, metadata); }); it("can be created with a connection string", async () => { const newClient = new BlobClient(getConnectionStringFromEnvironment(), containerName, blobName); const metadata = { a: "a", b: "b", }; await newClient.setMetadata(metadata); const result = await newClient.getProperties(); assert.deepStrictEqual(result.metadata, metadata); }); it("can be created with a connection string and an option bag", async () => { const newClient = new BlobClient( getConnectionStringFromEnvironment(), containerName, blobName, { retryOptions: { maxTries: 5, }, } ); const metadata = { a: "a", b: "b", }; await newClient.setMetadata(metadata); const result = await newClient.getProperties(); assert.deepStrictEqual(result.metadata, metadata); }); it("query should work", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length); const response = await blockBlobClient.query("select * from BlobStorage"); assert.deepStrictEqual(await bodyToString(response), csvContent); }); it("query should work with conditional tags", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length, { tags: { tag: "val" } }); let exceptionCaught = false; try { await blockBlobClient.query("select * from BlobStorage", { conditions: { tagConditions: "tag = 'val1'" }, }); } catch (e: any) { assert.equal(e.details?.errorCode, "ConditionNotMet"); exceptionCaught = true; } assert.ok(exceptionCaught); const response = await blockBlobClient.query("select * from BlobStorage", { conditions: { tagConditions: "tag = 'val'" }, }); assert.deepStrictEqual(await bodyToString(response), csvContent); }); it("query should work with access conditions", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; const uploadResponse = await blockBlobClient.upload(csvContent, csvContent.length); const response = await blockBlobClient.query("select * from BlobStorage", { conditions: { ifModifiedSince: new Date("2010/01/01"), ifUnmodifiedSince: new Date("2100/01/01"), ifMatch: uploadResponse.etag, ifNoneMatch: "invalidetag", }, }); assert.deepStrictEqual(await bodyToString(response), csvContent); }); it("query should not work with access conditions ifModifiedSince", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length); try { await blockBlobClient.query("select * from BlobStorage", { conditions: { ifModifiedSince: new Date("2100/01/01"), }, }); } catch (err: any) { assert.deepStrictEqual(err.statusCode, 304); return; } assert.fail(); }); it("query should not work with access conditions leaseId", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length); try { await blockBlobClient.query("select * from BlobStorage", { conditions: { leaseId: "invalid", }, }); } catch (err: any) { assert.deepStrictEqual(err.statusCode, 400); return; } assert.fail(); }); it("query should work with snapshot", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length); const snapshotResponse = await blockBlobClient.createSnapshot(); const blockBlobSnapshotClient = blockBlobClient.withSnapshot(snapshotResponse.snapshot!); const response = await blockBlobSnapshotClient.query("select * from BlobStorage"); assert.deepStrictEqual(await bodyToString(response), csvContent); }); it("query should work with where conditionals", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length); const response = await blockBlobClient.query("select _2 from BlobStorage where _1 > 100"); assert.deepStrictEqual(await bodyToString(response), "250\n"); }); it("query should work with empty results", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length); const response = await blockBlobClient.query("select _2 from BlobStorage where _1 > 200"); assert.deepStrictEqual(await bodyToString(response), ""); }); it("query should work with blob properties", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length); const response = await blockBlobClient.query("select * from BlobStorage"); assert.deepStrictEqual(response.contentType, "avro/binary"); assert.deepStrictEqual(typeof response.etag, "string"); assert.deepStrictEqual(response.blobType, "BlockBlob"); assert.deepStrictEqual(response.leaseState, "available"); assert.deepStrictEqual(response.leaseStatus, "unlocked"); assert.deepStrictEqual(response.acceptRanges, "bytes"); assert.deepStrictEqual(typeof response.clientRequestId, "string"); assert.deepStrictEqual(typeof response.requestId, "string"); assert.deepStrictEqual(typeof response.version, "string"); assert.deepStrictEqual(typeof response.date, "object"); }); it("query should work with large file", async function () { recorder.skip("node", "Temp file - recorder doesn't support saving the file"); const csvContentUnit = "100,200,300,400\n150,250,350,450\n"; const tempFileLarge = await createRandomLocalFile( tempFolderPath, 1024 * 1024, Buffer.from(csvContentUnit) ); await blockBlobClient.uploadFile(tempFileLarge); const response = await blockBlobClient.query("select * from BlobStorage"); const downloadedFile = join(tempFolderPath, recorder.getUniqueName("downloadfile.")); await readStreamToLocalFileWithLogs(response.readableStreamBody!, downloadedFile); const downloadedData = await readFileSync(downloadedFile); const uploadedData = await readFileSync(tempFileLarge); unlinkSync(downloadedFile); unlinkSync(tempFileLarge); assert.ok(downloadedData.equals(uploadedData)); }); it("query should work with aborter", async function () { recorder.skip("node", "Temp file - recorder doesn't support saving the file"); const csvContentUnit = "100,200,300,400\n150,250,350,450\n"; const tempFileLarge = await createRandomLocalFile( tempFolderPath, 1024 * 256 * 2, Buffer.from(csvContentUnit) ); await blockBlobClient.uploadFile(tempFileLarge); const aborter = new AbortController(); const response = await blockBlobClient.query("select * from BlobStorage", { abortSignal: aborter.signal, onProgress: () => { // Abort parse when first progress event trigger (by default 4MB) aborter.abort(); }, }); const downloadedFile = join(tempFolderPath, recorder.getUniqueName("downloadfile.")); try { await readStreamToLocalFileWithLogs(response.readableStreamBody!, downloadedFile); } catch (error: any) { assert.deepStrictEqual(error.name, "AbortError"); unlinkSync(downloadedFile); unlinkSync(tempFileLarge); return; } unlinkSync(downloadedFile); unlinkSync(tempFileLarge); assert.fail(); }); it("query should work with progress event", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length); await new Promise<void>((resolve, reject) => { blockBlobClient .query("select * from BlobStorage", { onProgress: (progress) => { assert.deepStrictEqual(progress.loadedBytes, csvContent.length); resolve(); }, }) .then((response) => { return bodyToString(response); }) .then((_data) => { return; }) .catch(reject); }); }); it("query should work with fatal error event", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length); const response = await blockBlobClient.query("select * from BlobStorage", { inputTextConfiguration: { kind: "json", recordSeparator: "\n", }, onError: (err) => { assert.deepStrictEqual(err.isFatal, true); assert.deepStrictEqual(err.name, "ParseError"); assert.deepStrictEqual(err.position, 0); assert.ok( err.description.startsWith( "Unexpected token ',' at [byte: 3]. Expecting tokens '{', or '['." ) ); return; }, }); assert.deepStrictEqual(await bodyToString(response), "\n"); }); it("query should work with non fatal error event", async function () { const csvContent = "100,hello,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length); const response = await blockBlobClient.query("select _2 from BlobStorage where _2 > 100", { onError: (err) => { assert.deepStrictEqual(err.isFatal, false); assert.deepStrictEqual(err.name, "InvalidTypeConversion"); assert.deepStrictEqual(err.position, 0); assert.deepStrictEqual(err.description, "Invalid type conversion."); return; }, }); assert.deepStrictEqual(await bodyToString(response), "250\n"); }); it("query should work with CSV input and output configurations", async function () { const csvContent = "100.200.300.400!150.250.350.450!180.280.380.480!"; await blockBlobClient.upload(csvContent, csvContent.length); const response = await blockBlobClient.query("select _1 from BlobStorage", { inputTextConfiguration: { kind: "csv", recordSeparator: "!", columnSeparator: ".", // escapeCharacter: "\\", // What does this do? // fieldQuote: '"', // What does this do? hasHeaders: true, }, outputTextConfiguration: { kind: "csv", recordSeparator: "!", columnSeparator: ".", // escapeCharacter: "\\", // fieldQuote: '"', hasHeaders: false, }, }); assert.deepStrictEqual(await bodyToString(response), "150!180!"); }); it("query should work with JSON input and output configurations", async function () { const recordSeparator = "\n"; const jsonContent = [ JSON.stringify({ _1: "100", _2: "200", _3: "300", _4: "400" }), JSON.stringify({ _1: "150", _2: "250", _3: "350", _4: "450" }), JSON.stringify({ _1: "180", _2: "280", _3: "380", _4: "480" }), ].join(recordSeparator) + recordSeparator; await blockBlobClient.upload(jsonContent, jsonContent.length); const response = await blockBlobClient.query("select * from BlobStorage", { inputTextConfiguration: { kind: "json", recordSeparator, }, outputTextConfiguration: { kind: "json", recordSeparator, }, }); assert.deepStrictEqual(await bodyToString(response), jsonContent); }); it("query should work with arrow output configurations", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length); const response = await blockBlobClient.query("select * from BlobStorage", { outputTextConfiguration: { kind: "arrow", schema: [ { type: "decimal", name: "name", precision: 4, scale: 2, }, ], }, }); assert.equal( (await streamToBuffer3(response.readableStreamBody!)).toString("hex"), "ffffffff800000001000000000000a000c000600050008000a000000000104000c000000080008000000040008000000040000000100000014000000100014000800060007000c0000001000100000000000010710000000200000000400000000000000040000006e616d650000000008000c000400080008000000040000000200000000000000ffffffff700000001000000000000a000e000600050008000a000000000304001000000000000a000c000000040008000a0000003000000004000000020000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000" ); }); it("query should work with arrow output configurations for timestamp[ms]", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length); await blockBlobClient.query("select * from BlobStorage", { outputTextConfiguration: { kind: "arrow", schema: [ { type: "timestamp[ms]", }, ], }, }); }); it("query should work with Parquet input configuration", async function (this: Context) { // Enable the case when STG78 - version 2020-10-02 features is enabled in production. this.skip(); const parquetFilePath = join("test", "resources", "parquet.parquet"); await blockBlobClient.uploadFile(parquetFilePath); const response = await blockBlobClient.query("select * from blobstorage where id < 1;", { inputTextConfiguration: { kind: "parquet", }, }); assert.deepStrictEqual(await bodyToString(response), "0,mdifjt55.ea3,mdifjt55.ea3\n"); }); it("query with CPK", async function () { const csvContent = "100,200,300,400\n150,250,350,450\n"; await blockBlobClient.upload(csvContent, csvContent.length, { customerProvidedKey: Test_CPK_INFO, }); const response = await blockBlobClient.query("select * from BlobStorage", { customerProvidedKey: Test_CPK_INFO, }); assert.deepStrictEqual(await bodyToString(response), csvContent); }); }); describe("BlobClient Node.js Only - ImmutabilityPolicy", () => { let blobServiceClient: BlobServiceClient; let containerName: string; let containerClient: ContainerClient; let blobName: string; let blobClient: BlobClient; const content = "Hello World"; let recorder: Recorder; beforeEach(async function (this: Context) { recorder = record(this, recorderEnvSetup); blobServiceClient = getBSU(); try { containerName = getImmutableContainerName(); } catch { this.skip(); } containerClient = blobServiceClient.getContainerClient(containerName); blobName = recorder.getUniqueName("blob"); blobClient = containerClient.getBlobClient(blobName); }); afterEach(async function (this: Context) { if (!this.currentTest?.isPending()) { const listResult = ( await containerClient .listBlobsFlat({ includeImmutabilityPolicy: true, }) .byPage() .next() ).value; for (let i = 0; i < listResult.segment.blobItems!.length; ++i) { const deleteBlobClient = containerClient.getBlobClient( listResult.segment.blobItems[i].name ); await deleteBlobClient.setLegalHold(false); await deleteBlobClient.deleteImmutabilityPolicy(); await deleteBlobClient.delete(); } await recorder.stop(); } }); it("Blob syncCopyFromURL with immutability policy", async () => { const sourceName = recorder.getUniqueName("blobsource"); const sourceBlobClient = containerClient.getBlockBlobClient(sourceName); await sourceBlobClient.upload(content, content.length); const aDayLater = recorder.newDate("aDayLater"); aDayLater.setDate(aDayLater.getDate() + 1); const sourceUrl = await sourceBlobClient.generateSasUrl({ permissions: BlobSASPermissions.parse("r"), expiresOn: aDayLater, }); const minutesLater = recorder.newDate("minutesLater"); minutesLater.setMinutes(minutesLater.getMinutes() + 5); await blobClient.syncCopyFromURL(sourceUrl, { immutabilityPolicy: { expiriesOn: minutesLater, policyMode: "Unlocked", }, }); const properties = await blobClient.getProperties(); assert.ok(properties.immutabilityPolicyExpiresOn); assert.equal( properties.immutabilityPolicyMode, "unlocked" as BlobImmutabilityPolicyMode | undefined ); }); it("Blob syncCopyFromURL with legalhold", async () => { const sourceName = recorder.getUniqueName("blobsource"); const sourceBlobClient = containerClient.getBlockBlobClient(sourceName); await sourceBlobClient.upload(content, content.length); const aDayLater = recorder.newDate("aDayLater"); aDayLater.setDate(aDayLater.getDate() + 1); const sourceUrl = await sourceBlobClient.generateSasUrl({ permissions: BlobSASPermissions.parse("r"), expiresOn: aDayLater, }); await blobClient.syncCopyFromURL(sourceUrl, { legalHold: true, }); const properties = await blobClient.getProperties(); assert.ok(properties.legalHold); }); });
typescript
<filename>docs-archive-a/2014/integration-services/transfer-error-messages-task-editor-general-page.md --- title: Éditeur de tâche de transfert de messages d’erreur (page général) | Microsoft Docs ms.custom: '' ms.date: 06/13/2017 ms.prod: sql-server-2014 ms.reviewer: '' ms.technology: integration-services ms.topic: conceptual f1_keywords: - sql12.dts.designer.transfererrormessagestask.general.f1 helpviewer_keywords: - Transfer Error Messages Task Editor ms.assetid: 67b21f48-4795-4128-81dc-743f7a95ef74 author: chugugrace ms.author: chugu ms.openlocfilehash: c656b2399586025a316bb32c97496efad0648e93 ms.sourcegitcommit: ad4d92dce894592a259721a1571b1d8736abacdb ms.translationtype: MT ms.contentlocale: fr-FR ms.lasthandoff: 08/04/2020 ms.locfileid: "87694639" --- # <a name="transfer-error-messages-task-editor-general-page"></a>Éditeur de tâche de transfert de messages d'erreur (page Général) Utilisez la page **Général** de la boîte de dialogue **Éditeur de tâche de transfert de messages d'erreur** pour donner un nom et une description à la tâche de transfert de messages d'erreur. La tâche de transfert de messages d’erreur transfère un ou plusieurs messages d’erreur [!INCLUDE[ssNoVersion](../includes/ssnoversion-md.md)] définis par l’utilisateur entre des instances de [!INCLUDE[ssNoVersion](../includes/ssnoversion-md.md)]. Pour plus d'informations sur cette tâche, consultez [Transfer Error Messages Task](control-flow/transfer-error-messages-task.md). ## <a name="options"></a>Options **Nom** Donnez un nom unique à la tâche de transfert de messages d'erreur. Ce nom sert d'étiquette à l'icône de la tâche. > [!NOTE] > Les noms de tâche doivent être uniques dans un package. **Description** Entrez une description de la tâche de transfert de messages d'erreur. ## <a name="see-also"></a>Voir aussi [Guide de référence des erreurs et des messages propres à Integration Services](../../2014/integration-services/integration-services-error-and-message-reference.md) [Tâches Integration Services](control-flow/integration-services-tasks.md) [Éditeur de tâche de transfert de messages d’erreur &#40;page messages&#41;](../../2014/integration-services/transfer-error-messages-task-editor-messages-page.md) [Page Expressions](expressions/expressions-page.md)
markdown
// import Sentry from "@sentry/node"; import { createApp } from "./app"; import DiscordEventHandler from "./DiscordEventHandler"; const port = process.env.PORT ? Number(process.env.PORT) : 3001; const handler = new DiscordEventHandler(); // GO! const app = createApp((action, ctx) => handler.handle(action, ctx)); app.listen(port, () => console.log(`Example app listening on port ${port}!`)); // Initialize Sentry after we start listening. Any crash at start time will appear in the console and we'll notice. /* Sentry.init({ dsn: "https://0e6bc841b4f744b2953a1fe5981effe6@o68382.ingest.sentry.io/5508241", // We recommend adjusting this value in production, or using tracesSampler // for finer control tracesSampleRate: 1.0, }); */
typescript
Yusuf Pathan and Mitchell Johnson engaged in a verbal duel during Qualifier 1 of Legends League Cricket (LLC) between Bhilwara Kings and India Capitals in Jodhpur on Sunday. Although both players have retired from all forms of the game, their competitive spirit is still intact and things did get a bit heated out in the middle. Yusuf smashed Johnson for 16 runs in the first three balls of the penultimate over of the innings. However, the hard-hitting batter couldn't carry on the onslaught as he was holed out at deep mid-wicket on the last ball of the same over. Johnson celebrated aggressively and chirped a few words to Pathan while he was on his way. Yusuf Pathan certainly didn't take it well as he charged towards Johnson and had something to say to him. Johnson was not impressed with how close the batter got and instinctively pushed him away. The batter continued to have a go at the Australian, and the on-field umpires as well as the fielders had to intervene to stop the fight from getting worse. Here's a video of the altercation: After losing Morne van Wyk early, the Kings did get a great platform as William Porterfield (59) and Shane Watson (65) added 116 runs for the second wicket. Yusuf Pathan (48) and Rajesh Bishnoi (36*) provided the flourish as the Kings posted a mammoth total of 226/5 in their 20 overs. In response, India Capitals didn't get off to a desirable start as they lost their top three inside the powerplay, However, Ross Taylor smashed 84 off just 39 balls and kept them in the hunt. Then, Ashley Nurse's knock of 60* off 28 balls and a support from Liam Plunkett (20* off 9), took the Capitals over the line. While the Capitals have progressed to the final, they await the winner of the encounter between the Kings and the Gujarat Giants.
english
India and Pakistan meet here in their Pool A clash on Saturday. As usual, the talk centres on the pace bowlers but, for the first time since anyone cares to remember, the talk is about India’s pace attack, not the men in green. India’s fast bowling has come of age. Ashish Nehra’s chartbusting 6/23 against England didn’t merely earn him a place in the World Cup record books, it marked an epochal shift in India’s cricketing strength. No longer will the team have to depend on batsmen to win matches; no longer, indeed, on the spin bowlers. It’s the fast bowlers — fast, not merely medium-fast — who have the calibre to swing games India’s way. Dismissed as medium-pacers for years, Nehra and Zaheer Khan have been consistently clocking 140-145 kmph, the accepted range for genuine pace. And the fallout, say experts, will be not just in the number of wickets that they take but in changing their opponents’ perceptions of the Indian team. They now have the Fear Factor, says Garth LeRoux, probably the fastest bowler during South Africa’s apartheid era and a star of the Kerry Packer series. ‘‘India are now a different team. Their opponents will fear the pacemen who can be regarded as genuine quicks now,’’ he said. The development has come as good news to Fanie de Villiers, once strongly tipped to be India’s bowling coach. ‘‘Nehra was quite impressive the other day. His action is fine and he can swing the ball both ways at a lively pace. In fact, with someone like him coming in first change, I pity the rival batsmen,’’ he said. What made Nehra so deadly at Kingsmead? ‘‘He had the swing, that’s okay, there are many bowler who can swing the ball. But Nehra pitched the ball in the right area and that got him the wickets,’’ said de Villiers, no mean swing bowler in his day. One fact bears that out: Shoaib Akhtar bowled the fastest delivery ever against England but fared miserably. Nehra, with controlled pace and swing, wrecked the same batsmen. The greater benefit, says Woolmer, will be felt in Test matches. ‘‘One-day cricket is okay but when it comes to Test matches, it will always be fast bowlers that will get you wickets. A team gets certain respect when it has good bowlers and batsmen. The batsmen were always there in India what they always lacked was bowlers. Hope they last long,’’ he said. It’s a state of mind that irks Navjot Singh Sidhu. ‘‘If people like James Anderson can called fast bowlers for a speed in the range of 140kph, why hasn’t Nehra yet got that tag? ’’, he asks. The man from Delhi Sadar won’t be too worried by the semantics. He’s happy with the swing of things.
english
{ "redirections": [ { "source_path": "enterprise/using-microsoft-azure-active-directory-for-sharepoint-2013-authentication.md", "redirect_url": "https://docs.microsoft.com/en-us/office365/enterprise/microsoft-azure-architectures-for-sharepoint-2013", "redirect_document_id": true }, { "source_path": "enterprise/obsolete-article.md", "redirect_url": "https://docs.microsoft.com/en-us/office365/enterprise/cloud-adoption-and-hybrid-solutions", "redirect_document_id": false }, { "source_path": "enterprise/obsolete-bi-article.md", "redirect_url": "https://technet.microsoft.com/en-us/library/mt792038(v=office.16).aspx", "redirect_document_id": false } ] }
json
<filename>temp/components/Spin/Spin.js var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; var __rest = (this && this.__rest) || function (s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; }; import * as React from 'react'; import * as PropTypes from 'prop-types'; import classNames from 'classnames'; import Animate from 'rc-animate'; import omit from 'omit.js'; import { polyfill } from 'react-lifecycles-compat'; // Render indicator var defaultIndicator = null; function renderIndicator(props) { var prefixCls = props.prefixCls, indicator = props.indicator; var dotClassName = prefixCls + "-dot"; if (React.isValidElement(indicator)) { return React.cloneElement(indicator, { className: classNames(indicator.props.className, dotClassName) }); } if (React.isValidElement(defaultIndicator)) { return React.cloneElement(defaultIndicator, { className: classNames(defaultIndicator.props.className, dotClassName) }); } return (React.createElement("span", { className: classNames(dotClassName, prefixCls + "-dot-spin") }, React.createElement("i", null), React.createElement("i", null), React.createElement("i", null), React.createElement("i", null))); } var Spin = /** @class */ (function (_super) { __extends(Spin, _super); function Spin(props) { var _this = _super.call(this, props) || this; var spinning = props.spinning; _this.state = { spinning: spinning }; return _this; } Spin.setDefaultIndicator = function (indicator) { defaultIndicator = indicator; }; Spin.getDerivedStateFromProps = function (nextProps, prevState) { var spinning = nextProps.spinning, delay = nextProps.delay; if (prevState.spinning !== spinning) { if (spinning == false || isNaN(Number(delay)) || delay === 0) { // spinning -> false // spinning -> true && delay -> falsy return __assign(__assign({}, prevState), { spinning: spinning }); } } return null; }; Spin.prototype.isNestedPattern = function () { return !!(this.props && this.props.children); }; Spin.prototype.componentDidMount = function () { var _this = this; var _a = this.props, spinning = _a.spinning, delay = _a.delay; if (spinning && delay && !isNaN(Number(delay))) { this.setState({ spinning: false }); this.delayTimeout = window.setTimeout(function () { return _this.setState({ spinning: spinning }); }, delay); } }; Spin.prototype.componentWillUnmount = function () { if (this.debounceTimeout) { clearTimeout(this.debounceTimeout); } if (this.delayTimeout) { clearTimeout(this.delayTimeout); } }; Spin.prototype.componentDidUpdate = function (prevProps) { var _this = this; var spinning = this.props.spinning; var prevSpinning = prevProps.spinning; var delay = this.props.delay; if (this.debounceTimeout) { clearTimeout(this.debounceTimeout); } if (prevSpinning && !spinning) { this.debounceTimeout = window.setTimeout(function () { return _this.setState({ spinning: spinning }); }, 200); if (this.delayTimeout) { clearTimeout(this.delayTimeout); } } else { if (spinning && delay && !isNaN(Number(delay))) { if (this.delayTimeout) { clearTimeout(this.delayTimeout); } this.delayTimeout = window.setTimeout(function () { return _this.setState({ spinning: spinning }); }, delay); } else if (spinning !== this.state.spinning) { this.setState({ spinning: spinning }); } } }; Spin.prototype.render = function () { var _a, _b; var _c = this.props, className = _c.className, size = _c.size, prefixCls = _c.prefixCls, tip = _c.tip, wrapperClassName = _c.wrapperClassName, restProps = __rest(_c, ["className", "size", "prefixCls", "tip", "wrapperClassName"]); var spinning = this.state.spinning; var spinClassName = classNames(prefixCls, (_a = {}, _a[prefixCls + "-sm"] = size === 'small', _a[prefixCls + "-lg"] = size === 'large', _a[prefixCls + "-spinning"] = spinning, _a[prefixCls + "-show-text"] = !!tip, _a), className); // fix https://fb.me/react-unknown-prop var divProps = omit(restProps, ['spinning', 'delay', 'indicator']); var spinElement = (React.createElement("div", __assign({}, divProps, { className: spinClassName }), renderIndicator(this.props), tip ? React.createElement("span", { className: prefixCls + "-text" }, tip) : null)); if (this.isNestedPattern()) { var animateClassName = prefixCls + '-nested-loading'; if (wrapperClassName) { animateClassName += ' ' + wrapperClassName; } var nestedClassName = classNames((_b = {}, _b[prefixCls + "-nested"] = true, _b[prefixCls + "-blur"] = spinning, _b)); return (React.createElement(Animate, __assign({}, divProps, { component: "div", className: animateClassName, style: null, transitionName: "fade" }), spinning && React.createElement("div", { key: "loading" }, spinElement), React.createElement("div", { className: nestedClassName, key: "nested" }, this.props.children))); } return spinElement; }; Spin.defaultProps = { prefixCls: 'fishd-spin', spinning: true, size: 'default', wrapperClassName: '' }; Spin.propTypes = { prefixCls: PropTypes.string, className: PropTypes.string, spinning: PropTypes.bool, size: PropTypes.oneOf(['small', 'default', 'large']), wrapperClassName: PropTypes.string, indicator: PropTypes.node }; return Spin; }(React.Component)); polyfill(Spin); export default Spin;
javascript
import { TypeOrmModuleOptions } from '@nestjs/typeorm'; export const typeOrmConfig: TypeOrmModuleOptions = { type: 'postgres', url: process.env.DATABASE_URL, host: 'localhost', port: 5432, username: 'postgres', password: '<PASSWORD>', database: 'bakers', entities: [__dirname + '/../**/*.entity.{js,ts}'], synchronize: false, migrations: [__dirname + '/../**/migrations/*{.ts,.js}'], migrationsRun: true, };
typescript
New Delhi: The Central Trade Unions are on an indefinite strike from Friday to protest against the government's "indifference" to their demands for better wages and facilities and the "anti-worker" changes in labour laws. All major unions, excluding RSS-associated BMS (Bhartiya Mazdoor Sangh), have joined the strike call, terming the government's assurances to look into their demands and the recent announcements for two-year bonus and hike in minimum wage as "completely inadequate". On its part, the government has asked all ministries to ensure that public utilities and essential services are not affected. Secretaries of all departments have been asked to take effective measures for smooth running of various services coming under their respective ministries. Trade union leaders, however, claimed that the strike would be even bigger than the one last year on September 2 and expected the number of striking workers to swell to as much as 18 crore. In 2015, the unions had said that around 14 crore workers participated in the nationwide strike at that time. West Bengal Chief Minister Mamata Banerjee has warned all the government employees against joining the strike. Banerjee said her government is also planning to introduce a new law under which those who ransack and damage property during bandhs will be made to pay compensation. said. The CTUs are protesting against what they call the government's apathy towards their 12-point charter of demands including a monthly minimum wage of Rs 18,000, controlling price rise and assured minimum monthly pension of Rs 3,000. (With inputs from PTI)
english
{"hola_player.dash.dev.js":"sha256-aWrQOhSWF7RGnyDWB2udN5zkWfX5FGUJddEkgg1ksKo=","hola_player.dash.js":"sha256-wm20ovusjmwh06Vd55LRorrHQTeZ3v9/bCm2DhmdmKI=","hola_player.dev.js":"sha256-xRAL1xnDtM+c9MFckXdbE2eV4Z9rHU3MrNqRN9DC73A=","hola_player.js":"sha256-FPEPhqfXJ3J5NlVlNbFD5fj9DncNxefPJEaL0pEL9uQ="}
json
<filename>src/main/java/com/richard/wechat/util/MyUtil.java<gh_stars>0 package com.richard.wechat.util; import java.io.ByteArrayOutputStream; import java.io.UnsupportedEncodingException; import java.lang.reflect.Method; import java.util.regex.Matcher; import java.util.regex.Pattern; import javax.xml.bind.JAXBContext; import javax.xml.bind.Marshaller; /** * @author YaoXiansheng * @date 2018年1月21日 * @title MyUtil * @todo TODO */ public class MyUtil { /** * 获得当前子类及其父类中的方法声明 * * @param subClass * @param methodName * @return * @throws NoSuchMethodException */ public static Method getUnitClass(Class<?> subClass, String methodName) throws NoSuchMethodException { for (Class<?> superClass = subClass; superClass != Object.class; superClass = superClass.getSuperclass()) { try { return superClass.getDeclaredMethod(methodName, String.class); } catch (NoSuchMethodException e) { // Method不在当前类定义,继续向上转型 } } throw new NoSuchMethodException(); } public static String changeObjToXml(Object obj) throws Exception { String xml = ""; ByteArrayOutputStream os = new ByteArrayOutputStream(); JAXBContext context; context = JAXBContext.newInstance(obj.getClass()); Marshaller marshaller = context.createMarshaller(); marshaller.setProperty(Marshaller.JAXB_ENCODING, "UTF-8"); marshaller.marshal(obj, os); xml = new String(os.toByteArray(), "UTF-8"); return xml; } public static String convertXmlCdata(String text) { Pattern pattern = Pattern.compile("\\<\\!\\[CDATA\\[(?<text>[^\\]]*)\\]\\]\\>"); Matcher matcher = pattern.matcher(text); if (matcher.matches()) { return matcher.group(1); } return text; } public static String changeCharset(String str, String newCharset) throws UnsupportedEncodingException { if (str != null) { byte[] bs = str.getBytes(); return new String(bs, newCharset); } return str; } }
java
# Copyright (C) 2015 <NAME> import json import os.path from remoot import pythonstarter, smartstarter import anycall from pydron.backend import worker from pydron.interpreter import scheduler, strategies from twisted.internet import defer preload_packages = [] def load_config(configfile=None): if not configfile: candidates = [] if "PYDRON_CONF" in os.environ: candidates.append(os.environ["PYDRON_CONF"]) candidates.append(os.path.abspath("pydron.conf")) candidates.append(os.path.expanduser("~/pydron.conf")) candidates.append("/etc/pydron.conf") for candidate in candidates: if os.path.exists(candidate): configfile = candidate break else: raise ValueError("Config file could not be found. Looked for %s" % repr(candidates)) with open(configfile, 'r') as f: cfg = json.load(f) def convert(obj): if isinstance(obj, dict): return {k:convert(v) for k,v in obj.iteritems()} elif isinstance(obj, list): return [convert(v) for v in obj] elif isinstance(obj, unicode): return str(obj) else: return obj cfg = convert(cfg) return cfg def create_scheduler(config, pool): if "scheduler" not in config: strategy_name = "trivial" else: strategy_name = config["scheduler"] if strategy_name == "trivial": strategy = strategies.TrivialSchedulingStrategy(pool) strategy = strategies.VerifySchedulingStrategy(strategy) else: raise ValueError("Unsupported scheduler: %s" % strategy_name) return scheduler.Scheduler(pool, strategy) def create_pool(config, rpcsystem, error_handler): """ starts workers and returns a pool of them. Returns two callbacks: * The first callbacks with the pool as soon as there is one worker. Errbacks if all starters failed to create a worker. * The second calls back once all workers have been started. This one can be cancelled. The given `error_handler` is invoked for every failed start. """ starters = [] for starter_conf in config["workers"]: starters.extend(_create_starters(starter_conf, rpcsystem)) pool = worker.Pool() ds = [] for i, starter in enumerate(starters): d = starter.start() def success(worker, i, starter): worker.nicename = "#%s" % i pool.add_worker(worker) def fail(failure): error_handler(failure) return failure d.addCallback(success, i, starter) ds.append(d) d = defer.DeferredList(ds, fireOnOneErrback=True, consumeErrors=True) def on_success(result): return pool def on_fail(firsterror): return firsterror.value.subFailure d.addCallbacks(on_success, on_fail) return d def create_rpc_system(conf): port_range = _parse_port_range(conf.get("data_ports", 0)) return anycall.create_tcp_rpc_system(port_range = port_range) def _create_starters(conf, rpcsystem): global preload_packages import pydron data_ports = _parse_port_range(conf.get("data_ports", 0)) preconnect = conf.get("preconnect", True) if 0 in data_ports: # use automatically selected ports. this is not compatible # with preconnect preconnect = False data_ports = [0] if data_ports != [0] and len(data_ports) <= conf["cores"]: if 0 not in data_ports: raise ValueError("Not enough ports configured for %r" % conf) starters = [] for i in range(conf["cores"]): starter_type = conf["type"] if starter_type == "multicore": starter = _multicore_starter(conf, rpcsystem) elif starter_type == "ssh": starter = _ssh_starter(conf, rpcsystem) elif starter_type == "cloud": starter = _ec2_starter(conf, rpcsystem) else: raise ValueError("Not supported worker type %s" % repr(starter_type)) if data_ports == [0]: port = 0 else: port = data_ports[i] smart = smartstarter.SmartStarter(starter, rpcsystem, anycall.create_tcp_rpc_system, list(preload_packages)+[pydron], preconnect = preconnect, data_port = port) starters.append(worker.WorkerStarter(smart)) return starters def _multicore_starter(conf, rpcsystem): return pythonstarter.LocalStarter() def _ssh_starter(conf, rpcsystem): starter = pythonstarter.SSHStarter(conf["hostname"], username=conf["username"], password=conf.get("password", None), private_key_files=conf.get("private_key_files", []), private_keys=conf.get("private_keys", []), tmp_dir=conf.get("tmp_dir", "/tmp")) return starter def _ec2_starter(conf, rpcsystem): starter = pythonstarter.EC2Starter(username=conf["username"], provider=conf["provider"], provider_keyid=conf["accesskeyid"], provider_key=conf["accesskey"], image_id=conf["imageid"], size_id=conf["sizeid"], public_key_file=conf["publickey"], private_key_file=conf["privatekey"], tmp_dir=conf.get("tmp_dir", "/tmp")) return starter def _parse_port_range(ports): try: return [int(ports)] except ValueError: pass if isinstance(ports, list): return [int(x) for x in ports] min_port, max_port = str(ports).split('-', 1) min_port = int(min_port) max_port = int(max_port) return range(min_port, max_port + 1)
python
--- layout: home title: jiyoonstudyblog subtitle: 데이터분석과 nlp 공부하고 복습하기 위한 블로그입니다 (+ 1 spoon of computer vision) ---
html
Samantha Akkineni has said that 'Rangasthalam' is an absolutely honest film. Referring to the film's ambience, she adds, "There is such beauty in simplicity! Very little is needed to make a happy life. I so enjoy being a part of this absolutely honest film. " Director Sukumar is ensuring that the film is an authentic period drama set in the 1980s. Produced by Mythri Movie Makers, the period drama has Aadhi Pinishetty, Jagapathi Babu, and Prakash Raj in key roles. Anasuya is a part of the cast. Pooja Hegde is doing a special song. Music-directed by Devi Sri Prasad, it has cinematography by Rathnavelu. There is no clarity as to when the much-awaited film will hit the screens. Follow us on Google News and stay updated with the latest!
english
<reponame>Pieter12345/ComputerCraft { "parent": "computercraft:block/monitor_base", "textures": { "front": "computercraft:blocks/adv_monitor16", "side": "computercraft:blocks/adv_monitor4", "top": "computercraft:blocks/adv_monitor0", "back": "computercraft:blocks/adv_monitor4" } }
json
View the full NYT chart at Wikinvest Carlos Slim Helu, the Mexican telecommunications mogul with a reputation for finding undervalued companies and turning them around for huge profits, has taken a 6.4 percent stake in the New York Times Company. Slim, who is worth about $60 billion, was the largest shareholder in MCI before Verizon acquired the company. He bought 3 percent of Apple’s computer stock in 1997 right before Steve Jobs introduced the iMac. His 9.1 million NYT shares are worth about $127 million, priced at Wednesday’s $13.96 close. So he’s proved he has the magic touch in telecom and software, but what does this guy think he is doing with The New York Times? Slim, who tells Reuters his interest in the media company is "financial," may be hoping that a third party would acquire The New York Times, Hal Vogel, a New York media analyst told Bloomberg. The paper is facing the same ad slump along with everyone else. But despite recent moves to cut back on costs like merging sections and eliminating its distribution arm, it claims its print paper is not going anywhere. And their online ad sales are going up, but slow and steady. In a 2000 interview with BusinessWeek Slim explained some of his reasons for his turn towards U.S investments. "The key is the internet," he said. "The U.S. is by far the most advanced country in this new digital culture, so we have to be there. The Internet is the heart of this new civilization, and telecommunications are the nervous system, or circulatory system."
english
#include "vipch.h" #include "Platform/OpenGL/OpenGLIndexBuffer.h" #include "glad/gl.h" #include "Viking/Renderer/Buffer.h" namespace Viking { OpenGLIndexBuffer::OpenGLIndexBuffer(void* data, uint32_t count) : mCount(count) { mBuffer = Buffer::copy(data, count); glCreateBuffers(1, &mRendererID); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, mRendererID); glBufferData(GL_ELEMENT_ARRAY_BUFFER, mBuffer.mSize, mBuffer.mData, GL_STATIC_DRAW); } OpenGLIndexBuffer::~OpenGLIndexBuffer() { glDeleteBuffers(1, &mRendererID); } void OpenGLIndexBuffer::bind() const { glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, mRendererID); } uint32_t OpenGLIndexBuffer::getCount() const { return mBuffer.mSize; } }
cpp
<filename>src/index.css :root { /* Color */ --primary-color: #6200ee; --primary-variant: #3700b3; --secondary-color: #03dac6; --secondary-variant: #018786; --background: #ffffff; --surface: #ffffff; --error: #B00020; --on-primary: #ffffff; --on-secondary: #000000; --on-background: #000000; --on-surface: #000000; --on-error: #ffffff; /*Fonts*/ --main-font:'Archivo', sans-serif; --secondary-font:'Montserrat', sans-serif; } body { font-family: var(--main-font); background-color: white; margin: 0; padding: 0; } code { font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; }
css
<reponame>gotdibbs/Dynamics-CRM-Bookmarklets<gh_stars>1-10 import React, { useContext, useEffect, useState } from 'react'; import * as Fathom from 'fathom-client'; import { StoreContext } from './StoreProvider'; function copy(e) { e.preventDefault(); let source = e.target; if (source.classList.contains('copy')) { source = source.previousSibling; } let html = source.innerHTML, text = source.textContent; var input = document.createElement('input'); input.value = text; document.body.appendChild(input); input.select(); document.execCommand('copy'); input.remove(); source.innerHTML = 'Copied!'; source.dataset['value'] = text; setTimeout(() => { source.innerHTML = html; }, 1000); Fathom.trackGoal('D0KU4IIK', 0); } export default function InfoTabItem({ collector }) { const [displayValue, setDisplayValue] = useState(''); const { state } = useContext(StoreContext); useEffect(() => { async function fetchData() { let info = await collector.getInfo(state); setDisplayValue(info); } fetchData(); }, [state]); return ( <div className="gotdibbs-toolbox-info-item" data-testid={collector.key}> <label>{collector.label}</label> <span title="Double click to copy" className={collector.className} onDoubleClick={copy} dangerouslySetInnerHTML={{ __html: displayValue }}/> <a href="#" onClick={copy} className="copy" title="Click to Copy"></a> </div> ); }
javascript
{ "active_tab": { "message": "This Tab" }, "advise": { "message": "blog" }, "aimg_tooltip": { "message": "Click Image to uncheck or check" }, "all_tab": { "message": "All Tabs" }, "apply": { "message": "Apply" }, "chrome_download_settings_url": { "message": "Ask where to save each file before downloading" }, "default_title": { "message": "Fatkun Batch Download Image" }, "default_title_desc": { "message": "\nShortKey:Alt+Z" }, "description": { "message": "An useful and simple image download extension.You can filter by resolution or link." }, "do_not_show_again": { "message": "I know it, not show this dialog any more." }, "donate": { "message": "Donate" }, "export_btn": { "message": "Export" }, "export_close": { "message": "Close" }, "export_format": { "message": "format" }, "export_format_tips": { "message": "You can use these variables:{NO} means sequence number;{LINK} means image link" }, "export_link": { "message": "Export link" }, "filter_link": { "message": "Filter by link" }, "height": { "message": "Height" }, "height_short": { "message": "Min Height" }, "inverse": { "message": "Toggle" }, "min_display": { "message": "Max Side" }, "more_options": { "message": "More Options" }, "not_rename": { "message": "Not rename" }, "open_multiple_page": { "message": "Open multi page?" }, "open_multiple_page_action": { "message": "Open page" }, "open_multiple_page_tips": { "message": "allow multirow,wildcard [01-10] means 01 to 10 page, for example: http://abc.com?page=[1-4,a-z]" }, "popup_tips": { "message": "Short Key: Alt + Z" }, "process_end": { "message": "images" }, "process_show_start": { "message": "" }, "process_unknow_image": { "message": "image getting resolution" }, "rename_by_this_format": { "message": "Rename based on" }, "rename_tips": { "message": "You can use these variables:{NO} means sequence number;{EXT} means extended name" }, "right_click_to_open": { "message": "(Right-click to open and check settings)" }, "sample": { "message": "" }, "sample_end": { "message": "" }, "save": { "message": "Save" }, "save_image": { "message": "Save Image" }, "save_tips": { "message": " \"Ask where to save each file before downloading\" option in Chrome Downlods Setting.Otherwise, many many confirmation dialogs flock." }, "save_tips_cancel": { "message": "Cancel" }, "save_tips_do_not_check": { "message": "DO NOT SELECT" }, "save_tips_done": { "message": "Save Image" }, "save_tips_open_setting": { "message": "Open Settings Page" }, "settings": { "message": "Settings" }, "settings_already_save": { "message": "Setting saved." }, "settings_collect_one_page": { "message": "Collect to on page" }, "settings_download": { "message": "Chrome Downloads Setting" }, "settings_min_display": { "message": "Default min resolution" }, "settings_rule_last_update_time": { "message": "Last update:" }, "settings_rule_last_update_time_none": { "message": "None" }, "settings_save_folder": { "message": "save folder name(for Ctrl + S)" }, "settings_save_use_fixed_name": { "message": "use fixed name" }, "settings_save_use_title": { "message": "use website title" }, "settings_show_website": { "message": "Show link" }, "settings_simple": { "message": "Normal Settings" }, "settings_special_support": { "message": "Special support" }, "settings_special_support_desc": { "message": "Common Rule" }, "settings_use_shortcut_key": { "message": "Use Short Key: Alt + Z" }, "sort": { "message": "Sort" }, "sort_big_first": { "message": "Big image first" }, "sort_normal": { "message": "Sort by site" }, "sort_small_first": { "message": "Small image first" }, "switch_view": { "message": "Switch View" }, "update_declaration": { "message": "This extension referenced some code of zzllrr's \u003Ca href=\"http://chrome.google.com/webstore/detail/gfjhimhkjmipphnaminnnnjpnlneeplk?hl=zh_cn\">小乐图客\u003C/a>" }, "update_description": { "message": "1 English translation \u003Cbr /> 2 Chrome downloading settings tooltips updated" }, "update_title": { "message": "Fatkun Batch Download Image version 1.8.3" }, "width": { "message": "Width" }, "width_short": { "message": "Min Width" } }
json
Mike Trout and the Los Angeles Angels picked up their 21st win of the season last night after defeating the Tampa Bay Rays by a score of 12-0. Mike Trout went three for four with two home runs and three runs batted in. Trout's first home run came in the second inning off Corey Kluber. The Angels busted open an 8-0 lead when Tampa Bay Rays pitcher Brett Phillips came into the game to pitch. Phillips is a position player and has been used numerous times by the Rays in lopsided contests. Phillips came into the game and had to face Mike Trout, and things went about as well as expected. This had to have been the easiest home run that Trout has ever hit in his career, just a lobbed ball right down the middle. After the game, Brett Phillips took to Twitter with a hilarious tweet toward Trout. Shortly after, Angels third baseman Anthony Rendon, who bats solely from the right side of the plate, came up to the plate and decided to bat left-handed because position player Brett Phillips was on the mound. Rendon did the unimaginable and belted a home run from the left-side of the plate. Reid Detmers was the starting pitcher for the Angels and made history by throwing a no-hitter. This was Detmer’s 11th start of his career, and he became the youngest to throw a no-hitter since Anibal Sanchez in 2006. Below are the full highlights of Detmer's masterpiece against Tampa. Overall, this was truly a historic night for the Los Angeles Angels, and they have now improved their record to 21-11. What's on Tap? The Los Angeles Angels and Tampa Bay Rays wrap up their series later today with Shohei Ohtani starting for the Angels and Shance McClanahan starting for Tampa. The first pitch is scheduled for 7:07 p.m. EDT. For more news and updates, go to the Sportskeeda Baseball page. Click here for 2023 MLB Free Agency Tracker Updates. Follow Sportskeeda for latest news and updates on MLB.
english
As today marks the auspicious occasion of Eid-ul-Fitr, Bollywood stars including Sara Ali Khan, Kiara Advani, Jacqueline Fernandez, Sanjay Dutt and many others took to social media to extend heartfelt greetings to their fans. The 'Kedarnath' actor took to Instagram and posted an adorable snap with her brother Ibrahim Ali Khan and sent good wishes to her fans on the occasion of Eid. She wrote, "Eid Mubarak. Hoping and praying for happiness, positivity and safety for everyone. Inshallah better times ahead for us all. " Wishing for peace and good health, Kiara tweeted, "#EidMubarak. May God bless us all with good health and peace. stay safe everyone. " "Eid Mubarak everyone May your loved ones always be peaceful and blessed! " wrote Jacqueline as she shared a picture of a floral tiara on Twitter. Taking a walk down the memory lane, veteran actor Neetu Kapoor remembered late husband and superstar Rishi Kapoor while extending wishes on the festival. She posted a collage from the film 'Amar Akbar Anthony' featuring Rishi and herself. The picture read, "Eid-ul-Adha Mubarak. " Along with the post, she wrote, "Eid Mubarak. Chaand Mubarak. love and hugs. ( EID ul FITAR ). Eid Mubarak. " "Today's plan is to eat sheer khurma and keep going on with tons of positive energy and strength :) Am missing My Eidi and the excitement we would have as children on getting it #nostalgic #CovidWarrior," tweeted Bhumi Pednekar as she unveiled ger plans on Eid celebration this year amid pandemic. Shilpa Shetty took to Instagram and sent out good wishes on the auspicious occasion of Eid. Emraan Hashmi wished for good health and happiness to everyone in a Twitter post. Shahid Kapoor took to Instagram and shared a sun-kissed selfie sporting black attire, and extended greetings on Eid. Veteran actor Sanjay Dutt sent out a message to spread love and celebrate the festival by showing compassion and gratitude amid tough times. He shared the message on his Instagram Story. Amid the ongoing COVID-19 pandemic, let us hope we can leave behind these challenging times together for a period of happiness, compassion, and peace. Eid Mubarak! (ANI)
english
--- layout: post title: dinner is ready date: '2014-10-20T07:30:46+02:00' categories: - Sketches - Sketchbooks picture_url: https://film-Storyboards.tumblr.com/post/100495932940/dinner-is-ready --- <img src="/images/picture_ndqpgdqhVO1s6ptp7o1_1280.jpg"/><br/>
html
<reponame>mrprona92/BrawlStarsNew { "dotaId": "cloak", "id": 31, "img": "cloak_lg.png", "dname": "Cloak", "qual": "component", "cost": 550, "desc": "", "notes": "Stacks multiplicatively with other sources of spell resistance.", "attrib": "+ 20% Spell Resistance", "mc": false, "cd": false, "lore": "A cloak made of a magical material that works to dispel any magic cast on it.", "components": null, "created": false }
json
<filename>data/repec/1789.json { "id": 1789, "cites": 4, "cited_by": 0, "reference": [ "<NAME>., Ingersoll, <NAME>., and <NAME>. (1981). A Re-examination of Traditional Hypotheses about the Term Structure of Interest Rates. Journal of Finance 36, 169-199.", "Livingston, <NAME>., and <NAME>. (1982). Flattening of Bond Yield Curves for Long Maturities. Journal of Finance 31, 151-16?.", "<NAME>. (1966). The Term Structure of Interest Rates; Expectations and Behavior Pattsrns. Princeton, N.J.: Princeton University Press.", "<NAME> (1912). The Term Structure of Interest Rates. New York: Basic Books." ] }
json
<reponame>LeReunionais/looper package interfaces import ( "github.com/LeReunionais/looper/world" zmq "github.com/pebbe/zmq4" "log" "strconv" "time" ) func Publish(protocol string, port int, w *world.World) { publisher, errSock := zmq.NewSocket(zmq.PUB) defer publisher.Close() if errSock != nil { log.Fatal(errSock) } log.Println("PUB socket created") endpoint := protocol + "://*:" + strconv.Itoa(port) errBind := publisher.Bind(endpoint) if errBind != nil { log.Fatal(errBind) } log.Println("PUB socket bound to", endpoint) for { time.Sleep(250 * time.Millisecond) state := w.StateJson() log.Println("Publishing", state) publisher.Send(state, 0) } }
go
Steph Curry is flirting with the possibility of making NBA history and Skip Bayless has now served up a claim about the Golden State Warriors star. Bayless, a Fox Sports 1 analyst and co-host of Undisputed, sent out a tweet about Curry and Blake Griffin from their draft day. Bayless has been known to be a tough critic towards Steph Curry. An ardent fan of Kevin Durant and a stubborn individual with regards to his opinions and takes, his take on Curry hasn't been kind for the most part. Often found faulting the two-time NBA MVP, Skip Bayless suddenly shocked the basketball world with a tweet that reflected praise for Curry as a player. He did so by drawing a comparison to Brooklyn Nets forward Blake Griffin. "You can look this up: Before Steph's draft, I said he should go No. 1 overall and many commentators on ESPN told me I was nuts, that Blake Griffin had to go No. 1. (I'd watched very game Blake had played for TWO years at OU.) Steph went 7th. Look at Steph and Blake now. Man." As Steph Curry continues to edge closer to adding yet another achievement to his resume as a basketball player, the acknowledgement from Bayless can be viewed as a rare honor in its own right. The 2009 Draft saw some extremely talented players join the ranks of the NBA. However, the honor of being the number one overall pick was given to Blake Griffin, who had a tremendous rookie season. Griffin would emerge as an All-Star shortly after with the LA Clippers. Steph Curry, on the other hand, was drafted as the seventh overall pick by the Golden State Warriors. Although Curry wouldn't make an All-Star appearance until later in his career, recent history is proof of how different their careers have been. Curry, who has emerged as a two-time MVP and three-time NBA champion, has also become one of the most influential sporting personalities in the world. He is on the verge of breaking Ray Allen's record of threes made with more than 500 games to spare. Consequently, Steph Curry is also adding to his claim to being the greatest shooter the game has ever seen. Blake Griffin's career, on the other hand, has not been as fruitful. Spending the majority of his time with the LA Clippers alongside Chris Paul and DeAndre Jordan, the trio ushered in the "Lob City" era for the side. Playing an exciting brand of basketball, the Clippers were a dominant regular-season that tasted very little playoff success. As the "Lob City" Clippers parted ways, Blake Griffin suffered a host of injuries during his time with the Detroit Pistons. Currently in his last leg with the Brooklyn Nets, Griffin finds himself out of the rotation on most nights with the side. It is safe to say that the former Rookie of the Year did not taste the success he set out to. In this regard, Skip Bayless' comments are a harsh take on the career trajectories of the two franchise starlets. While unfortunate injuries have affected the success Blake Griffin could have had, there is very little that can take away from what Steph Curry has achieved. With Curry at the helm, the Golden State Warriors are currently the number one seed in the West. It's safe to say "Chef Curry" has continued to prove his critics wrong. How did Michael Jordan's gambling "habit" taint his image?
english
<gh_stars>10-100 package com.james.rocket.views; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.PorterDuff; import android.graphics.PorterDuffXfermode; import android.support.annotation.Nullable; import android.support.v4.content.ContextCompat; import android.util.AttributeSet; import android.view.View; import com.james.rocket.R; import com.james.rocket.utils.StaticUtils; public class CircleCutoutView extends View { private Paint paint; private Bitmap bitmap; private int padding; public CircleCutoutView(Context context) { this(context, null); } public CircleCutoutView(Context context, @Nullable AttributeSet attrs) { this(context, attrs, 0); } public CircleCutoutView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); padding = (int) StaticUtils.getPixelsFromDp(getContext(), 86); paint = new Paint(); paint.setAntiAlias(true); paint.setStyle(Paint.Style.FILL); paint.setColor(Color.BLACK); paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.CLEAR)); ; } @Override public void onDraw(Canvas canvas) { canvas.drawBitmap(getBitmap(canvas.getWidth(), canvas.getHeight()), 0, 0, null); } private Bitmap getBitmap(int width, int height) { if (bitmap == null) { bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(bitmap); canvas.drawColor(ContextCompat.getColor(getContext(), R.color.colorPrimary)); canvas.drawCircle(width / 2, height / 2, (Math.max(width, height) / 2) - padding, paint); } return bitmap; } }
java
/** * Copyright (c) 2015 Intel Corporation * * 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 org.trustedanalytics.platformsnapshot.scheduler; import com.fasterxml.jackson.databind.DeserializationFeature; import com.fasterxml.jackson.databind.ObjectMapper; import com.github.tomakehurst.wiremock.junit.WireMockRule; import com.google.common.io.CharStreams; import com.opentable.db.postgres.embedded.EmbeddedPostgreSQLRule; import feign.Feign; import feign.Logger; import feign.Request; import feign.jackson.JacksonDecoder; import feign.jackson.JacksonEncoder; import feign.slf4j.Slf4jLogger; import org.junit.Before; import org.junit.ClassRule; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.trustedanalytics.platformsnapshot.Application; import org.trustedanalytics.platformsnapshot.client.TapOperations; import org.trustedanalytics.platformsnapshot.client.TapRxClient; import org.trustedanalytics.platformsnapshot.client.cdh.CdhOperations; import org.trustedanalytics.platformsnapshot.model.PlatformSnapshot; import org.trustedanalytics.platformsnapshot.persistence.PlatformSnapshotRepository; import org.trustedanalytics.platformsnapshot.service.PlatformSnapshotScheduler; import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer; import java.util.Properties; import javax.sql.DataSource; import javax.transaction.Transactional; import java.io.IOException; import java.io.InputStreamReader; import java.sql.SQLException; import static com.github.tomakehurst.wiremock.client.WireMock.*; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; /* integration test, not launched by default mvn profile can be run by: mvn verify -P integration-test */ @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = {PlatformSnapshotSchedulerIntegrationTest.PostgresTestConfiguration.class, Application.class}) public class PlatformSnapshotSchedulerIntegrationTest { @Autowired PlatformSnapshotRepository platformSnapshotRepository; @ClassRule public static EmbeddedPostgreSQLRule pg = new EmbeddedPostgreSQLRule(); private PlatformSnapshotScheduler platformSnapshotScheduler; TapOperations tapOperations; CdhOperations cdhOperations; @ClassRule public static WireMockRule wireMockRule = new WireMockRule(); @Before public void before() { tapOperations = new TapRxClient(builder -> builder .logLevel(Logger.Level.BASIC), "http://localhost:" + wireMockRule.port()); ObjectMapper objectMapper = new ObjectMapper() .disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES); cdhOperations = Feign.builder() .encoder(new JacksonEncoder(objectMapper)) .decoder(new JacksonDecoder(objectMapper)) .logger(new Slf4jLogger(CdhOperations.class)) .options(new Request.Options(30_1000, 10_1000)) .logLevel(Logger.Level.BASIC) .target(CdhOperations.class, String.format("http://%s:%s", "localhost", wireMockRule.port())); platformSnapshotScheduler = new PlatformSnapshotScheduler(tapOperations, platformSnapshotRepository, cdhOperations); final String clusters= loadJson("cdhcluster.json"); stubFor(get(urlPathEqualTo("/api/v11/clusters")) .willReturn(aResponse() .withStatus(200) .withHeader("Content-Type", "application/json") .withBody(clusters))); final String cdhservices= loadJson("cdhservices.json"); stubFor(get(urlPathEqualTo("/api/v11/clusters/CDH-cluster/services")) .willReturn(aResponse() .withStatus(200) .withHeader("Content-Type", "application/json") .withBody(cdhservices))); final String pageJson = loadJson("v3offerings.json"); stubFor(get(urlPathEqualTo("/v3/offerings")) .willReturn(aResponse() .withStatus(200) .withHeader("Content-Type", "application/json") .withBody(pageJson))); final String infoJson = loadJson("v3info.json"); stubFor(get(urlPathEqualTo("/v3/platform_info")) .willReturn(aResponse() .withStatus(200) .withHeader("Content-Type", "application/json") .withBody(infoJson))); final String appsJson = loadJson("application.json"); stubFor(get(urlPathEqualTo("/v3/applications")) .willReturn(aResponse() .withStatus(200) .withHeader("Content-Type", "application/json") .withBody(appsJson))); } @Test @Transactional public void testTriggerOneSnapshotAndReadPlatformVersion() throws InterruptedException, SQLException { platformSnapshotScheduler.trigger(); Thread.sleep(5000); PlatformSnapshot snapshot = platformSnapshotRepository.findTopByOrderByCreatedAtDesc(); assertTrue("0.8.0.2417".equals(snapshot.getPlatformVersion())); } @Test @Transactional public void testTriggerOneSnapshotAndReadApplicationsAndServices() throws InterruptedException, SQLException { platformSnapshotScheduler.trigger(); Thread.sleep(5000); PlatformSnapshot snapshot = platformSnapshotRepository.findTopByOrderByCreatedAtDesc(); assertEquals(1, snapshot.getApplications().size()); assertEquals(22, snapshot.getTapServices().size()); assertEquals(14, snapshot.getCdhServices().size()); } public static class PostgresTestConfiguration { private static final String DUMMY = "dummy"; private static final String DUMMY_PORT = "1234"; @Bean public DataSource getDataSource() { DataSource data = pg.getEmbeddedPostgreSQL().getPostgresDatabase(); return data; } @Bean public static PropertyPlaceholderConfigurer propertyPlaceholderConfigurer() { PropertyPlaceholderConfigurer ppc = new PropertyPlaceholderConfigurer(); ppc.setIgnoreResourceNotFound(true); final Properties properties = new Properties(); properties.setProperty("cloudera.user", DUMMY); properties.setProperty("cloudera.password", <PASSWORD>); properties.setProperty("cloudera.address", DUMMY); properties.setProperty("cloudera.port", DUMMY_PORT); properties.setProperty("cloudera.store", DUMMY); properties.setProperty("cloudera.storePassword", <PASSWORD>); ppc.setProperties(properties); return ppc; } } private String loadJson(String name) { try { return CharStreams.toString(new InputStreamReader(getClass().getClassLoader().getResourceAsStream(name))); } catch (IOException e) { throw new IllegalArgumentException("Invalid file name: " + name); } } }
java
Sara Ali Khan shared a high-intensity workout video with her fans and asked them to stay at home and stay fit on Janata Curfew. By India Today Web Desk: Yesterday, people all across India, stayed inside their homes and observed the Janata Curfew. The actress, Sara Ali Khan, who is famous for her body transformation, showed how she does a high-intensity workout at home. The Simmba actress shared a video in which she can be seen doing an intense workout. In the caption, Sara also gave a detailed breakdown of her workout and the different exercises that it included. Sara wrote, "I support Janta Curfew! Meanwhile fitness and motivation I Pursue! I sincerely urge this to become a worldview. Stay Fit! Stay Safe! Stay Home! Tabata Workout. 20 seconds of- Burpees, Squat Jumps, Mountain climbers, Reverse Lunges, Shoulder taps in high plank, Jumping Jacks, 2 reverse lunges and 1 squat jump and Burpees again. (sic)" For her workout session, the 24-year-old wore a sports bra over which she opted for a simple black crop top. Sara completed her workout outfit with a pair of pink mini shorts. She also wore a pair of black sneakers. Sara tied her hair in a tight ponytail and looked radiant with her workout glow. This inspired us to start working out at home. On the work front, Sara Ali Khan was last seen in the film Love Aaj Kal opposite Kartik Aaryan. She has completed the shooting of her film Coolie No 1, in which Sara will be seen sharing the screen space with Varun Dhawan. People across India, observed Janata Curfew on March 22, in an attempt to fight the spread of the novel coronavirus. One of the major preventive measures against the further spread of the virus is social distancing which was the motive behind Janata Curfew. India has lost 8 lives to Covid-19 till now.
english
New Delhi: The Centre on Sunday relieved CISF chief O P Singh for his cadre Uttar Pradesh, where he is expected to take over as the new Director General of Police (DGP). The Appointments Committee of the Cabinet (ACC) headed by Prime Minister Narendra Modi issued an order allowing a home ministry proposal for "premature repatriation" of Singh, a 1983-batch IPS officer. According to official sources, Singh (59) is expected to take over as the Uttar Pradesh DGP on Tuesday. The post has been lying vacant for over a fortnight after Sulkhan Singh retired on December 31. The Uttar Pradesh government had earlier said that they had requested the Centre to relieve him from Central deputation so that he can head the state police force. Singh, a gallantry medal winner, has been heading the Central Industrial Security Force (CISF) since September, 2016 and has been credited for ushering in some major changes in the work profile and operations of the force, especially in the aviation sector. Under his initiative last year, the force did away with the traditional system of putting tags on air passengers hand baggage, a move seen as a major game changer in the airport security domain. He also initiated simpler flying procedures for specially-abled passengers after talking to representative groups of such passengers. Singh, before heading the CISF, has served as the chief of the National Disaster Response Force (NDRF) and he led his men from the front in a number of relief and rescue operations including the massive earthquake in Nepal in April, 2015. The Union government is expected to soon appoint a full- time DG for the CISF. A panel of senior Indian Police Service (IPS) officers will soon be reviewed by the home ministry before the appointment is made by the ACC. (This story has not been edited by News18 staff and is published from a syndicated news agency feed - PTI)
english
You may start to notice the first signs of skin aging at 25 years old. Some other causes of aging skin can be due to being out in the sun for extended periods of time. Even being pregnant can cause the skin to sag in places you’re not used to. If you are wondering how you can reduce your saggy skin, make sure to keep reading to learn about some of the best sagging skin treatments for you! We have learned a lot about the effects of sugar on our bodies, and that too much can be a detriment to our skin. We don’t even realize how much sugar we consume in our day to day, so it’s important to keep track! Sugar consumption causes glycation that actually breaks down the collagen in our bodies. If you didn’t know, collagen helps keep the structure to our skin. When collagen gets broken down, we lose the rigidness in our skin, causing it to become loose. Cutting your sugar intake will prevent collagen from being weakened, keeping your skin looking fresh. As you may know, when you work out your legs, you gain muscle strength. The same goes for your face. Daily facial exercises can strengthen your muscles. This will keep your face toned and prevent loose skin. Smiling with the handle of a spoon is a great facial work out that will keep your muscles firm. Remember that this is not an overnight process. You will have to continuously keep up these exercises to see your results. If you are looking for a procedure that’s minimally invasive, then you could go for laser lipolysis. This procedure involves using a laser fiber that is used under the skin. The laser targets the fatty cells. The cells will rupture, resulting in the draining of the fat. You are given an oral sedative that will relax your face, so you’ll barely feel a thing. Your face will feel sore the next day, with some reddening, but the recovery process is quick. Make sure you check this procedure out if you’re looking for long-lasting results. This procedure is completely non-invasive. It uses ultrasound to penetrate the layers of the skin, heating up the cells that produce collagen. The goal is to stimulate these cells to produce collagen quickly. This procedure is great for those who have minimal sagging in their face. Usually, only one treatment is needed, but depending on your desired results, you may need up to three sessions. For those who want to avoid a surgical procedure, this is the treatment for you. You can go back to your daily activities the next day! There is a variety of sagging skin treatments you can pick from. We hope that this helps you narrow down your search for the best sagging skin treatment that will suit your needs!
english
<gh_stars>0 { "name": "DevOps Stack - CIT348", "tagline": "DevOps Overview", "body": "# devops\r\nDevOps Overview\r\n\r\nCurrently the project consists of two servers with a shared PostgreSQL service with separate databases for the Gogs and Taiga services.\r\n\r\nPostgreSQL and Gogs are hosted on tom.ou.carrio.me while Taiga{-front,-back,-events} is hosted on chase.ou.carrio.me\r\n\r\n### A Visual Representation of the Stack\r\n\r\n![DevOps Stack](/assets/stack-diagram.png)\r\n\r\nThe `tom.ou.carrio.me` server is running both the PostgreSQL service as well as Gogs. The PostgreSQL service has 3 databases that have been initialized for all services in the stack, `drone`, `taiga`, and `gogs`. \r\n\r\nThe `chase.ou.carrio.me` server is running Docker containers for the Taiga stack and Drone. The Taiga stack includes Taiga-front-dist, Taiga-back, Taiga-events, Redis, Rabbitmq, and Celery. \r\n\r\nThese services can be visited at the links as mentioned at the top!\r\n\r\nAll relevant scripts and files are available under the `/assets/code` directory, and are simply the `tom_backup` and `chase_backup` directories merged for ease of access. \r\n", "note": "Don't delete this file! It's used internally to help with page regeneration." }
json
While the Organization of the Petroleum Exporting Countries and allies are cutting production to bolster the market, U.S. crude production will hit a record high in 2024, the Energy Information Administration said on Tuesday. Brent crude futures rose 18 cents, or 0.2%, to $76.30 a barrel at 0122 GMT, while U.S. West Texas Intermediate crude futures inched up 6 cents, or 0.1%, to $70.83 a barrel. The benchmarks had fallen over 3% and 4% respectively on Monday on sharp price cuts by top exporter Saudi Arabia and a rise in OPEC output. Oil prices fell by more than 4% on Monday on sharp price cuts by top exporter Saudi Arabia and a rise in OPEC output, offsetting supply concerns generated by escalating geopolitical tension in the Middle East. Oil prices rose in early trade on Thursday, extending the previous day's sharp gains on concerns about Middle Eastern supply following disruptions at a field in Libya and heightened tension around the Israel-Gaza war. Oil prices rose in early Asian trade on Thursday as persistent fears over escalating tensions in the Middle East outweighed easing concerns about transport disruptions as some global shipping firms said they were returning to the Red Sea route. Oil jumped over 2% on Tuesday to the highest in almost a month, supported by Middle East strife and investor optimism that the U.S. Federal Reserve would soon start cutting interest rates, boosting global economic growth and fuel demand. Brent crude's slide of more than 20% from its September peak suggests inflation is set to slow even further in developing nations in coming months, which will provide another reason to buy their bonds. Emerging-market currencies are also poised to gain as finances of net-oil importers improve. The market tumbled earlier in the session after a New York Federal Reserve Bank manufacturing survey showed a third month of declines in new orders, which could be a sign of weaker demand for oil in the coming year. The market stumbled in overnight trade as firmer-than-expected U.S. inflation readings for November bolstered the view the Federal Reserve was unlikely to cut interest rates early next year, which would weigh on consumption. The IEA boosted forecasts for world fuel consumption this year on surprising strength in China, and still anticipates a supply shortfall during the fourth quarter. But it will be roughly 30% smaller than previously projected, at about 900,000 barrels a day. The U.S. Treasury Department has sent notices to ship management companies requesting information about 100 vessels it suspects of violating Western sanctions on Russian oil, the biggest step by Washington since an imposed price cap to restrict oil revenues to Moscow.
english
Garena Free Fire is one of the most popular battle royale titles on the mobile platform, and this can also be partially credited to the regular updates brought in. Free Fire is coming up with another big update, OB25, which is exclusive for Android users. As usual, the developers plan to release the OB25 Advance Servers to a limited number of players. This is done to make the servers better by correcting the bugs and finding glitches that occur in-game. After the Advance Server goes through all the errors and the problems get rectified and resolved, the devs will be pushing the OB25 update to the global version. Also read: DJ Alok vs Hayato: Who is the better character in Free Fire? Registrations for the Free Fire OB25 Advance Server are currently open. A limited number of users will be able to access it, letting them try out the new features earlier than usual. Gamers who are interested in trying out these new features and becoming beta testers for the game may follow these steps to register and download the beta mode of Free Fire: - First, players have to visit the official Advanced Server website here. - They can scroll down and find the ‘Login Facebook’ option (Players can only register using their Facebook accounts). - They have to fill in the required details and press the ‘Join Now’ option. - After the registration process is complete, gamers can return to the website and download the APK version of the update from 26th November onwards. As previously stated, the download option will only be available from 26th November. The new servers will always have some bugs and glitches. Hence, gamers who report bugs in the Advance Servers accurately will get diamonds as rewards. The rewards are as follows: Grand Prize (Based on contributions) Bug Hunter Rewards (First unknown mug hunter) Check out the latest Free Fire MAX redeem codes here.
english
Elementary 6.1 - Tested Hardware & Statistics --------------------------------------------- A project to collect tested hardware configurations for Elementary 6.1. Anyone can contribute to this report by the [hw-probe](https://github.com/linuxhw/hw-probe) tool: sudo -E hw-probe -all -upload Please submit a probe of your configuration if it's not presented on the page or is rare. This is a report for all computer types. See also reports for [desktops](/Dist/Elementary_6.1/Desktop/README.md) and [notebooks](/Dist/Elementary_6.1/Notebook/README.md). Full-feature report is available here: https://linux-hardware.org/?view=trends Contents -------- * [ Test Cases ](#test-cases) * [ System ](#system) - [ Kernel ](#kernel) - [ Kernel Family ](#kernel-family) - [ Kernel Major Ver. ](#kernel-major-ver) - [ Arch ](#arch) - [ DE ](#de) - [ Display Server ](#display-server) - [ Display Manager ](#display-manager) - [ OS Lang ](#os-lang) - [ Boot Mode ](#boot-mode) - [ Filesystem ](#filesystem) - [ Part. scheme ](#part-scheme) - [ Dual Boot with Linux/BSD ](#dual-boot-with-linuxbsd) - [ Dual Boot (Win) ](#dual-boot-win) * [ Board ](#board) - [ Vendor ](#vendor) - [ Model ](#model) - [ Model Family ](#model-family) - [ MFG Year ](#mfg-year) - [ Form Factor ](#form-factor) - [ Secure Boot ](#secure-boot) - [ Coreboot ](#coreboot) - [ RAM Size ](#ram-size) - [ RAM Used ](#ram-used) - [ Total Drives ](#total-drives) - [ Has CD-ROM ](#has-cd-rom) - [ Has Ethernet ](#has-ethernet) - [ Has WiFi ](#has-wifi) - [ Has Bluetooth ](#has-bluetooth) * [ Location ](#location) - [ Country ](#country) - [ City ](#city) * [ Drives ](#drives) - [ Drive Vendor ](#drive-vendor) - [ Drive Model ](#drive-model) - [ HDD Vendor ](#hdd-vendor) - [ SSD Vendor ](#ssd-vendor) - [ Drive Kind ](#drive-kind) - [ Drive Connector ](#drive-connector) - [ Drive Size ](#drive-size) - [ Space Total ](#space-total) - [ Space Used ](#space-used) - [ Malfunc. Drives ](#malfunc-drives) - [ Malfunc. Drive Vendor ](#malfunc-drive-vendor) - [ Malfunc. HDD Vendor ](#malfunc-hdd-vendor) - [ Malfunc. Drive Kind ](#malfunc-drive-kind) - [ Failed Drives ](#failed-drives) - [ Failed Drive Vendor ](#failed-drive-vendor) - [ Drive Status ](#drive-status) * [ Storage controller ](#storage-controller) - [ Storage Vendor ](#storage-vendor) - [ Storage Model ](#storage-model) - [ Storage Kind ](#storage-kind) * [ Processor ](#processor) - [ CPU Vendor ](#cpu-vendor) - [ CPU Model ](#cpu-model) - [ CPU Model Family ](#cpu-model-family) - [ CPU Cores ](#cpu-cores) - [ CPU Sockets ](#cpu-sockets) - [ CPU Threads ](#cpu-threads) - [ CPU Op-Modes ](#cpu-op-modes) - [ CPU Microcode ](#cpu-microcode) - [ CPU Microarch ](#cpu-microarch) * [ Graphics ](#graphics) - [ GPU Vendor ](#gpu-vendor) - [ GPU Model ](#gpu-model) - [ GPU Combo ](#gpu-combo) - [ GPU Driver ](#gpu-driver) - [ GPU Memory ](#gpu-memory) * [ Monitor ](#monitor) - [ Monitor Vendor ](#monitor-vendor) - [ Monitor Model ](#monitor-model) - [ Monitor Resolution ](#monitor-resolution) - [ Monitor Diagonal ](#monitor-diagonal) - [ Monitor Width ](#monitor-width) - [ Aspect Ratio ](#aspect-ratio) - [ Monitor Area ](#monitor-area) - [ Pixel Density ](#pixel-density) - [ Multiple Monitors ](#multiple-monitors) * [ Network ](#network) - [ Net Controller Vendor ](#net-controller-vendor) - [ Net Controller Model ](#net-controller-model) - [ Wireless Vendor ](#wireless-vendor) - [ Wireless Model ](#wireless-model) - [ Ethernet Vendor ](#ethernet-vendor) - [ Ethernet Model ](#ethernet-model) - [ Net Controller Kind ](#net-controller-kind) - [ Used Controller ](#used-controller) - [ NICs ](#nics) - [ IPv6 ](#ipv6) * [ Bluetooth ](#bluetooth) - [ Bluetooth Vendor ](#bluetooth-vendor) - [ Bluetooth Model ](#bluetooth-model) * [ Sound ](#sound) - [ Sound Vendor ](#sound-vendor) - [ Sound Model ](#sound-model) * [ Memory ](#memory) - [ Memory Vendor ](#memory-vendor) - [ Memory Model ](#memory-model) - [ Memory Kind ](#memory-kind) - [ Memory Form Factor ](#memory-form-factor) - [ Memory Size ](#memory-size) - [ Memory Speed ](#memory-speed) * [ Printers & scanners ](#printers--scanners) - [ Printer Vendor ](#printer-vendor) - [ Printer Model ](#printer-model) - [ Scanner Vendor ](#scanner-vendor) - [ Scanner Model ](#scanner-model) * [ Camera ](#camera) - [ Camera Vendor ](#camera-vendor) - [ Camera Model ](#camera-model) * [ Security ](#security) - [ Fingerprint Vendor ](#fingerprint-vendor) - [ Fingerprint Model ](#fingerprint-model) - [ Chipcard Vendor ](#chipcard-vendor) - [ Chipcard Model ](#chipcard-model) * [ Unsupported ](#unsupported) - [ Unsupported Devices ](#unsupported-devices) - [ Unsupported Device Types ](#unsupported-device-types) Test Cases ---------- | Vendor | Model | Form-Factor | Probe | Date | |---------------|-----------------------------|-------------|------------------------------------------------------------|--------------| | HP | ProBook 450 G7 | Notebook | [a73f7ae919](https://linux-hardware.org/?probe=a73f7ae919) | Feb 28, 2022 | | ASUSTek | M4N72-E | Desktop | [c3fe570b4d](https://linux-hardware.org/?probe=c3fe570b4d) | Feb 28, 2022 | | ASUSTek | H81-PLUS | Desktop | [e8956dc4ec](https://linux-hardware.org/?probe=e8956dc4ec) | Feb 27, 2022 | | ASUSTek | VivoBook_ASUSLaptop X510... | Notebook | [d7b815d3d6](https://linux-hardware.org/?probe=d7b815d3d6) | Feb 27, 2022 | | Samsung | 870Z5E/880Z5E/680Z5E | Notebook | [d04715f0dc](https://linux-hardware.org/?probe=d04715f0dc) | Feb 26, 2022 | | Gigabyte | X470 AORUS ULTRA GAMING-... | Desktop | [a6d5cc0368](https://linux-hardware.org/?probe=a6d5cc0368) | Feb 26, 2022 | | HP | Laptop 17-by0xxx | Notebook | [745fa98d2e](https://linux-hardware.org/?probe=745fa98d2e) | Feb 26, 2022 | | Acer | Aspire A315-42G | Notebook | [75830af7ff](https://linux-hardware.org/?probe=75830af7ff) | Feb 25, 2022 | | ASUSTek | K50IJ | Notebook | [97284dc322](https://linux-hardware.org/?probe=97284dc322) | Feb 25, 2022 | | HP | EliteBook 840 G1 | Notebook | [a8b2cacac9](https://linux-hardware.org/?probe=a8b2cacac9) | Feb 25, 2022 | | HP | Pavilion Laptop 15-cd0xx | Notebook | [eeaed94df7](https://linux-hardware.org/?probe=eeaed94df7) | Feb 23, 2022 | | Gigabyte | Z390 UD | Desktop | [7ea66813f3](https://linux-hardware.org/?probe=7ea66813f3) | Feb 23, 2022 | | Dell | Inspiron N5050 | Notebook | [88c13620a2](https://linux-hardware.org/?probe=88c13620a2) | Feb 23, 2022 | | ASUSTek | ZenBook UX325EA_UX325EA | Notebook | [7a8aaaa5a6](https://linux-hardware.org/?probe=7a8aaaa5a6) | Feb 23, 2022 | | ASUSTek | ZenBook UX325EA_UX325EA | Notebook | [849ceb3653](https://linux-hardware.org/?probe=849ceb3653) | Feb 23, 2022 | | Microsoft | Surface with Windows 8 P... | Tablet | [1f32b0aa84](https://linux-hardware.org/?probe=1f32b0aa84) | Feb 23, 2022 | | Microsoft | Surface with Windows 8 P... | Tablet | [ef94f0dd4d](https://linux-hardware.org/?probe=ef94f0dd4d) | Feb 23, 2022 | | MSI | Modern 14 B4MW | Notebook | [1527f67c84](https://linux-hardware.org/?probe=1527f67c84) | Feb 23, 2022 | | Samsung | 500R4K/500R5H/5400RK/501... | Notebook | [1391579931](https://linux-hardware.org/?probe=1391579931) | Feb 21, 2022 | | ASUSTek | PRIME B450M-GAMING/BR | Desktop | [73b31ddab0](https://linux-hardware.org/?probe=73b31ddab0) | Feb 20, 2022 | | ASUSTek | GL753VE | Notebook | [25f1ab36fc](https://linux-hardware.org/?probe=25f1ab36fc) | Feb 20, 2022 | | Apple | MacBookAir3,1 | Notebook | [48dcaa8622](https://linux-hardware.org/?probe=48dcaa8622) | Feb 20, 2022 | | MSI | B85I | Desktop | [24674e9e3a](https://linux-hardware.org/?probe=24674e9e3a) | Feb 20, 2022 | | ASUSTek | E402SA | Notebook | [b9796e46de](https://linux-hardware.org/?probe=b9796e46de) | Feb 20, 2022 | | Apple | MacBook5,1 | Notebook | [3503d61993](https://linux-hardware.org/?probe=3503d61993) | Feb 19, 2022 | | HP | Pavilion Laptop 14-ce0xx... | Notebook | [44210b95fe](https://linux-hardware.org/?probe=44210b95fe) | Feb 19, 2022 | | Intel | DH61BE AAG14062-210 | Desktop | [00566bb73f](https://linux-hardware.org/?probe=00566bb73f) | Feb 19, 2022 | | MSI | B85I | Desktop | [633f6bf495](https://linux-hardware.org/?probe=633f6bf495) | Feb 19, 2022 | | Lenovo | IdeaPad 5 15ARE05 81YQ | Notebook | [da54df3fd4](https://linux-hardware.org/?probe=da54df3fd4) | Feb 19, 2022 | | Lenovo | IdeaPad 5 15ARE05 81YQ | Notebook | [05cb921db2](https://linux-hardware.org/?probe=05cb921db2) | Feb 19, 2022 | | ASUSTek | M11AD | Desktop | [035887c4ab](https://linux-hardware.org/?probe=035887c4ab) | Feb 18, 2022 | | MSI | Modern 14 B10MW | Notebook | [beb5ff195a](https://linux-hardware.org/?probe=beb5ff195a) | Feb 18, 2022 | | ASUSTek | P5B | Desktop | [fa4c095fd7](https://linux-hardware.org/?probe=fa4c095fd7) | Feb 17, 2022 | | Intel | H61 | Desktop | [a70c59ad0e](https://linux-hardware.org/?probe=a70c59ad0e) | Feb 17, 2022 | | Packard Be... | EasyNote LS11HR | Notebook | [d8b9f8edb0](https://linux-hardware.org/?probe=d8b9f8edb0) | Feb 17, 2022 | | HP | EliteBook 8460p | Notebook | [03dfc41744](https://linux-hardware.org/?probe=03dfc41744) | Feb 16, 2022 | | ASUSTek | PRIME Z590-A | Desktop | [6beda6e2da](https://linux-hardware.org/?probe=6beda6e2da) | Feb 16, 2022 | | Biostar | A68MD PRO | Desktop | [da42cc4da7](https://linux-hardware.org/?probe=da42cc4da7) | Feb 16, 2022 | | Lenovo | ThinkPad T470 20JNS08H00 | Notebook | [f97643f94c](https://linux-hardware.org/?probe=f97643f94c) | Feb 16, 2022 | | Acer | Aspire A315-35 | Notebook | [9986615814](https://linux-hardware.org/?probe=9986615814) | Feb 15, 2022 | | Acer | Swift SF314-56 | Notebook | [a6c7102b14](https://linux-hardware.org/?probe=a6c7102b14) | Feb 14, 2022 | | MSI | B85I | Desktop | [28c1f1b8ae](https://linux-hardware.org/?probe=28c1f1b8ae) | Feb 13, 2022 | | ASUSTek | PRIME Z590-A | Desktop | [825734953d](https://linux-hardware.org/?probe=825734953d) | Feb 13, 2022 | | ASUSTek | X540SA | Notebook | [eba09c169c](https://linux-hardware.org/?probe=eba09c169c) | Feb 13, 2022 | | HUAWEI | MACHD-WXX9 | Notebook | [45c9189643](https://linux-hardware.org/?probe=45c9189643) | Feb 13, 2022 | | ASUSTek | E402NA | Notebook | [ec217b7bd1](https://linux-hardware.org/?probe=ec217b7bd1) | Feb 13, 2022 | | MSI | B85I | Desktop | [898dced271](https://linux-hardware.org/?probe=898dced271) | Feb 13, 2022 | | Dell | Precision 7720 | Notebook | [e5c37c787f](https://linux-hardware.org/?probe=e5c37c787f) | Feb 13, 2022 | | Gigabyte | F2A68HM-H | Desktop | [a2a41e039c](https://linux-hardware.org/?probe=a2a41e039c) | Feb 13, 2022 | | Google | Lulu | Notebook | [5b81b703ea](https://linux-hardware.org/?probe=5b81b703ea) | Feb 13, 2022 | | Gigabyte | F2A68HM-H | Desktop | [2f3941c9cb](https://linux-hardware.org/?probe=2f3941c9cb) | Feb 12, 2022 | | Sony | SVE15115EN | Notebook | [facd08033e](https://linux-hardware.org/?probe=facd08033e) | Feb 12, 2022 | | ASUSTek | PRIME A320M-K | Desktop | [5f4de1e2b0](https://linux-hardware.org/?probe=5f4de1e2b0) | Feb 12, 2022 | | ASUSTek | X550CA | Notebook | [4fc3af48e2](https://linux-hardware.org/?probe=4fc3af48e2) | Feb 12, 2022 | | HP | ProBook 640 G1 | Notebook | [1aeb3957c5](https://linux-hardware.org/?probe=1aeb3957c5) | Feb 12, 2022 | | HP | 255 G8 Notebook PC | Notebook | [aac284c4db](https://linux-hardware.org/?probe=aac284c4db) | Feb 12, 2022 | | Dell | Inspiron 1764 | Notebook | [3b22e2edbb](https://linux-hardware.org/?probe=3b22e2edbb) | Feb 11, 2022 | | LG Electro... | A410-G.BC51P1 | Notebook | [0caedcc26b](https://linux-hardware.org/?probe=0caedcc26b) | Feb 11, 2022 | | Apple | MacBookAir7,1 | Notebook | [39d4765770](https://linux-hardware.org/?probe=39d4765770) | Feb 11, 2022 | | Apple | MacBookAir4,2 | Notebook | [113add3cba](https://linux-hardware.org/?probe=113add3cba) | Feb 10, 2022 | | BANGHO | Suma 1025 | Tablet | [585ea8c657](https://linux-hardware.org/?probe=585ea8c657) | Feb 10, 2022 | | ASUSTek | PRIME B360M-K | Desktop | [698e174402](https://linux-hardware.org/?probe=698e174402) | Feb 09, 2022 | | Apple | MacBookAir4,2 | Notebook | [accb1d4232](https://linux-hardware.org/?probe=accb1d4232) | Feb 09, 2022 | | ASUSTek | H110M-C | Desktop | [82f3d6edf9](https://linux-hardware.org/?probe=82f3d6edf9) | Feb 09, 2022 | | Timi | TM1613 | Notebook | [737c2fcb2f](https://linux-hardware.org/?probe=737c2fcb2f) | Feb 09, 2022 | | MSI | B450I GAMING PLUS AC | Desktop | [a2af859752](https://linux-hardware.org/?probe=a2af859752) | Feb 09, 2022 | | Dell | Inspiron 5481 | Convertible | [1f266a5183](https://linux-hardware.org/?probe=1f266a5183) | Feb 08, 2022 | | ECS | H55H-M | Desktop | [856a42d74b](https://linux-hardware.org/?probe=856a42d74b) | Feb 07, 2022 | | Lenovo | ThinkPad T440p 20AN006NU... | Notebook | [d4fccf53c8](https://linux-hardware.org/?probe=d4fccf53c8) | Feb 07, 2022 | | ASUSTek | VivoBook_ASUSLaptop X409... | Notebook | [87954474ed](https://linux-hardware.org/?probe=87954474ed) | Feb 07, 2022 | | Apple | MacBook5,1 | Notebook | [baa251b3db](https://linux-hardware.org/?probe=baa251b3db) | Feb 07, 2022 | | ASUSTek | ROG STRIX B360-H GAMING | Desktop | [92d9fdcc97](https://linux-hardware.org/?probe=92d9fdcc97) | Feb 07, 2022 | | Lenovo | ThinkPad E550 20DF0040US | Notebook | [ca4c420e00](https://linux-hardware.org/?probe=ca4c420e00) | Feb 07, 2022 | | Lenovo | NO DPK | Desktop | [4bb7cedbd8](https://linux-hardware.org/?probe=4bb7cedbd8) | Feb 06, 2022 | | Apple | MacBookPro6,2 | Notebook | [b298d77ce8](https://linux-hardware.org/?probe=b298d77ce8) | Feb 06, 2022 | | Timi | TM1613 | Notebook | [8d16a0555c](https://linux-hardware.org/?probe=8d16a0555c) | Feb 06, 2022 | | Apple | Mac-942B5BF58194151B | All in one | [f7500c309c](https://linux-hardware.org/?probe=f7500c309c) | Feb 06, 2022 | | Acer | Aspire V5-573PG | Notebook | [0edb115ff8](https://linux-hardware.org/?probe=0edb115ff8) | Feb 05, 2022 | | Acer | Aspire V5-573PG | Notebook | [68595aad84](https://linux-hardware.org/?probe=68595aad84) | Feb 05, 2022 | | Lenovo | G550 2958 | Notebook | [e23451d062](https://linux-hardware.org/?probe=e23451d062) | Feb 05, 2022 | | Lenovo | G550 2958 | Notebook | [a933b9c8f4](https://linux-hardware.org/?probe=a933b9c8f4) | Feb 05, 2022 | | HP | 802E | Desktop | [31e2fe159c](https://linux-hardware.org/?probe=31e2fe159c) | Feb 05, 2022 | | HUAWEI | HVY-WXX9 | Notebook | [7b1b45a8ed](https://linux-hardware.org/?probe=7b1b45a8ed) | Feb 05, 2022 | | HP | 240 G4 | Notebook | [9e7ffa0cf2](https://linux-hardware.org/?probe=9e7ffa0cf2) | Feb 04, 2022 | | ASUSTek | H110M-C | Desktop | [6ba127c715](https://linux-hardware.org/?probe=6ba127c715) | Feb 04, 2022 | | ASUSTek | P5B | Desktop | [9b661f64dd](https://linux-hardware.org/?probe=9b661f64dd) | Feb 04, 2022 | | Foxconn | NETBOX nT-435/535 Ver | Desktop | [c7d50db62b](https://linux-hardware.org/?probe=c7d50db62b) | Feb 03, 2022 | | Foxconn | NETBOX nT-435/535 Ver | Desktop | [2ee2be7ccf](https://linux-hardware.org/?probe=2ee2be7ccf) | Feb 03, 2022 | | HP | 82A5 | Mini pc | [c47d9b3ae0](https://linux-hardware.org/?probe=c47d9b3ae0) | Feb 03, 2022 | | Dell | Inspiron 15-3567 | Notebook | [7e21d67fa5](https://linux-hardware.org/?probe=7e21d67fa5) | Feb 03, 2022 | | HP | ProLiant ML110 G7 | Desktop | [2e1dcafe6c](https://linux-hardware.org/?probe=2e1dcafe6c) | Feb 03, 2022 | | Lenovo | ThinkPad P14s Gen 1 20Y1... | Notebook | [1837325ca2](https://linux-hardware.org/?probe=1837325ca2) | Feb 03, 2022 | | ASUSTek | H110M-C | Desktop | [4d2233f824](https://linux-hardware.org/?probe=4d2233f824) | Feb 03, 2022 | | HP | 339A | Desktop | [cf9dca84ff](https://linux-hardware.org/?probe=cf9dca84ff) | Feb 02, 2022 | | ASUSTek | K95VJ | Notebook | [ebff9950e3](https://linux-hardware.org/?probe=ebff9950e3) | Feb 02, 2022 | | Apple | MacBookAir6,2 | Notebook | [7b7a2f85e0](https://linux-hardware.org/?probe=7b7a2f85e0) | Feb 02, 2022 | | Acer | Aspire S3-391 | Notebook | [87788239d2](https://linux-hardware.org/?probe=87788239d2) | Feb 02, 2022 | | Lenovo | ThinkPad X1 Carbon 6th 2... | Notebook | [2a4563231b](https://linux-hardware.org/?probe=2a4563231b) | Feb 02, 2022 | | Toshiba | Satellite L850D-BJS | Notebook | [d3897cf605](https://linux-hardware.org/?probe=d3897cf605) | Feb 02, 2022 | | HP | Pavilion 13 x360 PC | Notebook | [d2bcb368c1](https://linux-hardware.org/?probe=d2bcb368c1) | Feb 02, 2022 | | PIPO | <NAME> CR | Notebook | [eb92e7ef7f](https://linux-hardware.org/?probe=eb92e7ef7f) | Feb 01, 2022 | | Unknown | Unknown | Desktop | [629972c689](https://linux-hardware.org/?probe=629972c689) | Feb 01, 2022 | | Acer | Swift SF114-32 | Notebook | [1a0b7da0df](https://linux-hardware.org/?probe=1a0b7da0df) | Feb 01, 2022 | | HP | 805D | Desktop | [19295e5827](https://linux-hardware.org/?probe=19295e5827) | Feb 01, 2022 | | Acer | Swift SF114-32 | Notebook | [ce9e5f5d44](https://linux-hardware.org/?probe=ce9e5f5d44) | Feb 01, 2022 | | ASUSTek | H110I-PLUS | Desktop | [ebeaf681e3](https://linux-hardware.org/?probe=ebeaf681e3) | Feb 01, 2022 | | Gigabyte | B75M-D3H | Desktop | [18717f0712](https://linux-hardware.org/?probe=18717f0712) | Feb 01, 2022 | | Lenovo | IdeaPad 330-15ARR 81D2 | Notebook | [b86eb71aa1](https://linux-hardware.org/?probe=b86eb71aa1) | Jan 31, 2022 | | Lenovo | ThinkPad X270 W10DG 20K5... | Notebook | [1f2faf4487](https://linux-hardware.org/?probe=1f2faf4487) | Jan 31, 2022 | | Lenovo | ThinkPad X270 W10DG 20K5... | Notebook | [03cb9013e4](https://linux-hardware.org/?probe=03cb9013e4) | Jan 31, 2022 | | Apple | MacBookPro5,5 | Notebook | [34a7deb292](https://linux-hardware.org/?probe=34a7deb292) | Jan 30, 2022 | | Apple | MacBookPro5,5 | Notebook | [add488b5fe](https://linux-hardware.org/?probe=add488b5fe) | Jan 30, 2022 | | HP | Elite x2 1012 G1 | Notebook | [13b478195a](https://linux-hardware.org/?probe=13b478195a) | Jan 30, 2022 | | Lenovo | IdeaPad Gaming 3 15IMH05... | Notebook | [479381fba6](https://linux-hardware.org/?probe=479381fba6) | Jan 29, 2022 | | Acer | Swift SF314-59 | Notebook | [697f73bc7c](https://linux-hardware.org/?probe=697f73bc7c) | Jan 29, 2022 | | Lenovo | IdeaPad 130-15AST 81H5 | Notebook | [7ab82cc23a](https://linux-hardware.org/?probe=7ab82cc23a) | Jan 29, 2022 | | Lenovo | IdeaPad 130-15AST 81H5 | Notebook | [a015de4156](https://linux-hardware.org/?probe=a015de4156) | Jan 29, 2022 | | Teclast | X6 plus | Tablet | [a84fba541b](https://linux-hardware.org/?probe=a84fba541b) | Jan 29, 2022 | | Apple | MacBookPro9,1 | Notebook | [857a74feaa](https://linux-hardware.org/?probe=857a74feaa) | Jan 28, 2022 | | ASUSTek | X550CA | Notebook | [81cfc7fba7](https://linux-hardware.org/?probe=81cfc7fba7) | Jan 28, 2022 | | HUAWEI | NBLK-WAX9X | Notebook | [61d5b0014e](https://linux-hardware.org/?probe=61d5b0014e) | Jan 28, 2022 | | Acer | Aspire E5-571G | Notebook | [a29ec0cc55](https://linux-hardware.org/?probe=a29ec0cc55) | Jan 28, 2022 | | MSI | Z270 KRAIT GAMING | Desktop | [17ccbf9c76](https://linux-hardware.org/?probe=17ccbf9c76) | Jan 28, 2022 | | Razer | Blade Stealth | Notebook | [6a4fbb1374](https://linux-hardware.org/?probe=6a4fbb1374) | Jan 27, 2022 | | Gigabyte | H61M-DS2 | Desktop | [e800b95c58](https://linux-hardware.org/?probe=e800b95c58) | Jan 26, 2022 | | Microsoft | Surface Go | Tablet | [124dcb4c34](https://linux-hardware.org/?probe=124dcb4c34) | Jan 26, 2022 | | Microsoft | Surface Go | Tablet | [804f9dbb94](https://linux-hardware.org/?probe=804f9dbb94) | Jan 26, 2022 | | ASUSTek | X555LN | Notebook | [8c1e438e47](https://linux-hardware.org/?probe=8c1e438e47) | Jan 26, 2022 | | Apple | MacBookAir1,1 | Notebook | [dfbdc8f20b](https://linux-hardware.org/?probe=dfbdc8f20b) | Jan 25, 2022 | | HP | Laptop 15-ef2xxx | Notebook | [8394958e0e](https://linux-hardware.org/?probe=8394958e0e) | Jan 25, 2022 | | ASRock | H61M-HVS | Desktop | [8fdf1980ee](https://linux-hardware.org/?probe=8fdf1980ee) | Jan 25, 2022 | | ASRock | H61M-HVS | Desktop | [5d19dff1e4](https://linux-hardware.org/?probe=5d19dff1e4) | Jan 25, 2022 | | Acer | ConceptD CM100-51A V:1.1 | Desktop | [663bbd709d](https://linux-hardware.org/?probe=663bbd709d) | Jan 24, 2022 | | Lenovo | G550 20023 | Notebook | [9432cdb859](https://linux-hardware.org/?probe=9432cdb859) | Jan 24, 2022 | | Apple | MacBook5,1 | Notebook | [79cf3b66a3](https://linux-hardware.org/?probe=79cf3b66a3) | Jan 24, 2022 | | Lenovo | G550 2958 | Notebook | [fd2872d2d8](https://linux-hardware.org/?probe=fd2872d2d8) | Jan 24, 2022 | | Apple | MacBookPro8,2 | Notebook | [d1e0923b7a](https://linux-hardware.org/?probe=d1e0923b7a) | Jan 24, 2022 | | HP | EliteBook Folio 1040 G2 | Notebook | [4e3ef7a5a7](https://linux-hardware.org/?probe=4e3ef7a5a7) | Jan 23, 2022 | | HP | EliteBook 840 G1 | Notebook | [37e7b98af1](https://linux-hardware.org/?probe=37e7b98af1) | Jan 23, 2022 | | Apple | MacBookPro9,2 | Notebook | [a5a4652304](https://linux-hardware.org/?probe=a5a4652304) | Jan 23, 2022 | | ASUSTek | ZenBook UX425UG_Q408UG | Notebook | [92991c028e](https://linux-hardware.org/?probe=92991c028e) | Jan 22, 2022 | | Apple | MacBookPro8,3 | Notebook | [fb5a640b14](https://linux-hardware.org/?probe=fb5a640b14) | Jan 22, 2022 | | FIRICH | J1900 | Desktop | [937e24af64](https://linux-hardware.org/?probe=937e24af64) | Jan 22, 2022 | | Lenovo | ThinkPad T470 20JNS08H00 | Notebook | [5007cce576](https://linux-hardware.org/?probe=5007cce576) | Jan 21, 2022 | | ASUSTek | ROG STRIX B360-H GAMING | Desktop | [d1505fe489](https://linux-hardware.org/?probe=d1505fe489) | Jan 21, 2022 | | HP | Pavilion Laptop 15-eh0xx... | Notebook | [db0cc3978c](https://linux-hardware.org/?probe=db0cc3978c) | Jan 21, 2022 | | ASUSTek | VivoBook_ASUSLaptop X512... | Notebook | [7fd85b85b8](https://linux-hardware.org/?probe=7fd85b85b8) | Jan 21, 2022 | | ASUSTek | VivoBook_ASUSLaptop X512... | Notebook | [2c01bf53cb](https://linux-hardware.org/?probe=2c01bf53cb) | Jan 21, 2022 | | Dell | Vostro 3500 | Notebook | [3bf6b408ee](https://linux-hardware.org/?probe=3bf6b408ee) | Jan 21, 2022 | | Fujitsu | LIFEBOOK S760 | Notebook | [f2de9fb609](https://linux-hardware.org/?probe=f2de9fb609) | Jan 20, 2022 | | Fujitsu | LIFEBOOK S760 | Notebook | [0fdf944115](https://linux-hardware.org/?probe=0fdf944115) | Jan 20, 2022 | | Apple | MacBookPro11,5 | Notebook | [0a8fb964eb](https://linux-hardware.org/?probe=0a8fb964eb) | Jan 20, 2022 | | ASUSTek | ROG STRIX X570-E GAMING | Desktop | [75d67cd8a4](https://linux-hardware.org/?probe=75d67cd8a4) | Jan 20, 2022 | | ASUSTek | TUF GAMING B550M-PLUS | Desktop | [7a14d864d4](https://linux-hardware.org/?probe=7a14d864d4) | Jan 20, 2022 | | HP | ProBook 4540s | Notebook | [16794fee23](https://linux-hardware.org/?probe=16794fee23) | Jan 20, 2022 | | ASUSTek | VivoBook_ASUSLaptop X513... | Notebook | [3dd4035494](https://linux-hardware.org/?probe=3dd4035494) | Jan 19, 2022 | | HUAWEI | MACHD-WXX9 | Notebook | [df4c38dba6](https://linux-hardware.org/?probe=df4c38dba6) | Jan 19, 2022 | | Lenovo | IdeaPad 5 14ARE05 81YM | Notebook | [3088724103](https://linux-hardware.org/?probe=3088724103) | Jan 19, 2022 | | ASUSTek | TUF B365M-PLUS GAMING | Desktop | [ec51f5ca3e](https://linux-hardware.org/?probe=ec51f5ca3e) | Jan 19, 2022 | | MSI | B450 TOMAHAWK MAX II | Desktop | [488d339e77](https://linux-hardware.org/?probe=488d339e77) | Jan 19, 2022 | | ASUSTek | VivoBook_ASUSLaptop X513... | Notebook | [377afa98c8](https://linux-hardware.org/?probe=377afa98c8) | Jan 19, 2022 | | Dell | Vostro 15 3515 | Notebook | [a0fdaf761c](https://linux-hardware.org/?probe=a0fdaf761c) | Jan 17, 2022 | | ASUSTek | X555LN | Notebook | [f7c8c966dc](https://linux-hardware.org/?probe=f7c8c966dc) | Jan 17, 2022 | | Apple | MacBookPro8,2 | Notebook | [744cfeb340](https://linux-hardware.org/?probe=744cfeb340) | Jan 17, 2022 | | ASUSTek | X555LN | Notebook | [6fba3bb5aa](https://linux-hardware.org/?probe=6fba3bb5aa) | Jan 17, 2022 | | MSI | B450M-A PRO MAX | Desktop | [e7225dad8e](https://linux-hardware.org/?probe=e7225dad8e) | Jan 17, 2022 | | Dell | Latitude E5400 | Notebook | [1303d72d3b](https://linux-hardware.org/?probe=1303d72d3b) | Jan 17, 2022 | | Acer | Swift SF315-52 | Notebook | [1a6e0815fc](https://linux-hardware.org/?probe=1a6e0815fc) | Jan 16, 2022 | | Lenovo | ThinkPad T430 2347JC2 | Notebook | [cac66153bc](https://linux-hardware.org/?probe=cac66153bc) | Jan 16, 2022 | | ASUSTek | X541NA | Notebook | [89459685e9](https://linux-hardware.org/?probe=89459685e9) | Jan 16, 2022 | | ASUSTek | VivoBook_ASUSLaptop X513... | Notebook | [5248d37c26](https://linux-hardware.org/?probe=5248d37c26) | Jan 15, 2022 | | ASUSTek | ZenBook UX425EA_UX425EA | Notebook | [ff75719a4e](https://linux-hardware.org/?probe=ff75719a4e) | Jan 15, 2022 | | HP | ProBook 4430s | Notebook | [e2103ef2d8](https://linux-hardware.org/?probe=e2103ef2d8) | Jan 14, 2022 | | ASUSTek | H61M-CS | Desktop | [8855875fbd](https://linux-hardware.org/?probe=8855875fbd) | Jan 14, 2022 | | HUAWEI | MACHD-WXX9 | Notebook | [fae944592d](https://linux-hardware.org/?probe=fae944592d) | Jan 14, 2022 | | HUAWEI | MACHD-WXX9 | Notebook | [ebdb392f57](https://linux-hardware.org/?probe=ebdb392f57) | Jan 14, 2022 | | Unknown | T3 MRD | Desktop | [33392a90ce](https://linux-hardware.org/?probe=33392a90ce) | Jan 13, 2022 | | MSI | X470 GAMING PLUS MAX | Desktop | [00a00c3cac](https://linux-hardware.org/?probe=00a00c3cac) | Jan 13, 2022 | | ASUSTek | M5A78L-M LX3 | Desktop | [39f3687349](https://linux-hardware.org/?probe=39f3687349) | Jan 12, 2022 | | Lenovo | IdeaPad 310-15IKB 80TV | Notebook | [d8c919f740](https://linux-hardware.org/?probe=d8c919f740) | Jan 12, 2022 | | Foxconn | 2AB1 | Desktop | [07faf9a309](https://linux-hardware.org/?probe=07faf9a309) | Jan 12, 2022 | | Apple | MacBook3,1 | Notebook | [c670d007f3](https://linux-hardware.org/?probe=c670d007f3) | Jan 11, 2022 | | Foxconn | 2AB1 | Desktop | [de61623232](https://linux-hardware.org/?probe=de61623232) | Jan 11, 2022 | | HP | Pavilion Laptop 15-eh0xx... | Notebook | [66d12682ac](https://linux-hardware.org/?probe=66d12682ac) | Jan 10, 2022 | | ASUSTek | H110M-C | Desktop | [be4291793d](https://linux-hardware.org/?probe=be4291793d) | Jan 10, 2022 | | Apple | MacBook5,1 | Notebook | [6a8c354065](https://linux-hardware.org/?probe=6a8c354065) | Jan 10, 2022 | | Gigabyte | X570 AORUS ELITE | Desktop | [7ce29e0c54](https://linux-hardware.org/?probe=7ce29e0c54) | Jan 09, 2022 | | Lenovo | ThinkPad E14 20RAS0EQ00 | Notebook | [ea22270511](https://linux-hardware.org/?probe=ea22270511) | Jan 09, 2022 | | Lenovo | G50-80 80E5 | Notebook | [9d29b20f2d](https://linux-hardware.org/?probe=9d29b20f2d) | Jan 08, 2022 | | HP | 8597 | Desktop | [09ed815dd0](https://linux-hardware.org/?probe=09ed815dd0) | Jan 08, 2022 | | HUAWEI | MACHD-WXX9 | Notebook | [72b280602e](https://linux-hardware.org/?probe=72b280602e) | Jan 07, 2022 | | Sony | VPCEA3S1E | Notebook | [670b7a5d31](https://linux-hardware.org/?probe=670b7a5d31) | Jan 07, 2022 | | Gigabyte | GA-970A-D3 | Desktop | [b1c9832ce6](https://linux-hardware.org/?probe=b1c9832ce6) | Jan 07, 2022 | | ASRock | Z370 Pro4 | Desktop | [51cba69624](https://linux-hardware.org/?probe=51cba69624) | Jan 06, 2022 | | Star Labs | StarBook | Notebook | [bd2b8ba939](https://linux-hardware.org/?probe=bd2b8ba939) | Jan 06, 2022 | | Apple | MacBookPro16,1 | Notebook | [864ecfe029](https://linux-hardware.org/?probe=864ecfe029) | Jan 06, 2022 | | Notebook | W65_67SJ | Notebook | [606e2587dd](https://linux-hardware.org/?probe=606e2587dd) | Jan 06, 2022 | | Lenovo | ThinkPad X1 Carbon Gen 9... | Notebook | [590907f437](https://linux-hardware.org/?probe=590907f437) | Jan 06, 2022 | | ASRock | B450M-HDV R4.0 | Desktop | [20dfc25b62](https://linux-hardware.org/?probe=20dfc25b62) | Jan 05, 2022 | | Apple | Mac-F2218EA9 | All in one | [27756cb751](https://linux-hardware.org/?probe=27756cb751) | Jan 05, 2022 | | MSI | GF63 Thin 9SCSR | Notebook | [21f2a5e1b9](https://linux-hardware.org/?probe=21f2a5e1b9) | Jan 05, 2022 | | Apple | MacBookPro5,5 | Notebook | [a03baba93d](https://linux-hardware.org/?probe=a03baba93d) | Jan 05, 2022 | | Lenovo | ThinkPad T470 W10DG 20JN... | Notebook | [fbb0e6d1d5](https://linux-hardware.org/?probe=fbb0e6d1d5) | Jan 05, 2022 | | Lenovo | Legion Y530-15ICH 81FV | Notebook | [6eab59bbbf](https://linux-hardware.org/?probe=6eab59bbbf) | Jan 05, 2022 | | Lenovo | ThinkPad X1 Carbon 6th 2... | Notebook | [5496b24a51](https://linux-hardware.org/?probe=5496b24a51) | Jan 05, 2022 | | Samsung | 900X3C/900X3D/900X3E/900... | Notebook | [520ced18c4](https://linux-hardware.org/?probe=520ced18c4) | Jan 05, 2022 | | HP | Laptop 15s-eq1xxx | Notebook | [ae2f1bc63c](https://linux-hardware.org/?probe=ae2f1bc63c) | Jan 05, 2022 | | HUAWEI | MACHC-WAX9 | Notebook | [b0df1464a1](https://linux-hardware.org/?probe=b0df1464a1) | Jan 05, 2022 | | Sony | SVE14A390X | Notebook | [3b11d123cf](https://linux-hardware.org/?probe=3b11d123cf) | Jan 04, 2022 | | HP | ProBook 4430s | Notebook | [aafb807fc2](https://linux-hardware.org/?probe=aafb807fc2) | Jan 04, 2022 | | HP | ProBook 4430s | Notebook | [f534b0dd91](https://linux-hardware.org/?probe=f534b0dd91) | Jan 04, 2022 | | Lenovo | ThinkPad W541 20EGS1VV00 | Notebook | [5d88eb323c](https://linux-hardware.org/?probe=5d88eb323c) | Jan 04, 2022 | | Apple | MacBookPro9,2 | Notebook | [a1c3f24aab](https://linux-hardware.org/?probe=a1c3f24aab) | Jan 04, 2022 | | Lenovo | ThinkPad P14s Gen 1 20Y1... | Notebook | [71e992725f](https://linux-hardware.org/?probe=71e992725f) | Jan 04, 2022 | | Lenovo | ThinkPad P14s Gen 1 20Y1... | Notebook | [8087320623](https://linux-hardware.org/?probe=8087320623) | Jan 04, 2022 | | Lenovo | Yoga 300-11IBR 80M1 | Notebook | [b18501f890](https://linux-hardware.org/?probe=b18501f890) | Jan 04, 2022 | | Star Labs | LabTop | Notebook | [043cd26c60](https://linux-hardware.org/?probe=043cd26c60) | Jan 04, 2022 | | HP | ProLiant DL380p Gen8 | Server | [1172390e59](https://linux-hardware.org/?probe=1172390e59) | Jan 04, 2022 | | HUAWEI | KPL-W0X | Notebook | [9d633f7bdb](https://linux-hardware.org/?probe=9d633f7bdb) | Jan 04, 2022 | | Lenovo | ThinkPad L390 Yoga 20NT0... | Convertible | [c91feb11a8](https://linux-hardware.org/?probe=c91feb11a8) | Jan 04, 2022 | | Lenovo | ThinkPad E495 20NE001RTX | Notebook | [79e95e3cb6](https://linux-hardware.org/?probe=79e95e3cb6) | Jan 04, 2022 | | Dell | Precision 5530 | Notebook | [b385c0a16e](https://linux-hardware.org/?probe=b385c0a16e) | Jan 04, 2022 | | Lenovo | IdeaPad 310-15ISK 80SM | Notebook | [023df04f60](https://linux-hardware.org/?probe=023df04f60) | Jan 04, 2022 | | Monster | ABRA A5 V13.2 | Notebook | [6d8d622050](https://linux-hardware.org/?probe=6d8d622050) | Jan 04, 2022 | | MSI | PS63 Modern 8RD | Notebook | [1cd435c54f](https://linux-hardware.org/?probe=1cd435c54f) | Jan 04, 2022 | | Lenovo | Legion Y530-15ICH 81GT | Notebook | [c694c358f9](https://linux-hardware.org/?probe=c694c358f9) | Jan 04, 2022 | | Lenovo | 371C No DPK | All in one | [6c4714d241](https://linux-hardware.org/?probe=6c4714d241) | Jan 04, 2022 | | Lenovo | ThinkPad X13 Gen 1 20UFS... | Notebook | [c61ed9ea15](https://linux-hardware.org/?probe=c61ed9ea15) | Jan 04, 2022 | | HUAWEI | KPL-W0X | Notebook | [1015862a37](https://linux-hardware.org/?probe=1015862a37) | Jan 04, 2022 | | Acidanther... | Mac-42FD25EABCABB274 iMa... | All in one | [545dd570a9](https://linux-hardware.org/?probe=545dd570a9) | Jan 04, 2022 | | Timi | TM1613 | Notebook | [6761bd1e12](https://linux-hardware.org/?probe=6761bd1e12) | Jan 04, 2022 | | Gigabyte | B85M-DS3H-A | Desktop | [cd6abb9f49](https://linux-hardware.org/?probe=cd6abb9f49) | Jan 03, 2022 | | ASUSTek | E202SA | Notebook | [d721e131f4](https://linux-hardware.org/?probe=d721e131f4) | Jan 02, 2022 | | Lenovo | ThinkPad T470 W10DG 20JN... | Notebook | [440d6a1b59](https://linux-hardware.org/?probe=440d6a1b59) | Jan 02, 2022 | | Apple | MacBookPro5,1 | Notebook | [6c7a3affdb](https://linux-hardware.org/?probe=6c7a3affdb) | Jan 02, 2022 | | Dell | Vostro 15 3515 | Notebook | [45b6bf0410](https://linux-hardware.org/?probe=45b6bf0410) | Jan 01, 2022 | | HP | Pavilion Laptop 15-cs0xx... | Notebook | [fb332a2529](https://linux-hardware.org/?probe=fb332a2529) | Jan 01, 2022 | | Acer | Aspire A315-42 | Notebook | [d44b06ec61](https://linux-hardware.org/?probe=d44b06ec61) | Jan 01, 2022 | | HP | EliteBook 8460p | Notebook | [f215102713](https://linux-hardware.org/?probe=f215102713) | Dec 31, 2021 | | MSI | 2A9C | Desktop | [8d08f7f383](https://linux-hardware.org/?probe=8d08f7f383) | Dec 31, 2021 | | Notebook | P65xHP | Notebook | [37db5af302](https://linux-hardware.org/?probe=37db5af302) | Dec 31, 2021 | | HP | EliteBook 8460p | Notebook | [e060f00ff8](https://linux-hardware.org/?probe=e060f00ff8) | Dec 31, 2021 | | Notebook | P65xHP | Notebook | [fc81fedcf3](https://linux-hardware.org/?probe=fc81fedcf3) | Dec 31, 2021 | | Teclast | F7 | Notebook | [44bba02dee](https://linux-hardware.org/?probe=44bba02dee) | Dec 31, 2021 | | HP | 3397 | Desktop | [323dc8992b](https://linux-hardware.org/?probe=323dc8992b) | Dec 31, 2021 | | ASUSTek | X79-DELUXE | Desktop | [00b9dd3788](https://linux-hardware.org/?probe=00b9dd3788) | Dec 30, 2021 | | Wortmann | 1220729_1470271 | Notebook | [018071ac3e](https://linux-hardware.org/?probe=018071ac3e) | Dec 30, 2021 | | HP | 1589 | Desktop | [d123a8de64](https://linux-hardware.org/?probe=d123a8de64) | Dec 30, 2021 | | Foxconn | 2AB1 | Desktop | [bcd6fc46cc](https://linux-hardware.org/?probe=bcd6fc46cc) | Dec 30, 2021 | | Acer | Aspire 7750G | Notebook | [3a24dba335](https://linux-hardware.org/?probe=3a24dba335) | Dec 28, 2021 | | Acer | Aspire 7750G | Notebook | [516cb4e250](https://linux-hardware.org/?probe=516cb4e250) | Dec 28, 2021 | | ASUSTek | X555UB | Notebook | [e0844450ac](https://linux-hardware.org/?probe=e0844450ac) | Dec 28, 2021 | | ASUSTek | TUF GAMING B550M-PLUS | Desktop | [5f67c759fe](https://linux-hardware.org/?probe=5f67c759fe) | Dec 28, 2021 | | Apple | Mac-F4238CC8 PVT | All in one | [829dc5243a](https://linux-hardware.org/?probe=829dc5243a) | Dec 28, 2021 | | Apple | Mac-F4238CC8 PVT | All in one | [352c62bd8f](https://linux-hardware.org/?probe=352c62bd8f) | Dec 28, 2021 | | Dell | Latitude 3580 | Notebook | [f243f4c09e](https://linux-hardware.org/?probe=f243f4c09e) | Dec 27, 2021 | | Apple | Mac-F4238CC8 PVT | All in one | [5d91acd13d](https://linux-hardware.org/?probe=5d91acd13d) | Dec 27, 2021 | | Lenovo | ThinkPad T430 23501M2 | Notebook | [2645817d64](https://linux-hardware.org/?probe=2645817d64) | Dec 26, 2021 | | Gigabyte | Z390 UD | Desktop | [2399fa64ba](https://linux-hardware.org/?probe=2399fa64ba) | Dec 26, 2021 | | HP | EliteBook 850 G2 | Notebook | [a71c970cbf](https://linux-hardware.org/?probe=a71c970cbf) | Dec 25, 2021 | | Apple | MacBookAir7,2 | Notebook | [99bea5df6c](https://linux-hardware.org/?probe=99bea5df6c) | Dec 25, 2021 | | Lenovo | IdeaPad 320-14AST 80XU | Notebook | [80c8feb8bf](https://linux-hardware.org/?probe=80c8feb8bf) | Dec 25, 2021 | | Dell | Inspiron N5050 | Notebook | [211b723554](https://linux-hardware.org/?probe=211b723554) | Dec 24, 2021 | | LG Electro... | A410-G.BC51P1 | Notebook | [b231405a63](https://linux-hardware.org/?probe=b231405a63) | Dec 24, 2021 | | Microsoft | Surface Book 2 | Tablet | [730558c6bd](https://linux-hardware.org/?probe=730558c6bd) | Dec 24, 2021 | | Acer | TravelMate 5760 | Notebook | [71526c7767](https://linux-hardware.org/?probe=71526c7767) | Dec 23, 2021 | | Apple | Mac-F42C88C8 Proto1 | Desktop | [783618fe4b](https://linux-hardware.org/?probe=783618fe4b) | Dec 23, 2021 | | Lenovo | Flex 2-14D 20376 | Notebook | [d950a63316](https://linux-hardware.org/?probe=d950a63316) | Dec 23, 2021 | | Dell | Inspiron 3542 | Notebook | [277f97ef07](https://linux-hardware.org/?probe=277f97ef07) | Dec 23, 2021 | | Dell | XPS 13 9343 | Notebook | [dfbdb618f1](https://linux-hardware.org/?probe=dfbdb618f1) | Dec 23, 2021 | | ASUSTek | H97-PLUS | Desktop | [cba91c2ad2](https://linux-hardware.org/?probe=cba91c2ad2) | Dec 22, 2021 | | ASUSTek | VivoBook_ASUSLaptop X512... | Notebook | [f74c2da103](https://linux-hardware.org/?probe=f74c2da103) | Dec 22, 2021 | | Dell | Precision M3800 | Notebook | [ed44d9ac8c](https://linux-hardware.org/?probe=ed44d9ac8c) | Dec 21, 2021 | | Dell | Inspiron 7405 2n1 | Convertible | [64d2a0328e](https://linux-hardware.org/?probe=64d2a0328e) | Dec 21, 2021 | | Apple | MacBookAir6,1 | Notebook | [b2e3490378](https://linux-hardware.org/?probe=b2e3490378) | Dec 21, 2021 | | Dell | Precision M6500 | Notebook | [931f365c60](https://linux-hardware.org/?probe=931f365c60) | Dec 20, 2021 | | MSI | B450-A PRO MAX | Desktop | [f14eef1ae6](https://linux-hardware.org/?probe=f14eef1ae6) | Dec 20, 2021 | | Gigabyte | H310M S2P | Desktop | [a931eb10f0](https://linux-hardware.org/?probe=a931eb10f0) | Dec 19, 2021 | | Dell | Inspiron 5555 | Notebook | [09d45f017d](https://linux-hardware.org/?probe=09d45f017d) | Dec 18, 2021 | | Foxconn | 2AB1 | Desktop | [d9077a5d94](https://linux-hardware.org/?probe=d9077a5d94) | Dec 18, 2021 | | Foxconn | 2AB1 | Desktop | [b789981cc4](https://linux-hardware.org/?probe=b789981cc4) | Dec 17, 2021 | | Lenovo | V14-ADA 82C6 | Notebook | [a45f76da28](https://linux-hardware.org/?probe=a45f76da28) | Dec 17, 2021 | | ASUSTek | UX410UAK | Notebook | [39dcbe0f57](https://linux-hardware.org/?probe=39dcbe0f57) | Dec 17, 2021 | | Monster | MARKUT M7 V1.x | Notebook | [2d2ed2143e](https://linux-hardware.org/?probe=2d2ed2143e) | Dec 17, 2021 | | Gigabyte | Z590 AORUS ELITE AX | Desktop | [c068e358e8](https://linux-hardware.org/?probe=c068e358e8) | Dec 16, 2021 | | Intel | NUC10i3FNB K61362-305 | Mini pc | [3371572aa9](https://linux-hardware.org/?probe=3371572aa9) | Dec 16, 2021 | | Monster | MARKUT M7 V1.x | Notebook | [2390550c49](https://linux-hardware.org/?probe=2390550c49) | Dec 15, 2021 | | ASUSTek | M5A78L-M LX3 | Desktop | [720cc7a45f](https://linux-hardware.org/?probe=720cc7a45f) | Dec 15, 2021 | | Apple | MacBook4,1 | Notebook | [661e7dae0c](https://linux-hardware.org/?probe=661e7dae0c) | Dec 15, 2021 | | Apple | MacBook4,1 | Notebook | [b682cee818](https://linux-hardware.org/?probe=b682cee818) | Dec 15, 2021 | | Apple | MacBook5,2 | Notebook | [5dcbdab7ca](https://linux-hardware.org/?probe=5dcbdab7ca) | Dec 15, 2021 | System ------ Kernel ------ Version of the Linux kernel ![Kernel](./images/pie_chart/os_kernel.svg) | Version | Computers | Percent | |------------------------|-----------|---------| | 5.11.0-43-generic | 76 | 31.93% | | 5.13.0-28-generic | 52 | 21.85% | | 5.13.0-27-generic | 33 | 13.87% | | 5.13.0-30-generic | 19 | 7.98% | | 5.11.0-44-generic | 17 | 7.14% | | 5.11.0-46-generic | 12 | 5.04% | | 5.11.0-41-generic | 10 | 4.2% | | 5.13.0-25-generic | 3 | 1.26% | | 5.11.0-40-generic | 2 | 0.84% | | 5.8.0-50-generic | 1 | 0.42% | | 5.16.10-051610-generic | 1 | 0.42% | | 5.15.6-surface | 1 | 0.42% | | 5.15.3-xanmod1 | 1 | 0.42% | | 5.15.13-xanmod1 | 1 | 0.42% | | 5.15.12-xanmod1-tt | 1 | 0.42% | | 5.15.11-t2-big-sur | 1 | 0.42% | | 5.15.10-xanmod1 | 1 | 0.42% | | 5.14.10-051410-generic | 1 | 0.42% | | 5.14.0-1011-oem | 1 | 0.42% | | 5.13.0-28-lowlatency | 1 | 0.42% | | 5.13.0-22-generic | 1 | 0.42% | | 5.11.0-43-lowlatency | 1 | 0.42% | | 5.11.0-37-generic | 1 | 0.42% | Kernel Family ------------- Linux kernel without a distro release ![Kernel Family](./images/pie_chart/os_kernel_family.svg) | Version | Computers | Percent | |---------|-----------|---------| | 5.11.0 | 117 | 50.21% | | 5.13.0 | 106 | 45.49% | | 5.8.0 | 1 | 0.43% | | 5.16.10 | 1 | 0.43% | | 5.15.6 | 1 | 0.43% | | 5.15.3 | 1 | 0.43% | | 5.15.13 | 1 | 0.43% | | 5.15.12 | 1 | 0.43% | | 5.15.11 | 1 | 0.43% | | 5.15.10 | 1 | 0.43% | | 5.14.10 | 1 | 0.43% | | 5.14.0 | 1 | 0.43% | Kernel Major Ver. ----------------- Linux kernel major version ![Kernel Major Ver.](./images/pie_chart/os_kernel_major.svg) | Version | Computers | Percent | |---------|-----------|---------| | 5.11 | 117 | 50.21% | | 5.13 | 106 | 45.49% | | 5.15 | 6 | 2.58% | | 5.14 | 2 | 0.86% | | 5.8 | 1 | 0.43% | | 5.16 | 1 | 0.43% | Arch ---- OS architecture (x86_64, i586, etc.) ![Arch](./images/pie_chart/os_arch.svg) | Name | Computers | Percent | |--------|-----------|---------| | x86_64 | 231 | 100% | DE -- Desktop Environment ![DE](./images/pie_chart/os_de.svg) | Name | Computers | Percent | |----------|-----------|---------| | Pantheon | 231 | 100% | Display Server -------------- X11 or Wayland ![Display Server](./images/pie_chart/os_display_server.svg) | Name | Computers | Percent | |------|-----------|---------| | X11 | 231 | 100% | Display Manager --------------- SDDM, LightDM, etc. ![Display Manager](./images/pie_chart/os_display_manager.svg) | Name | Computers | Percent | |---------|-----------|---------| | Unknown | 181 | 78.02% | | LightDM | 50 | 21.55% | | GDM | 1 | 0.43% | OS Lang ------- Language ![OS Lang](./images/pie_chart/os_lang.svg) | Lang | Computers | Percent | |-------|-----------|---------| | en_US | 102 | 44.16% | | de_DE | 39 | 16.88% | | en_GB | 16 | 6.93% | | es_ES | 14 | 6.06% | | fr_FR | 10 | 4.33% | | ru_RU | 9 | 3.9% | | pt_BR | 9 | 3.9% | | pl_PL | 7 | 3.03% | | it_IT | 6 | 2.6% | | pt_PT | 4 | 1.73% | | tr_TR | 2 | 0.87% | | nl_NL | 2 | 0.87% | | en_CA | 2 | 0.87% | | en_AU | 2 | 0.87% | | sv_SE | 1 | 0.43% | | sr_RS | 1 | 0.43% | | ja_JP | 1 | 0.43% | | hu_HU | 1 | 0.43% | | hr_HR | 1 | 0.43% | | fr_CA | 1 | 0.43% | | bg_BG | 1 | 0.43% | Boot Mode --------- EFI or BIOS ![Boot Mode](./images/pie_chart/os_boot_mode.svg) | Mode | Computers | Percent | |------|-----------|---------| | EFI | 159 | 68.83% | | BIOS | 72 | 31.17% | Filesystem ---------- Type of filesystem ![Filesystem](./images/pie_chart/os_filesystem.svg) | Type | Computers | Percent | |---------|-----------|---------| | Ext4 | 222 | 96.1% | | Btrfs | 7 | 3.03% | | Xfs | 1 | 0.43% | | Overlay | 1 | 0.43% | Part. scheme ------------ Scheme of partitioning ![Part. scheme](./images/pie_chart/os_part_scheme.svg) | Type | Computers | Percent | |---------|-----------|---------| | Unknown | 189 | 81.47% | | GPT | 37 | 15.95% | | MBR | 6 | 2.59% | Dual Boot with Linux/BSD ------------------------ Hosting more than one Linux/BSD ![Dual Boot with Linux/BSD](./images/pie_chart/os_dual_boot.svg) | Dual boot | Computers | Percent | |-----------|-----------|---------| | No | 223 | 96.54% | | Yes | 8 | 3.46% | Dual Boot (Win) --------------- Hosting Linux and Windows ![Dual Boot (Win)](./images/pie_chart/os_dual_boot_win.svg) | Dual boot | Computers | Percent | |-----------|-----------|---------| | No | 215 | 93.07% | | Yes | 16 | 6.93% | Board ----- Vendor ------ Motherboard manufacturer ![Vendor](./images/pie_chart/node_vendor.svg) | Name | Computers | Percent | |---------------------|-----------|---------| | ASUSTek Computer | 39 | 16.88% | | Lenovo | 34 | 14.72% | | Hewlett-Packard | 29 | 12.55% | | Apple | 28 | 12.12% | | Dell | 17 | 7.36% | | Acer | 13 | 5.63% | | MSI | 12 | 5.19% | | Gigabyte Technology | 11 | 4.76% | | HUAWEI | 6 | 2.6% | | Sony | 3 | 1.3% | | Samsung Electronics | 3 | 1.3% | | Microsoft | 3 | 1.3% | | Intel | 3 | 1.3% | | ASRock | 3 | 1.3% | | Timi | 2 | 0.87% | | Teclast | 2 | 0.87% | | Star Labs | 2 | 0.87% | | Notebook | 2 | 0.87% | | Monster | 2 | 0.87% | | Foxconn | 2 | 0.87% | | Unknown | 2 | 0.87% | | Wortmann AG | 1 | 0.43% | | Toshiba | 1 | 0.43% | | Razer | 1 | 0.43% | | PIPO | 1 | 0.43% | | <NAME> | 1 | 0.43% | | LG Electronics | 1 | 0.43% | | Google | 1 | 0.43% | | Fujitsu | 1 | 0.43% | | FIRICH | 1 | 0.43% | | ECS | 1 | 0.43% | | Biostar | 1 | 0.43% | | BANGHO | 1 | 0.43% | | Acidanthera | 1 | 0.43% | Model ----- Motherboard model ![Model](./images/pie_chart/node_model.svg) | Name | Computers | Percent | |---------------------------------------------------|-----------|---------| | Apple MacBook5,1 | 4 | 1.73% | | HUAWEI MACHD-WXX9 | 3 | 1.3% | | Timi TM1613 | 2 | 0.87% | | HP EliteBook 8460p | 2 | 0.87% | | Gigabyte Z390 UD | 2 | 0.87% | | Dell Inspiron N5050 | 2 | 0.87% | | ASUS X550CA | 2 | 0.87% | | ASUS TUF GAMING B550M-PLUS | 2 | 0.87% | | ASUS All Series | 2 | 0.87% | | Apple MacBookPro8,2 | 2 | 0.87% | | Apple MacBookPro5,5 | 2 | 0.87% | | Unknown | 2 | 0.87% | | Wortmann AG 1220729_1470271 | 1 | 0.43% | | Toshiba Satellite L850D-BJS | 1 | 0.43% | | Teclast X6 plus | 1 | 0.43% | | Teclast F7 | 1 | 0.43% | | Star Labs StarBook | 1 | 0.43% | | Star Labs LabTop | 1 | 0.43% | | Sony VPCEA3S1E | 1 | 0.43% | | Sony SVE15115EN | 1 | 0.43% | | Sony SVE14A390X | 1 | 0.43% | | Samsung 900X3C/900X3D/900X3E/900X4C/900X4D | 1 | 0.43% | | Samsung 870Z5E/880Z5E/680Z5E | 1 | 0.43% | | Samsung 500R4K/500R5H/5400RK/501R5H/5500RH/500R5S | 1 | 0.43% | | Razer Blade Stealth | 1 | 0.43% | | PIPO W9 | 1 | 0.43% | | Packard Bell EasyNote LS11HR | 1 | 0.43% | | Notebook W65_67SJ | 1 | 0.43% | | Notebook P65xHP | 1 | 0.43% | | MSI PS63 Modern 8RD | 1 | 0.43% | | MSI PPPPP-CCC#MMMMMMMM | 1 | 0.43% | | MSI MS-7C52 | 1 | 0.43% | | MSI MS-7C02 | 1 | 0.43% | | MSI MS-7B86 | 1 | 0.43% | | MSI MS-7B79 | 1 | 0.43% | | MSI MS-7A59 | 1 | 0.43% | | MSI MS-7A40 | 1 | 0.43% | | MSI MS-7851 | 1 | 0.43% | | MSI Modern 14 B4MW | 1 | 0.43% | | MSI Modern 14 B10MW | 1 | 0.43% | | MSI GF63 Thin 9SCSR | 1 | 0.43% | | Monster MARKUT M7 V1.x | 1 | 0.43% | | Monster ABRA A5 V13.2 | 1 | 0.43% | | Microsoft Surface with Windows 8 Pro | 1 | 0.43% | | Microsoft Surface Go | 1 | 0.43% | | Microsoft Surface Book 2 | 1 | 0.43% | | LG A410-G.BC51P1 | 1 | 0.43% | | Lenovo Yoga 300-11IBR 80M1 | 1 | 0.43% | | Lenovo ThinkPad X270 W10DG 20K5S2VL00 | 1 | 0.43% | | Lenovo ThinkPad X13 Gen 1 20UFS00G00 | 1 | 0.43% | | Lenovo ThinkPad X1 Carbon Gen 9 20XWCTO1WW | 1 | 0.43% | | Lenovo ThinkPad X1 Carbon 6th 20KHS1L200 | 1 | 0.43% | | Lenovo ThinkPad X1 Carbon 6th 20KHS0L800 | 1 | 0.43% | | Lenovo ThinkPad W541 20EGS1VV00 | 1 | 0.43% | | Lenovo ThinkPad T470 W10DG 20JNS08H00 | 1 | 0.43% | | Lenovo ThinkPad T470 20JNS08H00 | 1 | 0.43% | | Lenovo ThinkPad T440p 20AN006NUS | 1 | 0.43% | | Lenovo ThinkPad T430 23501M2 | 1 | 0.43% | | Lenovo ThinkPad T430 2347JC2 | 1 | 0.43% | | Lenovo ThinkPad P14s Gen 1 20Y1S00E00 | 1 | 0.43% | Model Family ------------ Motherboard model prefix ![Model Family](./images/pie_chart/node_model_family.svg) | Name | Computers | Percent | |------------------------|-----------|---------| | Lenovo ThinkPad | 17 | 7.36% | | Lenovo IdeaPad | 8 | 3.46% | | Dell Inspiron | 8 | 3.46% | | Acer Aspire | 7 | 3.03% | | HP Pavilion | 5 | 2.16% | | HP EliteBook | 5 | 2.16% | | ASUS VivoBook | 5 | 2.16% | | Apple MacBook5 | 5 | 2.16% | | HP ProBook | 4 | 1.73% | | Dell Precision | 4 | 1.73% | | Acer Swift | 4 | 1.73% | | Microsoft Surface | 3 | 1.3% | | HUAWEI MACHD-WXX9 | 3 | 1.3% | | HP ProDesk | 3 | 1.3% | | HP Laptop | 3 | 1.3% | | ASUS ZenBook | 3 | 1.3% | | ASUS TUF | 3 | 1.3% | | ASUS PRIME | 3 | 1.3% | | Apple MacBookPro8 | 3 | 1.3% | | Apple MacBookPro5 | 3 | 1.3% | | Timi TM1613 | 2 | 0.87% | | MSI Modern | 2 | 0.87% | | Lenovo Legion | 2 | 0.87% | | Lenovo G550 | 2 | 0.87% | | HP ProLiant | 2 | 0.87% | | HP Compaq | 2 | 0.87% | | Gigabyte Z390 | 2 | 0.87% | | Dell Vostro | 2 | 0.87% | | Dell Latitude | 2 | 0.87% | | ASUS X550CA | 2 | 0.87% | | ASUS ROG | 2 | 0.87% | | ASUS All | 2 | 0.87% | | Apple MacBookPro9 | 2 | 0.87% | | Apple MacBookAir7 | 2 | 0.87% | | Apple MacBookAir6 | 2 | 0.87% | | Unknown | 2 | 0.87% | | Wortmann AG 1220729 | 1 | 0.43% | | Toshiba Satellite | 1 | 0.43% | | Teclast X6 | 1 | 0.43% | | Teclast F7 | 1 | 0.43% | | Star Labs StarBook | 1 | 0.43% | | Star Labs LabTop | 1 | 0.43% | | Sony VPCEA3S1E | 1 | 0.43% | | Sony SVE15115EN | 1 | 0.43% | | Sony SVE14A390X | 1 | 0.43% | | Samsung 900X3C | 1 | 0.43% | | Samsung 870Z5E | 1 | 0.43% | | Samsung 500R4K | 1 | 0.43% | | Razer Blade | 1 | 0.43% | | PIPO W9 | 1 | 0.43% | | Packard Bell EasyNote | 1 | 0.43% | | Notebook W65 | 1 | 0.43% | | Notebook P65xHP | 1 | 0.43% | | MSI PS63 | 1 | 0.43% | | MSI PPPPP-CCC#MMMMMMMM | 1 | 0.43% | | MSI MS-7C52 | 1 | 0.43% | | MSI MS-7C02 | 1 | 0.43% | | MSI MS-7B86 | 1 | 0.43% | | MSI MS-7B79 | 1 | 0.43% | | MSI MS-7A59 | 1 | 0.43% | MFG Year -------- Motherboard manufacture year ![MFG Year](./images/pie_chart/node_year.svg) | Year | Computers | Percent | |------|-----------|---------| | 2020 | 29 | 12.55% | | 2018 | 27 | 11.69% | | 2012 | 20 | 8.66% | | 2021 | 19 | 8.23% | | 2015 | 19 | 8.23% | | 2019 | 18 | 7.79% | | 2011 | 16 | 6.93% | | 2016 | 15 | 6.49% | | 2014 | 15 | 6.49% | | 2017 | 13 | 5.63% | | 2013 | 13 | 5.63% | | 2009 | 12 | 5.19% | | 2010 | 9 | 3.9% | | 2008 | 4 | 1.73% | | 2007 | 1 | 0.43% | | 2006 | 1 | 0.43% | Form Factor ----------- Physical design of the computer ![Form Factor](./images/pie_chart/node_formfactor.svg) | Name | Computers | Percent | |-------------|-----------|---------| | Notebook | 156 | 67.53% | | Desktop | 59 | 25.54% | | Tablet | 5 | 2.16% | | All in one | 5 | 2.16% | | Convertible | 3 | 1.3% | | Mini pc | 2 | 0.87% | | Server | 1 | 0.43% | Secure Boot ----------- Enabled or disabled ![Secure Boot](./images/pie_chart/node_secureboot.svg) | State | Computers | Percent | |----------|-----------|---------| | Disabled | 203 | 87.88% | | Enabled | 28 | 12.12% | Coreboot -------- Have coreboot on board ![Coreboot](./images/pie_chart/node_coreboot.svg) | Used | Computers | Percent | |------|-----------|---------| | No | 228 | 98.7% | | Yes | 3 | 1.3% | RAM Size -------- Total RAM memory ![RAM Size](./images/pie_chart/node_ram_total.svg) | Size in GB | Computers | Percent | |-------------|-----------|---------| | 4.01-8.0 | 77 | 33.33% | | 16.01-24.0 | 44 | 19.05% | | 3.01-4.0 | 41 | 17.75% | | 8.01-16.0 | 37 | 16.02% | | 32.01-64.0 | 19 | 8.23% | | 1.01-2.0 | 7 | 3.03% | | 24.01-32.0 | 3 | 1.3% | | 64.01-256.0 | 2 | 0.87% | | 2.01-3.0 | 1 | 0.43% | RAM Used -------- Used RAM memory ![RAM Used](./images/pie_chart/node_ram_used.svg) | Used GB | Computers | Percent | |------------|-----------|---------| | 1.01-2.0 | 84 | 35.44% | | 2.01-3.0 | 72 | 30.38% | | 3.01-4.0 | 35 | 14.77% | | 4.01-8.0 | 26 | 10.97% | | 0.51-1.0 | 10 | 4.22% | | 8.01-16.0 | 9 | 3.8% | | 16.01-24.0 | 1 | 0.42% | Total Drives ------------ Number of drives on board ![Total Drives](./images/pie_chart/node_total_drives.svg) | Drives | Computers | Percent | |--------|-----------|---------| | 1 | 139 | 59.91% | | 2 | 67 | 28.88% | | 3 | 15 | 6.47% | | 4 | 5 | 2.16% | | 5 | 3 | 1.29% | | 7 | 2 | 0.86% | | 6 | 1 | 0.43% | Has CD-ROM ---------- Has CD-ROM on board ![Has CD-ROM](./images/pie_chart/node_has_cdrom.svg) | Presented | Computers | Percent | |-----------|-----------|---------| | No | 151 | 65.09% | | Yes | 81 | 34.91% | Has Ethernet ------------ Has Ethernet on board ![Has Ethernet](./images/pie_chart/node_has_ethernet.svg) | Presented | Computers | Percent | |-----------|-----------|---------| | Yes | 178 | 77.06% | | No | 53 | 22.94% | Has WiFi -------- Has WiFi module ![Has WiFi](./images/pie_chart/node_has_wifi.svg) | Presented | Computers | Percent | |-----------|-----------|---------| | Yes | 194 | 83.98% | | No | 37 | 16.02% | Has Bluetooth ------------- Has Bluetooth module ![Has Bluetooth](./images/pie_chart/node_has_bluetooth.svg) | Presented | Computers | Percent | |-----------|-----------|---------| | Yes | 176 | 76.19% | | No | 55 | 23.81% | Location -------- Country ------- Geographic location (country) ![Country](./images/pie_chart/node_location.svg) | Country | Computers | Percent | |--------------|-----------|---------| | Germany | 36 | 15.58% | | USA | 30 | 12.99% | | India | 14 | 6.06% | | Brazil | 13 | 5.63% | | UK | 12 | 5.19% | | Russia | 10 | 4.33% | | Poland | 9 | 3.9% | | Italy | 8 | 3.46% | | France | 8 | 3.46% | | Turkey | 7 | 3.03% | | Spain | 7 | 3.03% | | Indonesia | 6 | 2.6% | | Canada | 6 | 2.6% | | Austria | 5 | 2.16% | | Australia | 4 | 1.73% | | Argentina | 4 | 1.73% | | Sweden | 3 | 1.3% | | Mexico | 3 | 1.3% | | Belgium | 3 | 1.3% | | Switzerland | 2 | 0.87% | | South Africa | 2 | 0.87% | | Romania | 2 | 0.87% | | Portugal | 2 | 0.87% | | New Zealand | 2 | 0.87% | | Netherlands | 2 | 0.87% | | Japan | 2 | 0.87% | | Iran | 2 | 0.87% | | Czechia | 2 | 0.87% | | Colombia | 2 | 0.87% | | Chile | 2 | 0.87% | | Belarus | 2 | 0.87% | | Ukraine | 1 | 0.43% | | Thailand | 1 | 0.43% | | Taiwan | 1 | 0.43% | | Sri Lanka | 1 | 0.43% | | Serbia | 1 | 0.43% | | Peru | 1 | 0.43% | | Pakistan | 1 | 0.43% | | Mozambique | 1 | 0.43% | | Malaysia | 1 | 0.43% | | Lithuania | 1 | 0.43% | | Latvia | 1 | 0.43% | | Kenya | 1 | 0.43% | | Ireland | 1 | 0.43% | | Hungary | 1 | 0.43% | | Hong Kong | 1 | 0.43% | | Guyana | 1 | 0.43% | | Greece | 1 | 0.43% | | Croatia | 1 | 0.43% | | Bulgaria | 1 | 0.43% | City ---- Geographic location (city) ![City](./images/pie_chart/node_city.svg) | City | Computers | Percent | |--------------------------|-----------|---------| | Warsaw | 4 | 1.69% | | Munich | 4 | 1.69% | | Ankara | 4 | 1.69% | | Vienna | 3 | 1.27% | | Sydney | 3 | 1.27% | | St Petersburg | 3 | 1.27% | | Wolgast | 2 | 0.85% | | Tucson | 2 | 0.85% | | São Paulo | 2 | 0.85% | | Paris | 2 | 0.85% | | Moscow | 2 | 0.85% | | Minsk | 2 | 0.85% | | Madrid | 2 | 0.85% | | Hamburg | 2 | 0.85% | | Dresden | 2 | 0.85% | | Berlin | 2 | 0.85% | | Antalya | 2 | 0.85% | | Znojmo | 1 | 0.42% | | Wroclaw | 1 | 0.42% | | Wriedel | 1 | 0.42% | | Woolloongabba | 1 | 0.42% | | Witbank | 1 | 0.42% | | West Bromwich | 1 | 0.42% | | Wellington | 1 | 0.42% | | Wattala | 1 | 0.42% | | Vitó<NAME> | 1 | 0.42% | | Vinnytsia | 1 | 0.42% | | <NAME> la Geltrú | 1 | 0.42% | | <NAME> | 1 | 0.42% | | Vigodarzere | 1 | 0.42% | | Uppsala | 1 | 0.42% | | Trieste | 1 | 0.42% | | Tongeren | 1 | 0.42% | | Thrissur | 1 | 0.42% | | The Hague | 1 | 0.42% | | Tehran | 1 | 0.42% | | Tecuci | 1 | 0.42% | | Tangerang | 1 | 0.42% | | Surrey | 1 | 0.42% | | Suresnes | 1 | 0.42% | | Surabaya | 1 | 0.42% | | Stronsdorf | 1 | 0.42% | | Stockholm | 1 | 0.42% | | Steinbach | 1 | 0.42% | | Southampton | 1 | 0.42% | | Sornay | 1 | 0.42% | | Soliera | 1 | 0.42% | | Solapur | 1 | 0.42% | | Siersburg | 1 | 0.42% | | Shetland Islands | 1 | 0.42% | | Semarang | 1 | 0.42% | | Scottsdale | 1 | 0.42% | | <NAME> | 1 | 0.42% | | Sazava | 1 | 0.42% | | Sassnitz | 1 | 0.42% | | <NAME>é | 1 | 0.42% | | Santa Clara | 1 | 0.42% | | San Antonio | 1 | 0.42% | | Samobor | 1 | 0.42% | | Saltsjoe-Boo | 1 | 0.42% | Drives ------ Drive Vendor ------------ Hard drive vendors ![Drive Vendor](./images/pie_chart/drive_vendor.svg) | Vendor | Computers | Drives | Percent | |---------------------------|-----------|--------|---------| | Samsung Electronics | 55 | 67 | 16.47% | | WDC | 41 | 54 | 12.28% | | Seagate | 36 | 39 | 10.78% | | Kingston | 24 | 26 | 7.19% | | Sandisk | 22 | 24 | 6.59% | | Crucial | 20 | 21 | 5.99% | | Toshiba | 16 | 18 | 4.79% | | Unknown | 13 | 18 | 3.89% | | Intel | 8 | 9 | 2.4% | | HGST | 8 | 8 | 2.4% | | Apple | 8 | 8 | 2.4% | | SK Hynix | 7 | 7 | 2.1% | | Hitachi | 7 | 7 | 2.1% | | A-DATA Technology | 6 | 6 | 1.8% | | PNY | 5 | 5 | 1.5% | | Unknown | 5 | 6 | 1.5% | | Phison | 4 | 4 | 1.2% | | Transcend | 3 | 3 | 0.9% | | Micron Technology | 3 | 3 | 0.9% | | KIOXIA | 3 | 3 | 0.9% | | ASMT | 3 | 3 | 0.9% | | Teclast | 2 | 2 | 0.6% | | LITEON | 2 | 2 | 0.6% | | KingDian | 2 | 2 | 0.6% | | JMicron | 2 | 2 | 0.6% | | China | 2 | 2 | 0.6% | | TO Exter | 1 | 1 | 0.3% | | Team | 1 | 1 | 0.3% | | Star Drive | 1 | 1 | 0.3% | | Star | 1 | 1 | 0.3% | | SSK | 1 | 1 | 0.3% | | SSDPR-CX | 1 | 1 | 0.3% | | SPCC | 1 | 1 | 0.3% | | Silicon Motion | 1 | 1 | 0.3% | | SABRENT | 1 | 1 | 0.3% | | Realtek Semiconductor | 1 | 1 | 0.3% | | OCZ | 1 | 1 | 0.3% | | Netac | 1 | 1 | 0.3% | | Micron/Crucial Technology | 1 | 1 | 0.3% | | MENGMI | 1 | 1 | 0.3% | | MAXTOR | 1 | 1 | 0.3% | | Leven | 1 | 1 | 0.3% | | KingSpec | 1 | 1 | 0.3% | | Intenso | 1 | 1 | 0.3% | | Hewlett-Packard | 1 | 1 | 0.3% | | GOODRAM | 1 | 1 | 0.3% | | Gigabyte Technology | 1 | 1 | 0.3% | | Fujitsu | 1 | 1 | 0.3% | | Ext Hard | 1 | 1 | 0.3% | | Corsair | 1 | 1 | 0.3% | | Colorful | 1 | 1 | 0.3% | | asmedia | 1 | 1 | 0.3% | | Apacer | 1 | 1 | 0.3% | Drive Model ----------- Hard drive models ![Drive Model](./images/pie_chart/drive_model.svg) | Model | Computers | Percent | |----------------------------------------|-----------|---------| | Samsung SM963 2.5" NVMe PCIe SSD 256GB | 6 | 1.69% | | Samsung NVMe SSD Drive 512GB | 6 | 1.69% | | Seagate ST1000LM035-1RK172 1TB | 5 | 1.4% | | Kingston SA400S37240G 240GB SSD | 5 | 1.4% | | Unknown | 5 | 1.4% | | Samsung SSD 850 EVO 250GB | 4 | 1.12% | | Samsung NVMe SSD Drive 500GB | 4 | 1.12% | | Kingston SA400S37120G 120GB SSD | 4 | 1.12% | | Intel NVMe SSD Drive 512GB | 4 | 1.12% | | Crucial CT240BX500SSD1 240GB | 4 | 1.12% | | WDC WDS240G2G0A-00JH30 240GB SSD | 3 | 0.84% | | Toshiba MQ04ABF100 1TB | 3 | 0.84% | | Toshiba KBG30ZMS128G 128GB NVMe SSD | 3 | 0.84% | | Seagate ST1000LM024 HN-M101MBB 1TB | 3 | 0.84% | | Sandisk NVMe SSD Drive 512GB | 3 | 0.84% | | PNY CS900 480GB SSD | 3 | 0.84% | | Kingston NVMe SSD Drive 500GB | 3 | 0.84% | | Crucial CT1000MX500SSD1 1TB | 3 | 0.84% | | WDC WD5000LPVX-75V0TT0 500GB | 2 | 0.56% | | WDC WD5000AAKX-00ERMA0 500GB | 2 | 0.56% | | Unknown SD/MMC 16GB | 2 | 0.56% | | Unknown MMC Card 32GB | 2 | 0.56% | | Unknown MMC Card 128GB | 2 | 0.56% | | Unknown M.S./M.S.Pro/HG 16GB | 2 | 0.56% | | Toshiba MQ01ABF050 500GB | 2 | 0.56% | | Toshiba HDWD110 1TB | 2 | 0.56% | | Toshiba DT01ACA050 500GB | 2 | 0.56% | | SK Hynix NVMe SSD Drive 512GB | 2 | 0.56% | | SK Hynix NVMe SSD Drive 256GB | 2 | 0.56% | | Seagate ST9500325AS 500GB | 2 | 0.56% | | Seagate ST500LT012-1DG142 500GB | 2 | 0.56% | | Seagate ST1000DM003-1ER162 1TB | 2 | 0.56% | | Seagate OneTouch HDD 4TB | 2 | 0.56% | | Seagate Expansion Desk 8TB | 2 | 0.56% | | SanDisk SD9SN8W-128G-1006 128GB SSD | 2 | 0.56% | | SanDisk SD8SN8U-256G-1006 256GB SSD | 2 | 0.56% | | Samsung SSD 860 EVO 1TB | 2 | 0.56% | | Samsung SSD 850 EVO 120GB | 2 | 0.56% | | Samsung SSD 840 EVO 120GB | 2 | 0.56% | | Samsung NVMe SSD Drive 1TB | 2 | 0.56% | | Samsung NVMe SSD Drive 1024GB | 2 | 0.56% | | Samsung MZNLN128HAHQ-000H1 128GB SSD | 2 | 0.56% | | Samsung HD322HJ 320GB | 2 | 0.56% | | PNY CS900 120GB SSD | 2 | 0.56% | | Phison NVMe SSD Drive 1TB | 2 | 0.56% | | Kingston NVMe SSD Drive 1TB | 2 | 0.56% | | JMicron Tech 250GB | 2 | 0.56% | | Hitachi HTS547575A9E384 752GB | 2 | 0.56% | | HGST HTS545050A7E380 500GB | 2 | 0.56% | | HGST HTS541010B7E610 1TB | 2 | 0.56% | | Crucial CT480BX500SSD1 480GB | 2 | 0.56% | | Crucial CT250MX500SSD1 250GB | 2 | 0.56% | | Crucial CT120BX500SSD1 120GB | 2 | 0.56% | | WDC WDS500G2B0A-00SM50 500GB SSD | 1 | 0.28% | | WDC WDS480G2G0A-00JH30 480GB SSD | 1 | 0.28% | | WDC WDS250G1B0A-00H9H0 250GB SSD | 1 | 0.28% | | WDC WDS200T2B0A-00SM50 2TB SSD | 1 | 0.28% | | WDC WDS120G2G0A-00JH30 120GB SSD | 1 | 0.28% | | WDC WD7500BPVT-22A1YT0 752GB | 1 | 0.28% | | WDC WD6401AALS-00L3B2 640GB | 1 | 0.28% | HDD Vendor ---------- Hard disk drive vendors ![HDD Vendor](./images/pie_chart/drive_hdd_vendor.svg) | Vendor | Computers | Drives | Percent | |---------------------|-----------|--------|---------| | Seagate | 35 | 38 | 34.31% | | WDC | 31 | 38 | 30.39% | | Toshiba | 11 | 12 | 10.78% | | HGST | 8 | 8 | 7.84% | | Hitachi | 7 | 7 | 6.86% | | Samsung Electronics | 2 | 3 | 1.96% | | ASMT | 2 | 2 | 1.96% | | Unknown | 1 | 1 | 0.98% | | SABRENT | 1 | 1 | 0.98% | | Hewlett-Packard | 1 | 1 | 0.98% | | Fujitsu | 1 | 1 | 0.98% | | Ext Hard | 1 | 1 | 0.98% | | Apple | 1 | 1 | 0.98% | SSD Vendor ---------- Solid state drive vendors ![SSD Vendor](./images/pie_chart/drive_ssd_vendor.svg) | Vendor | Computers | Drives | Percent | |---------------------|-----------|--------|---------| | Samsung Electronics | 32 | 37 | 23.36% | | Crucial | 20 | 21 | 14.6% | | SanDisk | 15 | 17 | 10.95% | | Kingston | 14 | 15 | 10.22% | | WDC | 8 | 12 | 5.84% | | Apple | 6 | 6 | 4.38% | | PNY | 5 | 5 | 3.65% | | A-DATA Technology | 5 | 5 | 3.65% | | Transcend | 3 | 3 | 2.19% | | Micron Technology | 3 | 3 | 2.19% | | Teclast | 2 | 2 | 1.46% | | LITEON | 2 | 2 | 1.46% | | Intel | 2 | 2 | 1.46% | | China | 2 | 2 | 1.46% | | Toshiba | 1 | 1 | 0.73% | | TO Exter | 1 | 1 | 0.73% | | Team | 1 | 1 | 0.73% | | Star | 1 | 1 | 0.73% | | SPCC | 1 | 1 | 0.73% | | OCZ | 1 | 1 | 0.73% | | MENGMI | 1 | 1 | 0.73% | | MAXTOR | 1 | 1 | 0.73% | | Leven | 1 | 1 | 0.73% | | KingSpec | 1 | 1 | 0.73% | | KingDian | 1 | 1 | 0.73% | | Intenso | 1 | 1 | 0.73% | | GOODRAM | 1 | 1 | 0.73% | | Gigabyte Technology | 1 | 1 | 0.73% | | Corsair | 1 | 1 | 0.73% | | Colorful | 1 | 1 | 0.73% | | Apacer | 1 | 1 | 0.73% | | Unknown | 1 | 1 | 0.73% | Drive Kind ---------- HDD or SSD ![Drive Kind](./images/pie_chart/drive_kind.svg) | Kind | Computers | Drives | Percent | |---------|-----------|--------|---------| | SSD | 125 | 150 | 39.68% | | HDD | 92 | 114 | 29.21% | | NVMe | 73 | 81 | 23.17% | | Unknown | 13 | 17 | 4.13% | | MMC | 12 | 14 | 3.81% | Drive Connector --------------- SATA, SAS, NVMe, etc. ![Drive Connector](./images/pie_chart/drive_bus.svg) | Type | Computers | Drives | Percent | |------|-----------|--------|---------| | SATA | 178 | 256 | 62.9% | | NVMe | 73 | 81 | 25.8% | | SAS | 20 | 25 | 7.07% | | MMC | 12 | 14 | 4.24% | Drive Size ---------- Size of hard drive ![Drive Size](./images/pie_chart/drive_size.svg) | Size in TB | Computers | Drives | Percent | |------------|-----------|--------|---------| | 0.01-0.5 | 136 | 178 | 66.02% | | 0.51-1.0 | 45 | 56 | 21.84% | | 1.01-2.0 | 13 | 17 | 6.31% | | 3.01-4.0 | 6 | 6 | 2.91% | | 4.01-10.0 | 4 | 4 | 1.94% | | 2.01-3.0 | 2 | 3 | 0.97% | Space Total ----------- Amount of disk space available on the file system ![Space Total](./images/pie_chart/drive_space_total.svg) | Size in GB | Computers | Percent | |----------------|-----------|---------| | 101-250 | 92 | 39.66% | | 251-500 | 66 | 28.45% | | 501-1000 | 27 | 11.64% | | 51-100 | 19 | 8.19% | | 1001-2000 | 13 | 5.6% | | 21-50 | 8 | 3.45% | | More than 3000 | 6 | 2.59% | | 2001-3000 | 1 | 0.43% | Space Used ---------- Amount of used disk space ![Space Used](./images/pie_chart/drive_space_used.svg) | Used GB | Computers | Percent | |----------------|-----------|---------| | 1-20 | 107 | 45.53% | | 21-50 | 56 | 23.83% | | 51-100 | 25 | 10.64% | | 101-250 | 24 | 10.21% | | 251-500 | 10 | 4.26% | | 501-1000 | 6 | 2.55% | | 1001-2000 | 4 | 1.7% | | 2001-3000 | 2 | 0.85% | | More than 3000 | 1 | 0.43% | Malfunc. Drives --------------- Drive models with a malfunction ![Malfunc. Drives](./images/pie_chart/drive_malfunc.svg) | Model | Computers | Drives | Percent | |---------------------------------|-----------|--------|---------| | WDC WD10SPZX-24Z10 1TB | 1 | 1 | 20% | | Toshiba KBG30ZPZ128G 128GB | 1 | 1 | 20% | | Seagate ST500LM030-2E717D 500GB | 1 | 1 | 20% | | Seagate ST3500312CS 500GB | 1 | 1 | 20% | | Crucial CT512M550SSD3 512GB | 1 | 1 | 20% | Malfunc. Drive Vendor --------------------- Vendors of faulty drives ![Malfunc. Drive Vendor](./images/pie_chart/drive_malfunc_vendor.svg) | Vendor | Computers | Drives | Percent | |---------|-----------|--------|---------| | Seagate | 2 | 2 | 40% | | WDC | 1 | 1 | 20% | | Toshiba | 1 | 1 | 20% | | Crucial | 1 | 1 | 20% | Malfunc. HDD Vendor ------------------- Vendors of faulty HDD drives ![Malfunc. HDD Vendor](./images/pie_chart/drive_malfunc_hdd_vendor.svg) | Vendor | Computers | Drives | Percent | |---------|-----------|--------|---------| | Seagate | 2 | 2 | 66.67% | | WDC | 1 | 1 | 33.33% | Malfunc. Drive Kind ------------------- Kinds of faulty drives ![Malfunc. Drive Kind](./images/pie_chart/drive_malfunc_kind.svg) | Kind | Computers | Drives | Percent | |------|-----------|--------|---------| | HDD | 3 | 3 | 60% | | NVMe | 1 | 1 | 20% | | SSD | 1 | 1 | 20% | Failed Drives ------------- Failed drive models Zero info for selected period =( Failed Drive Vendor ------------------- Failed drive vendors Zero info for selected period =( Drive Status ------------ Number of failed and malfunc. drives ![Drive Status](./images/pie_chart/drive_status.svg) | Status | Computers | Drives | Percent | |----------|-----------|--------|---------| | Detected | 202 | 313 | 82.11% | | Works | 39 | 58 | 15.85% | | Malfunc | 5 | 5 | 2.03% | Storage controller ------------------ Storage Vendor -------------- Storage controller vendors ![Storage Vendor](./images/pie_chart/storage_vendor.svg) | Vendor | Computers | Percent | |------------------------------|-----------|---------| | Intel | 155 | 55.36% | | AMD | 35 | 12.5% | | Samsung Electronics | 27 | 9.64% | | Nvidia | 11 | 3.93% | | Kingston Technology Company | 11 | 3.93% | | Sandisk | 10 | 3.57% | | SK Hynix | 7 | 2.5% | | Phison Electronics | 5 | 1.79% | | Toshiba America Info Systems | 4 | 1.43% | | Marvell Technology Group | 3 | 1.07% | | Realtek Semiconductor | 2 | 0.71% | | KIOXIA | 2 | 0.71% | | ASMedia Technology | 2 | 0.71% | | Silicon Motion | 1 | 0.36% | | Seagate Technology | 1 | 0.36% | | Micron/Crucial Technology | 1 | 0.36% | | JMicron Technology | 1 | 0.36% | | Hewlett-Packard | 1 | 0.36% | | Apple | 1 | 0.36% | Storage Model ------------- Storage controller models ![Storage Model](./images/pie_chart/storage_model.svg) | Model | Computers | Percent | |-----------------------------------------------------------------------------------------|-----------|---------| | AMD FCH SATA Controller [AHCI mode] | 25 | 8.17% | | Intel Sunrise Point-LP SATA Controller [AHCI mode] | 15 | 4.9% | | Intel 7 Series Chipset Family 6-port SATA Controller [AHCI mode] | 14 | 4.58% | | Samsung NVMe SSD Controller SM981/PM981/PM983 | 12 | 3.92% | | Intel 6 Series/C200 Series Chipset Family 6 port Mobile SATA AHCI Controller | 11 | 3.59% | | Intel 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode] | 10 | 3.27% | | Samsung NVMe SSD Controller 980 | 8 | 2.61% | | Nvidia MCP79 AHCI Controller | 8 | 2.61% | | AMD 400 Series Chipset SATA Controller | 8 | 2.61% | | Intel Wildcat Point-LP SATA Controller [AHCI Mode] | 7 | 2.29% | | Intel Q170/Q150/B150/H170/H110/Z170/CM236 Chipset SATA Controller [AHCI Mode] | 6 | 1.96% | | Intel Cannon Lake PCH SATA AHCI Controller | 6 | 1.96% | | Intel 82801 Mobile SATA Controller [RAID mode] | 6 | 1.96% | | Intel 8 Series SATA Controller 1 [AHCI mode] | 6 | 1.96% | | Intel 6 Series/C200 Series Chipset Family 6 port Desktop SATA AHCI Controller | 6 | 1.96% | | Intel SSD 660P Series | 5 | 1.63% | | Intel Comet Lake SATA AHCI Controller | 5 | 1.63% | | Intel Cannon Lake Mobile PCH SATA AHCI Controller | 5 | 1.63% | | Intel Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series SATA Controller | 5 | 1.63% | | Intel 200 Series PCH SATA controller [AHCI mode] | 5 | 1.63% | | Kingston Company A2000 NVMe SSD | 4 | 1.31% | | Intel Celeron/Pentium Silver Processor SATA Controller | 4 | 1.31% | | Intel 82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode] | 4 | 1.31% | | Toshiba America Info Systems BG3 NVMe SSD Controller | 3 | 0.98% | | SK Hynix BC511 | 3 | 0.98% | | Sandisk WD Blue SN550 NVMe SSD | 3 | 0.98% | | Samsung NVMe SSD Controller SM951/PM951 | 3 | 0.98% | | Intel Volume Management Device NVMe RAID Controller | 3 | 0.98% | | Intel Celeron N3350/Pentium N4200/Atom E3900 Series SATA AHCI Controller | 3 | 0.98% | | Intel 82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [AHCI mode] | 3 | 0.98% | | Intel 82801HM/HEM (ICH8M/ICH8M-E) IDE Controller | 3 | 0.98% | | Intel 7 Series/C210 Series Chipset Family 6-port SATA Controller [AHCI mode] | 3 | 0.98% | | Intel 5 Series/3400 Series Chipset 6 port SATA AHCI Controller | 3 | 0.98% | | Intel 5 Series/3400 Series Chipset 4 port SATA IDE Controller | 3 | 0.98% | | Intel 5 Series/3400 Series Chipset 4 port SATA AHCI Controller | 3 | 0.98% | | Intel 5 Series/3400 Series Chipset 2 port SATA IDE Controller | 3 | 0.98% | | Sandisk WD Blue SN500 / PC SN520 NVMe SSD | 2 | 0.65% | | Sandisk WD Black SN750 / PC SN730 NVMe SSD | 2 | 0.65% | | Sandisk WD Black 2018/SN750 / PC SN720 NVMe SSD | 2 | 0.65% | | Samsung Electronics SATA controller | 2 | 0.65% | | Phison E16 PCIe4 NVMe Controller | 2 | 0.65% | | Phison E12 NVMe Controller | 2 | 0.65% | | KIOXIA Non-Volatile memory controller | 2 | 0.65% | | Kingston Company U-SNS8154P3 NVMe SSD | 2 | 0.65% | | Kingston Company OM3PDP3 NVMe SSD | 2 | 0.65% | | Intel Atom Processor E3800 Series SATA AHCI Controller | 2 | 0.65% | | Intel 6 Series/C200 Series Chipset Family Desktop SATA Controller (IDE mode, ports 4-5) | 2 | 0.65% | | Intel 6 Series/C200 Series Chipset Family Desktop SATA Controller (IDE mode, ports 0-3) | 2 | 0.65% | | Intel 500 Series Chipset Family SATA AHCI Controller | 2 | 0.65% | | ASMedia ASM1062 Serial ATA Controller | 2 | 0.65% | | AMD Starship/Matisse Chipset SATA Controller [AHCI mode] | 2 | 0.65% | | AMD SB7x0/SB8x0/SB9x0 SATA Controller [IDE mode] | 2 | 0.65% | | AMD SB7x0/SB8x0/SB9x0 IDE Controller | 2 | 0.65% | | AMD FCH SATA Controller [IDE mode] | 2 | 0.65% | | Toshiba America Info Systems XG6 NVMe SSD Controller | 1 | 0.33% | | SK Hynix PC401 NVMe Solid State Drive 256GB | 1 | 0.33% | | SK Hynix Non-Volatile memory controller | 1 | 0.33% | | SK Hynix Gold P31 SSD | 1 | 0.33% | | SK Hynix BC501 NVMe Solid State Drive | 1 | 0.33% | | Silicon Motion Non-Volatile memory controller | 1 | 0.33% | Storage Kind ------------ Kind of storage controller (IDE, SATA, NVMe, SAS, ...) ![Storage Kind](./images/pie_chart/storage_kind.svg) | Kind | Computers | Percent | |------|-----------|---------| | SATA | 184 | 64.34% | | NVMe | 72 | 25.17% | | IDE | 18 | 6.29% | | RAID | 11 | 3.85% | | SAS | 1 | 0.35% | Processor --------- CPU Vendor ---------- Processor vendors ![CPU Vendor](./images/pie_chart/cpu_vendor.svg) | Vendor | Computers | Percent | |--------|-----------|---------| | Intel | 185 | 80.09% | | AMD | 46 | 19.91% | CPU Model --------- Processor models ![CPU Model](./images/pie_chart/cpu_model.svg) | Model | Computers | Percent | |-------------------------------------------------|-----------|---------| | Intel 11th Gen Core i7-1165G7 @ 2.80GHz | 6 | 2.6% | | Intel Core i7-8565U CPU @ 1.80GHz | 4 | 1.73% | | Intel Core i7-8550U CPU @ 1.80GHz | 4 | 1.73% | | Intel Core i5-6200U CPU @ 2.30GHz | 4 | 1.73% | | Intel Core i7-5500U CPU @ 2.40GHz | 3 | 1.3% | | Intel Core i5-2520M CPU @ 2.50GHz | 3 | 1.3% | | Intel Core i5-10210U CPU @ 1.60GHz | 3 | 1.3% | | Intel Core i3-10110U CPU @ 2.10GHz | 3 | 1.3% | | Intel Core 2 Duo CPU P7350 @ 2.00GHz | 3 | 1.3% | | Intel Celeron CPU N3050 @ 1.60GHz | 3 | 1.3% | | AMD Ryzen 7 PRO 4750U with Radeon Graphics | 3 | 1.3% | | AMD Ryzen 7 4700U with Radeon Graphics | 3 | 1.3% | | AMD Ryzen 5 5500U with Radeon Graphics | 3 | 1.3% | | AMD Ryzen 5 3500U with Radeon Vega Mobile Gfx | 3 | 1.3% | | Intel Core i7-9700 CPU @ 3.00GHz | 2 | 0.87% | | Intel Core i7-8750H CPU @ 2.20GHz | 2 | 0.87% | | Intel Core i7-7700HQ CPU @ 2.80GHz | 2 | 0.87% | | Intel Core i7-2670QM CPU @ 2.20GHz | 2 | 0.87% | | Intel Core i5-8400 CPU @ 2.80GHz | 2 | 0.87% | | Intel Core i5-7200U CPU @ 2.50GHz | 2 | 0.87% | | Intel Core i5-6300U CPU @ 2.40GHz | 2 | 0.87% | | Intel Core i5-5300U CPU @ 2.30GHz | 2 | 0.87% | | Intel Core i5-4260U CPU @ 1.40GHz | 2 | 0.87% | | Intel Core i5-3470 CPU @ 3.20GHz | 2 | 0.87% | | Intel Core i5-3317U CPU @ 1.70GHz | 2 | 0.87% | | Intel Core i5 CPU M 520 @ 2.40GHz | 2 | 0.87% | | Intel Core i3-8145U CPU @ 2.10GHz | 2 | 0.87% | | Intel Core i3 CPU M 350 @ 2.27GHz | 2 | 0.87% | | Intel Core 2 Duo CPU P8600 @ 2.40GHz | 2 | 0.87% | | Intel 11th Gen Core i7-11700K @ 3.60GHz | 2 | 0.87% | | Intel 11th Gen Core i5-1135G7 @ 2.40GHz | 2 | 0.87% | | AMD Ryzen 9 3900X 12-Core Processor | 2 | 0.87% | | AMD Ryzen 7 3700X 8-Core Processor | 2 | 0.87% | | AMD Ryzen 5 4500U with Radeon Graphics | 2 | 0.87% | | AMD Ryzen 5 2600 Six-Core Processor | 2 | 0.87% | | AMD Ryzen 5 2500U with Radeon Vega Mobile Gfx | 2 | 0.87% | | AMD A12-9720P RADEON R7, 12 COMPUTE CORES 4C+8G | 2 | 0.87% | | Intel Xeon CPU E5462 @ 2.80GHz | 1 | 0.43% | | Intel Xeon CPU E5-2690 0 @ 2.90GHz | 1 | 0.43% | | Intel Xeon CPU E5-2670 0 @ 2.60GHz | 1 | 0.43% | | Intel Xeon CPU E31240 @ 3.30GHz | 1 | 0.43% | | Intel Pentium Silver N5030 CPU @ 1.10GHz | 1 | 0.43% | | Intel Pentium Dual-Core CPU T4400 @ 2.20GHz | 1 | 0.43% | | Intel Pentium Dual-Core CPU T4200 @ 2.00GHz | 1 | 0.43% | | Intel Pentium CPU N4200 @ 1.10GHz | 1 | 0.43% | | Intel Pentium CPU N3700 @ 1.60GHz | 1 | 0.43% | | Intel Pentium CPU G630 @ 2.70GHz | 1 | 0.43% | | Intel Pentium CPU 4415Y @ 1.60GHz | 1 | 0.43% | | Intel Core m5-6Y57 CPU @ 1.10GHz | 1 | 0.43% | | Intel Core i7-9750H CPU @ 2.60GHz | 1 | 0.43% | | Intel Core i7-9700K CPU @ 3.60GHz | 1 | 0.43% | | Intel Core i7-8850H CPU @ 2.60GHz | 1 | 0.43% | | Intel Core i7-8650U CPU @ 1.90GHz | 1 | 0.43% | | Intel Core i7-7700K CPU @ 4.20GHz | 1 | 0.43% | | Intel Core i7-7500U CPU @ 2.70GHz | 1 | 0.43% | | Intel Core i7-6820HQ CPU @ 2.70GHz | 1 | 0.43% | | Intel Core i7-6700K CPU @ 4.00GHz | 1 | 0.43% | | Intel Core i7-6700 CPU @ 3.40GHz | 1 | 0.43% | | Intel Core i7-6500U CPU @ 2.50GHz | 1 | 0.43% | | Intel Core i7-5650U CPU @ 2.20GHz | 1 | 0.43% | CPU Model Family ---------------- Processor model prefix ![CPU Model Family](./images/pie_chart/cpu_family.svg) | Model | Computers | Percent | |-------------------------|-----------|---------| | Intel Core i7 | 51 | 22.08% | | Intel Core i5 | 50 | 21.65% | | Intel Core i3 | 27 | 11.69% | | Intel Celeron | 16 | 6.93% | | AMD Ryzen 5 | 15 | 6.49% | | Intel Core 2 Duo | 14 | 6.06% | | Other | 12 | 5.19% | | AMD Ryzen 7 | 9 | 3.9% | | Intel Xeon | 4 | 1.73% | | Intel Pentium | 4 | 1.73% | | Intel Atom | 3 | 1.3% | | AMD Ryzen 7 PRO | 3 | 1.3% | | AMD Ryzen 3 | 3 | 1.3% | | AMD Phenom II X4 | 3 | 1.3% | | Intel Pentium Dual-Core | 2 | 0.87% | | AMD Ryzen 9 | 2 | 0.87% | | AMD A8 | 2 | 0.87% | | AMD A12 | 2 | 0.87% | | AMD A10 | 2 | 0.87% | | Intel Pentium Silver | 1 | 0.43% | | Intel Core m5 | 1 | 0.43% | | Intel Core 2 Quad | 1 | 0.43% | | Intel Celeron Dual-Core | 1 | 0.43% | | AMD FX | 1 | 0.43% | | AMD Athlon | 1 | 0.43% | | AMD A6 | 1 | 0.43% | CPU Cores --------- Number of processor cores ![CPU Cores](./images/pie_chart/cpu_cores.svg) | Number | Computers | Percent | |--------|-----------|---------| | 2 | 105 | 45.45% | | 4 | 83 | 35.93% | | 6 | 20 | 8.66% | | 8 | 19 | 8.23% | | 12 | 2 | 0.87% | | 16 | 1 | 0.43% | | 1 | 1 | 0.43% | CPU Sockets ----------- Number of sockets ![CPU Sockets](./images/pie_chart/cpu_sockets.svg) | Number | Computers | Percent | |--------|-----------|---------| | 1 | 229 | 99.13% | | 2 | 2 | 0.87% | CPU Threads ----------- Threads per core (Hyper-Threading) ![CPU Threads](./images/pie_chart/cpu_threads.svg) | Number | Computers | Percent | |--------|-----------|---------| | 2 | 158 | 68.4% | | 1 | 73 | 31.6% | CPU Op-Modes ------------ CPU Operation Modes (32-bit, 64-bit) ![CPU Op-Modes](./images/pie_chart/cpu_op_modes.svg) | Op mode | Computers | Percent | |----------------|-----------|---------| | 32-bit, 64-bit | 231 | 100% | CPU Microcode ------------- Microcode number ![CPU Microcode](./images/pie_chart/cpu_microcode.svg) | Number | Computers | Percent | |------------|-----------|---------| | 0x206a7 | 22 | 9.44% | | Unknown | 18 | 7.73% | | 0x306a9 | 14 | 6.01% | | 0x306c3 | 10 | 4.29% | | 0x306d4 | 9 | 3.86% | | 0x1067a | 9 | 3.86% | | 0x806c1 | 8 | 3.43% | | 0x406e3 | 8 | 3.43% | | 0x40651 | 8 | 3.43% | | 0x806ec | 7 | 3% | | 0x10676 | 7 | 3% | | 0x906ea | 6 | 2.58% | | 0x406c3 | 6 | 2.58% | | 0x08600106 | 6 | 2.58% | | 0x906e9 | 5 | 2.15% | | 0x806eb | 5 | 2.15% | | 0x806ea | 5 | 2.15% | | 0x506e3 | 5 | 2.15% | | 0x20655 | 5 | 2.15% | | 0x806e9 | 4 | 1.72% | | 0x08701021 | 4 | 1.72% | | 0x08108109 | 4 | 1.72% | | 0x906ed | 3 | 1.29% | | 0x706a8 | 3 | 1.29% | | 0x506c9 | 3 | 1.29% | | 0x20652 | 3 | 1.29% | | 0x08608103 | 3 | 1.29% | | 0xa0671 | 2 | 0.86% | | 0x906eb | 2 | 0.86% | | 0x30678 | 2 | 0.86% | | 0x206d7 | 2 | 0.86% | | 0x08108102 | 2 | 0.86% | | 0x08101007 | 2 | 0.86% | | 0x0800820d | 2 | 0.86% | | 0x06003106 | 2 | 0.86% | | 0x010000c8 | 2 | 0.86% | | 0xa0660 | 1 | 0.43% | | 0xa0652 | 1 | 0.43% | | 0x906ec | 1 | 0.43% | | 0x906c0 | 1 | 0.43% | | 0x706a1 | 1 | 0.43% | | 0x6fd | 1 | 0.43% | | 0x6fb | 1 | 0.43% | | 0x6fa | 1 | 0.43% | | 0x406c4 | 1 | 0.43% | | 0x40661 | 1 | 0.43% | | 0x306e4 | 1 | 0.43% | | 0x106e5 | 1 | 0.43% | | 0x106ca | 1 | 0.43% | | 0x0a201009 | 1 | 0.43% | | 0x08701013 | 1 | 0.43% | | 0x08600104 | 1 | 0.43% | | 0x08101016 | 1 | 0.43% | | 0x07030105 | 1 | 0.43% | | 0x07030104 | 1 | 0.43% | | 0x06006705 | 1 | 0.43% | | 0x06006704 | 1 | 0.43% | | 0x0600611a | 1 | 0.43% | | 0x06001119 | 1 | 0.43% | | 0x0600063e | 1 | 0.43% | CPU Microarch ------------- Microarchitecture ![CPU Microarch](./images/pie_chart/cpu_microarch.svg) | Name | Computers | Percent | |---------------|-----------|---------| | KabyLake | 44 | 19.05% | | SandyBridge | 25 | 10.82% | | Haswell | 20 | 8.66% | | Zen 2 | 16 | 6.93% | | Penryn | 16 | 6.93% | | IvyBridge | 15 | 6.49% | | Skylake | 14 | 6.06% | | Zen+ | 9 | 3.9% | | Silvermont | 9 | 3.9% | | Broadwell | 9 | 3.9% | | Westmere | 8 | 3.46% | | TigerLake | 8 | 3.46% | | Goldmont plus | 4 | 1.73% | | Excavator | 4 | 1.73% | | Unknown | 4 | 1.73% | | Zen | 3 | 1.3% | | K10 | 3 | 1.3% | | Goldmont | 3 | 1.3% | | Core | 3 | 1.3% | | Steamroller | 2 | 0.87% | | Puma | 2 | 0.87% | | Icelake | 2 | 0.87% | | CometLake | 2 | 0.87% | | Zen 3 | 1 | 0.43% | | Tremont | 1 | 0.43% | | Piledriver | 1 | 0.43% | | Nehalem | 1 | 0.43% | | Bulldozer | 1 | 0.43% | | Bonnell | 1 | 0.43% | Graphics -------- GPU Vendor ---------- Vendors of graphics cards ![GPU Vendor](./images/pie_chart/gpu_vendor.svg) | Vendor | Computers | Percent | |----------------------------|-----------|---------| | Intel | 144 | 52.36% | | Nvidia | 68 | 24.73% | | AMD | 62 | 22.55% | | Matrox Electronics Systems | 1 | 0.36% | GPU Model --------- Graphics card models ![GPU Model](./images/pie_chart/gpu_model.svg) | Model | Computers | Percent | |------------------------------------------------------------------------------------------|-----------|---------| | Intel 2nd Generation Core Processor Family Integrated Graphics Controller | 20 | 7.07% | | Intel 3rd Gen Core processor Graphics Controller | 11 | 3.89% | | AMD Renoir | 10 | 3.53% | | Intel TigerLake-LP GT2 [Iris Xe Graphics] | 8 | 2.83% | | Intel Haswell-ULT Integrated Graphics Controller | 8 | 2.83% | | Nvidia C79 [GeForce 9400M] | 7 | 2.47% | | Intel WhiskeyLake-U GT2 [UHD Graphics 620] | 7 | 2.47% | | Intel UHD Graphics 620 | 7 | 2.47% | | Intel Skylake GT2 [HD Graphics 520] | 7 | 2.47% | | Intel HD Graphics 5500 | 7 | 2.47% | | Intel Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Integrated Graphics Controller | 7 | 2.47% | | Intel CometLake-U GT2 [UHD Graphics] | 6 | 2.12% | | Intel Core Processor Integrated Graphics Controller | 5 | 1.77% | | Intel CoffeeLake-H GT2 [UHD Graphics 630] | 5 | 1.77% | | Intel 4th Gen Core Processor Integrated Graphics Controller | 5 | 1.77% | | AMD Picasso/Raven 2 [Radeon Vega Series / Radeon Vega Mobile Series] | 5 | 1.77% | | Intel Mobile 4 Series Chipset Integrated Graphics Controller | 4 | 1.41% | | Intel HD Graphics 630 | 4 | 1.41% | | AMD Lucienne | 4 | 1.41% | | Nvidia GP107M [GeForce GTX 1050 Mobile] | 3 | 1.06% | | Intel HD Graphics 620 | 3 | 1.06% | | Intel HD Graphics 530 | 3 | 1.06% | | Intel GeminiLake [UHD Graphics 600] | 3 | 1.06% | | Intel CoffeeLake-S GT2 [UHD Graphics 630] | 3 | 1.06% | | AMD Raven Ridge [Radeon Vega Series / Radeon Vega Mobile Series] | 3 | 1.06% | | Nvidia TU117 [GeForce GTX 1650] | 2 | 0.71% | | Nvidia GP108M [GeForce MX150] | 2 | 0.71% | | Nvidia GP107M [GeForce GTX 1050 Ti Mobile] | 2 | 0.71% | | Nvidia GP106 [GeForce GTX 1060 3GB] | 2 | 0.71% | | Nvidia GM108M [GeForce 940M] | 2 | 0.71% | | Nvidia GM108M [GeForce 940MX] | 2 | 0.71% | | Nvidia GM108M [GeForce 840M] | 2 | 0.71% | | Intel Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller | 2 | 0.71% | | Intel Mobile GM965/GL960 Integrated Graphics Controller (secondary) | 2 | 0.71% | | Intel Mobile GM965/GL960 Integrated Graphics Controller (primary) | 2 | 0.71% | | Intel HD Graphics 6000 | 2 | 0.71% | | Intel HD Graphics 500 | 2 | 0.71% | | Intel Atom Processor Z36xxx/Z37xxx Series Graphics & Display | 2 | 0.71% | | AMD Whistler [Radeon HD 6630M/6650M/6750M/7670M/7690M] | 2 | 0.71% | | AMD Wani [Radeon R5/R6/R7 Graphics] | 2 | 0.71% | | AMD Topaz XT [Radeon R7 M260/M265 / M340/M360 / M440/M445 / 530/535 / 620/625 Mobile] | 2 | 0.71% | | AMD Thames [Radeon HD 7500M/7600M Series] | 2 | 0.71% | | AMD Stoney [Radeon R2/R3/R4/R5 Graphics] | 2 | 0.71% | | AMD Seymour [Radeon HD 6400M/7400M Series] | 2 | 0.71% | | AMD Mullins [Radeon R4/R5 Graphics] | 2 | 0.71% | | AMD Lexa PRO [Radeon 540/540X/550/550X / RX 540X/550/550X] | 2 | 0.71% | | AMD Kaveri [Radeon R7 Graphics] | 2 | 0.71% | | AMD Ellesmere [Radeon RX 470/480/570/570X/580/580X/590] | 2 | 0.71% | | AMD Baffin [Radeon RX 550 640SP / RX 560/560X] | 2 | 0.71% | | AMD Baffin [Radeon RX 460/560D / Pro 450/455/460/555/555X/560/560X] | 2 | 0.71% | | Nvidia TU117M [GeForce MX450] | 1 | 0.35% | | Nvidia TU117M [GeForce GTX 1650 Ti Mobile] | 1 | 0.35% | | Nvidia TU117M | 1 | 0.35% | | Nvidia TU116 [GeForce GTX 1660] | 1 | 0.35% | | Nvidia TU104 [GeForce RTX 2080] | 1 | 0.35% | | Nvidia TU104 [GeForce RTX 2080 SUPER] | 1 | 0.35% | | Nvidia TU104 [GeForce RTX 2060] | 1 | 0.35% | | Nvidia MCP89 [GeForce 320M] | 1 | 0.35% | | Nvidia GT216M [GeForce GT 330M] | 1 | 0.35% | | Nvidia GP108M [GeForce MX250] | 1 | 0.35% | GPU Combo --------- Combinations of graphics cards ![GPU Combo](./images/pie_chart/gpu_combo.svg) | Name | Computers | Percent | |----------------|-----------|---------| | 1 x Intel | 101 | 43.72% | | 1 x AMD | 47 | 20.35% | | 1 x Nvidia | 35 | 15.15% | | Intel + Nvidia | 31 | 13.42% | | Intel + AMD | 10 | 4.33% | | 2 x AMD | 4 | 1.73% | | 2 x Nvidia | 1 | 0.43% | | 1 x Matrox | 1 | 0.43% | | AMD + Nvidia | 1 | 0.43% | GPU Driver ---------- Free vs proprietary ![GPU Driver](./images/pie_chart/gpu_driver.svg) | Driver | Computers | Percent | |-------------|-----------|---------| | Free | 196 | 84.48% | | Proprietary | 36 | 15.52% | GPU Memory ---------- Total video memory ![GPU Memory](./images/pie_chart/gpu_memory.svg) | Size in GB | Computers | Percent | |------------|-----------|---------| | Unknown | 117 | 50.43% | | 0.01-0.5 | 31 | 13.36% | | 1.01-2.0 | 30 | 12.93% | | 3.01-4.0 | 21 | 9.05% | | 0.51-1.0 | 21 | 9.05% | | 7.01-8.0 | 5 | 2.16% | | 5.01-6.0 | 4 | 1.72% | | 8.01-16.0 | 2 | 0.86% | | 2.01-3.0 | 1 | 0.43% | Monitor ------- Monitor Vendor -------------- Monitor vendors ![Monitor Vendor](./images/pie_chart/mon_vendor.svg) | Vendor | Computers | Percent | |-------------------------|-----------|---------| | AU Optronics | 37 | 14.12% | | LG Display | 28 | 10.69% | | Apple | 27 | 10.31% | | Chimei Innolux | 26 | 9.92% | | Samsung Electronics | 24 | 9.16% | | BOE | 15 | 5.73% | | Acer | 12 | 4.58% | | Goldstar | 11 | 4.2% | | Hewlett-Packard | 9 | 3.44% | | Dell | 8 | 3.05% | | Sharp | 7 | 2.67% | | Lenovo | 6 | 2.29% | | BenQ | 6 | 2.29% | | Philips | 5 | 1.91% | | PANDA | 4 | 1.53% | | CSO | 4 | 1.53% | | Chi Mei Optoelectronics | 3 | 1.15% | | AOC | 3 | 1.15% | | Ancor Communications | 3 | 1.15% | | ViewSonic | 2 | 0.76% | | InfoVision | 2 | 0.76% | | AUS | 2 | 0.76% | | Vestel | 1 | 0.38% | | Toshiba | 1 | 0.38% | | Sony | 1 | 0.38% | | Panasonic | 1 | 0.38% | | MSI | 1 | 0.38% | | Mi | 1 | 0.38% | | Marantz | 1 | 0.38% | | LG Electronics | 1 | 0.38% | | JDI | 1 | 0.38% | | IOD | 1 | 0.38% | | Iiyama | 1 | 0.38% | | HUAWEI | 1 | 0.38% | | HPN | 1 | 0.38% | | Element | 1 | 0.38% | | Eizo | 1 | 0.38% | | CHR | 1 | 0.38% | | CHD | 1 | 0.38% | | Unknown | 1 | 0.38% | Monitor Model ------------- Monitor models ![Monitor Model](./images/pie_chart/mon_model.svg) | Model | Computers | Percent | |------------------------------------------------------------------------|-----------|---------| | Chimei Innolux LCD Monitor CMN14D4 1920x1080 309x173mm 13.9-inch | 4 | 1.48% | | CSO LCD Monitor CSO1309 3000x2000 293x195mm 13.9-inch | 3 | 1.11% | | Chimei Innolux LCD Monitor CMN15F5 1920x1080 344x193mm 15.5-inch | 3 | 1.11% | | Chimei Innolux LCD Monitor CMN15DB 1366x768 344x193mm 15.5-inch | 3 | 1.11% | | AU Optronics LCD Monitor AUO21ED 1920x1080 344x194mm 15.5-inch | 3 | 1.11% | | Apple LCD Monitor APP9C89 1280x800 286x179mm 13.3-inch | 3 | 1.11% | | Samsung Electronics LCD Monitor SEC5441 1366x768 344x194mm 15.5-inch | 2 | 0.74% | | Samsung Electronics C24F390 SAM0D2C 1920x1080 521x293mm 23.5-inch | 2 | 0.74% | | LG Display LCD Monitor LGD0563 1920x1080 344x194mm 15.5-inch | 2 | 0.74% | | LG Display LCD Monitor LGD0521 1920x1080 309x174mm 14.0-inch | 2 | 0.74% | | LG Display LCD Monitor LGD0362 1600x900 309x174mm 14.0-inch | 2 | 0.74% | | Goldstar HDR WFHD GSM7714 2560x1080 798x334mm 34.1-inch | 2 | 0.74% | | Goldstar 22EN33 GSM597C 1920x1080 480x270mm 21.7-inch | 2 | 0.74% | | Chimei Innolux LCD Monitor CMN15E6 1366x768 344x193mm 15.5-inch | 2 | 0.74% | | BOE LCD Monitor BOE06DF 1920x1080 309x173mm 13.9-inch | 2 | 0.74% | | AU Optronics LCD Monitor AUO403D 1920x1080 309x174mm 14.0-inch | 2 | 0.74% | | AU Optronics LCD Monitor AUO23EC 1366x768 344x193mm 15.5-inch | 2 | 0.74% | | AU Optronics LCD Monitor AUO235C 1366x768 256x144mm 11.6-inch | 2 | 0.74% | | AU Optronics LCD Monitor AUO109D 1920x1080 381x214mm 17.2-inch | 2 | 0.74% | | Apple Color LCD APP9CF3 1366x768 260x140mm 11.6-inch | 2 | 0.74% | | Apple Color LCD APP9CF0 1440x900 290x180mm 13.4-inch | 2 | 0.74% | | Apple Color LCD APP9CA4 1440x900 331x207mm 15.4-inch | 2 | 0.74% | | ViewSonic VX3211-2K VSCF634 2560x1440 698x392mm 31.5-inch | 1 | 0.37% | | ViewSonic LCD Monitor VX2260WM 3840x1080 | 1 | 0.37% | | ViewSonic LCD Monitor VX2260WM | 1 | 0.37% | | Vestel LCD Monitor 49FHD_LCD_TV 1920x1080 | 1 | 0.37% | | Toshiba TV TSB2019 3840x2160 | 1 | 0.37% | | Sony LCD Monitor SNY05FA 1366x768 340x190mm 15.3-inch | 1 | 0.37% | | Sharp PN-K321 SHP21DD 3840x2160 | 1 | 0.37% | | Sharp LQ100P1JX51 SHP14A6 1800x1200 211x141mm 10.0-inch | 1 | 0.37% | | Sharp LCD Monitor SHP14B8 1920x1080 294x165mm 13.3-inch | 1 | 0.37% | | Sharp LCD Monitor SHP148D 3840x2160 344x194mm 15.5-inch | 1 | 0.37% | | Sharp LCD Monitor SHP1447 1920x1080 294x165mm 13.3-inch | 1 | 0.37% | | Sharp LCD Monitor SHP1431 3840x2160 350x190mm 15.7-inch | 1 | 0.37% | | Sharp LCD Monitor SHP1421 3200x1800 294x165mm 13.3-inch | 1 | 0.37% | | Samsung Electronics U32R59x SAM0F94 3840x2160 700x390mm 31.5-inch | 1 | 0.37% | | Samsung Electronics U28H75x SAM0DFE 3840x2160 608x345mm 27.5-inch | 1 | 0.37% | | Samsung Electronics T24D391 SAM0B72 1920x1080 521x293mm 23.5-inch | 1 | 0.37% | | Samsung Electronics SA300/SA350 SAM078C 1600x900 443x249mm 20.0-inch | 1 | 0.37% | | Samsung Electronics SA300/SA350 SAM078B 1600x900 443x249mm 20.0-inch | 1 | 0.37% | | Samsung Electronics S22B300 SAM08AC 1920x1080 477x268mm 21.5-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SEC5A42 1366x768 309x174mm 14.0-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SEC3541 1366x768 344x194mm 15.5-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SEC3242 1024x600 223x125mm 10.1-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SDC834D 1920x1080 293x165mm 13.2-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SDC4259 1920x1080 293x165mm 13.2-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SDC4161 1920x1080 344x194mm 15.5-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SDC4158 1920x1080 294x165mm 13.3-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SDC280F 1366x768 344x193mm 15.5-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SAM0C39 1920x1080 885x498mm 40.0-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SAM0B54 1366x768 609x347mm 27.6-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SAM0A7D 1920x1080 1060x626mm 48.5-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SAM0900 1366x768 410x230mm 18.5-inch | 1 | 0.37% | | Samsung Electronics LCD Monitor SAM0530 1360x768 | 1 | 0.37% | | Samsung Electronics LCD Monitor S22D300 | 1 | 0.37% | | Samsung Electronics LC32G5xT SAM7088 2560x1440 700x400mm 31.7-inch | 1 | 0.37% | | Philips PHL 275E1 PHLC20C 2560x1440 597x336mm 27.0-inch | 1 | 0.37% | | Philips PHL 203V5 PHLC0CE 1600x900 434x236mm 19.4-inch | 1 | 0.37% | | Philips LCD Monitor PHL 276E8V 7680x2160 | 1 | 0.37% | | Philips LCD Monitor PHL 276E8V | 1 | 0.37% | Monitor Resolution ------------------ Monitor screen resolution ![Monitor Resolution](./images/pie_chart/mon_resolution.svg) | Resolution | Computers | Percent | |--------------------|-----------|---------| | 1920x1080 (FHD) | 102 | 40.16% | | 1366x768 (WXGA) | 59 | 23.23% | | 2560x1440 (QHD) | 17 | 6.69% | | 3840x2160 (4K) | 13 | 5.12% | | 1600x900 (HD+) | 12 | 4.72% | | 1280x800 (WXGA) | 10 | 3.94% | | 1440x900 (WXGA+) | 8 | 3.15% | | 1680x1050 (WSXGA+) | 6 | 2.36% | | 3000x2000 | 4 | 1.57% | | 1920x1200 (WUXGA) | 3 | 1.18% | | Unknown | 3 | 1.18% | | 3840x1080 | 2 | 0.79% | | 2560x1080 | 2 | 0.79% | | 1360x768 | 2 | 0.79% | | 7680x2160 | 1 | 0.39% | | 3840x2400 | 1 | 0.39% | | 3440x1440 | 1 | 0.39% | | 3200x1800 (QHD+) | 1 | 0.39% | | 3072x1920 | 1 | 0.39% | | 2880x1920 | 1 | 0.39% | | 2880x1800 | 1 | 0.39% | | 1920x540 | 1 | 0.39% | | 1920x1280 | 1 | 0.39% | | 1800x1200 | 1 | 0.39% | | 1280x1024 (SXGA) | 1 | 0.39% | Monitor Diagonal ---------------- Diagonal size in inches ![Monitor Diagonal](./images/pie_chart/mon_diagonal.svg) | Inches | Computers | Percent | |---------|-----------|---------| | 15 | 71 | 27.31% | | 13 | 44 | 16.92% | | 14 | 27 | 10.38% | | 24 | 15 | 5.77% | | Unknown | 14 | 5.38% | | 27 | 12 | 4.62% | | 23 | 12 | 4.62% | | 21 | 10 | 3.85% | | 17 | 9 | 3.46% | | 31 | 6 | 2.31% | | 11 | 5 | 1.92% | | 22 | 4 | 1.54% | | 20 | 4 | 1.54% | | 34 | 3 | 1.15% | | 32 | 3 | 1.15% | | 26 | 3 | 1.15% | | 12 | 3 | 1.15% | | 10 | 3 | 1.15% | | 25 | 2 | 0.77% | | 19 | 2 | 0.77% | | 18 | 2 | 0.77% | | 72 | 1 | 0.38% | | 65 | 1 | 0.38% | | 55 | 1 | 0.38% | | 48 | 1 | 0.38% | | 47 | 1 | 0.38% | | 16 | 1 | 0.38% | Monitor Width ------------- Physical width ![Monitor Width](./images/pie_chart/mon_width.svg) | Width in mm | Computers | Percent | |-------------|-----------|---------| | 301-350 | 112 | 43.75% | | 201-300 | 40 | 15.63% | | 501-600 | 38 | 14.84% | | 401-500 | 21 | 8.2% | | Unknown | 14 | 5.47% | | 351-400 | 11 | 4.3% | | 601-700 | 9 | 3.52% | | 701-800 | 6 | 2.34% | | 1001-1500 | 4 | 1.56% | | 1501-2000 | 1 | 0.39% | Aspect Ratio ------------ Proportional relationship between the width and the height ![Aspect Ratio](./images/pie_chart/mon_ratio.svg) | Ratio | Computers | Percent | |---------|-----------|---------| | 16/9 | 179 | 76.17% | | 16/10 | 33 | 14.04% | | Unknown | 12 | 5.11% | | 3/2 | 8 | 3.4% | | 21/9 | 3 | 1.28% | Monitor Area ------------ Area in inch² ![Monitor Area](./images/pie_chart/mon_area.svg) | Area in inch² | Computers | Percent | |----------------|-----------|---------| | 101-110 | 68 | 26.46% | | 81-90 | 53 | 20.62% | | 201-250 | 30 | 11.67% | | 71-80 | 19 | 7.39% | | Unknown | 14 | 5.45% | | 301-350 | 13 | 5.06% | | 351-500 | 12 | 4.67% | | 251-300 | 10 | 3.89% | | 151-200 | 8 | 3.11% | | 121-130 | 8 | 3.11% | | 51-60 | 5 | 1.95% | | More than 1000 | 4 | 1.56% | | 41-50 | 3 | 1.17% | | 61-70 | 2 | 0.78% | | 141-150 | 2 | 0.78% | | 111-120 | 2 | 0.78% | | 91-100 | 2 | 0.78% | | 131-140 | 1 | 0.39% | | 501-1000 | 1 | 0.39% | Pixel Density ------------- Pixels per inch ![Pixel Density](./images/pie_chart/mon_density.svg) | Density | Computers | Percent | |---------------|-----------|---------| | 121-160 | 79 | 30.98% | | 101-120 | 77 | 30.2% | | 51-100 | 56 | 21.96% | | 161-240 | 14 | 5.49% | | Unknown | 14 | 5.49% | | More than 240 | 10 | 3.92% | | 1-50 | 5 | 1.96% | Multiple Monitors ----------------- Total monitors connected ![Multiple Monitors](./images/pie_chart/mon_total.svg) | Total | Computers | Percent | |-------|-----------|---------| | 1 | 196 | 84.85% | | 2 | 30 | 12.99% | | 3 | 5 | 2.16% | Network ------- Net Controller Vendor --------------------- Controller vendors ![Net Controller Vendor](./images/pie_chart/net_vendor.svg) | Vendor | Computers | Percent | |--------------------------|-----------|---------| | Realtek Semiconductor | 116 | 34.22% | | Intel | 104 | 30.68% | | Broadcom | 36 | 10.62% | | Qualcomm Atheros | 32 | 9.44% | | Nvidia | 9 | 2.65% | | Broadcom Limited | 6 | 1.77% | | Marvell Technology Group | 5 | 1.47% | | TP-Link | 4 | 1.18% | | Ralink Technology | 4 | 1.18% | | Samsung Electronics | 3 | 0.88% | | Ralink | 3 | 0.88% | | Xiaomi | 2 | 0.59% | | Google | 2 | 0.59% | | Sitecom Europe | 1 | 0.29% | | Sierra Wireless | 1 | 0.29% | | OPPO Electronics | 1 | 0.29% | | Motorola PCS | 1 | 0.29% | | Microsoft | 1 | 0.29% | | MEDIATEK | 1 | 0.29% | | Linksys | 1 | 0.29% | | LG Electronics | 1 | 0.29% | | Hewlett-Packard | 1 | 0.29% | | D-Link System | 1 | 0.29% | | AVM | 1 | 0.29% | | ASIX Electronics | 1 | 0.29% | | Apple | 1 | 0.29% | Net Controller Model -------------------- Controller models ![Net Controller Model](./images/pie_chart/net_model.svg) | Model | Computers | Percent | |-------------------------------------------------------------------|-----------|---------| | Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller | 81 | 20.51% | | Realtek RTL810xE PCI Express Fast Ethernet controller | 17 | 4.3% | | Intel Wi-Fi 6 AX200 | 11 | 2.78% | | Nvidia MCP79 Ethernet | 9 | 2.28% | | Intel Wireless 8260 | 9 | 2.28% | | Intel Wi-Fi 6 AX201 | 8 | 2.03% | | Broadcom BCM4322 802.11a/b/g/n Wireless LAN Controller | 8 | 2.03% | | Realtek RTL8821CE 802.11ac PCIe Wireless Network Adapter | 7 | 1.77% | | Intel Cannon Point-LP CNVi [Wireless-AC] | 7 | 1.77% | | Intel 82579LM Gigabit Network Connection (Lewisville) | 7 | 1.77% | | Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter | 6 | 1.52% | | Qualcomm Atheros AR9485 Wireless Network Adapter | 6 | 1.52% | | Intel Wireless 8265 / 8275 | 6 | 1.52% | | Intel Wireless 7265 | 6 | 1.52% | | Intel Comet Lake PCH-LP CNVi WiFi | 6 | 1.52% | | Broadcom NetXtreme BCM57765 Gigabit Ethernet PCIe | 6 | 1.52% | | Broadcom BCM4331 802.11a/b/g/n | 6 | 1.52% | | Realtek RTL8723BE PCIe Wireless Network Adapter | 5 | 1.27% | | Qualcomm Atheros QCA9377 802.11ac Wireless Network Adapter | 5 | 1.27% | | Intel Wireless 7260 | 5 | 1.27% | | Broadcom BCM43224 802.11a/b/g/n | 5 | 1.27% | | Realtek RTL8822CE 802.11ac PCIe Wireless Network Adapter | 4 | 1.01% | | Realtek RTL8125 2.5GbE Controller | 4 | 1.01% | | Ralink MT7601U Wireless Adapter | 4 | 1.01% | | Qualcomm Atheros AR9285 Wireless Network Adapter (PCI-Express) | 4 | 1.01% | | Broadcom Limited BCM4360 802.11ac Wireless Network Adapter | 4 | 1.01% | | Realtek RTL8153 Gigabit Ethernet Adapter | 3 | 0.76% | | Qualcomm Atheros AR8151 v2.0 Gigabit Ethernet | 3 | 0.76% | | Intel Wireless-AC 9260 | 3 | 0.76% | | Intel Wireless 3165 | 3 | 0.76% | | Intel I211 Gigabit Network Connection | 3 | 0.76% | | Intel Ethernet Connection (2) I219-V | 3 | 0.76% | | Intel Dual Band Wireless-AC 3168NGW [Stone Peak] | 3 | 0.76% | | Intel Dual Band Wireless-AC 3165 Plus Bluetooth | 3 | 0.76% | | Intel Centrino Advanced-N 6205 [Taylor Peak] | 3 | 0.76% | | Intel Cannon Lake PCH CNVi WiFi | 3 | 0.76% | | Broadcom BCM43602 802.11ac Wireless LAN SoC | 3 | 0.76% | | Broadcom BCM4321 802.11a/b/g/n | 3 | 0.76% | | Xiaomi Mi/Redmi series (RNDIS) | 2 | 0.51% | | Samsung Galaxy series, misc. (tethering mode) | 2 | 0.51% | | Realtek RTL8821AE 802.11ac PCIe Wireless Network Adapter | 2 | 0.51% | | Realtek RTL8152 Fast Ethernet Adapter | 2 | 0.51% | | Realtek 802.11ac NIC | 2 | 0.51% | | Ralink RT3090 Wireless 802.11n 1T/1R PCIe | 2 | 0.51% | | Qualcomm Atheros AR9462 Wireless Network Adapter | 2 | 0.51% | | Qualcomm Atheros AR9287 Wireless Network Adapter (PCI-Express) | 2 | 0.51% | | Marvell Group 88E8058 PCI-E Gigabit Ethernet Controller | 2 | 0.51% | | Intel Wireless 3160 | 2 | 0.51% | | Intel Gemini Lake PCH CNVi WiFi | 2 | 0.51% | | Intel Ethernet Controller I225-V | 2 | 0.51% | | Intel Ethernet Connection I219-LM | 2 | 0.51% | | Intel Ethernet Connection I217-LM | 2 | 0.51% | | Intel Ethernet Connection (4) I219-V | 2 | 0.51% | | Intel Ethernet Connection (3) I218-LM | 2 | 0.51% | | Intel Ethernet Connection (2) I219-LM | 2 | 0.51% | | Intel Centrino Advanced-N 6235 | 2 | 0.51% | | Intel 82579V Gigabit Network Connection | 2 | 0.51% | | Google Nexus/Pixel Device (tether) | 2 | 0.51% | | Broadcom NetLink BCM5906M Fast Ethernet PCI Express | 2 | 0.51% | | Broadcom BCM4352 802.11ac Wireless Network Adapter | 2 | 0.51% | Wireless Vendor --------------- Wireless vendors ![Wireless Vendor](./images/pie_chart/net_wireless_vendor.svg) | Vendor | Computers | Percent | |--------------------------|-----------|---------| | Intel | 85 | 41.67% | | Broadcom | 34 | 16.67% | | Realtek Semiconductor | 31 | 15.2% | | Qualcomm Atheros | 27 | 13.24% | | Broadcom Limited | 6 | 2.94% | | TP-Link | 4 | 1.96% | | Ralink Technology | 4 | 1.96% | | Ralink | 3 | 1.47% | | Marvell Technology Group | 2 | 0.98% | | Sitecom Europe | 1 | 0.49% | | Sierra Wireless | 1 | 0.49% | | Microsoft | 1 | 0.49% | | MEDIATEK | 1 | 0.49% | | Linksys | 1 | 0.49% | | LG Electronics | 1 | 0.49% | | D-Link System | 1 | 0.49% | | AVM | 1 | 0.49% | Wireless Model -------------- Wireless models ![Wireless Model](./images/pie_chart/net_wireless_model.svg) | Model | Computers | Percent | |----------------------------------------------------------------|-----------|---------| | Intel Wi-Fi 6 AX200 | 11 | 5.37% | | Intel Wireless 8260 | 9 | 4.39% | | Intel Wi-Fi 6 AX201 | 8 | 3.9% | | Broadcom BCM4322 802.11a/b/g/n Wireless LAN Controller | 8 | 3.9% | | Realtek RTL8821CE 802.11ac PCIe Wireless Network Adapter | 7 | 3.41% | | Intel Cannon Point-LP CNVi [Wireless-AC] | 7 | 3.41% | | Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter | 6 | 2.93% | | Qualcomm Atheros AR9485 Wireless Network Adapter | 6 | 2.93% | | Intel Wireless 8265 / 8275 | 6 | 2.93% | | Intel Wireless 7265 | 6 | 2.93% | | Intel Comet Lake PCH-LP CNVi WiFi | 6 | 2.93% | | Broadcom BCM4331 802.11a/b/g/n | 6 | 2.93% | | Realtek RTL8723BE PCIe Wireless Network Adapter | 5 | 2.44% | | Qualcomm Atheros QCA9377 802.11ac Wireless Network Adapter | 5 | 2.44% | | Intel Wireless 7260 | 5 | 2.44% | | Broadcom BCM43224 802.11a/b/g/n | 5 | 2.44% | | Realtek RTL8822CE 802.11ac PCIe Wireless Network Adapter | 4 | 1.95% | | Ralink MT7601U Wireless Adapter | 4 | 1.95% | | Qualcomm Atheros AR9285 Wireless Network Adapter (PCI-Express) | 4 | 1.95% | | Broadcom Limited BCM4360 802.11ac Wireless Network Adapter | 4 | 1.95% | | Intel Wireless-AC 9260 | 3 | 1.46% | | Intel Wireless 3165 | 3 | 1.46% | | Intel Dual Band Wireless-AC 3168NGW [Stone Peak] | 3 | 1.46% | | Intel Dual Band Wireless-AC 3165 Plus Bluetooth | 3 | 1.46% | | Intel Centrino Advanced-N 6205 [Taylor Peak] | 3 | 1.46% | | Intel Cannon Lake PCH CNVi WiFi | 3 | 1.46% | | Broadcom BCM43602 802.11ac Wireless LAN SoC | 3 | 1.46% | | Broadcom BCM4321 802.11a/b/g/n | 3 | 1.46% | | Realtek RTL8821AE 802.11ac PCIe Wireless Network Adapter | 2 | 0.98% | | Realtek 802.11ac NIC | 2 | 0.98% | | Ralink RT3090 Wireless 802.11n 1T/1R PCIe | 2 | 0.98% | | Qualcomm Atheros AR9462 Wireless Network Adapter | 2 | 0.98% | | Qualcomm Atheros AR9287 Wireless Network Adapter (PCI-Express) | 2 | 0.98% | | Intel Wireless 3160 | 2 | 0.98% | | Intel Gemini Lake PCH CNVi WiFi | 2 | 0.98% | | Intel Centrino Advanced-N 6235 | 2 | 0.98% | | Broadcom BCM4352 802.11ac Wireless Network Adapter | 2 | 0.98% | | Broadcom BCM43227 802.11b/g/n | 2 | 0.98% | | Broadcom BCM4312 802.11b/g LP-PHY | 2 | 0.98% | | TP-Link Archer T4U ver.3 | 1 | 0.49% | | TP-Link AC600 wireless Realtek RTL8811AU [Archer T2U Nano] | 1 | 0.49% | | TP-Link 802.11n NIC | 1 | 0.49% | | TP-Link 802.11ac NIC | 1 | 0.49% | | Sitecom Europe WL-329 Wireless Dualband USB adapter 300N | 1 | 0.49% | | Sierra Wireless EM7455 Qualcomm Snapdragon™ X7 LTE-A | 1 | 0.49% | | Realtek RTL88x2bu [AC1200 Techkey] | 1 | 0.49% | | Realtek RTL8822BE 802.11a/b/g/n/ac WiFi adapter | 1 | 0.49% | | Realtek RTL8812AE 802.11ac PCIe Wireless Network Adapter | 1 | 0.49% | | Realtek RTL8723DE Wireless Network Adapter | 1 | 0.49% | | Realtek RTL8723AE PCIe Wireless Network Adapter | 1 | 0.49% | | Realtek RTL8192CU 802.11n WLAN Adapter | 1 | 0.49% | | Realtek RTL8191SEvA Wireless LAN Controller | 1 | 0.49% | | Realtek RTL8188FTV 802.11b/g/n 1T1R 2.4G WLAN Adapter | 1 | 0.49% | | Realtek RTL8188EUS 802.11n Wireless Network Adapter | 1 | 0.49% | | Realtek RTL8187 Wireless Adapter | 1 | 0.49% | | Realtek Realtek Network controller | 1 | 0.49% | | Ralink RT3290 Wireless 802.11n 1T/1R PCIe | 1 | 0.49% | | Qualcomm Atheros QCA6174 802.11ac Wireless Network Adapter | 1 | 0.49% | | Qualcomm Atheros AR93xx Wireless Network Adapter | 1 | 0.49% | | Microsoft Xbox 360 Wireless Adapter | 1 | 0.49% | Ethernet Vendor --------------- Ethernet vendors ![Ethernet Vendor](./images/pie_chart/net_ethernet_vendor.svg) | Vendor | Computers | Percent | |--------------------------|-----------|---------| | Realtek Semiconductor | 106 | 56.08% | | Intel | 40 | 21.16% | | Broadcom | 11 | 5.82% | | Nvidia | 9 | 4.76% | | Qualcomm Atheros | 7 | 3.7% | | Samsung Electronics | 3 | 1.59% | | Marvell Technology Group | 3 | 1.59% | | Xiaomi | 2 | 1.06% | | Google | 2 | 1.06% | | OPPO Electronics | 1 | 0.53% | | Motorola PCS | 1 | 0.53% | | Hewlett-Packard | 1 | 0.53% | | Broadcom Limited | 1 | 0.53% | | ASIX Electronics | 1 | 0.53% | | Apple | 1 | 0.53% | Ethernet Model -------------- Ethernet models ![Ethernet Model](./images/pie_chart/net_ethernet_model.svg) | Model | Computers | Percent | |--------------------------------------------------------------------------------|-----------|---------| | Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller | 81 | 42.63% | | Realtek RTL810xE PCI Express Fast Ethernet controller | 17 | 8.95% | | Nvidia MCP79 Ethernet | 9 | 4.74% | | Intel 82579LM Gigabit Network Connection (Lewisville) | 7 | 3.68% | | Broadcom NetXtreme BCM57765 Gigabit Ethernet PCIe | 6 | 3.16% | | Realtek RTL8125 2.5GbE Controller | 4 | 2.11% | | Realtek RTL8153 Gigabit Ethernet Adapter | 3 | 1.58% | | Qualcomm Atheros AR8151 v2.0 Gigabit Ethernet | 3 | 1.58% | | Intel I211 Gigabit Network Connection | 3 | 1.58% | | Intel Ethernet Connection (2) I219-V | 3 | 1.58% | | Xiaomi Mi/Redmi series (RNDIS) | 2 | 1.05% | | Samsung Galaxy series, misc. (tethering mode) | 2 | 1.05% | | Realtek RTL8152 Fast Ethernet Adapter | 2 | 1.05% | | Marvell Group 88E8058 PCI-E Gigabit Ethernet Controller | 2 | 1.05% | | Intel Ethernet Controller I225-V | 2 | 1.05% | | Intel Ethernet Connection I219-LM | 2 | 1.05% | | Intel Ethernet Connection I217-LM | 2 | 1.05% | | Intel Ethernet Connection (4) I219-V | 2 | 1.05% | | Intel Ethernet Connection (3) I218-LM | 2 | 1.05% | | Intel Ethernet Connection (2) I219-LM | 2 | 1.05% | | Intel 82579V Gigabit Network Connection | 2 | 1.05% | | Google Nexus/Pixel Device (tether) | 2 | 1.05% | | Broadcom NetLink BCM5906M Fast Ethernet PCI Express | 2 | 1.05% | | Samsung GT-I9070 (network tethering, USB debugging enabled) | 1 | 0.53% | | Qualcomm Atheros QCA8171 Gigabit Ethernet | 1 | 0.53% | | Qualcomm Atheros Killer E2400 Gigabit Ethernet Controller | 1 | 0.53% | | Qualcomm Atheros AR8131 Gigabit Ethernet | 1 | 0.53% | | Qualcomm Atheros AR8121/AR8113/AR8114 Gigabit or Fast Ethernet | 1 | 0.53% | | OPPO SM6115-QRD _SN:D6BC0450 | 1 | 0.53% | | Motorola PCS motorola edge | 1 | 0.53% | | Marvell Group Yukon Optima 88E8059 [PCIe Gigabit Ethernet Controller with AVB] | 1 | 0.53% | | Intel I210 Gigabit Network Connection | 1 | 0.53% | | Intel Ethernet Connection I219-V | 1 | 0.53% | | Intel Ethernet Connection I218-LM | 1 | 0.53% | | Intel Ethernet Connection I217-V | 1 | 0.53% | | Intel Ethernet Connection (7) I219-V | 1 | 0.53% | | Intel Ethernet Connection (7) I219-LM | 1 | 0.53% | | Intel Ethernet Connection (6) I219-V | 1 | 0.53% | | Intel Ethernet Connection (5) I219-LM | 1 | 0.53% | | Intel Ethernet Connection (3) I218-V | 1 | 0.53% | | Intel Ethernet Connection (10) I219-V | 1 | 0.53% | | Intel 82577LM Gigabit Network Connection | 1 | 0.53% | | Intel 82574L Gigabit Network Connection | 1 | 0.53% | | Intel 80003ES2LAN Gigabit Ethernet Controller (Copper) | 1 | 0.53% | | HP HP lt4120 Snapdragon X5 LTE | 1 | 0.53% | | Broadcom NetXtreme BCM5764M Gigabit Ethernet PCIe | 1 | 0.53% | | Broadcom NetXtreme BCM5761e Gigabit Ethernet PCIe | 1 | 0.53% | | Broadcom NetXtreme BCM5719 Gigabit Ethernet PCIe | 1 | 0.53% | | Broadcom Limited NetXtreme BCM5761e Gigabit Ethernet PCIe | 1 | 0.53% | | ASIX AX88179 Gigabit Ethernet | 1 | 0.53% | | Apple T2 Controller | 1 | 0.53% | Net Controller Kind ------------------- Ethernet, WiFi or modem ![Net Controller Kind](./images/pie_chart/net_kind.svg) | Kind | Computers | Percent | |----------|-----------|---------| | WiFi | 196 | 52.55% | | Ethernet | 177 | 47.45% | Used Controller --------------- Currently used network controller ![Used Controller](./images/pie_chart/net_used.svg) | Kind | Computers | Percent | |----------|-----------|---------| | WiFi | 186 | 52.25% | | Ethernet | 170 | 47.75% | NICs ---- Total network controllers on board ![NICs](./images/pie_chart/net_nics.svg) | Total | Computers | Percent | |-------|-----------|---------| | 2 | 122 | 52.81% | | 1 | 100 | 43.29% | | 3 | 5 | 2.16% | | 0 | 3 | 1.3% | | 4 | 1 | 0.43% | IPv6 ---- IPv6 vs IPv4 ![IPv6](./images/pie_chart/node_ipv6.svg) | Used | Computers | Percent | |------|-----------|---------| | No | 158 | 67.81% | | Yes | 75 | 32.19% | Bluetooth --------- Bluetooth Vendor ---------------- Controller vendors ![Bluetooth Vendor](./images/pie_chart/bt_vendor.svg) | Vendor | Computers | Percent | |---------------------------------|-----------|---------| | Intel | 80 | 44.69% | | Apple | 29 | 16.2% | | Realtek Semiconductor | 20 | 11.17% | | Cambridge Silicon Radio | 10 | 5.59% | | Qualcomm Atheros Communications | 9 | 5.03% | | IMC Networks | 7 | 3.91% | | Lite-On Technology | 6 | 3.35% | | Foxconn / Hon Hai | 5 | 2.79% | | Broadcom | 4 | 2.23% | | Marvell Semiconductor | 2 | 1.12% | | Hewlett-Packard | 2 | 1.12% | | Toshiba | 1 | 0.56% | | Realtek | 1 | 0.56% | | Ralink | 1 | 0.56% | | Qualcomm Atheros | 1 | 0.56% | | ASUSTek Computer | 1 | 0.56% | Bluetooth Model --------------- Controller models ![Bluetooth Model](./images/pie_chart/bt_model.svg) | Model | Computers | Percent | |-------------------------------------------------------------------------------------|-----------|---------| | Intel Bluetooth Device | 31 | 17.32% | | Intel Bluetooth wireless interface | 19 | 10.61% | | Realtek Bluetooth Radio | 14 | 7.82% | | Apple Bluetooth Host Controller | 13 | 7.26% | | Intel AX201 Bluetooth | 12 | 6.7% | | Intel AX200 Bluetooth | 10 | 5.59% | | Cambridge Silicon Radio Bluetooth Dongle (HCI mode) | 10 | 5.59% | | Apple Bluetooth USB Host Controller | 8 | 4.47% | | Qualcomm Atheros Bluetooth Device | 5 | 2.79% | | Realtek Bluetooth 4.2 Adapter | 4 | 2.23% | | Apple Built-in Bluetooth 2.0+EDR HCI | 4 | 2.23% | | Apple Bluetooth HCI | 4 | 2.23% | | Qualcomm Atheros AR3011 Bluetooth | 3 | 1.68% | | Lite-On Bluetooth Device | 3 | 1.68% | | Intel Wireless-AC 9260 Bluetooth Adapter | 3 | 1.68% | | Intel Wireless-AC 3168 Bluetooth | 3 | 1.68% | | IMC Networks Bluetooth Device | 3 | 1.68% | | Intel Centrino Bluetooth Wireless Transceiver | 2 | 1.12% | | HP Broadcom 2070 Bluetooth Combo | 2 | 1.12% | | Foxconn / Hon Hai Bluetooth USB Host Controller | 2 | 1.12% | | Broadcom BCM20702 Bluetooth 4.0 [ThinkPad] | 2 | 1.12% | | Toshiba RT Bluetooth Radio | 1 | 0.56% | | Realtek RTL8821A Bluetooth | 1 | 0.56% | | Realtek RTL8723B Bluetooth | 1 | 0.56% | | Realtek Bluetooth Radio | 1 | 0.56% | | Ralink RT3290 Bluetooth | 1 | 0.56% | | Qualcomm Atheros AR9462 Bluetooth | 1 | 0.56% | | Qualcomm Atheros AR3012 Bluetooth 4.0 | 1 | 0.56% | | Marvell Bluetooth and Wireless LAN Composite Device | 1 | 0.56% | | Marvell Bluetooth and Wireless LAN Composite | 1 | 0.56% | | Lite-On Broadcom BCM43142A0 Bluetooth Device | 1 | 0.56% | | Lite-On Atheros Bluetooth | 1 | 0.56% | | Lite-On Atheros AR3012 Bluetooth | 1 | 0.56% | | IMC Networks Wireless_Device | 1 | 0.56% | | IMC Networks Bluetooth Radio | 1 | 0.56% | | IMC Networks BCM20702A0 | 1 | 0.56% | | IMC Networks Atheros AR3012 Bluetooth 4.0 Adapter | 1 | 0.56% | | Foxconn / Hon Hai Foxconn T77H114 BCM2070 [Single-Chip Bluetooth 2.1 + EDR Adapter] | 1 | 0.56% | | Foxconn / Hon Hai Bluetooth Device | 1 | 0.56% | | Foxconn / Hon Hai Acer Module | 1 | 0.56% | | Broadcom BCM43142A0 Bluetooth 4.0 | 1 | 0.56% | | Broadcom BCM20702A0 Bluetooth 4.0 | 1 | 0.56% | | ASUS BCM20702A0 | 1 | 0.56% | Sound ----- Sound Vendor ------------ Sound card vendors ![Sound Vendor](./images/pie_chart/snd_vendor.svg) | Vendor | Computers | Percent | |-------------------------|-----------|---------| | Intel | 168 | 56.38% | | AMD | 62 | 20.81% | | Nvidia | 45 | 15.1% | | C-Media Electronics | 6 | 2.01% | | Creative Labs | 4 | 1.34% | | Logitech | 3 | 1.01% | | Texas Instruments | 1 | 0.34% | | Realtek Semiconductor | 1 | 0.34% | | Razer USA | 1 | 0.34% | | No brand | 1 | 0.34% | | GN Netcom | 1 | 0.34% | | Focusrite-Novation | 1 | 0.34% | | ESS Technology | 1 | 0.34% | | Corsair | 1 | 0.34% | | BEHRINGER International | 1 | 0.34% | | Apple | 1 | 0.34% | Sound Model ----------- Sound card models ![Sound Model](./images/pie_chart/snd_model.svg) | Model | Computers | Percent | |---------------------------------------------------------------------------------------------------|-----------|---------| | AMD Family 17h/19h HD Audio Controller | 23 | 6.37% | | Intel Sunrise Point-LP HD Audio | 20 | 5.54% | | Intel 6 Series/C200 Series Chipset Family High Definition Audio Controller | 19 | 5.26% | | Intel 7 Series/C216 Chipset Family High Definition Audio Controller | 17 | 4.71% | | AMD Renoir Radeon High Definition Audio Controller | 14 | 3.88% | | Intel Cannon Lake PCH cAVS | 11 | 3.05% | | Intel 8 Series/C220 Series Chipset High Definition Audio Controller | 10 | 2.77% | | Nvidia MCP79 High Definition Audio | 9 | 2.49% | | Intel Wildcat Point-LP High Definition Audio Controller | 9 | 2.49% | | Intel Broadwell-U Audio Controller | 9 | 2.49% | | Intel 5 Series/3400 Series Chipset High Definition Audio | 9 | 2.49% | | Intel Tiger Lake-LP Smart Sound Technology Audio Controller | 8 | 2.22% | | Intel Haswell-ULT HD Audio Controller | 8 | 2.22% | | Intel 8 Series HD Audio Controller | 8 | 2.22% | | AMD Raven/Raven2/Fenghuang HDMI/DP Audio Controller | 8 | 2.22% | | Intel Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller | 7 | 1.94% | | Intel Comet Lake PCH-LP cAVS | 7 | 1.94% | | Intel Cannon Point-LP High Definition Audio Controller | 7 | 1.94% | | AMD Baffin HDMI/DP Audio [Radeon RX 550 640SP / RX 560/560X] | 6 | 1.66% | | Nvidia GP107GL High Definition Audio Controller | 5 | 1.39% | | Intel Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series High Definition Audio Controller | 5 | 1.39% | | Intel 100 Series/C230 Series Chipset Family HD Audio Controller | 5 | 1.39% | | C-Media Electronics Audio Adapter (Unitek Y-247A) | 5 | 1.39% | | AMD Starship/Matisse HD Audio Controller | 5 | 1.39% | | AMD FCH Azalia Controller | 5 | 1.39% | | Nvidia GP106 High Definition Audio Controller | 4 | 1.11% | | Nvidia GF108 High Definition Audio Controller | 4 | 1.11% | | Intel Celeron/Pentium Silver Processor High Definition Audio | 4 | 1.11% | | Intel 82801I (ICH9 Family) HD Audio Controller | 4 | 1.11% | | Intel 82801H (ICH8 Family) HD Audio Controller | 4 | 1.11% | | Intel 200 Series PCH HD Audio | 4 | 1.11% | | AMD Oland/Hainan/Cape Verde/Pitcairn HDMI Audio [Radeon HD 7000 Series] | 4 | 1.11% | | AMD Kabini HDMI/DP Audio | 4 | 1.11% | | AMD Family 15h (Models 60h-6fh) Audio Controller | 4 | 1.11% | | Nvidia TU107 GeForce GTX 1650 High Definition Audio Controller | 3 | 0.83% | | Nvidia TU104 HD Audio Controller | 3 | 0.83% | | Nvidia GM107 High Definition Audio Controller [GeForce 940MX] | 3 | 0.83% | | Intel CM238 HD Audio Controller | 3 | 0.83% | | Intel Celeron N3350/Pentium N4200/Atom E3900 Series Audio Cluster | 3 | 0.83% | | AMD Turks HDMI Audio [Radeon HD 6500/6600 / 6700M Series] | 3 | 0.83% | | AMD SBx00 Azalia (Intel HDA) | 3 | 0.83% | | AMD Family 17h (Models 00h-0fh) HD Audio Controller | 3 | 0.83% | | AMD Caicos HDMI Audio [Radeon HD 6450 / 7450/8450/8490 OEM / R5 230/235/235X OEM] | 3 | 0.83% | | Intel Tiger Lake-H HD Audio Controller | 2 | 0.55% | | Intel C600/X79 series chipset High Definition Audio Controller | 2 | 0.55% | | Intel Atom Processor Z36xxx/Z37xxx Series High Definition Audio Controller | 2 | 0.55% | | AMD Navi 10 HDMI Audio | 2 | 0.55% | | AMD Kaveri HDMI/DP Audio Controller | 2 | 0.55% | | AMD High Definition Audio Controller | 2 | 0.55% | | AMD Ellesmere HDMI Audio [Radeon RX 470/480 / 570/580/590] | 2 | 0.55% | | AMD Cedar HDMI Audio [Radeon HD 5400/6300/7300 Series] | 2 | 0.55% | | Texas Instruments PCM2902 Audio Codec | 1 | 0.28% | | Realtek Semiconductor USB Audio | 1 | 0.28% | | Razer USA RC30-026902, Gaming Headset [Nari Essential, Wireless, Receiver] | 1 | 0.28% | | Nvidia TU116 High Definition Audio Controller | 1 | 0.28% | | Nvidia MCP89 High Definition Audio | 1 | 0.28% | | Nvidia MCP72XE/MCP72P/MCP78U/MCP78S High Definition Audio | 1 | 0.28% | | Nvidia GT216 HDMI Audio Controller | 1 | 0.28% | | Nvidia GP102 HDMI Audio Controller | 1 | 0.28% | | Nvidia GM204 High Definition Audio Controller | 1 | 0.28% | Memory ------ Memory Vendor ------------- Memory module vendors ![Memory Vendor](./images/pie_chart/memory_vendor.svg) | Vendor | Computers | Percent | |---------------------|-----------|---------| | Samsung Electronics | 16 | 32.65% | | SK Hynix | 7 | 14.29% | | Micron Technology | 7 | 14.29% | | Unknown | 4 | 8.16% | | Kingston | 2 | 4.08% | | G.Skill | 2 | 4.08% | | Corsair | 2 | 4.08% | | Unknown (ABCD) | 1 | 2.04% | | SHARETRONIC | 1 | 2.04% | | Ramaxel Technology | 1 | 2.04% | | PNY | 1 | 2.04% | | Patriot | 1 | 2.04% | | Hewlett-Packard | 1 | 2.04% | | GSkill | 1 | 2.04% | | Crucial | 1 | 2.04% | | A-DATA Technology | 1 | 2.04% | Memory Model ------------ Memory module models ![Memory Model](./images/pie_chart/memory_model.svg) | Model | Computers | Percent | |------------------------------------------------------------------|-----------|---------| | Samsung RAM M471A2K43CB1-CTD 16GB SODIMM DDR4 2667MT/s | 2 | 3.77% | | Samsung RAM M471A1K43DB1-CWE 8GB SODIMM DDR4 3200MT/s | 2 | 3.77% | | Samsung RAM M471A1G44AB0-CWE 8GB SODIMM DDR4 3200MT/s | 2 | 3.77% | | Unknown RAM Module 8192MB SODIMM DDR3 | 1 | 1.89% | | Unknown RAM Module 8192MB DIMM DDR3 1066MT/s | 1 | 1.89% | | Unknown RAM Module 4096MB SODIMM DDR3 1600MT/s | 1 | 1.89% | | Unknown RAM Module 4096MB SODIMM DDR3 1333MT/s | 1 | 1.89% | | Unknown (ABCD) RAM 123456789012345678 2GB SODIMM LPDDR4 2400MT/s | 1 | 1.89% | | SK Hynix RAM Module 8192MB SODIMM DDR3 1600MT/s | 1 | 1.89% | | SK Hynix RAM Module 4096MB SODIMM LPDDR3 1867MT/s | 1 | 1.89% | | SK Hynix RAM Module 4096MB SODIMM DDR3 1600MT/s | 1 | 1.89% | | SK Hynix RAM HMT851S6AMR6R-PB 4GB Chip DDR3 1600MT/s | 1 | 1.89% | | SK Hynix RAM HMT41GS6BFR8A-PB 8192MB SODIMM DDR3 1600MT/s | 1 | 1.89% | | SK Hynix RAM HMA851S6JJR6N-VK 4GB SODIMM DDR4 2667MT/s | 1 | 1.89% | | SK Hynix RAM HMA81GS6DJR8N-XN 8GB SODIMM DDR4 3200MT/s | 1 | 1.89% | | SK Hynix RAM HMA81GS6DJR8N-XN 8192MB SODIMM DDR4 3200MT/s | 1 | 1.89% | | SHARETRONIC RAM Module 8192MB SODIMM DDR3 1600MT/s | 1 | 1.89% | | Samsung RAM Module 8192MB DIMM DDR4 2666MT/s | 1 | 1.89% | | Samsung RAM Module 2048MB SODIMM DDR3 1600MT/s | 1 | 1.89% | | Samsung RAM M471B5673FH0-CH9 2048MB SODIMM DDR3 1334MT/s | 1 | 1.89% | | Samsung RAM M471B5273CH0-CK0 4GB SODIMM DDR3 1600MT/s | 1 | 1.89% | | Samsung RAM M471B5173DB0-YK0 4GB SODIMM DDR3 1600MT/s | 1 | 1.89% | | Samsung RAM M471A5244CB0-CTD 4096MB SODIMM DDR4 3266MT/s | 1 | 1.89% | | Samsung RAM M471A2K43DB1-CTD 16GB SODIMM DDR4 2667MT/s | 1 | 1.89% | | Samsung RAM M471A1K43CB1-CTD 8192MB SODIMM DDR4 2667MT/s | 1 | 1.89% | | Samsung RAM M471A1K43BB0-CPB 8192MB SODIMM DDR4 2133MT/s | 1 | 1.89% | | Samsung RAM K4EBE304ED-EGCG 8192MB Row Of Chips LPDDR3 2133MT/s | 1 | 1.89% | | Samsung RAM K3QF4F40BM-AGCF 4096MB Row Of Chips LPDDR3 1867MT/s | 1 | 1.89% | | Ramaxel RAM RMUA5090KB78HAF2133 8192MB DIMM DDR4 2133MT/s | 1 | 1.89% | | PNY RAM 8GBF1X08QFHH38-135-K 8192MB DIMM DDR4 3200MT/s | 1 | 1.89% | | Patriot RAM 3200 C16 Series 8GB DIMM DDR4 3200MT/s | 1 | 1.89% | | Micron RAM MT40A1G16KD-062E:E 8192MB SODIMM DDR4 2667MT/s | 1 | 1.89% | | Micron RAM Module 2048MB SODIMM DDR3 1600MT/s | 1 | 1.89% | | Micron RAM 8KTF51264HZ-1G6N1 4GB SODIMM DDR3 1600MT/s | 1 | 1.89% | | Micron RAM 8KTF51264HZ-1G6E1 4GB SODIMM DDR3 1600MT/s | 1 | 1.89% | | Micron RAM 8ATF1G64HZ-2G6E1 8GB SODIMM DDR4 2667MT/s | 1 | 1.89% | | Micron RAM 53E2G32D4NQ-046 4GB Row Of Chips LPDDR4 4267MT/s | 1 | 1.89% | | Micron RAM 53E1G32D4NQ 2048MB Row Of Chips LPDDR4 4267MT/s | 1 | 1.89% | | Micron RAM 4ATF51264HZ-2G3AZ 4096MB SODIMM DDR4 2133MT/s | 1 | 1.89% | | Kingston RAM 9905625-030.A00G 8192MB DIMM DDR4 2133MT/s | 1 | 1.89% | | Kingston RAM 9905471-015.A00LF 4096MB DIMM DDR3 1333MT/s | 1 | 1.89% | | HP RAM 647650-071 8192MB DIMM DDR3 1333MT/s | 1 | 1.89% | | GSkill RAM F4-3200C22-8GRS 8192MB SODIMM DDR4 3200MT/s | 1 | 1.89% | | G.Skill RAM F4-2666C18-16GRS 16GB SODIMM DDR4 2667MT/s | 1 | 1.89% | | G.Skill RAM F3-1600C11-8GSQ 8192MB SODIMM DDR3 1600MT/s | 1 | 1.89% | | G.Skill RAM F3-1600C11-8GSL 8192MB SODIMM DDR3 1600MT/s | 1 | 1.89% | | Crucial RAM CB8GS2400.C8D 8192MB SODIMM DDR4 2400MT/s | 1 | 1.89% | | Corsair RAM CMX8GX3M1A1600C11 8192MB DIMM DDR3 1600MT/s | 1 | 1.89% | | Corsair RAM CMK8GX4M1A2400C16 8GB DIMM DDR4 2800MT/s | 1 | 1.89% | | A-DATA RAM AM1U16BC4P2-B19N 4096MB SODIMM DDR3 1600MT/s | 1 | 1.89% | Memory Kind ----------- Memory module kinds ![Memory Kind](./images/pie_chart/memory_kind.svg) | Kind | Computers | Percent | |--------|-----------|---------| | DDR4 | 22 | 47.83% | | DDR3 | 18 | 39.13% | | LPDDR4 | 3 | 6.52% | | LPDDR3 | 3 | 6.52% | Memory Form Factor ------------------ Physical design of the memory module ![Memory Form Factor](./images/pie_chart/memory_formfactor.svg) | Name | Computers | Percent | |--------------|-----------|---------| | SODIMM | 32 | 69.57% | | DIMM | 9 | 19.57% | | Row Of Chips | 4 | 8.7% | | Chip | 1 | 2.17% | Memory Size ----------- Memory module size ![Memory Size](./images/pie_chart/memory_size.svg) | Size | Computers | Percent | |-------|-----------|---------| | 8192 | 24 | 48.98% | | 4096 | 16 | 32.65% | | 16384 | 4 | 8.16% | | 2048 | 4 | 8.16% | | 32768 | 1 | 2.04% | Memory Speed ------------ Memory module speed ![Memory Speed](./images/pie_chart/memory_speed.svg) | Speed | Computers | Percent | |---------|-----------|---------| | 1600 | 12 | 25.53% | | 3200 | 8 | 17.02% | | 2667 | 8 | 17.02% | | 2133 | 4 | 8.51% | | 1333 | 3 | 6.38% | | 4267 | 2 | 4.26% | | 2400 | 2 | 4.26% | | 1867 | 2 | 4.26% | | 3266 | 1 | 2.13% | | 2800 | 1 | 2.13% | | 2666 | 1 | 2.13% | | 1334 | 1 | 2.13% | | 1066 | 1 | 2.13% | | Unknown | 1 | 2.13% | Printers & scanners ------------------- Printer Vendor -------------- Printer device vendors ![Printer Vendor](./images/pie_chart/printer_vendor.svg) | Vendor | Computers | Percent | |--------|-----------|---------| | Canon | 2 | 100% | Printer Model ------------- Printer device models ![Printer Model](./images/pie_chart/printer_model.svg) | Model | Computers | Percent | |---------------------------|-----------|---------| | Canon PIXMA MG3600 Series | 1 | 50% | | Canon PIXMA MG2500 Series | 1 | 50% | Scanner Vendor -------------- Scanner device vendors Zero info for selected period =( Scanner Model ------------- Scanner device models Zero info for selected period =( Camera ------ Camera Vendor ------------- Camera device vendors ![Camera Vendor](./images/pie_chart/camera_vendor.svg) | Vendor | Computers | Percent | |----------------------------------------|-----------|---------| | Chicony Electronics | 31 | 18.67% | | Apple | 24 | 14.46% | | IMC Networks | 23 | 13.86% | | Realtek Semiconductor | 13 | 7.83% | | Acer | 13 | 7.83% | | Microdia | 11 | 6.63% | | Cheng Uei Precision Industry (Foxlink) | 9 | 5.42% | | Quanta | 7 | 4.22% | | Suyin | 6 | 3.61% | | Alcor Micro | 4 | 2.41% | | Sunplus Innovation Technology | 3 | 1.81% | | Silicon Motion | 3 | 1.81% | | Microsoft | 3 | 1.81% | | Logitech | 3 | 1.81% | | Syntek | 2 | 1.2% | | Luxvisions Innotech Limited | 2 | 1.2% | | Y Media | 1 | 0.6% | | Sony | 1 | 0.6% | | Ricoh | 1 | 0.6% | | Lite-On Technology | 1 | 0.6% | | kingcome | 1 | 0.6% | | Google | 1 | 0.6% | | Generalplus Technology | 1 | 0.6% | | Foxconn / Hon Hai | 1 | 0.6% | | ANYKA | 1 | 0.6% | Camera Model ------------ Camera device models ![Camera Model](./images/pie_chart/camera_model.svg) | Model | Computers | Percent | |--------------------------------------------------------------------------|-----------|---------| | Apple Built-in iSight | 11 | 6.47% | | IMC Networks Integrated Camera | 8 | 4.71% | | IMC Networks USB2.0 HD UVC WebCam | 6 | 3.53% | | Chicony Integrated Camera | 6 | 3.53% | | Chicony HD WebCam | 6 | 3.53% | | Microdia Integrated_Webcam_HD | 5 | 2.94% | | Apple FaceTime HD Camera | 5 | 2.94% | | Realtek Integrated_Webcam_HD | 4 | 2.35% | | Apple iPhone 5/5C/5S/6/SE | 4 | 2.35% | | Acer Lenovo EasyCamera | 4 | 2.35% | | Realtek USB2.0 VGA UVC WebCam | 3 | 1.76% | | IMC Networks USB2.0 VGA UVC WebCam | 3 | 1.76% | | Chicony USB 2.0 Camera | 3 | 1.76% | | Syntek Integrated Camera | 2 | 1.18% | | Realtek USB2.0 HD UVC WebCam | 2 | 1.18% | | Realtek USB Camera | 2 | 1.18% | | Quanta VGA WebCam | 2 | 1.18% | | Luxvisions Innotech Limited HP TrueVision HD Camera | 2 | 1.18% | | IMC Networks USB2.0 UVC HD Webcam | 2 | 1.18% | | IMC Networks EasyCamera | 2 | 1.18% | | Chicony USB2.0 VGA UVC WebCam | 2 | 1.18% | | Cheng Uei Precision Industry (Foxlink) HP EliteBook integrated HD Webcam | 2 | 1.18% | | Cheng Uei Precision Industry (Foxlink) HD Camera | 2 | 1.18% | | Apple FaceTime HD Camera (Built-in) | 2 | 1.18% | | Apple FaceTime Camera | 2 | 1.18% | | Alcor Micro Acer Integrated Webcam | 2 | 1.18% | | Acer Integrated Camera | 2 | 1.18% | | Acer HD Webcam | 2 | 1.18% | | Acer EasyCamera | 2 | 1.18% | | Y Media USB Camera | 1 | 0.59% | | Suyin UVC HD Webcam | 1 | 0.59% | | Suyin USB 2.0 Camera | 1 | 0.59% | | Suyin Integrated_Webcam_HD | 1 | 0.59% | | Suyin HP Integrated Webcam | 1 | 0.59% | | Suyin HD WebCam | 1 | 0.59% | | Suyin 1.3M HD WebCam | 1 | 0.59% | | Sunplus Integrated_Webcam_HD | 1 | 0.59% | | Sunplus HP Universal Camera | 1 | 0.59% | | Sunplus HP HD Webcam [Fixed] | 1 | 0.59% | | Sony CEVCECM | 1 | 0.59% | | Silicon Motion Webcam SC-13HDL11624N [Namuga Co., Ltd.] | 1 | 0.59% | | Silicon Motion WebCam SC-10HDP12631N | 1 | 0.59% | | Silicon Motion ATIV VGA Camera | 1 | 0.59% | | Ricoh Dell Laptop Integrated Webcam | 1 | 0.59% | | Realtek Integrated Webcam | 1 | 0.59% | | Realtek HP Wide Vision HD Camera | 1 | 0.59% | | Quanta USB2.0 HD UVC WebCam | 1 | 0.59% | | Quanta HP Webcam | 1 | 0.59% | | Quanta HP TrueVision HD Camera | 1 | 0.59% | | Quanta hm1091_techfront | 1 | 0.59% | | Quanta HD User Facing | 1 | 0.59% | | Microsoft Rear LifeCam | 1 | 0.59% | | Microsoft LifeCam VX-800 | 1 | 0.59% | | Microsoft LifeCam HD-3000 | 1 | 0.59% | | Microsoft Front LifeCam | 1 | 0.59% | | Microdia Webcam Vitade AF | 1 | 0.59% | | Microdia USB 2.0 Camera | 1 | 0.59% | | Microdia Sonix USB 2.0 Camera | 1 | 0.59% | | Microdia Sonix 1.3 MP Laptop Integrated Webcam | 1 | 0.59% | | Microdia OV5648 | 1 | 0.59% | Security -------- Fingerprint Vendor ------------------ Fingerprint sensor vendors ![Fingerprint Vendor](./images/pie_chart/fingerprint_vendor.svg) | Vendor | Computers | Percent | |----------------------------|-----------|---------| | Synaptics | 8 | 34.78% | | Validity Sensors | 7 | 30.43% | | LighTuning Technology | 5 | 21.74% | | Shenzhen Goodix Technology | 2 | 8.7% | | Elan Microelectronics | 1 | 4.35% | Fingerprint Model ----------------- Fingerprint sensor models ![Fingerprint Model](./images/pie_chart/fingerprint_model.svg) | Model | Computers | Percent | |-----------------------------------------------------------|-----------|---------| | Synaptics Prometheus MIS Touch Fingerprint Reader | 3 | 13.04% | | LighTuning EgisTec Touch Fingerprint Sensor | 3 | 13.04% | | Validity Sensors VFS495 Fingerprint Reader | 2 | 8.7% | | Validity Sensors VFS 5011 fingerprint sensor | 2 | 8.7% | | Synaptics Metallica MIS Touch Fingerprint Reader | 2 | 8.7% | | Shenzhen Goodix Fingerprint Device | 2 | 8.7% | | LighTuning ES603 Swipe Fingerprint Sensor | 2 | 8.7% | | Validity Sensors VFS5011 Fingerprint Reader | 1 | 4.35% | | Validity Sensors VFS491 | 1 | 4.35% | | Validity Sensors VFS471 Fingerprint Reader | 1 | 4.35% | | Synaptics FS7604 Touch Fingerprint Sensor with PurePrint | 1 | 4.35% | | Synaptics Metallica MOH Touch Fingerprint Reader | 1 | 4.35% | | Elan ELAN:Fingerprint | 1 | 4.35% | | Unknown | 1 | 4.35% | Chipcard Vendor --------------- Chipcard module vendors ![Chipcard Vendor](./images/pie_chart/chipcard_vendor.svg) | Vendor | Computers | Percent | |---------------------|-----------|---------| | Broadcom | 2 | 33.33% | | Alcor Micro | 2 | 33.33% | | Lenovo | 1 | 16.67% | | Chicony Electronics | 1 | 16.67% | Chipcard Model -------------- Chipcard module models ![Chipcard Model](./images/pie_chart/chipcard_model.svg) | Model | Computers | Percent | |------------------------------------------------------|-----------|---------| | Alcor Micro AU9540 Smartcard Reader | 2 | 33.33% | | Lenovo Integrated Smart Card Reader | 1 | 16.67% | | Chicony Electronics HP Skylab USB Smartcard Keyboard | 1 | 16.67% | | Broadcom BCM5880 Secure Applications Processor | 1 | 16.67% | | Broadcom 5880 | 1 | 16.67% | Unsupported ----------- Unsupported Devices ------------------- Total unsupported devices on board ![Unsupported Devices](./images/pie_chart/device_unsupported.svg) | Total | Computers | Percent | |-------|-----------|---------| | 0 | 182 | 78.45% | | 1 | 46 | 19.83% | | 2 | 4 | 1.72% | Unsupported Device Types ------------------------ Types of unsupported devices ![Unsupported Device Types](./images/pie_chart/device_unsupported_type.svg) | Type | Computers | Percent | |-----------------------|-----------|---------| | Fingerprint reader | 23 | 41.82% | | Net/wireless | 10 | 18.18% | | Multimedia controller | 10 | 18.18% | | Chipcard | 5 | 9.09% | | Graphics card | 3 | 5.45% | | Camera | 3 | 5.45% | | Bluetooth | 1 | 1.82% |
markdown
Vande Metro is a mini version of the country's first indigenous semi-high speed train - Vande Bharat Express. Vande Metro is a mini version of the country’s first indigenous semi-high speed train – Vande Bharat Express. The development of this new train was announced in the Union Budget 2023-24. The train is being designed for a distance of less than 100 km. The Vande Metro will operate in big cities on a periphery of 50-60 km where there are large habitations. The introduction of Vande Metro will provide a very rapid and world-class shuttle-like experience for commuters. The train will prove to be beneficial for those who come to cities to work, spend leisure time, etc, and return back to their home place. The train will offer superior travelling experiences. It will provide a faster, more comfortable, and more convenient travel experience to rail users. The train will be equipped with state-of-the-art passenger amenities. Earlier this week, the railways launched the country’s 17th Vande Bharat Express. The train operates between Howrah and Puri. The introduction of the blue and white colour train has reduced the travel time between the two states to six hours and 25 minutes. This will boost the travel experience of the passengers and give fillip to the tourism sectors.
english
<reponame>rohankumardubey/i7j-pdfhtml<filename>src/test/resources/com/itextpdf/html2pdf/css/DisplayFlexTest/flexShrink.html <!DOCTYPE html> <html> <body> <style> #content { display: flex; width: 500px; } #content div { flex-basis: 120px; border: 3px solid rgba(0,0,0,.2); } .box { flex-shrink: 1; } .box1 { flex-shrink: 2; } </style> <p>The width of content is 500px; the flex-basis of the flex items is 120px.</p> <p>A, B, C have flex-shrink:1 set. D and E have flex-shrink:2 set</p> <p>The width of D and E is less than the others.</p> <div id="content"> <div class="box" style="background-color:red;">A</div> <div class="box" style="background-color:lightblue;">B</div> <div class="box" style="background-color:yellow;">C</div> <div class="box1" style="background-color:brown;">D</div> <div class="box1" style="background-color:lightgreen;">E</div> </div> </body> </html>
html
Mass maharaja Ravi Teja is currently playing the lead role in the movie Krack which is being directed by Gopichand Malineni. The project is in the finishing stages. Once the shoot resumes, the Krack team is keen to finish the project very soon. Post this film, Ravi Teja will move onto Ramesh Varma’s project in which Nabha Natesh and Nidhi Agarwal will be playing the female leads. As per the latest update, this movie will have a sizzling special number. Sources suggest that Rashi Khanna will be sizzling in this special number. Earlier, Ravi Teja and Rashi Khanna have acted together in the movie Bengal Tiger which was a decent hit. Rashi Khanna is now concentrating more on Kollywood. She will be teaming up with Suriya soon and she has also signed super hit horror franchise Aaranmanai 3. Will Rashi say yes to the Ravi Teja project is to be seen.
english
/* Plutonium library @file TextBlock.hpp @brief A TextBlock is a very useful Element which is used to draw text on the screen. @author XorTroll @copyright Plutonium project - an easy-to-use UI framework for Nintendo Switch homebrew */ #pragma once #include <pu/pu_String.hpp> #include <pu/ui/elm/elm_Element.hpp> namespace pu::ui::elm { class TextBlock : public Element { public: TextBlock(i32 X, i32 Y, String Text); PU_SMART_CTOR(TextBlock) ~TextBlock(); i32 GetX(); void SetX(i32 X); i32 GetY(); void SetY(i32 Y); i32 GetWidth(); i32 GetHeight(); i32 GetTextWidth(); i32 GetTextHeight(); String GetText(); void SetText(String Text); void SetFont(String font_name); Color GetColor(); void SetColor(Color Color); void OnRender(render::Renderer::Ref &Drawer, i32 X, i32 Y); void OnInput(u64 Down, u64 Up, u64 Held, Touch Pos); private: String text; i32 x; i32 y; String fnt_name; Color clr; sdl2::Texture ntex; }; }
cpp
<html> <head> <title>DynField Documentation</title> <style type="text/css"> pre { border: 1px solid #CCC; background-color: #EEE; padding: 10px; font-size: 0.9em; } code { background-color: #EEE; font-size: 0.9em; padding-top: 0.05em; padding-bottom: 0.05em; padding-left: 2em; padding-right: 2em; } </style> </head> <body> <h1>DynField - Extensible Architecture</h1> <p>By <A href="http://www.project-open.com"><NAME></a> and <A href="mailto:<EMAIL>"><NAME></a></P> <hr> <p> <a href="handover.html">Brian's notes</a> </p> <h2>What is DynField?</h2> <p>DynField is an extension of the original OpenACS SQL Metadata system. DynField allows developers to extend objects with new fields. These new fields will appear automatically on all suitable OpenACS pages that deal with this object such as the object's view-, edit and list pages.</p> <p>DynField is an _extension_ mechanism which allows adding dynamic attributes to existing OpenACS objects. However, DynField is not a generic object management system. The creation and deleting of objects are outside of the scope of DynField, because is functionality is frequently handled using PL/SQL or PG/SQL in an object specific way.</p> <p>DynField is based on code of the great Attribute Management System (AMS) from <NAME> and <NAME>. Also, this document is based on their documentation. </p> <h2>Do I need DynField?</h2> <p>The main purpose of DynField is to allow developers to customize the system for specific web sites or customers without modifying the underlying TCL and ADP source code in the CVS version control system.</p> <ul> <li>You probably won't need DynField if you only develop a single web community or if you are in the business of adapting OpenACS to customer requirements.</li> <li>However, you probably need DynField if you develop a new module that may be useful to many customers with slight variations for each customer.</li> </ul> <h2>Design Decisions and Requirements</h2> <p>Please see the <a href="oacs_posting.html">initial posting at OpenACS</a> for an overview over design decisions and requirements. Basically, we tried to keep the system as simple as possible (it only defines two new tables) and to stick as much as possible to the original OpenACS Metadata system. Also check the <A href="DynField.050106.ppt">enclosed PowerPoint slides</A>. </p> <h2>Architecture</h2> <p>The architecture consists of an extension table to <tt>acs_attributes </tt> and one new table containing preconfigured &quot;widgets&quot;:</p> <p><img src=dynfield_data_model.gif></p> <p>acs_attributes already contains the link to OpenACS objects via the <tt>object_type</tt> field, so <tt>dynfield_attributes</tt> is basically an extension table that links to <tt>dynfield_widgets</tt>.</p> <h2>Defining New Attributes</h2> <p><img align=right src="extension_tables.gif" width="211" height="302"> DynField comes with several maintenance screens that allow to define new attributes for a given object type. There are two options:</p> <ul> <li>Create a new entry for an attribute that <strong>already exists</strong>.<br> Use this option in order to enter the existing object fields into DynField. This allows you to use DynField to create object maintenance screens</li> <li>Create a new entry and create a <strong>new table column</strong>.<br> Use this option if you really want to extend the object type.</li> </ul> <h3>Extension Tables</h3> <p>The figure to the right shows a typical setting for the object type &quot;User&quot;. &quot;User&quot; information is generally stored in the &quot;users&quot; table. However, part of the information is stored in the superclasses of &quot;User&quot; such as &quot;Person&quot;, &quot;Party&quot; and &quot;Object&quot;.</p> <p>As a consequence we will have to gather information from all of these &quot;extension tables&quot; when displaying a &quot;User&quot; and we will have to save information to all of these tables when modifying a user. The management of these extension tables can be very difficult in practice, because there can be any number of database constraints related to these extension tables, and some of the extension tables may require a creation using a PL/SQL or PG/SQL database procedure.</p> <p>This is the reason why we decided NOT to support a generic object creation functionality in DynField. Instead, DynField restricts itself to modifying existing objects, which can be mapped into SQL &quot;update&quot; statements for the extension tables. Even with these restrictions it is possible that a DynField &quot;update&quot; will violate database constraints. However, the probability is much lower in general.</p> <h3>Attribute Widgets</h3> <p>The most important information of an attribute is defined via its &quot;Widget&quot;. This widget includes the definition of:</p> <ul> <li>How the attribute is displayed in an HTML form (using a text box, a drop-down box etc.)</li> <li>How it is stored in the database</li> <li>Whether or not a validator can be applied to the attribute (when editing the attribute value)</li> </ul> <p>In short, the widget defines the semantics of an attribute. Widgets are explained further below.</p> <h2>DynField and ad_form</h2> <p>You have two options when dealing with DynField and ad_form. Shorthand and detailed.</p> <h3>Shorthand</h3> <p>Shorthands is a completely simple way of creating forms without many options. The supplied object_id must already exist in the acs_object table. The shorthand procs is <a href="/api-doc/proc-view?proc=dynfield_form">dynfield_form</a>, which is simply a wrapper for ad_form. For example, to create and ad_form named "contact_person_ae" create a page contacts/www/contact-person-ae.tcl with the following content:</p> <pre> ad_page_contract { } { {ct_contact_id:integer,notnull} } set title "Contact Person Add/Edit" set context [list $title] dynfield_form -package_key "contacts" \ -object_type "ct_contact" \ -page_name "edit_page" \ -form_name "contact_person_ae" \ -object_id $ct_contact_id \ -return_url "" ad_return_template</pre> <p>The positioning of the form elements on the screen is defined with the attributes themselves. Please see the DynField &quot;layout manager&quot; for details.</p> <p>The contacts/www/contact-person-ae.adp would contain:</p> <pre>&lt;master&gt; &lt;property name="title">@title@&lt;/property"&gt; &lt;property name="context">@context@&lt;/property"&gt; &lt;formtemplate id="contact_person_ae"&gt; &lt;/formtemplate"&gt;</pre> <p>That's it. If this isn't flexible enough you can also go with the detailed method.</p> <h3>Detailed</h3> <p>For many application the DynField and ad_form shorthand will be too simplistic. For those situations, you can use DynField to interface with <a href="/api-doc/proc-view?proc=ad_form">ad_form</a>. You need to define ad_from <strong>-form</strong> elements like this: <pre> ad_form ... -form [dynfield::ad_form::elements \ -package_key "contacts" \ -object_type "ct_contact" \ -list_name "contact_person"] ... </pre> <p>Note that this procedure returns an ad form appropriate element list. If you intending to define other elements you will need to <code>ad_from -extend -name form_name -form ...</code></p> <p>In the ad_form <strong>-edit_request</strong> block put</p> <pre> ad_form ... -edit_request { dynfield::object::attribute::values -vars -object_id $object_id } ...</pre> <p>This returns the variables upvared into your page, i.e. the first_names attribute could be returned with a value of "Jane" and the last_name attribute with a value of "Doe"... etc. ad_from looks for all form elements and appropriately pre-fills the form with the given values.</p> <p>In the <strong>-on_submit</strong> block you enter the following:</p> <pre> ad_from ... -on_submit { dynfield::ad_form::save \ -package_key "contacts" \ -object_type "ct_contact" \ -list_name "contact_person" \ -form_name "contact_person_ae" \ -object_id $ct_contact_id }</pre> <p>This is how you interface with DynField and ad_form. You may also specify other code in the <strong>-form -on_submit</strong> and <strong>-on_submit</strong> blocks.</p> <h2>DynField and Your Package's UI</h2> <p>To display attributes you can call <a href="/api-doc/proc-view?proc=ams::object::attribute::values">dynfield::object::attribute::values</a> to get the results back as upvared variables, as an array or as a list however you want. So, if on the contact-view page you do, for example to get an array with all attribute_values that are not null represented in. </p> <pre> dynfield::object::attribute::values -array "contact_info" -object_id $ct_contact_id</pre> <p>To add dynfield_attribute_values to a multirow you call <a href="/api-doc/proc-view?proc=ams::multirow::extend">dynfield::multirow::extend</a> to efficiently extend your multirow with dynfield_attribute_values. For example:</p> <pre> db_multirow contacts get_contacts { select ct_contact_id from ct_contacts } dynfield::multirow::extend \ -package_key "contacts" \ -object_type "ct_contact" \ -list_name "contact_person" \ -multirow "contacts" \ -key "ct_contact_id"</pre> <p> ToDo ... <p>&nbsp;</p> <h2>&quot;Pages&quot; and Attribute Layout</h2> <p>DynField defines the notion of a &quot;page&quot;, allowing attributes to be layouted differently in different TCL/ADP pages. Each page defines the position for each attribute. There are three different types of layout defined in DynField, for each type there are specific actions to be taken, but in all of them you can specify which attributes you want to show and which not. This combined with the Cascade Style Sheets and the style option in the &lt;formtemplate&gt; ACS templating tag gives a wide variety of formating options. </p> <p>Hint: The layout management makes heavy use of the <a href="/doc/acs-templating">acs-templating</a> and <a href="/api-doc/proc-view?proc=template::form">template::form</a> systems, if you do not feel comfortable with it, please revise the corresponding documentation. </p> <ol> <h3><li> &quot;Absolute positioning&quot;</li></h3> <p>The &quot;Absolute positioning&quot; uses DIV classes for each label/widget pair. Once the classes are defined is up to the CSS to move each field to the desired place. The use of DIV tags complies with European Accessability regulations. </p> <h3><li> &quot;Relative positioning&quot;</li></h3> <p> <p>The &quot;Relative positioning&quot; uses the same principle as the <a href="/doc/acs-templating/tagref/grid.html">&lt;grid&gt;</a> tag of the ACS template system in order to emulate a table-like structure. </p> <p>First we define the height and the width of the desired table and after that we sort all the included attributes. The table-builder will use this sort order and the width (x) of the table, so the first (x) elements will be placed in the first rown, the second ones in the second rown, and so on as you can see in the next table example: </p> <table width="200" border="1"> <tr> <td>1st</td> <td>2nd</td> <td>3rd</td> </tr> <tr> <td>4th</td> <td>5th</td> <td>6th</td> </tr> <tr> <td>7th</td> <td>8th</td> <td>...</td> </tr> </table> <h3><li> &quot;ADP template&quot;</li></h3> <p> <p>&quot;ADP template&quot; has all the posible freedom because you are editing line by line how you want your form to look like. For the people who has already embebed some dynamic form in a template it should be pretty straight forward as they are used to use the different <a href="/doc/acs-templating/tagref/">&lt;form[...]&gt;</a> tags. The dynfield package just adds two new tags to the existent ones which we think are very usefull: <ul> <li>&lt;formlabel&gt;: Returns the label of the element</li> <li>&lt;formhelptext&gt;: Returns the help text and the 'chunk' between the (&lt;&gt;) and (&lt;/&gt;) tag</li> </ul> For those who have never work with formtemplate there is an <a href="example.txt">example</a>. </p> </p> </ol> <h3>Layout process</h3> <p>The dynfield package is just an extension of what we already have in our page. So you can add fields to pages without form, pages defining the form in the adp file or pages using template::form/ad_form. The drawback of this implementation is that one can get confuse about what is really being executed at one moment and which what values. The standard process shall be the following:</p> <ul> <li>Call to the load&show dynfield procedure in the tcl file which: <ol> <li>Get the old attributes values from the database</li> <li>Set the page layout/style. First look at the -style paramenter, if nil use the -page_url parameter, if nil get the default page_url for the specified object_type, if nil not to use layout manager (i.e. use standard ACS layout)</li> <li>If page_url is used get the layout variables of the corresponding layout_type</li> <li>Create form and form elements</li> </ol> </li> <li>Call to the &lt;formtemplate&gt; tag in the adp file </li> <li>Call to the store dynfield procedure in the 'is_valid' section of your template::form/ad_form or in the *-2.tcl page if you do not use it. </li> </ul> <h3>Layout tables</h3> <p>The layout pages are defined in the table <strong>dynfield_layout_pages</strong>:</p> <ul> <li>object_type: each page can use attributes from more than one object_type</li> <li>page_url: we use the global page url as the page identifier</li> <li>layout_type: one of the previusly described types 'absolute' 'relative' 'adp'</li> <li>table_width: number of rows for the table, only for 'relative' layouts</li> <li>table_height: number of cols for the table, only for 'relative' layouts</li> <li>adp_file: name of the adp template to use, only for 'adp' layouts</li> <li>default_p: use this page as the default one for this object_type</li> </ul> <p>The <strong>dynfield_layout</strong> table define the attributes showed in each page</p> <ul> <li>attribute_id: dynfield attribute identifier</li> <li>object_type</li> <li>page_url: reference to dynfield_layout_pages</li> <li>class: the name of the CSS class, only for 'absolute' layouts</li> <li>sort_key: an integer defining the place of the attribute, only for 'relative' layouts</li> </ul> <p> ... For further reference please look the documentation in the dynfield procedures. </p> <p>&nbsp;</p> <h2>DynField Widgets</h2> DynField defines several kinds of widgets: <ul> <li> <b>Standard OpenACS Widgets</b>:<br> These widgets use the existing OpenACS widgets to display a wide range of data types.<br> DynField sets up a number of these widgets during the installation process, so they are ready to use <li> <b>Category Select Widgets</b>:<br> These widgets define drop-down boxes with options defined using the OpenACS categories module.<br> Please read below how to create a new Category Widget. <li> <b>SQL Select Widgets</b>:<br> These widgets define drop-down boxes using an SQL statement to determine the range of valid options. </ul> <p>The following section explains the different choices for a widget in detail:</p> <p>&nbsp;</p> <h3>Storage Type</h3> <p>The storage type determines how the value of the widget is stored in the database. There are several options:</p> <ul> <li><strong>&quot;Table Column&quot;</strong>: <br> The standard storage type: A new column is created in the object's table or in an extension table to store the attribute value.</li> <li><strong>&quot;Multi-Select Mapping Table&quot;</strong>: (not implemented yet!) <br> A special storage type to store multiple values, for example from a multiple select box. The values are stored using an internal mapping table. ToDo: Implement and describe mapping table.</li> </ul> <h3>OpenACS Datatype</h3> <p>The OpenACS datatype is a high-level description of the datatype. It is used to create both the SQL datatype for Oracle/Postgres and the datatype for the ad_form.</p> <table border="0" cellspacing="1" cellpadding="1"> <tr> <th>OpenACS Datatype</th> <th>SQL Datatype</th> </tr> <tr> <td>string</td> <td>varchar(1000)</td> </tr> <tr> <td><p>boolean</p></td> <td>char(1)</td> </tr> <tr> <td>number</td> <td>&quot;number&quot;</td> </tr> <tr> <td>money</td> <td>number (12,2)</td> </tr> <tr> <td>date</td> <td>date</td> </tr> <tr> <td>text</td> <td>varchar(4000)</td> </tr> <tr> <td>integer</td> <td>integer</td> </tr> <tr> <td><p>enumeration</p></td> <td>varchar(100)</td> </tr> <tr> <td>keyword</td> <td>varchar(1000)</td> </tr> </table> <h3>Datatype</h3> <p>&nbsp;</p> <h3>Widget</h3> <p>&nbsp;</p> <p>&nbsp;</p> <h3>Creating a New Category Widget</h3> <p>Creating a new Category Widget requires an integration between the OpenACS &quot;Categories&quot; package and DynField:</p> <ol> <li>You have to create a new Category tree for the widget (if it doesn't exist already). Go to the category admin pages at <a href="/categories/cadmin/">/categories/cadmin/</a> and select &quot;Create a new tree&quot;. Let's call it &quot;Customer Classification&quot; and press OK.</li> <li>Select the new tree and choose &quot;Add node at top level&quot; to give it its root node. Let's call the root node &quot;No Classification&quot; and press OK</li> <li>Now you can successifly add sub-categories to &quot;No Classification&quot; by clicking on the &quot;Add child&quot; link. For example we might add the sub classifications &quot;A&quot; (= great customer), &quot;B&quot; (= ok customer) and &quot;C&quot; (= customer to get rid of)</li> <li>Finally on the category part, we have to find out the &quot;tree_id&quot; of the current tree. To do this, please check the current URL for a &quot;tree_id&quot; piece, which is followed by a number. Perhaps &quot;tree_id&quot; is written as &quot;tree%5fid=630&quot;, with the &quot;%5f&quot; representing the underscore &quot;_&quot;. However, we need the number behind the &quot;=&quot;, so the 630 in this example.</li> <li>Now let's go to <a href="/intranet-dynfield/widgets/">/intranet-dynfield/widgets/</a> and select &quot;Create a new widget&quot; link at the bottom.</li> <li>Let's enter the following data: <ul> <li>Widget Name = &quot;customer_classification&quot;</li> <li>Pretty Name = &quot;Customer Classification&quot;</li> <li>Pretty Plural = &quot;Customer Classifications&quot;</li> <li>Storage Type = &quot;Normal Value&quot;</li> <li>ACS Datatype = &quot;Integer&quot;</li> <li>Widget = &quot;Category&quot;</li> <li>Datatype = &quot;Integer&quot; and</li> <li>Paremeters = &quot;{custom {category_tree_id 630}}&quot; (please replace the 630 by your tree_id)</li> </ul> </li> <li>That's it. Now you have a new &quot;customer_classification&quot; widget that is available when you define new attributes of an object.</li> </ol> <p>&nbsp; </p> <h2>DynField Permissions</h2> <p>ToDo</p> <h3 style="color: red;">&nbsp;</h3> </body> </html>
html
# coding=utf-8 from __future__ import absolute_import, division, print_function import logging import argparse import os import random import numpy as np from datetime import timedelta import torch import torch.distributed as dist from tqdm import tqdm from torch.utils.tensorboard import SummaryWriter from apex import amp from apex.parallel import DistributedDataParallel as DDP from models.modeling import VisionTransformer, CONFIGS from utils.scheduler import WarmupLinearSchedule, WarmupCosineSchedule from utils.data_utils import get_loader from utils.dist_util import get_world_size logger = logging.getLogger(__name__) class AverageMeter(object): """Computes and stores the average and current value""" def __init__(self): self.reset() def reset(self): self.val = 0 self.avg = 0 self.sum = 0 self.count = 0 def update(self, val, n=1): self.val = val self.sum += val * n self.count += n self.avg = self.sum / self.count def simple_accuracy(preds, labels): return (preds == labels).mean() def test(model, args): _, test_loader = get_loader(args) eval_losses = AverageMeter() logger.info("***** Running Test *****") model.eval() all_preds, all_label = [], [] epoch_iterator = tqdm(test_loader, desc="Testing... (loss=X.X)", bar_format="{l_bar}{r_bar}", dynamic_ncols=True, disable=args.local_rank not in [-1, 0]) loss_fct = torch.nn.CrossEntropyLoss() for step, batch in enumerate(epoch_iterator): batch = tuple(t.to(args.device) for t in batch) x, y = batch with torch.no_grad(): logits = model(x)[0] eval_loss = loss_fct(logits, y) eval_losses.update(eval_loss.item()) preds = torch.argmax(logits, dim=-1) if len(all_preds) == 0: all_preds.append(preds.detach().cpu().numpy()) all_label.append(y.detach().cpu().numpy()) else: all_preds[0] = np.append( all_preds[0], preds.detach().cpu().numpy(), axis=0 ) all_label[0] = np.append( all_label[0], y.detach().cpu().numpy(), axis=0 ) epoch_iterator.set_description("Testing... (loss=%2.5f)" % eval_losses.val) all_preds, all_label = all_preds[0], all_label[0] accuracy = simple_accuracy(all_preds, all_label) print("\n") print("Testing Results") print("Test Loss: %2.5f" % eval_losses.avg) print("Test Accuracy: %2.5f" % accuracy) f = open("./test_result/"+args.model+".txt", 'w') f.write("##Testing Results##\n\n") f.write("Model name: %s\n" % args.model) f.write("Test Loss: %2.5f\n" % eval_losses.avg) f.write("Test Accuracy: %2.5f\n" % accuracy) f.close() return def main(): parser = argparse.ArgumentParser() parser.add_argument("--local_rank", type=int, default=-1, help="local_rank for distributed training on gpus") parser.add_argument("--img_size", default=224, type=int, help="Resolution size") parser.add_argument("--dataset", choices=["cifar10", "cifar100"], default="cifar10", help="Which downstream task.") parser.add_argument("--train_batch_size", default=512, type=int, help="Total batch size for training.") parser.add_argument("--eval_batch_size", default=64, type=int, help="Total batch size for eval.") parser.add_argument("--model_type", choices=["ViT-B_16", "ViT-B_32", "ViT-L_16", "ViT-L_32", "ViT-H_14", "R50-ViT-B_16"], default="ViT-B_16", help="Which variant to use.") parser.add_argument("--model", type=str, default="ViT_1st") args = parser.parse_args() device = torch.device("cuda") args.device = device config = CONFIGS[args.model_type] num_classes = 10 if args.dataset == "cifar10" else 100 model = VisionTransformer(config, args.img_size, zero_head=True, num_classes=num_classes) MODEL_PATH = "./output/" + args.model+".bin" model.load_state_dict(torch.load(MODEL_PATH)) model.to(args.device) model.eval() test(model, args) if __name__ == "__main__": main()
python
Putin ditches his Mercedes-Benz for a locally-designed Rolls-Royce-inspired limo with help from Porsche and Bosch. Vladimir Putin was recently inaugurated for his fourth term as Russian president, and the occasion called for a special debut: The car known as Project Cortege, a locally-built presidential limousine co-developed by Porsche, Bosch, and the Moscow-based Central Scientific Research Automobile & Engine Institute. After almost three decades, it seems the Russian leadership is now officially done buying Mercedes-Benzes. Is the Cortege limousine powered by a V8 or a V12? You tell us! Sources are highly unclear on that, as usual. Not that it matters. Rest assured, Putin's new ride is fast enough, bulletproof, and will spot nefarious secret agents within a radius of four miles. Allegedly. It's got a long wheelbase, it drives, it corners, it stops. It's black, and it's only slightly Chrysler 300/Rolls-Royce Phantom-looking. Not much more a President can ask for.
english
<gh_stars>0 import * as headings from "gatsby-theme-docz/src/components/Headings"; import { Layout } from "gatsby-theme-docz/src/components/Layout"; import { Playground } from "gatsby-theme-docz/src/components/Playground"; import { Props } from "gatsby-theme-docz/src/components/Props"; export default { ...headings, playground: Playground, layout: Layout, props: Props, };
javascript
# UtiliTyer Conjunto de 'hacks' úteis para desenvolvedores front-end, principalmente para usuários do Bootstrap. Funcionalidades básicas: * Rodapé fixo. * Ancoragem suave. * Carregamento de imagens sob demanda (Lazy load). Funcionalidades que exigem a utilização do framework boostrap: * Colunas com a mesma altura. * Modais com auto-preenchimento.
markdown
<filename>web/styles/styles.css<gh_stars>0 h1 { } a:link, a:visited { display: block; font-weight: bold; color: #ffffff; background-color: #98bf21; width: 120px; text-align: center; padding: 4px; text-decoration: none; } a:hover, a:active { background-color: #7A991A; }
css
// Copyright 2013 Viewfinder. All rights reserved. // Author: <NAME>. #import <stdlib.h> #import "DigestUtils.h" #import "Logging.h" string MD5HexToBase64(const Slice& str) { if (str.size() != 32) { DCHECK_EQ(32, str.size()); return string(); } uint8_t digest[16]; // CC_MD5_DIGEST_LENGTH == 16 char buf[3] = { '\0', '\0', '\0' }; for (int i = 0; i < ARRAYSIZE(digest); i++) { buf[0] = str[2 * i]; buf[1] = str[2 * i + 1]; digest[i] = strtol(buf, 0, 16); } return Base64Encode(Slice((char*)digest, ARRAYSIZE(digest))); }
cpp
// Problem Domain : // Given a binary matrix 'matrix', flip the image horizontally, then invert it, and return the resulting image. To flip an image horizontally means that each row of the image is reversed. For example, flipping [1, 1, 0] horizontally results in [0, 1, 1]. To invert an image means that each 0 is replaced by 1, and each 1 is replaced by 0. For example, inverting [0, 1, 1] results in [1, 0, 0]. // Example : // Input - [[1, 0, 0, 1, 1, 0], [1, 1, 1 , 0, 1, 1], [0, 0, 1, 1, 0, 0]] // Output - [[1, 0, 0, 1, 1, 0], [0, 0, 1, 0, 0, 0], [1, 1, 0, 0, 1, 1]] // Algorithm : // - Reverse the passed in matrix/array // - Check if each item in the matrix/array is a 1 or a 0, swap them for each other. // - Return the mutated array. // C O D E : var flipAndInvertImage = function(A) { // Reverse the array let temp; for (let i = 0; i < A.length; i++) { for (let k = 0; k < A[i].length / 2; k++) { temp = A[i][k]; A[i][k] = A[i][A[i].length - 1 - k]; A[i][A[i].length - 1 - k] = temp; } for (let k = 0; k < A[i].length; k++) { if (A[i][k] === 1) { A[i][k] = 0; } else if (A[i][k] === 0) { A[i][k] = 1; } } } return A; };
javascript
The MNS chief said his party would march to the Western Railway headquarter in Mumbai on October 5. Maharashtra Navnirman Sena chief Raj Thackeray on Saturday warned the Maharashtra government that his party would not allow the Mumbai-Ahmedabad bullet train project to take off until the railway infrastructure is improved in the city. His comments come a day after 22 people were killed and 39 injured during a stampede at Elphinstone Road railway station in Mumbai. Thackeray questioned why the Railway Ministry had said that the rain had triggered the stampede. “It is not the first time that it has rained in Mumbai,” he added. Thackeray, cousin of Shiv Sena chief Uddhav Thackeray, said his party would give an ultimatum to the state government to remove hawkers who have illegally set up shops on the station bridges. He further said a rally will be taken out to the Western Railway headquarters in Churchgate area of Mumbai on October 5 questioning the poor infrastructure of railway stations. “If it is not complied with then we will act on our own,” he said.
english
Most Monday mornings, much of Hyderabad’s Inner Ring Road is choked with traffic. On this one, however, all is quiet, with only a smattering of vehicles. As the April sun shines down fiercely, a harrowed policeman tries to pacify a man on a two-wheeler by the side of the road. “I have to travel to the bank every day. Will I get an e-challan? ” the man anxiously asks. On the front of his scooter is a sticker with the name of the private bank he is employed by. While e-challans are an old way of pinning traffic violators in Telangana, the system has come in handy during the lockdown, too. As per a recent government order, the Telangana Police have been issuing such challans to motorists if their vehicles are found more than 3 km away from their residences. “Upon checking we come across two-wheelers with pending challans worth Rs 60,000! The bike would not get him more than Rs 10,000 if sold,” the policeman jokes, after the man is allowed to pass. The last three weeks — ever since the nationwide lockdown was imposed by Prime Minister Narendra Modi — have been a lesson in human psychology for the 50-year-old policeman, who is one among a contingent of ten, manning a check-point barely meters away from the Chief Minister’s camp office in Begumpet. “One thing I have learned over these days is that come what may, people have perfect excuses to be out on the streets. On hearing them, you don’t even know whether to question them,” he says, breaking into a mild rant. The unprecedented COVID-19 pandemic has put the world in a fix. A part of this story plays out at the thousands of police checkposts, where the state and the public meet everyday in a never-ending cycle of requests and negotiations. In some parts of the country, authorities feel violations have significantly reduced as the lockdown progresses. Bhadrappa, a police constable in Bengaluru’s Hosur road check post, says most people now have genuine reasons to step out: emergencies like going to hospitals or visiting sick people. “Initially when the lockdown began, the young were out and about on their two-wheelers. This has come down,” he says. In Kolkata too, it is the young demographic, which is upto tricks. “We have seen that mostly young people — college students and young adults — are out on the road. They claim they want to buy medicines and show us fake receipts when asked to produce supporting documents,” says a Kolkata Police officer. “They are bored at home and want to step out. Hence, they go out on joyrides,” adds the officer. The Kolkata Police also claims to have caught many young adults gathering around marketplaces for addas. In Tripura, a couple of people on the streets were found producing false or outdated medical prescriptions to justify their visit outdoors. Some claimed to be “en route to market” 20 km away from their residence. In Bengaluru, too, where main roads are barricaded, people take to its leafy lanes. This has led the police to deploy their mobile vehicular patrol units, known as ‘Hoysala’, to check movement, every hour even at night. “They do not understand the seriousness of the pandemic,” says Babu in Chennai. Around two weeks back, the cop had donned the now-famous ‘Coronavirus-themed helmet’, warning city residents about the dangers of violating lockdown. On Monday morning, Praveen, an IT employee with his 70-year-old father, was stopped by the police at a checkpost Bengaluru’s BTM layout. “I stay in Sarjapur and I have to take my father to the hospital for dialysis in Jayanagara,” he says. The BTM layout is the third checkpoint the duo have been stopped at. But Praveen does not mind. “I show the appointment receipt booked online and the police let us through, there are no issues,” he says. In Assam’s Dhubri town, policemen stand guard at check-posts in two shifts: 6am to 2 pm and 2pm to 10pm . “And at night, we patrol,” says Trinanayan Bhuyan, Deputy Superintendent of Police (HQ) Dhubri. It is often frustrating, but Bhuyan remembers one incident where he couldn’t stop laughing, despite himself. “We were patrolling and a violator saw us — he ran so fast that suddenly he disappeared,” says Bhuyan. The man had actually climbed up a betel nut tree. “He thought he was safe because he was up there, but little did he know we could see his dangling legs,” recalls the policeman, with a laugh. (With inputs from Neha Banka in Kolkata, Debraj Deb in Agartala and Tora Agarwala in Guwahati)
english
In their previous fixture, KT got the better of table-toppers, Dhaka Dynamites (DD) after posting 157. KT were up for the challenge with a modest total on board against Shakib Al Hasan’s side and won the game by .. runs. They will feel confident going into the next encounter against Rahim’s BB. KT have an edge as they are not only at 8 points but have emerged champions in close finishes. Another win and they will come on top of the points table and will be itching to be that against BB. Unlike KT, BB have not enjoyed an easy ride in this year’s edition. They won Comilla Victorains (CV), Rajshahi KIngs (RK) and Chittagong Vikings (CHV) but lost against DD and Rangpur Riders. They have been a touch inconsistent with either bat and ball and will have to bounce back before they get on a rough patch. This is a key moment of the group stages with lots of changes happening in the points table with every second match and BB will be wary of this. A big clash will be the death over bowling of the KT vs the depth in batting of BB. In the brief period, Mahmudullah’s last over spell has already become famous for all the right reasons while the opponents have slog hitters especially in form of Rahim and Thisara Perera down the order to combat that. Overall, an enticing encounter awaits the cricket fanatics of Bangladesh come Sunday evening. This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful. Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings. If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.
english
class Solution { public: double findMedianSortedArrays(vector<int>& arr, vector<int>& brr) { // code here int n= arr.size(); int m = brr.size(); int temp[m+n]; int i=0; int j=0; int k=0; while(i<n && j<m) { if(arr[i]<brr[j]) temp[k++] = arr[i++]; else if(arr[i]>brr[j]) temp[k++] = brr[j++]; else { temp[k++] = arr[i++]; temp[k++] = brr[j++]; } } cout<<i<<" "<<j; while(i<n) temp[k++] = arr[i++]; while(j<m) temp[k++] = brr[j++]; if((m+n)%2 == 0) { cout<<"even"; int median_index1 = (m+n)/2 - 1; int median_index2= (m+n)/2; return (double(temp[median_index1]) + double(temp[median_index2]))/2; } else { cout<<"odd"; int median_index = (m+n)/2; return double(temp[median_index]); } return 0; } };
cpp
<filename>front-end/src/profiles/kiselik_stanislav_anatoliyovich.json {"2010":"","2016":"","Department":"Апеляційний суд Кіровоградської області","Region":"Кіровоградська область","Position":"Заступник Голови Апеляційного суду Кіровоградської області","Name":"<NAME>","Link":"https://drive.google.com/open?id=0BygiyWAl79DMb2pqbmU1VTVwQnc","Note":"","AdditionalNote":"","декларації 2015":"","Youtube":"","ПІБ2":"","Кількість справ":"","Оскаржені":"","Кількість скарг":"4","Кількість дисциплінарних стягнень":"","Клейма":"","Фото":"","Як живе":"","Декларація доброчесності судді подано у 2016 році (вперше)":"http://vkksu.gov.ua/userfiles/declaracii-suddiv/askiro/kiselyksz.PDF","Декларація родинних зв’язків судді подано у 2016 році":"http://vkksu.gov.ua/userfiles/declaracii-suddiv/askiro/kiselykszrz.PDF","key":"kiselik_stanislav_anatoliyovich","field8":"","Link 2015":"","field9":"","Декларації 2013":"","Декларації 2014":"","Декларації 2015":"","Декларації 2016":"","type":"judge","analytics":[{"y":2013,"b":14503,"i":260935,"c":1,"k":65.8,"ka":1,"l":1140,"la":2,"fi":17160,"fh":38,"fha":1,"fl":2037,"fla":2},{"y":2014,"b":12500,"i":257226,"c":1,"k":65.8,"ka":1,"l":1140,"la":2,"fh":38,"fha":1,"fl":2037,"fla":2},{"y":2015,"i":289990,"c":1,"k":66,"ka":1,"l":1130,"la":2,"fl":837,"fla":2,"j":4},{"y":2016,"m":85000,"i":391728,"c":1,"k":66,"ka":1,"l":1130,"la":2,"fi":98626,"fl":837,"fla":2},{"y":2017,"m":120000,"i":664228,"c":1,"k":66,"ka":1,"l":1130,"la":2,"fi":188067,"fl":837,"fla":2}],"declarationsLinks":[{"id":"vulyk_1_588","year":2013,"url":"http://static.declarations.com.ua/declarations/sudy/apeliatsiini_sudy_oblastei__m.kyieva/kirovohradska/kiselyh.pdf","provider":"declarations.com.ua.opendata"},{"id":"vulyk_83_4","year":2014,"url":"http://static.declarations.com.ua/declarations/chosen_ones/judges_batch/2273_kiselyk_stanislav_anatoliiovych.pdf","provider":"declarations.com.ua.opendata"},{"id":"nacp_b2c748af-9254-4af1-ae3e-526ccef09e78","year":2015,"provider":"declarations.com.ua.opendata"},{"id":"nacp_a0c79f6d-19f3-4fe1-ac6f-805be63f0704","year":2016,"provider":"declarations.com.ua.opendata"},{"id":"nacp_2925c909-dad1-4851-ac66-eb31cc5c517e","year":2017,"provider":"declarations.com.ua.opendata"}]}
json
<gh_stars>0 {"topic_13": {"num_tags": 8, "name": "topic_13", "full_name": "topic_13", "num_included_tokens": 8}, "topic_45": {"num_tags": 34, "name": "topic_45", "full_name": "topic_45", "num_included_tokens": 34}, "topic_32": {"num_tags": 24, "name": "topic_32", "full_name": "topic_32", "num_included_tokens": 24}, "topic_10": {"num_tags": 16, "name": "topic_10", "full_name": "topic_10", "num_included_tokens": 16}, "topic_28": {"num_tags": 12, "name": "topic_28", "full_name": "topic_28", "num_included_tokens": 12}, "topic_29": {"num_tags": 2, "name": "topic_29", "full_name": "topic_29", "num_included_tokens": 2}, "topic_39": {"num_tags": 4, "name": "topic_39", "full_name": "topic_39", "num_included_tokens": 4}, "topic_38": {"num_tags": 33, "name": "topic_38", "full_name": "topic_38", "num_included_tokens": 33}, "topic_11": {"num_tags": 3, "name": "topic_11", "full_name": "topic_11", "num_included_tokens": 3}, "topic_25": {"num_tags": 9, "name": "topic_25", "full_name": "topic_25", "num_included_tokens": 9}, "topic_22": {"num_tags": 8, "name": "topic_22", "full_name": "topic_22", "num_included_tokens": 8}, "topic_15": {"num_tags": 1, "name": "topic_15", "full_name": "topic_15", "num_included_tokens": 1}, "topic_21": {"num_tags": 6, "name": "topic_21", "full_name": "topic_21", "num_included_tokens": 6}, "topic_36": {"num_tags": 23, "name": "topic_36", "full_name": "topic_36", "num_included_tokens": 23}, "topic_6": {"num_tags": 2, "name": "topic_6", "full_name": "topic_6", "num_included_tokens": 2}, "topic_5": {"num_tags": 17, "name": "topic_5", "full_name": "topic_5", "num_included_tokens": 17}, "topic_18": {"num_tags": 2, "name": "topic_18", "full_name": "topic_18", "num_included_tokens": 2}, "topic_20": {"num_tags": 14, "name": "topic_20", "full_name": "topic_20", "num_included_tokens": 14}, "topic_1": {"num_tags": 34, "name": "topic_1", "full_name": "topic_1", "num_included_tokens": 34}, "topic_0": {"num_tags": 7, "name": "topic_0", "full_name": "topic_0", "num_included_tokens": 7}}
json
One died while more than half a dozen people were injured as a tractor collided with a double-decker bus in Lucknow's BBD police station area. The accident also led to a massive jam on the Ayodhya Highway. (India Today) By Ashish Srivastava: A tractor collided with a double-decker bus in Lucknow's BBD police station area, killing one and injuring more than half a dozen people. The passengers injured in the accident were immediately rushed to the hospital for treatment. The bus was going from Purvanchal to Jaipur when it collided head-on with the sudden arrival of a tractor. The accident also led to a massive jam on the Ayodhya Highway. The incident took place in the BBD police station area.
english