This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Additive Care offers a push button 3D printing solution for the healthcare industry | |
| AllGo provides insights on the comfort and accessibility of public places for plus-size people | |
| Black Founders Matter Fund is an early stage venture capital fund focused on supporting black entrepreneurs | |
| CMDSense uses a variety of connected devices and other tools to gather data from physical environments to identify efficiencies and improve usability for everyone | |
| De Las Mias empowers Latinas to live healthier lives | |
| Design Week Portland (NEW) One of the most popular and well attended Design Weeks in the world is working to add an additional 51 weeks to its schedule, every year | |
| Dorsum is developing the AdaptiveSpine™, a spinal exoskeleton and supportive device that transfers weight and stress to the hips. | |
| Foundry Collaborative (Mentors in Residence) features the team who built the Adidas connected ball reimagined as a product consultancy | |
| KnowNow Health is on a mission to provide screening and treatment of important medical condi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| // setup | |
| setup() | |
| // descriptor | |
| return {name:"darksky"} | |
| }) | |
| var api_key | |
| function setup() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| // descriptor | |
| return {name:"inline-public"} | |
| }) | |
| function go(msg){ | |
| if(msg.method == "irc.privmsg") { | |
| if(msg.params.nick != bot.owner) { | |
| var match = /(.*){{(.*)}}(.*)/.exec(msg.params.message) | |
| if(match){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Module = struct { | |
| sp: i32, | |
| memory: Memory, | |
| }; | |
| const Memory = struct { | |
| ram: []i32, | |
| }; | |
| pub fn main() void { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| alerting_cache() | |
| return {name:"freeze"} | |
| }) | |
| var alert_channel = "#pdxbots" | |
| var minor_channel = "#zrobo" | |
| var freezing = false | |
| var flip_time | |
| var inwarming = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| return {name:"promise"} | |
| }) | |
| var promises = [] | |
| function go(msg) { | |
| if (msg.method == "irc.privmsg") { | |
| var match = /^!?promise$/.exec(msg.params.message) | |
| if(match) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sslcheck () { | |
| if [ -z "$1" ] | |
| then | |
| echo "sslcheck <domain name>" | |
| else | |
| name="${(s.:.)1}" | |
| now_epoch=$( date +%s ) | |
| dig +noall +answer $name | while read _ _ _ _ ip | |
| do | |
| echo -n "$ip:" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity ^0.4.24; | |
| contract PriceOracleInterface { | |
| /** | |
| * @notice Gets the price of a given asset | |
| * @dev fetches the price of a given asset | |
| * @param asset Asset to get the price of | |
| * @return the price scaled by 10**18, or zero if the price is not available | |
| */ | |
| function assetPrices(address asset) public view returns (uint); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity ^0.4.24; | |
| contract ErrorReporter { | |
| /** | |
| * @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary | |
| * contract-specific code that enables us to report opaque error codes from upgradeable contracts. | |
| **/ | |
| event Failure(uint error, uint info, uint detail); | |
| enum Error { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // hevm: flattened sources of src/tub.sol | |
| pragma solidity ^0.4.18; | |
| ////// lib/ds-guard/lib/ds-auth/src/auth.sol | |
| // This program is free software: you can redistribute it and/or modify | |
| // it under the terms of the GNU General Public License as published by | |
| // the Free Software Foundation, either version 3 of the License, or | |
| // (at your option) any later version. | |
| // This program is distributed in the hope that it will be useful, |