This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text.RegularExpressions; | |
public class Program | |
{ | |
public void Main() | |
{ | |
string[] guids = { | |
"0C885DD3-7DD9-484B-9B20-3E6552BCA144", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Photoshop Script to Create iPhone Icons from iTunesArtwork // // WARNING!!! In the rare case that there are name collisions, this script will // overwrite (delete perminently) files in the same folder in which the selected // iTunesArtwork file is located. Therefore, to be safe, before running the // script, it's best to make sure the selected iTuensArtwork file is the only // file in its containing folder. // // Copyright (c) 2010 Matt Di Pasquale // Added tweaks Copyright (c) 2012 by Josh Jones http://www.appsbynight.com // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Photoshop Script to Create Android Icons from iTunesArtwork | |
// | |
// WARNING!!! In the rare case that there are name collisions, this script will | |
// overwrite (delete perminently) files in the same folder in which the selected | |
// iTunesArtwork file is located. Therefore, to be safe, before running the | |
// script, it's best to make sure the selected iTuensArtwork file is the only | |
// file in its containing folder. | |
// | |
// Copyright (c) 2010 Matt Di Pasquale | |
// Added tweaks Copyright (c) 2012 by Josh Jones http://www.appsbynight.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define A3 110 | |
#define B3 123 | |
#define C3 131 | |
#define D3 147 | |
#define E3 165 | |
#define F3 175 | |
#define FS3 185 | |
#define G3 392 | |
#define A4 220 | |
#define B4 247 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void FinalCountDown(void) | |
{ | |
int v = 100; | |
int duration = 125; | |
Beep(v, CS5, duration, 10); | |
Beep(v, B4, duration, 10); | |
Beep(v, CS5, duration*4, 10); | |
Beep(v, FS3, duration*5, duration*5); | |
Beep(v, D5, duration, 10); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void Smoke() | |
{ | |
int v = 50; | |
int duration = 500; | |
Beep(v, 2940, duration, 10); | |
Beep(v, 3490, duration, 10); | |
Beep(v, 3920, duration * 1.5, 150); | |
Beep(v, 2940, duration, 10); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Get the list of connected video cameras | |
DsDevice[] devs = DsDevice.GetDevicesOfCat(FilterCategory.VideoInputDevice); | |
// Filter that list down to the one with hyper-aggressive focus | |
var dev = devs.Where(d => d.Name.Equals("Microsoft® LifeCam HD-5000")).FirstOrDefault(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (new FilterGraph() is IFilterGraph2 graphBuilder) | |
{ | |
// Create a video capture filter for the device | |
graphBuilder.AddSourceFilterForMoniker(dev.Mon, null, dev.Name, out IBaseFilter capFilter); | |
// Cast that filter to IAMCameraControl from the DirectShowLib | |
IAMCameraControl _camera = capFilter as IAMCameraControl; | |
// Get the current focus settings from the webcam | |
_camera.Get(CameraControlProperty.Focus, out int v, out CameraControlFlags f); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace Os.Properties | |
{ | |
// Get access to the hidden SDK class SystemProperties. The SystemProperties | |
// class provides access to the System Properties store. This store contains | |
// a list of key-value pairs | |
// See https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/os/SystemProperties.java | |
public static class SysProp | |
{ |
OlderNewer