Primitive types
undefined string number boolean object symbol
null
package my.hydepark.ssl; | |
import javax.net.ssl.*; | |
import java.security.cert.CertificateException; | |
import java.security.cert.X509Certificate; | |
public class SSLCertificateValidation { | |
public static void disable() { | |
try { |
// https://stackoverflow.com/questions/17062219/pass-multiple-parameters-to-processbuilder-with-a-space | |
// https://stackoverflow.com/questions/15384879/imagemagick-using-more-than-2gb-of-memory-to-convert-pdf-files | |
// https://www.imagemagick.org/script/command-line-options.php#limit | |
// Set '-limit memory 0 -limit map 0'. If that fails, you'll need a larger instance of a Amazon server to run ImageMagick. | |
// https://legacy.imagemagick.org/discourse-server/viewtopic.php?t=23090 | |
// https://github.com/imagemagick/imagemagick/issues/327 | |
/* convert -background '#dfe1ff' -pointsize 40 -fill blue -gravity south \ |
https://github.com/simpletut/Testing-React-Redux-with-Jest-and-Enzyme/blob/master/Utils/index.js | |
https://www.robinwieruch.de/react-connected-component-test | |
https://hacks.mozilla.org/2018/04/testing-strategies-for-react-and-redux/ |
https://sabljakovich.medium.com/basic-authentication-with-axios-nodejs-browser-cfabe08ced39 | |
https://mkyong.com/spring-boot/spring-rest-spring-security-example/ | |
https://github.com/mkyong/spring-boot/tree/master/spring-rest-security |
Primitive types
undefined string number boolean object symbol
null
function base_converter(nbasefrom, basefrom, baseto) { | |
var SYMBOLS = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; | |
if (basefrom<=0 || basefrom>SYMBOLS.length || baseto<=0 || baseto>SYMBOLS.length) { | |
console.log("Base unallowed"); | |
return null; | |
} | |
var i, nbaseten=0; | |
if (basefrom!=10) { | |
var sizenbasefrom = nbasefrom.length; | |
for (i=0; i<sizenbasefrom; i++) { |
import React from "react"; | |
// https://stackoverflow.com/questions/63597602/javascript-regex-to-limit-number-of-characters-per-line | |
// Regex https://regex101.com/r/lOI5to/1 :- /^.{0,10}(?:\n.{0,10}){0,1}$/ | |
/* | |
.App { | |
font-family: sans-serif; | |
text-align: center; |
module.exports = { | |
content: [ | |
"./pages/**/*.{js,ts,jsx,tsx}", | |
"./components/**/*.{js,ts,jsx,tsx}", | |
], | |
theme: { | |
extend: { | |
fontFamily: { | |
sans: ["Lato", "sans-serif"], | |
}, |
class MinHeap { | |
constructor(data = []) { | |
this.data = data; | |
this.comparator = (a, b) => a - b; | |
this.heapify(); | |
} | |
heapify() { | |
if (this.size < 2) return; | |
for (let i = 1; i < this.size; i++) { |