This file contains 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
Sub FiguresDeleteAll() | |
Dim fig As InlineShape | |
For Each fig In ActiveDocument.InlineShapes | |
fig.Delete | |
Next fig | |
End Sub |
This file contains 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
// ==UserScript== | |
// @name Inline Mp3 Player (Slim) | |
// @description Add to every link to an mp3 file on page a slim inline player with Play, Pause & Volume controllers. | |
// @namespace http://musicplayer.sourceforge.net/greasemonkey | |
// @include * | |
//by Fabricio Zuardi (http://www.hideout.com.br ) | |
// ==/UserScript== | |
(function() { |
This file contains 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
// ==UserScript== | |
// @name Body Changer | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3 | |
// @description try to take over the world! | |
// @author Spencer Smith | |
// @match https://gist.github.com/spencerlarry/ | |
// @include https://gist.github.com/* | |
// @grant none | |
// ==/UserScript== |
This file contains 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
$json = file_get_contents('./api/research.json'); | |
$research = json_decode($json, true); | |
$progProjects = array(); | |
$devProjects = array(); | |
$comProjects = array(); | |
foreach ($research as $project) | |
{ | |
if($project[status] == 'In Progress') | |
{ |
Excel
Count number of unique values in array.
OlderNewer