text
stringlengths
1
1.04M
language
stringclasses
25 values
<reponame>ShehabMMohamed/LeetCodeCPP class Solution { public: int searchInsert(vector<int>& nums, int target) { int low = 0, high = nums.size() - 1; while(low <= high) { int m = low + (high-low/2); if(nums[m] == target) return m; if(nums[m] < targe...
cpp
WWE Superstars usually show respect to each other after a match by shaking hands when they return to the backstage area. Of course, that time-honored tradition only takes place when a match has gone according to plan. On rare occasions, an incident can occur during an in-ring encounter which causes issues between super...
english
SCHEMA_VERSION = 2 from .common import ValidationError, SchemaMismatchError from .v2 import MetadataValidatorV2 as MetadataValidator from .v2 import read_v2 as read, write_v2 as write from .v2 import reads_v2 as reads, writes_v2 as writes
python
Weeks after a 19-year-old woman was allegedly gangraped by four men in the city, the case will soon be handed over to the Mumbai Police from the Aurangabad Police, who registered the initial FIR. Police said according to the statement given by the woman, the incident had allegedly taken place on the intervening night ...
english
<reponame>mariaalejandrabm0703/gui-restaurant-app import {currencyFormat} from './utils'; it('se ejecuta currencyFormat correctamente', () => { const currency = 500; const spec = '$500.00'; expect(currencyFormat(currency)).toBe(spec); });
typescript
It has been variously said that Soumitra Chatterjee’s debut in Satyajit Ray’s Apur Sansar also known as The World of Apu (1959)—is the bildungsroman that mirrored his own life journey from his small-town roots of Krishnanagar in Bengal’s Nadia district to the metropolitan cultural melting pot of Kolkata. And, in doing ...
english
package repast.simphony.ui.probe; import java.awt.GridLayout; import java.beans.PropertyDescriptor; import java.math.BigDecimal; import java.math.BigInteger; import java.text.NumberFormat; import java.util.List; import javax.swing.JComboBox; import javax.swing.JComponent; import javax.swing.JPanel; impo...
java
{ "actions": [], "allow_rename": 1, "creation": "2021-11-15 20:47:24.219471", "doctype": "DocType", "editable_grid": 1, "engine": "InnoDB", "field_order": [ "language", "template" ], "fields": [ { "fieldname": "language", "fieldtype": "Link", "in_list_view": 1, "label": "Language", "option...
json
When the first season of 'Hip Hip Hurray' came out in 1998, it became an instant hit. The show was aired on Zee TV, and featured actors like Vishal Malhotra, Purab Kohli, Nilanjana Sharma, Nauheed Cyrusi and Piya Roy Choudhury. A show that narrated the story of 12th class students studing in DeNobili High School connec...
english
#include "test.h" using test::Framework; int main() { Framework* framework = Framework::getInstance(); framework->hidePassed(); framework->runTests(); framework->print(); framework->finish(); return framework->isAllPassed() ? 0 : -1; }
cpp
AR Rahman was recently spotted in Delhi during a storyteller event where he had a cute moment with a little fan of his and sang Humma Humma for her. Check it out! AR Rahman was recently part of the 16th edition of the Kathakar International Storytellers Festival, which took place in Delhi. The event was organized by th...
english
MAHASHIVRATRI 2023: Mahashivratri is an auspicious Indian festival celebrated all over India by the devotees of Lord Shiva and Mata Parvati. On this day, devotees worship Lord Shiva and Mata Parvati, keep fast from sunrise to sunset, do puja, sing songs and dance to the devotional songs. According to Hindu mythology, ...
english
<reponame>dstanek/keystone-exercises import shelve import sys import threading import time class Benchmark(object): def __init__(self, concurrency=10, iterations=10): self.concurrency = concurrency self.iterations = iterations self.shelf = Shelf() def __call__(self, f): def wr...
python
import type { TransformerContainer } from '../../transformer/Transformers'; import { TransformerSet } from '../../transformer/TransformerSet'; import { CharacterIterator } from '../../util/CharacterIterator'; import { CircularBuffer } from '../../util/CircularBuffer'; import { Queue } from '../../util/Queue'; import { ...
typescript
Very soon the cold will come, and we will have to update our wardrobe. Honor place in it, of course, will take warm sweaters. Where without them, when in the street piercing wind or cold rain. Fashion designers sometimes yearn for the warm season, thinking that it's more difficult to be stylish and beautiful in winter...
english
Rodrigo De Paul's former girlfriend Cami Homs recently opened up on her relationship with Lionel Messi's girlfriend Antonela Roccuzzo. Homs recently appeared on the Argentine TV show Fer Dente. She was asked to choose between Roccuzzo and Argentine businesswoman Claudia Villafane. Homs replied, saying (via Voces Criti...
english
body { margin: 0; background: #00a5be; font-family: system-ui; overflow-x: hidden; background-image: url('../images/asset-red.svg'); background-position: left 200px top; background-repeat: no-repeat; } .logo { grid-area: logo; margin: 0 auto 2em; display: block; } .grid { position: relative; z-index: 2; display: grid...
css
<filename>scripts/update.py from scripts.helpers.packages import ( update_alpine_packages, update_base_images, update_python_packages, ) from scripts.helpers.update_feature_packages import update_s6, update_netcore update_netcore("3.1") update_netcore("5.0") update_s6() update_base_images() update_alpine_...
python
In a game dominated by batsmen, it is rare that a bowler emerges out of nowhere and goes on to play a huge role in the success of his team in his very first series. Yet in the history of Test match cricket, 6 of the 9 players to win the Man of the Series award in their debut series, are bowlers. It shows that all it t...
english
<reponame>HackYourFuture-CPH/fp-class19<filename>src/client/components/OfferProductsList/OfferProductsList.stories.js import React from 'react'; import OfferProductsList from './OfferProductsList.component'; export default { title: 'Components / Offer Product List', component: OfferProductsList, argTypes: { ...
javascript
Anna University, Chennai has signed a has signed a Memorandum of Understanding (MoUs) with the All India Council for Technical Education (AICTE) and L&T EduTech, a hybrid learning platform from Larsen & Toubro. The MoUs have been singed for completion of abridged industry-oriented courses to the students of Anna Univer...
english
from django.db.models.signals import pre_delete, pre_save from django.dispatch import receiver from task.models import InveraTask, TaskLogs from datetime import datetime from django.contrib.auth.signals import user_logged_in, user_logged_out, user_login_failed @receiver(pre_delete, sender=InveraTask) def audit_log_del...
python
package seedu.scheduler.logic.parser; /** * A flag that indicates additional options in an arguments string. * E.g. '-a' in 'delete 1 -a'. */ public class Flag extends Identity { public Flag(String flag) { super(flag); } public String getFlag() { return getIdentity(); } public...
java
<gh_stars>10-100 const makeRouter = require("../../src/fx/makeRouter"); describe("makeRouter", () => { it("should be a function", () => expect(makeRouter).toBeInstanceOf(Function)); it("should handle invalid routes", () => { const router = makeRouter(42); const matchedRoute = router({ request: {} }); e...
javascript
<reponame>LukasHeidern/Univem-Aulas '''8) Elabore um algoritmo que leia 3 valores inteiros (a,b e c) e os coloque em ordem crescente, de modo que em a fique o menor valor, em b o valor intermediário e em c o maior valor. ''' a = int(input("Digite o valor do primeiro valor: ")) b = int(input("Digite o valor do segun...
python
The duo of Sania Mirza and Mate Pavic made it to the next round with the 6-4, 3-6, 7-5 win over Dabrowski and Peers in the Wimbledon 2022 mixed doubles quarterfinal. India’s Sania Mirza and her Croatian mixed doubles partner Mate Pavic will take on second seeds Neal Skupski of Great Britain and Desirae Krawczyk of the ...
english
{"localities": ["Smelterville, ID"], "state": "ID", "postal_code": "83868", "locality": "Smelterville, ID", "lat": 47.555855, "region": {"fips": "16", "abbr": "ID", "name": "Idaho"}, "city": "Smelterville", "type": "STANDARD", "lng": -116.174929, "counties": [{"fips": "079", "name": "Shoshone County"}]}
json
Long-distance passengers were a harried lot as most of the buses either did not turn up or turned up late at the KSRTC Bus Stand in Mangalore on Thursday on account of the strike called by the Joint Committee of Trade Unions of Karnataka State Road Transport Undertakings. As many as 210 State Transport buses pass thro...
english
html,body { font-family:-apple-system,BlinkmacsystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; color: #2c3e50; } ui{ line-height:1.5em; padding-left: 1.5em; } a{ color: #7f8c8d; text-decoration: none; } a:hover{ color: #4fc08d; }
css
After finishing on the podium at the Asian Games and Commonwealth Games, India’s Avinash Sable has set his sights on the Olympics. The 28-year old Steeplechaser has already began to chart out plans to prepare the best possible way for the mega event. Having already planned to shift his training base to Morocco, Sable n...
english
<gh_stars>0 package com.aidev.system.service; import com.aidev.common.core.domain.entity.SysRole; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; import java.util.Set; /** * 角色业务层 * * @author aidev */ public interface ISysRoleService extends IService<SysRole> { /** * 根...
java
{ "name": "reliable.io", "version": "1.0.0", "description": "A javascript port of reliable.io", "main": "index.js", "private": true, "scripts": { "fuzz": "DEBUG=reliable.io node fuzz", "soak": "DEBUG=reliable.io node soak", "test": "tap test -C", "test-local": "DEBUG=reliable.io node ./node_...
json
A day after Ashish Ram, a 19-year-old student from Darbhanga, was killed on the Nepal side of the Miteri (Friendship) bridge after Nepal police opened fire, Raxaul remained tense on Tuesday. It took almost 30 hours for the body to be returned from a hospital in Birgunj to Raxaul. According to reports, Ashish was shot ...
english
St. Petersburg: Russian President Vladimir Putin compared himself favourably to Peter the Great, a Russian monarch from the late 17th century, using the likening to justify Russia’s invasion of Ukraine, the media reported. During a visit on Thursday to an exhibition dedicated to the first Russian Emperor, Putin attempt...
english
<filename>DataSources/raw/zeronet/1White24UrrwQrD86o6Vrc1apgZ1x1o51/data/users/1PCRVVWkwM1x6LYvVohqDYTY7Rbk54jbmr/content.json<gh_stars>1-10 { "address": "1White24UrrwQrD86o6Vrc1apgZ1x1o51", "cert_auth_type": "web", "cert_sign": "<KEY> "cert_user_id": "<EMAIL>", "files": { "data.json": { "sha512": "7d29747dfc...
json
He grabbed attention across the india for lavishing expensive Diwali gifts for their employees. Savjibhai Dholakia become center of talk on Diwali occasion by gifting 500 Fiat Punto cars, 207 2BHK apartments and 570 jewelery sets. The Hari Krishna Exports diamond merchants who surprised their employees with expensive ...
english
School buildings are meant for children. They are designed for them, yet somehow do not relate to them in a holistic way. Each component of the school is somehow conceived in isolation, with little consideration about what the child is finally going to experience as a whole. This work is about making the building compo...
english
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package clas; import java.text.SimpleDateFormat; import java.util.Date; /** * * @author Lobdown */ public class Date...
java
/* General */ html, body { font-family: 'Lora', sans-serif; height: 100%; margin: 0; } /* code */ code { background-color: #f5f5f5; display: block; width: 100%; margin: 0 auto; font-size: 20px; } /* Headers */ .main-section header { font-size: 24px; } ...
css
India do not have men or women singles player currently in the top 100 even though it has produced decent doubles players in recent past. By Reuters: Prajnesh Gunneswaran is the lone Indian in the singles main draw at the 2019 Australian Open and the 29-year-old rues the sorry state of the game back home, which he thi...
english
RAW is a multidisciplinary research initiative. To build original research knowledge base, the RAW programme has been collaborating with different organisations and individuals to focus on its three year thematic of Histories of the Internets in India. Five monographs: Re: Wiring Bodies by Asha Achuthan, Archive and Ac...
english
New Delhi: Reliance Industries Ltd's technology arm Jio Platforms on Friday announced an investment of $15 million in Two Platforms -- "TWO". Jio will acquire a 25 per cent equity stake on a fully diluted basis in the start-up. TWO is a Silicon Valley-based tech start-up founded by Pranav Mistry. TWO -- an Artificial ...
english
{ "set_name": "3rd Series: Mobile Suit Gundam", "name": "Antiaircraft Fire", "price": "3", "number": "EV-078", "effect": "Reduce a M.S. Type 'Battleship' card of your choice's Clash Points by 5.", "corps_symbol": "EF", "rarity": "U", "type": "Event" }
json
{"fileCount":9,"unpackedSize":20998,"packageJson":{"name":"validate-npm-package-name","version":"3.0.0","description":"Give me a string and I'll tell you if it's a valid npm package name","main":"index.js","directories":{"test":"test"},"dependencies":{"builtins":"^1.0.3"},"devDependencies":{"standard":"^8.6.0","tap":"^...
json
<reponame>lofung/Achilles-demo {"PREVALENCE_BY_GENDER_AGE_YEAR":{"TRELLIS_NAME":[],"SERIES_NAME":[],"X_CALENDAR_YEAR":[],"Y_PREVALENCE_1000PP":[]},"PREVALENCE_BY_MONTH":{"X_CALENDAR_MONTH":201211,"Y_PREVALENCE_1000PP":0.0011},"LENGTH_OF_ERA":{"CATEGORY":"Length of era","MIN_VALUE":1,"P10_VALUE":1,"P25_VALUE":1,"MEDIAN_...
json
<filename>ecart-pwa/node_modules/if-env/package.json { "_args": [ [ { "raw": "if-env@^1.0.0", "scope": null, "escapedName": "if-env", "name": "if-env", "rawSpec": "^1.0.0", "spec": ">=1.0.0 <2.0.0", "type": "range" }, "C:\\Drivenator\\PWA\\...
json
{"Department":"Любомльський відділ Ковельської місцевої прокуратури Волинської області","Name":"<NAME>","Position":"прокурор Любомльського відділу Ковельської місцевої прокуратури Волинської області","Region":"Волинська область","analytics":[{"fc":1,"fi":79559,"i":6543,"y":2015},{"fc":1,"ff":82,"ffa":1,"fi":138306,"i":...
json
<reponame>carmenbianca/eslint-config-liferay /** * SPDX-FileCopyrightText: © 2017 Liferay, Inc. <https://liferay.com> * SPDX-License-Identifier: MIT */ /* eslint-disable no-for-of-loops/no-for-of-loops */ const DESCRIPTION = 'Direct use of ReactDOM.render is discouraged; instead, use ' + 'the <react:component />...
javascript
<gh_stars>0 .files input { outline: 2px dashed #6e8ae9; outline-offset: -10px; -webkit-transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear; transition: outline-offset 0.15s ease-in-out, background-color 0.15s linear; padding: 120px 0px 85px 35%; text-align: center...
css
The well marked low pressure area which was over East Rajasthan and adjoining Madhya Pradesh on Tuesday moved to southwest Rajasthan the next day. Incessant rainfall in parts of Rajasthan has caused flood-like situation in several districts, with the weather forecasting agency expecting subdued rainfall activity over ...
english
<gh_stars>0 import LatataData from './song/gidle/LATATA'; import HannData from './song/gidle/HANN'; import SenoritaData from './song/gidle/Senorita'; import UhohData from './song/gidle/Uh-Oh'; import LionData from './song/gidle/Lion'; import OhmygodData from './song/gidle/Oh-my-god'; import DumdidumdiData from './song/...
javascript
from .basic import (resample_ann, resample_sig, resample_singlechan, resample_multichan, normalize_bound, get_filter_gain) from .evaluate import Comparitor, compare_annotations, benchmark_mitdb from .hr import compute_hr, calc_rr, calc_mean_hr from .peaks import find_peaks, find_local_peaks, correct...
python
<gh_stars>0 /** * @author <NAME> <<EMAIL>> */ package ch.ethz.bhepp.ode; import ch.ethz.bhepp.ode.Solver.InitializationException; /** * An Interface for solving an {@link Ode} with adaptive step size. */ public interface AdaptiveStepSolver { /** * Initialize the solver. * * @param ode th...
java
Everything you need to know about today's Apple announcements. SAN FRANCISCO -- Aaaand we're back at the Yerba Buena Center for the Arts, a favorite venue for Apple's announcements, after the more intimate setting of its headquarters for the iPad and company announcements last December. Today the company filled us in o...
english
import { createGlobalStyle } from 'styled-components'; const GlobalStyle = createGlobalStyle` @import url("https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700,800,900"); @import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i"); @import url("https://f...
javascript
from discord.ext import commands class Context(commands.Context): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.color = int(self.bot.config["COLOR"], 16) async def send(self, content: str = None, reply: bool = True, *args, **kwargs): if content is not Non...
python
{ "parent": "gardenstuff:block/lattice/lattice_ext", "textures": { "texture": "gardenstuff:blocks/lattice_aged" } }
json
import React from 'react'; import './App.css'; import EventInfoNav from './components/eventInfoNav.js'; import Footer from './components/footer.js'; import Header from './components/header.js'; import SlideShow from './components/slideShow.js'; function App () { return ( <div> <Header></Header> <Event...
javascript
<gh_stars>1000+ package transpiler import ( "fmt" goast "go/ast" "strings" "github.com/elliotchance/c2go/ast" "github.com/elliotchance/c2go/program" "github.com/elliotchance/c2go/types" "github.com/elliotchance/c2go/util" "go/token" ) func transpileImplicitCastExpr(n *ast.ImplicitCastExpr, p *program.Program...
go
<reponame>tabinfl/50ShadesOfGreyPill<gh_stars>1-10 { "address": "1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v", "cert_auth_type": "web", "cert_sign": "<KEY> "cert_user_id": "<EMAIL>", "files": { "data.json": { "sha512": "6391244f48801801104d6dfdf57518c2ec2a742611b9c941a7a54f69f0326cb4", "size": 486 } }, "inner_pa...
json
NEW YORK –- Forty years ago, a Bell Laboratories engineer collaborated with a sculptor to build a gigantic kinetic sculpture entitled Homage to New York. The hulking mass of junkyard parts, set with sophisticated electrical triggers, self-destructed in precisely 27 minutes, spraying metal shrapnel and getting laughs fr...
english
<filename>src/main/typescript/intake24-redux-client.d.ts import {Store, Reducer} from "redux"; export interface ClientState { apiBaseUrl?: string; refreshToken?: string; accessToken?: string; signinRequestPending: boolean; errors: string[]; } export class Client { constructor(reduxStore: Store<any>, state...
typescript
{"questions": [{"player_1": {"name": "<NAME>", "player_stat": 472.0}, "player_2": {"name": "<NAME>", "player_stat": 36.0}, "stat": "fours", "skill": "BAT", "question_text": "Who has hit more fours?", "greater": true}, {"player_1": {"name": "<NAME>", "player_stat": 37.0}, "player_2": {"name": "<NAME>", "player_stat": 22...
json
package walker import "log" const debug = false func init() { if debug { log.SetFlags(log.LstdFlags | log.Lshortfile) } }
go
import pytz from rest_auth.serializers import TokenSerializer from rest_framework.authtoken.models import Token from rest_framework.exceptions import ValidationError from rest_framework.fields import ( CharField, CurrentUserDefault, HiddenField, UUIDField, ChoiceField, ) from rest_framework.serializ...
python
The Three Little Pigs: An Architectural Tale (Hardcover) In author/illustrator Steven Guarnaccia’s quirky, artsy picture book retelling of The Three Little Pigs, the pigs and their homes are nods to three famous architects—Frank Gehry, Philip Johnson, and Frank Lloyd Wright—and their signature homes. Each house is fill...
english
<filename>index.md --- profile: false --- # VirtualBox Tutorial --- ## TODO | Tables | Assigned | Status | |:------------- | -------------:| -------:| | Introducere | Amandoi | In Progress | | Instalare | Amandoi | Done | | Instalare Mac | Sabin | Done | | Instalare Ubuntu | Sabin | In Progress (must r...
markdown
{"dash.all.debug.js":"sha256-nDOvWAn0+A9vD1OtDDy8dhdb/4pYvvH6G92VdVYEA2I=","dash.all.min.js":"sha256-hrHC8gBRjoX2unghJ8zGQhbRt6/OIPvOXZ0T3U0NFVA=","dash.mediaplayer.debug.js":"sha256-XgXRmJIEXuNn5pfQzI+oWLS7qvu2c+cR+xRZ8aXvDxE=","dash.mediaplayer.min.js":"sha256-Wyreh+f9rLZa4MROurz5qDaw090HX7SVkIrYSwdh/DQ=","dash.mss.d...
json
On Sunday, the makers of Jug Jugg Jeeyo made a big splash on social media by releasing the film's trailer. The film's cast, including Kiara Advani, Varun Dhawan, Neetu Kapoor, Anil Kapoor, and Maniesh Paul, were present at the launch. Along with them were director Raj Mehta and Dharma's Karan Johar, as well as CEO Apur...
english
Kraft Suspense Theater was an anthology series which featured a new cast and stories each week.Kraft Suspense Theater was an anthology series which featured a new cast and stories each week.Kraft Suspense Theater was an anthology series which featured a new cast and stories each week. This is a terrific program. It's o...
english
<reponame>andrewiskang/video-poker<filename>frontend/src/app/pages/login/login.component.css .login-card { width: 90%; max-width: 450px; margin: 40px auto 0 auto; text-align: center; } .login-social { text-align: left; margin: 5px 20px; width: 230px; padding: 10px 20px; font-size: 16px; font-weight...
css
DeAndre Hopkins is well aware of the rumors that the Arizona Cardinals may trade him. These rumors originated well before the NFL draft and continue to churn out today. If the Cardinals don't end up trading him, it would be a surprise. Hopkins recently spoke out about the potential trade and how he's handling the rumo...
english
<gh_stars>0 @import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap'); @font-face { font-family: Bebas; src: url('../fonts/BebasKai-Regular.otf'); } * { padding: 0; ...
css
When “Charmed” star Holly Marie Combs found out that the CW had officially greenlit a “Charmed” reboot, the original castmate tweeted the new cast well wishes, but her well wishes weren’t exactly sincere. But one thing the series will not feature is the original cast. But Combs’ simple and gracious tweet sent fans of...
english
A smile is said to be the best jewel of a person, but with problems in your teeth, you can often feel shy and uncomfortable smiling wholeheartedly, especially in front of others. According to dentists, teeth are considered to be a sensitive and crucial part of overall health. Healthy eating, chewing, digesting, and eve...
english
American tennis professional Christopher Eubanks recently revealed that he sought former tennis pro Kim Clijsters' help at the start of the grass-court season. Eubanks, 27, claimed the first ATP tour title of his career on Saturday, July 1, by beating Adrian Mannarino, 6-1, 6-4, to win the 2023 Mallorca Championships....
english
NATO's chief said Tuesday the alliance sees no need to change its nuclear weapons alert level, despite Russia's threats. The alliance's secretary-general, Jens Stoltenberg, spoke to The Associated Press following talks on European security with Polish President Andrzej Duda. They met at an air base in Lask, central Po...
english
Former United States President Donald Trump‘s upcoming social media platform TRUTHSocial, which has been highly awaited by his followers and those looking to make a quick buck in the market, has landed in the crosshairs of regulators. A company that joined hands with the Trump Media & Technology Group acknowledges tha...
english
<filename>src/main/webapp/gulp/e2e-tests.js<gh_stars>1-10 'use strict'; var gulp = require('gulp'); var $ = require('gulp-load-plugins')(); gulp.task('test:e2e', function () { return gulp.src(config.scripts.e2eSrc()) .pipe($.angularProtractor({ 'configFile': 'protractor.conf.js', '...
javascript
General George S. Patton stated, "Success is how high you bounce when you hit bottom." It appears that Microsoft's smartphone efforts are about as close to the bottom as you can get, according to its latest earnings report. As a long time supporter of the underdog and Microsoft smartphone user, I knew things were going...
english
Emerging smartphone brand iQOO on March 21 unveiled new mid-range Z7 5G series in India. It also features a hybrid dual-slot tray , an in-screen fingerprint sensor, and a 3. 5mm audio jack. Apple seems to have the Midas touch in the tech industry, or it is just the herd following we see, just like in every other secto...
english
GM Modular is presently going through a purple patch, and just recently it bagged the coveted and prestigious Realty Plus INEX Award as the Best Brand of the Year 2023 for the best brand in the Home electric solutions category. It is a phenomenal feat to begin with at the start of the year! GM Modular is presently goi...
english
New Delhi, Oct 26 (IANS/wishavwarta) The Manohar Lal Khattar-led Haryana government completed eight years on Wednesday with emphasis on uprooting corruption, crime and casteism. “In these eight years, special focus has been laid on chalking out a three ‘C’ strategy — to uproot corruption, caste and crime,” Khattar tol...
english
Reliance Industries chairman Mukesh Ambani and wife Nita Ambani have announced the birth of their first grandchild. Their son Akash Ambani and daughter-in-law Shloka Mehta have welcomed a baby boy in Mumbai today. An official statement from the Ambani family's spokesperson read, "With the grace and blessings of Lord K...
english
<reponame>humanfirstimpact/locusnine__serverless-template<filename>tests/searchEngineTests.ts import { expect } from 'chai'; import 'mocha' import { SearchEngine } from '../src/search/SearchEngine' describe('Search Engine tests', () => { it('should return some results', () => { var engine = new SearchEngi...
typescript
{"d3-time-format.js":"<KEY>,"d3-time-format.min.js":"<KEY>}
json
<gh_stars>1-10 require('./bootstrap'); window.registerMenu({ name: "main", path: "", text: "main", }); window.registerMenu({ name: "Dashboard", path: "main", text: "Dashboard", }); window.registerMenu({ name: "Reportes", path: "main", text: "Reportes", }); window.registerMenu({ ...
javascript
<filename>platform/platform-api/src/com/intellij/ExtensionPoints.java // Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij; import com.intellij.openapi.diagnostic.ErrorReportSubmitter; import com.intellij.opena...
java
<gh_stars>1-10 { "staging": { "configLevel": "amplifyAdmin" }, "main": { "configLevel": "amplifyAdmin" } }
json
<reponame>DharmendraVinay/geode<filename>geode-core/src/main/java/org/apache/geode/internal/util/concurrent/StoppableReentrantReadWriteLock.java<gh_stars>1-10 /* * Licensed to the Apache Software Foundation (ASF) under one or more contributor license * agreements. See the NOTICE file distributed with this work for ad...
java
Posted On: The Union Government is committed to accelerating the pace and expanding the scope of COVID-19 vaccination throughout the country. The nationwide COVID 19 vaccination started on 16th January 2021. The new phase of universalization of COVID-19 vaccination commenced from 21st June 2021. The vaccination drive h...
english
{ "plugin-data": { "name": "G3Nshop Plugin", "description": "Solución sencilla de comercio on-line para Bludit." }, "categoria-tienda": "Categoría de la Tienda", "categorias": "Categorías", "moneda": "Moneda", "tienda": "G3Nshop", "producto": "Producto", "productos-publicados": "Productos Publ...
json
<gh_stars>0 { "CaseRecords": { "AppName": "<AppName>", "DatabaseName": "<DatabaseName>", "ConnectionString": "<ConnectionString>" }, "MedicalCases": { "AppName": "<AppName>", "DatabaseName": "<DatabaseName>", "ConnectionString": "<ConnectionString>" }, "ResourceGroups": { "AppName"...
json
Apple to replace iPad 4th gen with iPad Air 2 IANS Last Updated : 16 Apr 2017 01:53:00 PM IST (File Photo: iPad Air 2) Customers who need to replace their fourth generation iPad will now get a newer and more capable iPad Air 2 as a substitute from Apple Stores and authorised service providers, a media report said. App...
english
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap'); *{ box-sizing: border-box; } body { font-family: 'Roboto', sans-serif; height: 100px; } head { background-color: #71c7ec; text-emphasis: center; font-size: 40px; } #left { float: left; margin-top: 30px; margi...
css
<gh_stars>1-10 package com.data2.easybuild.db; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.generator.AutoGenerator; import com.baomidou.mybatisplus.generator.config.DataSourceConfig; import com.baomidou.mybatisplus.generator.conf...
java
Harbhajan Singh recalls an April Fool's prank played on Sourav Ganguly (Hindi version) April Fool's day is a day full of pranks. Sourav Ganguly was at the receiving end of one such prank orchestrated by a few Indian team players, namely Harbhajan Singh, Yuvraj Singh and Zaheer Khan. Ganguly, who couldn't quite comprehe...
english
import requests url = 'http://127.0.0.1:9000/api/comments' resp = requests.post( url, data={ "name": "wnn", "email": "<EMAIL>", "comments": "comment", "page_id":"2" } ) print(resp.text)
python
const Discord = require("discord.js") const got = require("got") exports.run = async (bot, message, args) => { const server = message.content.split(" ").slice(1).join(" ") if (!server) { var embed = new Discord.RichEmbed() .setColor("GREEN") .setDescription("❌ | Please Includ...
javascript
The Tribune Steps to curb monkey menace listed TRIBUNE NEWS SERVICE SHIMLA, FEBRUARY 29 Forest Minister Thakur Singh Bharmouri today said nine natural habitats (vanar vatikas) will be set up around the monkey sterilization centres and the case for declaring monkeys as vermin will be moved to the Centre so that the mena...
english