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/python3 | |
from os import walk | |
from os import getcwd | |
from os.path import isfile | |
from os.path import splitext | |
from os import rename | |
import zipfile | |
import re |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include "beer.h" | |
static int g_nNumberOfBeers=0; /* Made static so it only can be accessed here */ | |
/* g_ is for "global" */ | |
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
""" | |
yahoocurrency.py | |
A plugin that uses Yahoos YQL API to get exchange rates for currencies. | |
Created By: | |
- Dumle29 <https://github.com/Dumle29> | |
- Fixed by Foxlet <https://furcode.co> | |
Special Thanks: | |
- https://developer.yahoo.com/yql/guide/running-chapt.html | |
- Luke Rogers <https://github.com/lukeroge> For the cryptocurrency plugin that this is based on | |
License: |
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
# Robot module configurations : general handling of movement G-codes and slicing into moves | |
arm_solution linear_delta # delta selection | |
arm_length 500.00 # this is the length of an arm from hinge to hinge | |
arm_radius 257.7666 # this is the horiontal distance from hinge to hinge when the effector is centered | |
default_feed_rate 4000 # Default rate ( mm/minute ) for G1/G2/G3 moves | |
default_seek_rate 4000 # Default rate ( mm/minute ) for G0 moves | |
mm_per_arc_segment 0.0 # Fixed length for line segments that divide arcs 0 to disable | |
mm_max_arc_error 0.01 # The maximum error for line segments that divide arcs 0 to disable |
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
byte bar1[8] = { | |
0b10000, | |
0b10000, | |
0b10000, | |
0b10000, | |
0b10000, | |
0b10000, | |
0b10000, | |
0b10000 | |
}; |
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 | |
function minutesSplitter($minutes) | |
{ | |
$daySingular = 'day'; | |
$dayPlural = 'days'; | |
$hourSingular = 'hour'; //Allows you to change the word used for the singularium of hour. | |
$hourPlural = 'hours'; //Allows you to change the word used for the plural of hour. | |
$minutePlural = 'minutes'; //Allows you to change the word used for the singularium of minute. |
NewerOlder