Links to playlists which play at codingradio.xyz.
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
/* | |
* Copyright (c) 2006 Hyperic, Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
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
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
// Likely to generate a warning. | |
unsigned long long limit63bit = 18446744073709551615; // 2^64 - 1 | |
// OK |
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
const ifsc = require('./IFSC') | |
const fs = require('fs') | |
const validate = require('./node/index').validate | |
const ifsc_size = 7 | |
let newIfsc = {} | |
function pad(n, width, z) { | |
z = z || '0' |
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
package main | |
import ( | |
"compress/gzip" | |
"fmt" | |
"net/http" | |
"time" | |
) | |
func main() { |
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
const fs = require('fs'); | |
const path = require('path'); | |
function scanDirectory(dirpath, allFiles) { | |
// nodejs runs single threaded, so is thread-safe. | |
// NO MUTEX. MISSION ACCOMPLISHED YAYY | |
if (dirpath.fullpath !== undefined) { | |
dirpath = dirpath.fullpath; |
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
const fs = require('fs'); | |
const path = require('path'); | |
const homedir = require('os').homedir; | |
function scanDirectory(dirpath, allFiles) { | |
// nodejs runs single threaded, so is thread-safe. | |
// NO MUTEX. MISSION ACCOMPLISHED YAYY |
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
/** | |
* Text-underline-animation | |
*/ | |
a { | |
font-size: 500%; | |
text-decoration: none; | |
background: linear-gradient(currentColor, currentColor) bottom / 0 .1em no-repeat; | |
transition: 1s background-size; | |
} |
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
""" | |
This script finds the total size of an ftp directory by recursively opening directories | |
@author: Albert Wang ([email protected]) | |
September 18, 2010 | |
""" | |
""" | |
Changes made by Himanshu Shekhar (https://github.com/himanshub16) | |
----------------------------------------------------------------------- | |
* OptionsParser added instead of sys.argv | |
* Support for port added for ftp client |