This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react' | |
import './App.css'; | |
import Books from './Books/Books'; | |
class App extends Component{ | |
state = { | |
books: [ | |
{ | |
id: 1, | |
name: 'Rich dad', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react' | |
import './App.css'; | |
import Books from './Books/Books'; | |
class App extends Component{ | |
state = { | |
books: [ | |
{ | |
id: 1, | |
name: 'Rich dad', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'cmb2_admin_init', 'prefixx_register_cpt_metabox' ); | |
function prefixx_register_cpt_metabox() { | |
/** | |
* Metabox to be displayed on a single page ID | |
*/ | |
$cmb_about_page = new_cmb2_box( array( | |
'id' => 'prefixx_about_metabox', | |
'title' => esc_html__( 'About Page Metabox', 'prefixx' ), | |
'object_types' => array( 'page' ), // Post type | |
'context' => 'normal', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="tab_menu"> | |
<li><a class="active" href="#tab_cotnent_1">Clothing</a></li> | |
<li><a class="" href="#tab_content_2">Fashin</a></li> | |
</ul> | |
<div class="tab_cotnent" id="tab_cotnent_1"> | |
Clothing: Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptas magni, laborum ipsa. Magnam natus incidunt explicabo excepturi, deleniti illum atque non quos nisi quibusdam esse vel dicta, quas nam eveniet. | |
</div> | |
<div class="tab_cotnent" id="tab_content_2"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"timestamp": 1561218720, | |
"upgrade_notice": { | |
"version": "2.0.0", | |
"message": "", | |
"update_link": "" | |
}, | |
"library": { | |
"types_data": { | |
"block": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"themes": [ | |
"astra", | |
"oceanwp", | |
"twentytwelve" | |
], | |
"plugins": [ | |
"woocommerce", | |
"elementor", | |
"happy-elementor-addons", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<windows.h> | |
#ifdef __APPLE__ | |
#include <GLUT/glut.h> | |
#else | |
#include <GL/glut.h> | |
#endif | |
#include <stdlib.h> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* GLUT Shapes Demo | |
* | |
* Written by Nigel Stewart November 2003 | |
* | |
* This program is test harness for the sphere, cone | |
* and torus shapes in GLUT. | |
* | |
* Spinning wireframe and smooth shaded shapes are | |
* displayed until the ESC or q key is pressed. The |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table department( | |
dept_name varchar(20) not null, | |
building varchar(20) not null, | |
budget numeric(8,2) not null, | |
primary key (dept_name) | |
); | |
create table instructor( | |
id char(5), | |
name varchar(20) not null, |