yad --text "Symsym" --button=Close\!gtk-cancel:0
 
mkdir output
for f in *.wmv; do ffmpeg -i "$f" -c:v libx265 -crf 23 -c:a aac -strict -2 "output/${f%.wmv}.x265.crf23.mp4"; done
 
nodeurl = require "url"
nodepath = require "path"

filename = "/home/me/fuck/you.txt"
console.log nodeurl.parse filename
console.log nodepath.parse filename

fileurl = "https://home.me/fuck/you/fuck/you.txt"
console.log nodeurl.parse fileurl
console.log nodepath.parse fileurl

nodeurl.parse filename

Url {
  protocol: null,
  slashes: null,
  auth: null,
  host: null,
  port: null,
  hostname: null,
  hash: null,
  search: null,
  query: null,
  pathname: '/home/me/fuck/you.txt',
  path: '/home/me/fuck/you.txt',
  href: '/home/me/fuck/you.txt' }

nodepath.parse filename

{ root: '/',
  dir: '/home/me/fuck',
  base: 'you.txt',
  ext: '.txt',
  name: 'you' }

nodeurl.parse fileurl

Url {
  protocol: 'https:',
  slashes: true,
  auth: null,
  host: 'home.me',
  port: null,
  hostname: 'home.me',
  hash: null,
  search: null,
  query: null,
  pathname: '/fuck/you/fuck/you.txt',
  path: '/fuck/you/fuck/you.txt',
  href: 'https://home.me/fuck/you/fuck/you.txt' }

nodepath.parse fileurl

{ root: '',
  dir: 'https://home.me/fuck/you/fuck',
  base: 'you.txt',
  ext: '.txt',
  name: 'you' }
 
while el = table.remove(arr) do
    print(el)
end

Failed to load and run script ')' expected near '='

Язык-гной, язык-пидор.

 

Позорный кал, отрыжка индустрии. Вырубилась при новых батарейках только что из пачки, после on-off заработала. ПРЯМО НА ПРЕЗЕНТАЦИИ СУКА!!!!!

 

reduce

The reducer function takes four arguments:

Accumulator (acc)
Current Value (cur)
Current Index (idx)
Source Array (src)
a = [1,2,3]

result = [9].concat(a).reduce (acc,el) -> 
  console.dir arguments
  acc + cur

console.dir result
array
  .reduce ((acc,cur,idx,src) -> return acc + cur), 0
 

JSONStream.parse([true])

[ ]
 

Кажа же эти ёбани ошипке возникайт? А тада када нет мемории!
bullshit.eeffoc listing:

fs = require "fs"
outjson = JSON.parse(fs.readFileSync("./out.json")) # 666 GB size

bullshit.eeffoc gaysting:

Error: "toString()" failed
    at Buffer.toString (buffer.js:611:17)
    at JSON.parse (<anonymous>:null:null)
    at Object.<anonymous> (/anal/gay/anus/fucking-bullshit.eeffoc:2:16)
    at Object.<anonymous> (/anal/gay/anus/fucking-bullshit.eeffoc:1:1)
    at Module._compile (module.js:643:30)
    at Object.exports.run (/penis/.nvm/versions/node/v8.9.4/lib/node_modules/coffee-script/lib/coffee-script/coffee-script.js:173:23)
    at compileScript (/penis/.nvm/versions/node/v8.9.4/lib/node_modules/coffee-script/lib/coffee-script/command.js:224:29)
    at compilePath (/penis/.nvm/versions/node/v8.9.4/lib/node_modules/coffee-script/lib/coffee-script/command.js:174:14)
    at Object.exports.run (/penis/.nvm/versions/node/v8.9.4/lib/node_modules/coffee-script/lib/coffee-script/command.js:98:20)
    at Object.<anonymous> (/penis/.nvm/versions/node/v8.9.4/lib/node_modules/coffee-script/bin/coffee:15:45)
    at Module._compile (module.js:643:30)
    at Object.Module._extensions..js (module.js:654:10)
    at Module.load (module.js:556:32)
    at tryModuleLoad (module.js:499:12)
    at Function.Module._load (module.js:491:3)
    at Function.Module.runMain (module.js:684:10)
    at startup (bootstrap_node.js:187:16)
    at bootstrap_node.js:608:3

This error usually occurs when you request for file which is relatively bigger in size (or) the bufferlength exceeds / reaches 256 MB which the V8 engine will throw as an error.

This issue is still being addressed by the NodeJS community Read out this comprehensive post which has all the progress/answers that you are looking for.

https://github.com/nodejs/node/pull/4394

Hope this helps!

Пидрилы блядь дегенеративные, 2019 год на дворе, а у них лимиты в 256МБ захардкоженные.

[ ]
 

See the book ProgrammingInLua? or ExpressionsTutorial for details on the special properties of these binary operators that allow them to work this way.
print('x is ' .. (x < 0 and 'negative' or 'non-negative')) -- this works!

[ ]
 
alias lcase="sed -e 's/\(.*\)/\L\1/'"
alias ucase="sed -e 's/\(.*\)/\U\1/'"
echo "йуцкЕНГ"|lcase
echo "йуцкЕНГ"|ucase