text stringlengths 1 1.04M | language stringclasses 25
values |
|---|---|
#include<iostream.h>
#include<conio.h>
class sum
{
// hidden data from outside world
private: int a,b,c;
public:
void add()
{
clrscr();
cout<<"Enter any two numbers: ";
cin>>a>>b;
c=a+b;
cout<<"Sum: "<<c;
}
};
void main()
{
sum s;
s.add();
getch();
} | cpp |
A lthough it had its origin in Orissa, Gitagovindam (Ashtapadi) continues to be a phenomenon even today thanks to its pan-Indian acceptance. The 12th century composition of poet Jayadeva reached Kerala within a century of its creation. Here, it was rendered by temple musicians of the Marar community to the accompanimen... | english |
A subscription to JoVE is required to view this content.
You will only be able to see the first 2 minutes.
The JoVE video player is compatible with HTML5 and Adobe Flash. Older browsers that do not support HTML5 and the H.264 video codec will still use a Flash-based video player. We recommend downloading the newest ver... | english |
<gh_stars>100-1000
{
"alias": "video/454/pyconau-2010--state-of-python",
"category": "PyCon AU 2010",
"copyright_text": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0",
"description": "State Of Python\n\nPresented by <NAME>\n\nThis talk will present a whirlwind update of the state of Python as of\nJ... | json |
package services;
import play.libs.ws.WSResponse;
import java.util.concurrent.ExecutionException;
public interface WeatherApi {
WSResponse getCityMetadata(String cityName) throws ExecutionException, InterruptedException;
WSResponse getForecastForCity(String cityId) throws ExecutionException, InterruptedExceptio... | java |
<filename>vendors/tinymce/plugins/visualblocks/plugin.min.js
tinymce.PluginManager.add("visualblocks", function (e, t) {
function n() {
var t = this;
t.active(r), e.on("VisualBlocks", function () {
t.active(e.dom.hasClass(e.getBody(), "mce-visualblocks"))
})
}
va... | javascript |
<reponame>Urvessss/com-cg-oct12-batch3
package com.cg.oct12.batch3.Day7;
public class App {
public static void main(String[] args) {
String str="abc";
int num=Integer.parseInt(str);
System.out.println(num);
}
}
| java |
<reponame>jwzimmer/tv-tropes<filename>linked_article_tropes/linked_trope_dict_from_AdaptationalBackstoryChange.json
{"AdaptationalBackstoryChange": ["SettingUpdate", "LighterAndSofter", "AdaptationExpansion", "AdaptationDeviation", "AdaptationExpansion", "ExternalRetcon", "AdaptationOriginConnection", "AdaptationalNati... | json |
{
"defaultSeverity": "error",
"extends": [],
"jsRules": {},
"linterOptions": {
"exclude": ["bin", "node_modules/**"]
},
"rules": {
"await-promise": true,
"ban-comma-operator": true,
"curly": true,
"interface-name": [false, "never-prefix"],
"max-line-length": [
true,
{
... | json |
<reponame>n1ke23/img-finder
// let query = 'js';
// let page = 1;
// let perPage = 12;
export default {
_query: 'cat',
page: 1,
perPage: 12,
async fetchImages(){
this.apiKey = '<KEY>';
this.baseURL = "https://pixabay.com/api/";
this.url = `${this.baseURL}?image_type=photo&orientation... | javascript |
describe('clinical:autoform', function () {
var server = meteor();
var client = browser(server);
beforeEach(function () {
server.execute(function () {
}).then(function (value){
});
});
afterEach(function () {
server.execute(function () {
});
});
it('Autoform should exist on the c... | javascript |
The new work permit for H-1B visa holders officially opened for applications on July 16. The programme will also provide for study or work permits for their family members.
Approved applicants for the new programme will receive an open work permit of up to three years in duration, which means they will be able to work ... | english |
{"web":[{"value":["酿造","冲泡","酿制"],"key":"brewing"},{"value":["酿造技术","酿造技巧","酿造工艺"],"key":"brewing technique"},{"value":["啤酒酿造用大麦","酿造大麦","酿造啤酒大麦"],"key":"brewing barley"}],"query":"brewing","translation":["酝酿"],"errorCode":"0","dict":{"url":"yddict://m.youdao.com/dict?le=eng&q=brewing"},"webdict":{"url":"http://m.youda... | json |
26 October 2022, AU: Corteva Agriscience has long recognised the benefits and strengths of 2,4-D as a herbicide. With its robust broad-spectrum activity on some of the most important hard to kill weeds, it is well justified as a vital tool for fallow management. However, for many farmers, the use of current 2,4-D produ... | english |
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
background-image: url('../img/flowers.JPG');
background-size: cover;
align-items: center;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
font-family: 'Roboto', sans-serif;
... | css |
{
"name": "stellarterm-desktop",
"private": true,
"version": "0.0.1",
"description": "Electron wrapped around StellarTerm. Originally from https://github.com/electron/electron-quick-start",
"main": "main.js",
"scripts": {
"start": "electron .",
"buildAll": "npm run mac; npm run win; npm run linux",
... | json |
Jordan Poyer was surprised and so were several social media users, after the Buffalo Bills safety’s interception was overturned against the New England Patriots on Thursday. The two sides locked horns in their Week 13 matchup at the Gillette Stadium.
New England quarterback Mac Jones’s throw, in the third quarter, was... | english |
Begin typing your search above and press return to search.
MARGHERITA, May 24: A thief was bbed by Margherita Police recently. The thief has identified as Biki Dhar of Borgolai Chariali under Margherita Police Station. Dhar and his accomplice had allegedly gone to steal from a paan shop at Borgolai Chariali. While Dha... | english |
<reponame>qyvlik/orderdb<filename>src/main/java/io/github/qyvlik/orderdb/entity/request/AppendListRequest.java
package io.github.qyvlik.orderdb.entity.request;
import java.io.Serializable;
import java.util.List;
public class AppendListRequest implements Serializable {
private String scope;
private Boolean ign... | java |
# Sta-663 Final Project
## Project description
This project implements the memory sparse version of Viterbi algorithm and Baum-Welch algorithm to hidden Markov Model.
The whole project is based on the paper ''Implementing EM and Viterbi algorithms for Hidden Markov Model in linear memory'', written by <NAME> ... | markdown |
{
"pause": "[",
"increment": "3",
"cycle": "<Control_L>",
"split": "<Alt_L>",
"skip": "-",
"reset_start": "=",
"exit": "|",
"arm_metronome": "u",
"start_metronome": "i",
"auto_start": "true",
"allow_offset": "false",
"auto_adjust": "true",
"use_counter": "false",
"use_splits": "false",
"1.... | json |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_271) on Tue May 18 08:44:53 EDT 2021 -->
<title>PacketHandler</title>
<meta name="date" content="2021-05-18">
<link rel="stylesheet" type="text... | html |
[
null,
{"id":1,"battlerName":"Actor1_1","characterIndex":0,"characterName":"Actor1","classId":1,"equips":[2,0,0,3,0],"faceIndex":0,"faceName":"Actor1","traits":[],"initialLevel":1,"maxLevel":99,"name":"里德","nickname":"","note":"","profile":""},
{"id":2,"battlerName":"Actor1_2","characterIndex":1,"characterName":"Actor... | json |
<filename>package.json
{
"name": "temporary-vim-motions",
"displayName": "Temporary vim motions",
"description": "A VSCode popup for vim motions",
"version": "0.0.3",
"publisher": "gelio",
"icon": "icon.png",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Programming Languages"
],
"a... | json |
Vaginitis is common gynaecologic condition for which women visit a doctor. It can be caused due to several different factors and the severity of symptoms may vary from mild to severe and some women may have no symptoms at all. There, however, are some common symptoms that are present in most forms of vaginitis. The doc... | english |
<reponame>idwaker/learning_rust<filename>rustbook/src/conditionals_loops.rs
//! these are also doc comments
//! but for crates, modules or functions
//! triple quotes looks nicer than these sad
/// these are doc comments
/// boring kind of things to do here
/// ok has support for markdown inside
fn main() {
// t... | rust |
Panaji, Apr 26 (IANS): With an alarming decline in Goas economic growth, the state government can no longer afford to sit on the issue of mining ban, a survey revealed.
According to the Economic Survey released by the Directorate of Planning, Statistics and Evaluation, Goa's economy grew by a mere 1. 6 per cent in 202... | english |
/* automatically generated by tools/bindgen-all-the-things */
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(dead_code)]
pub type __int32_t = ::std::os::raw::c_int;
#[repr(C)]
#[derive(Debug, Default, Copy, Clone)]
pub struct video_frame_plane {
pub offset: i3... | rust |
- #Narendra ModiWho Is Sanjay Mishra, The ED Chief Known For Sending 15 Big Politicians To Jail?
Varanasi, July 07: Prime Minister Narendra Modi on Thursday highlighted the need for connecting education with the modern ideas of the 21st century.
Speaking at the inaugural session of the three-day Akhil Bhartiya Shiksh... | english |
<filename>src/select/select-panel.tsx
import React from 'react';
import {
ButtonSelectSize,
SelectPanelOverrides,
SelectOptionProps,
SelectPropsOverrides,
} from './types';
import {
StyledOption,
StyledOptionIcon,
StyledSelectPanel,
StyledModalPanel,
} from './styled';
import {ScreenReaderOnly} from '.... | typescript |
Consistency defines top NFL players, separating them from average ones. Jefferson & Adams exemplify this. Yet, some receivers shine briefly before returning to mediocrity.
The Bucs saw potential in WR Clayton when they drafted him in 2004, impressed by his great rookie season. Unfortunately, injuries plagued his caree... | english |
Vimeo is facing a lawsuit that claims the company has violated Illinois legislation on the collection and storage of biometric information belonging to residents.
In a lawsuit (.PDF) filed on September 20, as reported by Threat Post, complainants claim that Delaware-based Vimeo has violated the Illinois Biometrics Info... | english |
{
"name": "videojs-ass-es6",
"version": "0.0.4",
"author": "<NAME> <<EMAIL>>",
"description": "ASS/SSA subtitle overlay for videojs",
"repository": {
"type": "git",
"url": "https://github.com/aviinl/videojs-ass.git"
},
"bugs": {
"url": "https://github.com/aviinl/videojs-ass/issues"
},
"key... | json |
'ZDNET Recommends': What exactly does it mean?
ZDNET's recommendations are based on many hours of testing, research, and comparison shopping. We gather data from the best available sources, including vendor and retailer listings as well as other relevant and independent reviews sites. And we pore over customer reviews ... | english |
{"name":"<NAME> der Stadt Leipzig","id":"SN-4431060-0","address":" Dieskaustraße 213 04249 Leipzig OT Großzschocher ","school_type":"Mittelschule","legal_status":1,"fax":"0341/42709827 ","phone":"0341/4270980 ","website":"http://www.56-oberschule-leipzig.de","email":"<EMAIL>","provider":"Stadt Leipzig","director":"<NA... | json |
2 On my keeping I shall stand, and shall pitch a degree on [the] warding; and I shall behold, that I see what thing shall be said to me, and what I shall answer to him that reproveth me. (I shall stand watch at my station, and shall climb the stairs of the watch tower; and I shall see, what shall be said to me, and wha... | english |
Experts noted that the second group which was specifically instructed to include two to three servings of fermented foods like kombucha, kefir and sauerkraut in their diet along with 6-8 servings of fruits and vegetables rich in prebiotic fibres and 5 to 8 servings of grains each week reported improvement in their slee... | english |
{
"madeBy": "Faite par {name}.",
"contribute": "Affichez le code source et / ou contribuez au projet sur GitHub.",
"endorsement": "Smoothroll n’est ni endossé ni affilié à Crunchyroll.",
"dataNotice": "Smoothroll ne stocke aucune de vos données sur ses serveurs. C'est simplement une interface qui repose sur Cru... | json |
<gh_stars>0
package ssh
import (
"fmt"
"strings"
)
func GetHostPhysicalNetworkInfo(host, username, password string) string {
if username == "" {
username = "root"
}
if password == "" {
password = "<PASSWORD>"
}
cmd := "grep '^[^#]' /etc/neutron/plugins/ml2/ml2_conf.ini | grep network_vlan_ranges"
sshHost ... | go |
"""Implement the Unit class."""
import numpy as np
from .. import config, constants
__all__ = ["Pixels", "Degrees", "Munits", "Percent"]
class _PixelUnits:
def __mul__(self, val):
return val * config.frame_width / config.pixel_width
def __rmul__(self, val):
return val * config.frame_width ... | python |
[
{
"filename": "成长边缘.jpg",
"title": "成长边缘",
"desc": "成长边缘的测试文字成长边缘的测试文字成长边缘的测试文字"
},
{
"filename": "成长边缘.jpg",
"title": "成长边缘",
"desc": "成长边缘的测试文字成长边缘的测试文字成长边缘的测试文字"
},
{
"filename": "成长边缘.jpg",
"title": "成长边缘",
"desc": "成长边缘的测试文字成长边缘的测试文字成长边缘的测试文字"
},
{
"filename": "成长边缘.jpg",
"title": "成... | json |
Chandrachud’s remarks came during the virtual book release by Professor Dr Balram K Gupta (professor Emeritus, and Director- Academics, Chandigarh Judicial Academy), on Saturday.
The book by Professor Gupta titled “My Journey With Law and Justice”, was virtually released in the presence of Justice DY Chandrachud (Judg... | english |
Actress Anushka Sharma is back to the bay, and has resumed work. A while ago, our cameramen spotted the actress stepping out of her car for a shoot in the city. Have a look :
In the picture, the actress was seen wearing a pink coloured dungaree teamed with a white tee. With her short hair look, the gorgeous made heads ... | english |
<gh_stars>1-10
{"localities": ["Ogelthorpe, GA", "Olgethorpe, GA", "Oglethorpe, GA"], "state": "GA", "postal_code": "31068", "locality": "Oglethorpe, GA", "lat": 32.328618, "region": {"fips": "13", "abbr": "GA", "name": "Georgia"}, "city": "Oglethorpe", "type": "STANDARD", "lng": -84.117049, "counties": [{"fips": "193"... | json |
body {
font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
background:#fff url('../images/bckg.png') repeat top left;
color:#777;
line-height:1.5em;
}
h1, h2, h3, p {
margin-bottom:2%;
}
h1 {
font-size: 2em;
color:#fff;
font-weight:bold;
}
h2 {
color:#4aaaa5;
font-size:1.6em;
font-weight:bold;
... | css |
{"ast":null,"code":"var _jsxFileName = \"/Users/dweber/git/personal/react-complete-guide/01-starting-project/src/components/CourseGoals/CourseGoalItem/CourseGoalItem.js\";\nimport React from 'react';\nimport './CourseGoalItem.css';\nimport { jsxDEV as _jsxDEV } from \"react/jsx-dev-runtime\";\n\nconst CourseGoalItem = ... | json |
Dinesh Kumar Thapaliya, Chief Election Commissioner of the Election Commission (EC), has said that none of the candidates will retain their current position after running for the upcoming parliamentary elections. The meeting of the Council of Ministers held on Thursday decided to hold parliamentary elections on the 20t... | english |
/* ==UserStyle==
@name 81Dojo Highlight Last Move
@namespace USO Archive
@author <NAME>
@description `Highlights squares of the last move.`
@version 20200618.2.46
@license CC-BY-SA-4.0
@preprocessor uso
==/UserStyle== */
/* ==UserStyle==
@name 81Dojo Highlight Last M... | css |
You’ve started your first job. Soon, it is tax-filing time and you invest in tax-saving mutual funds from an online portal. Then, somebody advises you to start a systematic investment plan (SIP). You get in touch with a distributor and buy a scheme. Then, say, you get transferred to another city, and buy more schemes f... | english |
<gh_stars>0
/**
* Unit Tests for Piezas
**/
#include <gtest/gtest.h>
#include "Piezas.h"
class PiezasTest : public ::testing::Test
{
protected:
PiezasTest(){} //constructor runs before each test
virtual ~PiezasTest(){} //destructor cleans up after tests
virtual void SetUp(){} //sets up before each test (after... | cpp |
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/datapipeline/model/RemoveTagsRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::DataPipeline::Model;
using namespace Aws::Utils::Json;
u... | cpp |
<reponame>DrBlury/Springboot_Vue_Docker
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import axios from "axios";
import VueAxios from "vue-axios";
Vue.use(VueAxios, axios);
axios.defaults.baseURL = "http://localhost:8090";
axios.defaults.headers.common['Accept'] = "application/json";... | javascript |
While the laws of the land and the provisions of the Cable Television Act regulate non-members, the News Broadcasters’ Association (NBA) has assiduously protected the right to self-regulation in the nine years since the News Broadcasting Standards Authority (NBSA) came into being.
Despite the initial glitches, the NBSA... | english |
//! Tests auto-converted from "sass-spec/spec/values/maps/errors.hrx"
#[test]
#[ignore] // missing error
fn test() {
assert_eq!(
crate::rsass(
"$map: ( foo: bar );\
\ntest { baz: $map; }\
\n"
)
.unwrap_err(),
"Error: (foo: bar) isn\'t a valid CS... | rust |
Russell Westbrook signed with the Los Angeles Clippers after he cleared waivers on Wednesday afternoon.
The nine-time All-Star was waived by the Utah Jazz on Monday. He cleared waivers because no team has the salary cap space to take on the remaining $47 million he was owed on his expiring contract.
There is an outside... | english |
<filename>velero-plugins/migrolebindings/restore.go
package migrolebindings
import (
"encoding/json"
"strings"
apiauthorization "github.com/openshift/api/authorization/v1"
"github.com/sirupsen/logrus"
"github.com/vmware-tanzu/velero/pkg/plugin/velero"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/apis/m... | go |
{
"id": 1673,
"source": "barnes",
"verse_id": 18580,
"verse_count": 1,
"reference": "45:18",
"title": "",
"html": " <p> <em>For thus saith the Lord <\/em>—This verse is designed to induce them to put uuwavering confidence in the true God. For this purpose, the prophet enumerates the gr... | json |
import { expect } from "chai";
import * as i18next from "i18next";
import * as _ from "lodash";
import "mocha";
import {
FACEBOOK_BUTTONS,
FACEBOOK_IMAGE_ASPECT_RATIO,
FACEBOOK_TOP_ELEMENT_STYLE,
FACEBOOK_WEBVIEW_HEIGHT_RATIO,
FacebookButtonTemplateBuilder,
FacebookElementTemplateBuilder,
FacebookEvent,
... | typescript |
<gh_stars>0
{"body": "Jack was right to ask for more info, and your commands will be helpful, but\nin the meantime this may be useful (in particular, skip to the bottom of the\npost where Andy McNeill contributes the useful part):\n\n\nhttp://www.rumblestrip.org/interests/light/rtrace-multiprocessing-option-ini\ntial-t... | json |
<filename>data/uso-styles/82586.json
{
"id": 82586,
"name": "BownBox",
"description": "A beautiful login form screen for Facebook. Uses simple CSS3 to modify the layout and style of the generic boring login screen - perfect for showing off on your Retina display or to your friends. Buy me a coffee @paypal - <EMAI... | json |
<filename>nes/1.1.2.json
{"client.js":"<KEY>,"client.min.js":"<KEY>} | json |
<reponame>rolocampusano/nber<gh_stars>1-10
{
"id": 14193,
"cites": 31,
"cited_by": 341,
"reference": [
"<NAME>., 1985. Do Demand Curves for Stocks Slope Down? Journal of Finance 41(3), 579-590.",
"<NAME>., <NAME>., 1988. Housing Investment in the United States. Journal of Political Econo... | json |
Regular readers may well have noticed some changes going on around here recently, so we’re really happy to finally share our big news with you: insideTonic is now OnSoftware!
We’ve changed the name of our blog for a variety of reasons, the main one being that we thought ‘OnSoftware‘ says a lot more about what we’re wri... | english |
.plan-item {
border: 1px solid grey;
border-radius: 25px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden !important;
background-color: gainsboro;
}
/* .plan-item:hover {
background-color: gainsboro;
} */
.plan-item-description {
width: 220px;
... | css |
{
"posts": [
{
"message": "Please provide json file to display with when running this image.",
"example": "docker run -d -p <outside port>:3000 -v $(pwd)/<path to your db.json>:/jsondata/db.json norppa55/jays-sons-server --watch db.json"
}
]
} | json |
This is one of my favourite brands, but this formula didn't really help with my allergies. The ingredients are excellent quality. I still give it 5 stars because at least I didn't feel pressure in my sinuses during this allergy season. I will go back to SinusClear from RidgeCrest as that formula really soothes my seaso... | english |
package com.monkey.enumerate;
/**
* 统一返回枚举类
*
* @author skyer
*/
public enum ResultEnum {
SUCCESS(200, "操作成功!"),
SEARCH_ERROR(3000, "查询失败!"),
INSERT_ERROR(3001, "添加失败!"),
DELETE_ERROR(3002, "删除失败!"),
UPDATE_ERROR(3003, "修改失败!"),
NO_THIS_USER(3004, "该用户不存在!"),
USER_DISABLE(3005, "账号已禁用!")... | java |
<filename>00-jpa-standalone/src/main/java/example02/TestClass.java
package example02;
public class TestClass {
}
| java |
- 3 hrs ago 5 Best Microwave Ovens For Your Kitchen: Deals To Consider As Amazon Sale 2023 Is Nearing!
- Travel Have you been to Vishveshwaraya Falls in Mandya yet? If not, this is the best time!
There is always time for fashion when it comes to Kim Kardashian. The curvy socialite was spotted at the airport wearing a... | english |
<gh_stars>0
{
"name": "knowledge-back",
"version": "1.0.0",
"description": "knowledge base backend",
"main": "app.js",
"scripts": {
"dev": "nodemon",
"lint": "eslint --ext .js,.html -f ./node_modules/eslint-friendly-formatter . --fix",
"prepush": "npm run lint",
"start": "node app.js"
},
"... | json |
package com.indramahkota.moviecatalogue.data.source.remote.response;
import org.junit.Assert;
import org.junit.Test;
import java.util.ArrayList;
public class ApiResponseTest {
@Test
public void empty() {
ApiResponse apiResponse = ApiResponse.empty("empty", new ArrayList<>());
Assert.assertEqu... | java |
//! Implementation of the `wasm-pack test` command.
use super::build::BuildMode;
use bindgen;
use build;
use command::utils::set_crate_path;
use console::style;
use emoji;
use failure::Error;
use indicatif::HumanDuration;
use lockfile::Lockfile;
use manifest;
use progressbar::Step;
use slog::Logger;
use std::path::Pat... | rust |
Bengaluru (Karnataka) [India], February 12 (ANI): India all-rounder Riyan Parag on Saturday was sold to Rajasthan Royals (RR) for Rs 3. 8 crore in the ongoing Indian Premier League (IPL) mega auction.
For Parag, a bidding war took place between RR and Gujarat Giants (GT). All-rounder Abhishek Sharma was bought by Sunr... | english |
Dibrugarh: The grand festival of Holi was celebrated with great pomp and show here. Cutting across the barriers of religion, caste and economic stratification, people from all sections of the society were seen smearing different colours on each other’s face and in a jovial mood.
With catchy music playing loud in the b... | english |
A nuclear arms control treaty signed by President Ronald Reagan and Soviet Premier Mikhail Gorbachev in 1987 came to a sad and scary end Friday when the U. S. withdrew from the pact – but don’t blame President Trump. Russia has been violating the agreement for years, so Trump did the right thing by formally killing it.... | english |
After presenting the National Award-winning film, the docu-drama 'Gulabi Gang' about women empowerment in Rural India, Sohum Shah is taking the film one step forward by introducing the Gulabi Gang Art Project. The Art Project is a nationwide public art initiative by his production company Recyclewala Films in collabora... | english |
<filename>src/user/controllers/permission.controller.ts
import { Controller, Get, Param, Logger, ParseIntPipe, Post, Body, Patch, HttpException, HttpStatus, Delete, UseInterceptors } from '@nestjs/common';
import { Permissions } from 'src/auth/auth.decorator';
import { Permission } from 'src/auth/permission.enum';
impo... | typescript |
Recently, former Roadies contestant Surbhi Rana enters the Bigg Boss house as a first wild card entry. She enters the show along with Romil Chaudhary, who got another lease of life in the show.
Well, today we are going to tell some interesting things about Surbhi Rana which you should know.
Surbhi was born on May 7, 19... | english |
<reponame>Qs-F/expandup
package main
import (
"flag"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"github.com/Qs-F/expandup/lib/expandup"
"github.com/sirupsen/logrus"
)
// flag
// l: list of files to be expanduped
// f: indicate one file
// w: rewrite file
// d: display diff
// c: indicate config directory
// debug... | go |
{
"id": 7990,
"title": [
"[House of Paupers, Lounge]",
"[Paupers, Lounge]"
],
"description": [
"You hear the sound of muted conversation and laughter coming from the Common room, though the thick carpets which cover the floor seem to absorb some of the sound. The walls are paneled in polished mahog... | json |
Jawan Laiki Garbarai song is a Bhojpuri folk song from the Naike Medam released on 2016. Music of Jawan Laiki Garbarai song is composed by Uttam Singh. Jawan Laiki Garbarai was sung by Rahul Rangeela, Anita, Shivani. Download Jawan Laiki Garbarai song from Naike Medam on Raaga.com.
| english |
#!/usr/bin/python -B
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "Lic... | python |
<filename>chapter_1/ex-35.cpp
//
// Created by user on 2019/4/10.
// Copyright © 2019 user. All rights reserved.
//
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
using namespace std;
//next_permutation
//只有排序之后的数组才能只用next_permutation获得全排列
int count_my = 0;
//输出范围[start,end)内的全排列
tem... | cpp |
<reponame>Receiling/ENPAR<filename>inputs/fields/field.py
from abc import ABC, abstractclassmethod
class Field(ABC):
"""Abstract class `Field` define one indexing method,
generate counter from raw text data and index token in raw text data
Arguments:
ABC {ABC} -- abstract base class
"""
... | python |
import configparser
import os
curPath = os.path.dirname(os.path.realpath(__file__))
cfgPath = os.path.join(curPath, "config.ini")
class ReadConfig:
def __init__(self):
self.cfg = configparser.ConfigParser()
self.cfg.read(cfgPath, encoding='utf-8')
def get_user(self):
return self.cfg.... | python |
<reponame>williamcastrov/gimcloud
export {default} from "./InformePendientes"; | javascript |
Apple is in spring cleaning mode when it comes to its product inventory. In recent weeks, not only has it said, “mmm, bye,” to the iMac Pro and the original HomePod, but now the company has targeted two configurations of the 21.5-inch iMac with its axe.
Spotted by MacRumors, the options for 512GB and 1TB of SSD storage... | english |
As we come to the close of another Academic Year, we take a look at the year that went by and capture some of the experiences and sentiments of our students graduating from NLSIU this year. We spoke to a few students from the outgoing batch of the Master’s Programme in Public Policy to to reflect on their time at NLS, ... | english |
Huawei launched the P50E smartphone in China on Wednesday as an addition to the P50 series lineup.
Huawei launched the P50E smartphone in China on Wednesday as an addition to the P50 series lineup.
We take a look at Quibi, a new smartphone-only streaming service, and the roadblocks that it faces in the near future.
At ... | english |
MOMBASA, Kenya, Feb 2 – Five people died Wednesday when a gas cylinder exploded in a house in Mombasa.
Kenya Red Cross Coast region coordinator Rajab Musa confirmed the deaths, saying the incident occurred in the Kibokoni area in Old Town. Three others sustained injuries and were rushed to hospital.
He said the incid... | english |
<reponame>cromulencellc/hackasat-qualifier-2020-stats
<!DOCTYPE html>
<html>
<head>
<title>Hack-A-Sat Quals Data Dump</title>
<link href='statdump.css' media='all' rel='stylesheet'>
<meta charset='utf-8'>
</head>
<body>
<div id='content'>
<nav>
<ul>
<li>
<a href='../teams.html'>All Teams</a>
</li>
<li>
<a href='../inde... | html |
An expenditure of at least Rs 17. 60 lakh was incurred on the oath-taking ceremony of Prime Minister Narendra Modi in the forecourt of Rashtrapati Bhavan, an RTI reply has found.
The reply provided by the President’s Secretariat said approximate cost incurred on the arrangements of the oath-taking ceremony related to ... | english |
The government is looking to reduce cancellation charges for air tickets as it works on a host of new rules for airlines to ensure fair treatment of passengers.
The government is looking to reduce cancellation charges for air tickets as it works on a host of new rules for airlines to ensure fair treatment of passenger... | english |
# -*- coding: utf-8 -*-
#############################################################
# IMPORTS #
#############################################################
import os
import sys
import re
from time import sleep
from PIL import Image, ImageOps, ImageFile
##... | python |
<reponame>IUaenaSong/OnlineJudge
/**
* @Author LengYun
* @Since 2022/05/01 13:41
* @Description
*/
package com.iuaenasong.oj.manager.admin.exam;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugin... | java |
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var core_1 = require("@angular/core");
var WindowsPlatformModule_1 = require("./windows/WindowsPlatformModule");
var NativePlatformModule_1 = require("./native/NativePlatformModule");
var WechatPlatformModule_1 = require("./wechat/WechatPlatfo... | javascript |
<reponame>edwinyosorahardjo/bible
["Maka sekali peristiwa, kemudian dari pada segala perkara ini, bahwa penjawat minuman raja Mesir dan penjawat santapanpun mendurhaka kepada tuannya, yaitu kepada baginda raja Mesir.","Maka murkalah sangat Firaun akan kedua pegawainya, yaitu akan penghulu penjawat minuman dan akan peng... | json |
<gh_stars>0
{
"variants": {
"": {
"model": "dyetasticcolors:block/darkest_blue_terracotta"
}
}
} | json |
Union Tourism Minister Subodh Kant Sahay on Tuesday said that the Manmohan Singh government was more serious on the issue of black money than Baba Ramdev and Anna Hazare.
“We are more serious than Baba Ramdev and Anna Hazare, who are spearheading movements against corruption and black money, and making all possible ef... | english |
<gh_stars>1-10
{
"name": "node-red-contrib-facial-recognition",
"version": "0.30.105",
"description": "Provides a node-red node for Facial Detection & Facial Recognition.",
"dependencies": {
"@vladmandic/face-api": "^1.3.1",
"@tensorflow/tfjs-node": "^3.7.0"
},
"engines": {
"node... | json |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.