This file contains hidden or 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
<html> | |
<head> | |
<script>window.$ = window.jQuery = require('./jquery-2.1.4.js');</script> | |
</head> | |
<body> | |
<h1>Electron MySQL Example</h1> | |
<div id="resultDiv"></div> | |
<script> | |
var mysql = require('mysql'); | |
var connection = mysql.createConnection({ |
This file contains hidden or 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
<script>window.$ = window.jQuery = require('./jquery-2.1.4.js');</script> |
This file contains hidden or 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
<html> | |
<head> | |
<script src="jquery-2.1.4.js"></script> | |
<script src="jspdf.min.js"></script> | |
<link rel="stylesheet" type="text/css" href="styles.css"> | |
</head> | |
<body> | |
<div id="navbar"><span>jsPDF Tutorial - Form Filling</span></div> | |
<div id="wrapper"> |
This file contains hidden or 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
const electron = require('electron'); | |
const app = electron.app; | |
const path = require('path'); | |
const url = require('url'); | |
const BrowserWindow = electron.BrowserWindow; | |
var mainWindow; | |
app.on('ready',function(){ |
This file contains hidden or 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
<?php | |
require_once 'vendor/autoload.php'; | |
use PhpOffice\PhpWord\Shared\Converter; | |
$phpWord = new \PhpOffice\PhpWord\PhpWord(); | |
$section = $phpWord->addSection(); | |
$categories = array('A', 'B', 'C', 'D', 'E'); | |
$series1 = array(5, 3, 4, 2, 7); |
This file contains hidden or 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
<?php | |
require_once 'vendor/autoload.php'; | |
$phpWord = new \PhpOffice\PhpWord\PhpWord(); | |
$section = $phpWord->addSection(); | |
$section->addImage('red_stapler_sign.png',array('width' => 650, 'height' => 365)); | |
$section->addImage('https://images-na.ssl-images-amazon.com/images/I/61NRsJeymIL._SL1500_.jpg',array('width' => 650)); |
This file contains hidden or 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
<html> | |
<head> | |
<script src="jquery-2.1.4.js"></script> | |
<link rel="stylesheet" type="text/css" href="styles.css"> | |
<style> | |
#map { | |
height: 500px; | |
} | |
</style> | |
</head> |
This file contains hidden or 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
<html> | |
<head> | |
<script src="jquery-2.1.4.js"></script> | |
<link rel="stylesheet" type="text/css" href="styles.css"> | |
<style> | |
#map { | |
height: 500px; | |
} | |
</style> | |
</head> |
This file contains hidden or 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
<html> | |
<head> | |
<script src="jquery-2.1.4.js"></script> | |
<link rel="stylesheet" type="text/css" href="styles.css"> | |
<style> | |
#map { | |
height: 500px; | |
} | |
</style> | |
</head> |
This file contains hidden or 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
<html> | |
<head> | |
<script src="jquery-2.1.4.js"></script> | |
<link rel="stylesheet" type="text/css" href="styles.css"> | |
<style> | |
#map { | |
height: 500px; | |
} | |
</style> | |
</head> |
NewerOlder