Notices tagged with javascript, page 7
-
drak (drak@sn.1w6.org)'s status on Tuesday, 30-Jul-2019 03:30:50 EDT drak
#Javascript map with index looks pretty cool: urls.map((url, index) => makeReq(url, index)) /vs/ urls.map((url) => makeReq(url)) -
TeMPOraL (temporal@mastodon.technology)'s status on Wednesday, 24-Jul-2019 03:22:50 EDT TeMPOraL
Holy shit did #JavaScript / #React people just discover conditions and restarts from #CommonLisp! Another secret power is out!
Two things:
1) It's not true you "can't touch this"; it's not theoretical, it's been a part of Common Lisp for the past three decades and it works just fine!
2) I'm not surprised this is an active area of theoretical work, but I am surprised by the implication that this area is considered new, or that they don't realize an implementation already exists.
https://overreacted.io/algebraic-effects-for-the-rest-of-us/
-
lnxw48a1 (lnxw48a1@nu.federati.net)'s status on Saturday, 20-Jul-2019 14:44:40 EDT lnxw48a1
#JavaScript hellworld is an apt description of the modern Web. I love it when slow connections, gobs of JS, and certificate errors on the hotel's log-in page combine to keep me offline for a while. (Currently hot spotting myself.) -
Nobody [Linux Walt Alt (@lnxw37a2)] (lnxw37a2@pleroma.soykaf.com)'s status on Saturday, 20-Jul-2019 09:31:26 EDT Nobody [Linux Walt Alt (@lnxw37a2)]
@1iceloops123 @lain I'm not going to enable #JavaScript for that. -
Hypolite Petovan (hypolite@friendica.mrpetovan.com)'s status on Friday, 19-Jul-2019 11:52:09 EDT Hypolite Petovan
β² @starbreaker@mastodon.sdf.org: #PSA: It's possible to detect #AdBlocking plugins using #JavaScript. Instead, you should use a #HostsFile to block ads by redirecting ad server DNS queries.
You can download a hosts file from <github.com/StevenBlack/hosts>.
Windows users should refer to <helpdeskgeek.com/how-to/block-β¦>, too.
Mobile users are going to need a VPN and an adblocking DNS server like AdGuard's. <adguard.com/en/adguard-dns/oveβ¦> or PiHole <pi-hole.net/>. -
drak (drak@sn.1w6.org)'s status on Thursday, 18-Jul-2019 17:52:15 EDT drak
#JavaScript Isn't #Scheme http://journal.stuffwithstuff.com/2013/07/18/javascript-isnt-scheme/ -
drak (drak@sn.1w6.org)'s status on Wednesday, 17-Jul-2019 10:18:33 EDT drak
Immutable function arguments and variables https://www.draketo.de/english/free-software/immutable-java-js-fortran #java #javascript #fortran -
Yes, I Know IT ! π (yesiknowit@mastodon.social)'s status on Monday, 15-Jul-2019 16:02:54 EDT Yes, I Know IT ! π
In JavaScript the "empty" regular expression literal is written `/(?:)/` since the parser would erroneously take `//` as the start of a single-line comment
https://www.ecma-international.org/ecma-262/5.1/#sec-7.8.5
#JavaScript #ECMA #Empty #RegExp -
Yes, I Know IT ! π (yesiknowit@mastodon.social)'s status on Sunday, 14-Jul-2019 09:35:29 EDT Yes, I Know IT ! π
Nice illustration of several random shuffle algorithms, including FisherβYates Shuffle:
https://bost.ocks.org/mike/shuffle/
by Mike Bostock (https://twitter.com/mbostock) -
Yes, I Know IT ! π (yesiknowit@mastodon.social)'s status on Tuesday, 09-Jul-2019 06:35:11 EDT Yes, I Know IT ! π
If you like writing your JavaScript code in a functional style, you may already know the `Array.map` and `Array.filter` methods.
But is there a way to combine them? And will this be a more efficient solution?
http://www.yesik.it/blog/2018-javascript-map-filter-and-reduce-compared -
Nextcloud π±βοΈπ» (nextcloud@mastodon.xyz)'s status on Monday, 24-Jun-2019 04:25:35 EDT Nextcloud π±βοΈπ»
Did you know we have no less than 83 good first issues in our issue tracker? Those are great to get started with if you want to help make #nextcloud better! #javascript #PHP #CSS
https://github.com/nextcloud/server/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22In conversation from mastodon.xyz permalink Attachments
-
JordiGH (jordigh@mathstodon.xyz)'s status on Thursday, 20-Jun-2019 11:39:18 EDT JordiGH
#Javascript doesn't have a built-in method to get the #epsilon of a number. It only has the epsilon of 1.
The way to get the epsilon of any other number is
\[
2^{\lfloor \log_2 x\rfloor} \epsilon
\]or Math.pow(2, Math.floor(Math.log(x)/Math.log(2)))*Number.EPSILON for you non-mathjaxed instance dwellers.
Isn't there a cleaner way?
In conversation from mathstodon.xyz permalink -
lnxw48a1 (lnxw48a1@nu.federati.net)'s status on Saturday, 25-May-2019 19:46:58 EDT lnxw48a1
It looks like βjsishβ is getting multiple daily updates. I know Peter isnβt getting any money from it, so he must have some other funding source. https://jsish.org/ Jsish is another #Ecmascript / #JavaScript interpreter In conversation from nu.federati.net permalink -
Gergely Nagy π (algernon@trunk.mad-scientist.club)'s status on Friday, 17-May-2019 08:01:18 EDT Gergely Nagy π
That moment when you realize that prod builds of your application are broken due to a transient dependency, and as long as you have a carefully set up `yarn.lock`, things work. But as soon as you try to regenerate it, all hell breaks loose.
I'm not sure I have the spoons for this today, so I'm going to commit the carefully set up `yarn.lock` and worry about the reproducibility sometime later.
The #JavaScript ecosystem is... weird.
:flan_on_fire:
In conversation from trunk.mad-scientist.club permalink -
lnxw48a1 (lnxw48a1@nu.federati.net)'s status on Sunday, 28-Apr-2019 01:51:41 EDT lnxw48a1
Maybe if "Big Yoshi" spent less time dining out, some of the bigness would go away. https://www.yoshinoyaamerica.com/
Incidentally, "browse no support js" is not a valid reason not to show where their locations are. If they're wanting people to come to their locations and spend money, letting #JavaScript become an obstacle is stupid. #JavaScrippled.In conversation from nu.federati.net permalink -
Yes, I Know IT ! π (yesiknowit@mastodon.social)'s status on Tuesday, 16-Apr-2019 15:04:36 EDT Yes, I Know IT ! π
In JavaScript the "empty" regular expression literal is written `/(?:)/` since the parser would erroneously take `//` as the start of a single-line comment
https://www.ecma-international.org/ecma-262/5.1/#sec-7.8.5
#JavaScript #ECMA #Empty #RegExpIn conversation from mastodon.social permalink -
zorak (zorak@social.ilikefreedom.ro)'s status on Friday, 05-Apr-2019 02:11:34 EDT zorak
Something wrong with using static HTML to display all of a couple dozen jpegs? If your site needs #Javascript to display a simple image on an #HTML page, please consider your users and their accessibility needs. In conversation from social.ilikefreedom.ro permalink -
David Hunt (davehunt@2mb.social)'s status on Tuesday, 02-Apr-2019 22:06:17 EDT David Hunt
I so hope you're right about #javascript Sadly, #flash isn't completely dead yet. In conversation from 2mb.social at 42Β°22'21"N 71Β°10'53"W permalink -
Strypey (strypey@mastodon.nzoss.nz)'s status on Wednesday, 27-Mar-2019 02:09:42 EDT Strypey
#Akasha are developing a #FreeCode social app based on #Ethereum and #IPFS. They are currently looking for a #Javascript engineer, backend engineer, and fullstack developer:
https://akasha.org/careers/ #PaidWorkIn conversation from mastodon.nzoss.nz permalink Attachments
-
David Hunt (davehunt@social.mayfirst.org)'s status on Saturday, 23-Mar-2019 14:53:44 EDT David Hunt
Next: audit #javascript for being #libre #librejs can help; react, therefore, removed from devel stack because it may generate non-free script. #libreplanet 2019 In conversation from social.mayfirst.org at 42Β°21'30"N 71Β°5'41"W permalink