- Create a Google Maps alternative with PHP and MySQL using the Leaflet library – PHP Classes blog – PHP Classes http://t.co/KmaV5T3Y6n 07:18:15, 2015-05-27
- Leaders of top 15 most profitable law firms aren’t on Twitter – http://t.co/hmZ0tKX56j 08:16:26, 2015-05-27
- The Future of Legal Practice and Technology for Law Professors http://t.co/s07KLJrvd8 Latest from my colleague @sglassmeyer 09:53:23, 2015-05-27
- NY State school libraries fund flexible software http://t.co/gIMl0GZeOA 09:56:39, 2015-05-27
- RT @caliorg: #CALIcon15 Session of the Day: Data-Driven Transformation – Using Technology to Promote a Culture of Assessment http://t.co/Hf… 11:14:33, 2015-05-27
- RT @sglassmeyer: Small caps – the bane of the legal world's existence. 11:15:27, 2015-05-27
- My Twitter Digest for 05/26/2015 http://t.co/IEoTuy3Pkb 15:30:17, 2015-05-27
- Getting tired of SaaS, PaaS outfits whose sale pitch includes some variation of "Your IT dept. sucks so let us do it" as a tent pole. 16:26:46, 2015-05-27
My Twitter Digest for 05/26/2015
- Open hardware guru answers: Arduino or Raspberry Pi? | http://t.co/dPnyw7UCo7 http://t.co/1IbGdSWSrd 07:06:38, 2015-05-26
- RT @caliorg: CALIcon Session of the Day: Improving Access to Non-CFR Federal Regulations Using Linked Data Technology http://t.co/uSf8OUhGHy 10:03:46, 2015-05-26
- Pushing links to Slack with Radio3 http://t.co/iSbiEV0nI0 10:49:46, 2015-05-26
- 18F — Tocking time http://t.co/G4hRyfUiSH 12:24:30, 2015-05-26
- My Twitter Digest for 05/25/2015 http://t.co/UVunFPFVRY 15:30:17, 2015-05-26
- Hey @getm3at! Send me an invite to your awesome #git app for web developers NOW! 17:20:53, 2015-05-26
- C|M|LAW and Lake Erie College to Offer Joint Bachelor’s/Law Degree http://t.co/2SUqhdYKbT 18:00:09, 2015-05-26
- Slack | http://t.co/oLnjHNBqOh http://t.co/RQN6skoxaA 18:04:49, 2015-05-26
- Slack API: Community Built Integrations | Slack http://t.co/qfif5eGxSW 18:07:05, 2015-05-26
Create a Google Maps alternative with PHP and MySQL using the Leaflet library – PHP Classes blog – PHP Classes
Create a Google Maps alternative with PHP and MySQL using the Leaflet library – PHP Classes blog – PHP Classes http://www.phpclasses.org/blog/post/284-Create-a-Google-Maps-alternative-with-PHP-and-MySQL-using-the-Leaflet-library.html
Slack API: Community Built Integrations | Slack
Slack API: Community Built Integrations | Slack https://api.slack.com/community
Slack | Drupal.org
Slack brings all your communication together in one place. It’s real-time messaging, archiving and search for modern teams, and it has cool system integrations features. This module allows you to send messages from Drupal website to Slack. It has Rules module integration. Also you can use our module API in your modules.
Source: Slack | Drupal.org
My Twitter Digest for 05/25/2015
- RT @BetaList: Meat!: Git for web developers http://t.co/imbouGD2bq http://t.co/JcHL1VU2F4 10:41:43, 2015-05-25
- My Twitter Digest for 05/24/2015 http://t.co/SI8EyGPXXC 15:30:12, 2015-05-25
- scripting / sendToSlack.js – a small node.js app that posts to Slack. http://t.co/LLN1JWNxx8 21:54:23, 2015-05-25
18F — Tocking time
18F — Tocking time https://18f.gsa.gov/2015/05/21/TockingTime/
Pushing links to Slack with Radio3
Pushing links to Slack with Radio3 http://radio3.smallpict.com/2015/05/25/pushLinksToSlack.html
Open hardware guru answers: Arduino or Raspberry Pi? | Opensource.com
Open hardware guru answers: Arduino or Raspberry Pi? | Opensource.com http://opensource.com/life/15/5/should-i-get-arduino-or-raspberry-pi
scripting / sendToSlack.js – a small node.js app that posts to Slack.
A tiny JavaScript app that sends a message to your default Slack channel. Can be customized with a name, icon, emoji or sent to a different channel. Runs in Node.js.
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
var request = require ("request"); | |
var urlWebHook = "https://hooks.slack.com/services/abcdef"; //the URL you get on your "incoming web hooks" page. | |
function sendToSlack (s, theUsername, theIconUrl, theIconEmoji, theChannel) { | |
var payload = { | |
text: s | |
}; | |
if (theUsername !== undefined) { | |
payload.username = theUsername; | |
} | |
if (theIconUrl !== undefined) { | |
payload.icon_url = theIconUrl; | |
} | |
if (theIconEmoji !== undefined) { | |
payload.icon_emoji = theIconEmoji; | |
} | |
if (theChannel !== undefined) { | |
payload.channel = theChannel; | |
} | |
var theRequest = { | |
url: urlWebHook, | |
method: "POST", | |
json: payload | |
}; | |
request (theRequest, function (error, response, body) { | |
if (!error && (response.statusCode == 200)) { | |
console.log ("sendToSlack: " + s); | |
} | |
else { | |
console.log ("sendToSlack: error, code == " + response.statusCode + ", " + response.body + ".\n"); | |
} | |
}); | |
} | |
sendToSlack ("Hello World"); |