| Instance | Branch |
|---|
| (function (api, $) { | |
| 'use strict'; | |
| api.writeText = function (x, y, text, options) { | |
| options = options || {}; | |
| var defaults = { | |
| align: 'left', | |
| width: this.internal.pageSize.width | |
| } |
| import java.security.*; | |
| import java.math.*; | |
| public class MD5 { | |
| public static void main(String args[]) throws Exception{ | |
| String s="Texto de Exemplo"; | |
| MessageDigest m=MessageDigest.getInstance("MD5"); | |
| m.update(s.getBytes(),0,s.length()); | |
| System.out.println("MD5: "+new BigInteger(1,m.digest()).toString(16)); | |
| } |
| Promise-Based Solution | |
| If prefer this approach for the elegant async/await syntax. | |
| import { first } from 'rxjs/operators'; | |
| isLoggedIn() { | |
| return this.afAuth.authState.pipe(first()).toPromise(); | |
| } |
| $estadosBrasileiros = array( | |
| 'AC'=>'Acre', | |
| 'AL'=>'Alagoas', | |
| 'AP'=>'Amapá', | |
| 'AM'=>'Amazonas', | |
| 'BA'=>'Bahia', | |
| 'CE'=>'Ceará', | |
| 'DF'=>'Distrito Federal', | |
| 'ES'=>'Espírito Santo', | |
| 'GO'=>'Goiás', |
| -- | |
| -- Read only | |
| -- | |
| -- Create a group | |
| CREATE ROLE postgres_ro_group; | |
| -- Grant access to existing tables | |
| GRANT USAGE ON SCHEMA public TO postgres_ro_group; | |
| GRANT SELECT ON ALL TABLES IN SCHEMA public TO postgres_ro_group; |
| # /config/environments/development.rb | |
| # Gmail configuration | |
| config.action_mailer.raise_delivery_errors = true | |
| config.action_mailer.delivery_method = :smtp | |
| config.action_mailer.smtp_settings = { | |
| address: 'smtp.gmail.com', | |
| port: 587, | |
| domain: 'example.com', | |
| user_name: ENV['EMAIL_USER'], |
| A warning occurred (42 apples) | |
| An error occurred |
Might also be the dv163 P1: http://help.dvr163.com/index.php/P1
Based on Ankya AK3918 HD IP Camera SoC http://caxapa.ru/thumbs/914089/ak3818ds.pdf http://caxapa.ru/thumbs/914089/ak3818ds.pdf
Check/download latest firmware (site blocked for malware in Chrome/Firefox) http://42.96.185.60:8088/XVR/common/checkCommonUpdate.php?DevModel=IPCAM&SWVersion=1.4.47.0&DeviceSN=F2731110583936&ODMNum=391802&FirmwareMagic=SlVBTiBJUENBTSBGSVJNV0FSRSBERVNJR05FRCBCWSBMQVc=&Release=1&app_version=2.3.13 Response:
Might also be the dv163 P1: http://help.dvr163.com/index.php/P1
Based on Ankya AK3918 HD IP Camera SoC http://caxapa.ru/thumbs/914089/ak3818ds.pdf http://caxapa.ru/thumbs/914089/ak3818ds.pdf
Check/download latest firmware (site blocked for malware in Chrome/Firefox) http://42.96.185.60:8088/XVR/common/checkCommonUpdate.php?DevModel=IPCAM&SWVersion=1.4.47.0&DeviceSN=F2731110583936&ODMNum=391802&FirmwareMagic=SlVBTiBJUENBTSBGSVJNV0FSRSBERVNJR05FRCBCWSBMQVc=&Release=1&app_version=2.3.13 Response:
