export Questions

2

Solved

Can someone help me please I have 2 files main.ts and hi.ts hi.ts: export const hello = "dd"; main.ts: import { hello } from "./hi"; ... class A { public sayHello() { console.log("hello=" +...
Errol asked 8/9, 2016 at 8:19

2

I want developers to use a class / interface instead of importing functions directly. Is there a way to limit so only the class can import the function? I don't want to have to put all the function...
Hyo asked 4/1, 2021 at 5:3

11

Solved

I am getting this error SyntaxError: Cannot use import statement outside a module when trying to import from another javascript file. This is the first time I'm trying something like this. The main...
Swound asked 20/6, 2020 at 16:56

2

Solved

Having a little bit of trouble trying to get some c++ functions to export when I try to load them in from my R package. Running devtools::check() yields > checking R code for possible problems ...
Enow asked 12/6, 2020 at 5:15

5

Solved

I exported a postgresql database from an external server, and attempted to import it into my local server but got this error: unrecognized configuration parameter "idle_in_transaction_session...
Headwater asked 8/1, 2017 at 0:30

8

Solved

I see that the following is fine: const Tab = connect( mapState, mapDispatch )( Tabs ); export default Tab; However, this is incorrect: export default const Tab = connect( mapState, mapDispatch...
Shimberg asked 28/3, 2016 at 11:16

3

Solved

I have a custom post type on two websites and I have to export all posts in that post type and import to the second site. So my post type is "products". Actually, I can use Wordpress default impor...
Midsummer asked 11/3, 2018 at 13:55

13

Solved

I need to make an export like this in Python : # export MY_DATA="my_export" I've tried to do : # -*- python-mode -*- # -*- coding: utf-8 -*- import os os.system('export MY_DATA="my_export"') ...
Bookbinding asked 1/10, 2009 at 19:39

6

Solved

I downloaded a personal development certificate from the Apple Developer center and imported it to my keychain. Now, I want to export it as a .p12 file and encrypt it with a password. When I right ...
Crossstaff asked 19/2, 2013 at 9:30

3

I would like to export a CSV file from my application for importing into Excel (or any other spreadsheet that supports CSV files). Anyhow, one of the cells in my table have rich content (i.e. HTML)...
Francyne asked 15/6, 2010 at 21:28

4

Solved

I was recently asked to export as a .zip file one of my projects on my Git repository. I have actually never had to do this in the 4 years I have been using Git. I would prefer an answer that is ...
Damle asked 4/4, 2019 at 12:8

6

Solved

I recently imported content from my WordPress page into Hugo. When I run hugo serve I get following error messages: WARN 2020/02/17 20:51:06 found no layout file for "HTML" for "page": You should ...
Hower asked 17/2, 2020 at 20:6

4

How can I export a Room database to a .db file so I can use it later? I would like to export it to Download folder in Android device storage. I already have setup export to .CSV but now i need to ....
Mcginley asked 1/8, 2022 at 16:55

7

Solved

In MySql's interpreter, it's very easy to dump a table to the screen along with its field names. There seems to be no simple way to export a table to a tab-delimted or CSV outfile including its c...
Xuanxunit asked 4/11, 2008 at 18:51

3

Is it possible to build in VITE and use application-name.css or my-site-name.css? VITE has an option to build a custom JS file, but not a custom CSS or SCSS file (for export). https://vitejs.dev/gu...
Nickerson asked 31/8, 2021 at 2:12

6

Solved

I want to export my database as a .sql file. Can someone help me? The solutions I have found don't work. A detailed description please. On Windows 7.
Addict asked 23/6, 2016 at 7:19

5

I need a simple way to export data from an SQLite database of multiple tables, then import them into another database. Here is my scenario. I have 5 tables: A, B, C, D, E. Each table has a primar...
Tectonic asked 8/12, 2010 at 16:41

5

Solved

How do I export/import large database on MAMP ? Using PHPMyAdmin does not work as it supposed to be.
Immerse asked 27/6, 2013 at 13:24

2

Solved

is there a way to limit the number of rows while exporting or imported data in DBeaver? In my case I have a remote DB2 and I need to import SOME rows of a specific table into a local MySQL DB that...
Marx asked 18/5, 2020 at 10:38

8

Solved

hello i am new to phpexcel, and i was wondering if there is some way send the excel i have created to the clients download without saving it on my server or to delete it right after he downloads i...
Annettaannette asked 19/12, 2011 at 19:11

7

Solved

I've been working on my development database and have tweaked its performance. However, to my surprise I can't find a way to export the indexes to my production database. I thought there would be...
Jacinto asked 20/1, 2011 at 6:54

7

Solved

Is there a general way to define the size, in percent or pixels, for an image that is linked in org-mode? Say I have the following link in my .org file: [[~/images/example.jpg]] This JPG is way...
Saval asked 26/7, 2012 at 13:43

5

Solved

How can I export a stateless pure dumb component? If I use class this works: import React, { Component } from 'react'; export default class Header extends Component { render(){ return <pre&...
Useful asked 17/1, 2017 at 10:52

16

I have some CSV data and I want to import into django models using the example CSV data: 1;"02-01-101101";"Worm Gear HRF 50";"Ratio 1 : 10";"input shaft, output shaft, direction A, color dark gree...
Slantwise asked 17/3, 2010 at 4:59

5

Solved

Basically I have a bash script that at one point makes an API call and a cert and key are generated and returned in json. I pipe it to jq and can select either the cert or the key and store it in a...
Mendoza asked 10/4, 2021 at 2:16

© 2022 - 2025 — McMap. All rights reserved.