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
#include "keymap_common.h" | |
#include "led.h" | |
#include "action_layer.h" | |
/* | |
* HHKB Layout | |
*/ | |
const uint8_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |
/* 0: Default layer | |
* ,-----------------------------------------------------------. |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
function xnrequest(retext,begin,end,url,pids){ | |
for(var i=0;i<pids.length;i++){ | |
var pid = pids[i].getAttribute("id").replace(retext,""); | |
var data=begin+pid+end; | |
new XN.NET.xmlhttp({url:url + "?" + pid,data:data,onSuccess:function(){}, | |
onError:function(){ | |
alert("删除错误"); | |
}});}} | |
var pids = document.getElementsByClassName("user"); | |
var url = "http://page.renren.com/exitfans" |
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
var sids = document.getElementById("my-status-list").getElementsByTagName("li"); | |
var url = "http://status.renren.com/doing/deleteDoing.do" | |
for(var i=1;i<sids.length;i++){ | |
var sid = sids[i].getAttribute("status-id"); | |
var formData = new FormData(); | |
formData.append('id',""+sid); | |
formData.append('requestToken', ""+nx.user.requestToken); | |
formData.append('_rtk', ""+nx.user._rtk); | |
var xhr = new XMLHttpRequest(); | |
xhr.open("POST",url, true); |