Skip to content

Instantly share code, notes, and snippets.

View franciscovargas's full-sized avatar

Francisco Vargas franciscovargas

View GitHub Profile
@franciscovargas
franciscovargas / simple_orc_jit.cc
Created May 1, 2020 22:30
modifying tf compiler module
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
@franciscovargas
franciscovargas / simple_orc_jit.cc
Created May 1, 2020 22:30
modifying tf compiler module
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
@franciscovargas
franciscovargas / simple_orc_jit.cc
Created May 1, 2020 22:30
modifying tf compiler module
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
@franciscovargas
franciscovargas / simple_orc_jit.cc
Created May 1, 2020 22:30
modifying tf compiler module
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
@franciscovargas
franciscovargas / tinder-api-documentation.md
Created November 18, 2015 14:39 — forked from rtt/tinder-api-documentation.md
Tinder API Documentation

Tinder API documentation

http://rsty.org/

I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)

Note: this was written in April/May 2014 and the API may have changed since

API Details

@franciscovargas
franciscovargas / gist:48263886c3e0fa21e7f3
Created November 18, 2015 14:39 — forked from rtt/gist:5a2e0cfa638c938cca59
example python tinderbot
# encoding: utf8 1,1 Top# encoding: utf8
import argparse
from datetime import datetime
import json
from random import randint
import requests
import sys
from time import sleep