Skip to content

Instantly share code, notes, and snippets.

Windows Embedded CE 6.0 Advanced Memory Management

Douglas Boling

February 2007

Summary

This article covers how the new version of Windows Embedded CE handles memory, how it is architected, and what impacts these changes will have on applications.

Important

@evanslify
evanslify / s3_multipart_upload.py
Last active August 22, 2018 16:55 — forked from teasherm/s3_multipart_upload.py
boto3 S3 Multipart Upload
import argparse
import os
import boto3
from botocore.exceptions import ClientError
class S3MultipartUpload(object):
# AWS throws EntityTooSmall error for parts smaller than 5 MB
PART_MINIMUM = int(5e6)
@evanslify
evanslify / s3_multipart_upload.py
Created August 22, 2018 08:15 — forked from fabiant7t/s3_multipart_upload.py
Parallel S3 multipart upload with retries
import logging
import math
import mimetypes
from multiprocessing import Pool
import os
from boto.s3.connection import S3Connection
from filechunkio import FileChunkIO
@evanslify
evanslify / iOS, The Future Of macOS, Freedom, Security And Privacy In An Increasingly Hostile Global Environment.md
Created April 8, 2018 06:23
iOS, The Future Of macOS, Freedom, Security And Privacy In An Increasingly Hostile Global Environment

iOS, The Future Of macOS, Freedom, Security And Privacy In An Increasingly Hostile Global Environment

This post by a security researcher who prefers to remain anonymous will elucidate concerns about certain problematic decisions Apple has made and caution about future decisions made in the name of “security” while potentially hiding questionable motives. The content of this article represents only the opinion of the researcher. The researcher apologises if any content is seen to be inaccurate, and is open to comments or questions through PGP-encrypted mail.



TL;DR

@evanslify
evanslify / bash_prompt.sh
Created October 19, 2016 07:26 — forked from blaze33/bash_prompt.sh
Set color bash prompt according to active virtualenv, git branch, mercurial branch and return status of last command. I won't maintain this fork anymore as I reused this script here: https://github.com/blaze33/effings
#!/bin/bash
#
# DESCRIPTION:
#
# Set the bash prompt according to:
# * the active virtualenv
# * the branch/status of the current git repository
# * the branch/status of the current mercurial repository
# * the return value of the previous command
#