https://webkit.org/blog/10218/full-third-party-cookie-blocking-and-more/
I've created to test it, but I'm confused by the result. https://animated-caribou.glitch.me/
- Chrome: only display the cookie value with SameSite=None in iframe.
UTF-8 encoded sample plain-text file | |
‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ | |
Markus Kuhn [ˈmaʳkʊs kuːn] <http://www.cl.cam.ac.uk/~mgk25/> — 2002-07-25 CC BY | |
The ASCII compatible UTF-8 encoding used in this plain-text file | |
is defined in Unicode, ISO 10646-1, and RFC 2279. | |
/* ==UserStyle== | |
@name Fix New GitHub Design Issues | |
@namespace iamrifki | |
@version 1.0.1 | |
@description Fixes several things I dislike about the new GitHub redesign | |
@author Dania Rifki <[email protected]> | |
==/UserStyle== */ | |
@-moz-document url-prefix("https://github.com/"), url-prefix("https://gist.github.com/") { | |
/* Add separators back to the file list. */ |
; https://web.archive.org/web/20190701203222/https://www.pcengines.ch/tp3.htm | |
; The disassembler was applied to a copy of TP 3.01A downloaded from WinWorld. | |
; I postprocessed the disassembly with a script to clean up spacing and column alignment. | |
; *** TURBO PASCAL version 3.01 A source code | |
; *** | |
; *** commented by Pascal Dornier | |
; *** all rights reserved | |
; "*** | |
cseg $100 ; "COM file... |
https://webkit.org/blog/10218/full-third-party-cookie-blocking-and-more/
I've created to test it, but I'm confused by the result. https://animated-caribou.glitch.me/
// On the basis: https://forum.unity.com/threads/export-obj-while-runtime.252262/ | |
// How to use: | |
// Put file to Assets/Editor folder | |
// then select GameObject -> Export selected objects | |
// in Unity's main panel. | |
using UnityEngine; | |
using UnityEditor; | |
using System.Collections; | |
using System.Collections.Generic; |
// Copyright 2015 The Freetype-Go Authors. All rights reserved. | |
// Use of this source code is governed by your choice of either the | |
// FreeType License or the GNU General Public License version 2 (or | |
// any later version), both of which can be found in the LICENSE file. | |
// +build example | |
// | |
// This build tag means that "go install github.com/golang/freetype/..." | |
// doesn't install this example program. Use "go run main.go" to run it or "go | |
// install -tags=example" to install it. |
Source: https://www.howtoforge.com/tutorial/passwordless-encryption-of-linux-root-partition/
The process of entering the passphrase at boot time will now be automated using an USB memory stick. Instead of using a passphrase , the secret key on the USB will decrypt the encrypted volumes. Connect an USB stick to the VM and locate it using the dmesg
command. It is detected as /dev/sdb
in my VM.
The secret key of 8192 random byte is extracted from the usb stick using the dd command.
dd if=/dev/sdb of=/root/secret.key bs=512 skip=4 count=16
-- Implements a basic binding for popen that allows non-blocking reads | |
-- returned "file" table only supports :read(with an optional size argument, no mode etc.) and :close | |
local function non_blocking_popen(cmd, read_buffer_size) | |
local ffi = require("ffi") | |
-- C functions that we need | |
ffi.cdef([[ | |
void* popen(const char* cmd, const char* mode); | |
int pclose(void* stream); | |
int fileno(void* stream); |
function download(filenamePtr, dataPtr, size) { | |
const a = document.createElement('a') | |
a.style = 'display:none' | |
document.body.appendChild(a) | |
const view = new Uint8Array(Module.HEAPU8.buffer, dataPtr, size) | |
const blob = new Blob([view], { | |
type: 'octet/stream' | |
}) | |
const url = window.URL.createObjectURL(blob) | |
a.href = url |
---------------------------------------------------------------------- | |
-- Generate Normal Map | |
-- | |
-- It works only for RGB color mode. | |
---------------------------------------------------------------------- | |
if app.apiVersion < 1 then | |
return app.alert("This script requires Aseprite v1.2.10-beta3") | |
end |