text stringlengths 1 1.04M | language stringclasses 25
values |
|---|---|
var Placeholder = require('../Placeholder'),
ph = new Placeholder();
ph.load();
console.log( 'loaded!' );
// setInterval( function(){}, 1000 );
| javascript |
Minecraft has seen seemingly countless updates since its full release back in 2011, but that doesn't mean it doesn't have plenty of improvements ahead.
Although Mojang's smash-hit sandbox game has improved leaps and bounds, there's always room for more. No game is perfect and needs to be tweaked or have additional con... | english |
The devices small radio nodes which provide network coverage over a range of between 10 and 200 metres have been used by businesses and consumers to provide a signal in areas of poor coverage for years.
Now operators are using them to bolster public broadband networks and ease pressure on traditional base stations, as ... | english |
"""
This file contains functions related to survey search time calculations
"""
import pandas as _pd
#######################################################################################################################
def clean_datetimes(df, dt_col='DataDate'):
"""Filter datetimes and correct for timezone ... | python |
#include <iostream>
using namespace std;
int main()
{
int t,i,j,k;
int sum;
char a,b;
cin >>t;
while(t--)
{
sum=0;
cin>>i>>a>>j>>b>>k;
if(a=='+')
sum = i+j;
else
sum = i-j;
if(b=='+')
sum = sum + k;
else
... | cpp |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<base href="../../../" />
<script src="page.js"></script>
<link type="text/css" rel="stylesheet" href="page.css" />
</head>
<body>
[page:Object3D] → [page:Mesh] →
<h1>[name]</h1>
<p class="desc">
A mesh ... | html |
<filename>lambda/slack_bot.py
import hashlib
import hmac
import json
import logging
import os
import urllib.request
SLACK_BOT_USER_ACCESS_TOKEN = os.environ["SLACK_BOT_USER_ACCESS_TOKEN"]
SLACK_SIGNING_SECRET = os.environ["SLACK_SIGNING_SECRET"]
# ログ設定
logger = logging.getLogger()
logger.setLevel(logging.INFO)
def ... | python |
Los Angeles, Nov 30 (IANS) Actress Kate Beckinsale has reportedly turned towards actor Ben Affleck after splitting from her husband Len Wiseman.
Beckinsale and Affleck, who reportedly had a brief fling after filming “Pearl Harbor” in 2001, have been spending time together following their respective splits, reports ace... | english |
package com.dxm.anymock.manager.biz;
import com.dxm.anymock.manager.biz.model.request.BasePagingRequest;
import org.apache.ibatis.session.RowBounds;
public class RowBoundsConverter {
public static RowBounds convert(BasePagingRequest basePagingRequest) {
int offset = basePagingRequest.getItemsPerPage() * (... | java |
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json",
"contentVersion": "1.0.0.0",
"parameters": {
"actionGroupName": {
"value": "autoscaleActionGroup"
},
"actionGroupShortName": {
"value": "autoscaleAG"
},
"emailAddress": {
"value": ... | json |
package com.vagas.api.model.input;
import lombok.Getter;
import lombok.Setter;
import javax.validation.constraints.Email;
import javax.validation.constraints.NotBlank;
@Getter
@Setter
public class UsuarioInput {
@NotBlank
private String login;
@Email
@NotBlank
private String email;
@NotBlank... | java |
{
"<page title>": "SIGMA DP1 MERRILL 19MM F2.8 CAMERA DP1M",
"ac power adapter": "N/A",
"additional zoom": "None",
"approx resolution": "46MP",
"aspect ratio": "3:2",
"battery": "Rechargeable Lithium Ion Battery Pack",
"builtin flash": "No",
"builtin memory": "N/A",
"burst rate": "N/... | json |
<gh_stars>10-100
#include "Stdafx.h"
#include "FBXLight.h"
using namespace ArcManagedFBX;
ARC_DEFAULT_INTERNAL_CONSTRUCTOR_INHERIT_IMPL(FBXLight,FBXNodeAttribute,FbxLight)
ARC_DEFAULT_CONSTRUCTORS_IMPL(FBXLight)
void ArcManagedFBX::FBXLight::SetShadowTexture(FBXTexture^ textureInstance)
{
this->GetFBXLight()->SetS... | cpp |
from tkinter import *
clicks = 0
def click_button():
global clicks
clicks += 1
buttonText.set("Clicks {}".format(clicks))
root = Tk()
root.title("GUI на Python")
root.geometry("300x250")
buttonText = StringVar()
buttonText.set("Clicks {}".format(clicks))
btn = Button(textvariable=bu... | python |
Last weekend was an extraordinary occasion in the NHL, as several players tied the knot in what can only be described as a massive wedding celebration. The hockey world witnessed a flurry of marital bliss as some of the league's brightest stars said their "I dos. "
Tyson Barrie, the talented defenseman for the Nashvill... | english |
The newly appointed UK Prime Minister Liz Truss had called the British monarchy "disgraceful" as a teenager.
“I’m not against any of them personally . . . I’m against the idea that people can be born to rule . . . I think that’s disgraceful,” Truss said as a teen in a TV News video clip.
The clip, which emerged this ... | english |
We clarify loan agreements, financial records, safety and security contracts and other documents in clear simple language. Baltimore County Maryland Bankruptcy Attorney Georgette Miller combines her competence and also experience in genuine estate personal bankruptcy, legislation and also car loan adjustment options to... | english |
The Dallas Cowboys would like to imagine that they're going to contend this season like they have in recent years. They boasted the league's top-scoring offense last season en route to a 12-5 finish and a division title. They fizzled out in the playoffs, but figure to be back there next year.
However, they've got a bit... | english |
Short Bytes: With Simore SIM solutions, it is easier to use up to 5 SIMs on a single mobile phone. Simore also supports SIMs from different service providers and also works for phones running different platforms like iOS, Windows, Android etc.
Simore (SIM + More) is a multi-SIM solution expert which has come up with a ... | english |
<gh_stars>10-100
use async_std::task::block_on;
use serde_json::Value;
use crate::model::response::ResponseStub;
use super::{StdResponse, super::req::StdRequest, Verifier};
pub struct BodyVerifier;
impl BodyVerifier {}
impl Verifier<'_> for BodyVerifier {
fn verify(stub: &'_ ResponseStub, name: &'_ str, _req: ... | rust |
{
"projectTitle": "NextBook: Lovely docs with MDX!",
"projectDescription": "NextBook is quick and easy way to buid technical books or documentation that support modern standards and run blazingly fast. It's built with MDX, Next.js and React and works by compiling markdown or MDX down to plain static html.",
"proj... | json |
<filename>leetcode/cpp/003_longest_substring_without_repeating_characters.cpp<gh_stars>1-10
/*
Given a string, find the length of the longest substring without repeating characters.
Examples:
Given "abcabcbb", the answer is "abc", which the length is 3.
Given "bbbbb", the answer is "b", with the length of 1.
Given "p... | cpp |
<reponame>MinecraftMachina/lwjgl3<filename>modules/samples/src/test/java/org/lwjgl/demo/openxr/XRHelper.java
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
*/
package org.lwjgl.demo.openxr;
import org.joml.Math;
import org.joml.*;
import org.lwjgl.egl.*;
import org.lwjgl.o... | java |
<reponame>Dinvan/TouristAttractions<filename>Shared/build/intermediates/blame/res/release/single/drawable-hdpi-v4.json<gh_stars>0
[
{
"merged": "/home/advanz101/Dinesh_WorkSpace/SampleProjects/TouristAttractions/Shared/build/intermediates/res/merged/release/drawable-hdpi-v4/common_google_signin_btn_text_lig... | json |
7. Anil, a diligent and dedicated officer, is assigned to the Central Drugs Standard Control Organisation (CDSCO), a regulatory body responsible for ensuring the safety and efficacy of pharmaceutical products in the country.
Anil’s routine investigation into pharmaceutical companies takes an unexpected turn when he stu... | english |
Former Liverpool and Bayern Munich midfielder Xabi Alonso has been acquitted of tax fraud by a court in Madrid.
Alonso was accused of defrauding the Spanish tax office of almost €2 million between 2010 and 2012, when he was at Real Madrid.
The Prosecutor's Office had called for a two-and-a-half-year prison sentence, bu... | english |
import Vector from "./Vector.js";
import * as constants from "./constants";
import * as pointUtils from "./pointUtils";
import * as movementUtils from "./movementUtils";
let initNum = 0;
export default class Body {
constructor(game, center, options = {}) {
this.game = game;
this.center = center;
... | javascript |
{
"name": "medivh-common",
"version": "0.0.1",
"description": "common library",
"main": "lib/index.js",
"author": "<EMAIL>",
"scripts": {
"build": "babel src --out-dir lib"
},
"dependencies": {
"invariant": "^2.2.4",
"pako": "^1.0.6"
}
}
| json |
[{"name": "Capital goods", "path": "Capital goods", "value": 1559.537}, {"name": "Consumer goods", "path": "Consumer goods", "value": 305.72}, {"name": "Intermediate goods", "path": "Intermediate goods", "value": 3054.537}, {"name": "Plastic or Rubber", "path": "Plastic or Rubber", "value": 1563.918}, {"name": "<NAME>"... | json |
import companyNews from './company-news.vue'
export default companyNews
| javascript |
<filename>2018/02/2018-02-18.md
### 2018-02-18
#### ruby
* [jekyll/jekyll (33,273s/7,345f)](https://github.com/jekyll/jekyll) : 🌐 Jekyll is a blog-aware, static site generator in Ruby
* [discourse/discourse (24,142s/5,950f)](https://github.com/discourse/discourse) : A platform for community discussion. Free, open, si... | markdown |
LONDON (Reuters) - Pep Guardiola apologised for Manchester City's part in the ugly mass brawl that disfigured the end of their 3-1 defeat by Chelsea on Saturday as he contemplated his most problematic day in the Premier League.
While Guardiola talked of his regret about the melee that saw City pair Sergio Aguero and F... | english |
<reponame>guilhermenicolini/nucleale-api
import { LinkTypes } from '@/domain/models'
import { LinkMongoRepository, MongoHelper } from '@/infra/db'
import { Collection, ObjectId } from 'mongodb'
import MockDate from 'mockdate'
import moment from 'moment-timezone'
const mockData = () => ({
type: LinkTypes.passwordRec... | typescript |
Mumbai: Benchmark market indices Sensex and Nifty reached day’s high after RBI Governor Shakatikanta Das said the central banks expects economic growth to turn positive in the fourth of the current fiscal. The central bank, however, projected 9. 5% decline in GDP in FY21.
After opening flat S&P BSE Sensex and NSE Nift... | english |
/*
* Copyright (c) 2016, SRCH2
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions ... | cpp |
Today french fans are asking for an event for Avengers 4 in France.
French fans have always been loyal and devoted to the Marvel Cinematic Universe, the cast and to all the people who worked hard to bring to the screen these movies which inspire us and changed so many lives. But we have noticed that Marvel kinda ignore... | english |
<gh_stars>1-10
package com.ifast.customer.service;
import com.ifast.common.base.CoreService;
import com.ifast.common.domain.Tree;
import com.ifast.customer.domain.CustomerInfoDO;
/**
*
* <pre>
* 客户信息
* </pre>
* <small> 2018-08-07 14:36:07 | Aron</small>
*/
public interface CustomerInfoService extends CoreServi... | java |
<filename>translate/cloudstack/en/4.13.0.0/adminguide/tuning.html
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-sc... | html |
<gh_stars>10-100
---
title: "قسمت دوم کار عملی با گیت در یازدهمین جلسه باز نرمافزاری مشهد"
date: 2014-11-09T19:01:37+03:30
draft: false
id : "۱۱"
subject: "کار عملی با git - قسمت دوم"
speaker: "<NAME>"
location: "سجاد، حامد جنوبی ۵، نبش مرجان ۶، پلاک ۷۶/۱ ، گروه مهندسی کاوا"
poster: "#"
tags: ""
featured_image: "/imag... | markdown |
Naslovi su sjajan način da brzo saopštite drugima šta treba da znaju. Saznajte kako da koristite stilove za naslove da biste olakšali upotrebu dokumenata.
Otkucajte tekst koji želite u Word dokumentu.
Izaberite rečenicu u koju želite da dodate zaglavlje.
Izaberite stavku > Stilovi (ili pritisnite kombinaciju tastera Al... | english |
{
"localValidity": {
"validityStatus": "AUTO_APPROVED",
"justification": "Default dataset validity",
"updater": {
"handle": "abc"
}
},
"globalValidity": {
"validityStatus": "MACHINE_APPROVED",
"justification": "Verified by 4 independent programs. See http://us.metamath.org/",
"up... | json |
<filename>src/tools/clippy/tests/ui/crate_in_macro_def.rs
// run-rustfix
#![warn(clippy::crate_in_macro_def)]
mod hygienic {
#[macro_export]
macro_rules! print_message_hygienic {
() => {
println!("{}", $crate::hygienic::MESSAGE);
};
}
pub const MESSAGE: &str = "Hello!";
}
... | rust |
Rajesh Dally was today appointed chairman of Improvement Trust,Khanna.
The BJP workers have thanked the party high command for chosing Dally for the post. Minister of Local Government Manoranjan Kalia is said to have lobbied hard with the party high command for Dallys appointment,who was earlier cashier with the state... | english |
Apple consumers were eagerly anticipating a new update for iOS 6 sometime this week, and the company has responded with an official update to iOS 6.0.1. If you have an iPhone 4 or iPod Touch ready and waiting, head to your General Settings and you’ll find that an OTA software update to iOS 6.0.1 is now available. The u... | english |
<filename>sample/src/main/java/me/relex/circleindicator/sample/fragment/InfiniteViewPagerFragment.java
package me.relex.circleindicator.sample.fragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.... | java |
<reponame>briyanii/main<filename>src/main/java/seedu/address/model/expense/exceptions/ExpenseNotFoundException.java
package seedu.address.model.expense.exceptions;
/**
* Signals that the operation is unable to find the specified expense.
*/
public class ExpenseNotFoundException extends RuntimeException {}
| java |
from __future__ import print_function
#! /usr/bin/env cmsRun
import sys
import FWCore.ParameterSet.Config as cms
from SimTracker.TrackerMaterialAnalysis.trackingMaterialVarParsing import options
process = cms.Process("MaterialAnalyser")
if options.geometry == 'run2':
process.load('Configuration.Geometry.Geometr... | python |
Chopra suffered extensive bleeding and underwent an emergency operation which lasted for three and a half hours and she had around 50 stitches to tie her arteries, nerves and tendon, which were severely damaged.
Doctors advised her to take rest minimum of four months. Pooja made her acting debut in Bollywood with a ca... | english |
A Chinese man who rode a jet ski more than 300 km (186 miles) across the sea to South Korea from China was jailed in his homeland several years ago for making fun of its leader, Xi Jinping, a South Korean activist said on Wednesday.
A Chinese man who rode a jet ski more than 300 km (186 miles) across the sea to South K... | english |
<gh_stars>0
{
"organization":"org.clapper",
"name":"classutil",
"version":"0.4.5",
"description":"A library for fast runtime class-querying, and more",
"site":"http://software.clapper.org/classutil/",
"tags":["classes","byte code"],
"docs":"",
"licenses": [{
"name": "BSD",
"url": "http://software.clapper... | json |
<filename>packages/native/src/assets/icons/HandHoldingCoinRegular.tsx
import * as React from "react";
import Svg, { Path } from "react-native-svg";
type Props = {
size?: number | string;
color?: string;
};
function HandHoldingCoinRegular({
size = 16,
color = "currentColor",
}: Props): JSX.Element {
return (
... | typescript |
import { existsSync, writeFileSync } from 'fs';
import * as Path from 'path';
import * as yargs from 'yargs';
import { log } from '../../utils/logger';
export const command = 'init [Options]';
export const desc = 'Initializes docsense config file (.docsenserc)';
export const aliases = ['i'];
export const builder: ya... | typescript |
<filename>package.json
{
"name": "billforward-js",
"version": "6.0.0",
"description": "BillForward.js client for easy, gateway-agnostic card tokenization",
"main": "src/billforward.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}... | json |
Medieval Pinball is a free software for Android, that belongs to the category 'Arcade'.
A full version app for iPhone, by Bharti Airtel Ltd.
Pinball HD IPhone Classic ArcadeZenSpace Games is a full version program for iPhone, belonging to the category 'Arcade'.
Pinball Game is a free game for Android, belonging to the ... | english |
Two of the original developers of the crypto mixer Tornado Cash are caught up in a whole new shitstorm of a federal indictment. On Wednesday, the U.S. alleged that two of the original devs, Roman Storm and Roman Semenov, helped crypto criminals launder millions of crypto at a time helping to emphasize the “anonymous” n... | english |
<filename>src/main/java/tk/vexisu/chip8/processor/opcode/OpCode.java
package tk.vexisu.chip8.processor.opcode;
public enum OpCode
{
SYS(0x0000),
CLS(0x00E0),
RET(0x00EE),
JPC(0x1000),
CALL(0x2000),
SEB(0x3000),
SNEB(0x4000),
SEV(0x5000),
LDB(0x6000),
ADDB(0x7000),
LDV(0x8000),
OR(0x8001),
AND(0x8002),
XO... | java |
{"meta":{"build_time":"2021-06-01T07:03:25.055Z","license":"CC-BY-4.0","version":"2.0-beta","field_definitions":[{"name":"Total test results","field":"tests.pcr.total","deprecated":false,"prior_names":["totalTestResults"]},{"name":"Hospital discharges","deprecated":false,"prior_names":[]},{"name":"Confirmed Cases","fie... | json |
<filename>manuals/MOPAC2002_manual/node634.html
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252">
<META NAME="Generator" CONTENT="Microsoft FrontPage 5.0">
<TITLE>INITSV (INITialize SolVation)</TITLE>
<META NAME="description" CONTENT="INITSV (INITialize SolVation)">
<META NA... | html |
India and New Zealand put on a show in Hyderabad in the opening ODI of the series where the visitors staged a dramatic comeback to almost pull off a heist. As much as it's hard to replicate it in the very next game, Raipur would absolutely wish for something closer to that as it braces to host its first-ever internatio... | english |
#include <tdme/gui/nodes/GUIPanelNode.h>
#include <string>
#include <set>
#include <tdme/gui/events/GUIMouseEvent.h>
using std::set;
using std::string;
using tdme::gui::nodes::GUIPanelNode;
using tdme::gui::events::GUIMouseEvent;
GUIPanelNode::GUIPanelNode(
GUIScreenNode* screenNode,
GUIParentNode* parentNode,
... | cpp |
AAP gives 10 days ultimatum to Congress government to remove Deol and slammed CM Channi on Deol's appointment.
Chandigarh: The Aam Aadmi Party (AAP) Punjab senior leader and Leader of Opposition (LoP) Harpal Singh Cheema expressed strong objection and disappointment over the newly appointed Advocate General of Punjab ... | english |
Hi ..I don't know names of hero and heroine.The story goes like this..heroine has one younger sister and mother,her father is dead. Hero has one younger sister who is so young tha. Him ..fatehr and his mother is seriously ill. Heroine's mother will look for alliance and will come across hero's profile.She will arrange ... | english |
import dash
from dash.dependencies import Input, Output
import dash_table
import dash_core_components as dcc
import dash_html_components as html
import pandas as pd
df = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/gapminder2007.csv')
# add an id column and set it as the index
# in this case t... | python |
<gh_stars>1-10
from typing import Tuple, List
from dataclasses import dataclass
from .. import inference_errors as ierr
from .. import type_system as ts
from .. import context
from ..code_blocks import Primitive
from ..type_engine import TypingContext
from . import func_methods, concrete_methods, add_method_to_list
... | python |
Faking News is an invaluable member of the endangered species of humour venues, which are dwindling fast in a ridiculously dour, touchy and self-important nation. It is overpopulated with gas balloons and FN does the important job of puncturing them. But this week, it suffered a self-inflicted injury with a joke interv... | english |
package malculator.ui;
import imgui.ImDrawList;
import imgui.ImGui;
import imgui.ImVec2;
import malculator.shared.ast.Token;
import malculator.utils.Either;
import org.jetbrains.annotations.NotNull;
public class ASTRenderer {
public static final ASTNode.Calculation test = new ASTNode.Calculation() {{
calc... | java |
While the owner of the gym managed to come out, a trainer and two other employees were allegedly present inside the fitness centre.
The depression that lay centred over the east-central Bay of Bengal has intensified into a deep depression. As per latest information shared by India Meteorological Department (IMD), the ... | english |
<reponame>Mattlk13/dependent-packages
["fenix-ui-DSDEditor","fenix-ui-DataEditor","fenix-ui-catalog","fenix-ui-chart-creator","fenix-ui-dashboard","fenix-ui-data-management","fenix-ui-map-creator","fenix-ui-menu","fenix-ui-metadata-viewer","fenix-ui-visualization-box"] | json |
No visit to Canada would be complete without taking in Niagara Falls, with its breathtaking Horseshoe and American Falls seen from various vantage points like lookouts, boat tours, and even aerial photography.
This tour will take you inside a power plant for an exploration of tunnels behind Niagara Falls before continu... | english |
<reponame>DonMagee/aws-resource-providers
{
"name": "community-codecommit-approvalruletemplate",
"version": "0.1.0",
"description": "AWS custom resource provider named Community::CodeCommit::ApprovalRuleTemplate.",
"private": true,
"main": "dist/handlers.js",
"files": [
"dist"
],
... | json |
* {
box-sizing: border-box;
}
.grid--list--element {
float: left;
width: 100%;
padding: 10px;
background-color: #eee;
color: #000;
border: 0.5px solid #000;
}
.row::after{
content: "";
display: table;
clear: both;
}
.grid--list--button {
display: inline-block;
width: 100%;
}
.button {
border: none;
o... | css |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>jshashset, a JavaScript implementation of HashSet</title>
<meta name="author" content="<NAME> - <EMAIL>">
<meta name="keywords" content="hash, set, JavaScript, has... | html |
After the conclusion of the gala IPL final around two weeks back, now the primary question ..
Why Team India’s senior cricketers should get another chance?
The announcement of the Indian squad for the Bangladesh tour made it clear that India’s ..
Indian Cricket team for the next month’s Bangladesh tour has been announc... | english |
Plastike Melamine Cute Kubyina Injangwe Igishushanyo Cyimbwa Yimbwa Ibikombe Ibikoko & Ibigaburo Ibikombe, Ibikombe & Pail Byabigenewe Byacapwe CMYK Icapiro.
- .Ifata amaunci 8 y'ibiryo byumye cyangwa bitose kugirango wirinde kugaburira cyane.ibyoroshye koza.
- BYOROSHE GUKORESHA: Ibi bikombe byamatungo byinjangwe bira... | english |
<reponame>valerino/rv6502emu
/*
* Filename: /src/utils.rs
* Project: rv6502emu
* Created Date: 2021-08-11, 09:16:30
* Author: valerino <<EMAIL>>
* Copyright (c) 2021 valerino
*
* MIT License
*
* Copyright (c) 2021 valerino
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
*... | rust |
<reponame>medialab/climateDebateExplorer<filename>ENB-data/enb_section_jsons/enb12134e_12.json<gh_stars>0
{
"actors": [
"Group of 77"
],
"countries": [
"Saudi Arabia",
"China"
],
"enb_end_date": "14-Jun-00",
"enb_long_title": "TWELFTH SESSION OF THE SUBSIDIARY BODIES OF THE UNFCCC",
... | json |
import * as commonDefsSchema from './common_defs.schema.json';
import * as authLoginSchema from './AUTH/AUTH__LOGIN.schema.json';
import * as pageViewSchema from './PAGE/PAGE__VIEW.schema.json';
/**
* List of all possible analytics event types associated with
* their validating json schema.
*
* Schema keys cooresp... | javascript |
La Salle University, private, coeducational institution of higher learning in Philadelphia, Pennsylvania, U.S. It is operated by the Christian Brothers, a teaching order of the Roman Catholic church. It comprises schools of Arts and Sciences, Business Administration, and Nursing, offering a range of bachelor’s and mast... | english |
Priyanka Gandhi Vadra has been tasked with organising the "Haath Se Haath Jodo" campaign across the nation, with a focus on women in particular. Sources informed that Priyanka would lead a wave of marches with women cadres in March, focussing on rising inflation and its impact on the public, especially the middle class... | english |
<filename>PopSyn/IPF_Setup.cpp
//*********************************************************
// IPF_Setup.cpp - initialize the IPF classes
//*********************************************************
#include "PopSyn.hpp"
//---------------------------------------------------------
// IPF_Setup
//------------------------... | cpp |
Former Blaugrana president Josep Maria Bartomeu has claimed that it was a 'mistake' for Barcelona to let Lionel Messi leave Camp Nou in 2020.
Bartomeu said that he would only have allowed the Argentine to depart Camp Nou for MLS or Asia.
The stance was taken in 2020 when the six-time Ballon d'Or first made a push for... | english |
{
"id": 56951717,
"name": "eportmon",
"fullName": "sandipchitale/eportmon",
"owner": {
"login": "sandipchitale",
"id": 3310939,
"avatarUrl": "https://avatars1.githubusercontent.com/u/3310939?v=3",
"gravatarId": "",
"url": "https://api.github.com/users/sandipchitale",
"htmlUrl": "https://... | json |
The first sign of the coming U.S. air raid was when the enemy radar and air-defense missile sites began exploding. The strikers were Air Force F-22 Raptor stealth fighters, flying unseen and faster than the speed of sound, 50,000 feet over the battlefield. Having emptied their weapons bays of super-accurate, 250-pound ... | english |
<reponame>Kamilczak020/openapi-generator-api<gh_stars>0
export * from './openapi.service';
| typescript |
<gh_stars>0
#pragma once
#include "adc/make.hpp" | cpp |
<filename>appsettings.json
{
"ConnectionStrings": {
//"DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=aspnet-Redes_De_Solidaridad-CF07ED3E-CF76-4167-8D29-D3F567BA15BE;Trusted_Connection=True;MultipleActiveResultSets=true"
//Cadena de conexion a base de datos
"DefaultConnection": "server=lo... | json |
<filename>openmdao/solvers/brent.py
""" Brent Nonlinear solver."""
from six import iteritems
from math import isnan
import numpy as np
from scipy.optimize import brentq
from openmdao.core.system import AnalysisError
from openmdao.solvers.solver_base import NonLinearSolver
from openmdao.util.record_util import updat... | python |
import * as knockout from "knockout";
import { AppViewModel } from "./components/app";
// Create the element we will mount to
let app = document.createElement('div');
app.setAttribute("data-bind", "component:{ name: 'app'}");
document.body.appendChild(app);
var appViewModel = new AppViewModel({});
knockout.applyBind... | typescript |
import { useState } from "react";
/**
*
* Custom hook which returns a boolean state and a state toggle function.
*
* @param {boolean} initialValue Initial value of the state.
* @returns {Array} Array containing boolean state and a state toggle function.
*/
const useToggle = (initialValue) => {
const [value, se... | javascript |
<gh_stars>1-10
{"media_id": "77484174", "local_id": "NR029\n", "title": "File:Olga_Raphael-Linden_in_Titus_at_Dramatiska_teatern_1911_-_SMV_-_NR029.tif", "thumbnail": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Olga_Raphael-Linden_in_Titus_at_Dramatiska_teatern_1911_-_SMV_-_NR029.tif/500px-Olga_Raphael-L... | json |
Akhil was last seen in Venky Atluri’s Mr Majnu which had a decent run at the box-office. The film receive mixed response form the audience, while his first two films- Akhil and Hello couldn’t weave the magic. Three film old Akhil who worked ith big banners and filmmaker couldn’t give him much needed break in his career... | english |
<gh_stars>0
{
"Artist": "Shull, <NAME>, 1872-1948",
"Common name": "peaches",
"Date created": "1912",
"Geographic origin": "Washington, D.C., United States",
"Notes on original": "Caused by root drowning or sour soil.",
"Physical description": "1 art original : col. ; 18 x 24 cm.",
"Scientific name": "<NA... | json |
<gh_stars>1-10
/* -*- c++ -*- */
/*
* Copyright 2013,2015 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3... | cpp |
<reponame>InteractiveComputerGraphics/higher_order_embedded_fem
/// Poor man's approx assertion for matrices
#[macro_export]
macro_rules! assert_approx_matrix_eq {
($x:expr, $y:expr, abstol = $tol:expr) => {{
let diff = $x - $y;
let max_absdiff = diff.abs().max();
let approx_eq = max_absdif... | rust |
use drop_some::DropSome;
#[test]
fn test()
{
let x = ok_value_to_unit();
// It is NOT drop `None`.
assert_eq!(x.drop_some(), None);
}
fn ok_value_to_unit() -> Option<String>
{
// If it would be compilable then `.drop_some()` is work expectedly.
// Because, `match` must be return one value that is the same type ... | rust |
<gh_stars>1-10
# Firmware for the UltraSwitch Project of http://www.remoteQTH.com
This is the firmware for the remoteQth.com Ultraswitch STM5500 Version
If you need help, feel free to contact <EMAIL>
Sketch is developed with IDE Version 1.8 and later (using Visual Micro)
The idea:
Inspired from the megawebswitch proje... | markdown |
<reponame>daqcri/NADEEF
/*
* QCRI, NADEEF LICENSE
* NADEEF is an extensible, generalized and easy-to-deploy data cleaning platform built at QCRI.
* NADEEF means "Clean" in Arabic
*
* Copyright (c) 2011-2013, Qatar Foundation for Education, Science and Community Development (on
* behalf of Qatar Computing Research... | java |
<gh_stars>1-10
package tree
//给定一个完美二叉树
//
//struct Node {
// int val;
// Node *left;
// Node *right;
// Node *next;
//}
//填充它的每个 next 指针,让这个指针指向其下一个右侧节点。如果找不到下一个右侧节点,则将 next 指针设置为 NULL。
//
//初始状态下,所有 next 指针都被设置为 NULL。
type Node struct {
Val int
Left *Node
Right *Node
Next *Node
}
func connect(root *Nod... | go |
Monday June 29, 2020,
The Indian government on Monday banned 59 mobile apps, including China's TikTok, ShareIt, and WeChat, terming them prejudicial to sovereignty, integrity, and national security of the country.
In an official statement, the Ministry of Electronics and Information Technology (MeitY) said it has rece... | english |
Mumbai: The upcoming Indian Film Festival of Melbourne (IFFM) will celebrate 100 years of Indian cinema and showcase some of the most celebrated movies of the last century.
The festival, to be held from May 3 to 15, will celebrate 100 years of Indian cinema and showcase film like 'Raja Harishchandra' (1913). It will c... | english |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.