Skip to content

Instantly share code, notes, and snippets.

View anirudhjain75's full-sized avatar
🏠
Working from home

Anirudh Jain anirudhjain75

🏠
Working from home
  • New Delhi
View GitHub Profile
Cannot create AddRemoveAlias element because:
• number [1] is incompatible with string [2] in property
edit.display_data.locale.
• inexact null [3] is incompatible with exact OptionTreeT [4] in property
edit.display_data.type.
• property child_order is missing in object literal [5] but exists in
OptionTreeT [4] in property edit.display_data.type.
• property description is missing in object literal [5] but exists in
OptionTreeT [4] in property edit.display_data.type.
• property entityType is missing in object literal [5] but exists in
Error ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈ root/entity/alias/EditForm.js:403:34
Cannot create EditAlias element because:
• property close_time is missing in object literal [1] but exists in Props [2] in property edit.
• property conditions is missing in object literal [1] but exists in Props [2] in property edit.
• property created_time is missing in object literal [1] but exists in Props [2] in property edit.
• property data is missing in object literal [1] but exists in Props [2] in property edit.
• property edit_type is missing in object literal [1] but exists in Props [2] in property edit.
• property editor_id is missing in object literal [1] but exists in Props [2] in property edit.
• property expires_time is missing in object literal [1] but exists in Props [2] in property edit.
cpanm (App::cpanminus) 1.9018 on perl 5.018004 built for darwin-thread-multi-2level
Work directory is /Users/cyna/.cpanm/work/1568615762.85095
You have make /usr/bin/make
You have LWP: 6.05
You have LWP::Protocol::https: 6.04
You have /usr/bin/tar: bsdtar 2.8.3 - libarchive 2.8.3
You have /usr/bin/unzip
--> Working on .
Entering /Users/cyna/Projects/musicbrainz-server
Configuring /Users/cyna/Projects/musicbrainz-server
package main
import "fmt"
func twoSum(intArr []int, sum int) (int, int) {
m := make(map[int]int)
for _, v := range intArr {
m[v] = v
}
a, b := 0, 0
package main
import (
"fmt"
)
func main() {
fmt.Println("Rotate Leetcode 58")
a := [][]int{{5,1,9,11},{2,4,8,10},{13,3,6,7},{15,14,12,16}}
rotate(a)
<!DOCTYPE html>
<html>
<head>
<title>THEME</title>
<style>
header{
background: rgb(158, 135, 135);
display: flex;
flex-direction: row;
justify-content: space-between;
<!DOCTYPE html>
<html>
<head>
<title>THEME</title>
<style>
header{
background: rgb(158, 135, 135);
display: flex;
flex-direction: row;
justify-content: space-between;
async function deleteRelationships(orm, transacting, mainEntity) {
const mainBBID = mainEntity.bbid;
const {relationshipSet} = mainEntity;
const otherBBID = [];
const otherEntities = [];
if (relationshipSet) {
relationshipSet.relationships.map((relationship) => {
if (relationship.sourceBbid === mainBBID) {
otherBBID.push(relationship.targetBbid);
/*
* Copyright (C) 2016 Ben Ockmore
* 2016 Sean Burke
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
# %% [markdown]
# # Real Time Medical Mask Detection
# %% [markdown]
# Import Statements
import os
import cv2
import matplotlib.pyplot as plt
import xmltodict