Go to your project root and open config.xml file in your text editor.
The first thing to change is your app's human readable name. Replace the name inside <name> </name>.
Second, change the id value inside
| const callerMap = {}; | |
| function getCaller(error) { | |
| if (error && error.stack) { | |
| const lines = error.stack.split('\n'); | |
| if (lines.length > 2) { | |
| let match = lines[2].match(/at ([a-zA-Z\-_$.]+) (.*)/); | |
| if (match) { | |
| return { | |
| name: match[1].replace(/^Proxy\./, ''), |
| --This query enables ole automation procedures. set 0 to disable | |
| exec master.dbo.sp_configure 'Ole Automation Procedures', 1 | |
| RECONFIGURE | |
| --OLE utomation disabled the following error is thrown. | |
| --SQL Server blocked access to procedure 'sys.sp_OACreate' of component | |
| --'Ole Automation Procedures' because this component is turned off as part | |
| --of the security configuration for this server. | |
| --A system administrator can enable the use of 'Ole Automation Procedures' |
| const http = require('http'); | |
| const server = http.createServer(); | |
| server.on('request', (request, response) => { | |
| let body = []; | |
| request.on('data', (chunk) => { | |
| body.push(chunk); | |
| }).on('end', () => { | |
| body = Buffer.concat(body).toString(); |
| package com.example.package; | |
| import android.content.Context; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.io.StringWriter; | |
| import java.io.PrintWriter; |
| <html> | |
| <head> | |
| <script src="https://webqr.com/llqrcode.js"></script> | |
| <script src="jsqrcode-camera.js"></script> | |
| </head> | |
| <body> | |
| <div id="qrcodescanner"></div> | |
| <div id="message"></div> | |
| </body> | |
| <script> |
| # Change YOUR_TOKEN to your prerender token and uncomment that line if you want to cache urls and view crawl stats | |
| # Change example.com (server_name) to your website url | |
| # Change /path/to/your/root to the correct value | |
| # Generate $prerender_ua bool value based on user agent | |
| # indexation bots will get this as 1, | |
| # prerender user agent will always get 0 (avoid loops) | |
| map $http_user_agent $prerender_ua { | |
| default 0; |
| ! model | |
| pc101 Generic 101-key PC | |
| pc102 Generic 102-key (Intl) PC | |
| pc104 Generic 104-key PC | |
| pc105 Generic 105-key (Intl) PC | |
| dell101 Dell 101-key PC | |
| latitude Dell Latitude series laptop | |
| dellm65 Dell Precision M65 | |
| everex Everex STEPnote | |
| flexpro Keytronic FlexPro |
| #!/usr/bin/env zsh | |
| sudo rm -f /usr/bin/node | |
| sudo rm -f /usr/bin/npm | |
| sudo ln -s $(which node) /usr/bin/ | |
| sudo ln -s $(which npm) /usr/bin/ |
| import { Pipe, PipeTransform } from '@angular/core'; | |
| @Pipe({ | |
| name: 'replace' | |
| }) | |
| export class ReplacePipe implements PipeTransform { | |
| transform(value: string, expr: any, arg2: string): any { | |
| if (!value) | |
| return value; |