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
option text | selected option | |
---|---|---|
Dry Run | Enter (keep default) | |
Folder Path | Enter (keep default) - this will export it to c:\temp\notes | |
Specify a notebook to convert | Enter (keep default) | |
Create a new word .docx | Enter (keep default) | |
Discard .docx after conversion | 2 - keep the .docx | |
Use name .docx fiels using page ID | 2 - use hierarchy | |
Use prefix vs subfolders | Enter (keep default) | |
Markdown file length | 255 | |
Store media in single or multiple folders | 2 - separate for each folder in hierarchy |
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
{ | |
programs(where: { | |
id: "0xceb11bb2725f0ee33f49b5052b3276c02f751c16" // program contract id | |
}) { | |
id | |
metaPtr { | |
protocol | |
pointer // ipfs pointer to document which holds more data about a specific program | |
} | |
} |
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
package set; | |
import java.util.Objects; | |
public class Set { | |
private int size; | |
private final int DEFAULT_SIZE = 10; | |
private String[] elements = new String[DEFAULT_SIZE]; |
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
package set; | |
import java.util.Objects; | |
public class Set { | |
private String[] elements = new String[0]; | |
private int next; | |
public boolean isEmpty() { | |
return next == 0; |
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
//https://www.npmjs.com/package/isolate-react | |
it.only('shows count of all crafters', async () => { | |
const crafters = [{ ...crafterProfileData }, { ...crafterProfileData }]; | |
const foundCrafters: Crafters = { | |
list: crafters, | |
aggregates: { | |
count: crafters.length, | |
}, | |
}; |
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 countries ( | |
id integer NOT NULL, | |
name varchar(100) NOT NULL, | |
iso3 char(3) DEFAULT NULL, | |
numeric_code char(3) DEFAULT NULL, | |
iso2 char(2) DEFAULT NULL, | |
phonecode varchar(255) DEFAULT NULL, | |
capital varchar(255) DEFAULT NULL, | |
currency varchar(255) DEFAULT NULL, | |
currency_name varchar(255) DEFAULT NULL, |
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, { useEffect, useState } from 'react'; | |
import { CompanyNew } from '../../../Interfaces/Interfaces'; | |
import Main from '../Main'; | |
import MainLayout from '../MainLayout'; | |
interface CompanyDetailNewProps { | |
fetchCompanyNew: (apiFindCompanyNew: any, companyName: string) => Promise<CompanyNew>, | |
apiFindCompanyNew: (companyName: string) => Promise<CompanyNew>, | |
companyName: string | |
} |
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
name: SQL-Migrations | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
migrate: | |
name: Migrate Database |
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, { useEffect, useState } from 'react'; | |
import { Company } from '../../Interfaces/Interfaces.company'; | |
interface FeaturedCompaniesProps { | |
findFeaturedCompanies: () => Promise<Array<Company>> | |
} | |
const FeaturedCompanies = (props: FeaturedCompaniesProps) => { | |
const [featuredCompanies, setData] = useState([]); | |
useEffect(() => { |
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, { useEffect, useState } from 'react'; | |
import { Company } from '../../Interfaces/Interfaces.Company'; | |
// this doesn't work with brackes for some reason: | |
// const FeaturedCompanies = ({findFeaturedCompanies: () => Promise<Array<Company>>}) => { | |
const FeaturedCompanies = (findFeaturedCompanies: () => Promise<Array<Company>>) => { | |
const [featuredCompanies, setData] = useState([]); | |
useEffect(() => { |
NewerOlder