This content has moved. Go here for the latest version.
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
| <?php | |
| /** | |
| * WaveFileReader; a simple class to read/parse WAVE file | |
| * (c)2012 Rob Janssen / https://github.com/RobThree | |
| * | |
| * Based on https://ccrma.stanford.edu/courses/422/projects/WaveFormat/ | |
| * | |
| * USAGE: | |
| * | |
| * $wav = WaveFileReader::ReadFile('/path/to/test.wav'); |
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
| [Adblock Plus 2.0] | |
| ! Version: | |
| ! Title: RobIII's filters | |
| ! Last modified: 2025-04-11 | |
| ! Expires: 1 hours (update frequency) | |
| ! Homepage: https://robiii.me | |
| ! | |
| 9gag.com###overlay-container | |
| 9gag.com###sidebar | |
| 9gag.com##.badge-sticky-button |
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
| using BenchmarkDotNet.Attributes; | |
| using BenchmarkDotNet.Running; | |
| namespace IshaFatima; | |
| internal class Program | |
| { | |
| private static void Main(string[] args) | |
| { | |
| var summary = BenchmarkRunner.Run<RoleBenchmark>(); |
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
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'nokogiri' | |
| require 'open-uri' | |
| INDEX_PAGE = "https://clinic-duty.livejournal.com/12225.html" | |
| # Use URI.open for URLs | |
| (URI.open(INDEX_PAGE) { |f| Nokogiri::HTML(f) }/"table > tbody > tr > td > a").each do |a| |
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 | |
| #mail recipient | |
| RCPT=someone@gmail.com | |
| #args: $rcpt $subject $text | |
| sendnotification() { | |
| echo -e "$3" | mail -s "$2" -t $1 | |
| } | |
| echo -n "Checking version: " |
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
| using Microsoft.Win32.SafeHandles; | |
| using System; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Runtime.InteropServices; | |
| using System.Threading; | |
| namespace ConsoleEngine | |
| { |
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
| <?php | |
| $fileroot = './cache/'; // Where to store files | |
| $ttl = 3600; // Number of seconds to cache a file | |
| $fileext = '.gz'; // File extension | |
| $lists = [ // Known lists | |
| 'small' => 'https://small.oisd.nl/', | |
| 'big' => 'https://big.oisd.nl/', | |
| 'nsfw' => 'https://nsfw.oisd.nl/' | |
| ]; |
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
| using System; | |
| public class Program | |
| { | |
| public static void Main() | |
| { | |
| // Example: How many /30's can we fit in a /28? | |
| var sourcePrefixLength = 28; | |
| var destinationPrefixLength = 30; | |
NewerOlder