Skip to content

Instantly share code, notes, and snippets.

@yilee
yilee / fcrs_balance.js
Created April 28, 2025 06:12
fcrs_balance.js
/**
* @supported 6F4F4E880CC1
* @description 修改 balance 为 999
*/
try {
let obj = JSON.parse($response.body);
if (obj?.data?.balance !== undefined) {
obj.data.balance = 999;
/**
* @supported 6F4F4E880CC1
* @description 修改 balance 为 999
*/
try {
let obj = JSON.parse($response.body);
if (obj?.data?.balance !== undefined) {
obj.data.balance = 999;
#!/usr/bin/python
#-*- coding: UTF-8 -*-
import urllib
import urllib2
import cookielib
#login
def crack_it(url,username,password):
cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
@yilee
yilee / gist:5019587
Created February 23, 2013 12:27
Xcode4 optimized .gitignore
# Exclude the build directory
build/*
# Exclude temp nibs and swap files
*~.nib
*.swp
# Exclude OS X folder attributes
.DS_Store