Revisiting one of my favorite pens to update the React side of it and add sound
A Pen by Christian Anderson on CodePen.
| /** | |
| * Retrieves all the rows in the active spreadsheet that contain data and logs the | |
| * values for each row. | |
| * For more information on using the Spreadsheet API, see | |
| * https://developers.google.com/apps-script/service_spreadsheet | |
| */ | |
| function readRows() { | |
| var sheet = SpreadsheetApp.getActiveSheet(); | |
| var rows = sheet.getDataRange(); | |
| var numRows = rows.getNumRows(); |
Revisiting one of my favorite pens to update the React side of it and add sound
A Pen by Christian Anderson on CodePen.
| import time | |
| from scrapy import Spider, Request | |
| from zocdoc.items import ZocdocItem | |
| from scrapy_splash import SplashRequest | |
| from scrapy.http import HtmlResponse | |
| from selenium import webdriver | |
| class ZocdocreviewsSpider(Spider): | |
| name = 'zocdocReviews' |
| import time | |
| from scrapy import Spider, Request | |
| from zocdoc.items import ZocdocItem | |
| from scrapy_splash import SplashRequest | |
| from scrapy.http import HtmlResponse | |
| from selenium import webdriver | |
| class ZocdocreviewsSpider(Spider): | |
| name = 'zocdocReviews' |
| <canvas class="webgl"></canvas> | |
| <script id="firefliesVertexShader" type="x-shader/x-vertex"> | |
| uniform float uPixelRatio; | |
| uniform float uSize; | |
| uniform float uTime; | |
| attribute float aScale; | |
| void main() { | |
| vec4 modelPosition = modelMatrix * vec4(position, 1.0); | |
| modelPosition.y += sin(uTime + modelPosition.x * 100.0) * aScale * 0.2; | |
| modelPosition.z += cos(uTime + modelPosition.x * 100.0) * aScale * 0.2; |
| pragma solidity >=0.4.22 <0.6.0; | |
| contract owned { | |
| address public owner; | |
| constructor() public { | |
| owner = msg.sender; | |
| } | |
| modifier onlyOwner { |
A Pen by christian anderson on CodePen.
| <a id="top"></a> | |
| <a href="#top" class="arrow-up backToTop"> | |
| <span class="left-arm"></span> | |
| <span class="right-arm"></span> | |
| <span class="arrow-slide"></span> | |
| </a> | |
| <!-- OUTSIDE OF SCROLL --> |
| <a href="https://front.codes/" class="logo" target="_blank"> | |
| </a> | |
| <div class="section over-hide"> | |
| <div class="container"> | |
| <div class="row full-height justify-content-center"> | |
| <div class="col-12 text-center align-self-center py-5"> | |
| <div class="section text-center py-5 py-md-0"> | |
| <input class="pricing" type="checkbox" id="pricing" name="pricing"/> |
A Pen by christian anderson on CodePen.