Skip to content

Instantly share code, notes, and snippets.

@ad8e
ad8e / glfw_ship.cpp
Last active May 21, 2024 03:10
instructions to use skia and glfw together. (download, installation, first program). as of Sept 2023, Windows is broken but this is still sadly the best starting resource for skia on Windows too.
/* Note: this Google copyright notice only applies to the original file, which has large sections copy-pasted here. my changes are under CC0 (public domain).
* Copyright 2015 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/*
The official instructions don't work well. These alternative instructions are intended to be the shortest path to get a minimal setup running.
includes_registered_domains domain
outlook.com 606741
google.com 403872
mcsv.net 135641
websitewelcome.com 132545
ovh.com 83291
mandrillapp.com 83021
mailchannels.net 78685
sendgrid.net 72738
bluehost.com 70342
domain_alexa_rank domain num_email_security_providers email_security_providers
- mqsadvisors.com 4 ZixMail,AppRiver,fusemail,Protonmail
- primo.com.au 4 Mimecast,Mcafee,Symantec,Proofpoint
- fera.co.uk 4 Symantec,Forcepoint,fusemail,Protonmail
110703.0 pivotal.io 4 Cisco Ironport,Mimecast,Symantec,Proofpoint
- premiercu.org 4 Mimecast,Cisco Ironport,Fortinet,Proofpoint
- pendletonplace.org 4 AppRiver,Mimecast,Mcafee,ZixMail
- mysolutions.biz 4 AppRiver,Reflexion,Can-It Pro,ZixMail
- tracintermodal.com 4 Mimecast,ZixMail,AppRiver,BAE Systems
220653.0 pallet-track.co.uk 4 the email laundry,hornetsecurity,ZixMail,AppRiver
@tilda
tilda / priconne_and_vpns.md
Last active May 21, 2024 03:06
defeating dmm's skill issue

How to play PriConne on PC without hassling with VPNs constantly

Sidenote: you will still need one, but by the end of the guide you should only need to deal with this process once per year, assuming nothing changes.

So, if you're like me you used ProtonVPN as a way to get around the most recent DMM block beginning in August of 2023.

Of course, you can't always have your cake & eat it too. So, what Proton did, some months later: no more server choices even with their already limited country selection for free users, and no more split tunneling either.

That's what most people think at least. Me, personally, I found a solution.

Breaking it down

@mganeko
mganeko / parse_webm.js
Last active May 21, 2024 03:06
Parse Binary of WebM file with Node.js
//
// This code parses binary format of WebM file.
// recognizes only some important TAGs
//
// Limitation:
// This programs reads all binary at once in memory (100MB).
// It is very bad imprementation, but it is still enough for some small WebM file.
//
// Usage:
// node parse_webm.js filename
// Build d8 using:
// a) Run once
// git checkout 6f98fbe86a0d11e6c902e2ee50f609db046daf71
// gclient sync
// gn gen ./out/x64.debug
// gn gen ./out/x64.release
//
// b)
// Debug Build:
// ninja -C ./out/x64.debug d8
@daviskirk
daviskirk / docker-compose.yml
Last active May 21, 2024 02:58
bug report for coverage using starlette and async/await sqlalchemy
version: "3.8"
services:
postgres:
restart: always
image: postgres:12-alpine
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
ports:
- "127.0.0.1:5432:5432"
@duonghuu
duonghuu / pdomiko03.md
Created May 21, 2024 02:57
Guide config pdo

Hướng dẫn

Config

file config

// libraries\config.php
$config = array(
    'arrayDomainSSL' => array(), // string: domain chạy ssl
    'database' => array(
 'url' => '/pdomiko03/', // khi up lên hosting thì để '/'
@stevemk14ebr
stevemk14ebr / guids
Created September 15, 2020 18:35
COM CLSID, IID's, other guids
This file has been truncated, but you can view the full file.
NAME:AACMFTEncoder VALUE:93af0c51-2275-45d2-a35b-f2ba21caed00
NAME:ACPI_PLD_CONTAINER_BUFFER_GUID VALUE:c02fa109-6a82-4188-9f66-b190ba62db49
NAME:ACPI_PLD_INTERFACE_CLASS_BUFFER_GUID VALUE:1facec76-96a8-4d9e-846e-3a6d687c32fc
NAME:ACPI_PLD_INTERFACE_INSTANCE_ANSI_BUFFER_GUID VALUE:1facea4b-da66-484c-ba5b-5127e05f95b2
NAME:ACPI_PLD_INTERFACE_INSTANCE_GUID_BUFFER_GUID VALUE:1face9db-2530-4248-8ee3-51053aef47c2
NAME:ACPI_PLD_INTERFACE_INSTANCE_UNICODE_BUFFER_GUID VALUE:1face3f6-1a60-4686-9833-ec8402d43b04
NAME:ACPI_PLD_JOINT_BUFFER_GUID VALUE:f01cfc40-3c75-4523-9e44-215cb154bda6
NAME:ACPI_PLD_SPATIAL_BUFFER_GUID VALUE:59af1a1f-aba4-4bb8-81ef-55938e9bc53a
NAME:ADDON_DISABLE_EVENT VALUE:09010002-0204-0002-0000-000000000080
@ihoneymon
ihoneymon / how-to-write-by-markdown.md
Last active May 21, 2024 02:56
마크다운(Markdown) 사용법

[공통] 마크다운 markdown 작성법

영어지만, 조금 더 상세하게 마크다운 사용법을 안내하고 있는
"Markdown Guide (https://www.markdownguide.org/)" 를 보시는 것을 추천합니다. ^^

아, 그리고 마크다운만으로 표현이 부족하다고 느끼신다면, HTML 태그를 활용하시는 것도 좋습니다.

1. 마크다운에 관하여