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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <?xml-stylesheet type="text/xsl" href="https://media.rss.com/style.xsl"?> | |
| <rss xmlns:podcast="https://podcastindex.org/namespace/1.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:psc="http://podlove.org/simple-chapters" xmlns:atom="http://www.w3.org/2005/Atom" xml:lang="en" version="2.0"> | |
| <channel> | |
| <title><![CDATA[Podcasting Innovation]]></title> | |
| <link>http://podcastinginnovation.com</link> | |
| <atom:link href="https://media.rss.com/podcasting-innovation/feed.xml" rel="self" type="application/rss+xml"/> | |
| <atom:link rel="hub" href="https://pubsubhubbub.appspot.com/"/> | |
| <description><![CDATA[<p>Welcome to "Podcasting Innovation" by RSS.com, the show where we dive deep into the creative advances in podcasting, making them accessible for you to experiment with and enjoy!</p>]]></description> | |
| <generator>RSS.com 2026.305.91805</generator> |
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
| <!doctype html> | |
| <html ⚡> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Embed Spreaker</title> | |
| <script async src="https://cdn.ampproject.org/v0.js"></script> | |
| <!-- Import the amp-iframe component in the header. --> | |
| <script async custom-element="amp-iframe" src="https://cdn.ampproject.org/v0/amp-iframe-0.1.js"></script> | |
| <link rel="canonical" href="https://amp.dev/documentation/examples/components/amp-iframe/index.html"> | |
| <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| <script>alert(process)</script> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |
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
| v8.9.3 |
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
| import BrowserWindow from "modules/common/lib/BrowserWindow"; | |
| const Clipboard = { | |
| copyToClipboard: (text) => { | |
| const browseWin = BrowserWindow.get(); | |
| const browserDoc = browseWin.document; | |
| // IE specific | |
| if (browseWin.clipboardData && browseWin.clipboardData.setData) { | |
| browseWin.clipboardData.setData("Text", text); |
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
| import Clipboard from "modules/common/lib/Clipboard"; | |
| import React from "react"; | |
| export class CopyToClipboard extends React.Component { | |
| constructor() { | |
| super(); | |
| this.timeout = null; | |
| this.state = { | |
| copying: 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
| import { | |
| installJasmineAjax, | |
| uninstallJasmineAjax, | |
| generateApiSuccessResponse | |
| } from "modules/common/lib/TestUtils"; | |
| import { episodeAdsFetchReducer } from "modules/episode/reducers/children/episodeAdsFetchReducer"; | |
| import { | |
| episodeAdsFetch | |
| } from "modules/episode/actions/episodeAdsFetchActions"; | |
| import { createStore, applyMiddleware } from "redux"; |
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
| import _get from "lodash/get"; | |
| import _merge from "lodash/merge"; | |
| import _isEqual from "lodash/isEqual"; | |
| const not = (fun) => (...args) => !fun(...args); | |
| const and = (fun1, fun2) => (...args) => fun1(...args) && fun2(...args); | |
| const isSaving = (savingStatePath) => (state) => { | |
| const savingState = _get(state, savingStatePath, false); | |
| return savingState && savingState.state === "SAVING"; |
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
| Verifying that +emanuelerampichini is my blockchain ID. https://onename.com/emanuelerampichini |
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 express = require("express"); | |
| var formidable = require("formidable"); | |
| var app = express(); | |
| app.post("/help/crashes", function (req, res) { | |
| var form = new formidable.IncomingForm(); | |
| form.uploadDir = "./dumps"; | |
| form.keepExtensions = true; | |
| form.parse(req, function(error, fields) { | |
| if(!error){ |
NewerOlder