I hereby claim:
- I am csarigoz on github.
- I am cagrisarigoz (https://keybase.io/cagrisarigoz) on keybase.
- I have a public key ASA8skjyK_eS6Pph-jSPBAyN2SbX1S0PJrBfyzXU_Qd1KAo
To claim this, I am signing this object:
| import requests | |
| import json | |
| # URL of the webhook | |
| url = 'ENTER_THE_WEBHOOK_URL_HERE' | |
| # Parameters to be sent in the POST request | |
| data = { | |
| 'email': '[email protected]', | |
| 'first_name': 'Cagri' |
I hereby claim:
To claim this, I am signing this object:
| <div class="video-container"> | |
| <iframe src="https://www.youtube.com/embed/TcNaihIowlo?cc_load_policy=3&modestbranding=1&rel=0&iv_load_policy=3" frameborder="0" allowfullscreen=""></iframe> | |
| </div> |
| // Add namespace for media:image element used below | |
| add_filter( 'rss2_ns', function(){ | |
| echo 'xmlns:media="http://search.yahoo.com/mrss/"'; | |
| }); | |
| // insert the image object into the RSS item | |
| add_action('rss2_item', function(){ | |
| global $post; | |
| if (has_post_thumbnail($post->ID)){ | |
| $thumbnail_ID = get_post_thumbnail_id($post->ID); |
| /** | |
| * Returns the URL of a hyperlinked cell, if it's entered with hyperlink command. | |
| * Supports ranges | |
| * @param {A1} reference Cell reference | |
| * @customfunction | |
| */ | |
| function linkURL(reference) { | |
| var sheet = SpreadsheetApp.getActiveSheet(); | |
| var formula = SpreadsheetApp.getActiveRange().getFormula(); | |
| var args = formula.match(/=\w+\((.*)\)/i); |
| =REGEXMATCH(TOP_PEOPLE,"cagri|cargri|cargi") |
| users = [{'username': 'alice', 'age': 23, 'play_time': 101}, | |
| {'username': 'bob', 'age': 31, 'play_time': 88}, | |
| {'username': 'ann', 'age': 25},] | |
| superplayers = [user for user in users if 'play_time' in user] | |
| print(superplayers) | |
| # resource: https://blog.finxter.com/how-to-filter-a-list-of-dictionaries-in-python/ |
| var key = "YOUR_API_KEY"; |
| #open gemius explorer | |
| tell application "Terminal" | |
| do script "/usr/local/bin/wine ~/.wine/drive_c/Program\\ Files/Gemius/gemiusExplorer/gemiusExplorer.exe" | |
| end tell |
| """A simple example of how to access the Google Analytics API.""" | |
| import argparse | |
| from apiclient.discovery import build | |
| from oauth2client.client import SignedJwtAssertionCredentials | |
| import httplib2 | |
| from oauth2client import client | |
| from oauth2client import file |