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/perl | |
# Komut: ./ales.pl | |
$interval = 300; | |
while (1) { | |
check(); | |
sleep($interval); | |
} |
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/perl | |
my $DNA = <>; | |
myfnc(\$DNA); | |
sub myfnc { | |
my ($dna) = @_; | |
if(${$dna} =~ /atg/) { | |
${$dna} =~ s/atg/ATG/g; |
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
// npm install --global gulp to use from terminal | |
// npm install gulp for a project | |
var gulp = require('gulp'), | |
browserify = require('browserify'), | |
source = require('vinyl-source-stream'), | |
nodemon = require('gulp-nodemon'), | |
uglify = require('gulp-uglify'), | |
streamify = require('gulp-streamify'), | |
less = require('gulp-less'), |
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
// npm install --global gulp to use from terminal | |
// npm install gulp for a project | |
var gulp = require('gulp'), | |
browserify = require('browserify'), | |
source = require('vinyl-source-stream'), | |
nodemon = require('gulp-nodemon'), | |
livereload = require('gulp-livereload'), | |
uglify = require('gulp-uglify'), | |
streamify = require('gulp-streamify'), |
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
var gulp = require('gulp'), | |
browserify = require('browserify'), | |
del = require('del'), | |
reactify = require('reactify'), | |
source = require('vinyl-source-stream'), | |
uglify = require('gulp-uglify'), | |
connect = require('gulp-connect'), | |
streamify = require('gulp-streamify'), | |
cssmin = require('gulp-minify-css'), | |
rename = require('gulp-rename'); |
NewerOlder