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
// ==UserScript== | |
// @name Nanime Grab | |
// @namespace http://devstudio.web.id | |
// @copyright 2019+, DevStudio | |
// @version 1.0 | |
// @description Grab Server Mirror/Player From Nanime | |
// @author Alvin Faiz | |
// @include https://nanime.in/episode/* | |
// @include https://nanime.in/movie/* | |
// ==/UserScript== |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
.jconfirm.jconfirm-modern.jconfirm-open{ | |
display:none; | |
} |
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 listFilesInFolder() { | |
var folder = DocsList.getFolder("Maudesley Debates"); | |
var contents = folder.getFiles(); | |
var file; | |
var data; | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
sheet.clear(); | |
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
// TODO: Set folder ID | |
var folderId = 'My folder ID'; | |
// Main function 1: List all folders, & write into the current sheet. | |
function listFolers(){ | |
getFolderTree(folderId, 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
curl --user-agent "Googlebot/2.1 (+http://www.google.com/bot.html)" -v $@ | |
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 format_filesize( $bytes, $decimals = 2 ) | |
{ | |
$units = array( 'B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB' ); | |
for ( $i = 0; ( $bytes / 1024) > 0.9; $i++, $bytes /= 1024 ) {} // @codingStandardsIgnoreLine | |
return sprintf( "%1.{$decimals}f %s", round( $bytes, $decimals ), $units[ $i ] ); | |
} |
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 _0x3297=['ceil','random','getTimezoneOffset','//www.madcpms.com/watch.','?key=','&kw=','stringify','&custom=','join','&dev=','isEmulate','&tz=','runTests','&res=','getResults','true','frameElement','HEAD','getElementsByTagName','childNodes','insertBefore','string','container','atContainer-','&uuid=','DONE','<!--video_banner=1;-->','var\x20dfc221c35e','match','replace','script','about:blank','innerHTML','\x22]\x20=\x20\x22','contentWindow','document','complete','margin','onerror','send','error','Invalid\x20invocation\x20parameters\x20passed','atAsyncContainers','atOptions','atAsyncOptions','splice','//www.madcpms.com/','.js','head','top','title','textContent','innerText','split','','false','','false','push','forEach','result','hasOwnProperty','test','userAgent','vendor','opera','substr','some','MSInputMethodContext','[object\x20OperaMini]','prototype','toString','call','operamini','LieDetector','createElement','div','appendChild','style','styleSheet','cssText','createTextNode','fake','background','overflow |
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
// 1. Open Popcat.click | |
// 2. Open F12 (Console, Tab Network) | |
// 3. Check request seperti ini | |
// pop?pop_count=800&captcha_token=03AGdBq27QtkikSZjqoUI0bwXeQYgA2JSCwDih04xKWVkT4ZTTky9GpW0lypn-MlTEbYYT---------------------- | |
// | |
// Buka aja di tab baru | |
// 4. isi variable request_url dengan link request di atas | |
var request_url = "isi Disini"; | |
setInterval(function() { |
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 React,{useState} from 'react' | |
import { ACTIONS } from './App'; | |
function ListOfTodo({todo, dispatch}) { | |
const [isEdit, setIsEdit] = useState(false); | |
const [newTask, setNewTask] = useState(todo.name); | |
const handleSave=()=>{ | |
dispatch({type: ACTIONS.EDIT_TODO, payload: {id: todo.id, name: newTask}}); | |
setIsEdit(false); |