This file contains hidden or 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
| <html> | |
| <title> | |
| Articles | |
| </title> | |
| <body> | |
| <h1>Articles page</h1> | |
| <p><img src="images/images.jpg"/></p> | |
| </body> | |
| </html> |
This file contains hidden or 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
| #pragma once | |
| #include <cmath> | |
| #include <memory> | |
| #include <vector> | |
| #include <cassert> | |
| namespace sp { | |
| /** |
This file contains hidden or 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
| function Get-ScreenShot | |
| { | |
| [CmdletBinding()] | |
| param( | |
| [parameter(Position = 0, Mandatory = 0, ValueFromPipelinebyPropertyName = 1)] | |
| [ValidateNotNullOrEmpty()] | |
| [string]$OutPath = "$env:USERPROFILE\Documents\ScreenShot", | |
| #screenshot_[yyyyMMdd_HHmmss_ffff].png | |
| [parameter(Position = 1, Mandatory = 0, ValueFromPipelinebyPropertyName = 1)] |
This file contains hidden or 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
| import tensorflow as tf | |
| import numpy as np | |
| import input_data | |
| import Image | |
| from util import tile_raster_images | |
| def sample_prob(probs): | |
| return tf.nn.relu( | |
| tf.sign( |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| #Program to drive Sonic Pi 3 visualiser written in "processing" | |
| #by Robin Newman, September 2017 | |
| #see article at https://rbnrpi.wordpress.com | |
| #set up OSC address of processing sketch | |
| use_osc '127.0.0.1',5000 | |
| #select shapes to show | |
| osc "/viz/shapes","e" #"s" "e" "r" Star,Ellipse, Rectangle or combination | |
| sleep 0.1 | |
| live_loop :c do |
This file contains hidden or 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
| // | |
| // headphones-detect.c | |
| // Kyle Neideck, [email protected] | |
| // | |
| // Compile with: | |
| // clang -framework CoreAudio -framework CoreFoundation -o headphones-detect headphones-detect.c | |
| // | |
| // Runs a command when headphones are plugged in to or unplugged from the | |
| // built-in audio device. | |
| // |
This file contains hidden or 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
| #! /bin/bash | |
| # Simple Utility Script for allowing debug of hardened macOS apps. | |
| # This is useful mostly for plug-in developer that would like keep developing without turning SIP off. | |
| # Credit for idea goes to (McMartin): https://forum.juce.com/t/apple-gatekeeper-notarised-distributables/29952/57?u=ttg | |
| # Update 2022-03-10: Based on Fabian's feedback, add capability to inject DYLD for sanitizers. | |
| # | |
| # Please note: | |
| # - Modern Logic (on M1s) uses `AUHostingService` which resides within the system thus not patchable and REQUIRES to turn-off SIP. | |
| # - Some hosts uses separate plug-in scanning or sandboxing. | |
| # if that's the case, it's required to patch those (if needed) and attach debugger to them instead. |
This file contains hidden or 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
| #include <vector> | |
| #include <string> | |
| #include <cstdio> | |
| #include <cmath> | |
| // set to 1 to make LU factorization show pivots | |
| #define VERBOSE_LU 0 | |
| // gMin for diodes etc.. | |
| static const double gMin = 1e-12; |
OlderNewer