internet

Project management under internet era: how to respond to challenging changes in the digital era / Shaopei Lin, Dan Huang

Online Resource




internet

The intersectional Internet : race, sex, class and culture online / edited by Safiya Umoja Noble and Brendesha M. Tynes




internet

Internet India Foundation moves IT panel on data privacy in Aarogya Setu app

IIF urged that the hearing should specially involve medical health professionals, academics from IITs and digital rights and public policy experts to provide inputs.




internet

Proceedings of SNDSS '97: Internet Society 1997 Symposium on Network and Distributed System Security [electronic journal].

IEEE Computer Society




internet

Proceedings. International Symposium on Applications and the Internet Workshops [electronic journal].

IEEE Computer Society




internet

Proceedings 2001 Symposium on Applications and the Internet Workshops [electronic journal].

IEEE Computer Society




internet

Internet Protocols [electronic journal].

Worldwide Videotex




internet

2019 IEEE International Conference on Internet of Things and Intelligence System (IoTaIS) [electronic journal].




internet

2019 IEEE 5th International Conference on Collaboration and Internet Computing (CIC) [electronic journal].

IEEE / Institute of Electrical and Electronics Engineers Incorporated




internet

2019 7th International Conference on Future Internet of Things and Cloud (FiCloud) [electronic journal].

IEEE / Institute of Electrical and Electronics Engineers Incorporated




internet

2019 7th International Conference on Future Internet of Things and Cloud (FiCloud) [electronic journal].

IEEE / Institute of Electrical and Electronics Engineers Incorporated




internet

2019 4th International Conference on Cloud Computing and Internet of Things (CCIOT) [electronic journal].




internet

2007 International Symposium on Applications and the Internet - Workshops [electronic journal].

IEEE / Institute of Electrical and Electronics Engineers Incorporated




internet

2006 Advanced Int'l Conference on Telecommunications and Int'l Conference on Internet and Web Applications and Services [electronic journal].

IEEE / Institute of Electrical and Electronics Engineers Incorporated




internet

2005 Symposium on Applications and the Internet Workshops (SAINT 2005 Workshops) [electronic journal].

IEEE Computer Society




internet

Handbook of research on the internet of things applications in robotics and automation / [edited by] Rajesh Singh, Anita Gehlot, Vishal Jain, Praveen Kumar Malik




internet

Advances in internet, data and web technologies : the 7th International Conference on Emerging Internet, Data and Web Technologies (EIDWT-2019) / Leonard Barolli, Fatos Xhafa, Zahoor Ali Khan, Hamad Odhabi, editors

International Conference on Emerging Internet, Data and Web Technologies (7th : 2019 : United Arab Emirates)




internet

Broad band : the untold story of the women who made the Internet / Claire L. Evans

Evans, Claire Lisa, author




internet

Cognitive internet of things : frameworks, tools and applications / Huimin Lu, editor




internet

Internet of vehicles: technologies and services toward smart cities: 6th International Conference, IOV 2019, Kaohsiung, Taiwan, November 18-21, 2019, Proceedings / Ching-Hsien Hsu, Sondès Kallel, Kun-Chan Lan, Zibin Zheng (eds.)

Online Resource




internet

Participating in the internet for the future


The three pillars of Ciscoâ€TMs “Internet for the Future†strategy are its investments in silicon, optics, and software.
More RSS Feed for Cisco: newsroom.cisco. ...





internet

#CLEUR: Here's how we can build the future internet


The future internet will open new opportunities for remotely training and reskilling workers in a smoother and more effective way.
More RSS Feed for Cisco: newsroom.cisco.com/rss-feeds ...




internet

Beyond smart and connected governments: sensors and the internet of things in the public sector / J. Ramon Gil-Garcia, Theresa A. Pardo, Mila Gasco-Hernandez, editors

Online Resource




internet

India questions US dominance over critical internet resources

There is a need for formulating globally co-ordinated, inclusive, coherent Internet policies.




internet

India has over 500 mn active Internet users, 14% aged 5-11: Report

According to IAMAI's 'Digital in India' report, India had 504 million active Internet users, who logged onto the web at least once in the last one month, at the end of November 2019




internet

Wi-Fi,Internet facility in Howrah Rajdhani launched



  • DO NOT USE West Bengal
  • India

internet

JSJ 432: Internet of Things (IoT) with Joe Karlsson

JavaScript Remote Conf 2020

May 13th to 15th - register now!

Joe Karlsson is a developer advocate at MongoDB. He and the panel walk through the different approaches, uses, and libraries for building IoT with JavaScript

Panel

  • Aimee Knight
  • Charles Max Wood
  • AJ O’Neal
  • Dan Shappir
  • Steve Edwards

Guest

  • Joe Karlsson

Sponsors

 

"The MaxCoders Guide to Finding Your Dream Developer Job" by Charles Max Wood is now available on Amazon. Get Your Copy Today!

 

Links

Picks

AJ O’Neal:

Aimee Knight:

  • Cutting Your own Hair
  • Joe's Appartment

Charles Max Wood:

Steve Edwards:

Dan Shappir:

Joe Karlsson:

Follow JavaScript Jabber on Twitter > @JSJabber




internet

Your Internet cash machine [electronic resource] : the insiders' guide to making big money, fast! / Joe Vitale, Jillian Coleman Wheeler

Vitale, Joe, 1953-




internet

You've got dissent! [electronic resource] : Chinese dissident use of the Internet and Beijing's counter-strategies / Michael Chase, James Mulvenon

Chase, Michael




internet

Nanofood and internet of nano things: for the next generation of agriculture and food sciences / Mirjana Maksimović, Enisa Omanović-Mikličanin, Almir Badnjević

Online Resource




internet

Using canvas to fix SVG scaling in Internet Explorer

Internet Explorer 9–11 suffer from various bugs that prevent proper scaling of inline SVG’s. This is particularly problematic for SVG icons with variable widths. This is the canvas-based hack I’ve been using to work around the issue.

A popular way to use SVG icons is to generate a spritemap of SVG symbol‘s that you then reference from elsewhere in a document. Most articles on the topic assume your icon dimensions are uniformly square. Twitter’s SVG icons (crafted by @sofo) are variable width, to produce consistent horizontal whitespace around the vectors.

Most browsers will preserve the intrinsic aspect ratio of an SVG. Ideally, I want to set a common height for all the icons (e.g., 1em), and let the browser scale the width of each icon proportionally. This also makes it easy to resize icons in particular contexts – just change the height.

Unfortunately, IE 9–11 do not preserve the intrinsic aspect ratio of an inline SVG. The svg element will default to a width of 300px (the default for replaced content elements). This means it’s not easy to work with variable-width SVG icons. No amount of CSS hacking fixed the problem, so I looked elsewhere – and ended up using canvas.

canvas and aspect ratios

A canvas element – with height and width attributes set – will preserve its aspect ratio when one dimension is scaled. The example below sets a 3:1 aspect ratio.

<canvas height="1" width="3"></canvas>

You can then scale the canvas by changing either dimension in CSS.

canvas {
  display: block;
  height: 2rem;
}

Demo: proportional scaling of canvas.

Fixing SVG scaling in IE

This makes canvas useful for creating aspect ratios. Since IE doesn’t preserve the intrinsic aspect ratio of SVG icons, you can use canvas as a shim. A canvas of the correct aspect ratio provides a scalable frame. The svg can then be positioned to fill the space created by this frame.

The HTML is straightforward:

<div class="Icon" role="img" aria-label="Twitter">
  <canvas class="Icon-canvas" height="1" width="3"></canvas>
  <svg class="Icon-svg">
    <use fill="currentcolor" xlink:href="#icon-twitter"></use>
  </svg>
</div>

So is the CSS:

.Icon {
  display: inline-block;
  height: 1em; /* default icon height */
  position: relative;
  user-select: none;
}

.Icon-canvas {
  display: block;
  height: 100%;
  visibility: hidden;
}

.Icon-svg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

Setting the canvas height to 100% means it will scale based on the height of the component’s root element – just as SVG’s do in non-IE browsers. Changing the height of the Icon element scales the inner SVG icon while preserving its 3:1 aspect ratio.

Demo: proportional scaling of svg in IE.

Creating an Icon component

The hack is best added to (and eventually removed from) an existing icon component’s implementation.

If you’re generating and inlining an SVG spritemap, you will need to extract the height and width (usually from viewBox) of each of your icons during the build step. If you’re already using the gulp-svgstore plugin, it supports extracting metadata.

Those dimensions need to be set on the canvas element to produce the correct aspect ratio for a given icon.

Example React component (built with webpack):

import iconData from './lib/icons-data.json';
import React from 'react';
import './index.css';

class Icon extends React.Component {
  render() {
    const props = this.props;
    const height = iconData[props.name.height];
    const width = iconData[props.name.width];

    // React doesn't support namespaced attributes, so we have to set the
    // 'use' tag with innerHTML
    const useTag = `<use fill="currentcolor"
                      xlink:href="#icon-${props.name}">
                    </use>`;

    return (
      <span className="Icon">
        <canvas className="Icon-canvas"
          height={height}
          width={width}
        />
        <svg className="Icon-svg"
          dangerouslySetInnerHTML={{__html: useTag}}
          key={props.name}
        />
      </span>
    );
  }
}

export default Icon;

When I introduced this hack to a code base at Twitter, it had no impact on the the rest of the team or the rest of the code base – one of the many benefits of a component-based UI.





internet

Internet law: cases & problems / James Grimmelmann, Professor of Law, Cornell Tech and Cornell Law School

Dewey Library - KF390.5.C6 G75 2018




internet

The internet and new social media formation in China : fandom publics in the making / Weiyu Zhang

Zhang, Weiyu, author




internet

Riyaz Naikoo encounter: Private mobile phones restored in Kashmir, internet remains suspended

The situation in the valley, which has been witnessing lockdown since the third week of March due to COVID-19 pandemic, was generally calm barring a few local protests in some villages of Pulwama in south Kashmir.




internet

Digital Diseases [electronic resource] : symptoms of the internet era / Gökmen H Karadag (ed.).

[S.l.] : PETER LANG AG, 2020.




internet

Reporting CES data on the Internet.

Dewey Library - L 2.2:EM 7/51/2013





internet

Top Hizb terrorist Riyaz Naikoo killed by security forces in J&amp;K; private phones and mobile internet suspended in Valley

Top Hizb terrorist Riyaz Naikoo killed by security forces in J&K; private phones and mobile internet suspended in Valley




internet

Ariana Grande and Justin Bieber's quarantine anthem 'Stuck with U' is winning over the internet; watch

Ariana Grande and Justin Bieber's quarantine anthem 'Stuck with U' is winning over the internet; watch




internet

A primer to prepare for the connected airport and the internet of things / Johanna Zmud [and 9 others]

Barker Library - TL725.3.M2.P755 2018




internet

Covid-19 lockdown effect: Every second Indian now on internet in cities

The data released by Nielsen and the Broadcast Audience Research Council (BARC) shows that internet usage has grown sharply in cities over the last one month, touching 54 per cent




internet

Fluorescent nanoparticle-based Internet of things

Nanoscale, 2020, 12,9817-9823
DOI: 10.1039/D0NR01365J, Paper
Luca Fichera, Giovanni Li-Destri, Nunzio Tuccitto
The first working molecular-IoT prototype, based on a chemical communication network, was developed by employing three different carbon nanoparticles.
The content of this RSS Feed (c) The Royal Society of Chemistry




internet

Packet loss concealment in voice over the Internet




internet

Development and validation of a systematically designed unit for online information literacy and its effect on student performance for internet search training




internet

A framework to develop an interactive web database for delivery of water resources field data over the internet




internet

The effects of an internet-based program on the early reading and oral language skills of at-risk preschool students and their teachers' perceptions of the program




internet

Design and evaluation of new power management methods to reduce direct and induced energy use of the internet




internet

The association between Internet use and characteristics of social networking for middle aged and older adults