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
| .DEFAULT_GOAL := send_app | |
| PORT=/dev/ttyS4 | |
| PYBOARD=tools/pyboard.py | |
| PYTHON=python3 | |
| send_app: | |
| $(PYTHON) $(PYBOARD) -d $(PORT) -f cp badge/*.py : |
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
| # Convert image to bytes | |
| #!/usr/bin/env python | |
| import sys | |
| import os | |
| def main(): | |
| if len(sys.argv) != 2: | |
| usage() | |
| return 2 |
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
| require "keybow" | |
| -- MACRO controls for darkroom Twitch. | |
| -- SHIFT 0 (RED) | |
| -- Middle Button : You awake... | |
| -- Right Button : Because it's dark .. | |
| -- SHIFT 1 (GREEN) | |
| -- Middle Button : You go in a direction... |
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
| package main | |
| import ( | |
| "time" | |
| "machine" | |
| "image/color" | |
| "tinygo.org/x/drivers/microbitmatrix" | |
| "tinygo.org/x/drivers/mma8653" | |
| ) |
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
| "vim.normalModeKeyBindings": [ | |
| { | |
| "before": ["<leader>", "c", "c"], | |
| "commands": [ | |
| "editor.action.addCommentLine" | |
| ] | |
| }, | |
| { | |
| "before": ["<leader>", "c", "u"], |
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
| require 'rexml/document' | |
| edmx = File.read(ARGV.first) | |
| doc = REXML::Document.new(edmx) | |
| mapped = [] | |
| constrained = [] | |
| doc.elements.each('edmx:Edmx/edmx:Runtime/edmx:ConceptualModels/Schema/Association') do |ele| |
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
| public void GoogleGeoCode(string address, out double lat, out double lon) | |
| { | |
| string url = "http://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=" + address; | |
| var req = (HttpWebRequest)WebRequest.Create(url); | |
| var reader = new StreamReader(req.GetResponse().GetResponseStream()); | |
| var body = reader.ReadToEnd(); | |
| lat = double.Parse(Regex.Match(body, @"""lat\"" : ([\d\.]+)").Groups[1].Value); |
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
| echo "====== REQUEST HEADERS =====" . PHP_EOL; | |
| var_dump($client->__getLastRequestHeaders()); | |
| echo "========= REQUEST ==========" . PHP_EOL; | |
| var_dump($client->__getLastRequest()); | |
| echo "========= RESPONSE =========" . PHP_EOL; | |
| var_dump($response); |
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
| C:\Users\kian>tracert www.twitter.com | |
| Tracing route to twitter.com [199.59.148.10] | |
| over a maximum of 30 hops: | |
| 1 <1 ms <1 ms <1 ms 172.16.155.2 | |
| 2 * * * Request timed out. | |
| 3 * * * Request timed out. | |
| 4 * ^C |
NewerOlder