Skip to content

Instantly share code, notes, and snippets.

@ngxson
ngxson / FAQ.md
Last active March 24, 2025 07:02
convert ARM NEON to WASM SIMD prompt

Why did you do this?

Relax, I only have one Sunday to work on idea, literally my weekend project. So I tried Deepseek to see if it can help. Surprisingly, it works and it saves me another weekend...

What is your setup?

Just chat.deepseek.com (cost = free) with prompts adapted from this gist.

Does it work in one-shot or I have to prompt it multiple times?

@hashmil
hashmil / mj-v5-gpt.txt
Last active February 1, 2024 18:06
Midjourney v5 Prompt Generator
You are an expert AI image prompt generator. You can take basic words and figments of thoughts and make them into detailed ideas and descriptions for prompts. I will be copy pasting these prompts into an AI image generator (Midjourney). Please provide the prompts in a code box so I can copy and paste it.
Use the following examples I’ve written as the format:
Example 1:
street style photo of an elderly french woman with deep wrinkles and a warm smile, walking down the streets of soho, wearing a white gucci blazer made of cotton & black eyeglasses, natural morning lighting, shot on Agfa Vista 200, 4k --ar 16:9 --stylize 1000
Example 2:
french woman w/ deep wrinkles & a warm smile, sitting in a charming soho cafe filled w/ plants, looking out the window, wearing a bright pastel linen blazer & floral silk blouse, natural light shining through the window & reflecting off her eyeglass, golden hour, shot on Kodak Portra 400 --ar 3:4 --stylize 1000
# Fetches data from https://www.energidataservice.dk/tso-electricity/elspotprices
# API documentation http://docs.ckan.org/en/latest/api/index.html#making-an-api-request
from datetime import datetime, timedelta
import time
import requests
from influxdb import InfluxDBClient
import paho.mqtt.client as mqtt
@david-bc
david-bc / hmac.js
Created September 7, 2017 16:31
Postman Pro Blog Snippets
function get_path() {
var resolvedUrl = request.url.replace(/{{(\w*)}}/g,function(str,key) {return getFromEnv(key)});
return /.+?\:\/\/.+?(\/.+?)(?:# \? $)/.exec(resolvedUrl)[1]
}
function auth_string(version, lookup, signature) {
return // a secret formula
}
function getFromEnv(key) {
return environment[key] ? environment[key] : postman.getGlobalVariable(key);
}
@EdOverflow
EdOverflow / github_bugbountyhunting.md
Last active April 4, 2025 15:27
My tips for finding security issues in GitHub projects.

GitHub for Bug Bounty Hunters

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.

Mass Cloning

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
@yossorion
yossorion / what-i-wish-id-known-about-equity-before-joining-a-unicorn.md
Last active April 2, 2025 01:50
What I Wish I'd Known About Equity Before Joining A Unicorn

What I Wish I'd Known About Equity Before Joining A Unicorn

Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.

This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would

@hesselberg
hesselberg / _getchildcategory.html
Last active January 16, 2017 22:41
Shoporama recursive categories
<button>›</button>
<ul>
<{foreach from=$childcategories item="childcategory"}>
<{if $childcategory->getInMenu()}>
<li>
<a href="<{$childcategory->getUrl()|escape}>"><{$childcategory->getName()|escape}></a>
<{if $childcategory->getChildren()}>
<{include file="_getchildcategory.html" childcategories=$childcategory->getChildren()}>
<{/if}>
</li>

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

anonymous
anonymous / GAME_MASTER_v0_1.protobuf
Created July 16, 2016 16:31
Pokemon Go decoded GAME_MASTER protobuf file v0.1
Result: 1
Items {
TemplateId: "BADGE_BATTLE_ATTACK_WON"
Badge {
BadgeType: BADGE_BATTLE_ATTACK_WON
BadgeRanks: 4
Targets: "\nd\350\007"
}
}
Items {
@BeattieM
BeattieM / API Contract Example Spec.md
Last active March 25, 2025 02:12
An example of an API contract between the server and front-end devices

#Users

  • User object
{
  id: integer
  username: string
  email: string
  created_at: datetime(iso 8601)
  updated_at: datetime(iso 8601)
}