Search references for CODE O-GRAPH. Phrases containing CODE O-GRAPH
See searches and references containing CODE O-GRAPH!CODE O-GRAPH
The Code-O-Graph is a field cipher device and identifier from the Captain Midnight radio serial. In the story line they were used by agents of the Secret
Code-O-Graph
Database using graph structures for queries
A graph database (GDB) is a database that uses graph structures for semantic queries with nodes, edges, and properties to represent and store data. A key
Graph_database
Methodic assignment of colors to elements of a graph
In graph theory, graph coloring is a methodic assignment of labels traditionally called "colors" to elements of a graph. The assignment is subject to certain
Graph_coloring
Graph that can be embedded in the plane
In graph theory, a planar graph is a graph that can be embedded in the plane, i.e., it can be drawn on the plane in such a way that its edges intersect
Planar_graph
American adventure media franchise
Melton on television, he was responsible for the development of the Code-O-Graph and also developed some weapons before and during World War II. Joyce
Captain_Midnight
Software design structured around a node graph
Node graph architecture is a software design structured around the notion of a node graph. Both the source code and the user interface are designed around
Node_graph_architecture
Directed graph with no directed cycles
In mathematics, particularly graph theory, and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That is, it
Directed_acyclic_graph
Algorithm to search the nodes of a graph
DFS is typically used to traverse an entire graph, and takes time O ( | V | + | E | ) {\displaystyle O(|V|+|E|)} , where | V | {\displaystyle |V|} is
Depth-first_search
Abstract data type in computer science
science, a graph is an abstract data type that is meant to implement the undirected graph and directed graph concepts from the field of graph theory within
Graph_(abstract_data_type)
Sparse graph with strong connectivity
robust computer networks, and the theory of error-correcting codes. Intuitively, an expander graph is a finite, undirected multigraph in which every subset
Expander_graph
Graph divided into two independent sets
In the mathematical field of graph theory, a bipartite graph (or bigraph) is a graph whose vertices can be divided into two disjoint and independent sets
Bipartite_graph
Minimum spanning forest algorithm that greedily adds edges
algorithm finds a minimum spanning forest of an undirected edge-weighted graph. If the graph is connected, it finds a minimum spanning tree. It is a greedy algorithm
Kruskal's_algorithm
Tree representation of the abstract syntactic structure of source code
, then o ( a 1 ; … ; a n ) ∈ A [ X ] s {\displaystyle o(a_{1};\dots ;a_{n})\in {\mathcal {A}}[{\mathcal {X}}]_{s}} . Abstract semantic graph (ASG), also
Abstract_syntax_tree
Physical simulation to visualize graphs
Force-directed graph drawing algorithms are a class of algorithms for drawing graphs in an aesthetically-pleasing way. Their purpose is to position the
Force-directed_graph_drawing
Basic concept of graph theory
mathematics and computer science, connectivity is one of the basic concepts of graph theory: it asks for the minimum number of elements (nodes or edges) that
Connectivity_(graph_theory)
Trail in a graph that visits each edge once
In graph theory, an Eulerian trail (or Eulerian path) is a trail in a finite graph that visits every edge exactly once (allowing for revisiting vertices)
Eulerian_path
Fifteenth letter of the Latin alphabet
ò Ô ô Ố ố Ồ ồ Ổ ổ Ỗ ỗ Ộ ộ Ǒ ǒ Ő ő Ŏ ŏ Ȏ ȏ Ȯ ȯ Ȱ ȱ Ọ ọ Ɵ ɵ ᶱ Ơ ơ Ớ ớ Ờ ờ Ỡ ỡ Ợ ợ Ở ở Ỏ ỏ Ō ō Ṓ ṓ Ṑ ṑ Õ õ Ȭ ȭ Ṍ ṍ Ṏ ṏ Ǫ ǫ Ȍ ȍ O̩ o̩ Ó̩ ó̩ Ò̩ ò̩ Ǭ ǭ O͍ o͍
O
Coding theory algorithm
codes, where the underlying graph is bipartite graph. Sipser and Spielman introduced a constructive family of asymptotically good linear-error codes together
Zemor's_decoding_algorithm
Maximal subgraph whose vertices can reach each other
In graph theory, a component of an undirected graph is a connected subgraph that is not part of any larger connected subgraph. The components of any graph
Component_(graph_theory)
Square matrix used to represent a graph or network
In graph theory and computer science, an adjacency matrix is a square matrix used to represent a finite graph. The elements of the matrix indicate whether
Adjacency_matrix
Polynomial-time algorithm for the assignment problem
When the graph is sparse (there are only M {\displaystyle M} allowed job, worker pairs), it is possible to optimize this algorithm to run in O ( J M +
Hungarian_algorithm
coding theory, expander codes form a class of error-correcting codes that are constructed from bipartite expander graphs. Along with Justesen codes,
Expander_code
Algorithm for finding shortest paths
an algorithm for finding the shortest paths between nodes in a weighted graph, which may represent, for example, a road network. It was conceived by computer
Dijkstra's_algorithm
Graph algorithm
components algorithm is an algorithm in graph theory for finding the strongly connected components (SCCs) of a directed graph. It runs in linear time, matching
Tarjan's strongly connected components algorithm
Tarjan's_strongly_connected_components_algorithm
unweighted, connected graphs. It solves the problem in O ( V ω log V ) {\displaystyle O(V^{\omega }\log V)} expected time for a graph with V {\displaystyle
Seidel's_algorithm
Algorithmic problem of finding non-crossing drawings
In graph theory, the planarity testing problem is the algorithmic problem of testing whether a given graph is a planar graph (that is, whether it can
Planarity_testing
Python library for graphs and networks
NetworkX is a Python library for studying graphs and networks. NetworkX is free software released under the BSD-new license. NetworkX began development
NetworkX
Method for finding patterns in networks
of color-coding: For every fixed constant k, if a graph G = (V, E) contains a simple cycle of size k, then such a cycle can be found in: O ( | V | ω
Color-coding
Algorithm for maximum cardinality matching
of the graph, and it is assumed that | E | = Ω ( | V | ) {\displaystyle |E|=\Omega (|V|)} . In the case of dense graphs the time bound becomes O ( | V
Hopcroft–Karp_algorithm
Clustering and community detection algorithm
modeled in the pseudo-code, where the function aggregateGraph returns a new graph whose vertices are the partition of the old graph, and whose edges are
Louvain_method
Classification of algorithm
algorithm is able to discover the minimum spanning tree of a graph in O ( m + n ) {\displaystyle O(m+n)} , where m {\displaystyle m} is the number of edges
Galactic_algorithm
Node ordering for directed acyclic graphs
computer science, a topological sort or topological ordering of a directed graph is a linear ordering of its vertices such that for every directed edge (u
Topological_sorting
Problem of finding the longest simple path for a given graph
In graph theory and theoretical computer science, the longest path problem is the problem of finding a simple path of maximum length in a given graph. A
Longest_path_problem
Algorithm for finding the shortest paths in graphs
for the same problem, but more versatile, as it is capable of handling graphs in which some of the edge weights are negative numbers. The algorithm was
Bellman–Ford_algorithm
Optimization technique
As applied in the field of computer vision, graph cut optimization can be employed to efficiently solve a wide variety of low-level computer vision problems
Graph cuts in computer vision and artificial intelligence
Graph_cuts_in_computer_vision_and_artificial_intelligence
Functional programming language
in Clean and C. Intermediate ABC code is converted to object code (.o) by the code generator written in C. Object code is linked with other files in the
Clean_(programming_language)
Computer compiler optimization technique
as optimized code as the "global" approach, which operates over the whole compilation unit (a method or procedure for instance). Graph-coloring allocation
Register_allocation
Graph where every edge is in one triangle
In graph theory, a locally linear graph is an undirected graph in which every edge belongs to exactly one triangle. Equivalently, for each vertex of the
Locally_linear_graph
Task in computational graph theory
In graph theory, a branch of mathematics, graph canonization is the problem of finding a canonical form of a given graph G. A canonical form is a labeled
Graph_canonization
Representation of a graph as a path graph "thickened" by some amount
In graph theory, a path decomposition of a graph G is, informally, a representation of G as a "thickened" path graph, and the pathwidth of G is a number
Pathwidth
GNU profiling tool
Profiling of Unmodified, Optimized Code, ACM 1-59593-167/8/06/2005. Spivey, J. M. (2004). "Fast, accurate call graph profiling" (PDF). Software: Practice
Gprof
Data structure or code used by a compiler
source code BURS Bytecode – Instruction set designed to be run by a software interpreter Graph rewriting – Creating a new graph from an existing graph Interlingual
Intermediate_representation
Function in algebraic graph theory
chromatic polynomial is a graph polynomial studied in algebraic graph theory, a branch of mathematics. It counts the number of graph colorings as a function
Chromatic_polynomial
Algorithm for statistical inference on graphical models
We describe here the variant that operates on a factor graph. A factor graph is a bipartite graph containing nodes corresponding to variables V {\displaystyle
Belief_propagation
When every path in a control-flow graph must go through one node to reach another
In computer science, a node d of a control-flow graph dominates a node n if every path from the entry node to n must go through d. Notationally, this
Dominator_(graph_theory)
Open-source data analytics cluster computing framework
rather than writing imperative code specifying how each dataset is computed and in what order; Spark constructs a dataflow graph and manages dependency ordering
Apache_Spark
Argentine-born American mathematician
2018) and a researcher in algebraic topology, differential topology, graph theory, coding theory and combinatorial designs. He obtained a Licentiate degree
Italo_Jose_Dejter
Measure of similarity between two graphs
computer science, graph edit distance (GED) is a measure of similarity (or dissimilarity) between two graphs. The concept of graph edit distance was first
Graph_edit_distance
Task of computing complete subgraphs
For graphs of constant arboricity, such as planar graphs (or in general graphs from any non-trivial minor-closed graph family), this algorithm takes O(m)
Clique_problem
Reverse-engineering platform developed by Vector 35 Inc
visualize the disassembly in both linear and graph-based views. The software performs automated, in-depth code analysis, generating information that helps
Binary_Ninja
Mathematical abstraction of level sets
A Reeb graph (named after Georges Reeb by René Thom) is a mathematical object reflecting the evolution of the level sets of a real-valued function on
Reeb_graph
Least-weight tree connecting graph vertices
tree is a subset of the edges of a connected, edge-weighted undirected graph that connects all the vertices together, without any cycles and with the
Minimum_spanning_tree
Graph with a median for each three vertices
In graph theory, a division of mathematics, a median graph is an undirected graph in which every three vertices a {\displaystyle a} , b {\displaystyle
Median_graph
Graph path which is an induced subgraph
In the mathematical area of graph theory, an induced path in an undirected graph G is a path that is an induced subgraph of G. That is, it is a sequence
Induced_path
Algorithm to compute the maximum flow in a network
an "algorithm" as the approach to finding augmenting paths in a residual graph is not fully specified or it is specified in several implementations with
Ford–Fulkerson_algorithm
Transmission of language with brief pulses
International Morse code in 1865. The International Morse code adopted most of Gerke's codepoints. The codes for O and P were taken from a code system developed
Morse_code
convert a bipartite graph to a maximum-cardinality matching Hungarian algorithm: algorithm for finding a perfect matching Prüfer coding: conversion between
List_of_algorithms
Graphical representation of energy flows in physical systems
A bond graph is a graphical representation of the energy flows though and between physical dynamical systems including those in the electrical, mechanical
Bond_graph
File format for executables, object code, shared libraries, and core dumps
Mach-O (Mach object) is a file format for executables, object code, shared libraries, dynamically loaded code, and core dumps. It was developed to replace
Mach-O
Concept in computer science
the basic blocks that come before S {\displaystyle S} in the control-flow graph. The reaching definitions coming out of S {\displaystyle S} are all reaching
Reaching_definition
Letter in several Latin-script alphabets
and Norway, and in national extensions of International Morse Code.[citation needed] ⟨ø⟩ (minuscule) is also used in the International Phonetic Alphabet
Ø
Method of analyzing variables in software
optimizations and program verification techniques. A program's control-flow graph (CFG) is used to determine those parts of a program to which a particular
Data-flow_analysis
Topics referred to by the same term
a namespace identifier typically tied in web pages to the Facebook Open Graph protocol OG (esports), a professional Dota 2 team Offensive guard, a player
OG
List of unsolved computational problems
or quantum computer? Can the graph isomorphism problem be solved in polynomial time on a classical computer? The graph isomorphism problem involves determining
List of unsolved problems in computer science
List_of_unsolved_problems_in_computer_science
A hyperbolic geometric graph (HGG) or hyperbolic geometric network (HGN) is a special type of spatial network where (1) latent coordinates of nodes are
Hyperbolic_geometric_graph
Automated methods for the creation of mazes
either way is just as easy to code. Because the effect of this algorithm is to produce a minimal spanning tree from a graph with equally weighted edges
Maze_generation_algorithm
Electronic calculator capable of plotting graphs
A graphing calculator (also graphics calculator or graphic display calculator) is a handheld computer that is capable of plotting graphs, solving simultaneous
Graphing_calculator
Descriptive vector graphics language
The following source code allows you to draw a graph of the Heaviside function by means of the Asymptote language. import graph; import settings; outformat="pdf";
Asymptote (vector graphics language)
Asymptote_(vector_graphics_language)
In mathematics, a fibration of graphs, or graph fibration, is a homomorphism of directed graphs that satisfies a unique lifting property analogous to that
Fibrations_of_graphs
Recursive algorithm in graph theory
In graph theory, the Stoer–Wagner algorithm is a recursive algorithm to solve the minimum cut problem in undirected weighted graphs with non-negative weights
Stoer–Wagner_algorithm
Last letter of the Greek alphabet
ὦ (ō̂ [ɔ̂ː]), but it was later changed to ὦ μέγα (ō̂ méga 'big o') in the Middle Ages to distinguish it from omicron ⟨ο⟩, whose name means 'small o', as
Omega
Open source column-oriented RDBMS
community extensions maintained by third parties, covering use cases from graph queries (SQL/PGQ) to Kafka integration and ML inference. A full list is
DuckDB
Software engineering
the code history which is usually preserved by revision control in a code repository. Code history has the structure of a directed acyclic graph which
Bisection (software engineering)
Bisection_(software_engineering)
Archimedean solid with 14 faces
crystal Boleite crystal In the mathematical field of graph theory, a truncated octahedral graph is the graph of vertices and edges of the truncated octahedron
Truncated_octahedron
Topics referred to by the same term
Secure Device Onboard for IoT Spatial Data Option, late Oracle Spatial and Graph Silent Death Online (videogame), from Mythic Entertainment Standards developing
SDO
combinatorics, algebraic, differential, discrete and Euclidean geometries, graph theory, group theory, mathematical logic, number theory, set theory, Ramsey
List of unsolved problems in mathematics
List_of_unsolved_problems_in_mathematics
Process to determine relationships among statements
finishes. Code block 2 show loop independent dependence between statements S1 and S2 in the same iteration. Iteration space traversal graphs (ITG) shows
Loop_dependence_analysis
Algorithm in mathematical optimization
v) { d <- min(excess[u], rGraph[u, v]) rGraph[u, v] <<- rGraph[u, v] - d # Forward edge, no flow. rGraph[v, u] <<- rGraph[v, u] + d # Backward edge,
Push–relabel maximum flow algorithm
Push–relabel_maximum_flow_algorithm
Property of an intermediate representation in a compiler
variable reaching that point. For example, consider the following control-flow graph: Changing the name on the left hand side of "x ← {\displaystyle \leftarrow
Static_single-assignment_form
Type of flowchart
statistical models like Structural Equation Models and Directed Acyclic Graphs (DAGs). However the phrase “causal map” is usually reserved for qualitative
Causal_map
Graph layout on multiple half-planes
In graph theory, a book embedding is a generalization of planar embedding of a graph to embeddings in a book, a collection of half-planes all having the
Book_embedding
Computational problem in graph theory
but only work in undirected graphs. In 2013 James B. Orlin published a paper describing an O ( | V | | E | ) {\displaystyle O(|V||E|)} algorithm. In 2022
Maximum_flow_problem
Ordering of binary values, used for positioning and error correction
hypercube graph, of length 2 d . {\displaystyle 2^{d}.} When the French engineer Émile Baudot changed from using a 6-unit (6-bit) code to 5-unit code for his
Gray_code
Sequence of locally optimal choices
connected graph. They always find an optimal solution, which may not be unique in general. A greedy algorithm constructs a Huffman tree in Huffman coding. The
Greedy_algorithm
Combinatorial representation of a graph on an orientable surface
a graph on an orientable surface. A combinatorial map may also be called a combinatorial embedding, a rotation system, an orientable ribbon graph, a
Combinatorial_map
Unsolved problem in extremal graph theory
mathematics What is the largest possible number of edges in a bipartite graph that has a given number of vertices and has no complete bipartite subgraphs
Zarankiewicz_problem
Tree node with two other nodes as descendants
In graph theory and computer science, the lowest common ancestor (LCA) (also called least common ancestor) of two nodes v and w in a tree or directed
Lowest_common_ancestor
an O(nL)-time algorithm for finding an optimal length-limited Huffman code for a given distribution on a given alphabet of size n, where no code word
Package-merge_algorithm
Geometrical structure
realize the density upper bound. The contact graph of an arbitrary finite packing of unit balls is the graph whose vertices correspond to the packing elements
Sphere_packing
Shortest network connecting points
geometric graphs including the relative neighborhood graph and Delaunay triangulation. By constructing the Delaunay triangulation and then applying a graph minimum
Euclidean minimum spanning tree
Euclidean_minimum_spanning_tree
2000 video game
Resident Evil – Code: Veronica is a 2000 survival horror video game developed and published by Capcom for the Dreamcast. It was the first Resident Evil
Resident Evil – Code: Veronica
Resident_Evil_–_Code:_Veronica
Sequence of operations for a task
chess) can be modelled as problems on graphs. A graph exploration algorithm specifies rules for moving around a graph and is useful for such problems. This
Algorithm
Series of graphing calculators produced by Texas Instruments
The TI-84 Plus CE series is a line of graphing calculators manufactured by Texas Instruments (TI). The original TI-84 Plus CE superseded the TI-84 Plus
TI-84_Plus_CE_series
Statistical function
shortest one-part code of x {\displaystyle x} in K ( x ) {\displaystyle K(x)} bits. This can be easily seen as follows: K ( x ) ≤ K ( x , S ) + O ( 1 ) ≤ K (
Kolmogorov_structure_function
Deliberate creation of difficult-to-understand code
arrays and rearranging the inheritance graph; Obfuscating transformations of the procedural structure of the code by inserting new procedural abstractions
Obfuscation_(software)
Technology to help machines understand data
associations between concepts in text. Knowledge graph Metadata Ontology – also known as a knowledge graph in a generalized term Resource Description Framework
Semantic_technology
American cloud computing company
require a full-time administrator to manage the pipeline. Netlify Graph is a GraphQL-based approach to integrating distinct APIs to build a web app that
Netlify
Type of error-correcting code using convolution
In telecommunication, a convolutional code is a type of error-correcting code that generates parity symbols via the sliding application of a boolean polynomial
Convolutional_code
Overview of the graphic calculators made by Casio
Casio produced the world's first graphing calculator, the fx-7000G. Since then, the company has released many more graphic calculators, with the FX-CG100
Casio_graphic_calculators
Limited form of tree data structure
of the same with working code examples Binary Tree and Graph Visualizer Binary Tree JavaScript Implementation with source code Top View of Binary tree
Binary_tree
CODE O-GRAPH
CODE O-GRAPH
Male
English
 English surname transferred to forename use, derived from Old English Cola, COLE means "black, coal." This name is also sometimes used as a pet form of Nicholas, meaning "victor of the people."
Male
Spanish
Spanish form of Latin Pius, PÃO means "pious."
Surname or Lastname
English
English : from a Middle English pet form of Nicholas.English : from a Middle English personal name derived from the Old English byname Cola (from col ‘(char)coal’, presumably denoting someone of swarthy appearance), or the Old Norse cognate Koli.Scottish and Irish : when not of English origin, this is a reduced and altered form of McCool.In some cases, particularly in New England, Cole is a translation of the French surname Charbonneau.Probably an Americanized spelling of German Kohl.An Irish family by the name of Cole was established in Fermanagh by Sir William Cole (1576–1653). He was the first Provost of Enniskillen, and his descendants became earls of Enniskillen. The family is thought to have originated in Devon or Cornwall.
Surname or Lastname
French (Côte)
French (Côte) : topographic name for someone who lived on a slope or riverbank, less often on the coast, from Old French coste (Latin costa ‘rib’, ‘side’, ‘flank’, also used in a transferred topographical sense). There are several places in France named with this word, and the surname may also be a habitational name from any of these.English : topographic name from Middle English cote, cott ‘shelter’, ‘cottage’ (see Coates).
Male
French
Short form of French Théodore, THÉO means "gift of God."
Surname or Lastname
English (common in the Midlands)
English (common in the Midlands) : from Middle English cope ‘cloak’, ‘cape’ (from Old English cÄp reinforced by the Old Norse cognate kápa), hence a metonymic occupational name for someone who made cloaks or capes, or a nickname for someone who wore a distinctive one. Compare Cape.
Boy/Male
Irish
Descendent of. Irish surnames formed by prefacing O'.
Surname or Lastname
English
English : habitational name from a place named Cove, examples of which are found in Devon, Hampshire, and Suffolk, from Old English cofa ‘cove’, ‘bay’, ‘inlet’, also ‘shelter’, ‘hut’, or a topographic name with the same meaning.
Male
English
Variant spelling of English unisex Cody, CODIE means "helper."
Surname or Lastname
English
English : metonymic occupational name for a maker of purses and bags, from Middle English cod ‘bag’.English : nickname for a man noted for his apparent sexual prowess, from cod(piece), in Tudor times the garment worn prominently over the male genitals.English : from Middle English cod, the fish (of uncertain origin, perhaps a transferred use of 1), applied as a metonymic occupational name for a fisherman or seller of these fish, or possibly as a nickname for someone thought to resemble the fish in some way.Irish : variant of Cody.Irish (County Wexford) : from the Anglo-Saxon personal name Cod.
Surname or Lastname
English
English : from a Middle English personal name, Cade, a survival of the Old English personal name or byname Cada, which is probably from a Germanic root meaning ‘lump’, ‘swelling’.English : metonymic occupational name for a cooper, from Middle English, Old French cade ‘cask’, ‘barrel’ (of Germanic origin, probably akin to the root mentioned in 1).English : nickname for a gentle or inoffensive person, from Middle English cade ‘domestic animal’, ‘pet’ (of unknown origin).French (Cadé) : topographic name from cade ‘juniper’ (from Latin catanus).Bearers of the name Caddé, from Amiens, were documented in Quebec city by 1670.
Male
Slovene
Slovene pet form of Polish/Slovene Aleksander, SAÅ O means "defender of mankind."Â
Surname or Lastname
English
English : variant spelling of Coad.
Surname or Lastname
German
German : from a short form of any of the various Germanic personal names with the first element hrÅd ‘renown’. Compare Robert, Rudiger.North German, Danish, and English : topographic name for someone who lived on land cleared for cultivation or in a clearing in woodland, from Middle Low German rode, Danish rothe, Old English rod. Compare English Rhodes.English : habitational name from any of the many places named with this word, as for example Rode in Cheshire.Slovenian : topographic name from the adjective rod ‘barren’, denoting someone who lived on a barren land.Slovenian : nickname from the Slovenian dialect word rode ‘person with disheveled hair’, a derivative of rod ‘curly’ or ‘hairy’.
Surname or Lastname
Spanish and Portuguese
Spanish and Portuguese : nickname from the title of rank conde ‘count’, a derivative of Latin comes, comitis ‘companion’.English : unexplained.
Girl/Female
Hindu
Code
Girl/Female
Tamil
Code
Male
Portuguese
Galician-Portuguese form of Latin Eugenius, UXÃO means "well born."
Female
Yiddish
(×”Ö¸×דֶע) Yiddish form for Hebrew Hadaccah, HODE means "myrtle tree."
Male
Portuguese
Portuguese form of Roman Latin Laurentius, LOURENÇO means "of Laurentum."
CODE O-GRAPH
CODE O-GRAPH
Surname or Lastname
English and French
English and French : nickname from Middle English, Old French co(u)sin, cusin (Latin consobrinus), which in the Middle Ages, as in Shakespearean English, had the general meaning ‘relative’, ‘kinsman’. The surname would thus have denoted a person related in some way to a prominent figure in the neighborhood. In some cases it may also have been a nickname for someone who used the term ‘cousin’ frequently as a familiar term of address. The old slang word cozen ‘cheat’, perhaps derives from the medieval confidence trickster’s use of the word cousin as a term of address to invoke a spurious familiarity. The patronymics constitute the most frequent forms of this name.
Boy/Male
Gujarati, Hindu, Indian, Kannada, Malayalam, Marathi, Telugu
Wave
Boy/Male
Arabic, Muslim
Gloomy Look
Girl/Female
Muslim
One who hides others sins
Boy/Male
Bengali, Gujarati, Hindu, Indian, Kannada, Malayalam, Marathi, Telugu
King of Dreams
Girl/Female
Bengali, Hindu, Indian, Japanese, Kannada, Malayalam, Marathi, Sindhi, Tamil, Telugu
Flower
Male
Russian
(Яромир) Russian form of Polish Jaromir, YAROMIR means "spring peace."
Girl/Female
Gujarati, Hindu, Indian
The Intelligent
Girl/Female
Muslim
Girl/Female
Tamil
Monalika | மோநாலிகா
One of the thousand names of the Hindu Goddess
CODE O-GRAPH
CODE O-GRAPH
CODE O-GRAPH
CODE O-GRAPH
CODE O-GRAPH
a.
Relating to a codex, or a code.
n.
Any system of rules or regulations relating to one subject; as, the medical code, a system of rules for the regulation of the professional conduct of physicians; the naval code, a system of rules for making communications at sea means of signals.
v. i.
To form a cope or arch; to bend or arch; to bow.
n.
Anything shaped more or less like a mathematical cone; as, a volcanic cone, a collection of scoriae around the crater of a volcano, usually heaped up in a conical form.
n.
Manner of doing or being; method; form; fashion; custom; way; style; as, the mode of speaking; the mode of dressing.
n.
Something shaped like the letter O; a circle or oval.
n.
Prevailing popular custom; fashion, especially in the phrase the mode.
v. t.
To take out the core or inward parts of; as, to core an apple.
imp. & p. p.
o/ Withstand.
n.
The scale as affected by the various positions in it of the minor intervals; as, the Dorian mode, the Ionic mode, etc., of ancient Greek music.
v. t.
To carry through; to succeed in; as, you can't come any tricks here.
n.
A collection or digest of laws; a code.
pl.
of O
v. t.
To render cone-shaped; to bevel like the circular segment of a cone; as, to cone the tires of car wheels.
pl.
of O
v. t.
To convert into coke.
v. t.
To form by means of a core, as a hole in a casting.
n.
The letter O, or its sound.
p. p.
of Come