⌘T | go to file |
⌘⌃P | go to project |
⌘R | go to methods |
⌃G | go to line |
⌘KB | toggle side bar |
⌘⇧P | command prompt |
GitHub repositories can disclose all sorts of potentially valuable information for bug bounty hunters. The targets do not always have to be open source for there to be issues. Organization members and their open source projects can sometimes accidentally expose information that could be used against the target company. in this article I will give you a brief overview that should help you get started targeting GitHub repositories for vulnerabilities and for general recon.
You can just do your research on github.com, but I would suggest cloning all the target's repositories so that you can run your tests locally. I would highly recommend @mazen160's GitHubCloner. Just run the script and you should be good to go.
$ python githubcloner.py --org organization -o /tmp/output
Just a little experiment. When hovering over the article with your mouse, some keywords from the text should be easy readable while the rest should be darker.
A Pen by Bas Groothedde on CodePen.
Climate Change: How Can AI Help? climatechange.ai
Friday, June 14th 2019 - Times relative to Pacific Time (PT or GMT-8)
https://slideslive.com/38917142/climate-change-how-can-ai-help
- 8:30 - 8:45 - Welcome and Opening Remarks
- 8:45 - 9:20 - John Platt (Google AI): AI for Climate Change: the Context (Keynote talk)
- 9:20 - 9:45 - Jack Kelly (Open Climate Fix): Why it’s hard to mitigate climate change, and how to do better (Invited talk)
class Ralamb(Optimizer): | |
def __init__(self, params, lr=1e-3, betas=(0.9, 0.999), eps=1e-8, weight_decay=0): | |
defaults = dict(lr=lr, betas=betas, eps=eps, weight_decay=weight_decay) | |
self.buffer = [[None, None, None] for ind in range(10)] | |
super(Ralamb, self).__init__(params, defaults) | |
def __setstate__(self, state): | |
super(Ralamb, self).__setstate__(state) |
/* | |
Author:: @CatoMinor3 | |
Version:: 3.0 | |
Date:: Sept.rm-italicsber 22nd, 2020 | |
Changes log: | |
- 3.0 - code adapted for the new classes in Roam | |
- 2.1 - code adaptated for future support of colour shades (different opacity), | |
download the additonal CSS here: https://gist.github.com/ciceronianus/5d7b224658b7a9832a6249a13091aa9d | |
Support: |
So you want to write a sync system for a web app with offline and realtime support? Good luck. You might find the following resources useful.
-
Database in a browser, a spec (Stepan Parunashvili)
What problem are we trying to solve with a sync system?
-
The web of tomorrow (Nikita Prokopov)
from pathlib import Path | |
import openai | |
import tiktoken | |
from langchain.text_splitter import RecursiveCharacterTextSplitter | |
import yaml | |
# program that reads MD files, calls OpenAI API with GPT 4 to generate flashcards for a knowledge base ANKI deck | |
config = yaml.safe_load(open("ankify.yml")) | |
directory = Path(config["base_dir"]) | |
encoding = tiktoken.encoding_for_model("gpt-4") |
<? | |
// set price | |
$newPricePlanId='price_1NsRt5Inbsdfsfddsf'; | |
$newPriceMonthly=39; | |
$i=1; | |
foreach($users as $user) { | |
if(!$user['stripe_customer_id']) { | |
echo "No Stripe customer id, maybe update in db?"; |