- Last 7 days
-
www.microsoft.com www.microsoft.com
-
Gmail error 007 occurs when you try to send an email but Gmail get stuck while sending the message and Error 007 is displayed. How to fix Gmail Server error 007? First, check your browser for any new updates – update if available. Second, enable all disabled extensions on your browser. Third, clear all cookies, cache memory, registry, and prefetch files. If this solution does not work, wait till Gmail resolves the issue itself.
-
- Feb 2021
-
hub.docker.com hub.docker.comphp1
-
-apache
Meaning you need to append "-apache" to the image name to have Apache with PHP.
Tags
Annotators
URL
-
-
ifttl.com ifttl.com
Tags
Annotators
URL
-
- Jan 2021
-
www.npmjs.com www.npmjs.com
-
Think first: why do you want to use it in the browser? Remember, servers must never trust browsers. You can't sanitize HTML for saving on the server anywhere else but on the server.
-
- Dec 2020
-
sapper.svelte.dev sapper.svelte.dev
-
Note that preload will run both on the server side and on the client side. It may therefore not reference any APIs only present in the browser.
-
Preload functions are typically used to load data that the page depends on, hence its name. This avoids the user seeing the page update as it loads, as is typically the case with client-side loading.
-
-
github.com github.com
-
I put together a POC that resembles react-rails and helps with server- and client-side rendering, and provides a view helper (svelte_component):
-
webpacker-svelte misses server-side rendering, though.
-
-
github.com github.com
-
If you are running your own instance of the Hypothesis annotation server
If you're interested in setting up your own server, start with this guide: https://h.readthedocs.io/en/latest/developing/install/
Tags
Annotators
URL
-
-
github.com github.com
-
jamstack.org jamstack.org
-
Because Jamstack projects don’t rely on server-side code, they can be distributed instead of living on a single server. Serving directly from a CDN unlocks speeds and performance that can’t be beat. The more of your app you can push to the edge, the better the user experience.
-
-
github.com github.com
- Nov 2020
-
stackoverflow.com stackoverflow.com
-
If you want a reference to the global object that works in any context, you can read this from a directly-called function. const global = (function() {return this})();. This evaluates to window in the browser, self in a service worker and global in nodejs.
-
emphasizing that 'this' and 'global object' are two different things not only in Node.js but in JavaScript in general
-
-
-
(That's a SMUI button and card running in a Sapper instance (and the markup is there on page load with JS turned off).)
-
- Oct 2020
-
github.com github.com
-
I want to run docker daemon with TLS enabled but client certificate authentication disabled so that clients can verify authenticity of docker daemon but docker daemon doesn't need to verify clients.
-
-
www.basefactor.com www.basefactor.com
-
Ubiquity: you can also run your validation on the server side (e.g. nodejs)
-
-
github.com github.com
-
Use a node-style require() to organize your browser code and load modules installed by npm.
-
-
github.com github.com
-
browserify is a tool for compiling node-flavored commonjs modules for the browser.
-
-
github.com github.com
-
Node doesn't have a DOM available. So in order to render HTML we use string concatenation instead. This has the fun benefit of being quite efficient, which in turn means it's great for server rendering!
-
-
-
Think of JavaScript. In the browser you don't have direct access to the file system. In Node.js you have. Same programming language. Different APIs.
-
-
wiobyrne.com wiobyrne.com
-
and serve as pre-prints to work that may live later on, or always exist in their current format
Thinking of a personal site as a pre-print server is an interesting concept and somewhat similar to the idea of a commonplace book.
-
-
github.com github.com
-
It's designed for Single Page Applications (SPA). If you need Server Side Rendering then consider using Sapper.
-
-
www.npmjs.com www.npmjs.com
-
Leverages hash-based routing, which is optimal for SPAs and doesn't require any server-side processing
-
-
stackoverflow.com stackoverflow.com
-
Node.js code must be run by the node process, not the browser (the code must run in the server).
-
- Sep 2020
-
medium.com medium.com
-
Modules using code that doesn’t exist in browsers such as process.env.NODE_ENV and forcing you to convert or polyfill it.
-
-
rollupjs.org rollupjs.orgRollup1
-
Some modules, like events or util, are built in to Node.js. If you want to include those (for example, so that your bundle runs in the browser), you may need to include rollup-plugin-node-polyfills.
-
-
exploringjs.com exploringjs.com
-
Ways of delivering JavaScript source code
-
-
svelte.dev svelte.dev
-
First class TypeScript support means that both of these two systems do a good job of handling TypeScript code.
-
-
github.com github.com
-
To add documentation on a Svelte component that will show up as a docstring in LSP-compatible editors, you can use an HTML comment with the @component tag:
-
-
langserver.org langserver.org
- Aug 2020
-
svelte.dev svelte.dev
-
It's recommended to put the fetch in onMount rather than at the top level of the <script> because of server-side rendering (SSR). With the exception of onDestroy, lifecycle functions don't run during SSR, which means we can avoid fetching data that should be loaded lazily once the component has been mounted in the DOM.
-
- Jul 2020
-
www.pscp.tv www.pscp.tv
-
JAMA Network - Discussing preprint servers and social media.
-
-
sapper.svelte.dev sapper.svelte.dev
-
https://github.com/sveltejs/sapper
Like Gatsby.
-
- May 2020
-
jamstack.org jamstack.org
-
When is your site not built with the Jamstack? Any project that relies on a tight coupling between client and server is not built with the Jamstack.
-
-
docs.python.org docs.python.org
-
python -m http.server 8000
quick web server from terminal using python3 http module
Tags
Annotators
URL
-
- Apr 2020
-
en.wikipedia.org en.wikipedia.org
-
By rendering important parts of the application with the real data on the server-side, an isomorphic application can show a meaningful initial page. On the other hand, client rendering application can’t show any meaningful information until it fetches all external data it needs. In the meantime, the only thing a user will see is a loading indicator.
-
-
twitter.com twitter.com
-
Michael Veale on Twitter.
-
- Dec 2019
-
github.com github.com
-
One thing that matters is if code uses browser-specific (example: Dom) or server-specific (example: filesystem) features.
-
-
github.com github.com
-
This is a non-dom based javascript execution environment. It usually only contains the base javascript language spec libraries and objects along with modules to communicate with OS features (available through commonjs require).
-
-
material-ui.com material-ui.com
-
server-side rendering is strict about configuration, and the best way to find out what's wrong is to compare your project to an already working setup. Check out the reference implementations, bit by bit.
-
- Nov 2019
-
github.com github.com
-
// require('hammerjs') when in a browser. This is safe because Hammer is only // invoked in componentDidMount, which is not executed on the server. var Hammer = (typeof window !== 'undefined') ? require('hammerjs') : undefined
-
-
www.theregister.co.uk www.theregister.co.uk
-
github.com github.com
-
Second, uBlock Origin does not have a dedicated server, it can't "phone home" with your browsing data, there is only GitHub, and GitHub is completely unrelated to uBlock Origin.
-
Is there a home server?
-
- Oct 2019
-
github.com github.com
-
docker-openresty/alpine/Dockerfile.fat
openrestry nginx image that Hypothesis's new proxy-server is based on.
-
- Sep 2019
-
reactjs.org reactjs.org
-
github.com github.com
-
css-tricks.com css-tricks.com
- Jul 2019
-
web.hypothes.is web.hypothes.is
-
Some users have deployed independent Hypothesis servers, and at least one uses an API-compatible reimplementation of the Hypothesis server.
I'm curious about these. Would someone point me in their direction?
The prospect of hosting your own server seems intimidating, if not tempting.
-
- Feb 2019
-
book.haihome.top book.haihome.top
-
Engineering Challenges
Communication 通常的存储都是kv,更新粒度是单个数值,但是ML算法通常的数据集类型是matrix,vector,tensor,更新的是part matrix或者vector,所以可以更进一步优化通信数据类型。
Fault tolerance
-
- Jan 2019
-
blog.stanko.io blog.stanko.io
-
Server-Sent Events utilize a regular HTTP octet streams, and therefore are limited to the browser’s connection pool limit of ~6 concurrent HTTP connections per server. But they provide a standard way of pushing data from the server to the clients over HTTP, which load balancers and proxies understand out-of-the-box. The biggest advantage being that, exactly as WebSockets, they utilize only one TCP connection. The biggest disadvantage is that Server-Sent Events don’t provide a mechanism to detect dropped clients until a message is sent.
Possibly an alternative to using websockets for server-client communication (when the communication does not need to be two ways).
-
-
-
Server-sent Event(SSE) in Python and here is why I thought Python is a great server-side language for SSE
Server side events in python work well.
-
- Sep 2018
-
github.com github.com
Tags
Annotators
URL
-
- Jun 2018
-
-
“pre-print” versions of manuscripts
This is just another, albeit specific, form of academic samizdat. https://indieweb.org/academic_samizdat
-
- Oct 2017
-
knowledge.kaltura.com knowledge.kaltura.com
-
InOpenXtheadtagURLislinkedtoanOpenXZone,inthefollowingformat
The information about OpenX can also be used for Revive. Additional information about getting this URL from Revive can be found here: Invocation code for Inline Video ad zone or Overlay Video ad zone
-
- Jun 2017
-
www.nature.com www.nature.com
-
protected platform whereby many expert reviewers could read and comment on submissions, as well as on fellow reviewers’ comments
Conduct prepeer review during the manuscript development on a web platform. That is what is happening in Therapoid.net.
-
intelligent crowd reviewing
Crowdsourcing review? Prepeer review as precursor to preprint server.
-
- May 2017
-
www.hackingwithreact.com www.hackingwithreact.com
-
npm install --save-dev webpack webpack-dev-server react-hot-loader
You may run into problems if you don't install webpack-dev-server globally. If you must, as you will have to on many Linux systems, the command is as follows:
sudo npm install --save-dev webpack-dev-server -g
-
- Mar 2017
-
blog.outsider.ne.kr blog.outsider.ne.kr
-
Docker Swarm을 이용한 쉽고 빠른 분산 서버 관리 : Docker Swarm으로 서버 오케스트레이션 하는 방법을 설명한 글이다. 현재 사용 가능한 오케스트레이션 도구들의 장단점도 정리되어 있고 Swarm이 제공하는 기능을 설명한 후 실제로 따라 해 보면서 테스트해볼 수 있게 글이 작성되어 있어서 오케스트레이션 도구를 검토하고 있다면 찬찬히 읽어봐야 할 글이다. 얼마 전에 Docker Swarm을 보고 간단하면서 기능이 강력해서 꽤 좋은 인상을 받았는데 정리된 글이 나와서 반갑다.(한국어)
Tags
Annotators
URL
-
- Oct 2016
-
play.google.com play.google.com
-
We're sorry, the requested URL was not found on this server.
We're sorry, the requested URL was not found on this server.
-
- Jun 2015
-
wiki.blazegraph.com wiki.blazegraph.com
-
http://localhost:port/bigdata/sparql
Be sure not to leave a trailing space on this URL
-