Skip to content

Instantly share code, notes, and snippets.

View deadmann's full-sized avatar

Hassan Faghihi deadmann

View GitHub Profile
@deadmann
deadmann / google-recaptcha-bypass.txt
Created September 26, 2020 11:40 — forked from harddy/google-recaptcha-bypass.txt
Bypass Google Recaptcha for development purposes
With the following test keys, you will always get No CAPTCHA and all verification requests will pass.
Site key: 6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI
Secret key: 6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe
@deadmann
deadmann / resource.js
Last active April 4, 2016 06:09 — forked from vladikoff/resource.js
Angular $resource and transformResponse
angular.module('itemServices', ['ngResource'])
.factory('Item', ['$resource',
function ($resource) {
return $resource('items/:id',
{id: '@id'},
{
query: {
isArray: true,
method: 'GET',
params: {},
using System;
using NHibernate;
using NHibernate.Cfg;
namespace HassanFaghihi.StatesInstitution.BusinessTier.Util.Hibernate
{
public class HibernateUtil
{
private HibernateUtil(){}