Skip to content
#

webdesign

Here are 502 public repositories matching this topic...

slidenerd
slidenerd commented Mar 17, 2020
  • Sorry if this is not the right place to ask, I read through the documentation and could not find anything on Nuxt
  • Searched nuxt.js subreddit no mention
  • I am using Nuxt in SSR mode, how would you add this library to it? Could you kindly the documentation to add a small section in case it is simple so that in the future people wont ask the same question
    Thank you for your time
Silex
meme
meme commented Jan 27, 2020

When running this tool on a large C codebase, I was experiencing errors with values out-of-bounds of the size of a short, so I modified _search.py to create a table with larger bounds:

diff --git a/documentation/_search.py b/documentation/_search.py
index cd8b643..efe2bc5 100644
--- a/documentation/_search.py
+++ b/documentation/_search.py
@@ -108,7 +108,7 @@ class ResultMap:
 
DBi1512
DBi1512 commented Mar 27, 2019
const rectangle = {
  width: 20, 
  height:10,
  area: 200
}
let {width, heigh, area, perimeter = 60} = rectangle;
console.log(width, height, area, perimeter)  //20 10 200 60
//Lets modify the object:width to 30 and perimeter to 80
const rectangle = {
  width: 30, 
  height:10,
  area: 200,
  perimeter:80
}
let {width, heigh, area, perimeter = 60} = rectangle;
console.log(width

Improve this page

Add a description, image, and links to the webdesign topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the webdesign topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.