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
| ;; Org | |
| (org-agenda-clocking ((t ,clock-line))) | |
| (org-agenda-column-dateline ((t (:inherit org-column)))) | |
| ;; (org-agenda-column-dateline ((t (:background "deep sky blue" :height 79 :family "Consolas")))) | |
| (org-agenda-current-time ((t (:weight bold :underline t :foreground "purple")))) | |
| (org-agenda-date ((t (:height 1.6 :weight bold :foreground "#0063F5")))) ; "#87C9FC" | |
| (org-agenda-date-today ((t (:height 1.6 :weight bold :foreground "purple")))) ; "#CCCCFF" ; inherit | |
| (org-agenda-date-weekend ((t (:height 1.6 :weight bold :foreground "dim gray")))) ; "#B6B2AE" ; inherit | |
| (org-agenda-diary ((t (:weight bold :foreground "green4" :background "light blue")))) | |
| (org-agenda-dimmed-todo-face ((t (:foreground "gold2")))) ; org-blocked-todo |
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 asanaRequest($methodPath, $httpMethod = 'GET', $body = null) | |
| { | |
| $apiKey = 'ASANA_API_KEY_HERE'; /// Get it from http://app.asana.com/-/account_api | |
| $url = "https://app.asana.com/api/1.0/$methodPath"; | |
| $ch = curl_init(); | |
| curl_setopt($ch, CURLOPT_URL, $url); | |
| curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC ) ; | |
| curl_setopt($ch, CURLOPT_USERPWD, $apiKey); | |
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
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
| from selenium import webdriver | |
| from selenium.common.exceptions import NoSuchElementException | |
| import unittest | |
| class Weather(unittest.TestCase): | |
| def setUp(self): | |
| self.driver = webdriver.Firefox() | |
| self.driver.implicitly_wait(30) | |
| self.base_url = "http://www.weather.com/" | |
| self.verificationErrors = [] |
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
| PGraphics g ; | |
| void setup() { | |
| size(500,500); | |
| smooth(8); | |
| noStroke(); | |
| fill(0); | |
| g = createGraphics(270,270); | |
| g.beginDraw(); | |
| g.background(255); |
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
| // generateme.tumblr.com, 2016 | |
| // idea by zach lieberman | |
| // choose variant | |
| int variant = 0; // 0 or 1; | |
| void setup() { | |
| size(800, 800); | |
| background(0, 5, 25); | |
| strokeWeight(0.8); |
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
| OpenSimplexNoise noise; | |
| int[][] result; | |
| float t, c; | |
| float ease(float p) { | |
| return 3*p*p - 2*p*p*p; | |
| } | |
| float ease(float p, float g) { |
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
| int numFrames = 100; | |
| PVector field(float x,float y){ | |
| float amount = 2.5; | |
| float scale = 0.03; | |
| float radius = 0.45; | |
| double value1 = 400.0*noise.eval(scale*x,scale*y,radius*cos(TWO_PI*1.0*(frameCount-1)/numFrames),radius*sin(TWO_PI*1.0*(frameCount-1)/numFrames)); | |
| double value2 = 400.0*noise.eval(1000+scale*x,scale*y,radius*cos(TWO_PI*1.0*(frameCount-1)/numFrames),radius*sin(TWO_PI*1.0*(frameCount-1)/numFrames)); | |
| //int value2 = (int) Math.round(value); | |
| float parameter1 = (int) Math.round(value1)/100.0; |
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
| OpenSimplexNoise noise; | |
| int[][] result; | |
| float t, c; | |
| float ease(float p) { | |
| return 3*p*p - 2*p*p*p; | |
| } | |
| float ease(float p, float g) { |