Go to the egghead website, i.e. Building a React.js App
run
$.each($('h4 a'), function(index, video){
console.log(video.href);
});
Go to the egghead website, i.e. Building a React.js App
run
$.each($('h4 a'), function(index, video){
console.log(video.href);
});
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
package main | |
import ( | |
"fmt" | |
"os" | |
"os/exec" | |
"syscall" | |
) | |
func main() { |
// make calls against SPO using a user access token passed from ADAL.js | |
// credit to Kirk Evans: https://blogs.msdn.microsoft.com/kaevans/2014/04/15/calling-o365-apis-from-your-web-api-on-behalf-of-a-user/ | |
using System; | |
using System.Web.Http; | |
using System.Configuration; | |
using System.Threading.Tasks; | |
using Microsoft.IdentityModel.Clients.ActiveDirectory; | |
using System.Globalization; | |
using System.Net.Http; |
<?xml version="1.0"?> | |
<!DOCTYPE tsung SYSTEM "/usr/share/tsung/tsung-1.0.dtd"> | |
<tsung loglevel="notice" version="1.0"> | |
<!-- Client side setup --> | |
<clients> | |
<client host="localhost" use_controller_vm="true"/> | |
</clients> | |
<!-- Server side setup --> |
#r "Microsoft.SharePoint.Client.Runtime.dll" | |
#r "Microsoft.SharePoint.Client.dll" | |
using System; | |
using System.Security; | |
using System.Configuration; | |
using Microsoft.SharePoint.Client; | |
public static void Run(TimerInfo myTimer, TraceWriter log) | |
{ |